/*CS7 MAIN PAGE BOTTOM NAVIGATION BAR*/

body {
	height: 10%;
	font-size: 1em;
	font-family: Verdana, Tahoma, Bookman Old Style, sans-serif;
	color: silver;
	line-height: 1em;
	padding-left: .375em;
	padding-right: .375em;
	padding-top: .375em;
	background-color: #000000;
	}

#bcontainer {
	position: absolute;
	bottom: 0%;
	left: 0%;
	width: 100%;
	height: 10%;
	margin: 0% 0%;
	padding: 0% 0% 0% 0%;	
	text-align: center;	 		
	font-size: 1.25em; 		
	background-color: #000000;	 	
   	border: 0% 0%;
	}



#followcontainer {
	position: absolute;
	bottom: 10%;
	right: 3.5%;
	width: 17.5%;
	margin: 0 auto;
	padding: 0 0;
	background-color: none;
	z-index: 1;
}


/* NAV BAR MAIN MENU FIRST UL & LI LEVEL*/

nav {
	float: left;
	width: 100%;
	bottom: 0%;
	margin: 0em 0em 0em 0em;
	padding: 0% 0% 0% 0%;
	background-color: none; 		
	border-bottom: 0em solid black; 	
	}

nav ul {
	background: none;
	margin: 0em;
	padding: 0% 0% 0% 0%;
	border-radius: 0px;
	list-style: none;
	display: inline;
	position: relative;
	display: inline-table;
	background-color: none;
	}

	/*used to clear floats on subsequent list items without use of 'overflow: hidden'*/
nav ul: after {
	content: "";
	clear: both;
	display block;
	}


/* NAV BAR MAIN MENU FIRST UL & LI LEVEL LINKS AND STYLE OPTIONS ONLY*/

nav ul li {
	float: left;
	}

nav ul li a {
	display: block;
	padding: 1.25em 3em 2em 3em;
	color: #505062;
	text-decoration: none;
	}


nav li {
	display: inline;
	line-height: 1em;
	}





/* NAV BAR MAIN MENU FIRST UL & LI LEVEL LINKS AND STYLE OPTIONS (WITH SUBMENU)*/

nav ul li a:link, #nav ul li a:visited {
	font-size: .675em;
	font-weight: none;
	text-decoration: none;
	padding: 1.25em 3em 1.7em 3em;
	background-color: none;
	color: #505062;
	}
nav ul li a:hover, #nav ul li a:active {
	font-size: .675em;
	font-weight: none;
	text-decoration: none;
	padding: 1.25em 3em 1.7em 3em;
	background-color: linear-gradient(to bottom, #4b1f80 7%, #0a0015 100%);
	color: #d7fff0;
	}


/* NAV BAR MAIN MENU FIRST UL & LI LEVEL LINKS AND STYLE OPTIONS (WITHOUT SUBMENU & SUBMENU)*/

nav li a {
	padding: 1.25em 3em 1.25em 3em;
	text-decoration: none;
	font-size: .675em;
	font-weight: none;			/*modify in addition to body font*/
	color: silver;
	border-right: 0em solid white;		/*activate for esthetic purposes only*/
	}


/* NAV BAR MAIN MENU TEXT - ALL LEVELS*/

nav ul li:hover a {
	color: none;
	}


/* NAV BAR SUBMENU CREATION AND PLACEMENT - SECOND UL & LI LEVELS*/

	/*hides second level ul & li(submenu(s))*/
nav ul ul {
	display: none;
	}

	/*reveals second level ul & li(submenu(s))*/
nav ul li:hover > ul {
	display: block;
	}

nav ul ul {
	position: absolute;
	bottom: 100%;
	width: auto;
	padding: 0 0; 
	font-size: .875em;
	font-weight: none;
	background: #000000;
	border-radius: 0px;
	text-align: center;
}	


/*ADDITIONAL CSS3 CODING FOR ESTHETICS*/

nav ul li:hover {
	background: linear-gradient(to bottom, #4b1f80 7%, #0a0015 100%);
	}
	
nav ul ul li {
	float: none; 
	border-top: 0px solid black;
	border-bottom: 0px solid black;
	position: relative;
	}

nav ul ul li a {
	padding: 0px 40px;
	color: #505062;
	}	

nav ul ul li a:hover {
	background: linear-gradient(to bottom, #4b1f80 7%, #0a0015 100%);
	}