@charset "UTF-8";

body {
	margin: 0;
	padding: 0;
	font-size: 13px;
	background-image: url(images/bg_tile.png);
	background-repeat: repeat-x;
	background-position: top;
}

a {
	color: #C22890;
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

p {
	letter-spacing: 1px;
	font-family: "Times New Roman", Times, serif;
}

#sidebar_left h2 {
	text-transform: uppercase;
	color: #fff;
	font-weight: lighter;
	font-size: 18px;
	letter-spacing: 2px;
}

h2 {
	text-transform: uppercase;
	font-weight: lighter;
	font-size: 18px;
	letter-spacing: 2px;
	line-height: 16px;
}

.emphasis {
	font-weight: bold;
	text-decoration: underline;
}

#container {
	margin: 0 auto;
	width: 1000px;
	margin-top: 2px;
	border: 1px solid #666666;
}

#main {
	width: 100%;
	height: 625px;
	background-image: url(images/main_background.jpg);
	background-repeat: no-repeat;
}

#header {
	width: 675px;
	height: 65px;
	margin-left: 274px;
	margin-bottom: 20px;
	background-image: url(images/jan_rednall.png);
	background-repeat: no-repeat;
}

#navcontainer {
	font-size: 20px;
	padding-top: 50px;
	margin-left: 27px;
}

#content {
	width: 650px;
	margin-left: 300px;
}

#sidebar_left {
	width: 220px;
	margin-left: 8px;
	margin-top: 0px;
	float: left;
}

#sidebar_left p {
	color: #FFFFFF;
}

#footer {
	height: 35px;
	background-color: #333333;
	border-top: 1px solid #666666;
}

#footer p {
	color: #ffffff;
}

/*  Menu Styles  */

#navcontainer ul { /* all lists */
	list-style: none;
	margin: 0;
	padding: 0;
}

#navcontainer li { /* all list items */
	float: left;
	position: relative;
	padding-left: 10px;
	padding-right: 10px;
	border-left: solid 1px #000000;
}

#navcontainer li ul { /* second-level lists */
	display: none;
	position: absolute;
	top: 1em;
	left: 0;
	font-size: 16px;
	width: 180px;
	background-color: #EEEEEE;
}

#nav li.first_nav, #nav ul li, #nav li ul {
	border-left: none;
	padding-left: 0;
}

#navcontainer li>ul { /* to override top and left in browsers other than IE, which will position to the top right of the containing li, rather than bottom left */
	top: auto;
	left: auto;
}

#navcontainer li:hover ul, #navcontainer li.over ul { /* lists nested under hovered list items */
	display: block;
}