/*
	 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; }
a {
	color: #000;
}
a:hover { color: brown; }

.nav-wrap {
	margin: 0px auto;
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	float: left;
}

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



/* Example One */
#example-one {
	list-style: none;
	position: relative;
	/* width: 654px; */
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 20px;
	padding-top: 15px;
}
#example-one li {
	/* display: inline-block; */
}
#example-one a {
	color: #bbb;
	font-size: 13px;
	/* float: left; */
	padding: 0px 8px 4px 8px;
	text-decoration: none;
}
#example-one a:hover { 
	color: #fff; 
	background-color:#74acd3;
}
#magic-line {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 3px;
	background: #74acd3;
	top: 41px;
}
.current_page_item a { 
	color: white !important; 
}
.ie6 #example-one li, .ie7 #example-one li { 
	display: inline; 
}
.ie6 #magic-line {
	bottom: -3px;
}


/* Example Two */
#example-two { 
	margin: 0 auto; 
	list-style: none; 
	position: relative; 
	width: 960px; 
}
#example-two li { 
	display: inline-block; 
}
#example-two li a { 
	position: relative; 
	z-index: 200; 
	color: #bbb; 
	font-size: 14px; 
	display: block; 
	float: left; 
	padding: 6px 0px 4px 0px;
	text-decoration: none;
	text-transform: uppercase; 
}
#example-two li a:hover { 
	color: white; 
}
#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: white !important; 
}
.current_page_item2 a {
	color: #c51331 !important;
}
.ie6 #example-two li, .ie7 #example-two li {
	display: inline;
}



.current_page_item{
	border-bottom: 3px solid #74acd3;
}