/*
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/
*/

.custom .full_width > .page { background: none; }

/*------ Header customization ------*/	

.custom #header_area .page {
	padding-top: 0em;
}

.custom #header_area {
	background-color: #efefef;
	border-bottom: 2px solid #ccc;
}

.custom #header {
	height: 8em;
	border-bottom: none;
	position: relative;
	padding: 0;
}

/*------ header logo ------*/

.custom #header #logo a {
	display: block;
	height: 48px;
	width: 288px;
	background: url(images/logo1.png) no-repeat;
	outline: none;
}

.custom #header #logo a:hover {
	background-position: 0 -48px;
}

.custom #logo {
	position: absolute;
	top: 16px;
	left: 10px;
}

.custom #header #logo, .custom #header #tagline { text-indent: -9999px; }
.custom #header #tagline { height: 0; }

/*------ Navigation menu ------*/

.custom .menu {
	float:right;
	padding-top: 2.1em;
}

.custom .menu a {
	font-weight: bolder;
}

.custom .menu .current a, .menu .current-parent a {
	background: url(images/underline.png) repeat-x bottom;
}

.custom .menu .tab-2 a:hover {
	background: #FF6600;
	color: #FFF;
}

.custom .menu .tab-2 a {
	color: #FF6600;
}

.custom .submenu .item a {
	background: #EFEFEF;
}

.custom .submenu .item a:hover {
	background: #CCC;
}

.custom .submenu .current a {
	background: #EFEFEF url(images/underline.png) repeat-x bottom;
}

/*------ Sidebar widget title text ------*/

.custom .sidebar h3 {
	border-bottom: 1px solid #ccc;
	color: #111111;
	font-weight: bold;
	line-height: 1.5em;
	margin-bottom: 0.5em;
	letter-spacing: 0;
	text-transform: uppercase;
}

/*------ Post title text ------*/

.custom  .headline_area h2 {
	font-weight: bold;
}

/*------ Blog title text ------*/

.custom  .headline_area h1 {
	font-weight:bold;
	letter-spacing:0.01em;
}

/*------ Teaser header ------*/

.custom .teaser h2 {
	font-weight:bold;
	padding-bottom: 0.2em;
	text-transform: uppercase;
}

/*------ custom tags ------*/

.custom  .post_tags a {
	background-color: #EFEFEF;
	background-image: url('images/tag.png');
	background-repeat:no-repeat;
	background-position: left center;
	padding-left: 11px;
	padding-right: 5px;
	color: #000;
}

.custom  .post_tags a:hover {
	background-color: #CCC;
	text-decoration: none;
	color: #fff;
}

/*------ Contact form styling ------*/

.custom #wpcf7-f1-p652-o1 textarea {
	width: 99%;
}

.custom #commentform textarea {
width:99%;
}

.custom #commentform span.allowed {
	width: 100%;
}

/*------ Custom previous-next line ------*/

.custom .prev_next {
	border-top:1px dotted #BBB;
}

/*------ Custom sidebars ------*/

.custom #sidebars {
	border-top: 2px solid #ccc;
}

.custom #sidebar_1 {
	border-width: 0;
}

/*------ Custom footer widgets ------*/

.custom .col a:hover {
	text-decoration: underline;
}

.custom .col h3 {
	border-bottom:1px solid #ccc;
	color:#111;
	font-weight:bold;
	line-height:1.5em;
	margin-bottom:0.5em;
	text-transform:uppercase;
}

.custom .widget_twitter h3 {
	background-image: url('images/social/twitter1.png');
	background-repeat:no-repeat;
	background-position: right center;
}

.custom .col ul.sidebar_list {
	padding-left:1.1em;
	padding-right:1.1em;
}

.custom #col1 {
	float:left;
	width:31em;
}

.custom #col2 {
	float:right;
	width:31em;
}

/*------ Custom footer ------*/

.custom #footer_area {
	background-color: #EFEFEF;
	border-top: 2px solid #ccc;
}

.custom #footer {
	overflow: hidden;
	padding: 2em 1.1em 1.1em;
	border-top: 2px solid #ccc;
	text-align: left;
}

.custom #footer a {
	border-bottom: 0px;
	color: #000;
}

.custom #footer a:hover {
	text-decoration: underline;
}

.custom .diff_button {
	margin-right: 1em;
}

.custom .f_buttons {
	margin-top: 1.1em;
}

/*------ google search customization ------*/

.custom li.thesis_widget_google_cse form input[type="text"] {
	padding:0.214em;
	width:74%;
	background: #FFFFFF;
}

/*Remove archive category title*/
.custom #archive_info {display:none;}