@charset "utf-8";
/* CSS Document */

#navMain {     /*sets position and size for main nav menu div*/
	position: absolute;
	height: 370px;
	width: 99px;
	left: 78px;
	top: 80px;
	/*sets characteristics for font when link is disabled 
	font-family: Arial, Helvetica, sans-serif;  
	font-size: 13px;
	font-weight: bold;
	color: #FFFFFF;
	text-decoration: none;
	*/
}

.navBox {	/*sets characteristics for font for all nav links */
	font-family: Arial, Helvetica, sans-serif;
	font-size: 13px;
	font-weight: bold;
	color: #FFFFFF;
	text-decoration: none;
	
}

/* CSS below sets size and position for each nav link.  Property change on rollover will not work w/o this positioning!*/
#home { 
	position: absolute;
	left: 0px;
	top:10px;
	width: 100px;
	height: 20px;
	padding-top:3px;
}
#about { 
	position: absolute;
	left: 0px;
	top:45px;
	width: 100px;
	height: 20px;
	padding-top:3px;
}
#membership { 
	position: absolute;
	left: 0px;
	top:80px;
	width: 100px;
	height: 20px;
	padding-top:3px;
}

#board { 
	position: absolute;
	left: 0px;
	top:115px;
	width: 100px;
	height: 35px;
	padding-top:3px;
}
#country { 
	position: absolute;
	left: 0px;
	top: 170px;
	width: 100px;
	height: 35px;
	padding-top:3px;
}

#womens { 
	position: absolute;
	left: 0px;
	top:225px;
	width: 100px;
	height: 35px;
	padding-top:3px;
}
#garden { 
	position: absolute;
	left: 0px;
	top:280px;
	width: 100px;
	height: 35px;
	padding-top:3px;
}
#links { 
	position: absolute;
	left: 0px;
	top:325px;
	width: 100px;
	height: 20px;
	padding-top:3px;
}
#pet { 
	position: absolute;
	left: 0px;
	top:360px;
	width: 100px;
	height: 35px;
	padding-top:3px;
}


#navMain a:link, #navMain a:visited, #navMain a:active {	
	color: #ffffff;
	text-decoration: none;
}
 
#navMain a:hover {
	text-decoration: none; 
	background-color:#666633; 	
}

/*end of nav css*/