/*
	 CSS-Tricks Example - MagicLine Demo
	 by Chris Coyier
	 http://css-tricks.com
*/

/* Example One */
#example-one { 
	margin: 0 auto; 
	list-style: none; 
	position: relative;
	
}
#example-one li { 
	display: inline-block;
}
#example-one a { 
	font-family:'Arial';
	color: #c4c5c5;
	font-size: 15px;
	font-weight:bold;
	float: left;
	padding:10px;
	text-decoration: none;
	
}

#example-one a:hover
{

}

#magic-line { 
	position: absolute;
	bottom:0px; 
	left: 0; 
	width: 100px; 
	height: 1px; 
	background: #fff;
	border-radius:5px;
}

.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 10px 4px 10px;
	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;
}

li.current_page_item a
{
}

.current_page_item_two a { 
	color: white !important; 
}
.ie6 #example-two li, .ie7 #example-two li {
	display: inline;
}