/* standard elements */
html {min-height: 100%;}

* {
	margin: 0;
	padding: 0;
}

body {
	background: white;
	background-image: url(images/outside_bg.jpg);    
	color: black;   /* body text color */
	font: normal 70% Tahoma,sans-serif;  /* text size throughout document */
    margin-top: 20px;
}

p,ul {padding-bottom: 1.2em;}

li {list-style: none;}

h1 {
	font: bold 2em Tahoma,sans-serif;
    color: #990043;
    text-decoration: underline;
	margin-bottom: 4px;
}

h1,h2,h3 {padding-top: 6px;}

/* misc */
.clearer {clear: both;}

.left {float: left;}

.right {float: right;}


/* title */
.header {
	background: white url(images/header.jpg) no-repeat;
	font-size: 1.2em;
	height: 150px;
	margin: 0 auto;
    margin-bottom: -10px;
	padding: 0 10px 0px 10px;
	width: 780px;
    border-left: 1px solid black;
    border-right: 1px solid black;
}

/* structure */
.container {
	background: white; /* border of entire frame */
	font-size: 1.2em;
	margin: 0 auto;
	padding: 0 10px 10px;
	width: 780px;
    border-left: 1px solid black;
    border-right: 1px solid black;
    border-bottom: 1px solid black;
}

/* main */
.main {
	background: url(images/background.jpg); /*#ffe88d*/ 
    border-top: 1px solid black;
}


/* content */
.content {
	float: left;  /* changing to right bumps side nav bar to left and everything else to right */
	padding: 0 16px;
	width: 470px;
}
.content li {
	list-style-type: disc;
	margin-left: 18px;
}
.content p {
    font-family: "Lucida Sans Unicode",sans-serif;
}

.content a {
    color: black;
}

.content a:hover{
    color: white;
    font-weight: bold;
}

/* main navigation */
#nav {
	margin-top: 5px;
	margin-bottom: 0px;
	font-family: Tahoma,sans-serif;
}

#nav li {
	list-style-type: none;
	padding: 0px;
	margin: 0;
	float: left;
}

#nav a {
	display: block;
	font-size: 12px;
	color: white;
	text-decoration: none;
	background-color: black;
	padding: 6px 19px 6px 19px;
	width: auto;
	margin-left: 6px;
	border-right: 2px solid #990043;
	font-weight: bold;
	margin-bottom: 0px;
}

#nav a:hover {
	color: white;
	background: #990043;
	border-right: 2px solid black;
}

/* special formatting for current page link */
a#youarehere {
	background: #990043;
}



/* side navigation */
.sidenav {
	float: right;
	width: 240px;
}
.sidenav h2 {
	color: #990043; /* text color on side nav bar headings */
	font-size: 1em;
	line-height: 30px;
	margin: 0;
	padding-left: 12px;
}
.sidenav p {
    padding-left: 12px;
}    
.sidenav ul {
	padding: 0;
	border-top: 1px solid black; /* rules on side nav bar below headings */
}
.sidenav li {border-bottom: 1px solid black;} /* rules on side nav bar below items */
.sidenav li a {
	font-size: 1em;
	color: black; /* text color on side nav bar items */
	display: block;
	padding: 6px 0 6px 10px;
	text-decoration: none;
}
.sidenav li a:hover {
	background: #990043; /* bg hover color on side nav bar items */
	font-weight: bold;
	color: white; /* text hover color on side nav bar items */	
}


/* footer */
.footer {
	background: url(images/bgfooter.jpg) repeat-x;
	color: black;
	font: bold .8em sans-serif;
	line-height: 39px;
	text-align: center;
}
.footer a {color: white;}
.footer a:hover {color: black;}

