/*
 * Author: http://www.leigeber.com/author/michael/
 * Source: http://www.leigeber.com/2008/04/sliding-javascript-dropdown-menu/
 * Posted on: 27 Apr 2008
 * 
 */

.dropdown {
	float:left; 
	padding-right:5px;
}

.dropdown dt {
	border:0px solid #440e1e; 
	padding:8px; 
	color:#ffffff; 
	font-size:12px; 
	font-weight: bold;
	cursor:pointer; 
	width:80px;
	text-align: center;
	height: 20px;
}

.dropdown dt:hover {
	background-image:url(../images/mouseover-icon.png); 
	background-position:5px 0px; 
	background-repeat:no-repeat;
	color:#ffa73d;
}

.dropdown dd {
	position:absolute; 
	overflow:hidden; 
	width:200px; 
	display:none; 
	background:#fff; 
	z-index:210; 
	opacity:0;
	margin: 0px;
}

.dropdown ul {
	width:200px; 
	border:0px solid #440e1e; 
	list-style:none; 
	border-top:none;
	padding: 0;
	margin: 0;
}

.dropdown li {
	display:inline
}

.dropdown dt a, .dropdown dt a:hover {
	color: #ffffff;
	text-decoration: none;
	
}

.dropdown ul a, .dropdown ul a:active, .dropdown ul a:visited {
	display:block; 
	padding:5px; 
	color:#fff; 
	text-decoration:none; 
	background:#520d22; 
	width:200px;
}

.dropdown ul a:hover {
	background:#6d0c2a; 
	color:#ffa73d;
}

.dropdown .underline {
	border-bottom:1px solid #440e1e;
	cursor: pointer;
}

.dropdown .childmenu {
	padding-left: 20px;
}
