/*File:			custom.cssDescription:	Custom styles for ThesisBASIC 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 themWHY THIS WORKS:By using the "custom" class, you are creating more specific CSS declarations for HTMLelements. CSS styling is applied through rules of specificity, and because declarationsprepended 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 foundin the User's Guide:	http://diythemes.com/thesis/rtfm/customizing-thesis-with-customcss/*/body

#header {
background:#FFFFE8 url(images/banner2.png) center 50% no-repeat;
margin-top:1em;
height:117px; }

.custom blockquote { border:2px dashed #6699CC;color:#000000;background-color: #99ccff;padding:1em;}

.custom .menu a {padding:0.8em 1.8em;}

.custom .format_text .drop_cap { color: #3f2708; float: left; }

.custom dl#comment_list .bypostauthor {background:#cdecfa none repeat scroll 0 0; padding-top:1em;}

.custom .sidebar h3 {font-size:1.5em;line-height:1.385em;margin-bottom:0.692em;color:#339933;font-variant:small-caps;letter-spacing:2px;}

.custom li#recent-comments-2.widget h3 {   height: 71px;   background: url(images/comments.png) no-repeat;}
.custom li#twitter-tools.widget h3 {   height: 71px;   background: url(images/twitter.png) no-repeat;}
.custom li#flickr-sidebar.widget h3 {   height: 71px;   background: url(images/flickr.png) no-repeat;}
.custom li#archives-2.widget h3 {   height: 71px;   background: url(images/archives.png) no-repeat;}
.custom li#recent-posts-3.widget h3 {   height: 71px;   background: url(images/posts.png) no-repeat;}

.custom #sidebars {background: #f2f2dc; }

.custom .format_text .to_comments span {
color:#465B25; }
.custom .format_text .to_comments span.bracket {
color:#465B25; }
.format_text .to_comments a:hover {
color:#465B25;
text-decoration:underline; }
.custom .format_text .to_comments a {
color:#465B25;
text-decoration:none;
}

.custom #header {
margin-top:-2.5em;
}

.custom #footer {
background:#F2F2DC none repeat scroll 0 0;
}

.custom input, textarea {
background:#e1e1cc none repeat scroll 0 0;
border-color:#a5a596 #b9b9a8 #b9b9a8 #a5a596;
border-style:solid;
border-width:1px;
color:#465b25;
font-size:1em;
}

.custom #commentform textarea {
height:11.733em;
line-height:1.467em;
background:#e1e1cc none repeat scroll 0 0;}

.custom input.form_submit:hover {
color:#6f9513;
}

.custom .comment-reply-link { background: #EEE; padding: 0.4em; -moz-border-radius: 5px; -webkit-border-radius: 5px; }

.custom #comment_list { background: #CCCCBA; padding: .5em; }
      .custom #comment_list dd { margin-bottom: .5em; }
      .custom #comment_list .comment { background: #FFFFE8; }

.custom dl#comment_list dl dd.bypostauthor > .format_text {
border-width:0 0 0 0.143em;
padding-bottom:1em;
padding-left:1.5em;
}

.format_text h2, .format_text h3, .format_text h4, .format_text h5, .format_text h6 {
color:#3D8BCF;
}

