ul.nav {
	list-style: none;
	margin: 0;
	padding: 0;
	}
	ul.nav li {
		margin: 0;
		padding: 0;
		}
	
/* --------------- */
/* Main Navigation */
/* --------------- */
div#navigation {
	padding-bottom: 10px;
	}
	
	/* ------------------------ */
	/* Generic Navigation Rules */
	/* ------------------------ */
	div#navigation ul {
		list-style:none; /* Remove bullets from all navigation and sub-navigation */
		}
		div#navigation li {
		    list-style:none;
			float: left; /* Horizontal */
			}
			div#navigation a, div#navigation .selected a:hover {
				/* display: block; Turn links into blocks */
				text-decoration: none;
				}
	
	/* ------------------ */
	/* Primary Navigation */
	/* ------------------ */
	ul.nav-primary { /* Primary navigation bar */
		list-style:none;
		clear: left;
		height: 30px;
		margin: 0 0 0 0;
		padding:0 0 0 0;
		}
	ul.nav-primary li { /* Has divider image offset 2px right */
		list-style:none;
		padding: 0 2px 0 0;
		background: transparent url(../images/navigation/divider-blue.png) left center no-repeat;
		}
	ul.nav-primary li.first {
		background-image: none; /* Remove divider from first item */
		}
		ul.nav-primary li .tab {
			position: relative;
			left: 15px; /* Create space for background-image which would oridinarily be obscured by <li> background-image (on selected item ONLY) */
			padding-right: 20px; /* Need to account for off-set via left positioning */
			min-height: 23px; /* Height of background-image minus padding */
			padding-top: 7px; /* Center element vertically at base text size */
			white-space: nowrap;
			font: bold normal 13px "Trebuchet MS","Tahoma", Arial; color:#6395c7; text-decoration:none
			}
		ul.nav-primary li a,
		ul.nav-primary li a:visited {
			color: #6395c7; /* #a1a513; */
			}
		ul.nav-primary li a:hover {
			color: #dc8f09; /* #c4c91a; */
			}
			
	/* ----------------------------- */
	/* Primary Navigation - Selected */
	/* ----------------------------- */
	ul.nav-primary li.selected + li {
		background-image: none; /* Remove divider from nav item that follows selected item */
		}
	ul.nav-primary li.selected {
		margin-right: 0px;
		padding: 0; /* Override right padding on non-selected <li> elements */
		background: transparent url(../images/edge-left-blue.gif) left top no-repeat;
		}
		ul.nav-primary li.selected .tab {
			background: transparent url(../images/edge-right-blue.gif) right top no-repeat;
			padding-bottom: 0;
			}
		ul.nav-primary li.selected a,
		ul.nav-primary li.selected a:visited {
			color: #fff;
			}
		ul.nav-primary li.selected a:hover {
			color: #fff; /* Need to override hover color on selected navigation item */
			cursor: default; /* Create look that hyperlink is not available when selected */
			}
			
	/* -------------------- */
	/* Secondary Navigation */
	/* -------------------- */
	ul.nav-secondary {
		list-style:none;
		clear: left;
		height: 30px;
		margin: 0 0 0 0;
		background:#6395c7;
		font: bold normal 13px "Trebuchet MS","Tahoma", Arial; color:#FFFFFF; text-decoration:none
		}
	ul.nav-secondary li {
		list-style:none;
		padding: 0 2px 0 0; /* Total 15 pixels between item and divider */
		background: transparent url(../../images/navigation/divider-white.png) left center no-repeat;
		}
	ul.nav-secondary li.first {
		background-image: none; /* Remove divider from first item */
		}
		ul.nav-secondary li .tab {
			position: relative;
			left: 15px; /* Create space for background-image which would oridinarily be obscured by <li> background-image (on selected item ONLY) */
			padding-right: 15px; /* Need to account for off-set via left positioning */
			min-height: 23px; /* Height of background-image minus padding */
			padding-top: 7px; /* Center element vertically at base text size */
			white-space: nowrap;
			}
		ul.nav-secondary li a,
		ul.nav-secondary li a:visited {
			color: #fff;
			}
		ul.nav-secondary li a:hover {
			color: #fff; /* #c4c91a; */
			text-decoration:underline;
			}
				
		/* ------------------------------- */
		/* Secondary Navigation - Selected */
		/* ------------------------------- */
		ul.nav-secondary li.selected + li {
			background-image: none; /* Remove divider from nav item that follows selected item */
			}
		ul.nav-secondary li.selected {
			margin-right: 0px;
			padding: 0; /* Override right padding on non-selected <li> elements */
			background: transparent url(../images/edge-left-white.gif) left top no-repeat;
			}
			ul.nav-secondary li.selected .tab {
				background: transparent url(../images/edge-right-white.gif) right top no-repeat;
				padding-bottom: 7px;
				}
			ul.nav-secondary li.selected a,
			ul.nav-secondary li.selected a:visited {
				color: #74801a;
				}
			ul.nav-secondary li.selected a:hover {
				color: #74801a;
				cursor: default;
				}	