@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: #000;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 100%;
	background-image: url(images/rug_back.jpg);
}

/* Tips for Elastic layouts 
1. Since the elastic layouts overall sizing is based on the user's default fonts size, they are more unpredictable. Used correctly, they are also more accessible for those that need larger fonts size since the line length remains proportionate.
2. Sizing of divs in this layout are based on the 100% font size in the body element. If you decrease the text size overall by using a font-size: 80% on the body element or the #container, remember that the entire layout will downsize proportionately. You may want to increase the widths of the various divs to compensate for this.
3. If font sizing is changed in differing amounts on each div instead of on the overall design (ie: #sidebar1 is given a 70% font size and #mainContent is given an 85% font size), this will proportionately change each of the divs overall size. You may want to adjust based on your final font sizing.
*/
.twoColElsRtHdr #container {
	width: 800px;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
} 
.twoColElsRtHdr #header {
	height: 135px;
} 
.twoColElsRtHdr #header h1 {
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 0;
	margin-top: 0px;
	padding: 0px;
}

/* Tips for sidebar1:
1. Be aware that if you set a font-size value on this div, the overall width of the div will be adjusted accordingly.
2. Since we are working in ems, it's best not to use padding on the sidebar itself. It will be added to the width for standards compliant browsers creating an unknown actual width. 
3. Space between the side of the div and the elements within it can be created by placing a left and right margin on those elements as seen in the ".twoColElsRtHdr #sidebar1 p" rule.
*/
.twoColElsRtHdr #sidebar1 {
	background-image: url(images/sidebar1.jpg);
	background-repeat: no-repeat;
	padding-top: 20px;
	padding-bottom: 15px;
	width: 185px;
	background-position: center center;
	text-align: center;
	height: 230px;
	margin-right: 15px;
	float: right;
}

/* Tips for mainContent:
1. If you give this #mainContent div a font-size value different than the #sidebar1 div, the margins of the #mainContent div will be based on its font-size and the width of the #sidebar1 div will be based on its font-size. You may wish to adjust the values of these divs.
2. The space between the mainContent and sidebar1 is created with the left margin on the mainContent div.  No matter how much content the sidebar1 div contains, the column space will remain. You can remove this left margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends.
3. To avoid float drop, you may need to test to determine the approximate maximum image/element size since this layout is based on the user's font sizing combined with the values you set. However, if the user has their browser font size set lower than normal, less space will be available in the #mainContent div than you may see on testing.
4. In the Internet Explorer Conditional Comment below, the zoom property is used to give the mainContent "hasLayout." This avoids several IE-specific bugs that may occur.
*/
.twoColElsRtHdr #mainContent {
	width: 400px;
	float: right;
	margin-right: 15px;
	margin-left: 15px;
} 
.twoColElsRtHdr #mainContent h1 {
	font-size: 20px;
	color: #009245;
	font-family: Tahoma, Geneva, sans-serif;
	margin: 0px;
}
.twoColElsRtHdr #footer {
	background-image: url(images/footer.png);
	height: 149px;
	padding-top: 0;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 10px;
	float: left;
	width: 780px;
} 
.twoColElsRtHdr #footer p {
	margin: 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	font-size: 12px;
	color: #333;
	font-family: Georgia, "Times New Roman", Times, serif;
	padding-right: 0;
	padding-bottom: 10px;
	padding-left: 0;
}

/* 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;
}
.logo {
margin:0;
padding:0;
height:135px; /* Height of logo */
width: 800px; /* Width of logo */
overflow:hidden;  /* Stops text from protruding if  H1 text is larger than logo */
position:relative; /*must be relative or absolute */
}
.logo a{
display:block;
height:100%;
width:100%;
}
.logo a span{
	display:block;
	height:100%;
	width:100%;
	position:absolute;
	top:1px;
	left:0px;
	cursor:pointer; /* ie demands we reinstate the pointer cursor */
	background-image: url(images/header.png);
	background-repeat: no-repeat;
	background-position: left top;
}
.outerx p{padding:0 20px;margin:0 0 1em 0}
.twoColElsRtHdr #sidebar1 p {
	font-size: 13px;
	color: #FFF;
	text-align: center;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 33px;
}
.twoColElsRtHdr #sidebar1 h4 {
	font-size: 16px;
	color: #CCC;
	font-weight: normal;
	text-align: right;
	margin-top: 0px;
	margin-right: 12px;
	margin-bottom: 0px;
	margin-left: 0px;
}
.twoColElsRtHdr #sidebar1 h3 {
	font-size: 18px;
	color: #FFF;
	text-align: right;
	margin-top: 0px;
	margin-right: 10px;
	margin-bottom: 0px;
	margin-left: 0px;
	font-weight: normal;
}
.twoColElsRtHdr #mainContent h2 {
	font-size: 20px;
	color: #009245;
	font-family: Tahoma, Geneva, sans-serif;
}
.twoColElsRtHdr #mainContent p {
	font-family: Tahoma, Geneva, sans-serif;
	color: #666;
}

#navcontainer a:link, #navlist a:visited
{
color: #EEE;
text-decoration: none;
}

#navcontainer a:hover
{
	background-image: url(images/menu_tab3.gif);
	color: #333;
	background-repeat: no-repeat;
}

#active a:link, #active a:visited, #active a:hover
{
	background-image: url(images/menu_tab2.gif);
	color: #FFF;
	background-repeat: no-repeat;
}
#footerinfo {
	margin-left: 25px;
}
#sidebar1 h5 {
	text-align: right;
	margin-top: 0px;
	margin-right: 9px;
	margin-bottom: 0px;
	margin-left: 0px;
	color: #CCC;
	font-weight: normal;
}
#emailform {
}
#emailform form table tr td label {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	color: #666;
}
.service_title {
	color: #09F;
}
#mainContent h3 {
	color: #06C;
	padding-left: 20px;
}
#main {
	background-image: url(images/edges.png);
	background-repeat: repeat;
	float: left;
	width: 800px;
	padding-bottom: 5px;
}
p {
	margin: 0px;
	padding: 0px;
}
.ddsubmenustyle, .ddsubmenustyle ul{ /*topmost and sub ULs, respectively*/
	margin: 0;
	padding: 0;
	position: absolute;
	left: 0;
	top: 0;
	list-style-type: none;
	border: 1px solid black;
	border-bottom-width: 0;
	visibility: hidden;
	z-index: 100;
	font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
	font-size: 12px;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	background-color: #FFD0C8;
}

.ddsubmenustyle li a{
	display: block;
	width: 160px; /*width of menu (not including side paddings)*/
	color: #FFF;
	background-color: #666;
	text-decoration: none;
	padding: 4px 5px;
	border-bottom: 1px solid black;
}

* html .ddsubmenustyle li{ /*IE6 CSS hack*/
display: inline-block;
width: 170px; /*width of menu (include side paddings of LI A*/
}

.ddsubmenustyle li a:hover{
background-color: black;
color: white;
}

/* ######### Neutral CSS  ######### */

.downarrowpointer{ /*CSS for "down" arrow image added to top menu items*/
padding-left: 4px;
border: 0;
}

.rightarrowpointer{ /*CSS for "right" arrow image added to drop down menu items*/
position: absolute;
padding-top: 3px;
left: 100px;
border: 0;
}

.ddiframeshim{
position: absolute;
z-index: 500;
background: transparent;
border-width: 0;
width: 0;
height: 0;
display: block;
}
.mattblackmenu ul{
	padding: 0;
	list-style-type: none;
	overflow: hidden;
	width: 100%;
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 0;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 15px;
	letter-spacing: 1px;
}
.mattblackmenu {
	padding-top: 15px;
	height: 44px;
	padding-left: 40px;
}

.mattblackmenu li{
display: inline;
margin: 0;
}

.mattblackmenu li a{
	display: block;
	text-decoration: none;
	margin: 0; /*padding inside each tab*/
	border-right: 1px solid white; /*right divider between tabs*/
	color: white;
	padding-top: 6px;
	padding-right: 8px;
	padding-bottom: 6px;
	padding-left: 8px;
	float: left;
	width: 85px;
	height: 19px;
}

.mattblackmenu li a:visited{
color: white;
}

.mattblackmenu li a:hover{
	background-color: #900;
}

.mattblackmenu a.selected{
background: black; /*background of tab with "selected" class assigned to its LI */
}#ddtopmenubar {
	background-image: url(images/menu1.png);
}
#footer_wrap {
	width: 700px;
	height: 149px;
	margin-right: auto;
	margin-left: auto;
}
#links_bottom {
	font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
	font-size: 11px;
	padding-top: 3px;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #333;
	padding-bottom: 3px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #333;
}
#footer_address {
	width: 650px;
	padding-top: 8px;
	font-size: 11px;
	text-align: center;
	color: #333;
	font-family: Georgia, "Times New Roman", Times, serif;
	margin-right: auto;
	margin-left: auto;
}
#main_left {
	float: left;
	width: 500px;
	padding-left: 49px;
	text-align: left;
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #000;
	padding-bottom: 5px;
}
#right_bar {
	clear: right;
	float: left;
	width: 197px;
	padding-left: 8px;
}
#main_left h2 {
	margin: 0px;
	padding: 0px;
	font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
	font-size: 17px;
}
#main_left h3 {
	margin: 0px;
	padding: 0px;
	font-size: 15px;
	font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
	color: #900;
	text-transform: uppercase;
}
#main_left p {
	font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
	font-size: 13px;
	text-align: justify;
	margin-right: 10px;
}
#right_bar p {
	font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
}
#right_bar form p {
	font-size: 11px;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
}
#right_bar form input {
	margin-top: 4px;
	margin-bottom: 4px;
}
.green {
	font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
	font-size: 11px;
	color: #090;
	padding-left: 5px;
	padding-right: 5px;
}
#main_left h3 a {
	color: #900;
	text-decoration: none;
}
#main_left h3 a:hover {
	text-decoration: underline;
}
.question {
	font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
	color: #333;
}
h4 {
	margin: 0px;
	padding: 0px;
}
#links_bottom a {
	text-decoration: none;
	color: #333;
}
#links_bottom a:hover {
	text-decoration: underline;
}
.servicelist {
	width: 320px;
	margin-right: auto;
	margin-left: auto;
	font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
	font-size: 13px;
	padding-top: 10px;
}
.servicelist p a, a:visited {
	color: #7E0101;
	text-decoration: none;
}
.servicelist p a:hover {
	text-decoration: underline;
}
#main_left p a {
	color: #900;
}
.img_border {
	border: 1px dotted #333;
}
.question a {
	color: #333;
}
#sitemap {
	font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
	color: #333;
}
#sitemap h2 a {
	color: #333;
	line-height: 22px;
	font-size: 19px;
}
#sitemap  h3{
	color: #000;
	padding-left: 15px;
	text-transform: none;
}
#sitemap h3 a {
	text-transform: none;
	text-decoration: underline;
	color: #333;
	line-height: 24px;
	font-size: 16px;
}
#sitemap h4 {
	margin-left: 45px;
	font-size: 14px;
}
#sitemap h4 a {
	font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
	color: #333;
	line-height: 24px;
	font-size: 14px;
	text-decoration: underline;
}
#sitemap h5 {
	line-height: 18px;
	margin-left: 65px;
	margin-top: 0px;
	margin-bottom: 0px;
}
#sitemap h5 a {
	color: #666;
	text-decoration: underline;
}
.listbox {
	float: left;
	padding-top: 10px;
	padding-right: 20px;
	padding-bottom: 10px;
	padding-left: 20px;
}


#mainForm 
{
	position: relative;
	text-align: left;
	width: 450px;
	background-color: #ffffff;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	list-style-type: none;
	font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
}

ul.mainForm
{
	list-style-type: none;
	font-family: Tahoma, Arial, Verdana, sans-serif;
	font-size:15px;	
}

li.mainForm
{
	padding-bottom: 10px;
}

#formFields
{
	position: relative;
	width: 100%;
	background-color: #ffffff;
	margin:0 0 0 0;

}

label.formFieldQuestion
{
	border:none;
	display:block;
	font-size:95%;
	font-weight:bold;
	padding-top: 0;
	padding-right: 4px;
	padding-bottom: 4px;
	padding-left: 0;
}

label.formFieldOption
{
	font-size:90%;
	display:block;
	line-height:1.0em;
	margin:-19px 0 0 25px;
	padding:4px 0 5px 0;
	width:90%;
}



input.formFieldStyle
{
	display:block;
	line-height:1.4em;
	margin:8px 0 0 3px;
	width:13px;
	height:13px;
}
#fadeshow1 {
	height: 180px;
	width: 195px;
	margin-top: 27px;
	border: 1px dotted #333;
}
a img {
	text-decoration: none;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}
.contact_body {
	text-align: center;
}
