/**
* Stylish Select 0.4.5 - $ plugin to replace a select drop down box with a stylable unordered list
* http://scottdarby.com/
* 
* Copyright (c) 2009 Scott Darby
* 
* Requires: jQuery 1.3 or newer
* 
* Dual licensed under the MIT and GPL licenses.
*/

/**
* Hide lists on page load
---------------------------------------------------------*/

.stylish-select #outerWrapper .SSContainerDivWrapper {
	left:-9999px;
}

/*
* Red example
---------------------------------------------------------*/
.stylish-select #outerWrapper .SSContainerDivWrapper {
	margin:0;
	padding:0;
	width:199px;/*290*/
	position:absolute;
	top:25px;
	left:0;
	z-index:2;
}

.stylish-select #outerWrapper ul.newList {
	margin:0;
	padding:0;
	list-style:none;
	color:#000;
	background:#fff;
	border:1px solid #ccc;
	overflow:auto;
	left: 0;
}

.stylish-select #outerWrapper ul.newList * {
	margin:0;
	padding:0;
}


.stylish-select #outerWrapper ul.newList a {
	color: #000;
	text-decoration:none;
	display:block;
	padding:3px 8px;
}

.stylish-select #outerWrapper .newListSelected {
	width:200px;/*285,150*/
	color:#000;
	height:26px;
	padding:0 0 0 0;
	float:left;
	background-image: url("/Resources/personal/img/ibanking/mbanking/microsite/select_bg.png");
	background-repeat: no-repeat;
}

.stylish-select #outerWrapper ul.newList li a:focus {
	-moz-outline-style: none;
}

.stylish-select #outerWrapper .selectedTxt {
	width:160px;/*258*/
	overflow:hidden;
	height:16px;
	padding:8px 30px 2px 10px;
	right: 0px;
	line-height: 1;
}

.stylish-select #outerWrapper .hiLite {
	background:#555555!important;
	color:#fff!important;
}

.stylish-select #outerWrapper .newListHover {
	background:#ccc!important;
	color:#000!important;
	cursor:default;
}

.stylish-select #outerWrapper .newListSelHover,
.stylish-select #outerWrapper .newListSelFocus {
	background-position:0 -26px;
	cursor:default;
}

.stylish-select #outerWrapper .newListOptionTitle {
	font-weight:bold;
}

.stylish-select #outerWrapper .newListOptionTitle ul {
	margin:3px 0 0;
}

.stylish-select #outerWrapper .newListOptionTitle li {
	font-weight:normal;
	border-left:1px solid #ccc;
}
