/********************************************
   HTML ELEMENTS
********************************************/ 

/* top elements */
* { margin: 0; padding: 0; outline: 0; }

body {
	background: #3ebf00;
	font: 70%/1.5em Verdana, Tahoma, arial, sans-serif;
	color: #777;
	text-align: center;
	margin: 15px 0;
}

/* links */
a, a:visited {
	text-decoration: none;
	background: inherit;
	color: #FB9233; 
}
a:hover {
	text-decoration: underline;
	background: inherit;
	color: #93C600;
}

/* headers */
h1, h2, h3 { font-family: Verdana, Tahoma, arial, sans-serif;  }
h1 {
	font-size: 200%;	
	font-weight: normal;	
	color: #555;
}
h2 {
	font-size: 185%;
	color: #ff0000;
	font-weight: bolder;
}
h3 {
	font-size: 140%;	 
	color: #000000;
	font-weight: bold;
}

h4 {
	font-size: 225%;
	color: #ff0000;
	font-weight: bolder;
}

/* images */
img {
/*	padding: 5px;*/
}

img.centered
	{
	display:block;
	margin-left:auto;
	margin-right:auto;
	padding: 10px;
}

img.centered2
	{
	border: 2px solid #3ebf00;
	display:block;
	margin-left:auto;
	margin-right:auto;
}

img.float-right { margin: 5px 0px 10px 10px;  }
img.float-left { margin: 5px 10px 10px 0px; }

h1, h2, h3, p {
	margin: 10px 15px;
	padding: 0;
}
ul, ol {
	margin: 5px 15px;
	padding: 0 25px;
}


/********************************************
   LAYOUT
********************************************/ 

#wrapwrap {
	position: relative;
	width: 795px;
	background: #2072fe;
	margin: 0 auto;
}
#wrap {
	width: 790px;
	/*background: #CCC url(../images/content.jpg) repeat-y center top;*/
	margin: 0 auto;
	text-align: center;
}
#content-wrap {
	clear: both;
	background: url(../images/background.gif) repeat-y center top;
	width: 790px;	
	margin: 0px auto;
	padding: 0; 	
}
#header {
	position: relative;
	height: 305px;
	background: /*#3ebf00*/ url(../images/header.gif) no-repeat center top;
	padding: 0;	
	color: #fff;	
}
#header h1#logo-text a {
	position: absolute;
	margin: 0; padding: 0;
	font: bolder 55px 'Trebuchet MS', Arial, Sans-serif;
	letter-spacing: -3px;
	color: #fff;
	text-transform: none;
	text-decoration: none;
	background: transparent;
	
	/* change the values of top and left to adjust the position of the logo*/
	top: 18px; left: 35px;	
}
#header p#slogan {
	position: absolute;
	margin: 0; padding: 0;
	font: bold 13px 'Trebuchet MS', Arial, Sans-serif;
	text-transform: none;
	color: #FFF;
	
	/* change the values of top and left to adjust the position of the slogan*/
	top: 80px; left: 50px;		
}

/* header links */
#header #header-links {
	position: absolute;
	color: #C6DDEE;
	font: bold 14px"Trebuchet MS", Arial, Tahoma, Sans-serif;
	top: 20px; right: 20px;	
}
#header #header-links a {	
	color: #fff;
	text-decoration: none;	
}
#header #header-links a:hover {
	color: #D4FF55;	
}

ul.none {
	list-style-type: none;
	color: #000000;
	font: bolder 18px "Trebuchet MS", Arial, Tahoma, Sans-serif;
}

/* Footer */	
#footer {
	color: #000000;
	background: url(../images/footer.gif) no-repeat center top;
	clear: both;
	width: 790px;
	height: 57px;
	text-align: center;	
	font-size: 100%;	
}
#footer p { 
	padding: 15px 0;
	margin: 0;
}
#footer a { 
	color: #000000;
	text-decoration: none; 
}

/* alignment classes */
.float-left  { float: left; }
.float-right { float: right; }
.align-left  { text-align: left; }
.align-right { text-align: right; }

/* display and additional classes */
.clear { clear: both; }


