/* Removes indents and bullets of unordered list and sets width of our menu items */
ul {
	margin: 0;
	padding: 0;
	list-style: none;
	width: 150px;
	font-family:verdana;
        font-size:10pt;
}


/* positions our main menu list of links */
     ul li {
         position: relative;  

         }



/* appearance of all links */
ul li a {
	display: block;
	text-decoration: none;
        font-weight:bold;
	padding: 5px;
        color:black;
	}

ul li a:hover {
	display: block;
	text-decoration: none;
        font-weight:bold;
	color:white;
        background: blue;
	padding: 5px;
        width:200px;
	}


/* positions our sub menus to the right of its parent menu when hovered over */
li ul {
	position: absolute;
	left: 210px;
	top: 0;
	display: none;
        font-size:8pt;
        font-weight:bold;
        width:125px;
        color:white;
        background:blue;
        border: 1px solid #ccc;
	border-bottom: 2px solid #ccc;
	}

/* drop down list */
li ul a {
        color:black;
        background:#88A6FF;
        font-weight:normal;
        border: 1px solid #ccc;
	border-bottom: 0px;
	}


li ul a:hover {
        font-weight:normal;
        color:white;
        background:black;
        border: 1px solid #ccc;
	border-bottom: 0;
        width:113px;
	}


li:hover ul, li.over ul { 
	display: block; 
}




/* Fix IE. Hide from IE Mac \*/
* html ul li { float: left; height: 1%; }
* html ul li a { height: 1%; }
/* End */
