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


.nav-wrap { 
	margin: 0px auto; 
	background-color: 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: 1000px; 
}
#example-one li { 
	display: inline-block;
	width: 137px;
	height: 34px;
	margin-right: 20px;
	
}
#example-one a { 
	color: #000000; 
	width: 137px;
	height: 34px;
	background:	url(/../images/navigation-o.png) no-repeat;
	font-size: 8pt; 
	font-weight: bold;
	text-align: center;
	float: left;
	padding: 8px 0px 4px 0px;
	text-decoration: none;
}
#example-one a:hover { 
	color: #000000; 
	background:	url(/../images/navigation-h.png) no-repeat;
}
#magic-line { 
	position: absolute;
	top: -35px; 
	left: 0; 
	width: 117px;
	height: 20px; 
	background: url('/../images/arrow.png') no-repeat;
	background-position: top center;

}
.current_page_item a { 
	color: #000000 !important; 
}
.ie6 #example-one li, .ie7 #example-one li { 
	display: inline; 
}
.ie6 #magic-line {
	bottom: -3px;
}

