// CSS for index page

body {
	min-width:760px;
}
a:link {
	text-decoration: undeline;
	color: #8B8989
	
}
a:visited {
	text-decoration: none;
	color: #8B8989
}
a:hover {
	text-decoration: underline;
	color: #8B8989
	
}
a:active {
	text-decoration: none;
}
h1 {
	z-index: 10;
	text-indent: -5000px;
	margin-top: -50px;
	
}
#container{
	margin-top:100px;
	text-align: center;
}
#customer {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #8B8989;
	font-weight: bold;
	text-transform: uppercase;
	text-decoration: none;
	text-align: center;
	line-height: 2em;	
}

ul {
	padding: 0;
	list-style: none;
	width: 100px; /* Width of Menu Items */
	border-bottom: 1px solid #333;
	text-transform: uppercase;
	font-weight:bold;
	font-size:11px;
	font-family: Arial, Helvetica, sans-serif;
	margin-left: auto;
	margin-right: auto;
	}
	
ul li {
	position: relative;
	}

li ul {
	text-transform: none;
	font-weight:normal;
	font-size:12px;
	text-transform: none;
	width: 130px;
	position: absolute;
	left: 99px; /* Set 1px less than menu width */
	top: 0;
	display: none;
			
	}
	


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

	
/* IE Requirement \*/
* html ul li {
	float: right;
	height: 1%;
}
* html ul li a { height: 1%; }
/* End */

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

	

