@charset "utf-8";
/* Phone */
@import url("phone.css") only screen and (max-width:320px);
/* Tablet */
@import url("tablet.css") only screen and (min-width:321px) and (max-width:768px);
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: #000000;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 90%;
	background-repeat: repeat;
	background-color: #F2C968;
}
/* ~~ Element/tag selectors ~~ */
ul, ol, dl { /* Due to variations between browsers, it's best practices to zero padding and margin on lists. For consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain. Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */
	padding: 0;
	margin: 0;
}
h1, h2, h3, h4, h5, h6, p {
	margin-top: 0;	 /* removing the top margin gets around an issue where margins can escape from their containing div. The remaining bottom margin will hold it away from any elements that follow. */
	padding-right: 15px;
	padding-left: 15px; /* adding the padding to the sides of the elements within the divs, instead of the divs themselves, gets rid of any box model math. A nested div with side padding can also be used as an alternate method. */
}
a img { /* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */
	border: none;
}
.thrColFixHdr #container {
	width: 900px; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
	background-image: url(../images/greyfill.gif);
	background-repeat: repeat;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
} 
.thrColFixHdr #header {
	background-image: url(../images/banner3color900new.png);
	padding: 0;
	height: 100px;
	background-repeat: no-repeat;
} 
.thrColFixHdr #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 */
}
.thrColFixHdr #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 145px; /* 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: #EBEBEB; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px 10px 15px 20px; /* padding keeps the content of the div away from the edges */
}
.thrColFixHdr #container #sidebar1 a {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 85%;
	color: #306;
	text-decoration: none;
}
.thrColFixHdr #container #sidebar1 a:hover {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 85%;
	color: #306;
	text-decoration: none;
	font-style: italic;
}
.thrColFixHdr #sidebar2 {
	float: right; /* since this element is floated, a width must be given */
	width: 145px; /* 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: #EBEBEB; /* padding keeps the content of the div away from the edges */
	padding-top: 0px;
	padding-right: 10px;
	padding-bottom: 0px;
	padding-left: 20px;
}
.thrColFixHdr #container #sidebar2 a {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 90%;
	color: #306;
	text-decoration: none;
}
.thrColFixHdr #container #sidebar2 a:hover {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 90%;
	color: #306;
	text-decoration: none;
	font-style: italic;
}
.thrColFixHdr #mainContent {
	margin-top: 0;
	margin-right: 180px;
	margin-bottom: 0;
	margin-left: 180px;
	padding-top: 5px;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 10px;
	height: auto;
	background-color: #FFF;
} 
.thrColFixHdr #container #mainContent a  {
	color: #006;
	text-decoration: none;
	font-weight: normal;
}
.thrColFixHdr #container #mainContent a:hover {
	color: #006;
	text-decoration: none;
	font-weight: normal;
	font-style: italic;
}
.thrColFixHdr #container #mainContent h1 {
	font-size: 95%;
	color: #003;
	font-family: Tahoma, Geneva, sans-serif;
	line-height: 22px;
	font-weight: normal;
}
.thrColFixHdr #container #mainContent li {
	font-size: 90%;
	margin-bottom: 5px;
}
.thrColFixHdr #footer {
	background-color: #FFF;
	padding-top: 0;
	padding-right: 0px;
	padding-bottom: 0;
	padding-left: 0px;
} 
.thrColFixHdr #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 */
}
.thrColFixHdr #footer h4 {
	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 */
}
.thrColFixHdr #container #footer h6 {
		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 */
	font-size: 70%;
	font-weight: normal;
	color: #333;
}
.thrColFixHdr #container #footer a {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 80%;
	text-decoration: none;
}
.thrColFixHdr #container #footer a:hover {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 80%;
	text-decoration: none;
	font-style: italic;
}
.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;
}
.clear {
	clear:both;
}
h2 {
	font-size: 95%;
	font-weight: normal;
}
h3 {
	font-size: 95%;
	font-weight: normal;
	
}
h4 {
	font-size: 95%;
	font-weight: normal;
}
h5 {
	font-size: 95%;
	font-weight: normal;
}

.green {
	color: #693;
	font-weight: bold;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 120%;
}
.aqua {
	color: #693;
}
.sidenavtestimonial {
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 80%;
	color: #693;
}
.smaller {
	font-size: 80%;
}
.red {
	font-size: 90%;
	color: #F03;
}
.orange {
	font-family: "Trebuchet MS", Tahoma, "Gill Sans MT", Arial;
	font-size: 100%;
	font-weight: 400;
	color: #F60;
}
.titlePAGES {
	font-family: Tahoma, Geneva, sans-serif;
	font-size: 95%;
	font-weight: normal;
	color: #369;
	border-bottom-width: 2px;
	border-bottom-style: solid;
	border-bottom-color: #F93;
	background-color: #FFF;
	padding-bottom: 5px;
	font-variant: normal;
	letter-spacing: .7mm;
	line-height: 28px;
	margin-right: 20px;
	margin-left: 20px;
}
.inbusiness {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 80%;
	letter-spacing: 0.14em;
	text-transform: none;
	border-top-width: 0.1em;
	border-bottom-width: 0.1em;
	border-top-style: double;
	border-bottom-style: double;
	border-top-color: #F60;
	border-bottom-color: #F60;
	font-weight: bold;
	padding-top: 3px;
	padding-bottom: 3px;
	font-style: oblique;
	font-variant: small-caps;
	margin: 0px;
}
.testimonial {
	font-family: Georgia, Times New Roman, Times, serif;
	font-size: 75%;
	color: #003366;
	line-height: 22px;
	letter-spacing: 0.05em;
	background-color: #CCF;
	margin-right: 10px;
	margin-left: 10px;
	padding-right: 5px;
	padding-left: 5px;
	border-right-width: 2px;
	border-left-width: 2px;
	border-right-style: solid;
	border-left-style: solid;
	border-right-color: #F30;
	border-left-color: #F30;
}
.web   {

}
.web a     {
	color: #666;
}
.value {
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	color: #000;
}
.firstletter {
	font-size: 140%;
	font-weight: bold;
	font-family: Georgia, "Times New Roman", Times, serif;
}
.callout {
	color: #fff;
	background-color: #F60;
	padding-left: 10px;
	line-height: 24px;
	font-size: 100%;
	font-family: Verdana, Geneva, sans-serif;
}

