@charset "UTF-8";

body  {
	margin: 0px; /* 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;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 100%;
	line-height: 1.5;
	background: #FFFFFF;
}
.threeCol #container {
	width: 950px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: url(images/home/solid_bg.gif) repeat-y;
	margin: 0 auto;
	text-align: left;
} 
.threeCol #header {
	background: url(images/home/header_bg.gif) no-repeat;
	padding: 0;
} 
.threeCol #header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 20px 20px 20px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	font-family: Arial, Helvetica, sans-serif;
	font-size: 20px;
	text-align: right;
}
.threeCol   #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 209px; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 20px 20px 10px;
	font-size: 13px;
}
.threeCol #sidebar1 li {
	width: 100%;
	margin-bottom: 10px;
}
.threeCol   #sidebar2 {
	float: right; /* since this element is floated, a width must be given */
	width: 260px;
	background: url(none);
	font-size: 13px;
	padding-top: 30px;
	padding-right: 20px;
	padding-left: 20px;
}
.threeCol #mainContent {
	margin: 0 300px 0 250px; /* the right margin on this div element creates the column down the right side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 50px 20px 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	width: 359px;
	font-size: 13px;
} 
.threeCol #mainContent ul {
	list-style: square outside;
}
.threeCol #footer {
	padding: 0px 20px 10px;
	background: url(images/home/bg_footer.gif) no-repeat;
	margin-right: 0px;
	margin-left: 0px;
	border-bottom: 2px solid #009900;
	border-top: 2px solid #009900;
}
.threeCol #footer p {
	margin: 0px;
	padding-top: 10px;
	font-size: 10px;
	color: #000000;
	font-style: normal;
	text-align: center;
}
h2 {
	font-size: 15px;
}
ul {
	list-style: none;
	margin: 0px;
	padding: 0px;
}
.since {
	font-size: 20px;
	color: #0066CC;
}
.slogan {
	font-size: 30px;
	color: #0066cc;
}

.language {
	font-size: 18px;
	color: #FF6600;
}
a:link {
	text-decoration: none;
	color: #FF6600;
	font-weight: normal;
}
a:visited {
	color: #0066cc;
	text-decoration: none;
}
a:hover, a:active, a:focus {
	color: #009900;
	text-decoration: none;
}

