/*
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/146015.png');
}

.custom #container {
	margin-top: 2em;
	margin-bottom: 2em;
	padding: 0.3em;
	border: 0.4em solid #447678;
	background-color: #20536B;
}

.custom #page {
	background: #fff;
}
*/
/* full page template */

.custom #content_box.full_width { background: none; }
.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;
}

.custom h1.entry-title, .custom h2 a, .custom h2 a:visited, .custom h3.result_title a, .custom h3.result_title a:visited, .custom div#page div.headline_area h1, .custom div#archive_info h1 { 
	color: #D17E32;
}

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

/*---:[ 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; }

.custom .footleft { width: 45%; float: left; text-align: left;}
.custom .footright { width: 45%, float: right; }

.custom .prev_next { text-align: center; }
.custom h1.archive-year { text-align: center; font-weight: bold;}
.custom #header { border-style: none; }

ul#tabs { margin-top: 1em;}

ul#langmenu { list-style: none; border: 1px solid #ddd; border-width: 0 0 1px 1px; }
ul#langmenu li { margin-bottom: -0.1em; background: #efefef; border: 1px solid #ddd; border-left: 0; float: left; }
ul#langmenu li.current_language { padding-bottom: 0.1em; background: #fff; border-bottom: 0; }
ul#langmenu li a, ul#langmenu li a:visited { display: block; line-height: 1em; color: #111; text-decoration: none; text-transform: uppercase; letter-spacing: 2px; font-size: 1.1em; padding: 0.545em 0.818em; }
ul#langmenu li a:hover { color: #111; text-decoration: underline; }
ul#langmenu li.current_language a, ul#langmenu li.current_language a:visited { cursor: default; }
ul#langmenu li.current_language a:hover { text-decoration: none; }
ul#langmenu li.rss { padding-right: 0; background: none; border: none; float: right; }
ul#langmenu li.rss a { padding-right: 16px; background: url('images/icon-rss.gif') 100% 50% no-repeat; }


/* 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: 61px; width: 200px; background: url('custom_images/ciw_72.jpg') 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;}
.custom #header #search-form { width: 30%; float: right; text-align: right; }
.custom #header #search-form input { width: 100%; }

.custom .sidebar .widget_libro_web .format_text { font-size: 1em; };
.custom input { width: 95%; }
.custom .search_results .post_box { padding-top: 0em; }
p.breadcrumb { text-align: left; }

/* headers */


