
/* ######### Default class for drop down menus ######### */

.navmain .selectedanchor { /*CSS class that gets added to the currently selected anchor link (assuming it's a text link)*/
	background: #28aacb;
}

.anylinkcss{
	position: absolute;
	left: 0;
	top: 0;
	visibility: hidden;
	border-bottom-width: 0;
	z-index: 1001; /* zIndex should be greater than that of shadow's below */
	background-color: #28aacb;
	width: 226px; /* default width for menu */
}

.anylinkcss ul{
	margin: 0;
	padding: 0;
	list-style-type: none;
}

.anylinkcss ul li a{
	display: block;
	padding: 12px 18px;
	text-transform: uppercase;
	text-decoration: none;
	color: #fff;
}

.anylinkcss a:hover{ /*hover background color*/
	background-color: #1195b7;
	color: #fff;
}








/* ######### Default class for drop down menus ######### */

.selectedadmin .selectedanchor {
	background: #d91350;
	border-bottom: 1px solid #d91350;
	color: #ffffff !important;
}

.anylinkadmin {
	width: 200px; /* default width for menu */
	position: fixed;
	left: 0;
	top: 0;
	margin-left: 1px;
	background-color: #d91350;
	border-left: 0px solid #5b5b5b;
	visibility: hidden;
	z-index: 1001; /* zIndex should be greater than that of shadow's below */
}

.anylinkadmin ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
}

.anylinkadmin ul li a {
	display: block;
	padding: 3px 15px;
	font-size: 13px;
	text-decoration: none;
	color: #ffebf1;
}

.anylinkadmin a:hover { /*hover background color*/
	background-color: #bb073e;
	color: #fff;
}