body  {
	font: 100% "Trebuchet MS", Verdana, Helvetica, Arial, sans-serif;
	background: #D6D6D6;
	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;
}
.thrColFixHdr #container {
	width: 825px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 0 auto;
	text-align: left;
	border-top: none;
	border-right: none;
	border-bottom: none;
	border-left: none;
} 
.thrColFixHdr #header {
	/*	background: #ffffff;*/
	padding: 0;
	margin-bottom: 0px;	
} 
.border {
	border-top: 1px solid #990000;
	border-bottom: 1px solid #990000;
	margin: 0px;
}
.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: 158px; /* 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 */
	padding: 15px 10px 15px 20px;
}
.thrColFixHdr #sidebar2 {
	float: right; /* since this element is floated, a width must be given */
	width: 160px; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px 10px 15px 20px;
}
.thrColFixHdr #mainContent {
	margin: 0 200px; /* the right and left margins on this div element creates the two outer columns on the sides of the page. No matter how much content the sidebar divs contain, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the sidebar spaces when the content in each sidebar ends. */
	padding: 0 20px 0 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	border-right: 1px solid #D6D6D6;
	border-left: 1px solid #D6D6D6;
	border-top: 1px solid #ffffff;
} 
.thrColFixHdr  #mainContent2
{
	margin: 0 200px; /* the right and left margins on this div element creates the two outer columns on the sides of the page. No matter how much content the sidebar divs contain, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the sidebar spaces when the content in each sidebar ends. */
	padding: 0 20px 0 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	border-right: 1px solid #D6D6D6;
	border-left: 1px solid #D6D6D6;
	border-top: 1px solid #D6D6D6;
}

a:focus, a.bar:focus, a.head:focus, a.subnav:focus, a.whitenav:focus {
	outline:none;
}

a:link {
	color: #003366;
	text-decoration: none;
	margin-bottom: 2px;
}
a:visited {
	color: #003366;
	margin-bottom: 2px;
	border-bottom: 1px solid #CCCCCC;
	text-decoration: none;
}
a:hover {
	text-decoration: none;
	background-color: #CCCCCC;
}
a.bar:link {
	text-decoration: none;
	background-color:#FFFFFF;
}
a.bar:visited {
	text-decoration: none;
	background-color:#FFFFFF;
}
a.bar:hover {
	text-decoration: none;
	background-color:#FFFFFF;
}

a.head:link {
	font-size: 0.80em;
	color: #003366;
	text-decoration: none;
	margin-bottom: 2px;
}
a.head:visited {
	font-size: 0.8em;
	color: #003366;
	margin-bottom: 2px;
	border-bottom: 1px solid #CCCCCC;
	text-decoration: none;
}
a.head:hover {
	font-size: .80em;
	text-decoration: none;
	background-color: #CCCCCC;
}
a.subnav:link
{
	font-size: .9em;
	color: #003366;
	line-height:1.7em;
	text-decoration: none;
	margin-bottom: 2px;
}
a.subnav:visited
{
	font-size: .9em;
	color: #003366;
	line-height:1.7em;
	margin-bottom: 2px;
	border-bottom: 1px solid #CCCCCC;
	text-decoration: none;
}
a.subnav:hover
{
	font-size: .9em;
	text-decoration: none;
	line-height:1.7em;
	background-color: #CCCCCC;
}

a.whitenav:link {
	color: #FFFFFF;
	text-decoration: none;
}
a.whitenav:visited {
	color: #FFFFFF;
	border-bottom: none;
	text-decoration: none;
}
a.whitenav:hover {
	color: #333333;
	border-bottom: none;
	text-decoration: none;
	background-color: #CCCCCC;
}
.case {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 0.65em;
	line-height: 105%;
	font-weight: bold;
	color: #666666;
	padding-bottom: 25px;
}
.thrColFixHdr #footer {
	padding: 0 10px 0 20px;
	border-top: 1px solid #D6D6D6;
	color: #333333;
} 
.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;
}
.quote {
	font-family: "Trebuchet MS", Verdana, Helvetica, Arial, sans-serif;
	font-size: .8em;
	color: #666666;
}
p {
	font-size: .75em;
	color: #333333;
	line-height: 130%;
}

td {
	font-size: .75em;
	color: #333333;
	line-height: 130%;
}
h1 {
	font-size: .95em;
	color: #990000;
}
h2 {
	font-size: .85em;
	color: #990000;
}
h3 {
	font-family: "Trebuchet MS", Verdana, Helvetica, Arial, sans-serif;
	font-size: .75em;
	font-weight: bold;
	color: #333333;
}

.thrColFixHdr #container #header p {
	font-family: "Trebuchet MS", Verdana, Helvetica, Arial, sans-serif;
	font-size: .75em;
	padding-top: 0px;
	margin-top: 25px;
}
ul {
	font-family: Arial, Helvetica, sans-serif;
	font-size: .75em;
	line-height: 125%;
	color: #333333;
}
.items {
	line-height: 120%;
	padding-left: 10px;
	margin-bottom: 5px;
	margin-top: 0px;
	padding-top: 0px;
	font-size: 0.75em;
}
.items2
{
	line-height: 120%;
	margin-top: 0px;
	padding-top: 5px;
	border-top: 1px solid #333333;
	padding-bottom: 5px;
}
.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 10px 200px; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	font-size: 10px;
	color: #666666;
}
img { text-decoration: none; }
.info
{
	font-family: "Trebuchet MS", Verdana, Helvetica, Arial, sans-serif;
	font-size: .75em;
	color: #990000;
}
.nounder {
	text-decoration: none;
	border-style: none;
	border-width: 0px;
	background:none;
}
.hammerhead {
	font-family: "Trebuchet MS", Verdana, Helvetica, Arial, sans-serif;
	font-size: 0.6em;
	color: #999999;
	text-decoration: underline;
	margin-top:25px;
	margin-bottom: -10px;
	padding-bottom: 2px;
	text-transform: uppercase;
}
ol
{
	font-size: .75em;
	color: #333333;
	line-height: 130%;
}
/* privacy and policy  */
.legal {
	font-family: "Trebuchet MS", Verdana, Helvetica, Arial, sans-serif;
	font-size: 12px;
	color: #333333;
}
.legalHed {
	font-family: "Trebuchet MS", Verdana, Helvetica, Arial, sans-serif;
	font-size: 16px;
	font-weight: bold;
	font-variant: small-caps;
	text-transform: none;
	color: #000000;
}
.legalRed {
	font-family: "Trebuchet MS", Verdana, Helvetica, Arial, sans-serif;
	font-size: 12px;
	color: #A72121;
}
.legalUL {
	font-family: "Trebuchet MS", Verdana, Helvetica, Arial, sans-serif;
	color: #333333;
	font-size: 12px;
}

/*  Customer forms */

#formtable th {
          font-size: 12px;
        }

#formtable td input {
          font-size: 9px;
        }

/* ###########  Word Press ############# */
#container {
width:911px; /* this has nothing to do with the '911' event */
margin:0 auto;
position:relative;
}

/*#container h1 {
font-size:30px;
font-weight:normal;
letter-spacing:-1px;
width:600px;
padding:32px 0 25px 0;
}

#container h1 a {
color:#222;
text-decoration:none;
}

#container h1 a:hover {
color:#c00;
}*/

#bubble {
top:40px;
right:0;
position:absolute;
display:block;
height:28px;
background:url(images/bubble_right.gif) no-repeat right;
}

#bubble p {
display:block;
font-size:11px;
color:#fff;
height:28px;
padding:4px 12px 0 10px;
background:url(images/bubble_left.gif) no-repeat top left;
}

#content {
float:left;
width:700px;
}

#content h2 {
font-size:20px;
margin:5px 0 7px 0;
}

#content h2 a {
color:#222;
text-decoration:none;
}

#content h2 a:hover {
color:#c00;
}

#content h2.archive {
font-weight:normal;
font-size:22px;
color:#1c1c1c;
padding:0;
margin:5px 0 20px 0;
border:none;
text-align:left;
}

.comments {
color:#333;
margin:0 0 15px 0;
border-bottom:#bbb 1px solid;
}

.comments a {
background:#fff;
padding:0 7px 5px 0;
color:#333;
text-decoration:none;
}

.comments a:hover {
color:#c00;
}

.navigation {
background:#f9f9f9;
font-size:11px;
padding:5px 10px;
margin:0 0 20px 0;
border-top:#bbb 1px solid;
}

.navigation a {
color:#555;
font-weight:bold;
text-decoration:none;
}

.navigation a:hover {
color:#333;
text-decoration:none;
}

.main h3 {
font-size:16px;
font-weight:normal;
margin:0 0 15px 0;
}

.main img {
padding:2px;
border:#ddd 2px solid;
}

.main a img {
padding:2px;
border:#0085b5 2px solid;
}

.main a:hover img {
padding:2px;
border:#ca0002 2px solid;
}

.main p {
line-height:18px;
margin:0 0 15px 0;
}

.main ol {
line-height:18px;
margin:0 0 15px 30px;
}

.main ul {
line-height:18px;
margin:0 0 15px 30px;
}

.main li {
margin:0 0 5px 0;
}

.meta {
background:#f3f3f3;
font-size:11px;
line-height:15px;
color:#333;
padding:5px 10px;
margin:0 0 30px 0;
border-top:#bbb 1px solid;
}

.signature {
float:left;
padding:0 15px 0 0;
border-right:#bbb 1px solid;
width:200px;
}

.tags {
float:left;
padding:0 0 0 15px;
width:440px;
}

#sidebar {
float: right; /* since this element is floated, a width must be given */
	width: 160px; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px 10px 15px 20px;
/*font-size:12px;
float:right;
width:160px;
border-left:#999 1px solid;
padding:0 0 20px 15px;
margin:0 0 20px 0;*/
}

#sidebar h3 {
font-size:14px;
margin:20px 0 5px 0;
}

#sidebar ul {
list-style:none;
}

#sidebar ul ul {
margin:5px 0 0 10px;
}

#sidebar ul ul ul {
margin:5px 0 0 10px;
}

#sidebar ul li {
padding:0 0 5px 0;
}

#author h3 {
margin:5px 0 5px 0;
}

#searchform {
margin:15px 0 0 0;
}

#searchform input {
background:#222;
font-size:11px;
margin:2px 0;
padding:1px 4px 2px 4px;
border:#888 1px solid;
color:#eee;
}

#searchform input:hover {
background:#333;
border:#999 1px solid;
color:#fff;
cursor:pointer;
}

#searchform #s {
background:#f6f6f6;
font-size:11px;
margin:2px 0;
padding:2px 4px;
border:#aaa 1px solid;
color:#222;
}

#searchform #s:hover {
border:#c00 1px solid;
cursor:text;
}

input.searchfield {
background:#f6f6f6;
font-size:11px;
display:block;
margin:5px 0 8px 0;
padding:2px 4px;
border:#aaa 1px solid;
color:#222;
}

input.searchfield:hover {
background:#eee;
color:#222;
}

input.submit {
background:#222;
font-size:11px;
display:block;
margin:0 0 10px 0;
padding:1px 4px 2px 4px;
border:#888 1px solid;
color:#eee;
}

input.submit:hover {
background:#333;
cursor:pointer;
border:#999 1px solid;
color:#fff;
}

input.subcom {
background:#eee;
font-size:11px;
margin:0 0 10px 0;
padding:1px 4px 2px 4px;
border:#888 1px solid;
color:#222;
}

input.subcom:hover {
background:#222;
cursor:pointer;
border:#888 1px solid;
color:#eee;
}

input.comment {
background:#f6f6f6;
font-size:11px;
padding:2px 4px;
border:#aaa 1px solid;
color:#222;
}

input.comment:hover {
border:#c00 1px solid;
}

textarea {
background:#f6f6f6;
font-size:12px;
width:400px;
padding:2px 4px;
border:#aaa 1px solid;
color:#222;
}

textarea:hover {
border:#c00 1px solid;
}

.postinput small {
font-size:11px;
margin:0 0 0 5px;
}

p.logged {
font-size:12px;
}

h3.reply {
font-size:15px;
margin:0 0 10px 0;
}

.nocomments {
margin:0 0 30px 0;
}

ol.commentlist {
font-size:12px;
list-style:none;
margin:10px 0 30px 0;
border-bottom:#bbb 1px solid;
}

.commentlist li {
border-top:#bbb 1px solid;
padding:0 0 10px 0;
}

.commentlist li.bypostauthor {
border-top:#bbb 5px solid;
background-color:#f3f3f3;
}

.comment_mod {
margin:10px 0 0 10px;
}

.comment_mod em {
background-color:#fff897;
padding:1px 3px;
}

.comment_author {
margin:10px 0;
float:right;
width:190px;
}

.comment_author img {
float:left;
margin:5px 12px 0 0;
}

.comment_author p {
line-height:20px;
}

.comment_author small {
font-size:11px;
}

.comment_text {
float:left;
width:470px;
margin:0 0 0 10px;
}

.comment_text p {
line-height:18px;
margin:7px 0;
}

.comment_meta {
font-size:12px;
}

#commentform p {
line-height:18px;
margin:0 0 15px 0;
}

blockquote {
background:url(images/quote.gif) no-repeat top left;
padding:0 0 0 60px;
min-height:50px;
}

/*#footer {
background:#eee;
font-size:11px;
color:#555;
margin:0 auto;
padding:10px 0;
text-align:center;
position:relative;
border-top:#bbb 1px solid;
border-bottom:#222 6px solid;
}

#footer a {
color:#555;
font-weight:bold;
text-decoration:none;
}

#footer a:hover {
color:#333;
text-decoration:none;
}*/

.clear {
clear:both;
}

.warning p {
background:url(images/warning.gif) no-repeat left;
height:160px;
padding:20px 0 0 90px;
font-size:20px;
margin:0 0 0 10px;
}

#wp-calendar {
padding:10px 0 0 0;
font-size:12px;
}

#wp-calendar caption {
text-align:left;
padding:0 0 5px 0;
}

#wp-calendar tr th,
#wp-calendar tr td {
padding:0 6px 0 0 ;
text-align:right;
}

#wp-calendar td a {
font-weight:bold;
}

#wp-calendar td a:hover {
font-weight:bold;
}

img.wp-smiley {
padding:0;
border:none;
}

input:focus, textarea:focus{
background-color:#ffc;
}

abbr {
border:none;
}

.aligncenter {
display: block;
margin-left: auto;
margin-right: auto;
}

.alignleft {
float:left;
}

.alignright {
float:right;
}

.wp-caption {
border:1px solid #ddd;
text-align:center;
background-color:#f3f3f3;
padding-top:4px;
margin:10px;
-moz-border-radius:3px;
-khtml-border-radius:3px;
-webkit-border-radius:3px;
border-radius:3px;
}

.wp-caption img {
margin:0;
padding:0;
border:0 none;
}

.wp-caption-dd {
font-size:11px;
line-height:17px;
padding:0 4px 5px;
margin:0;
}

/* self-clear floats */

.group:after {
content: "."; 
display: block; 
height: 0; 
clear: both; 
visibility: hidden;
}

/* IE Hacks */

*html #bubble {
display:none;
}

*html #bubble p {
display:none;
}

* html .group,
* html #nav ul li a {
height: 1%;
}

*:first-child+html .group {
min-height: 1px;
}

* html #nav ul li a {
display: inline;
}
