@charset "UTF-8";
/*


---PLEASE READ BEFORE EDITING---

This CSS file is used for layout purposes. 
Put all color & typography styles here (borders, backgrounds, font-size, ect...)
Leave all layout styles out of this file, put them in layout.css instead (hieght, width, padding, ect...)


---TABLE OF CONTENTS---

	
	#1 Tags & Common Classes - all tag styles go here (a, strong, td, ect...) as well as common classes (.left, .right, .clear, ect...)
	#2 Box Model - This is the box model layout, by default it includes #wrap, #header, #nav, #side, #main, #footer
	#3 Header - Layout styles within the header section
	#4 Top Nav - Layout styles within the top horizontal navigation
	#5 Content Wrap - Layout styles for the content wrapper itself (#content)
	#6 Side - Layout styles within the side column
	#7 Main - Layout styles within the main column
	#8 Footer - Layout styles within the footer
	
	
---STANDARD SYNTAX---
	
	Please follow this syntax when editing or adding to this, or any CSS file:
	
	.class-name {
		property:value;
		property:value;
	}
	
	Try to use CSS short-hand whenever possible:
		background: url('img/bkg.png') top center no-repeat #f1f1f1;
			Instead of
		background-image:url('img/bkg.png');
		background-position:top center;
		background-color:#f1f1f1;

*/


/***** #1 TAGS & COMMON CLASSES ****/


body{
	background-image:url(/images/bg.jpg);
	background-color:#FFF;
	background-position:top center;
	background-repeat:no-repeat;
	font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size:12px;
}
img{
	border:0px;
}

h1{
	font-size:24px;
	font-weight:normal;
}
h2 {
	margin-bottom:0px;
}
a {
	color:#609;
	text-decoration:none;
}

a:hover {
	color:#F60;
}

.text-box, .text-select {
	border:1px solid #ccc;
}
.text-error {
	background:#F99;
	border:1px solid #F33;
}
.table-label {
	font-weight:bold;
}
.newsComm {
	border-bottom:1px solid #ccc
}

/***** #2 BOX MODEL *****/

#wrap {
	
}

#header {
	background:none;
	
}

#nav {
	background:transparent;
	line-height:25px;
	margin-bottom: 8px;
}

#side {
	
}

#main {
	
}
#footer {
	border-top:2px solid #e4e4e4;
	background:#666;
}



/***** #3 HEADER *****/

#logo {
}
#headerlinks{
	padding: 0px;
	margin: 0px;
	
	height: 50px;
	float: left;
	padding-left: 80px;
	padding-top: 30px;
}
#userNav {
	background:#2c3691;
	color:#fff;
	border:1px solid #222b80;
	-moz-border-radius-bottomright:10px;
	-moz-border-radius-bottomleft:10px;
	width:200px;
}
#userNav a {
	color:#fff;
	font-size:12px;
	font-weight:bold;
	
	
}
.editable_text input {
	border:1px solid #222b80;
}

/***** #4 TOP NAVIGATION *****/


#nav tr td a {
	color:#FFF;
	text-transform:uppercase;
	font-size:14px;
	font-weight:bold;
	text-decoration:none;
}

.search {
background-color:transparent;
background-image:url(/images/search.png);
background-repeat:no-repeat;
border:0 none;
height:19px;
margin:0;
padding:3px 6px 0;
width:135px;
}


/***** #5 CONTENT WRAP *****/

#content {
	background:transparent;
	
}


.notifications {
	width:160px;
	background-color:#ff7a04;
	height: auto;
	border: 1px solid #000;
	color: #FFF;
	line-height:28px;
	font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;
	font-style:normal;
}


/***** #6 SIDE COLUMN *****/

.side-box{
}
#side ul li {
	border-bottom:1px solid #c1c1c1;
	list-style:none
}


/***** #7 MAIN COLUMN *****/

.main-box {
	
	
}
#recaptcha_image img {
	border:1px solid #ccc;
}
#main_tabs a {
	
	background:#5d60e2;
	color:#fff;
	text-decoration:none;
	border:1px solid #5d60e2;

}
#main_tabs a.current {
	background:#fff;
	color:#5d60e2;
	
}

/***** #8 FOOTER *****/