/*
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/
*/
/* HEADER ZONE */

.custom #header_area 
     { background: #3b2923;}

.custom #header_area .page { background: #3b2923; }

.custom #header { 
   border-bottom:none;
   height:150px;
   width:1000px;
   padding-top:0;
   padding-bottom:0;
  margin-top: -20px;
   background:url(http://www.forthemommas.com/wp-content/themes/thesis_16/custom/images/FTMheade.png)
 no-repeat; 
   z-index: 1000;
   position: relative;
}

#clickableHeader {
width: 550px; 
height: 150px; 
position: absolute; 
cursor: pointer;
z-index: 1001;
}

.custom #header #logo { display:none; }

.custom #header #tagline { display:none; }


/* NAVBAR ZONE */

.custom #nav_area { background: #c8ed78; }
.custom #nav_area .page { background: #c8ed78; }
.custom .menu { background: #c8ed78; border: 0; }
.custom .menu li.tab a, li.tab { border: 0; }

/* Styles search box that lives in nav menu */
#s {
color:#000; 
background:url(http://www.forthemommas.com/wp-content/themes/thesis_16/custom/images/FTMsearch.png); 
border: 0px solid #D1E5EF;
margin-left: 80px;
padding:.9em;
font-family:"Arial"; 
font-size:8pt; 
width:20em;
height:15px;  
text-transform:uppercase; 
letter-spacing:1px;

}

/* CONTENT ZONE */

.headline_meta { border-top: 1px solid #c8ed78; }
div.format_text img { border:0px solid #ccc; }/*this is for a border around pictures in posts*/
#container { margin-top:5em; border:0; padding:0;}
.custom #page {background: #fff; border: 0; padding: 0; margin:0;}
.custom #feature_box {border:0; padding:0; margin:0;} /* page-bottom 1px line horizontal */
.custom #content_box {border:0; padding:0; margin:0; background:#fff; } /* content sidebars 1px vertical line */
.custom #column_wrap { border:0; padding:0; margin:0; background:#fff; }  /* content and sidebar dividing line */
.custom #sidebars {border:0; padding:0; margin:0;} /* left-side 1px vertical line on sidebar */
.custom #sidebar_1 {border:0; padding:0; margin:0; } /* right-side 1px vertical line on sidebar */
.custom #sidebar_2 {border:0; padding:0; margin:0;} /* right-side 1px vertical line on sidebar */
.custom #footer {border:0;} /* removes double-bar footer line */

#news-box {border: 1px solid #ccc; background: #fff none; font-style: italic; padding: 10px; margin-bottom: 30px; margin-top: 30px;}
#news-box-home {border: 1px solid #ccc; background: #fff none;font-style: italic; padding: 10px; margin-bottom: 30px;}

/* SIDEBAR ZONE */
.custom .widget_killer_recent_entries h3 {
  display: none;
  }
.custom .widget_categories h3 {
  display: none;
  }
.custom li.widget { margin-bottom: 1em; }

ul.sidebar_list {
margin: 0 0 21px 0;
li.widget
float: left;
font-size: 11px;
margin: 0 10px 0 0;
text-align: left;	
}

ul.sidebar_list li.widget {
width:150px;
float:left;
font-size: 12px;
}


/* FOOTER ZONE */
.custom #footer_area { 
       background: #3b2923;
       border-top: 20px; 
       border-top-color: #c8ed78;
       border-top-style: solid;
}

.custom #footer_area .page { background-color: #ffffff; 
}
.custom #footer_area a { border: 0; 
}

#footerContainer
{
width: 695px;
margin: 0 auto; 
}

#footer_1 ul {
margin: 0 0 21px 0;
li.widget
float: left;
font-size: 14px;
margin: 0 10px 0 0;
text-align: left;
list-style-type: none; 
}

#footer_1 h3 {
font-size: 18px;
height: 38px;
color: #fc9670; 
border-bottom-color: #fc9670;
border-bottom-style: dotted;
width: 205px;
}

.custom h3 {
font-size: 18px;
height: 30px;
color: #fc9670; 
border-bottom-color: #fc9670;
border-bottom-style: dotted;
}

#footer_1 li.widget {
width:225px;
float:left;
}


/* BEHIND EVERYTHING */

.custom .twitter-item { margin-bottom: 0em; padding: .5em 0 .5em 0; border-bottom: 1px solid #000; }
	.custom .twitter-item:hover { background: #97b1ef; }
	.custom .twitter-item a { color: #576da4; }
	.custom .twitter-item a:hover { color: #a48e57; }

/*----- Content Float Fix -----*/
.clearfix:after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}

.clearfix {display: inline-block;}

/* Hides from IE-mac \*/
* html .clearfix {height: 1%;}
.clearfix {display: block;}
/* End hide from IE-mac */








