body {
	margin: 0; /* to prevent IE from screwing up 100% width */
	padding: 0; /* to prevent IE from screwing up 100% width */
	background-color: #FAF2C3;
}
p, td {
	font: 13px Arial, Helvetica, sans-serif;
}
.articletitle {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 18px;
	font-weight: bold;
	color: #300F00;
}
a {
	color: #300F00;
}

#menubar {
	clear: both;
	padding-top: 2px;
}
#menu {
	/*width: 100%; */
	width: 100%;
	background-color: #300F00;
}

#menu ul {	/*controls placement of 1st level - top */
	list-style: none;
	margin: 0; /* -right controls space between buttons */
	padding: 0;
	/*width: 6em; controls width of top and second tier menus - use if all widths are the same*/
	float: left;
}

#menu a {  /*describes specifics of the look of 2nd tier since they all have links*/
	display: block;
	margin: 0;
	padding: 4px 6px;
	padding-left: 3px;
	padding-right: 0px;
	border-bottom: 1px solid #FAF2C3;
	color: #FAF2C3;
	background: #300F00;
	text-decoration: none;
	cursor: pointer;
}

#menu a:hover {		/*describes specifics of the look of 2nd tier */
	color: #FAF2C3;
	background: #7C2700;
}

#menu ul ul li a {font: 12px arial, helvetica, sans-serif}

#menu h2 {  /*nothing in h2 but 1st tier name with link, but needs margin: 0*/
	margin: 0;
}

#menu h2 a {  /*only need to specify attributes here that will be different from the standard <a> defined above*/
	padding-top: 8px;
	padding-bottom: 8px;
	padding-left: 0px;
	padding-right: 0px;
	text-align: center;
	font: bold 13px arial, helvetica, sans-serif;
	color: #FAF2C3;
	background-color: #300F00;
	border-bottom: 1px solid #300F00;
	margin: 0;
}
#menu h2 a:hover {	/*only need to specify attributes here that will be different from the standard <a: hover> defined above*/
	color: #300F00;
	background-color: #FAF2C3;	
}

#menu li {position: relative;}

#menu ul ul {
	position: absolute;
	z-index: 500;
	width: 180px;  /*if added, could make the second tier longer than the first tier*/
	left: 0px;  /*controls left offset */
}

div#menu ul ul,
div#menu ul li:hover ul ul,
div#menu ul ul li:hover ul ul
{display: none;}

div#menu ul li:hover ul,
div#menu ul ul li:hover ul,
div#menu ul ul ul li:hover ul
{display: block;}
