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

.subNav {
	width: 200px;
	margin-bottom: 1em;
	background-color: #303;
	color: #333;
	/*setting the position to relative, takes it out of the flow, but does not effect positioning of the other elements*/
	position: relative;
	/*moves the box 50px up*/
	top: -100px;
	/*moves the box 50px to the right*/
	left: 165px;
	display: none;
}

ul.subNav {
	list-style: none;
	margin: 0;
	padding: 0;
	border: none;
}
		
ul.subNav li {
	margin: 0;
	height: 18px;
	width: 200px;
}

ul.subNav li a {
	font-size: .9em;
	font-weight: normal;
	display: block;
	padding: 2px 5px 5px 0.5em;
	background-image: url(../images/subnav_bg.jpg);
	background-repeat: no-repeat;
	background-position: center right;
	color: #fff;
	text-decoration: none;
	width: 100%;
}

html>body ul.subNav li a {
	width: auto;
}

ul.subNav li a:hover {
	color: #ff7f00;
}
