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

* { margin: 0; padding: 0; }

.nav-wrap { 
	background-color: #f2f2f2;
	width:640px;
	float:right;
	margin-top:30px;
}

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



/* Example One */
#example-one {
	list-style: none;
	position: relative;
	width:640px;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
}
#example-one li { 
	display: inline-block;	
}
#example-one a {
	color: #bbb;
	font-size: 14px;
	float: left;
	text-decoration: none;
	text-transform: uppercase;
	padding-top: 6px;
	padding-right: 5px;
	padding-bottom: 4px;
	padding-left: 4px;
}
#example-one a:hover { 
	color: black; 
}
#magic-line { 
	position: absolute;
	bottom: -2px; 
	left: 0; 
	width: 100px; 
	height: 2px; 
	background: #c1272c;
}
.current_page_item a { 
	color: black !important;
}
.ie6 #example-one li, .ie7 #example-one li { 
	display: inline;
}
.ie6 #magic-line {
	bottom: -3px;
}

