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

/*Replace text in header with image*/

.custom #header 
{
background: #ffffff;
padding-top: 0em;
padding-right: 0em;
padding-bottom: 0em;
padding-left: 0em;
border-top: 0em;
border-right: 0em;
border-bottom: 0em;
border-left: 0em;
margin-top: 0em;
margin-right: 0em;
margin-bottom: 0em;
margin-left: 0em;
}

.custom #header #logo a
{
display:block;
width:950px;
height:140px;
background:url(http://www.materia-inc.com/wp-content/themes/thesis_17/custom/images/materia-green-header.png) left no-repeat;
color:#000000;
text-indent: -9999px;
padding-top: 0em;
padding-right: 0em;
padding-bottom: 0em;
padding-left: 0em;
border-top: 0em;
border-right: 0em;
border-bottom: 0em;
border-left: 0em;
margin-top: 0em;
margin-right: 0em;
margin-bottom: 0em;
margin-left: 0em;
}

.custom #header #tagline 
{
color:#000000;
text-indent: -9999px;
}




/* Custom feature box*/

.custom #feature_box {background:none; border:none; padding:1em;}
.custom #feature_box img { display: block; }

.custom .menu { padding: 0 1.1em; }




/* Remove comments closed statement*/

.custom .comments_closed p {
  display: none;
}

.custom h3 {
color:#ffffff; 
}

.custom h3 {
background:#ff9508; text-transform:uppercase; text-align: center; padding: .4em;
}

.custom h1 {
background:#ffffff;
}


/* Change background of search widget */
.custom .search_form input {
background:#fff; }


/* Top Nav bar */
.custom ul#topnav {
border-style: none;
list-style-image: none;
list-style-position: outside;
list-style-type: none;
background:#ffffff none repeat scroll 0 0;
width: 100%;
float: right;
}
.custom ul#topnav li { float: right; padding: 10px 10px 3px 0px; }
.custom ul#topnav li a { font-size: 1.3em; color: #000000; }
.custom ul#topnav li a:hover { color: #1275c1; }


/* Styling for the widget with the id of "textwidget" */

.custom li.widget {
background:#ffcd77;
padding:0.5em 0.5em 0.75em 0.5em;
}

/*Reduce the space between widgets in the sidebars*/
.custom li.widget { margin-bottom: 20px; }

html { min-height: 100%; margin-bottom: 1px; overflow: -moz-scrollbars-vertical !important;}

/* padding inside body container */

.format_text {padding-right: 25px;}

.custom div.nav_container form.search_form {
	float:right; /*Moves search box to the right*/
	margin-top: -2.5em; /*If you want search box to sit on the same gray line the nav sits on, replace this property with margin-top: -2.5em;*/
}
.custom div.nav_container #s {
	font-size:1.3em;
	padding:0.308em;
	width:15.385em;
}

/* custom footer nav menu */

.custom #custom_footer_nav {text-align: right; }

.custom #custom_footer_nav ul {
list-style-image:none;
list-style-position:outside;
list-style-type:none;
margin-top:4em;
margin-right: -2em;
padding: 0 ;
Color:1275C1;
font-size: 1.45em;
text-decoration: none;
}

.custom #custom_footer_nav li {
border-right: 1px solid #1275C1;
display: inline;
margin-right: 10px;
padding-right: 10px;
text-decoration: none;
}


.custom #custom_footer_nav li.noborder {
border-right: 0px;
}

.custom #custom_footer_nav li a {
color:#1275C1;
border:none;
text-decoration: none;
font-weight:normal;
}

.custom #custom_footer_nav li a:hover {
color:#000000;
}

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


/* Change title color of RSS widget */


.custom h3 a:link {
color: #ffffff
}

.custom h3 a:hover {
color: #2361A1
}

.custom #widgets-reloaded-categories-4 h3 {
background:#ff9508; text-align: center; padding: .4em;
}

/* Remove line under hyperlinks in content */

.custom .format_text a {text-decoration:none;}
.custom .format_text a:hover {text-decoration:underline;}


/* Remove tile at top of category archives */

.custom #archive_info {display:none;}





.custom ul#tabs li a:hover {
  text-decoration: none;
}