/*
File:			custom.css
Description:	Custom styles for the Thesis Theme that you define

Use:

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

body.custom {
    background: #8db6b6 url('custom_images/fons_lila_1.gif');
}

.custom #container {
	margin-top: 2em;
	margin-bottom: 2em;
	xpadding: 0.3em;
	border: 0.2em solid #330033;
	xbackground-color: #20536B;
}

.custom #page {
	background: #fff;
}

/* full page template */

.custom #content_box.full_width { background: none; }
.custom  #content { width: 73.2em; }
.custom .full_width #content { width: 96em; }

.custom .sidebar h3 {
 border-top: 1px solid #DDDDDD;
 border-bottom: 1px dotted #DDDDDD;
 color: #111111;
 font-size: 0.846em;
 font-variant: normal;
 font-weight: bold;
 letter-spacing: 2px;
 line-height: 1.455em;
 margin-bottom: 1em;
 padding: 0.636em 0.455em 0.545em;
 text-transform: uppercase;
}

/*---:[ showcase page styles from Thesis Showcase]:---*/
.custom .format_text ul.showcase { font-size: 0.714em; line-height: 1em; list-style: none; margin: 0 0 0 -1em; }
.custom .format_text ul.showcase li { margin: 0 0 1em 1em; float: left; }
div.gallery a img,.widget_flickrRSS a img, .custom .format_text ul.showcase li a img { padding: 0.4em; background: #f4f0db; }
div.gallery a:hover img, .widget_flickrRSS a:hover img, .custom .format_text ul.showcase li a:hover img { background: #f6e06e; }

/* header image */

/* This line sets up our clickable background image based on the site title's link */
/* DIY: Adjust the height & width attributes to reflect the actual size of your image */
/* DIY: Change the filename of your image to reflect the actual header's file name */
.custom #header #logo a { display: block; height: 200px; width: 936px; background: url('custom_images/genealogias_banner_12.png') no-repeat; outline: none; }
/* This line gets rid of the site title & tagline by casting them out to far left field */
.custom #header #logo, .custom #header #tagline { text-indent: -999em; }
/* This line collapses the vertical space of the tagline so that there isn't unnecessary white space after the header image */
/* This is a bit of a kludge, but it seems to work. */
.custom #header #tagline { height: 0; }
/* This line removes the padding from the header so that the background image sits close to the nav menu, the bottom border of the header, and the sides of the content */
.custom #header { padding: 0; border-style: none; }
.custom ul#tabs { margin-top: 0.5em; }

.custom .format_text p.note { background: #E3B5B7; }

.custom .format_text blockquote { font-style: italic; border-style: none; }
.custom .format_text blockquote cite { font-style: normal; text-align: right; }

.custom #content_box #content { float: right; }
.custom #content_box #sidebars { float: left; }
.custom #content_box { background: transparent url(../lib/css/images/dot-ddd.gif) repeat-y scroll 20.4em 0;
	margin-top: 1.2em;
}

.custom td h3 { margin-top: 0.5em; }

.custom #container { width: 97.5em; }
.custom #content_box.full_width #content { float: none; }


.custom ul.sidebar_list  { padding-left: 0 !important; padding-right: 0 !important; }

/* nav menu */

.custom ul#tabs li { background-color: #4e385c; }
.custom ul#tabs li.current_page_item { background-color: #ffffff; }
.custom ul#tabs li a, .custom ul#tabs li a:visited, .custom ul#tabs li a:hover, .custom ul#tabs li a:active { color: white; }
.custom ul#tabs li.current_page_item a, .custom ul#tabs li.current_page_item a:visited, .custom ul#tabs li.current_page_item a:hover, .custom ul#tabs li.current_page_item a:active { color: black; }
/*
.custom ul#tabs li.page_item a:hover { text-decoration: none; } 
*/

.custom blockquote {
	border-style: none;
}

.custom blockquote p cite { text-align: center; }
.custom div.headline_area h1, .custom div.headline_area h2 { text-align: center;font-size: 2.6em; }

.custom div.full_width div.format_text { margin: auto; width: 90%; }

.custom div.sidebar ul.sidebar_list li.widget ul li {
	margin-left: 1em;
}

.custom div.sidebar ul.sidebar_list li.widget ul li li {
	margin-left: 0.3em;
	font-size: 0.8em;
}


.custom div.sidebar ul.sidebar_list li.widget a,
.custom div.sidebar ul.sidebar_list li.widget a:visited {
	color: #333333;
}
.custom div.sidebar ul.sidebar_list li.widget a:hover
{
	color: #999999;
}

.custom div.headline_area , .custom div.headline_area {
	display: none;
}

.custom div.post_box {
	margin: 0 4em;
	padding-top: 0.5em;
}

.custom body {
	color: #333333;
}

.custom a.subir { color: #999999 !important; }
