/* CSS Document */

#nav {
	text-align: center;
	/* We only need this margin because of the 
	messed up table structure of the rest of the document */
	/*margin-right: 28px;*/
	width: 100%;
	background: url(/images/toolbar_gradient_fbfdfe_d4e6f3.gif) 0px 0px repeat-x #d4e6f3;
	border: 1px solid #999ca1;
}

/* We're not using these anymore because the IE hack screws with it */
/*
.toolbar_disabled {
	color: #999999;
}

.toolbar_disabled:float {
	color: #00FF00;
}
*/

#nav a {
	text-decoration: none;
	color: #000;
	display: block;
}

#nav ul {
	padding: 0px;
	margin: 0px;
	list-style: none;
	z-index: 99;
}

#nav li {
	/* Float the main list elements */
	float: left;
	display: block;
	position: relative;
	margin: 0px;
	padding: 10px 0px 0px;
	/*width: 65px;*/
	width: auto;
	height: 25px;
	
	/* Pretty */
	font-weight: bold;
	/*border: 1px solid #ccc;*/
	border-right: 1px solid #c6cbd0;
	/* transparent background? */
	/*background: url(/images/toolbar_onoff_1.gif) 0px -35px no-repeat #fff;*/
}


#nav li:hover, #nav li.over {
	/*background: none;*/
	background: url(/images/toolbar_gradient_e7f1f8_afcde9.gif) 0px 0px repeat-x #afcde9;
	cursor: pointer;
}

#nav li ul {
  display: none;
  position: absolute; 
  top: 100%;
  left: 0;
  z-index:5;

  /* Pretty (faux-outset)*/
  border-top: 1px solid #999ca1;
  border-left: 1px solid #999ca1;
  border-right: 1px solid #004;
  border-bottom: 1px solid #004;
	
	background: url(/images/toolbar_gradient_fbfdfe_d4e6f3.gif) 0px 0px repeat-x #d4e6f3;
}

/* We're changing it to click to open */
/*
#nav li:hover ul, #nav li.over ul {
	display: block;
	cursor: pointer;
}
*/

#nav li li {
	width: 15em;
	height: auto;
	z-index: 5;
	
	/* background: #afcde9; */
	background: none;
	padding: 1px 0px 1px 4px;
	text-align: left;
}

#nav li li:hover, #nav li li.over2 {
	padding: 0px 0px 0px 4px;
	background: #ffffff;
	cursor: pointer;

	border: solid #000000;
	border-width: 1px 0px;
}

#nav li li a:hover {
	background: none;
	/* background-color: #ffffff; */
	cursor: pointer;
}

#nav #paging {
	/* background-color: #FF33CC; */
	float: right;
}

#paging_ul li {
	float: left;
	display: block;
	position: relative; /* only for absolute positioning for sub-ul's */
	margin: 0px;
	padding: 10px 5px 0px;
	width: auto;
	height: 25px;

	font-weight: bold;
	/* clear out border properties */
	border: none;
	border-left: 1px solid #c6cbd0;
	background: none;
}

#nav #paging p {
	margin: 0px;
	border: 0px;
	padding: 10px 5px 0px 5px;
	float: left;
	height: 25px;
	
	background: none;
	color: #999999;
}

#paging_ul li:hover, #paging_ul li.over {
	background-color: #CCCCCC;
	cursor: pointer;
}

#paging_ul li ul {
	background: url(/images/toolbar_gradient_fbfdfe_d4e6f3.gif) 0px 0px repeat-x #d4e6f3;
}

#paging_ul li li {
	width: 8em;
	height: auto;
	
	border: none;
	background: none;
	/* background: #d4e3f2; */
	padding: 1px 0px 1px 4px;
	text-align: left;
}

/*
#paging_ul li:hover ul {
	display: block;
}
*/

#paging_ul li li:hover {
	background-color: #ffffff;
	border: solid #000000;
	border-width: 1px 0px;
	cursor: pointer;
}

/*****************
 Below are the hacks to get around IE's lame-o <select> z-indexing
 For reference:
 http://www.hedgerwow.com/360/dhtml/ui_listbox_ie_fix/ui_listbox_ie_fix.html
*****************/

span.listbox{position:relative;}
span.listbox img{visibility:hidden;}
span.listbox select{font-size:12px;font-family:"Verdana";behavior:expression(window.listbox_replacement!=null?window.listbox_replacement(this):"");}
div.listbox_replacement{top:0px;left:0;z-index:1;display:block;padding:1px 0 0 2px;font-size:12px;font-family:"Verdana";position:absolute;border:inset 2px buttonface;background:white;overflow:hidden;}
div.listbox_replacement  button{display:block;position:absolute;right:0;top:0px;padding:0px;width:17px;height:16px;}
div.listbox_replacement  label{font-family:"Marlett";font-size:12px;position:absolute;right:0;right:2px;top:2px;}
