#menucolumn {
	background-color: #CCCCCC;
	width: 180px;
	margin-top: 10px;
	height: 100%;
	margin-left: 13px;
}
.menucolumn_header {
	background-color: #400072;
	height: 1em;
	width: 180px;
}
#mainmenu, #mainmenu ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
	width: 180px; /* Width of Menu Items */
}

#mainmenu li {
	margin: 0px;
	padding: 0px;
	height: 1.7em;
   	line-height: 1.7em; /* rather than padding-top and bottom */
	width: 180px;
}

#mainmenu ul li ul {
	position: absolute;
	left: 181px;
	top: 0px;
	display: none;
	background-color: #CCCCCC;
	border: 1px solid #400072;	
}

#mainmenu a {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bold;
	text-decoration: none;
	padding-left: 24px;
	color: #000000;
	background-color: #CCCCCC;
	display: block;
}

/* Sets all hovered li's and links to have the purple background */
#mainmenu li:hover a, #mainmenu li.over a,
#mainmenu li:hover li a:hover, #mainmenu li.over li a:hover {
   color: #FFFFFF;
   background-color: #400072;
}

/* Sets the the intial state of the dropdown back to default until it's hover over again*/
#mainmenu li:hover li a, #mainmenu li.over li a {
   color: #000000;
   background-color: #CCCCCC;
}

/* Places the submenu on top of the mainmenu */
#mainmenu ul li:hover, #mainmenu ul li.over {
   position: relative;
}

#mainmenu li:hover ul, #mainmenu li.over ul { display: block; } /* The magic */

/* HTML Hacks */
* html #mainmenu ul li { float: left; height: 1%; }
* html #mainmenu a {height: 1%; /* to make display: block work properly */ }
