/*
	 CSS-Tricks Example - MagicLine Demo
	 by Chris Coyier
	 http://css-tricks.com
*/



.nav-wrap { 
		
	border-top:none;
	border-bottom:none;
}

/* Clearfix */
.group:after { visibility: hidden; display: block; content: ""; clear: both; height: 0; }
*:first-child+html .group { zoom: 1; } /* IE7 */



/* Example One */
#example-one { 
	margin: 0 auto; 
	list-style: none; 
	position: relative; 
	width: 960px; 
}
#example-one li { 
	display: inline-block;	
}
#example-one a { 
	color:#333; 
	font-size: 14px; 
	float: left;
	padding: 6px 10px 4px 10px;
	text-decoration: none;
	text-transform:none;
}
#example-one a:hover { 
	color:#F60;
	font-style:normal;
}
#magic-line { 
	position: absolute;
	bottom: 5px; 
	left: 0; 
	width: 100px; 
	height: 1px; 
	background: #fe4902;
}
.current_page_item a { 
	color:#fe4902 !important; 
}
.ie6 #example-one li, .ie7 #example-one li { 
	display: inline; 
}
.ie6 #magic-line {
	bottom: -3px;
}

#content {width:691px; background:#FF9; vertical-align:top; }