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

.nav-wrap {
	margin-right: auto;
	margin-left: auto;
}

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


/* Example Two */
/*#example-two {
	margin: 0 auto;
	list-style: none;
	position: relative;
	width: 580px;
}*/
#example-two li { 
	display: inline-block; 
}
/*
#example-two li a {
	position: relative;
	z-index: 200;
	color: #121212;
	font-size: 20px;
	display: block;
	padding: 6px 15px;
	text-decoration: none;
	text-transform: uppercase;
	font-family: Impact, "Arial Black", "Arial Narrow";
	float: left;
}
#example-two li a:hover {
	color: #121212;
}
*/
#example-two #magic-line-two { 
	position: absolute; 
	top: 0; 
	left: 0; 
	width: 100px; 
	background: #900; 
	z-index: 100; 
	-moz-border-radius: 5px; 
	-webkit-border-radius: 5px;
	border-radius: 5px;
}
.current_page_item_two a {
	color: #0f0f0f !important;
}
.ie6 #example-two li, .ie7 #example-two li {
	display: inline;
}


