/*
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 .menu a { text-transform: none; } 
.custom #header #logo a { display: block; height: 119px; width: 1020px; background: url('http://radiestesia.net/imagens/topo_logo.jpg') no-repeat; outline: none; }
.custom #header #logo, .custom #header #tagline { text-indent: -9999px; }
.custom #header #tagline { height: 0; }
.custom #header { padding: 0; border-bottom:none;}

function custom_thesis_404_title() { 
?> 
YOUR 404 PAGE HEADING HERE 
<? 
}

remove_action(â??thesis_hook_404_titleâ??, â??thesis_404_titleâ??); 
add_action(â??thesis_hook_404_titleâ??, â??custom_thesis_404_titleâ??);

function custom_thesis_404_content() { 
?> 
<p>WHATEVER YOU WANT YOUR 404 PAGE TO SAY HERE</p> 
<? 
}

remove_action(â??thesis_hook_404_contentâ??, â??thesis_404_contentâ??); .custom .menu { background: #C0CFDD; }
add_action(â??thesis_hook_404_contentâ??, â??custom_thesis_404_contentâ??);

//Featured Content Slider
   
   function content_slider() { ?>
   <?php if (is_home()){ ?>
  
             <?php if ( function_exists( 'get_smooth_slider' ) ) { get_smooth_slider(); } ?>
   <?php }
   }
   add_action('thesis_hook_before_content', 'content_slider');
.custom .archive h3 {margin-top: 0;}.custom .archive ul {font-size: .85em; } .custom .archivel { float: left; width: 40%;}.custom .archiver { float: right; width: 60%;}

//footer 3 colunas
#footer{ 
background: #eeeeee; 
} 
.custom #footer { 
height: 100%; 
width: 100%; 
border-top:2em solid #9c9c9c; 
background: #eeeeee; 
padding:0em; 
} 
.custom #footer a{ 
border-bottom: 1px none #cccccc; 
} 
.custom #footer { 
text-align:center; 
} 
/* footer widget area setup */ 
#footer_setup { 
/* widgetized footer background (not footer background) */ 
background: #444343; 
/* widget padding */ 
padding:1.5em; 
/* margin at bottom of widgets */ 
margin-bottom: 25px; 
/* do not change this! */ 
overflow: hidden; 
}

/* widget item setup */ 
#footer_setup .footer_items { 
/* contents alignment */ 
text-align: left; 
/* widget width */ 
width: 33.3%; 
/* space between widgets */ 
padding-right: 0px; 
/* text color */ 
color: #2361A1; 
/* do not change these! */ 
display: inline-block; 
float: left; 
height: 100%; 
}

/* widget item headers http://adwordsshop.com/wp-admin/admin.php?page=thesis-file-editor*/ 
#footer_setup .footer_items h3 { 
/* font size */ 
font-size: 1.5em; 
/* bold or not */ 
font-weight: bold; 
/* uppercase or not */ 
text-transform: uppercase; 
/* space out the letters*/ 
letter-spacing: 0px; 
/* font color*/ 
color: #ffffff; 
/* padding under header text */ 
padding-bottom: 3px; 
/* border under header text */ 
border-bottom: 3px none #ffdf00; 
/* distance between border and widget text */ 
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; }

10. Personalizar página de erro 404 
Para personalizar a página 404 eror Tema de sua tese, adicione o seguinte código para custom_functions.php de seu tema.

function custom_thesis_404_title() { 
?> 
YOUR 404 PAGE HEADING HERE 
<? 
}

remove_action(â??thesis_hook_404_titleâ??, â??thesis_404_titleâ??); 
add_action(â??thesis_hook_404_titleâ??, â??custom_thesis_404_titleâ??);

function custom_thesis_404_content() { 
?> 
<p>WHATEVER YOU WANT YOUR 404 PAGE TO SAY HERE</p> 
<? 
}

remove_action(â??thesis_hook_404_contentâ??, â??thesis_404_contentâ??); 
add_action(â??thesis_hook_404_contentâ??, â??custom_thesis_404_contentâ??);
/* menus coloridos abaixo */
.custom .sidebar h3{background-color: #C0CFDD;
-moz-border-radius: 4px;&nbsp;padding: 0.1em 0.1em 0.1em 0.5em; font-weight:bold; font-size:1em; color:#ffffff;}
.custom .sidebar h3 {font-weight: normal; color: #111111; padding: 4px 5px; background: #C0CFDD;}

.custom .menu { background: #C0CFDD; }
.custom #title_area {background:#ffffff; padding:0em 0; border-bottom:1px solid #fff;}
	.custom #header {border-bottom:none;}
.custom .menu { background: #C0CFDD; }

