@charset "UTF-8";

html { 
height: 102%;
}
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; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #FFF;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	background-color: #333399;
}
.fr #container {
	width: 80%;
	margin: 0 auto;
	text-align: left;
	background-color: #333399;
	background-image: url(../images/frsidebarbg.jpg);
	background-repeat: repeat-y;
	background-position: left center;
} 
.fr #header {
	background-color: #FFF;
	border-bottom-width: thin;
	border-bottom-style: solid;
	border-bottom-color: #FFF;
	margin-top: 15px;
} 
.fr #mainContent {
	margin-top: 0;
	margin-right: 20px;
	margin-bottom: 0;
	margin-left: 170px;
} 
#mainContent h1 {
	color: #FFC051;
	font-size: 16px;
	font-weight: bold;
}
#mainContent h2 {
	font-size: 14px;
	color: #FFC051;
}
#mainContent p {
	font-size: 12px;
	line-height: 18px;
	color: #FFF;
}
#mainContent p a {
	color: #66CDCD;
}
#mainContent p em {
	font-style: italic;
	color: #FFC051;
}
#mainContent blockquote .fltrt {
	color: #FFC051;
}
#mainContent table tr .odd   {
	text-align: right;
}
#mainContent table tr td em {
	font-style: italic;
	color: #FFC051;
}
#mainContent p img {
	padding-right: 5px;
}

.fr #sidebar1 {
	float: left;
	width: 150px;
	padding-top: 5px;
	padding-right: 0;
	padding-bottom: 15px;
	padding-left: 0;
}
.fr #sidebar1 ul{
	font-size: 14px;
	color: #FFF;
	list-style-type: none;
	text-align: center;
	line-height: 32px;
	margin-left: -30px;
	margin-top: 0px;
}
.fr #container #sidebar1 ul li a {
	color: #66CDCD;
}
.fr #container #sidebar1 ul li a hover {
	color: #FFC051;
}
.fr #footer {
	background:#333399;
	border-top-width: thin;
	border-top-style: solid;
	border-top-color: #FFF;
	padding-top: 0;
	padding-right: 10px;
	padding-left: 10px;
	margin-bottom: 40px;
} 
.fr #footer ul  {
	padding-right: 10px;
}
.fr #footer ul li  {
	padding-left: 20px;
	list-style-type: none;
	font-weight: normal;
	color: #CCC;
	display: inline;
}
.fr #footer ul li a.lvd {
	color: #CCC;
	float: right;
	margin-left: 8px;
}
.fr #footer ul li hover.lvd {
	color: #FFC051;
}
#footer ul li a {
	color: #66CDCD;
}

/* Miscellaneous classes for reuse */

.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;
}
