
/*********************************/
/***************** NAVIGATION **************/
/*********************************/
/*
	 CSS-Tricks Example
	 by Chris Coyier
	 http://css-tricks.com
*/
.nav-wrap { 
	font: 14px Helvetica, serif;
	letter-spacing: 0.08em;
	margin: 0 auto; 
	height: 30px;
	margin-bottom: 20px;
 }

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

#example-one { 
	border-bottom:2px solid #283993;
	list-style: none;
	position: relative;
	padding: 0px;
	margin: 0 auto;
	width: 100%;
	display: table;
 }
 

 
#example-one li { 
	display: table-cell;
	margin-left: -6px;
	
 }
 
#example-one li a { 
	color: #283993;
	font-size: 15px;
	display: block;
	float: RIGHT;
	padding: 6px 15px 5px 15px;
	text-decoration: none;
	text-transform: uppercase;
	-webkit-transition: all 0.4s;
	-moz-transition: all 0.4s;
	-ms-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
 }
 
#example-one li a:hover { 
	color: #fe4902;	
		-webkit-transition: all 0.4s;
	-moz-transition: all 0.4s;
	-ms-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
 }
 
#magic-line { 
	position: absolute;
	bottom: 0px;
	left: 0;
	width: 0px;
	height: 2px;
	background: #fe4902;
 }
/* Chrome */
@media screen and (-webkit-min-device-pixel-ratio:0) { 
   #magic-line { 
	position: absolute;
	bottom: -2px !important; 
	left: 0;
	width: 0px;
	height: 2px;
	background: #fe4902;
 }
}

.current_page_item a{ 
	color: #fe4902 !important;
	font-weight: bold;
 }
 