/*
File:			custom.css
Description:	Custom styles for Thesis

BASIC USAGE:

If you have enabled the custom stylesheet in the Thesis options panel, the &lt;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/
*/


.custom .sidebar ul.sidebar_list { text-align: center; }

body {
 background: #fff;
 color: #525252;
 font-size: 62.5%;
 }


#archive_info {display:none;}

               

                 /*---:[ core layout elements ]:---*/






#header { 
border-bottom: 0px double #fff; clear: both; }


.custom #header { 
height:120px;
padding-top:0;
padding-bottom:0;
background: url(http://shebeezies.com/wp-content/uploads/Fat-SHEBEEZIES-LOGO.gif)
center no-repeat; }

.custom #header #logo { display:none; }


.post_box, .teasers_box {
 border-top: 0px dotted #fff;
 clear: both;
 }




#sidebars {
 background: #fff;
 border-style: solid;
 border-color: #fff;
 }
		


#sidebar_1 {
 border-style: dotted;
 border-color: #525252;
 }



#footer {
 color: #525252;
 border-top: 3px double #525252;
 text-align: right;
 clear: both;
 }




                  /*---:[ global elements ]:---*/


a {
 color: #525252;
 text-decoration: none;
 }



a:hover {
 text-decoration: underline;
 }


blockquote {
 border-left: 3px solid #525252;
 color: #525252;
 }


pre {
 background: #fff;
 border: 1px solid #fff;
 overflow: auto;
 clear: both;
 }



               
                                   /*---:[ form inputs ]:---*/


input, textarea {
 font-size: 1em;
 color: #525252;
 background: #fff;
 border: 1px solid #525252;
 border-right-color: #525252;
 border-bottom-color: #525252;
 }


input:focus, textarea:focus {
 background: #fff;
 border-color: #525252;
 border-right-color: #525252;
 border-bottom-color: #525252;
 }


input.form_submit {
 font-weight: bold;
 color: #525252;
 border: 3px double #525252;
 border-top-color: #525252;  border-left-color: #525252;
 cursor: pointer;
 width: auto !important;
 overflow: visible;
 }



#commentform input.form_submit {  border-width: 3px;
 }



input.form_submit:hover {
 color: #525252;
 }






/*---:[ image captioning ]:---*/
.wp-caption { border-style: none; border-color: #fff; background-color: none; text-align: center; font-style: italic; }
	.wp-caption.alignleft { float: left; }
	.wp-caption.alignright { float: right; }
	.wp-caption.aligncenter { margin-right: auto; margin-left: auto; float: none; clear: both; }
	.wp-caption.alignnone { clear: both; }






                                     /*---:[ headlines and bylines ]:---*/



h1, h2, h3, h6 {
 font-weight: normal;
 color: #b70000;
}



.format_text h2.top, .format_text h3.top {
 margin-top: 0 !important;
 }



.sidebar h3 {
 font-variant: small-caps;
 letter-spacing: 2px;
 color: #b70000;
 }




h2 a {
 color: #b70000;
 }
	

h2 a:hover {
  color: #525252;

 }





           /*---:[ headline meta data (includes bylines) ]:---*/


.headline_meta {
 font-style: italic;
 color: #999;
 }
	


.headline_meta a {
 color: #525252;
 border-bottom: 1px solid #999;
 }



.headline_meta a:hover {
 color: #b70000;
 }


                        /*---:[ nav menu styles ]:---*/



#tabs {
 list-style: none;
 border: 0px solid #525252;
 border-width: 0 0 1px 1px;
 }
	


#tabs li {
 margin-bottom: -0.1em;
 background: #fff;
 border: 0px solid #fff;
 border-left: 0;
 float: left;
 }
	


#tabs .current_page_item, #tabs .current-cat {
 padding-bottom: 0.1em;
 background: #fff;
 border-bottom: 0;
 }
		


#tabs a {
 display: block;
 line-height: 1em;
 color: #525252;
 text-transform: uppercase;
 letter-spacing: 2px;
 }
		


#tabs a:hover {
 text-decoration: underline;
 }
		

#tabs .current_page_item a, #tabs .current-cat a {
 cursor: text;
 }
		


#tabs .current_page_item a:hover, #tabs .current-cat a:hover {
 text-decoration: none;
 }
	

#tabs .rss {
 padding-right: 0;
 background: none;
 border: none;
 float: right;
 }
		


#tabs .rss a {
 padding-right: 16px;
 background: url('images/icon-rss.gif') 100% 50% no-repeat;
 }






                     /*---:[ #header styles ]:---*/


#header #logo {
 background: url('images/shebeezies.jpg') no-repeat;
 font-weight: bold;
 }
	

#header #logo a {
 color: #999;
 }
	


#header #logo a:hover {
 color: #999;
 }



#header #tagline {
 font-weight: normal;
 color: #999;
 }



                       /*---:[ content styles ]:---*/



.format_text a {
 text-decoration: underline;
 }



.format_text a:hover {
 text-decoration: none;
 }


.format_text p.note {
 background: #fff;
 border: 1px solid #999;
 }


.format_text p.alert {
 background: #fff;
 border: 1px solid #999;
 }



.format_text .drop_cap {
 color: #525252;
 float: left;  }



.format_text ul {
 list-style: square;
 }

	

.format_text dt {
 font-weight: bold;
 }




                       /*---:[ after-post elements ]:---*/



.format_text .to_comments span.bracket {
 color: #999;
 }




                    /* Category Nav Menu */

ul#cat_tabs {
 list-style: none;
 border: 0px solid #fff;
 border-width: 0 0 1px 1px;
 }

  ul#cat_tabs li {
 margin-bottom: -0.1em;
 background: #fff;
 border: 0px solid #fff;
 border-left: 0;
 float: left;
 }

  ul#cat_tabs li.current_page_item, ul#tabs li.current-cat {
 padding-bottom: 0.1em;
 background: #fff;
 border-bottom: 0;
 }

ul#cat_tabs li a {
 display: block;
 line-height: 1em;
 color: #525252;
 text-transform: uppercase;
 letter-spacing: 2px;
 padding:0.545em 0.818em;
 }


ul#cat_tabs li a:hover {
 color: #b70000;
 text-decoration: underline;
 }


ul#cat_tabs li ul {
position:absolute;
 display:none;
 list-style:none;
}


ul#cat_tabs li:hover ul {
display:block;
}


ul#cat_tabs li ul li {
float:none;
}

ul#cat_tabs:after {
 content: ".";
 display: block;
 height: 0;
 clear: both;
 visibility: hidden;
 }






          /*---:[ feature box ]:---*/



#feature_box {
 background: #fff;
 border-bottom: 2px solid #999;
 }



            /*---:[ navigation links ]:---*/

.prev_next {
 text-transform: uppercase;
 letter-spacing: 2px;
 border-top: 0px solid #999; 
color: #b70000;
 clear: both;
 }



              /*---:[ archive information block]:---*/



#archive_info {
 border-bottom: 2px solid #999;
 }
	




                 /*---:[ multimedia box ]:---*/



#multimedia_box {
 width: 100%;
 }
	


#image_box {
 background: #fff;
 border-bottom: 1px dotted #999;
 }
		


#image_box img {
 display: block;
 background: #fff;
 border-style: solid;
 border-color: #999;
 }
	
            /*---:[ custom box styles ]:---*/
	

#custom_box {
 background: #fff;
 border-bottom: 0px solid #999;
 }





                           /*---:[ widget box styles ]:---*/
		
li#text-4.widget {
background:#fff;

padding:0.192em;
}


li.widget .widget_box {
border-width:0.077em;
padding:0.692em;
}

li.widget .widget_box {
background:#fff none repeat scroll 0 0;
border-color:#fff;
border-style:solid;
}
	



                          /*---:[ sidebar styles ]:---*/



.custom .sidebar h3 { text-align: center; }



           
                                    /*---:[content area ]:---*/




                 /*---:[comments area ]:---*/

.custom .comments_closed p {
  display: none;
}






                   /*---[text in feature box]---*/


custom .textbox {

font-size: 2em;
width: 100%;
text-align: center;
padding: 2em 0 2em 0;
}



                     /*---[Custom Feature Box]---*/

.custom #feature_box {

background: #fff;
border:0px solid #fff;
/*border: 0px solid #ebf6f0;*/
width:520px;
height:100px;
margin-top: 10px;
}



/*---:[ comment styles ]:---*/
	.comments_intro p { color: #999; }
		.comments_intro a { text-decoration: underline; }
		.comments_intro a:hover { text-decoration: none; }
		.comments_intro span { color: #999; line-height: 1em; }
		.comments_intro span.bracket { color: #999; }
dl#comment_list { border-top: 1px dotted #999; }
			dl#comment_list dt a:hover { text-decoration: underline; }
			dl#comment_list dt .comment_author { font-weight: bold; }
			.avatar img { float: right; }
			.comment_time, .edit_comment { color: #999; }
				.comment_time { white-space: nowrap; }
				.comment_time a, .edit_comment a { color: #5d8771; }
				.comment_time a:hover, .edit_comment a:hover { color: #999; }
		.comment_num { float: right; }
			dl#comment_list .comment_num a { font-weight: bold; color: #999; }
			dl#comment_list .comment_num a:hover { color: #999; background: #fff; text-decoration: none; }
	dl#comment_list .bypostauthor { background: #fff; }
	dl#comment_list dd { border-bottom: 1px dotted #999; }
		dl#comment_list dd p.reply a { color: #999; text-transform: uppercase; letter-spacing: 1px; text-decoration: none; }
		dl#comment_list dd p.reply a:hover { text-decoration: underline; }
	dl#comment_list dl { border-top: 0; }
		dl#comment_list dl dt, dl#comment_list dl dd { background: none; }
		dl#comment_list dl dd { border-bottom: 0; }
		dl#comment_list dl .bypostauthor { background: none; }
		dl#comment_list dl dt, dl#comment_list dl dd .format_text { border-style: solid; border-color: #999; }
		dl#comment_list dl dt.bypostauthor, dl#comment_list dl dd.bypostauthor > .format_text { border-color: #999; }
		a.comment_link { color: #b70000; text-decoration: none; font-variant: small-caps; border-bottom: 1px solid #999; }
		a.comment_link:hover { color: #999; border-bottom-color: #999; }






    /*---:[ author comment and alternating comment colors ]:---*/
	

/*


dl#comment_list .even {
 background: #fff;
dl#comment_list .odd {
 background: #fff; }
 }
	

dl#trackback_list { 
border-top: 1px dotted #999;
 }

dl#trackback_list dt a {
 color: #999;
 }

dl#trackback_list dt a:hover {
 color: #999;
 text-decoration: underline;
 }
dl#trackback_list dd {
 color: #999;
 }
.comments_closed p { text-transform: uppercase; letter-spacing: 1px; color: #999;
 }
