.nav_quicklinks {
    height: 25px;
    float: left;
    margin: 0 0 0 20px;

	z-index:100;
}

.nav_quicklinks img {
    margin: 1px 5px -1px -5px;
    
    border: 0;
}

.subpage_content .nav_quicklinks {
    margin: 0 0 0 20px;
}
    
/* remove all the bullets, borders and padding from the default list styling */

.home_leftcontent .nav_quicklinks ul, .subpage_content .nav_quicklinks ul {
    padding:0;
    list-style-type:none;
}
.nav_quicklinks ul ul {
}
/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */
.nav_quicklinks li {
	float:left;
	position:relative;
	z-index:100;
}
/* style the links for the top level */
.nav_quicklinks a, .nav_quicklinks a:visited {
	display:block;
	text-decoration:none; 
	color: #a6a6a6;
	text-align: center;
    padding: 5px 18px 5px 18px;
}

/* a hack so that IE5.5 faulty box model is corrected */
* html .nav_quicklinks a, * html .nav_quicklinks a:visited {
    padding: 5px 18px 5px 18px;
}

/* style the second level background */
.nav_quicklinks ul ul a.drop, .nav_quicklinks ul ul a.drop:visited {
	background: red;
}
/* style the second level hover */
.nav_quicklinks ul ul a.drop:hover{
	background:red;
}
.nav_quicklinks ul ul :hover > a.drop {
	background:red;
}
/* style the third level background */
.nav_quicklinks ul ul ul a, .nav_quicklinks ul ul ul a:visited {
	background:#99ccff;
}
/* style the third level hover */
.nav_quicklinks ul ul ul a:hover {
	background:#ff9900;
}


/* hide the sub levels and give them a positon absolute so that they take up no room */
.nav_quicklinks ul ul {
	visibility: hidden;
	position:absolute;
	height:0;
	top: 21px;
	left: 8px; 
}

/* position the third level flyout menu */
.nav_quicklinks ul ul ul{
	margin-left: 171px;
	top:0;
}

.nav_quicklinks ul ul ul a {
	font-size: 11px;
}


/*.nav_quicklinks li li ul {
	_margin: 0 0 0 0px;
}*/

/* position the third level flyout menu for a left flyout */
.nav_quicklinks ul ul ul.left {
	left:300px;
}

/* style the table so that it takes no part in the layout - required for IE to work */
.nav_quicklinks table {position:absolute; top:0; left:0px;}

/* style the second level links */
.nav_quicklinks ul ul a, .nav_quicklinks ul ul a:visited {
	color: #cfcfcf; 
	background: #000000;
	height:auto; 
	padding:3px 0px 4px 15px; 
	text-align: left;
	font-size: 11px;
	width: 128px;
	border: 1px solid #474747;
	border-width: 1px 0 0 0;
	text-transform: capitalize;
	/* yet another hack for IE5.5 */
}

* html .nav_quicklinks ul ul a {
	width: 128px;
}


/* style the top level hover *****IMPORTANT: NEED BG COLOR******** */
.nav_quicklinks a:hover {
	color: #ffffff; 
    background: transparent;
} 
.nav_quicklinks :hover > a {
	color: #ffffff; 
    background: transparent;
}

/* style the second level hover *****IMPORTANT: NEED BG COLOR******** */
.nav_quicklinks ul ul a:hover {
	background: #2b2b2b;
	color:#e11f26; 
}

.nav_quicklinks ul ul :hover > a {
	background: #2b2b2b;
	color:#e11f26;
}

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

/* make the third level visible when you hover over second level list OR link */
.nav_quicklinks ul :hover ul :hover ul{ 
visibility:visible;
}
