/* 
Navigation File
CSS Document 
*/

#nav a {
	font-weight: bold;
	color: black;
}

#nav a {
	text-decoration: none;
}

#primaryNav li a {
	/*background: #fefc74;*/
	text-decoration: none;
}
#primaryNav li a:hover {
	background: #fffea4;
	text-decoration: none;
}

ul {
	margin: 0;
	padding: 0;
	list-style: none;
	width: 151px; /* Width of Menu Items */
	border-bottom: 1px solid #FDCC00;
	}
	
ul li {
	position: relative;
	width:151px;
	}
	
li ul {
	position: absolute;
	left: 150px; /* Set 1px less than menu width */
	top: 0;
	display: none;
	border:solid 2px #ffcba4;
	}


/* Styles for Menu Items */
ul li a {
	display: block;
	text-decoration: none;
	color: #777;
	background: #FDFF00; /* IE6 Bug */
	padding: 5px;
	border: 1px solid #FDcc00; /* IE6 Bug */
	border-bottom: 0;
	
	}

/* Hack for IE 6-7, if you're reading this, please download firefox and save webdevelopers from having to use different CSS hacks to get one feature universally acccepted*/
/*\*/
html*#test1 {
[color:red;
color:blue;
]color:purple;
}
html*ul li { 
float: left; height: 1%; 
}
html*ul li a {
 height: 1%; 
}
/**/
.dummyend[id]{clear:both}	
/* Holly Hack. IE Requirement \*/
* html ul li { float: left; height: 1%; }
* html ul li a { height: 1%; }
/* End */

li:hover ul, li.over ul  {	
	display: block; 
	} /* The magic */
