/*
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/
*/

/* This line sets up our clickable background image based on the site title's link */
/* DIY: Adjust the height & width attributes to reflect the actual size of your image */
/* DIY: Change the filename of your image to reflect the actual header's file name */
.custom #header #logo a { display: block; height: 90px; width: 570px; background: url('images/search1x_logo_heading.png') no-repeat; outline: none; }

#feature_box {border-bottom:none;}

/* 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; }

.custom img.alignleft, img.left {
margin: 0 1.56em 1.56em 0;
}

.custom .teaser img.imgtfe {
margin:0 0.7em 0.7em 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: 10; }
.custom .teaser p { text-align: justify; }

#custom_box {padding: 0;}

.custom .title-avatar {float:left; width:5em; margin-right:1em;}

.custom .menu .rss a:hover {color: #111111; }

/* Twitter Sidebar Widget */

#twitter_div {
border-bottom:1px solid #5AA5BC;

}

/* Custom Nav tab */

.custom ul#tabs {border-width:0 0 1px 1px; border-color:#DDDDDD; padding-bottom:0;}
.custom ul#tabs li {border-width:0 1px 0 0; border-color:#fff; margin-bottom:0; padding-bottom:0;}
.custom ul#tabs li.current_page_item, .custom ul#tabs li.current-cat {background:none;}
.custom ul#tabs li.current_page_item a, .custom ul#tabs li.current-cat a {background-color:#000; color:#fff;}
.custom ul#tabs li a:hover, .custom ul#tabs li.current_page_item a:hover, .custom ul#tabs li.current-cat a:hover {background-color:#fff; color:#000; text-decoration:none;}

/* Custom Sidebar */
.custom .sidebar h3 { background:#0B3861 none repeat scroll 0 0; color: #FFFFFF; font-weight: normal; font-family: Georgia, Arial; margin:0 0 5px; padding: 3px 0 3px 7px; }
.custom #sidebars { background-color:#EEEEEE;}


/* === POST AREA === */
.custom #content_box {
background:none;
margin-top: 15px;
}

/* Directory Search Form */

#directory_search #search_text {
	width: 200px;

}

#directory_search #submit {
	width: 90px;
	margin-right: 20px;
}

/* Contact Form */

#wpcf label {
	clear: both;
	display: block;
	float: left;
	width: 180px;
}
#wpcf input {
	float: left;
	width: 200px;
	padding: 1px;
	margin: 2px 5px 2px 0;
}
#wpcf textarea {
	width: 380px;
	height: 100px;
	padding: 1px;
	margin: 0 5px 10px 0;
}
#wpcf #contactsubmit {
	margin-left: 280px;
	width: 100px;
}

/*---:[ Set 2: repeating background grid pattern ]:---*/

body.custom { background: #233857 url('images/bg-grid.gif'); }

		.custom #page { padding: 2em }


#container { background: #fff; margin-top: 1em; margin-bottom: 1em; padding: 0em;  -moz-border-radius: 3em; -webkit-border-radius: 3em; -khtml-border-radius: 3em; border-radius: 3em; }

/*---:[ end Set 2 ]:---*/

/*--RSS Email*/
.custom #sidebars .sub_email a { padding-left: 16px; background: url('images/icon-email.gif') no-repeat; }
.custom #sidebars .sub_rss a { padding-left: 16px; background: url('images/icon-rss.gif') no-repeat; }

.custom.noheading .headline_area h1 { display: none; }

.custom #archive_info h1 { font-size: 2.5em; }

/* custom breadcrumbs */

.custom.breadcrummy .headline_area h1 { display: none; }
.custom.breadcrummy .headline_area h1.bc { display: block; }

/* Custom footer */

.custom ul.my_list { list-style-type: square; }

.custom #footer_1 {text-align:left; color:#333333; display:block; background:#E7F8FB none repeat scroll 0 0; padding-bottom: 4px; width: 100%; }
	.custom #footer_1 ul.sidebar_list li.widget {width:23%; margin-right:2%; float:left;}
		.custom #footer_1 ul.sidebar_list li.widget h3 {background-color: transparent; color:#222222; font-weight: bold; line-height: 1.385em; margin-bottom: 0.615em; border-bottom:1px dotted #DDDDDD; border-top:1px solid #DDDDDD;}
		.custom #footer_1 ul.sidebar_list li.widget a {color:#444; border-bottom:0;}
		.custom #footer_1 ul.sidebar_list li.widget a:hover {color:#111;}
		
