
/***** Top Level Menu *****/

.toplevelmenu ul{
	margin: 0;
	padding: 0;
	font: 12px Verdana;
	list-style-type: none;
	border-bottom: 0px solid gray;
	background: #F3ECD5;
	overflow: hidden;
	width: 660px; 
	position: relative;
	left: 25%;
	top: -27px;
}

.toplevelmenu li{
	display: inline;
	margin: 0;
}

.toplevelmenu li a{
	float: left;
	display: block;
	text-decoration: none;
	margin: 0;
	padding: 6px 12px;
	border-right: 1px solid black;
	color: black;
	background: #F3ECD5;
	opacity: 100%;
}

.toplevelmenu li a:visited{
	color: black;
}

.toplevelmenu li a:hover{
	background: #DBB285;
}

.toplevelmenu a.selected{
	background: #DBB285;
}

/***** Drop Down Menu *****/

.dropdownmenu, .dropdownmenu ul{
	margin: 0;
	padding: 0;
	font: normal 12px Verdana;
	list-style-type: none;
	border-bottom-width: 0;
	position: absolute;
	background: #F3ECD5;
	left: 0;
	top: 0;
	border: 0px solid white;
	visibility: hidden;
	z-index: 100;
}

.dropdownmenu li a{
	display: block;
	text-decoration: none;
	padding: 4px 5px;
	border-bottom: 1px solid black;
	color: black;
	background-color: #F3ECD5;
	width: 175px;
}

* html .dropdownmenu li a{ /*IE6 CSS hack*/
	display: inline-block;
}

.dropdownmenu li a:hover{
	background-color: #DBB285;
}

/***** Pointers *****/

.downarrowpointer{
	padding-left: 4px;
	border: 0;
}

.rightarrowpointer{
	position: absolute;
	padding-top: 3px;
	right: 2px;
	border: 0;
}

.ddiframeshim{
	position: absolute;
	z-index: 500;
	background: transparent;
	border-width: 0;
	width: 0;
	height: 0;
	display: block;
}