/*
File:			custom.css
Description:	Custom styles for Thesis

BASIC USAGE:

If you have enabled the custom stylesheet in the Thesis options panel, the &lt;body&gt; 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/
*/

/*---:[ core layout elements ]:---*/
#container { width: 99.3em; margin: 2em auto; }

/*---:[ nav styles ]:---*/
.custom .menu ul, .custom .menu ul li { width: 12em; }
.custom .menu ul ul, .custom .menu :hover ul :hover ul { left: 15em; }
.custom .menu li:hover ul, .custom .menu a:hover ul { left: 0.0em; }
.custom .menu a { text-transform: capitalize; font-variant: small-caps; font-size: 1.14em; line-height: 1.15em; padding: 0.57em 0.55em 0.37em 0.55em; margin: 0 0.125em 0 0.125em; border-width: 0.09em; border-left-width: 0.09em; }
.custom .menu a { letter-spacing: 1.5px; }
.custom .menu ul a { width: 12em; border-left-width: 0.083em; }
.custom .menu { border-width: 0 0 0 0; }

#header #logo { font-size: 4.6em; line-height: 1.1em; }
#header #tagline { font-size: 1.8em; line-height: 1.4em; }
.custom .headline_area h1 { font-size: 3.0em; line-height: 1.308em; font-family: Verdana, sans-serif; }
.custom .headline_area h2 { font-size: 2.5em; line-height: 1.308em; font-family: Verdana, sans-serif; }
.custom .format_text h2, .format_text h3 { font-family: georgia, times, "times new roman", sans-serif; }
.custom .format_text h2 { color: #714d00; font-style: normal; font-size: 1.7em; line-height: 1.3em; margin: 1em 0 0.9em 0; }
.custom .format_text h3 { color: #714d00; font-style: normal; font-size: 1.4em; line-height: 1.25em; margin: 1em 0 0.9em 0; }
.custom .format_text h4, .format_text h5, .format_text h6 { font-family: Verdana, sans-serif; }
.format_text h4 { font-size: 1em; }
.format_text h5 { font-size: 0.786em; }
.format_text h6 { font-size: 0.9em; line-height: 1.4em; text-transform: none; font-variant: small-caps; }
.custom .format_text { color: #111111; font-size: 1.35em; line-height: 1.5em; }
.custom blockquote { color: #222222; background-color: #f5f3e9; border: solid 1px #714d00; padding: 1.5em 2em 0 2em; margin: 2em; }

/*---:[ form inputs ]:---*/
input, textarea { font-size: 1em; color: #444; background: #eee; border: 1px solid #aaa; border-right-color: #ddd; border-bottom-color: #ddd; }
input:focus, textarea:focus { background: #fff; border-color: #777; border-right-color: #ccc; border-bottom-color: #ccc; }
	.sidebar .text_input { width: 95%; }
	input.form_submit { font-weight: bold; color: #111; background: url('lib/images/submit-bg.gif'); border: 3px double #999; border-top-color: #ccc; border-left-color: #ccc; cursor: pointer; width: auto !important; overflow: visible; }
	#commentform input.form_submit { border-width: 3px; }
	input.form_submit:hover { color: #090; }

/*---:[ sidebar styles ]:---*/
.sidebar { }
#column_wrap .sidebar ul.sidebar_list { padding-top: 2.0em; }
li.widget { color: #111111; font-size: 1.25em; line-height: 1.5em; margin-bottom: 2.75em; }
.custom .sidebar h3 { color: #555555; font-size: 1.1em; letter-spacing: 1px; line-height: 1.4em; font-family: Verdana, sans-serif; }
.custom li.page_category { color: #111111; font-size: 1.25em; line-height: 1.5em; }
.custom h3.widgettitle { color: #555555; font-size: 1.25em; letter-spacing: 1px; line-height: 1.4em; margin-top: 2.75em; font-family: Verdana, sans-serif; }

/*---:[ widget box styles ]:---*/
li.widget .widget_box { padding: 0.692em; border-width: 0.077em; background: url('../lib/images/sidebar-bg.gif'); }

/*---:[ archive information block ]:---*/
#archive_info h1 { color: #999999; font-size: 1.35em; line-height: 1em; }
#archive_info p { font-size: 1em; line-height: 1em; margin-bottom: 1.1em; }

/*---:[ footer styles ]:---*/
#footer { padding-top: 1.1em; padding-bottom: 1.1em; }
#footer { border-width: 0.3em 0 0 0; }
#footer { border-style: double; border-color: #ddd; text-align: right; clear: both; }
#footer { color: #555555; text-decoration: none; }
#footer p { font-size: 1.3em; line-height: 1.6em; }
#footer a { border-bottom: none; }
#footer a { color: #3333cc; text-decoration: underline; }
#footer a:hover { color: #3333cc; text-decoration: none; }


