/*
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/
*/

/*---:[ content elements ]:---*/
body.custom { background: #164164 url(images/bg1.jpg) repeat-x; font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; }
/* body.custom { background: #0152a1 url(images/bg2.jpg) repeat-x; font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; } */

/*---:[ nav colors ]:---*/
.custom .menu, .custom .menu a, .custom .menu li ul { border-color: #DDDDDD; }

/*---:[ #header styles ]:---*/
.custom #header #logo { font-size: 2.9em; line-height: 1.167em; }
.custom #header #tagline { font-size: 1.2em; line-height: 1.429em; }

/*---:[ headlines ]:---*/
.custom .headline_area h1, .custom .headline_area h2 { font-size: 2.1em; line-height: 1.364em; }
.custom .sidebar h3 { font-size: 1.1em; font-weight: bold; line-height: 1.385em; margin-bottom: 0.6em; }
.custom #archive_info h1 { font-size: 2.1em; line-height: 1em; }

/*---:[ bylines ]:---*/
.custom .headline_meta { font-size: 1.1em; line-height: 1.8em; }

/*---:[ sidebar styles ]:---*/
.custom li.widget { font-size: 1.2em; line-height: 1.385em; margin-bottom: 2.769em; }

/*---:[ post content area ]:---*/
.custom .format_text { font-size: 1.6em; line-height: 1.3em; }

/*---:[ after-post elements ]:---*/
.custom .format_text .to_comments { font-size: 0.7em; line-height: 1.833em; margin-bottom: 1.833em; }
.custom .format_text .to_comments span { font-size: 1.833em; }
.custom .format_text .post_tags { font-size: 0.7em; line-height: 1.833em; margin-bottom: 1.833em; }

/*---:[ previous and next links on index, archive, and search pages ]:---*/
.custom .prev_next p { font-size: 1.1em; line-height: 2.2em; }
.custom .post_nav a { font-size: 1em; line-height: 1.571em; }

/*---:[ archive information block ]:---*/
.custom #archive_info p { font-size: 1.1em; line-height: 1em; margin-bottom: 1.1em; }

/*---:[ teaser styles ]:---*/
.custom .teaser .teaser_author, .custom .teaser .teaser_category, .custom .teaser .teaser_date, .custom .teaser .teaser_comments, .custom .teaser .edit_post { font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; }

/*---:[ comment area ]:---*/
.custom dl#trackback_list dt a { font-size: 1.6em; line-height: 1.571em; }

/*---:[ comment form styles ]:---*/
.custom #respond_intro p { font-size: 2.1em; line-height: 1.294em; }

/*---:[ form inputs ]:---*/
.custom input, .custom textarea { font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; }
.custom .sidebar .text_input, .custom .sidebar .form_submit { padding: 0.308em; font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; }
.custom .sidebar input[type="text"], .custom .sidebar input[type="submit"] { padding: 0.308em; font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; }

/*---:[ footer styles ]:---*/
.custom #footer p { font-size: 1.1em; line-height: 1.667em; }
