/*
	 CSS-Tricks Example - MagicLine Demo
	 by Chris Coyier
	 http://css-tricks.com
*/

* { margin: 0; padding: 0; }


header { padding: 100px 0 0 0; display: block; }
header h1 { width: 960px; margin: 0 auto; }


.nav-wrap { 
	background:#158fc4 url(../images/top_nav_bg.jpg) repeat-x top;

}

/* 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: 830px; 
}
#example-one li { 
	display: inline-block;	
}
#example-one a { 
	color: #fff;  
	float: left;
	padding: 14px 30px;
	text-decoration: none;
	text-transform: capitalize;
}
#example-one a:hover { 
	color: white; 
}
#magic-line { 
	position: absolute;
	bottom: 0px; 
	left: 0; 
	width: 100px; 
	height: 12px; 
	background: url(../images/notch.png) no-repeat center bottom;
}
.current_page_item a { 
	color: white !important;  background: url(../images/notch.png) no-repeat center bottom;
}


 .divleft .leftnav ul li a.activleft { 
  background: url(../images/leftlinkarrowhover.png) no-repeat left 6px; padding-left:20px; margin-left:10px; color: #026e9e;
}



.ie6 #example-one li, .ie7 #example-one li { 
	display: inline; 
}
.ie6 #magic-line {
	bottom: -3px;
}

