@charset "UTF-8";
body  {
	background: #666666;
	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; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000000;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 100%;
	background-image: url(../images/blue-background-square.png);
	background-repeat: repeat;
}

/* TYPORGRAPHY */

p {
	font-size: 1.1em;
	line-height: 1.5em;
	color: #FFF;
}

h1, h2, h3, h4, h5 {
	font-weight: lighter;
}

h1 {
	font-size: 1.9em;
	color: #29CBD2;
}
h2 {
	font-size: 1.6em;
	color: #CCC;
}
h3 {
	font-size: 1.4em;
	color: #398973;
}
h4 {
	font-size: 1.2em;
	color: #398973;
}

p a{
	color: #F93;
	text-decoration: none;
}


p a:hover {
	color: #29CBD2;
	text-decoration: underline;
}

p a:visited {
	color: #29CBD2;
}


ul {
	color: #FFF;
	line-height: 1.4em;
}

.footer a{
	color: #999;
	text-decoration: none;
}


.footer a:hover {
	color: #29CBD2;
	text-decoration: underline;
}

.footer a:visited {
	color: #999;
}


/* STRUCTURE */


.twoColFixRt #container {
	width: 900px;
	margin: 0 auto;
	text-align: left; /* this overrides the text-align: center on the body element. */
}

.header {
	width: 900px;
	height: 258px;
	text-align: center;
}

.nav {
	text-align: center;
	height: 76px;
}


.twoColFixRt #sidebar1 {
	float: right; /* since this element is floated, a width must be given */
	width: 200px; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px 10px;
}
.twoColFixRt #mainContent {
	background-image: url(../images/maincontent-bknd.png);
	background-repeat: repeat;
	margin-top: 0;
	margin-right: 0px;
	margin-bottom: 0;
	margin-left: 0;
	padding-top: 25px;
	padding-right: 40px;
	padding-bottom: 10px;
	padding-left: 40px;
} 

#mainContent img {
	float: right;
	margin-top: 7px;
	margin-bottom: 7px;
	margin-left: 15px;
	border: 2px solid #FFF;
}

.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;
}
.footer {
	width: 850px;
	padding: 25px;
	text-align: center;
}

