/*
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: #587891 url('images/BlueWinterBackground.gif'); 
}
	
.custom #container { 
margin-top: 2em; 
margin-bottom: 2em; 
padding: 0.3em; 
border: 0.4em solid #AC0800; 
}

.custom #page { 
background: #fff; 
}
	
.custom content { background: #F1F0EB; }
	
.custom a, .custom a:visited { 
color: #AC0800; 
text-decoration: none; 
}

.custom a:hover { 
color: #587891; 
text-decoration: none; 
}

.custom .headline_area h1, .headline_area h2 { 
font-size:2.6em;
line-height:1.333em;color: #AC0800; 
text-decoration: none; 
}

.custom h2 a:hover { 
color: #AC0800; 
}

.custom .post h3 {
font-family:Cambria,Palatino,Palatino Linotype,Hoefler Text,Times,Times New Roman,serif;
color: #AC0800;
font-size:1.6em;
font-style:italic;
font-weight:normal;
}

.custom .format_text h3 {
font-family:Cambria,Palatino,Palatino Linotype,Hoefler Text,Times,Times New Roman,serif;
color: #AC0800;
font-size:1.6em;
font-style:italic;
font-weight:normal;
line-height:1.222em;
margin:1.1em 0 0.611em;
}

.custom .sidebar h3 {
border-bottom:1px solid #AC0800;
border-top:1px solid #AC0800;
color: #F1F0EB;
font-size:1.4em;
font-variant:none;
font-weight:normal;
letter-spacing:2px;
line-height:1.385em;
margin-bottom:0.615em;
}

.custom format_text .drop_cap { 
color: #AC0800; 
float: left; 
}

.custom input.form_submit:hover { color: #587891; }

.custom h2 a:hover { color: #AC0800; }

.custom #header #logo a:hover { color: #AC0800; }

.custom li.thesis_google_cse_widget form input[type="submit"]:hover { color: #587891; }

.custom blockquote { color: #AC0800; margin: 0 0 1.57413em 0.78571em; padding-left: 0.78571em; border-left: 1px double #587891; }

.custom blockquote.left { font-weight: normal; font-color: #AC0800; margin: 0 0 1.57413em 0.78571em; padding: 0.78571em; border: 3px double #587891; border-width: 3px 0; float: left; }

.custom blockquote.right { font-weight: normal; font-color: #AC0800; margin: 0 0 1.57413em 0.78571em; padding: 0.78571em; border: 3px double #587891; border-width: 3px 0; float: right; }

.custom #custom_box { padding: .8em; background: #ffffff; border-bottom: 1px solid #ddd; }

.custom #custom_box h3 { font-weight: normal; font-size: 1.28571em; font-color: #AC0800; line-height: 1.22222em; }

.custom #sidebars a { color: #587891; }

.custom .entry-title a, .custom .entry-title, .custom #sidebars h3 { color: #AC0800 !important; }

.custom #comment_form p.commentluv { font-size: 1.4em; }
.custom #comment_form p.commentluv label { font-size: 1em; }

.custom .format_text .alignleft { margin: 0 1.571em 1.571em 0; float: left; clear: left; }
.custom .format_text .alignright { margin: 0 0 1.571em 1.571em; float: right; clear: right; }
.custom .format_text .aligncenter { display: block; margin: 0 auto 1.571em auto; float: none; clear: both; }
.custom .format_text .alignnone { display: block; margin: 0 auto 1.571em 0; clear: both; }
.custom .format_text .wp-caption { text-align: center; padding: 0.714em; line-height: 1.22222em; }
.custom .format_text .wp-caption p { font-size: 0.786em; margin-bottom: 0; }

/* === COMMENTS === */
#comments .comments_intro {font-family:Georgia,"Times New Roman",Times,serif;}
.custom dl#comment_list dt.comment {width:20em; float:left; clear:left; font-family:Georgia,"Times New Roman",Times,serif;}
    .custom .comment_num {float:left; padding-left:0;}
	.custom .avatar img {padding:0.25em; background:#eee; border:#ddd solid 0.1em; vertical-align:text-top;}
		.custom dl#comment_list dt.comment span {}
		.custom dl#comment_list dt.comment span.comment_author, .custom dl#comment_list dt.comment span.comment_time, .custom dl#comment_list dt.comment span.edit_comment {padding-left:0; display:block; border-bottom:1px solid #587891; width:9.167em; float:right;}
		.custom dl#comment_list dt.comment span.comment_author {font-size:1em; width:11em;}
		
.custom dl#comment_list dd.comment {padding-bottom:1em;}
.custom dl#comment_list dd.comment .format_text {padding-top:1em; padding-left:16em;}		
.custom .author_comment { background: #E7E9F6 !important; }

/* === MEDIA BOX === */

div.familycarnival_sidebar 
{
  padding: 5px 0 5px 10px;    
  border-bottom: 1px dashed #AC0800;
  font-size: 1.25em; 
}

/* === TWITTER === */

.custom #twitter_div 
{
padding:0.50em;
font-size: 11px;
border:1px dashed #AC0800; 
-moz-border-radius:5px; 
-webkit-border-radius:5px; 
border-radius:5px;
}
.custom #twitter_div img 
{
float:right;
}
