/**
 * Style Sheet for [Domain Name]
 *
 * Contains styling information specific to the [Domain Name] navigation section.
 *
 * @author     Sebo Marketing <http://www.sebomarketing.com>
 * @copyright  2008 by [Company Name], All Rights Reserved
 * @version    1.0
 */

/********************* Navigation Menu *********************/

/* Navigation Layout and Appearance */
#navigation {
	position: absolute;
	top: 115px;
	left: 0;
	margin: 0;
	padding: 0;
	
	width: 960px;
	height: 35px;
	
	background-color: #8a8886;
	z-index:2;
}

/* Appearance of Navigation List Items */
	#navigation ul {
		margin: 0;
		padding: 0;
		height: 35px;
		width: auto;
		list-style: none;
	}
		#navigation ul li {
			position: relative;
			display: inline;
			float: left;
			
			margin: 0;
			padding: 0;
			height: 35px;
		}
			#navigation ul li a:link, #navigation ul li a:visited, #navigation ul li a:active {
				display: block;
				
				margin: 0 0 0 0;
				padding: 9px 0 0 0;
				width:159px;
				height:26px;
				
				text-align: center;
				
				border-right: 1px solid #fff;
			}
			#navigation ul li a:hover {
			}

		/* Appearance of Navigation List Items on Hover */
		#navigation ul li:hover, #navigation ul li.over {
			background-color: #0056a2;
		}
		#navigation ul li:hover a:link, #navigation ul li:hover a:visited,
		#navigation ul li.over a:link, #navigation ul li.over a:visited {
		}

		/* Current Styles */
		#navigation ul li.current {
		}
			#navigation ul li.current a:link, #navigation ul li.current a:visited {
			}
			#navigation ul li.current a:hover, #navigation ul li.current a:active {
			}

/********************* Navigation Dropdowns *********************/

/*  Appearance and Layout of the Dropdown */
#navigation ul li ul {
	display: none;
}
	#navigation ul li:hover ul, #navigation ul li.over ul {
		display: block;
		position: absolute;
		top: 35px;
		left: -1px;
	
		margin:0;
		padding:0;
	
		height: auto; /* Don't delete me; makes sure you can see the borders in firefox too. */
		width:160px;
	
		border-bottom: 1px solid #8a8886;
		background: #fff;
		z-index: 5;
	}
	#navigation ul li.last ul, #navigation ul li.last ul {
		left: auto;
		right: 1px;
	}

	/* Appearance and Layout of the Dropdown List Items */
	#navigation ul li:hover ul li, #navigation ul li.over ul li {
		display: block;
		float:left;

		margin: 0;
		padding: 0;

		width: 159px;
		height: auto; /* Don't delete me; makes sure you can see the borders in firefox too. */
		
		border: solid #8a8886;
		border-width: 0 1px;
	}
	#navigation ul li:hover ul li.first, #navigation ul li.over ul li.first {
	}
	#navigation ul li:hover ul li.last, #navigation ul li.over ul li.last {
	}

		/* Appearance of Dropdown List Item Links */
		#navigation ul li:hover ul li a:link, #navigation ul li:hover ul li a:visited,
		#navigation ul li.over ul li a:link, #navigation ul li.over ul li a:visited {
			display:block;
			float:none;
			margin: 0;
			padding: 5px 0 5px 10px;
			height: auto;
			width: 148px;
			
			text-align: left;
			color: #8a8886;
			
			border: 0;
		}
		#navigation ul li:hover ul li a:hover, #navigation ul li:hover ul li a:active,
		#navigation ul li.over ul li a:hover, #navigation ul li.over ul li a:active {
			text-decoration: underline;
			color: #fff;
			background: #0056a2; /* TODO: Set Active Color */
		}

		/* Appearance of Current List Item*/
		#navigation ul li.current ul li.current {
			background: none;
		}
			#navigation ul li.current ul li.current a:link, #navigation ul li.current ul li.current a:visited {
				color: #8a8886;
				text-decoration: none;
			}
			#navigation ul li.current ul li.current a:hover, #navigation ul li.current ul li.current a:active {
				color: #8a8886;
				text-decoration: underline;
			}

/********************* Side Navigation *********************/

/* Side Navigation Layout and Appearance */
.blobStyleNav {
	position: relative;
	top: 0;
	margin: 3px 3px 0;
}
	.blobStyleNav .blobTopLeft {
		background: #0056a2;
	}
	.blobStyleNav .blobTopRight {
	}
		.blobStyleNav .blobTopRight h2 {
			margin: 0;
			padding: 2px 2px 1px 8px;
			height: 1%;
			font-size: 1.5em;
			color: #fff;
		}
	.blobStyleNav .blobBody {
		margin: 10px 10px 0 0;
		padding: 0;
	}
	.blobStyleNav .blobBottomLeft {
		display: none;
	}
	.blobStyleNav .blobBottomRight {
	}

/* Appearance and Layout of Side Navigation List Items */
.blobStyleNav ul {
	list-style: none;
}
	.blobStyleNav ul li {
		padding: .4em 0 .4em 15px;
		font-size: 13px;
	}
	.blobStyleNav ul li a:link, .blobStyleNav ul li a:visited {
		display: block;
	}

	.blobStyleNav ul li a:hover, .blobStyleNav ul li a:active {
	}

	/* Appearence of the link for the currect page */
	.blobStyleNav ul .current a:link,
	.blobStyleNav ul .current a:visited,
	.blobStyleNav ul .current a:active {
		text-decoration: underline;
		font-weight: bold;
	}
	.blobStyleNav ul .current a:hover {
	}

/* Set all the subnavs to be hidden initially */
.blobStyleNav ul ul {
	display: none;
}

/* Display the subnav of the current page */
.blobStyleNav ul .current ul {
	display: block;
	margin: 0;
	margin-left: 13px;
	padding-left: 0;
	list-style: none;
	font-weight: normal;
}
.blobStyleNav ul .current ul li {
	padding-right: 0;
}
.blobStyleNav ul .current ul a:link,
.blobStyleNav ul .current ul a:visited,
.blobStyleNav ul .current ul a:active {
	display: block;
	padding-left: 19px;
	text-decoration: none;
	font-weight: normal;
	font-size: 95%;
	background: none;
}
.blobStyleNav ul .current ul a:hover {
	text-decoration: underline;
}

/* Highlight the subnav for the current page */
.blobStyleNav ul .current .current a:link,
.blobStyleNav ul .current .current a:visited,
.blobStyleNav ul .current .current a:active {
	text-decoration: underline;
	font-weight: bold;
	color: #ee2e24;
}
.blobStyleNav ul .current .current a:hover {
}

/* Sitemap Styles */
#sitemap {
	margin: 20px;
}
#sitemap ul {
	list-style: disc;
}

#sitemap ul ul {
	margin: 5px 10px;
	list-style-type: circle;
}