/* CSS Document */

body
{
	font-size: 11px;
	font-family: Arial;
	color: #919191;
	background-color: #FFFFFF;
	
}

a
{
	text-decoration: none;
	color: #919191;
}

img
{
	border:0;
}

a:hover
{
	background-color: #CCCCCC;
	font-color: #AABBCC;
}

ul {
	position: relative;
	margin-left: 0;
	padding: 0;
	list-style: none;
	width: 135px; /* Width of Menu Items */
	border-bottom: 0px solid #ccc;
	}

ul li {
	position: relative;
	margin-left: 0;
	padding-top: 5;	
	}
	
li ul {
	position: relative;
	left: 33px; /* Set 1px less than menu width */
	top: 0;
	padding-top: 0;
	display: none;
	}

/* Styles for Menu Items */
ul li a {
	/*display: block;*/
	text-decoration: none;
	color: #777;
	background: #fff; /* IE6 Bug */
	padding: 0px;
	border: 0px solid #ccc;
	border-bottom: 0;
	}

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

/*ul li a:hover { color: #E2144A; background: #f9f9f9; } /* Hover Styles */
		
li ul li a { padding: 0px 0px; } /* Sub Menu Styles */
		
li:hover ul, li.over ul { display: block; position: absolute; left:150px;} /* The magic */
