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



ul {
	margin: 0;
	padding: 0;
	list-style: none;
	 /* Width of Menu Items */
	 width:60%;
	float:left;
	border-bottom: 1px solid #ccc;
	}

ul li {
	position: relative;
float: right;
	
	}
	
li ul {
	position: absolute;
	left:0; /* Set 1px less than menu width */
	top: 25px;
	display: none;
	
	}

/* Styles for Menu Items */
ul li a {
	display: block;
	text-decoration: none;
	
	color: #2A1F00;
	background: #fff; /* IE6 Bug */
	padding: 5px;
	margin-right:1px;
	width:60px;
	border: 1px solid #ccc;
	border-bottom: 1px;
	text-align:center;
	
	}

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

ul li a:hover {left: auto;} /* Hover Styles */
		
li ul li a { padding: 2px 5px; } /* Sub Menu Styles */
		
li:hover ul, li.over ul { display: block; } /* The magic */

/* Global Background Colors */

.Purple { background-color: #E6C586; }

.Red { background-color: #9E2E08; }

.Orange { background-color: #CC6602; }

.Green { background-color: #346702; }

.Blue { background-color: #013567; }

.Grey { background-color: #666666; }

.DarkPurple { background: #4E0027; }

.DarkRed { background-color: #6A0002; }

.DarkOrange { background-color: #914901; }

.DarkGreen { background-color: #213F00; }

.DarkBlue { background-color: #002448; }

.DarkGrey { background-color: #333333; }


