﻿/*
Automated Navigation CSS File
Version: 0.9.5.2 BETA
*/

/*Navigation Bar Style*/
.bottomNavBar {  
	vertical-align: middle;
	text-align: center;
	font-family: Arial Narrow;
	font-size: 8pt;
}

.separator {
	vertical-align: middle;
}

/*Sub Menu Style*/
.bottomNavBar ul {
	margin: 0px; 
	padding: 0px;
	list-style-type: none;
	
	float: left;
	position: relative;
	left: 50%;
}

/*Navigation Button Style*/
.bottomNavBar ul li {
	float: left;
	position: relative;
	right: 50%;	
}
.bottomNavBar ul li a {
	display: block;
		
	margin: 0px;
	padding: 1px 3px;
	vertical-align:middle;
	text-align: center;
	text-decoration:none;
	font-family: Arial Narrow;
	font-size: 8pt;
	/*color: #000000;*/
}

/*Hover State Button Style*/
.bottomNavBar ul li a:hover {
	text-decoration: underline;
}
/*Active State Button Style*/
.bottomNavBar ul li a.activeButton, .bottomNavBar ul li a:active {
	color: #000000;
}

/*Second Level Sub Menu Style*/
.bottomNavBar ul li ul {
	position: absolute;
	left: -999px;
	
	width: 100px;
}

/*Sub Menu Button Style*/
.bottomNavBar ul li ul li {
	line-height: 20px;
}

.bottomNavBar ul ul li a {
	width: 100px;
	line-height: 20px;
	text-align: left;
}

/*Sub Menu Hover State Button Style*/
.bottomNavBar ul li ul li a:hover {
	
}
/*Sub Menu Active State Button Style*/
.bottomNavBar ul li ul li a.activeButton, .bottomNavBar ul li ul li a:active {
	
}

/*Third Level Sub Menu Style*/
.bottomNavBar ul li ul li ul {
	margin: 20px 0 0 100px;
}

/*Show the sub menu of the hovered button*/
.bottomNavBar ul li:hover>ul, .bottomNavBar ul li.hoverClass>ul {
	left: auto;
	z-index: 100;
}

