@charset "utf-8";
body  {
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center;
	background-color: #0E2127;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 100%;
	color: #CCC;
}
#container  {
	width: 1000px;
	text-align: left;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	padding-top: 25px;
} 
#header  {
	height: 100px;
	padding: 0;
	width: 1000px;
	background-image: url(images/header.jpg);
	background-repeat: no-repeat;
	margin: 0px;
} 
#sidebar1  {
	float: left; /* since this element is floated, a width must be given */
	width: 125px; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0px; /* padding keeps the content of the div away from the edges */
	background-color: #040F1F;
}
#sidebar2  {
	float: right; /* since this element is floated, a width must be given */
	width: 125px; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0px; /* padding keeps the content of the div away from the edges */
	background-color: #001020;
	height: 450px;
}
#sidebar2Gallery  {
	height: 445px;
	width: 110px;
	margin-left: 5px;
	padding-right: 5px;
	padding-top: 10px;
}
#mainContent  {
	margin-top: 0;
	margin-right: 125px;
	margin-bottom: 0;
	margin-left: 125px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: lighter;
	color: #001020;
	position: relative;
	height: 450px;
	padding: 0px;
	text-align: left;
} 
#mainContentBottomtext  {
	width: 250px;
	float: left;
}
#mainContentText   {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: normal;
	text-align: left;
	height: 440px;
	overflow: auto;
	margin-left: 30px;
	padding-right: 10px;
	color: #CCC;
}
#mainContentTextRight  {
	font-size: 16px;
	float: right;
	width: 70px;
	margin: 0px;
	padding-top: 5px;
}
#footer  {
	padding: 0;
	height: 63px;
	background-image: url(images/footer.jpg);
	background-repeat: no-repeat;
	position: relative;
	width: 1000px;
} 
#footerText   {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	font-weight: lighter;
	color: #EBE657;
	text-align: left;
	height: 0px;
	width: 350px;
	position: absolute;
	padding: 0px;
	margin-left: 135px;
}

.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 */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}
a:link {
	color: #EFEB70;
	text-decoration: none;
}
a:visited {
	text-decoration: none;
	color: #EFEB70;
}
a:hover {
	text-decoration: underline;
	color: #EFEB70;
}
#mainContentText a:link {
	color: #EFEB70;
	text-decoration: underline;
}
#mainContentText a:visited {
	text-decoration: underline;
	color: #EFEB70;
}
#mainContentText a:hover {
	text-decoration: none;
	color: #EFEB70;
}

#mainContentText a:active {
	text-decoration: underline;
	color: #EFEB70;
}

h1 {
	font-size: 18px;
	color: #CCC;
}
.text18px {
	font-size: 18px;
}

