/*

 Design Monkey
 layout.css

*/



/* Remove Default Styling
------------------------------------------------------------------------------------------------- */
	
* { margin:0; 
	padding:0; 
	font-style:normal; 
}

img { 
	border: 0; 
}


/* Typography
------------------------------------------------------------------------------------------------- */

body{
	font-family: verdana;
	font-size: 1em;
	background: #EDE159 url(../images/bg.jpg) repeat-x top left;
}

p{
	font-size:0.7em;
	line-height: 1.5em;
}

h1,h2,h3,h4{
	font-family: Trebuchet MS, Verdana;
}

a{
	text-decoration:none;
}

a:hover{

}

.floatright{
	float: right;
}

.clearright{
	clear: right;
}

.floatleft{
	float: left;
}

.clearleft{
	clear: left;
}

.clearboth{
	clear: both;
}

/* Overall Layout
------------------------------------------------------------------------------------------------- */

div#container_outer{
	background: transparent url(../images/header.png) no-repeat top right;
}


div#container{
	width: 908px;
	margin:0 auto;
	min-height: 500px;
	position: relative;
}

/* Header 
------------------------------------------------------------------------------------------------- */

div#header{
	width: 908px;
	padding-bottom: 10px;
	overflow: hidden;
}
div#header p {
	float: right;
	font-size: 1.0em;
	text-align: right;
}

div#header h1{
	margin-top: 20px;
	width: 468px;
	float: left;
}

div#header a{
	color: #666;
}

div#header h1 a{
	background:transparent url(../images/logo.png) no-repeat top left;
	width: 468px;
	height: 87px;
	display: block;
	text-indent: -3000px;
}

ul#nav{
	clear: both;
	width: 884px;
	background: transparent url(../images/menu_bg.png) no-repeat top left;
	list-style: none;
	overflow: hidden;
	font-size: 0.8em;
	padding-left: 24px;
}

ul#nav li{
	float: left;
	height: 71px;
}

ul#nav li a{
	display: block;
	color: #FFF;
	border-left: 2px #FFF solid;
	padding-left: 5px;
	margin: 28px 10px 10px 10px;
	
}

ul#nav li a:hover, ul#nav li a.selected{
	border-left: 2px #F77C12 solid;
}

/* Content 
------------------------------------------------------------------------------------------------- */

div#content_head{
	height: 14px;
	width: 900px;
	background: transparent url(../images/content_head.png) no-repeat top left;
	font-size: 0;
	clear: both;
	margin-top: 10px;
	margin-left: 4px;
}

div#content_foot{
	height: 20px;
	width: 900px;
	background: transparent url(../images/content_foot.png) no-repeat bottom left;
	font-size: 0;
	clear: both;
	margin-left: 4px;
}

div#content{ 
	width: 900px;
	background: transparent url(../images/content_bg.png) repeat-y top left;
	overflow: hidden;
	clear: both;
	margin-left: 4px;
	position: relative;
}

div#container img#wings{ 
	position: absolute;
	bottom: -108px;
	left: -116px;
}

h2.sing{
	width: 572px;
	height: 74px;
	display: block;
	background: transparent url(../images/h2_sing.jpg) no-repeat top left;
	text-indent: -30000px;
}

div#content h2{ 
	font-weight: normal;
	color: #8F0000;
	margin: 5px 0 10px 0;
}

div#content h3{ 
	color: #F77D10;
}

div#content p{ 
	font-size: 0.8em;
	margin-bottom: 15px;
}

div#content table ul, div#content ul.stars{ 
	list-style: none;
	font-size: 0.8em;
	margin-bottom: 15px;
}

div#content table ul li, div#content ul.stars li{ 
	background: transparent url(../images/star.jpg) no-repeat left;
	padding: 2px 0 2px 30px;
}

div#content table h3 ul{
	margin: 10px 0;
	background: #F5EEA0;
	padding: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
}

div#content table h3 ul li{
	background-image: none;
	color: #8F0000;
}

div#maincontent{
	width: 667px;
	padding: 0 15px;
	float: left;
}

div#maincontent a{
	color: #F77D10;
}

div#rightcontent{
	width: 200px;
	float: left;
}

div#rightcontent p{
	font-size: 0.7em;
	padding-left: 10px;
	padding-right: 10px;
}

div#rightcontent h2{
	padding-left: 10px;
	padding-right: 10px;
}

div#rightcontent h3{
	padding-left: 10px;
	padding-right: 10px;
}

div#rightcontent h3 a{
	color: #F77D10;
}

/* Forms
------------------------------------------------------------------------------------------------- */

fieldset.form{
	border: none;
	padding: 0;
	margin: 0;
	font-size: 0.7em;
	color: #333;
}

fieldset.form legend{
	display: none;
}

fieldset.form dt{
	clear: left;
	float: left;
	width: 140px;
	margin-bottom: 3px;
}

fieldset.form dd{
	float: left;
	width: 400px;
	margin-bottom: 3px;
}

fieldset.form dd input, fieldset.form dd textarea{
	width: 320px;
}

fieldset.form dd textarea{
	height: 200px;
}

fieldset.form dd input.submit{
	width: 120px;
}

fieldset.form p.mandetory{
	clear: both;
	font-size: 0.8em!important;
}

ul.errorMessage{
	margin: 10px 10px 20px 0!important;
}


/* Footer
------------------------------------------------------------------------------------------------- */	

div#footer{
	clear: both;
}

div#footer ul{
	float: right;
	list-style: none;
	font-size: 0.7em;
}

div#footer ul li{
	float: left;
	padding-right: 5px;
}

div#footer ul li a{
	color: #666;
}


/* Helper Styles 
------------------------------------------------------------------------------------------------- */	
	
.clearfix:after {
    content: "."; 
    display: block; 
    height: 0; 
    clear: both; 
    visibility: hidden;
}

.highlight {
	font-weight: bold;
	color: #c90033;
}
	
.hide { display: none; }
	
.clear {
	clear: both;
}
	
.bold {
	font-weight: bold;
}

.date {
}
	
.error {
	color: red;
}
	
em { 
	font-style: italic;
}
