/*
 * TEMPO - Unordered List Horizontal Navigator
 * Provides styling for a navigator using an unordered list renderer.
 * Displays the list as an inline horizontal menu.
 * Apply style of nav_ul_horizontal to pods classes.
 */

/* The holder div */
.nav_ul_horizontal {
	width: 940px;
	float: left;
	font-size: 1.1em;
	background: url(../../../images/project/masthead/masthead_lower.jpg) no-repeat right;
	padding: 50px 0 20px 0; 
	border-bottom: 1px dashed #d7eaf9;	 }

/* Any locked view has lock icon */
.nav_ul_horizontal .locked a{
	background: url(../../../images/project/nav/lock.gif) no-repeat bottom right; }

/* List */ 
.nav_ul_horizontal ul {
	float: left;
	margin-left: 30px;	
	list-style: none; }
	
/* List Item */ 
.nav_ul_horizontal ul li {	
	margin-left: 0;
	padding: 3px 10px;
	list-style: none;
	display: inline;
	list-style-image: none; }
	
/* Links */
.nav_ul_horizontal ul a:link, 
.nav_ul_horizontal ul a:visited {
	color: #1f67a9;	
	text-decoration: none; }
	
.nav_ul_horizontal ul a:hover {
	color: #3AB8DD; }
	
/* Active Link */
.nav_ul_horizontal ul li.active a { 
	color: #3AB8DD; }
	
/* Disabled Item */
.nav_ul_horizontal ul li.disabled { 
	color: #CCC; }