/*denotes the first list in quicklinks, no bottom margin so, next list can sit flush, placed on the first <ul> tag*/
#quicklinks ul.first {
	margin-top: 30px;
	border: none;
	margin-bottom: 0px;
}

/*denotes subsequent list in quicklinks,*/
#quicklinks ul.next {
	margin-top: 0px;
	border: none;
	margin-bottom: 0px;
}

/*general rule for indented submenu items, includes a hack for IE's stupid haslayout problem.*/
#quicklinks ul.indent li {
	border:none;
	/*haslayout fix*/
	min-height:1%
}

#quicklinks ul.indent li a:link {
	color: #666666;
}
#quicklinks ul.indent li a:hover {
	background-color: #BBD3F2;
	color: #FFFFFF;
}
/*general rule for links inside indented lists*/
#quicklinks ul.indent li a {
	display: block;
	padding: 2px 0px 2px 5px;
	text-decoration: none;
	width: 100%;
	margin-right: -5px;
}
/*included with the above rule*/
html> body #quicklinks ul.indent li a {
	width:auto;
	/*---odd mozilla behavior fix-----*/
	padding: 2px;
	margin-right: 0;
}

/*used for list item with a submenu, to be used on last list item before submenu starts*/
#quicklinks ul p {
	margin: 0;
	padding: 5px 0px 5px 5px;
	color: #666666;
}

/*used for the last list item before an indented submenu*/
#quicklinks li.bottom {
	border-style: none;
		/*haslayout fix*/
	min-height:1%
}

/*denotes the indented secondary lists*/
#quicklinks ul.indent {
	margin-top: -1px;
	margin-left: 14px;
	border: none;
	margin-bottom: 5px;
	list-style-image: url(../images/other/bulletArrow_down.gif);
}

/*used for the first list item appearing in the ul after a submenu WHEN, the next menu item does NOT have a indented submenu*/
#quicklinks li.top {
	border-bottom: 1px solid #cccccc;
	border-top: 1px solid #cccccc;
		/*haslayout fix*/
	min-height:1%
}/* CSS Document */

/*used for the first list item appearing in the ul after a submenu WHEN, the next menu item IS a indented submenu*/
#quicklinks li.top2 {
	border-bottom: none;
	border-top: 1px solid #cccccc;
		/*haslayout fix*/
	min-height:1%
}

