@charset "UTF-8";
/* CSS Document */

html, body {
	height: 100%;
	margin: 0;
	padding: 0;
	background-image:url(images/background_orange.jpg);
	background-repeat: repeat;
	background-color: #FFF;
	font-family: Calibri;
	font-size: 100%; /*this enables fonts to appear the same size in all browsers, including IE*/
}

/* This container surrounds the other divs */
.container {
	float: left;
	position: relative;
	width: 1200px;
	height: 100%;
	min-height: 100%;
}

.header {
	padding: 0px 10px;
}

.logo { 
	float: left;
	padding: 10px 10px 0px 10px;
}

.buttons {
	float: right;
	width: 380px; 
	height: 73px;
}

.main {
	float: left;
	padding-bottom: 60px;
}

.sidebar {
	float: left;
	width: 190px;
	height: 100%;
	min-height: 100%;
	margin-top: 0px;
	padding-top: 0px;
	padding-bottom: 5em;
	border-right: solid 1px #069;
}

.content {
	float: left;
	width: 650px;
	height: 100%;
	min-height: 100%;
	margin-top: 0px;
	padding-left: 10px;
	padding-right: 10px;
	font-family: Calibri, "Trebuchet MS", Arial;
	font-size: 1em;
	font-style: normal;
	line-height: normal;
	color: #000;
}


.footer {
	clear: both;
	float: left;
	position: relative;
	width: 100%;
	height: 60px;
	bottom: 0;
	left: 0;
	font-family: Calibri, "Trebuchet MS", Arial;
	font-size: 10px;
	font-style: normal;
	line-height: normal;
	color: #000;
	text-align: center;
}


.sidebar2 {
	float: right;
	width: 330px;
	height: 100%;
	min-height: 100%;
	margin-top: 0px;
	padding-top: 0px;
	padding-bottom: 5em;
	border-left: solid 1px #069;
}

/*
.footer {
	clear: both;
	bottom: 0;
	position: absolute;
	width: auto;
	height:30px;
	font-family: "Calibri";
	font-size: 12px;
	text-align: center;
}
*/

/* Element/tag selectors */
ul, ol, dl { /* Due to variations between browsers, it's best practices to zero padding and margin on lists. For consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain. Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */
	padding-left: 20px;
	font-size: small;
}

ul {
	list-style-type: none;
}

h1, h2, h3, h4, h5, h6 {
	margin-bottom: 25px;
	line-height: normal;
	text-align: center;
	font-family: "Century Gothic", Calibri, "Trebuchet MS", Arial;
	color: #CC3333;
}

p {
	margin-bottom: 25px;
	padding-left: 10px;
	padding-right: 5px;
	line-height: normal;
}

iframe {
	text-align:center;
}

img {
	margin: 15px;
}


a img { 
	border: none; /* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */
}

/* Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. */
a:link {
	color:#069;
	text-decoration: none;
}

a:visited {
	color: #069;
	text-decoration: none;
}

a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
	color: #09F;
	text-decoration: none;
}


/* The navigation list styles */
ul.nav {
	float: left;
	list-style: none; /* this removes the list marker */
	font-family: Calibri, "Trebuchet MS", Arial;
	font-size: .9em;
	text-align: left;
}

ul.nav li {
	width: 10.5em;
	border-bottom: solid 1px #069;
}

ul.nav a, ul.nav a:visited {
	padding: 6px;
	display: block;
	text-decoration: none;
	color: #000;
}

ul.nav a:hover, ul.nav a:focus, ul.nav a:active { /* this changes the background and text color for both mouse and keyboard navigators */
	background-color: #FC3;
	color: #000;
}