/* this is the whole kittenkaboodle for the menu system */

/* first setup the three levels*/

#navContainer {
	padding-top: 50px;
}


#navTop {
	padding-left: 0px;
}
#navSub {
	padding-left: 20px;
}

#navSubSub {
	padding-left: 40px;
}


/* now setup the link sizes colors and effects */
/* for each of the three levels, trhere is a link, visited and hover A tag type */

#navTop a:link{
	color: #333333;
	font-size: 16px;
	font-family: arial, sans-serif;
	text-decoration: none;
	font-weight: bold;
}
#navTop a:visited{
	color: #333333;
	font-size: 16px;
	font-family: arial, sans-serif;
	text-decoration: none;
	font-weight: bold;
}
#navTop a:hover{
	color: #FF4906;
	font-size: 16px;
	font-family: arial, sans-serif;
	text-decoration: none;
	font-weight: bold;
}

#navSub a:link {
	color: #e4e07f;
	font-size: 14px;
	font-family: arial, sans-serif;
	text-decoration: none;
}
#navSub a:visited {
	color: #e4e07f;
	font-size: 14px;
	font-family: arial, sans-serif;
	text-decoration: none;
}
#navSub a:hover{
	color: #e4e07f;
	font-size: 14px;
	font-family: arial, sans-serif;
	text-decoration: underline;
}

#navSubSub a:link {
	color: #e7d082;
	font-size: 12px;
	font-family: arial, sans-serif;
	text-decoration: none;
}
#navSubSub a:visited {
	color: #e7d082;
	font-size: 12px;
	font-family: arial, sans-serif;
	text-decoration: none;
}
#navSubSub a:hover {
	color: #e7d082;
	font-size: 12px;
	font-family: arial, sans-serif;
	text-decoration: none;
}

#navTop.accentMenu a{
	font-weight: bold;
	font-style: italic;
	color: #FF4906;
}
#navSub.accentMenu a {
	font-weight: bold;
	font-style: italic;
	font-size: larger;
}
#navSubSub.accentMenu a{
	font-weight: bold;
	font-style: italic;
	font-size: larger;
}