/*
File:			custom.css
Description:	Custom styles for the evenlake Thesis theme

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

/*--HEADER--*/
.custom #header { background: url('images/evenlake_lockup.jpg') no-repeat top left;  padding-top:150px;}
.custom #header #logo {no-repeat top right; font-weight: bold; font-size: 3.6em; color:white; line-height: 1em; margin-bottom: 0.167em; text-align:right; border-bottom:none;}
.custom #header #logo a, #header #logo a:visited { color:white; text-decoration: none; border-bottom: none; }
.custom #header #logo a:hover { color:white; }
.custom #header #tagline { font-weight: normal; font-size: 3em; line-height: 1.5em; color: #261D6C; text-align: right; padding-top:60px;}

/*--NAV MENU STYLES--*/
ul#tabs { list-style: none; border-left: none; border-width: 0px 0px 0px 0px; }

	ul#tabs li { background: #FFFFFF; border-left: thin dotted; border-right: none;border-top: none; border-bottom: none; float: left; }

	ul#tabs li.current_page_item, ul#tabs li.current-cat { background: #fff; border-bottom: 0; font-size: 11px; font-weight: bold; }

/*--TEXT--*/
body.custom { background: #ffffff; color: #111; font: 62.5% "Helvetica Neue", "Franklin Gothic", Arial, sans serif; }

.custom a { color: #333399; text-decoration: none; border-bottom: 1px dotted #333399;}
.custom a:visited { color: #6666CC; text-decoration: none; border-bottom: 1px dotted #6666CC;}
.custom a:hover { color: #FFFFFF; background-color: #6666CC; text-decoration: none; }

.custom input, textarea { font-size: 1em; font-family: "Helvetica Neue", "Franklin Gothic", Arial, sans serif; color: #444; background: #eee; border: 1px solid #aaa; border-right-color: #ddd; border-bottom-color: #ddd; }

.custom ul#tabs li a, ul#tabs li a:visited { color: #111; text-decoration: none; border-bottom: none;}
.custom ul#tabs li a:hover { color: #111; text-decoration: none; border-bottom: none; background-color: #FFFFFF; font-size: 12px; font-weight: bold;}
.custom .bracket { display: none; }

.custom .format_text .drop_cap1 {
  
  float: left;
  padding-right: -0.25px;
  line-height: 1em;
  margin-right: 5px;
  font-family: "Lucida Grande", "Lucida Sans Unicode", "Helvetica Neue", "Franklin Gothic", Arial, sans serif;
  font-weight: 100;
  font-size: 3em;
  color: #555555;
}

.custom .format_text .drop_cap {
  
  padding-right: -0.25px;
  float: left;
  line-height: 1em;
  margin-right: -3px;
  font-family: "Lucida Grande", "Lucida Sans Unicode", "Helvetica Neue", "Franklin Gothic", Arial, sans serif;
  font-weight: 100;
  font-size: 3em;
  color: #555555;
}

.custom .format_text .section_start {

  text-transform: uppercase;
  font-weight: 900;
  font-size: 0.85em;
  
}

/*---:[ Hide closed comment notice on single post pages]:---*/

.comments_closed p { display: none; }


/*--- Change blockquote style---*/
blockquote {color: #330000; font-style: oblique; }

/*--BODY CONTAINER--*/
.custom #page { padding: 2em 1.9em; background: #fff; border: none; border-top: 0; }

/*--HEADLINES--*/
.custom h1, h1 a, h1 a:link { color: #261D6C; border-bottom: none; }
.custom h1 a:hover { color: #FFFFFF; background-color: #6666CC; border-bottom: none; }
.custom h1 a:visited {color: #261D6C; border-bottom: none; }
.custom h2, h2 a, h2 a:link { color: #261D6C; border-bottom: none;}
.custom h2 a:hover { color: white; background-color: #6666CC; border-bottom: none;}
.custom h2 a:visited {color: #261D6C; border-bottom: none; }
.custom h3, h3 a, h3 a:link { color: #261D6C; border-bottom: none; }
.custom h3 a:hover { color: #FFFFFF; background-color: #6666CC; border-bottom: none; }
.custom h3 a:visited {color: #261D6C; border-bottom: none; }
.custom h4, h4 a, h4 a:link { color: #261D6C; border-bottom: none; }
.custom h4 a:hover { color: #FFFFFF; background-color: #6666CC; border-bottom: none; }
.custom h4 a:visited {color: #261D6C; border-bottom: none; }

