/*
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/
*/


/*space between widget list items*/
.custom #header { background-color: #F6FAFF ; }

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

body.custom {
background: #100000 url('images/bg.jpg') repeat-x;
}

.custom a, .custom a:link, .custom a:visited {
color: #cf3f00;
outline: none;
}

.custom a:hover {
color: #3a3a3a;
}

.custom #page {
position: relative;
background: none;
}


/**********/
/* header */
/**********/

.custom #header {
background: none;
color: #fff;
border: none;
padding: 0;
margin: 0;
/*padding-top: 1.5em;*/
padding-bottom: 1.5em;
}

.custom #header_title {
float: left;
display: inline;
width: 400px;
}

.custom #header_search {
float: right;
display: inline;
width: 300px;
margin-top: 25px;
margin-right: 16px;
}

* html .custom #header_search {
margin-right: 0;
}

.custom #header_title h1 {
color: #fff;
height: 25px;
width: 301px;
margin: 0;
margin-bottom: 8px;
padding: 0;
}

.custom #header_title h1 a {
color: #fff;
text-decoration: none;
height: 25px;
width: 301px;
display: block;
text-indent: -5000px;
background: url('images/logo.jpg') no-repeat;
font-size: 18px;
}

.custom #header_title h2 {
color: #fff;
height: 27px;
width: 300px;
display: block;
text-indent: -5000px;
background: url('images/tagline.jpg') no-repeat;
margin: 0;
}

.custom #header_search input {
border: none;
}

.custom #header_search .textbox {
padding-right: 10px;
}

.custom #header_search .textbox input {
padding-top: 12px
padding-left: 3px;
height: 21px;
width: 215px;
border: 1px solid #ccc;
font-size: 13px;
}


/*****************/
/* header_banner */
/*****************/

.custom #header_banner {
height: 229px;
}

.custom #header_banner div.banner {
float: left;
display: inline;
width: 551px;
height: 229px;
}

.custom #header_banner div.promo {
float: right;
display: inline;
width: 370px;
height: 209px;
padding: 10px 15px;
background: #8ecde4 url('images/bg_header.jpg') repeat-x;
font-size: 12px;
}

.custom #header_banner .promo h2 {
color: #0079a4;
font-weight: bold;
font-size: 14px;
margin-bottom: 15px;
}

.custom #header_banner .promo ul {
margin-left: 15px;
}

.custom #header_banner .promo li {
margin-bottom: 15px;
}

.custom #header_banner .promo a,
.custom #header_banner .promo a:link,
.custom #header_banner .promo a:visited {
color: #0079a4;
text-decoration: none;
}

.custom #header_banner .promo a:hover {
text-decoration: underline;
}


/******************/
/* top navigation */
/******************/

.custom #tabs {
background: none;
border: none;
height: 35px;
}

.custom #tabs li {
display: inline;
font-size: 16px;
background: none;
border: none;
height: 35px;
}

.custom #tabs a {
color: #fff;
text-transform: none;
/*padding-top: 1em;
padding-bottom: 1em;*/
height: 25px;
padding-top: 10px;
}

.custom #tabs a:hover {
background-color: #f7f0e6;
color: #000;
}

.custom #tabs .current_page_item a {
background-color: #cf3f00;
color: #fff;
}

.custom #tabs li.rss {
padding-right: 15px;
}

.custom #tabs li.rss a {
background-color: transparent;
}

.custom #tabs li.rss a:hover {
color: #fff;
text-decoration: underline;
}

.menu .tab a, .menu .tab a:link, .menu .tab a:visited {color: #fff; background-color: none;}
.menu .tab a:hover {color: #000; background-color: f7f0e6;}

ul.menu {width: 510px;}


/************/
/* envelope */
/************/

.custom #link_envelope {
position: absolute;
top: 335px;
left: 560px;
width: 150px;
height: 44px;
font-size: 1.3em;
}

.custom #link_envelope a,
.custom #link_envelope a:link,
.custom #link_envelope a:visited {
display: block;
height: 39px;
color: #fff;
text-decoration: underline;
background: url('images/envelope.png') no-repeat;
padding-left: 55px;
padding-top: 5px;
}

* html .custom #link_envelope a,
* html .custom #link_envelope a:link,
* html .custom #link_envelope a:visited {
background: url('images/envelope.gif') no-repeat;
}

.custom #link_envelope a:hover {
color: #fff;
text-decoration: none;
}


/***********/
/* content */
/***********/

.custom #content_box {
background: #fff url('images/bg_content.jpg') repeat-y;
}

.custom #content {
}


/*********/
/* posts */
/*********/

.custom .post_box {
border: none;
}

.custom .headline_meta a {
border: none;
}

.custom p.headline_comments {
font-size: 12px;
color: #888;
}

.custom .headline_comments a,
.custom .headline_comments a:link,
.custom .headline_comments a:visited {
color: #888;
text-decoration: none;
}

.custom .headline_comments a:hover {
color: #888;
text-decoration: underline;
}

.custom .byline {
margin-bottom: 1.5em;
border-bottom: 1px dotted #ccc;
padding-bottom: .5em;
}

.custom p.author {
float: left;
width: 200px;
}

.custom p.topics {
float: right;
text-align: right;
width: 300px;
}

.custom .headline_meta {
font-style: normal;
}

.custom .cta_comments {
border: 1px solid #ccc;
padding: 8px;
background: #d6e9f0;
color: #0079a4;
width: 220px;
text-align: center;
margin-left: 10px;
margin-bottom: 20px;
}

.custom .cta_comments a,
.custom .cta_comments a:link,
.custom .cta_comments a:visited {
color: #0079a4;
text-decoration: underline;
font-size: 1.2em;
}

.custom .cta_comments a:hover {
color: #cf3f00;
}


/******************/
/* subscribe_form */
/******************/

.custom #subscribe_form {
border: 1px solid #ccc;
padding: 15px;
background: #d6e9f0;
color: #0079a4;
}

.custom #subscribe_form table {
border-collapse: collapse;
margin-bottom: 5px;
}

.custom #subscribe_form td {
padding-right: 5px;
padding-bottom: 5px;
}

.custom #subscribe_form td.label {
padding-right: 15px;
}

.custom #subscribe_form input.text_box {
width: 200px;
border: 1px solid #666;
background: #fff;
}

.custom #subscribe_form .req {
color: #c30;
}

.custom #subscribe_form input.button {
background: none;
border: none;
width: 84px;
height: 31px;
padding: 0;
margin: 0;
}


/***********/
/* sidebar */
/***********/

.custom #custom_box {
display: none;
}

.custom #sidebars {
padding-top: 25px;
}

.custom #sidebars .sidebar {
padding-left: 25px;
padding-right: 15px;
width: 310px;
margin-bottom: 20px;
}

.custom #sidebars .custom_widget {
margin-left: 10px;
}

.custom #sidebars h3 {
text-transform: none;
font-variant: normal;
color: #0079a4;
font-size: 14px;
font-weight: bold;
}

.custom #sidebars h4 {
text-transform: none;
font-variant: normal;
color: #0079a4;
font-size: 12px;
font-weight: bold;
margin-bottom: 15px;
}

.custom #sidebars a,
.custom #sidebars a:link,
.custom #sidebars a:visited {
color: #786443;
}

.custom #sidebars a:hover {
color: #736443;
text-decoration: underline;
}

.custom #multimedia_box {display: none;}


/****************/
/* sidebar tabs */
/****************/

.custom #sidebars .tabs_popular {
float: left;
overflow: hidden;
width: 300px;
margin: 0 0 35px 0;
}

.custom #sidebars .tabs_popular ul.tab_list {
float: left;
width: 100%;
border-bottom: 2px solid #cf3f00;
width: 298px;
}

.custom #sidebars .tabs_popular ul.tab_list li {
float: left;
list-style-type: none;
margin: 0;
padding: 0;
font-size: 11px !important;
clear: none;
}

.custom #sidebars .tabs_popular ul.tab_list li a {
overflow: hidden;
display: block;
padding: 5px 8px 5px 8px;
text-decoration: none;
margin: 0 1px 0 0;
color: #786443;
background: #ebdfcc;
border: 1px solid #786443;
border-bottom: none;
}

.custom #sidebars .tabs_popular ul.tab_list li a:visited { color: #222;}	
.custom #sidebars .tabs_popular ul.tab_list li a:hover { }
.custom #sidebars .tabs_popular ul.tab_list li a.tab-current { background: #cf3f00; color: #fff; border: 1px solid #cf3f00; border-bottom: none; z-index: 999; }

.custom #sidebars .tabs_popular div {
float: left;
display: block;
background: #fff;
width: 280px;
padding: 5px 7px;
border-bottom: 2px solid #cf3f00;
border-left: 2px solid #cf3f00;
border-right: 2px solid #cf3f00;
font-size: 11px !important;
}

.custom #sidebars.tabs_popular div.t2,
.custom #sidebars .tabs_popular div.t3,
.custom #sidebars .tabs_popular div.t4 { background: #fff; display: none; }

.custom #sidebars .tabs_popular div ul { background: #fff; font-size: 12px; }

.custom #sidebars .tabs_popular div ul li { padding: 15px 0; border-bottom: 1px solid #ccc; margin: 0 !important; background: #fff; list-style: none; font-size: 12px !important;}

.custom #sidebars .tabs_popular div ul li:last-child { border: none; }

/***************************/
/* sidebar category widget */
/***************************/

.widget_categories ul {
display: inline-block;
}

.widget_categories ul li.cat-item {
float: left;
clear: none;
width: 135px;
margin-right: 10px;
margin-bottom: 0;
font-size: .9em;
}

.widget_tag_cloud div {
border: 2px solid #cf3f00;
padding: 10px;
background: #fff;
}


/**************************/
/* sidebar subscribe_form */
/**************************/

.custom .subscribe_form {
font-size: 12px;
}

.custom .subscribe_form table {
border-collapse: collapse;
}

.custom .subscribe_form td {
padding-right: 5px;
padding-bottom: 5px;
}

.custom .subscribe_form td.label {
padding-right: 10px;
}

.custom .subscribe_form h3 {
/*float: left;
display: inline;*/
width: 150px;
margin-right: 5px;
padding-top: 8px;
}

.custom .subscribe_form input.text_box {
width: 175px;
height: 20px;
border: 1px solid #ccc;
background: #fff;
padding: 3px;
padding-bottom: 0;
}

.custom .subscribe_form .req {
color: #c30;
}

.custom .subscribe_form input.button {
/*float: left;
display: inline;*/
background: none;
border: none;
width: 84px;
height: 31px;
padding: 0;
margin: 0;
margin-top: 5px;
}


/**********/
/* footer */
/**********/

.custom #footer {
border-top: 1px double #ddd;
text-align: left;
}

.custom #footer_links ul {
list-style: none;
margin: 0;
padding: 0;
}

.custom #footer_links li {
list-style: none;
margin-bottom: 3px;
text-decoration: none;
}

.custom #footer_links a,
.custom #footer_links a:link,
.custom #footer_links a:visited {
color: #888;
text-decoration: none;
border: none;
}

.custom #footer_links a:hover {
text-decoration: underline;
}

.custom #thesis_attribute {
float: right;
display: inline;
width: 300px;
text-align: right;
color: #888;
}

.custom #thesis_attribute a,
.custom #thesis_attribute a:link,
.custom #thesis_attribute a:visited {
color: #888;
text-decoration: underline;
border: none;
}

.custom #thesis_attribute a:hover {
text-decoration: none;
}


/********************/
/* cleared elements */
/********************/

.custom #header:after,
.custom #header_banner:after,
.custom .subscribe_form:after,
.custom .custom_widget:after,
.custom #footer:after { content: "."; display: block; height: 0; clear: both; visibility: hidden; }