/***********************************************
* DHTML Select Menu- by JavaScript Kit (www.javascriptkit.com) / updated for soopermarkt.de
* Menu interface credits: http://www.dynamicdrive.com/style/csslibrary/item/glossy-vertical-menu/ 
* This notice must stay intact for usage
* Visit JavaScript Kit at http://www.javascriptkit.com/ for this script and 100s more
***********************************************/


.dhtmlselect{ /*style of DHTML Select Menu, main box */
	width: 140px; /*default  width of main box */
	height: 20px;
	position: relative;
	text-indent: 3px;
	padding: 0 0 0 0;
	cursor: pointer;
	background: url('../images/background/select_bg.jpg') no-repeat;
	white-space: nowrap;
}

.dhtmlselect .selecttitle {
	font-size: 8pt;
	position: relative; 
	top: 2px;
	margin: 0 auto 0 5px;
}

.dhtmlselect .downimage{ /*style of "down" image to the right of the DHTML Select Menu*/
	position: absolute;
	right: -25px;
	width: 22px;
	height: 25px;
}

.dhtmlselect .dropdown{ /*style of Drop Down Menu that appears onMouseover */
	position: absolute;
	left: 0;
	top: 17px;
	width: 180px; /*default width of drop down menu*/
	max-height: 125px;
	border: 1px solid #C0C0C0;
	display: none;
	z-index: 0;
	font-weight: normal;
	overflow: auto;
}

.dhtmlselect .dropdown a{ /*style of Drop Down Menu's links */
	width: auto;
	display: block;
	font-size: 8pt;
	background-color: #f8f6f7;
	color: #000000;
	padding: 1px 0;
	text-indent: 5px;
	text-decoration: none;
	overflow: hidden;
}

* html .dhtmlselect .dropdown a{ /*IE 6 (and below) hack */
	width: 100%;
	overflow: hidden;
}

.dhtmlselect .dropdown a:hover{
	font-size: 8pt;
	background-color: #316AC5;
	color: white;
	overflow: hidden;
}
