/**
* -------------------------
* @section Toolbar
* -------------------------
*/

#toolbar {
	list-style-type: none;
	margin: 0;
	position: absolute;
	right: 0;
	top: 5px;
	width: 900px;
}
	#toolbar li {
		color: #fff;
		display: inline;
		float: right;
		font-size: 11px;
		margin-left: 10px;
	}
		#toolbar li a {
			color: #fff;
			margin-right: 10px;
		}



/**
* -------------------------
* @section Primary
* -------------------------
*/

#primary {
	background: #ADB8BE url(../_images/navigation_bg.gif) repeat-x left bottom;
	border-top: 1px solid #B9C4C8;
	margin: 0;
	left: 0;
	list-style-type: none;
	margin: 0 0 0px 0;
	position: relative;
	width: 1000px;
}
	#primary li {
		display: inline;
		float: left;
		width: auto !important;
		width: 20px;
		min-width: 20px;
		white-space: nowrap;
	}
	#primary li.link1, #primary li.link2 {
		min-width: 0;
		white-space: normal;
		width: 200px !important;
	}
		#primary li a:link,
		#primary li a:visited,
		#primary li a:hover,
		#primary li a:active {
			background: #ABB9BC url(../_images/primary_normal_bg.gif) no-repeat right bottom;
			color: #fff;
			display: block;
			font-size: 14px;
			font-weight: bold;
			height: 32px;
			padding: 14px 14px 15px 14px;
			text-align: center;
			text-decoration: none;
			vertical-align: middle;
		}
		#primary li a.lit:link,
		#primary li a.lit:visited,
		#primary li a:hover,
		#primary li a:active {
			background-color: #95BABF;
			background-image: url(../_images/primary_active_bg.gif);
		}

		#primary li.link1 a,
		#primary li.link2 a {
			height: 42px !important;
			padding-top: 4px !important;
		}

		/* note from DK: this is a hack to ensure that this GIF appears on each page, so it's always in the cache */
		/* this will prevent flickering in IE in the main menu */
		#skipper {
			background-image: url(../_images/primary_active_bg.gif);
		}



