body { 
	margin: 0;
	background: #4c4743;
	font: 13px calibri;
}
#wrapper {
	width: 1000px;
	margin: 0 auto;
	background: url(../img/wrapper.gif);
}
#header {
	height: 220px;
	background: url(../img/header.jpg) no-repeat;
}
#left {
	width: 264px;
	float: left;
}
#right {
	margin-left: 275px;
	width: 680px;
}
#footer {
	clear: both;
	height: 50px;
	background: url(../img/footer.gif);
	margin-top: 20px;
}
#footer p {
	margin: 0 0 0 320px;
	padding-top: 12px;
	color: #fff;
	font: 11px calibri;
}
h1 {
	font: 24px calibri;
	margin:20px 0;
}
h2 {
	font: 18px calibri;
	margin:20px 0;
}
#left ul {
	list-style: none;
}
#left a {
	text-decoration: none;
	color: #ace;
	display: block;
	width: 250px;
	padding: 2px 0;
	font: 13px calibri;
}
#left a:hover {
	color: #fff;
}

/* drop down menu 																				*/
#left, #left ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
	line-height: 1;
}

#left a {
	display: block;
	width: 200px;
}

#left li { /* all list items */
	width: 70px; /* width needed or else Opera goes nuts */
}

#left li ul { /* second-level lists */
	position: absolute;
	background: #246;
	border: 3px solid #246;
	width: 220px;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
}
#left li ul li {
	width: 140px;
}
#left li ul li a{
	width:200px;
	display:block;
	padding: 4px 10px;
	color: #def;
	font: bold 11px calibri;
	border: 1px solid #246;
}
#left li ul li a:hover{
	background: #38c;
	color: #fff;
	border: 1px solid #49f;
}

#left li:hover ul, #left li.sfhover ul { /* lists nested under hovered list items */
	left: auto;
	margin-left: 40px;
}
/* end drop down menu 																			*/