@charset "UTF-8";
/* CSS Document */

#subnavigation {
	width:830px;
	height:22px;
	background:#fff;
	padding:7px 10px 0px 50px;
	margin:0px 0px 0px 0px;
	position:relative;
	z-index:100;
	font-family:Georgia, "Times New Roman", Times, serif;
	font-size:1em;
}

/* hack to correct IE5.5 faulty box model */
* html #subnavigation {
	width:830px;
	w\idth:829px;
}

/* remove all the bullets, borders and padding from the default list styling */
#subnavigation ul {
	padding:0;
	margin:0;
	list-style-type:none;
	height:18px;
	font-size:0.8em;
}

#subnavigation ul ul {
	padding:0px;
	margin:0px;
}

/* float the list to make it horizontal and a relative positon so that you can control the dropdown#subnavigation positon */
#subnavigation li {
	position:relative;	
	height:18px;
	display:block;
	float:left;
	margin:0px 0px 0px 0px;
	list-style:none;
	color:#666;
	width:120px;
	text-align:center;
}

#subnavigation li.dividers {
	width:20px;
}

#subnavigation li.dividerssmall {
	width:10px;
}

#subnavigation #break {
	width:30px;
}

#subnavigation ul li ul li {
	position:relative;	
	height:18px;
	display:block;
	float:left;
	margin:0px 0px 0px -10px;
	list-style:none;
	color:#666;
	text-align:left;
	font-size:1.2em;
}

/* style the links for the top level */
#subnavigation a, #subnavigation a:visited {
	display:block;
	height:18px;
	border:none;	
	color:#666;
	text-decoration:none;
	display:block;
	padding:0px;
}

/* a hack so that IE5.5 faulty box model is corrected */
* html #subnavigation a, * html #subnavigation a:visited {
	width:149px;
	w\idth:138px;
}

/* style the third level background */
#subnavigation ul ul ul a, #subnavigation ul ul ul a:visited {
	background:#fff;
}

/* style the third level hover */
#subnavigation ul ul ul a:hover {
	background:#fff;
}

/* hide the sub levels and give them a positon absolute so that they take up no room */
#subnavigation ul ul {
	visibility:hidden;
	position:absolute;
	top:18px;
	left:0;
	width:149px;
}

/* another hack for IE5.5 */
* html #subnavigation ul ul {
	top:0px;
	t\op:1px;
}

/* position the third level flyout#subnavigation */
#subnavigation ul ul ul {
	left:149px;
	top:-1px; 
	width:149px;
}

/* position the third level flyout#subnavigation for a left flyout */
#subnavigation ul ul ul.left {
	left:-149px;
}

/* style the table so that it takes no ppart in the layout - required for IE to work */
#subnavigation table {
	position:absolute;
	top:0;
	left:0;
	border-collapse:collapse;
}

/* style the second level links */
#subnavigation ul ul a, #subnavigation ul ul a:visited {
	background:#fff;
	color:#999;
	height:auto;
	line-height:1em;
	padding:5px 10px;
	width:128px;
	border-width:0 1px 1px 1px;
}

/* yet another hack for IE5.5 */
* html #subnavigation ul ul a, * html #subnavigation ul ul a:visited {
	width:150px;
	w\idth:128px;
}

/* style the top level hover */
#subnavigation a:hover, #subnavigation ul ul a:hover {
	color:#000;
	background:#fff;
}

#subnavigation :hover > a, #subnavigation ul ul :hover > a {
	color:#000;
	background:#fff;
}

/* make the second level visible when hover on first level list OR link */
#subnavigation ul li:hover ul,
#subnavigation ul a:hover ul {
	visibility:visible;
}
/* keep the third level hidden when you hover on first level list OR link */
#subnavigation ul :hover ul ul {
	visibility:hidden;
}
/* make the third level visible when you hover over second level list OR link */
#subnavigation ul :hover ul :hover ul {
	visibility:visible;
}
