/**
 * JavaScript DropDown CSS Style
 *
 * @author henning <leutz@egotec.com>
 * copyright 2006 egotec GmbH
 */
 
 
#dropdown {
	position	: relative;
	font-size	: 11px !important;
	height		: 15px !important;
	border		: 1px solid rgb(255,255,255);
	color		: rgb(245,245,255);
	background-color	: rgb(200,200,220);
	width		: 100px;
}

#dropdown_arrow {
	position	: absolute;
	right		: 0px;
	top			: 0px;
}

#dropdown_active_option {
	position	: absolute;
	left		: 4px;
	top			: 1px;
}

#dropdown_options {
	position			: absolute;
	visibility			: hidden;
	top					: 15px;
	left				: -1px;
	width				: 100px;
	border				: 1px solid rgb(255,255,255);
	color				: rgb(245,245,255);
	background-color	: rgb(200,200,220);
}

#dropdown_options a:link,
#dropdown_options a:visited,
#dropdown_options a:active {
	display				: block;
	font-size			: 11px !important;
	color				: rgb(245,245,255);
	padding-left		: 4px;
}

#dropdown_options a:hover {
	display				: block;
	background-color	: white;
	color				: #000;
	font-size			: 11px !important;
}