@charset "utf-8";
/* CSS Document */
body  {
	font: 100% Arial, Helvetica, sans-serif;
	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;
	background-color:#FAFAFA;
}
.mainBox, #container{
	width:88%;
}
.mainBox
{
    margin: 0 auto;
    color: #ffffff;
    padding:20px;
    text-align: left;
    background-image: url(images/box_gradient.png);
    background-repeat:repeat-x;
	background-position:top left;
    border:2px solid #d9d9d9;
	background-color:#FFF;
}
#container { 
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
} 


#header{
	background-image:url(images/header_bg.jpg);
	background-position:top;
	background-repeat:repeat-x;
	height:124px;
	width:100%;
}

#header #logo{
	margin-top:20px;
}

.container { 
	width: 999px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
}

#navigation{
	padding:0;
	margin:23px 0 0 0;
	list-style:none;
	height:35px;
	line-height:35px;
}

#navigation li{
	float:left;
}

#navigation li a{
	display:block;
	padding:0px 12px;
	color:#fff;
	font-size:12px;
	font-weight:bold;
	text-decoration:none;
}

#navigation li a:hover{
	background-image:url(images/nav_roll.jpg);
	background-position:bottom;
	background-repeat:repeat-x;
	color:#809F00;
}



#sidebar1 {
	float: right; 
	width: 320px; /* since this element is floated, a width must be given */
}
#sb_middle
{	background-image:url(images/sb_middle.png);
	background-repeat:repeat-y;
	background-position:left;
	padding: 10px 10px 0px 40px; /* top and bottom padding create visual space within this div  */

}
#sb_bottom{
	background-image:url(images/sb_bottom.png);
	height:35px;
	background-position:top left;
	background-repeat:no-repeat;
}
#sb_top{
	background-image:url(images/sb_top.png);
	height:35px;
	background-position:bottom left;
	background-repeat:no-repeat;
}
#sidebar1 h3, #sidebar1 p {
	margin-left: 10px; /* the left and right margin should be given to every element that will be placed in the side columns */
	margin-right: 10px;
}
#s{
background-image:url(images/sb_tabs_bg.gif); background-position:top left; background-repeat:repeat-x; border:1px solid #aaaaaa;
	font-size:12px;
	padding:7px;
	color:#3F9ABA;
	width:256px;
	font-weight:bold;
	filter:alpha(opacity=70);-moz-opacity:.70;opacity:.70;
	border:2px solid white;
}
/* Tips for mainContent:
1. The space between the mainContent and sidebar1 is created with the right margin on the mainContent div.  No matter how much content the sidebar1 div contains, the column space will remain. You can remove this right margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends.
2. Be aware it is possible to cause float drop (the dropping of the non-floated mainContent area below the sidebar) if an element wider than it can contain is placed within the mainContent div. WIth a hybrid layout (percentage-based overall width with em-based sidebar), it may not be possible to calculate the exact width available. If the user's text size is larger than average, you will have a wider sidebar div and thus, less room in the mainContent div. You should be aware of this limitation - especially if the client is adding content with Contribute.
3. In the Internet Explorer Conditional Comment below, the zoom property is used to give the mainContent "hasLayout." This may help avoid several IE-specific bugs.
*/
#mainContent {
  margin: 0 21em 0 0;
} 
#footer { 
	padding:10px 0px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	color:white; 
	font-size:11px;
	font-weight:bold;
	font-family:Arial, Helvetica, sans-serif;
} 
#footer a {
	color:white;
}
#footer a:hover{
	text-decoration:none;
}
/* 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;
}

#top_menu{float:right; margin:15px 0 0 0;}
#top_menu #links{
padding:6px 0 0;
position:absolute;
right:400px;
	}
#top_menu a{text-decoration:none; font-size:14px; font-weight:bold; color:#EDEF00; margin:0 0 0 20px;}
#top_menu a:hover{color:#FFF;}
#sform{float:right;}


.post{
	background-color:#FFF;
	padding:15px;
	margin-bottom:25px;
}

.logoImg{
	position:absolute;
}

.post h2{font-family:Verdana, Arial, Helvetica, sans-serif;letter-spacing:-1px;font-size:20px;margin:0;padding:0;}
.post h2 a{color:#3F9ABA;text-decoration:none;}
.post h2 a:hover{color:#3FBA72;text-decoration:underline;}

#postinfo{font-size:11px; color:#8F8F8F; border-bottom:1px solid #DFDFDF; margin-bottom:9px; padding-bottom:9px;}
#postinfo #comms{float:right;}
#postinfo a,.post .postmetadata a,#commentLogin a{color:#3FBA72;text-decoration:underline;}
#postinfo a:hover,.post .postmetadata a:hover,#commentLogin a:hover,.commentmetadata a{color:#3FBA72;text-decoration:none;}

.postmetadata{color:#8F8F8F; font-size:11.5px; border-top:1px solid #DFDFDF; padding-top:9px;}

.post .entry a{color:#3FBA72;}
.post .entry a:hover{ text-decoration:none}
.post .entry{color:#3f3f3f; font-size:14px; line-height:23px;font-family:Arial, Helvetica, sans-serif;}
.post .entry strong{color:#3F9ABA;}
.post .entry h3{color:#3F9ABA; font-family:Geneva, Arial, Helvetica, sans-serif; margin:10px 0 0 0; padding:0; font-size:22px;}

#plug{}
#plug ul{list-style:none;}

#content_1,#content_4,#content_6{display:none;}

.content3, .content2{}
.content3 ul, .content2 ul, #content_2 ul{margin:0px 0px 0px 7px; padding:0;}
.content3 ul li a, .content2 ul li a, #content_2 ul li a{display:block; padding:9px 0px 9px 30px; text-decoration:none; color:#3F9ABA; font-size:12px; font-weight:bold; background-image:url(images/SM_on.png); background-position:center left; background-repeat:no-repeat;}
.content3 ul li a:hover, .content2 ul li a:hover, #content_2 ul li a:hover{color:#36AF69; background-image:url(images/SG_off.png); }
.content3 ul li, .content2 ul li, #content_2 ul li{border-bottom:1px solid #3F9ABA;}
.content3 ul li:last-child, .content2 ul li:last-child, #content_2 ul li:last-child{border-bottom:0;}

ul.tabs{margin:8px 0px; padding:10px 0px; background-image:url(images/sb_tabs_bg.gif); background-position:top left; background-repeat:repeat-x; border:1px solid #aaaaaa;}
ul.tabs li{list-style:none;display:inline; margin-left:15px;}

ul.tabs li a{text-decoration:none;font-size:12px;font-family:Verdana, Arial, Helvetica, sans-serif;font-weight:bold;border:0;cursor:pointer;color:#AFAFAF;}

ul.tabs li a.active,ul.tabs li a.active2,ul.tabs li a.active3{color:#36AF69;}

.content ul li a{text-decoration:none;color:#3F9ABA;font-family:Verdana, Arial, Helvetica, sans-serif;font-size:14px;font-weight:bold;border-bottom:0;}
.content ul li a:hover{color:#36AF69;text-decoration:underline;}
.sampleTxt{color:#6F6F6F;font-family:Verdana, Arial, Helvetica, sans-serif;font-size:11px;line-height:14px;margin-top:3px;}
.content ul li a small{color:#8b959c;font-size:9px;text-transform:uppercase;font-family:Verdana, Arial, Helvetica, sans-serif;position:relative;left:4px;top:0;}
.content{background-image:url(images/content_bottom.jpg);background-repeat:repeat-x;background-position:bottom;}

#content_1 ul{margin:0; padding:0;}
#content_1 ul li{border:1px solid #CFCFCF; margin:10px 0px; background-image:url(images/sb_tabs_bg.gif); background-position:top; background-repeat:repeat-x; background-color:#dbdbdb; padding:5px;}
#content_1 ul li:first-child{margin:0;}
#sbpostinfo{font-size:11px; padding:3px 10px; margin-top:3px;}
#sbpostinfo a{font-size:11px; color:#3FBA72; border-bottom:0;}

#content_2 h2{display:none; margin:0;
padding:0;}

#topComments{margin-bottom:10px;}
#commentators {
list-style-type:none;
padding:5px 8px;
margin:0px 0px 0px 0px !important;
background-image:url(images/sb_tabs_bg.gif); background-position:top left; background-repeat:repeat-x; border:1px solid #aaaaaa;
font-size:11px;
color:#AFAFAF;
font-weight:bold;
}

#commentators a{text-decoration:underline; color:#3F9ABA; font-size:11px; font-weight:bold;}
#commentators a:hover{color:#36AF69;}
#commentators li:last-child {
border-bottom:0;
}
#commentators li {
color:#3F9ABA; font-size:11px; font-weight:bold; display:inline; margin:0px 0px 0px 20px;
}
#commentators li:hover {
color:#36AF69;
}

.navigation{
	background-image:url(images/sb_tabs_bg.gif); background-position:top left; background-repeat:repeat-x; border:1px solid #aaaaaa;
	padding:10px;
	margin:10px 0px;
}

.navigation a{
	color:#36AF69;
	font-size:12px;
	font-weight:bold;
	text-decoration:none;
}

.navigation a:hover{
	text-decoration:underline;
}

.navigation .alignright{float:right;}

#commentDiv{
	background-color:#3F9ABA;
	padding:10px;
}

.commentlist{
	padding:0;
	margin:0;
	list-style:none;
	font-size:12px;
}

.commentlist li{
	margin-bottom:10px;
	line-height:none;
	padding:15px;
	background-color:#FFF;
	font-family:Arial, Helvetica, sans-serif;
}

.commentlist li:last-child{margin-bottom:0;}

ol.commentlist li.comment div.comment-author {
background:#F3F3F3 none repeat scroll 0 0;
overflow:hidden;
width:100%;
color:#333;
}

ol.commentlist li.comment div.vcard cite.fn {
float:left;
font-size:14px;
font-style:normal;
font-weight:700;
margin:0 10px 0 0;
padding:9px 0 7px 9px;
}

ol.commentlist li.comment div.vcard cite.fn a {
color:#3FBA72;
}

ol.commentlist li.comment div.vcard cite.fn a:hover {
	text-decoration:none;
}

ol.commentlist li.comment div.vcard img {
float:left;
}

ol.commentlist li.comment div.vcard span.says{
float:left;
font-size:11px;
font-style:normal;
font-weight:500;
padding:10px 0 6px;
}

ol.commentlist li.comment .comment-meta {
	padding:3px;
	border-bottom:1px solid #3FBA72;
	text-align:right;
}

ol.commentlist li.comment p {font-size:13px; line-height:20px; color:#5F5F5F;}

.children{padding:0; margin:0; list-style:none;}

.children .depth-2{padding:20px 0 0 50px;}
.children .depth-3{padding:20px 0 0 50px;}
.children .depth-4{padding:20px 0 0 50px;}

.comment-reply-link{color:#3F9ABA;}


#pingsDiv{
	background-color:#3F9ABA;
	padding:10px;
	margin-bottom:10px;
}

#pingsDiv h4, #commentDiv h4, #respond h4{
	color:white;
	font-family:Arial, Helvetica, sans-serif;
	margin:10px 0 20px 5px;
}

#pingsDiv hr{
	size:1;
	color:#9FCDDD;
}

.pingslist{
	padding:0;
	margin:0;
	list-style:none;
	font-size:12px;
}

.pingslist li{
	padding:10px 15px;
	font-family:Arial, Helvetica, sans-serif;
	color:white;
}

.pingslist li a{color:#C2E1EF; font-size:13px; font-weight:bold; margin-bottom:2px;}
.pingslist li a:hover{color:#FFF; text-decoration:none;}

#respond{
	background-color:#3F9ABA;
	padding:10px;
	color:white;
	margin-bottom:0px;
}

#respond label{color:white; font-weight:bold;}

.loggedIn, .mustLogin{
	font-size:12px;
	font-weight:bold;
	background-color:#FFF;
	padding:5px;
	color:#3FBA72;
}

.loggedIn a, .mustLogin a{
	color:#3FBA72;
}

#cancel-comment-reply-link{color:white;}

#author, #email, #url, #comment{
	padding:5px;
	color:#3F9ABA;
	font-family:Arial, Helvetica, sans-serif;
	font-size:13px;
	font-weight:bold;
}

.pagetitle{
border-bottom-color:#5F5F5F;
border-bottom-style:solid;
border-bottom-width:1px;
color:#5F5F5F;
margin-bottom:0;
margin-left:0;
margin-right:0;
margin-top:0;
}

.nocomments{color:#333; font-size:12px; font-weight:bold;}