/*
File:			custom.css
Description:	Custom styles for Thesis

BASIC 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 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!

More information about styling your Thesis installation using this file can be found
in the User's Guide:
	http://diythemes.com/thesis/rtfm/customizing-thesis-with-customcss/
*/
body.custom {
    background: #ffffff;
}

.custom #container {
    margin-top: 2em;
    margin-bottom: 2em;
    padding: 0.3em;
    background: #FFFFff;
    border: 0.4em solid #FFFFff;
}

.custom #page {
    background: #ffffff;
}

.custom #sidebar_1 {background:#F5F5F5 none repeat scroll 0 0; border: 9em solid #FFFFff;}
/* Position the Search Box */

width:200px;}



.custom widget thesis_widget_search {background:#fff;}

.custom dl#comment_list .bypostauthor { background: #EEEEEE none repeat scroll 0 0;} 

.custom dl#comment_list dt.bypostauthor, {
background:#eeeeee;
}
.custom dl#comment_list dd.bypostauthor {
background:#eeeeee;
}



.custom .format_text a {
text-decoration:none;
color:#2361A1;
}



.custom #content a:hover {
text-decoration: none;
/* default Thesis link color */
color: #FFFFFF;
} 

#content a:hover {background:#205994;}

/* Customize Previous and Next Links */
div.prev_next p {
color: #205994;
}

.prev_next a {
text-decoration: none; font-size:14px; font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
}

.prev_next a:hover {
text-decoration: none; color: #2361A1;
}

.custom #sidebars a:link { text-decoration: none;
/* default Thesis link color */
color: #205994;
} 

.custom #sidebars a:hover {
text-decoration: none;
/* default Thesis link color */
color: #ffffff;
} 
#sidebars a:hover {background:#205994;}



/* Header and tagline customizations (by BQ) */
.custom #header { 
font-size:1.6em;
}
.custom #header  a:hover 
{ font-size:1.0em; line-height: 0em; font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
color: #888888;
 }
.custom #header #tagline a:hover
{
   color: #111111;
   font-weight: normal;
   padding-left: 10px;
}



/* The following lines control the whitespace at the very top of the page (i.e., above the header image). If you set the padding-top property value to 0 (zero), your header image will be flush with the top of the page.
*/
.custom #page {
padding-top: 0em;
}



/* Footer customizations (by BQ) */

.custom #footer_area {background:#2361A1; padding:0em 0; border-top:0px solid #bbd;}
	.custom #footer_area .page {background:transparent;}
		.custom #footer {border-top:0;}

.custom #footer_1 {text-align:left; color:#FFFFFF;}
	.custom #footer_1 ul.sidebar_list li.widget {width:20%; margin-right:4%; float:left;}
		.custom #footer_1 ul.sidebar_list li.widget h3 {color:#FFFFFF;}
                .custom #footer_1 ul.sidebar_list li.widget h1 {color:#FFFFFF;}
		.custom #footer_1 ul.sidebar_list li.widget a {color:#FFFFFF; border-bottom:0;}
		.custom #footer_1 ul.sidebar_list li.widget a:hover {text-decoration: none; background:#FFFFFF; color:#2361A1}



/* i couldnt figure this out (by BQ) */
.custom #comment_list dd p.reply {background:#2361A1, color:#ffffff
}

/* get rid of stupid smiley face */
.custom img#wpstats{width:0px;height:0px;padding:0px;border:none;overflow:hidden}

/* get rid of category titles on pages */
.archive_info {display:none;}


/* Nav Menu font increase & Colors (by BQ) */
.custom .menu a
{   
   font-size:1.62em;
}

.custom .menu a:hover { color: #ffffff; background: #2361A1; text-decoration:none}
.custom .menu .current ul a:hover { color: #ffffff; background: #2361A1; text-decoration:none}
.custom .menu .current-cat ul a:hover { color: #ffffff; background: #2361A1; text-decoration:none}
.custom .menu .current-parent a:hover { color: #ffffff; background: #2361A1; text-decoration:none}
.custom .menu .current a { color: #205994; font-weight:bold; background: #ffffff; }
.custom .menu .current a:hover { color: #ffffff; font-weight:bold; background: #205994; }
.custom .menu .current-cat a { color: #205994; font-weight:bold; background: #FFFFFF; }
.custom .menu .current-cat a:hover { color: #ffffff; font-weight:bold; background: #205994; }
.custom .menu .current-parent > a, .menu .current-cat-parent > a { color: #205994; font-weight: bold; background: transparent; }

.custom #comment_reply a {color:#111111; padding:0em 0; border-top:0px solid #bbd;}



