/*
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/
*/

/*background del header area*/
.custom #header_area {background:#eeeeee;}
	.custom #header_area .page {background:transparent;}
		.custom #header {border-bottom:0;}

/*estilo de nav*/
.custom #nav_area {background:#dddddd; border-bottom:6px solid #cccccc; border-top:3px solid #cccccc; padding-top:0px; font-weight: bold;
  -webkit-box-shadow: -1px 2px 4px #888; /* Saf3.0+, Chrome */
                -moz-box-shadow: -1px 2px 4px #888; /* FF3.5+ */
                 box-shadow: -1px 2px 4px #888; /* Opera 10.5, IE 9.0 */}
	.custom #nav_area .page {background:transparent;}
	.custom  ul#tabs {border-bottom:0px; border-right: 1px; border-color:#cccccc; }
	.custom ul#tabs li {border-color:#DBD4B7; background-color:#E6DEC0; margin-right: 0.1em;}
	.custom ul#tabs li.current_page_item, .custom ul#tabs li.current-cat {background:#fff;}


/* DoubleMule Clickable Header v. 1.0 */

.custom #header 
{
background: #eeeeee;
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:970px;
height:200px;
background:url(http://mecachendie.com/mecachendie/header3.png) center no-repeat;
outline:none;
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 
{ height:0px;  /* altura cero para que no quede el espacio al cohete */
color:#000000;
text-indent: -9999px;
}
.custom #content_area { margin-top: 20px; }
.custom #content { margin-top: 20px; }

/* color de fondo del footer y de la sidebar */
.custom #footer_area { padding-bottom: 2em; background: #eeeeee; border-top:3px solid #dddddd;}
.custom #footer_area .page {background:transparent;}
.custom #sidebars { background: #ffffff; margin-top: 20px;  }

/* color del link de suscribe */
.custom .rss a {
   color: #333333;
}
.custom .rss a:hover {
   color: #333333;
   text-decoration: underline;
}
/* subrayado en post title */
.custom  h2, h1 {
border-bottom: 0.1em solid #dddddd;}

/* fecha bold en post byline */
.custom abbr.published {
   font-weight:bold;
   cursor: default;

}
/* Remove Italics en el byline*/
.custom .headline_meta {
   font-style: normal;
}

/* estilo links de categorias en post byline */
.custom .headline_meta a {
   font-weight:bold;
   color: #edac21;
}
.custom .headline_meta a:hover {
   font-weight:bold;
   color: #cccccc;
}
/* estilo edit en post byline */
.custom .edit_post {font-size: 14px; font-weight:bold; text-transform: uppercase;   }

/* Previous Link on Left, Next Link on Right */
.custom div.prev_next p {
  float:right;
}
.custom div.prev_next p.previous {
  float:left;
}
/* drop cap para usar con la primera letra de un post */
.custom .format_text .drop_cap {
  font-size: 2.0em;
  color: #edac21;
}

/* agrando el tamaño del numerito de cada comentario y le cambio el color a las llavecitas en la home */
.custom .comment_num a {
  font-size: 2.0em;
  padding-right:5px;
}
.custom .format_text .to_comments span.bracket {color: #dddddd;}


/* Style Comments Intro */
.custom .comments_intro p {
  font-size: 1.3em;
  
}
/* tiro a la derecha las llavecitas y el escribi un comentario o el numero de comentarios*/
.custom .to_comments { text-align: right;}

/* Style Bracket */
.comments_intro p span.bracket {
  color: #dddddd;
}
/* Style "agrega un comentario" link */
.custom .comments_intro a {
 color: #3B3B3B;
 text-decoration: none;
}
.custom .comments_intro a:hover {
 color: #3B3B3B;
 text-decoration: underline;
}
/*estilo de los widgets en el footer*/
.custom #footer_1 {text-align: center; color:#3B3B3B;}
.custom #footer_1 .widget {border: 0px;}
	.custom #footer_1 ul.sidebar_list li.widget {width:23%; margin-right:2%; float:left;}
		.custom #footer_1 ul.sidebar_list li.widget h3 {color:#222;}
		.custom #footer_1 ul.sidebar_list li.widget a {color:#444; border-bottom:0;}
		.custom #footer_1 ul.sidebar_list li.widget a:hover {color:#111;}
.custom .centro { text-align: center; }

/* Make all widget headings con fondo gris */
.custom .widget  h3 {
   background: #eeeeee;
   color: #3b3b3b;
font-weight:bold;
   font-size: 1.0em;
   padding: 6px;
   text-transform: uppercase;
   margin-bottom: 10px;
}

/* Specify bottom padding on all widgets */
.custom li.widget {
   padding-bottom: 2px;
   
}
/*bordecito alrededor de los widgets*/
.custom .widget  {
border:1px solid #dddddd;
}
/*padding adentro de los widgets*/
.custom .widget ul, .widget p  { 
   padding-left: 5px;
   padding-right: 5px;
}
/* Specify bottom margin on all widgets */
.custom li.widget {
   margin-bottom: 1.769em;
}
/*color de los links en la sidebar*/
.custom #content_area ul.sidebar_list li.widget a {color:#444; border-bottom:0;}
.custom #content_area ul.sidebar_list li.widget a:hover {color:#edac21;}

/*sombra y borde en las fotos-agregar una clase existente y copiar las reglas para no tener que modificar todas las fotos*/
.custom img.frame { background: #fff;
  padding: 0.714em;
  border: 0.071em; }
.custom .format_text img.frame {
  -moz-box-shadow: 0px 6px 15px #888; /* FF3.5+ */
  -webkit-box-shadow: 0px 6px 15px #888; /* Saf3.0+, Chrome */
  box-shadow: 0px 6px 15px #888; /* Opera 10.5, IE 9.0 */
}
.custom .linked-to-original, .alignnone, .aligncenter, .frame2 {
background: #fff;
  padding: 0.714em;
  border: 0.071em;
  -moz-box-shadow: 0px 6px 15px #888; /* FF3.5+ */
  -webkit-box-shadow: 0px 6px 15px #888; /* Saf3.0+, Chrome */
  box-shadow: 0px 6px 15px #888; /* Opera 10.5, IE 9.0 */
}

/* sutil bordecito alrededor de cada post */
.custom .post.post_box {
   border:2px solid #eeeeee;
   margin:1em;
   padding:2em;
}
/* NUMBERED PAGE NAV estilo de los numeros de pagina en la home */
.page-nav { font-size: 1.35em; font-weight: bold; margin: 1em 0 1em 2em; padding: 0; overflow: hidden; }
.page-nav-intro { float: left; padding: .3em .5em; margin: 0 1em 1em 0; background: #ffffff; }
.page-number { float: left; padding: .3em .5em; margin: 0 .2em; background: #ffffff; border: .1em solid #ccc;  }
.current-page-number { float: left; padding: .3em .5em; margin: 0 .2em; background: #ffffff; border: .2em solid #edac21; }
.elipses { float: left; padding: .3em .2em; }

/*Color de fondo de mis comentarios*/
dl#comment_list .bypostauthor {background: #fadd9f; }

/* Position the Search Box */
.custom #s {font-size:14px;  margin-top:1.5em; margin-left: 0.9em; background:#EEEEEE; color:#3b3b3b; padding:0.2em; width:272px;}
.custom widget thesis_widget_search {background:#fff;}

/*estilo de tags*/
.custom .latag   { text-decoration: none; }