@charset "UTF-8";
body {
	font: 90%/1.4 "Lucida Sans Unicode", "Lucida Grande", sans-serif;
	background:#E9E3CF url(/images/purple.png) center top no-repeat;
	margin: 0;
	padding: 0;
	color: #88663B;
}

/* ~~ Element/tag selectors ~~ */
ul, ol, dl { 
	padding: 0;
	margin: 0;
}

h1 {
	font-size: 36px;
	color:#EAE5D2;
	padding-right: 25px;
	padding-left: 25px;  
	text-align: center;
	text-shadow: #000 2px 2px 4px;
	height: 40px;
}

h2 {
	color: #636;
	margin-top: 0;	 
	font-size: 24px;
	padding-right: 25px;
	padding-left: 25px; 
}

h3, h4, h5, h6 {
	color:#626;
	margin: 0 0 5px 0;	 
	padding-right: 25px;
	padding-left: 25px; 
}

p {
	margin-top: 0;	 
	padding-right: 25px;
	padding-left: 25px; 
}

h1, h2, h3, h4, h5, h6, p {
	margin-top: 0;	 
	padding-right: 15px;
	padding-left: 15px; 
}

a img { 
	border: none;
}

a:link {
	color: #f30;
	text-decoration: underline; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
}
a:visited {
	color: #f30;
	text-decoration: underline;
}
a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
	text-decoration: none;
	color: #666;
}

.container {
	width: 960px;
	margin: 0 auto; /* the auto value on the sides, coupled with the width, centers the layout */}
#teaser_box {
}
.header {
	background: transparent;
}

/* ~~ TOP Navigation ~~ */

#topNav {
	background: none;
	padding:0;
	width: 960px;
	height:42px;
	margin-bottom: 15px;
	}

ul.topNav {
	list-style: none; 
}
ul.topNav li {
	float: left;
}
ul.topNav a, ul.nav a:visited { 
	padding: 5px 25px;
	color:#E9E3CF;
	text-align:center;
	display: block; 
	width: 190px;  
	text-decoration: none;
	text-transform:uppercase;
}
ul.topNav a:hover, ul.nav a:active, ul.nav a:focus { 
	color: #FFF;
}

.sidebar1 {
	margin: 40px 10px 0 0;
	float: right;
	width: 220px;
	background: #F6F3EA;
	padding: 20px;
}
#content {
	margin-top: 20px;	
	width: 680px;
	float: left;
	background:#E9E3CF;
}

#content ul, .content ol { 
	padding: 0 25px 15px 25px;
}

/* ~~ Navigation ~~ */
ul.nav {
	list-style: none; 
	margin-bottom: 15px; 
}
ul.nav li {
}
ul.nav a, ul.nav a:visited { 
	padding: 5px 5px 5px 15px;
	color: #f30;
	display: block; 
	width: 160px;  
	text-decoration: none;
}
ul.nav a:hover, ul.nav a:active, ul.nav a:focus { 
	color: #666;
}

/* ~~ The footer ~~ */
.footer {
	padding: 10px 0;
	background: #303;
	border-top: #BC905E 3px solid;
	height:100px;
	text-align:center;
	font-size:10px;
	clear: both; 
}

/* ~~ miscellaneous float/clear classes ~~ */
.fltrt {  /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page. The floated element must precede the element it should be next to on the page. */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class can be placed on a <br /> or empty div as the final element following the last floated div (within the #container) if the #footer is removed or taken out of the #container */
	clear:both;
	height:0;
	font-size: 1px;
	line-height: 0px;
}