/* navIGATION : HORIZONTAL CSS nav */

/*

 USEFUL SHORTHAND NOTES FOR THIS TECHNIQUE:
 padding:1px;				Padding all round
 padding:1px 2px;			Padding 1px top and bottom... 2px left and right
 padding:1px 2px 3px;		Padding 1px top... 2px Left and right... 3px Bottom
 padding:1px 2px 3px 4px;	Padding 1px top... 2px left... 3px bottom... 4px right

*/

/* LEVEL 1 - Original (always visible) horizontal links */
.nav {
	background: #fff ; /* VILISBLE LINKS BACKGROUND COLOR */
	height:26px; /* [BLBH1] VILISBLE LINKS BAR HEIGHT - MUST BE SAME AS BLBH2 */
}
.nav a {
	line-height:26px; /* [BLBH2] VILISBLE LINKS BAR HEIGHT - MUST BE SAME AS BLBH1 */
	color:#FFF; /* VILISBLE LINKS TEXT COLOR */
	padding:0 21px; /* VILISBLE LINKS - PADDING USED INSTEAD OF MARGIN FOR THIS TECHNIQUE */
	display:block;
	font-size:13px;
	font-weight:bold;
	/*border-left: 1px #fff solid;*/
	text-decoration:none;
	margin:0;
	background:url(../images/graphics/bg_tab_right_cap.jpg) right bottom no-repeat ;
	text-align:center;
}
.nav .firstlink a {
	padding:0 18px 0 20px;;
	border-left: none;
}
.nav .lastlink a {
	padding:0 18px 0 17px;
}

.selectedclass a {
	background:url(../images/graphics/red_tab/bg_tab_right_cap.jpg) right bottom no-repeat !important ;
}
.selectedclass {
	background:url(../images/graphics/red_tab/bg_tab_left_long.jpg) left bottom no-repeat !important ;
}
.selectedclass:hover a {
	background:url(../images/graphics/red_tab/bg_tab_right_cap.jpg) right top no-repeat !important ;
}
.selectedclass:hover {
	background:url(../images/graphics/red_tab/bg_tab_left_long.jpg) left top no-repeat !important ;
}

.nav li {
	background:url(../images/graphics/bg_tab_left_long.jpg) left bottom no-repeat ;
}
.nav li:hover a {
	color:#fff;
	background:url(../images/graphics/bg_tab_right_cap.jpg) right top no-repeat ;
}
.nav li:hover {
	background:url(../images/graphics/bg_tab_left_long.jpg) left top no-repeat ;
}

/* Level 2 */
.nav li li {
	background:none;
}
.nav li li a {
	background: #555 !important  ; /* INVISIBLE LINKS BACKGROUND COLOR */
	color:#FFF;  /* INVISIBLE LINKS TEXT HOVER COLOR */
	margin-top:0px; /* ADJUST THIS VALUE FOR LEVEL 2 POSITION FINE-TUNING */
	border-width:0 1px 1px 1px;
	border-style:solid;
	border-color:#000;
}
.nav li li a:hover {
	background: #999 !important ; /* INVISIBLE LINKS BACKGROUND HOVER COLOR */
	color: #900;
}
.nav li ul {
	border-top:1px solid #000;
}
/* Level 3 */
.nav ul ul ul a {
	background:#090;
}
.nav ul ul ul a:hover {
	background:#060;
}
/* Level 4 */
.nav ul ul ul ul a {
	background:#990;
}
.nav ul ul ul ul a:hover {
	background:#660;
}
/* Level 5 */
.nav ul ul ul ul ul a {
	background:#099;
}
.nav ul ul ul ul ul a:hover {
	background:#066;
}

/* Level 2, onwards */
.nav li li a {
	width:140px; /* FORMATS ALL CHILDREN */
	text-align:left; /* FORMATS ALL CHILDREN */
	padding:0 6px; /* FORMATS ALL CHILDREN */
}

/* == == == == == == == == == == == === == DO NOT EDIT BELOW THIS LINE == == == == == == == == == === == == == */

.nav li {
	float:left;
}
.nav ul, .nav li {
	list-style:none;
	margin:0;
	padding:0;
}
.nav li>ul {
	z-index:100;
	visibility:hidden;
	position:absolute;
}
.nav li:hover>ul {
	visibility:visible;
}
.nav li li {
	float:none;
}
.nav ul>li>ul>li>ul {
	margin:-28px 0 0 153px;  /* UL UL A width + UL UL A Padding + (UL UL Left & Right Borders)-border width */
}
.nav td {
	padding:0;
}
