﻿
/**
* Stylish Select 0.4.9 - $ plugin to replace a select drop down box with a stylable unordered list
* http://github.com/scottdarby/Stylish-Select/
* 
* Copyright (c) 2009 Scott Darby
* 
* Requires: jQuery 1.3 or newer
* 
* Dual licensed under the MIT and GPL licenses.
*/

/* Set border and padding values moved inward */


/*隐藏在页面加载列表*/
.stylish-select .SSContainerDivWrapper {
	left:-9999px;
}

/* 容器 */
.stylish-select .SSContainerDivWrapper {
	padding:0;
	width:98px;
	position:absolute;
	top:23px;
	left:0;
	z-index:999;
}

/* UL 下拉菜单 */
.stylish-select ul.newList {
	margin:0;
	padding:0;
	list-style:none;
	color:#000;
	background:#fff;
	border:none;
	outline:1px solid #ccc;
	overflow:auto;
}
.stylish-select ul.newList * {
	margin:0;
	list-style:none;
}
.stylish-select ul.newList a {
	color: #000;
	text-decoration:none;
	display:block;
	padding:3px 8px;
}
.stylish-select ul.newList li a:focus {
	-moz-outline-style: none;
}

/* 看到的select的样式 （DIV伪装）*/
.stylish-select .newListSelected {
	width:88px;
	color:#000;
	height:23px;
	line-height:23px;
	float:right;
	padding-left:10px;
	background:url(../images/index.gif) no-repeat 0px 0px;
}
/*select 内容*/
.stylish-select .selectedTxt {
	width:100%;
	overflow:hidden;
	height:23px;
	line-height:23px;
	padding:0;
}

/*选项​​高亮 */
.stylish-select .highLite {
	background:#CCC!important;
	color:#000!important;
}

/* 选项:hover */
.stylish-select .newListHover {
	background:#CCC!important;
	color:#000!important;
	cursor:pointer;
}

/* Disabled */
.stylish-select .newListDisabled {
	opacity: 0.6;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
	filter: alpha(opacity=60);
}
.stylish-select .newListItemDisabled {
	opacity: 0.6;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
	filter: alpha(opacity=60);
}
.stylish-select .newListOptionDisabled {
	opacity: 0.6;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
	filter: alpha(opacity=60);
}

/* select Hover, Focus  选择悬停*/
.stylish-select .newListSelHover, .stylish-select .newListSelFocus {
	background:url(../images/index.gif) no-repeat 0px -23px;
	cursor:pointer;
}

/* select onClick  选择点击 */
.stylish-select .newListSelClick{
	background:url(../images/index.gif) no-repeat 0px -46px;
	cursor:pointer;
}

