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


// Featured Content Slider Tutorial by ThesisCustomizationService
function thesis_content_slider() { ?>
 
<?php if (is_home()){ ?>
<?php if ( function_exists( 'get_smooth_slider' ) ) { get_smooth_slider(); } ?>
<?php }
}
add_action('thesis_hook_before_content', 'thesis_content_slider');

/* CUSTOM.CSS */

.custom #footer {
border-top:2em solid #FFFFFF;
background: #FFFFFF;
padding:0em;
text-align:center;
}
.custom #footer a{
border-bottom: 1px none #cccccc;
}

/* footer widget area setup */
#footer_setup {
background: #FFFFFF;
padding:1.5em;
margin-bottom: 25px;
overflow: hidden;
}

/* widget item setup */
#footer_setup .footer_items {
text-align: left;
width: 24.5%;
padding-right: 0px;
color: #CC0E21;
display: inline-block;
float: left;
height: 100%;
}

/* widget item headers */
#footer_setup .footer_items h3 {
font-size: 1.5em;
font-weight: bold;
text-transform: uppercase;
letter-spacing: 0px;
color: #660000;
padding-bottom: 3px;
border-bottom: 3px none #FFFFFF;
margin-bottom: 5px;
}

/* do not change these! */
#footer_setup .footer_items ul li { list-style:none;
font-size:1.4em;
line-height:1.5em;
}
#footer_setup .footer_items ul { margin: 1em; padding: 0px; }



/*No Sidebar Action               */.nosidebar #content { width: 100% }
.nosidebar #content_box {
width: 100%;
background: url('');
}









.custom ul#addmenu {
height: 25px;
background:#10109C none repeat scroll 0 0;
padding-top: 5px;
width: 100%;
}




.custom .menu a {
text-transform: none;
}