@charset "utf-8";
/* CSS Document */
/*
CSS-file for Strictly CSS three column layout 2006
http://www.strictlycss.com
Developed by Eivind Savio
*/
* /*Set's border, padding and margin to 0 for all values*/
{
padding: 0;
margin: 0;
border: 0;
}
body, html {
	color: #000;
	font-family: Verdana, Arial, Tahoma, sans-serif;
	height: 100%;  /*** This is the left column background "faked" with an image. You can also position the image using left top repeat-y also. The background color #fff (white) will be the background color for our content ***/
}
body {
font-size: 70%;
min-width: 760px;
}
p {
padding: 7px 0 7px 0;
}
.outer .inner .float-wrap #content .contentWrap #mainContent p {
	font-style: normal;
}
a {
color: #000099;
}
a:hover{
color: #0000FF;
text-decoration: none;
}
h1, h2, h3 {
font-weight: bold;
padding-bottom: 5px;
}
h1 {
font-size: 2em;
}
h2 {
font-size: 1.4em;
}
h3 {
	font-size: 1.3em;
	font-style: italic;
}
h1 a, #header h2{
color: #fff;
}
.clear { clear: both; }
#mainContainer {
	min-height: 100%; /*** This is the right column background "faked" with an image. You can also position the image using right top repeat-y also. ***/
}
* html #mainContainer {
height: 100%; /*** IE doesn't support min-height, but instead it handles height as min-height so we need to hack the height ***/
}
/**************************
HEADER
**************************/
#header {
	background-image: url(Images/bg2.gif);
	background-repeat: repeat;
}
/**************************
CONTENT AND COLUMNS
**************************/
.outer {
	padding-left: 200px; /*** Same width as margin-left for the float-wrap div ***/
	padding-right: 200px; /*** Our right column width ***/
}
.inner {
	width: 100%;
	padding-bottom: 50px;
}
/*** div.inner is wider than its container, div.outer, and so overlaps to the right, pushing
div.right into the proper position. IE expands div.outer instead, requiring a Tan hack to avoid 
blowing the layout apart. IE gets the original 100% width as in the Livingstone layout.
***/
.float-wrap {
	float: left;
	width: 100%;
	margin-left: -200px; /*** Same length as .outer padding-left but with negative value ***/
}

.contentWrap{
	padding: 5px 50px 0 25px;
	font-size: 1.1em;	
}

#content {
	float: right;
	margin-right: -220px; /*** Same length as .outer padding-left but with negative value ***/
	width: 100%;
	background: url(/examples/rounded-images/t-2.gif) 100% 0 no-repeat; /*** We have used border top here to push the content down, but other solutions can also be used ***/
	position: relative; /*** IE needs this  ***/
}

.contentWrap ol, .contentWrap ul {
margin: 3px 0 5px 35px;
}
.contentWrap li {
padding-bottom: 2px;
}
/**************************
LEFT COLUMN
**************************/
/*** div.left is in div.float-wrap, and when div.float-wrap is neg margined to the left, 
div.left is carried over into the proper position. 
***/
#left {
	float: left;
	width: 200px;
	padding: 5px; /*** Our upper left rounded image to create the rounded content look ***/
	position: relative;
	background-color: #FFFFFF;
}

#left ul {
list-style: none;
padding-bottom: 4px;
}
#left li {
	padding-bottom: 2px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 1.2em;
	color: #000000;
}
#left li a {
	text-decoration: underline;
	color: #8a004b;
	padding-left: 2em;
}

/*************************
RIGHT COLUMN
**************************/
#right {
	float: right;
	width: 200px;
	padding: 5px 5px 0 10px;
	position: relative; /*** IE needs this  ***/
	margin-right: -200px;
	position: relative;
	border: 0px none #FFFFFF;
}

#right ul {
list-style: none;
padding-bottom: 4px;
}
#right li {
padding-bottom: 2px;
}
/**************************
FOOTER
**************************/
#footer {
	height: 50px; /*** By using a negative margin-top we now moves the footer up the same amount as the footer height to avoid vertical scrolling. Remember, if you use borders and padding on your footer you will have to calculate this in your negative margin-top value also. ***/
	text-align: center; /*** The lower part of the rounded content look ***/
	margin-top: -50px;
}
#footerLeft, #footerRight {
	width: 210px;
}
#footerLeft {
	float: left; /*** Same length as .outer padding-left ***/
	/*** Our left bottom part of the rounded content look ***/
}
#footerRight {
	float: right; /*** Our right bottom part of the rounded content look ***/
	margin-top: -75px;
	height: 75px;
}
#footer p {
	clear: both;
}
td {
	text-align: center;
}
