﻿/*Stylesheet for Atheltic subMenu
   To use: 
   place: <link href="athleticSubMenu.css" rel="stylesheet"/>  in head. (check href path).
   give the table data cell where the menu will be placed and id="subMenu".
   Then replace menu with an ul tag and place your links inside li tags. 
*/


*  {
	margin: 0;
	padding-left: 0;
	padding-right: 0;
	padding-bottom: 0;
}
#subMenu {
	height: 20px;
	background: black;	
}
#subMenu ul {	
	list-style: none;		
}
#subMenu li {
	background: black;
	float: left;
	padding: 1px 5px 1px 20px;
}
#subMenu a {
	text-decoration: none;	
	font-family: Verdana;
	font-weight: bolder;
	color: white;
	font-size: 8pt;
}
#subMenu a:hover {
	color: red;
}
