/* CSS Document */


ul.dropdown { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
	background-color:#d3c9c2;
}

.dropdownTarget, .dropdownTargetOver {
	float:left;
	position:relative;
	z-index:1;
	
}

ul.dropdown li { /* all list items */
/*	float: left;*/
	display:inline;
	position: relative;
	width: 154px;
	padding:0;
	margin:0;
}
ul.dropdown li a {
	text-decoration:none;
	background-color:#eae4e4;
}

ul.dropdown span {
	display:block;
	width:154px;
	padding-top:10px;
	padding-bottom:10px;
	color:#493419;
	font-weight:normal;
	text-align:center;
	background-color:#eae4e4;
	cursor:pointer;
	border-bottom-color: #666666;
	border-bottom-style: dotted;
	border-bottom-width: 1px;
}
* html ul.dropdown span {
	width:154px;
}

ul.dropdown a:hover span {
	background-color:#d9cece;
	color:#23395c;
}



ul.dropdown { /* second-level lists */
	display: none;
	position: absolute;
	top: 1em;
	left: 0;
}

div.dropdownTarget:hover ul, div.dropdownTargetOver ul { /* lists nested under hovered list items */
	display: block;
}


div.dropdownTarget>ul { /* to override top and left in browsers other than IE, which will position to the top right of the containing li, rather than bottom left */
	top: auto;
	left: auto;
}

* html ul.dropdown {
	top:32px;
}