/*
File:			custom.css
Description:	Custom styles for Thesis

BASIC USAGE:

If you have enabled the custom stylesheet in the Thesis options panel, the <body> tag 
will be appended with the "custom" class, like so: <body class="custom">. You can use 
the "custom" class to override *any* CSS declarations contained in the style.css file.

For example, if you wish to change the default link color to green, you would add the 
following declarations to this file:

	.custom a, .custom a:visited { color: #090; }	<--- This makes links green
	.custom a:hover { color: #00f; }	<--- This makes links blue when you mouse over them

WHY THIS WORKS:

By using the "custom" class, you are creating more specific CSS declarations for HTML
elements. CSS styling is applied through rules of specificity, and because declarations
prepended with .custom are more specific, they get applied when the page is rendered!

More information about styling your Thesis installation using this file can be found
in the User's Guide:
	http://diythemes.com/thesis/rtfm/customizing-thesis-with-customcss/
*/



/******************** Get rid of all borders ********************* */
.custom #header, .custom .post, .custom .teasers_box, .custom #footer, .custom #footer a, .custom #footer a:active, .custom #archive_info, .custom .prev_next, .custom #comment_list, .custom #comment_list dd, .custom #commentform, .custom #sidebar_1, .custom #sidebar_2, .custom #comment_list dt.comment, .custom #comment_list dd.comment, .custom #comment_list dl .bypostauthor .format_text, .custom #trackback_list {
        border-bottom: 0px;
        border-top: 0px;
        border-right: 0px;
        border-left: 0px;
}

body.custom {
    background: #FFFFFF }


.custom .page {background: transparent;}

.custom #content_box {background:#ffffff;
margin-left:auto;
margin-right:auto;
width: 960px;}

/************** Header Full Width **************** */

.custom #header #logo a { display: block; height: 96px; width: 960px; background: transparent url('images/headertop.png') no-repeat}
.custom #header_area {height: 96px; width: 100%; background:transparent url('images/headerslice.gif') repeat-x}




/* This line gets rid of the site title & tagline by casting them out to far left field */
.custom #header #logo, .custom #header #tagline { text-indent: -9999px; }

/* This line collapses the vertical space of the tagline so that there isn't unnecessary white space after the header image */

/* This is a bit of a kludge, but it seems to work. */
.custom #header #tagline { height: 0; }

/* This line removes the padding from the header so that the background image sits close to the nav menu, the bottom border of the header, and the sides of the content */
.custom #header {padding: 0;}



/******************* Full  Width Content Area Background ************* */
.FrontPage #content_area{ width: 100%; background:transparent url('images/contentfullwidthslice.gif') repeat-x}


/******************** Full width Nav Area Background ***************** */

.custom #nav_area{ height: 63px; width: 100%; background:transparent url('images/navbgslice.gif') repeat-x}

/******************* Menu ********************** */

.FrontPage .headline_area{
display: none;
}

.custom .menu {
    margin-left:230px;
    top:10px;
    height:29px;
    clear:both;
    width:800px;
    background: transparent repeat fixed 0 0;
    border-style:none;
    padding-bottom: 0px;}

.custom .menu li.tab-home a{background: url('images/home.gif') no-repeat; height: 28px; width:95px; text-indent:-9999px;}
.custom .menu li.tab-1 a{background: url('images/about.gif') no-repeat; height:28px; width:103px; text-indent:-9999px;}
.custom .menu li.tab-2 a{background: url('images/blog.gif') no-repeat; height:28px; width:97px; text-indent:-9999px;}
.custom .menu li.tab-3 a{background: url('images/videos.gif') no-repeat; height:28px; width:113px; text-indent:-9999px;}
.custom .menu li.tab-4 a{background: url('images/contact.gif') no-repeat; height:28px; width:97px; text-indent:-9999px;}


/********************** Footer Area Full Width********************* */
.custom #footer_area{  width: 100%; background:transparent url('images/footersqur.gif') repeat}



/************** Slider *************** */
.FrontPage .mymmbox {
width: 955px;
height: 260px;
border: 0px solid;
background-color: transparent;
border-color: transparent;
padding-top: 0px;
padding-bottom: 0px;
padding-right: 0px;
padding-left: 0px;
}






/* ********************* Get rid of comments closed saying ********* */
.custom .comments_closed p {display: none ;}



/* content widget area setup */
#content_setup {
	/* widgetized content background (not content background) */
	background: transparent;
	/* widget padding */
	/* margin at bottom of widgets */
	margin-top: 30px;
	margin-bottom: 0px;
	/* do not change this! */
	overflow: hidden;
}



/* widget item setup */
#content_setup .content_items {
	/* contents alignment */

	text-align: left;
	/* widget width */
	width: 300px;
	/* space between widgets */
	padding-right: 10px;
	/* text color */
	color: #00000;
	/* do not change these! */
	display: inline-block;
	float: left;
	height: 100%;
}

/* widget item headers*/
#content_setup .content_items h3 {
background: #fffff;
	/* font size */
	font-size: 2em;
	/* bold or not */
	font-weight: bold;
	/* uppercase or not */
	text-transform: uppercase;
	/* space out the letters*/
	letter-spacing: 0px;
	/* font color*/
	color: #003365;
	/* padding under header text */
	padding-bottom: 3px;
	/* border under header text */
	border-bottom: 0px;
	/* distance between border and widget text */
	margin-bottom: 5px;
}

	
/* do not change these! */
#content_setup .content_items ul li { list-style: none; }
#content_setup .content_items ul { margin: 0px; padding: 0px; }





/* footer widget area setup */
#footer_setup {
	/* widgetized footer background (not footer background) */
	background: transparent;
	/* widget padding */
	
	/* margin at bottom of widgets */
	margin-top: 15px;
	margin-bottom: 0px;
	/* do not change this! */
	overflow: hidden;
}




/* widget item setup */
#footer_setup .footer_items {
	/* footers alignment */

	text-align: left;
	/* widget width */
	width: 225px;
	/* space between widgets */
	padding-right: 5px;
	/* text color */
	color: #00000;

	/* do not change these! */
	display: inline-block;
	float: left;
	height: 100%;
}

/* widget item headers*/
#footer_setup .footer_items h3 {
background: #fffff;
	/* font size */
	font-size: 1em;
	/* bold or not */
	font-weight: bold;
	/* uppercase or not */
	text-transform: uppercase;
	/* space out the letters*/
	letter-spacing: 0px;
	/* font color*/
	color: #003365;
	/* padding under header text */
	padding-bottom: 3px;
	/* border under header text */
	border-bottom: 0px;
	/* distance between border and widget text */
	margin-bottom: 2px;
}	


/* do not change these! */
#footer_setup .footer_items ul li { list-style: none; }
#footer_setup .footer_items ul { margin: 0px; padding: 0px; }







/* ***************** /

/* clears the header floats */
#header {
	overflow: hidden;
}


/* positions the search widget on the right hand side of the header */
.widget_search {

	float: right;
	padding-top: 10px;
	width: 300px;
}

/* formats the search input and button */
.search_form .text_input {
	border: solid;
	border-width:1px;
	border-color: #003365;
	background: #fffff;
	font-size: 11px;
	padding: 5px;
}

.search_form #searchsubmit {
	background:transparent;
	color: #003365;
	border: none;
	font-size: 11px;
	padding: 4px;
}

.custom .teaser_box{
width: 630px;  padding: 0; border-width: 0;
}
.custom .teaser{
width: 100%;  height:100%; margin-top:1em; margin-bottom:2em;

}
.custom .teaser .format_teaser {
font-size:1.4em;
}
.custom .teaser h2{
font-size: 2em;
text-align:left;
}



.custom #sidebar_1 h3{
background: #003365;
	/* font size */
	font-size: 20px;
	/* bold or not */
	/* uppercase or not */
	text-transform: uppercase;
	/* space out the letters*/
	letter-spacing: 0px;
	/* font color*/
	color: #ffffff;
	/* padding under header text */
	padding-bottom: 3px;
	/* border under header text */
	border-bottom: 0px;
	/* distance between border and widget text */
	margin-bottom: 2px;
}



.custom li.widget {
	border: solid;
	border-width:1px;
	border-color: #cccccc;
}

/*  Aweber */

#af-form-103686333 .af-body .af-textWrap{width:98%;display:block;float:none;}
#af-form-103686333 .af-body .privacyPolicy{color:#000000;font-size:11px;font-family:Verdana, sans-serif;}
#af-form-103686333 .af-body a{color:#880303;text-decoration:underline;font-style:normal;font-weight:normal;}
#af-form-103686333 .af-body input.text, #af-form-103686333 .af-body textarea{background-color:#FFFFFF;border-color:#919191;border-width:1px;border-style:solid;color:#000000;text-decoration:none;font-style:normal;font-weight:normal;font-size:12px;font-family:Verdana, sans-serif;}
#af-form-103686333 .af-body input.text:focus, #af-form-103686333 .af-body textarea:focus{background-color:#FFFAD6;border-color:#030303;border-width:1px;border-style:solid;}
#af-form-103686333 .af-body label.previewLabel{display:block;float:none;text-align:left;width:auto;color:#000000;text-decoration:none;font-style:normal;font-weight:normal;font-size:12px;font-family:Verdana, sans-serif;}
#af-form-103686333 .af-body{padding-bottom:5px;padding-top:5px;background-repeat:no-repeat;background-position:inherit;background-image:none;color:#000000;font-size:11px;font-family:Verdana, sans-serif;}
#af-form-103686333 .af-header{padding-bottom:10px;padding-top:1px;padding-right:10px;padding-left:75px;background-color:transparent;background-repeat:no-repeat;background-position:inherit;background-image:transparent;}
#af-form-103686333 .af-quirksMode .bodyText{padding-top:2px;padding-bottom:2px;}
#af-form-103686333 .af-quirksMode{padding-right:10px;padding-left:10px;}
#af-form-103686333 .af-standards .af-element{padding-right:10px;padding-left:10px;}
#af-form-103686333 .bodyText p{margin:1em 0;}
#af-form-103686333 .buttonContainer input.submit{background-color:#c20606;background-image:url("http://forms.aweber.com/images/forms/pointer/alert/button.png");color:#FFFFFF;text-decoration:none;font-style:normal;font-weight:normal;font-size:14px;font-family:Verdana, sans-serif;}
#af-form-103686333 .buttonContainer input.submit{width:auto;}
#af-form-103686333 .buttonContainer{text-align:center;}
#af-form-103686333 body,#af-form-103686333 dl,#af-form-103686333 dt,#af-form-103686333 dd,#af-form-103686333 h1,#af-form-103686333 h2,#af-form-103686333 h3,#af-form-103686333 h4,#af-form-103686333 h5,#af-form-103686333 h6,#af-form-103686333 pre,#af-form-103686333 code,#af-form-103686333 fieldset,#af-form-103686333 legend,#af-form-103686333 blockquote,#af-form-103686333 th,#af-form-103686333 td{float:none;color:inherit;position:static;margin:0;padding:0;}
#af-form-103686333 button,#af-form-103686333 input,#af-form-103686333 submit,#af-form-103686333 textarea,#af-form-103686333 select,#af-form-103686333 label,#af-form-103686333 optgroup,#af-form-103686333 option{float:none;position:static;margin:0;}
#af-form-103686333 div{margin:0;}
#af-form-103686333 fieldset{border:0;}
#af-form-103686333 form,#af-form-103686333 textarea,.af-form-wrapper,.af-form-close-button,#af-form-103686333 img{float:none;color:inherit;position:static;background-color:none;border:none;margin:0;padding:0;}
#af-form-103686333 input,#af-form-103686333 button,#af-form-103686333 textarea,#af-form-103686333 select{font-size:100%;}
#af-form-103686333 p{color:inherit;}
#af-form-103686333 select,#af-form-103686333 label,#af-form-103686333 optgroup,#af-form-103686333 option{padding:0;}
#af-form-103686333 table{border-collapse:collapse;border-spacing:0;}
#af-form-103686333 ul,#af-form-103686333 ol{list-style-image:none;list-style-position:outside;list-style-type:disc;padding-left:40px;}
#af-form-103686333,#af-form-103686333 .quirksMode{width:222px;}
#af-form-103686333.af-quirksMode{overflow-x:hidden;}
#af-form-103686333{background-color:#FFFFFF;border-color:transparent;border-width:1px;border-style:solid;}
#af-form-103686333{overflow:auto;}
.af-body .af-textWrap{text-align:left;}
.af-body input.image{border:none!important;}
.af-body input.submit,.af-body input.image,.af-form .af-element input.button{float:none!important;}
.af-body input.text{width:100%;float:none;padding:2px!important;}
.af-body.af-standards input.submit{padding:4px 12px;}
.af-clear{clear:both;}
.af-element label{text-align:left;display:block;float:left;}
.af-element{padding:5px 0;}
.af-form-wrapper{text-indent:0;}
.af-form{text-align:left;margin:auto;}
.af-header{margin-bottom:0;margin-top:0;padding:10px;}
.af-quirksMode .af-element{padding-left:0!important;padding-right:0!important;}
.lbl-right .af-element label{text-align:right;}
body {
}
</style>
