@charset "UTF-8";
/* CSS Document */

#cssdropdown, #cssdropdown ul {
	padding: 0;
	margin: 0;
	list-style: none;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	text-transform: uppercase;
	color: #52483f;
	font-weight:bold;
}

#cssdropdown li {
	float: left;
	position: relative;
}

.menu_mainitems {
	border: 0px solid black;
	background-color: #FFFFFF;
	padding:5px;
	padding-left:0px;
}

.menu_mainitems a {
	margin-left: 0px;
	margin-right: 0px;
	text-decoration: none;
	color: #52483f;
}

.menu_mainitems a:hover {
	color: #ca0088;
}

.menu_subuls {
	display: none;
	width: 300px;
	position: absolute;
	top: 0px;
	left: 0px;
	background-color: #FFFFFF;
	border-top:10px solid #FFFFFF;

}

.menu_subuls li {
	width: 100%;
	margin-top: 5px;
	margin-bottom: 5px;
	margin-left: 5px;
}

.menu_subuls li a {
	text-decoration: none;
}

.menu_subuls li a:hover {
	color: #ca0088;
}

#cssdropdown li>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;
}

#cssdropdown li:hover ul, li.over ul { /* lists nested under hovered list items */
	display: block;
}
