@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; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #666666;
	background-color: #666666;
	background-image: url(images/bkg_wall.jpg);
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	line-height: 1.5;
}
.freedom #container {
	width: 800px;
	margin: 0 auto;
	text-align: justify;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	border-top-color: #000000;
	border-right-color: #000000;
	border-bottom-color: #000000;
	border-left-color: #000000;
	background-color: #FFFFFF;
} 
.freedom #header {
	height: 222px;
	width: 800px;
	padding-top: 0;
	padding-right: 0px;
	padding-bottom: 0;
	padding-left: 0px;
	background-image: url(images/bkg_wall.jpg);
} 
.freedom #header h1 {
	margin: 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	padding-top: 0px;
	padding-right: 0;
	padding-bottom: 0px;
	padding-left: 0;
}
.freedom #sidebar1 {
	float: right; /* since this element is floated, a width must be given */
	width: 200px;
	height: 100%;
	padding-top: 15px;
	padding-right: 10px;
	padding-bottom: 15px;
	padding-left: 10px;
	background-color: #FFFFFF;
}
.freedom #mainContent {
	background-color: #FFFFFF;
	margin-top: 0px;
	margin-right: 220px;
	margin-bottom: 0;
	margin-left: 0;
	padding-top: 20px;
	padding-right: 20px;
	padding-bottom: 0;
	padding-left: 20px;
} 
.freedom #footer {
	padding: 0 10px 0 20px;
	background-color: #636563;
	border-top-width: 5px;
	border-right-width: 5px;
	border-bottom-width: 5px;
	border-left-width: 5px;
	border-top-style: solid;
	border-top-color: #E77DB5;
} 
.freedom #footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	color: #FFFFFF;
	text-align: justify;
}

#vertmenu {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	width: 100%;
	padding: 0px;
	margin: 0px;
	float: left;
}

#vertmenu h1 {
display: block;
background-color: #d7d9d9;
font-size: 80%;
padding: 5px;
color: #C66D4D;
margin: 0px 0em;
width:150px;}

#vertmenu ul {
list-style: none;
margin: 0px;
padding: 0px;
border: none;
}
#vertmenu ul li {
margin: 0px;
padding: 0px;
}
#vertmenu ul li a {
	font-size: 11px;
	display: block;
	text-decoration: none;
	color: #E77DB5;
	width:170px;
	border-top-width: 1px;
	border-top-style: none;
	border-top-color: #636563;
	font-weight: normal;
	padding-top: 8px;
	padding-right: 10px;
	padding-bottom: 8px;
	padding-left: 10px;
	border-bottom-width: 1px;
	border-bottom-style: dashed;
	border-bottom-color: #636563;
}

#vertmenu ul li a:hover, #vertmenu ul li a:focus {
	color: #636563;
	background-color: #FFF;
	font-weight: bold;
}

a:link {
	font-family: Verdana, Helvetica, Arial, sans-serif;
	font-size: 11px;
	color: #E77DB5;
	border-bottom-width: 1px;
	border-bottom-style: dashed;
	border-bottom-color: #BDBEBD;
	text-decoration: none;
} 

a:visited {
	font-family: Verdana, Helvetica, Arial, sans-serif;
	font-size: 11px;
	text-decoration: none;
	color: #CB257C;
}

a:hover {
	font-family: Verdana, Helvetica, Arial, sans-serif;
	font-size: 11px;
	color: #CC3399;
	border: none;
	background-color: #CCCCCC;
	text-decoration: none;
}

a:active {
	color: #333333;
	font-family: Verdana, Helvetica, Arial, sans-serif;
	font-size: 11px;}
	
	img.float-right {
	margin-top: 5px;
	margin-right: 0px;
	margin-bottom: 5px;
	margin-left: 15px;
	border: 5px solid #EBEBEB;
}
img.float-left {
	margin: 5px 15px 5px 0px;
	border: 5px solid #EBEBEB;
}

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

