/*Home button*/
#HomeLink{
	width:100%;
	background-color:#05316d;
	padding:5px 0;
}

#HomeLink a{
	font: normal 1em Tahoma, "Lucida Grande", "Trebuchet MS", Helvetica, sans-serif;
	color: white;
	display: block;
	position: relative; /*To help in the anchoring of the ".statusicon" icon image*/
	width: auto;
	padding-left:8px;
	text-decoration: none;
	
}

#HomeLink a:hover{
	font-weight:bold;
}

/*Accordion Menu Styles*/
/*box containing the menu*/
.applemenu{
	margin: 0 0 5px 0;
	padding: 0;
	width: 100%; /*width of menu*/
	border: none;
}

/*main menu items*/
.applemenu div.silverheader a{
	background-color: #05316d;
	font: normal 1em Tahoma, "Lucida Grande", "Trebuchet MS", Helvetica, sans-serif;
	color: white;
	display: block;
	position: relative; /*To help in the anchoring of the ".statusicon" icon image*/
	width: auto;
	padding: 5px 0;
	padding-left: 8px;
	text-decoration: none;
}

/*alternate states of the links*/
.applemenu div.silverheader a:visited, .applemenu div.silverheader a:active{
	color: white;
}

/*main menu item once it's selected and hover state of main menu items*/
.applemenu div.selected a, .applemenu div.silverheader a:hover{
	color: white;
	font-weight:bold;
}

/*box containing submenu items*/
.applemenu div.submenu{ 
	background: #ffd673;
	padding: 5px;
	/*height: 300px; Height that applies to all sub menu DIVs. A good idea when headers are toggled via "mouseover" instead of "click"*/
}

/*gets rid of bullets and spacing for unordered lists*/
div.submenu ul{list-style-type:none; margin: 0;padding: 0;}

/*formats links in submenu*/
div.submenu ul li a{
  display: block;
  text-decoration: none;
  padding:5px 0;
  color: #05316d;  	
}

/*hover state in submenu*/
div.submenu li a:hover {
  color: #05316d;
  font-weight:bold;
}

/*visited state in submenu*/
div.submenu li a:visited {
  color: #447bd4;
}
