﻿@charset "UTF-8";
body {
	font: 100% Arial, Helvetica, sans-serif;
	font-size: 14px;
	background: #CCCCCC;
	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: #000000;
}
a:link {
	color: #007ebc;
	text-decoration: underline;
}
/* unvisited link */
a:visited {
	color: #007ebc;
	text-decoration: underline;
}
/* visited link */
a:hover {
	color: #000000;
	text-decoration: none;
}

#container {
	width: 985px;
	background-image: url(../images/body-bkgd2.jpg);
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #007ebc;
	text-align: left; /* this overrides the text-align: center on the body element. */
	background-color: #FFFFFF;
	background-repeat: no-repeat;
	background-position: right;
}
#header {
	padding: 0 10px 0 20px;
/* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */	background-color: #007ebc;
	background-image: url(../images/colmar_home_01.gif);
	background-position: right;
	background-repeat: no-repeat;
}
#header a:link {
	color: #FFFFFF;
	text-decoration: none;
}
/* unvisited link */
#header a:visited {
	color: #FFFFFF;
	text-decoration: none;
}
/* visited link */
#header a:hover {
	color: #000000;
	text-decoration: underline;
}
/* mouse over link */
#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: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
#sub-header {
	padding: 0 10px 0 20px;
/* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */	background-color: #007ebc;
	background-position: right;
	background-repeat: no-repeat;
}
#sub-header a:link {
	color: #FFFFFF;
	text-decoration: none;
}
/* unvisited link */
#sub-header a:visited {
	color: #FFFFFF;
	text-decoration: none;
}
/* visited link */
#sub-header a:hover {
	color: #000000;
	text-decoration: underline;
}
/* mouse over link */
#sub-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: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
#titlebars {
	color: black;
	text-align:center;
	/*background: black url(images/titlebar.png) repeat-x center left;*/
	background-color: white;
	margin: 0 0 10px 0;
	text-transform: uppercase;
	padding: 4px 0 4px 0; /*header text is indented 10px*/
	font-family: Arial;
	font-size: 14px;
	font-weight: bold;
	width:750px;
	float:left;
}
/*Credits: Dynamic Drive CSS Library */
/*URL: http://www.dynamicdrive.com/style/ */
.arrowlistmenu {
	width: 190px; /*width of menu*/
}
.arrowlistmenu .headerbar {
	color: black; /*background: black url(images/titlebar.png) repeat-x center left;*/;
	background-color: #ffffff;
	margin-bottom: 10px; /*bottom spacing between header and rest of content*/;
	text-transform: uppercase;
	padding: 4px 0 4px 10px;
/*header text is indented 10px*/	font-family: Arial;
	font-size: 14px;
	font-weight: bold;
}
.arrowlistmenu ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
	margin-bottom: 8px; /*bottom spacing between each UL and rest of content*/
}
.arrowlistmenu ul li {
	padding-bottom: 2px; /*bottom spacing between menu items*/
}
.arrowlistmenu ul li a {
	color: #000000;
	background: url(../images/bolt-bullet.png) no-repeat center left;
/*custom bullet list image*/	display: block;
	padding: 2px 0;
	padding-left: 23px; /*link text is indented 19px*/;
	text-decoration: none;
	font-weight: bold;
	border-bottom: 1px solid #dadada;
	font-size: 90%;
}
.arrowlistmenu ul li a:visited {
	color: #000000;
	text-decoration: none;
}
.arrowlistmenu ul li a:hover {
	/*hover state CSS*/
	color: #007ebc;
	background-color: #F3F3F3;
}
#sidebar1 {
	float: left; /* since this element is floated, a width must be given */;
	width: 190px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */;
	background: #FFFFFF; /* the background color will be displayed for the length of the content in the column, but no further */	
	height: 575px;
}
#sub-sidebar1 {
	float: left; /* since this element is floated, a width must be given */;
	width: 190px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */;
	background: #FFFFFF;
/* the background color will be displayed for the length of the content in the column, but no further */	height: 400px;
}
#mainContent-home {
	margin-left: 260px; /* the left margin on this div element creates the column down the left 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-top: 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	height:525px;
}
#mainContent-sub {
	margin: 0 0 0 190px; /* the left margin on this div element creates the column down the left 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: 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
}
#mainContent-linecard {
	margin: 0 0 0 190px; /* the left margin on this div element creates the column down the left 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: 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
}
#yellow-box-top {
	background-image: url('../images/yellow-round.gif');
	height: 28px;
	width: 660px;
}
#box-title {
	padding-top: 5px;
	text-align: center;
	font-size: 16px;
	font-weight : bold;
}
.button {
	margin: 10px 0 0 16px;
	background-image: url('../images/hdr-bar.png');
	background-repeat: no-repeat;
	width: 175px;
	height: 55px;
	padding-top: 25px;
	text-align: center;
	font-family: Arial;
	font-size: 14px;
	font-weight: bold;
}
.features {
	float: left;
	background-position: bottom;
	background-image: url('../images/white-curve.gif');
	height: 210px;
	width: 215px;
}
.feature-text {
	padding: 0 13px 0 10px;
}
.feature-text ul {
	margin: 0;
	padding: 0 6px 0 21px;
}
#extra-links {
	background-image: url('../images/middle-box.gif');
	width: 660px;
	height: 110px;
}
#bottom-content {
	margin-top: 10px;
	background-image: url('../images/bottom-box.gif');
	width: 660px;
	height: 170px;
}
/* mouse over link */
#footer {
	padding: 0 10px 0 20px;
/* this padding matches the left alignment of the elements in the divs that appear above it. */	background: #007ebc;
	text-align: center;
}
#footer a:link {
	color: #000000;
	text-decoration: underline;
}
/* unvisited link */
#footer a:visited {
	color: #000000;
	text-decoration: underline;
}
/* visited link */
#footer a:hover {
	color: #FFFFFF;
	text-decoration: none;
}
/* mouse over link */
#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 */
}
.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;
}
