/* */

#header {
	height: 120px;
	border-bottom: 2px solid #000;
	width: 100%;
	background:  #fff;
	background:  url(images/212-header-bg.png) repeat-x;
	}
	
#nav {
	top: 100px;
	}
	
#nav li a {   /* Main nav styles for all links */
	display: block; /* Although display:block suggests a vertical list the float:left property under #nav li causes the menu to float inline */
	margin-left: 2px; /* adds a gap between the tabs */
	width: 90px; 	/* width of the tab */
	line-height: 20px; /* height of the tab */
	text-decoration: none;
	background: #c33;
	}

#nav a:link, #nav a:visited  { 
	background: #000;
	color: #fff;
	}
	
#nav a:hover, #nav a:active { 
	background: #fff;
	color: #000;
	}
	
#nav a#current { 
	background: #fff;
	color: #000;}	

