/************************************
		By Matthew James Taylor
		
		Beautiful Horizontally Centered Menus/Tabs/List. No CSS hacks. Full cross-browser.
		http://matthewjamestaylor.com/blog/beautiful-css-centered-menus-no-hacks-full-cross-browser-support
************************************/

#navEZPagesTop {
   float:left;
   width:100%;
   /* background:#fff;
   border-bottom:4px solid #000; */
   overflow:hidden;
   position:relative;
   
   height: 30px;
}
#navEZPagesTop ul {
   clear:left;
   float:left;
   list-style:none;
   margin:0;
   padding:0;
   position:relative;
   left:50%;
   text-align:center;
}
#navEZPagesTop ul li {
   display:block;
   float:left;
   list-style:none;
   margin:0;
   padding:0;
   position:relative;
   right:50%;
   
   height: 30px;
}
#navEZPagesTop ul li a {
   display:block;
   margin:0 0 0 1px;
   padding:0 15px 0 15px;
   /* background:#ddd; */
   color:#0A5C71;
   text-decoration:none;
   line-height: 30px;
}
#navEZPagesTop ul li a:hover {
   background:#0A5C71;
   color:#fff;
   
   	filter: alpha(opacity=50);
	-moz-opacity: .50;
	opacity: .50;
}
#navEZPagesTop ul li a.active,
#navEZPagesTop ul li a.active:hover {
   color:#fff;
   background:#000;
   font-weight:bold;
}
