﻿/* Tatum.is-a-geek.com CSS Main layout sheet
*   Updated: 7.10.09 @ 1:00 p.m.
*   Author:  Michael TATUM
*  -------------------------------*/


/* INDEX:
	Vertical menu settings
	Horizontal navbar settings
	*/


/* -------- Menu Setup ------------ */
/* Uses a vertical stack of buttons */
/* Uses a background gif image      */

#menu {float:left;
	width: 178px;
	margin: 10px;
	border: #000 1px;
	border-style: solid solid none solid;
	}
	
#menu li a {height: 24px; text-decoration: none;}	
	
#menu li a:visited {
	color: #C0C0C0;
	font-weight: bold;
	display: block; /*makes the whole button clickable, not just text*/;
	background: url(graphics/navmenu.gif);
	padding: 8px 0 0 10px;
}
	
#menu li a:link {
	color: #C0C0C0;
	font-weight: bold;
	display: block; /*makes the whole button clickable, not just text*/;
	background: url(graphics/navmenu.gif);
	padding: 8px 0 0 10px;
}
	
#menu li a:hover {
	color: #FFF;
	font-weight: bold;
	background:  url(graphics/navmenu.gif) 0 -32px;
	padding: 8px 0 0 10px;
	}	


/* for list in list indents - Experimental - */
#menu ul ul {margin-left: 14px;} 
#menu ul ul li {border-left: 1px solid #000; }



/* -------- Navigation Bar Setup ---------- */
/* Uses a horizontal row of buttons or tabs */
/* Uses colors and borders, no graphics     */

#navigation ul {padding-top: 1em;}

#navigation li {display: inline; padding: 0px;}

#navigation a:visited 
	{
	padding: 0.4em 1em 0.4em 1em;
	color: #FFF;
	background-color: #8f062a;
	text-decoration: none;
	border: 1px solid #711515;
	}

#navigation a:link 
	{
	padding: 0.4em 1em 0.4em 1em;
	color: #FFF;
	background-color: #8f062a;
	text-decoration: none;
	border: 1px solid #711515;
	}

#navigation a:hover {color: #FFF; background-color: #601010;}




