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

* { margin: 0; padding: 0; }
body {
	font: 14px futura, serif;
	background: #ffffff;
	color: #FFFFFF;
	font-family: "futura";
}

header {
	padding: 100px 0 0 0;
	display: block;
	font-family: "futura";
	font: 14px futura, serif;
}
a {
	color: #00CCFF;
}
a:hover { color: white; }

.nav-wrap {
	margin: 50px auto;
	background-color: #00CCFF;
	border-top:    2px solid white;
	border-bottom: 2px solid white;
}

/* 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: absolute;
	width: 100%;
	border: 1px solid #0099FF;
	top: 50%;
}
#example-one li { 
	display: inline-block;	
}
#example-one a {
	color: #FFFFFF;
	font-size: 14px;
	float: left;
	padding: 6px 10px 4px 10px;
	text-decoration: none;
	text-transform: uppercase;
	text-align: center;
	background-position: center center;
	background-repeat: no-repeat;
	font-family: "futura";
}
#example-one a:hover {
	color: #00CCFF;
}
.current_page_item a { 
	color: white !important; 
}
.ie6 #example-one li, .ie7 #example-one li {
	display: block;
}
.ie6 #magic-line {
	bottom: -3px;
}
