/*
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/
*/

/* HEADER ZONE */

/* Structure */
.custom #header_area { background: transparent; }
.custom #header_area .page { background: transparent; padding-top: 0; }
.custom #header { background: none repeat scroll 0 0 transparent; border-bottom: 0 none; border-top: 0 none; height: 10em; padding: 1.5em 0 2.5em; }

/* Styles */
.custom #taggy { float: right; padding-right: 0; padding-top: 0; }
.custom .logo { float: left; padding-left: 1em; padding-top: 0.3em 0.5em; }
.custom .menu { background:none repeat scroll 0 0 #transparent; border:0 none; float: right; width: auto; }

/* NAVBAR ZONE */

/* Structure */
.custom #nav_area { background: transparent;}
.custom #nav_area .page { background: transparent; }
.custom .menu { background: none repeat scroll 0 0 transparent; border-bottom: 0; border-left: 0 none; padding-bottom: 0.4em; }
.custom .menu { float: right; margin-right: -3.5em; width: auto; }

/* Styles */

.custom .menu a { border-bottom: 0 none;  font-size: 1.3em; font-weight: bold; letter-spacing: 0; margin: 0.2em -0.05em 0.05em 0.25em; width: auto; text-transform: none; border-top: 0 none; }
.custom .menu, .custom .menu a, .custom .menu li ul { border-right: 0 none; }
.custom .menu a { font-size: 1.6em; margin-left: 0; margin-right: 2.5em; margin-top: 1.15em; padding: 0.5em 0 0.2em; text-align: left; }

/* Styles for sub-menus */

.custom .submenu a { background: none repeat scroll 0 0 #ffffff; color: #1bb0e6; font-size: 1.3em; letter-spacing: 0; line-height: 1.273em; padding: 0.5em; text-transform: none; border: 0.1em solid #e9e9e9; margin: 0; }
.custom .menu .current ul.submenu a { background: none repeat scroll 0 0 #FFFFFF; border: 0.1em solid #e9e9e9; color: #1BB0E6; }
.custom .submenu a:hover { background: none repeat scroll 0 0 #ffffff; color: #992996; font-size: 1.3em; letter-spacing: 0; line-height: 1.273em; padding: 0.5em; text-transform: none; margin: 0; }
.custom .menu .current ul.submenu a:hover { background: none repeat scroll 0 0 #ffffff; color: #992996; }

/* CONTENT */

.custom #content_area { background: none repeat scroll 0 0 transparent; }
.custom #content_area .page { background: #FFFFFF; }
.custom #content_box { background: #FFFFFF}

.custom .full_width .page { margin: 0 auto; padding-left: 1em; padding-right: 1em; }
.custom .post_box { padding: 3em 2.5em 1.2em 1.6em; }

/* LINKS */

.custom .format_text .to_comments a { color:#1bb1e6; text-decoration:none; }
.custom .format_text .to_comments a:hover, .custom .headline_area h1 a:hover, .custom .headline_area h2 a:hover, .custom .teaser h2 a:hover, .custom .widget h3 a:hover { color:#92278F; text-decoration:none; }
.custom .headline_area h1 a, .custom .headline_area h2 a, .custom .teaser h2 a, .custom .widget h3 a { color:#1bb1e6; text-decoration:none; }
.custom .teaser a.teaser_link:hover { color: #92278F; text-decoration: none; }

/* POSTS */

.custom h1, .custom h2 { font-family: Arial,Helvetica,sans-serif; font-weight: bold; }
.custom .headline_meta a:link, .custom .teaser_author a:link, .custom .teaser .edit_post a:link, .custom .headline_meta a:visited, .custom .teaser_author a:visited, .custom .teaser .edit_post a:visited { color: #1bb1e6; letter-spacing: 0; text-transform: none; }
.custom .headline_meta a:hover, .custom .teaser_author a:hover, .custom .teaser .edit_post a:hover { color: #92278F;  letter-spacing: 0; text-transform: none; }
.custom .headline_meta a { color: #1bb1e6; border-bottom: 0 none; }
.custom h2, .custom h3 { color: #000000; }

/* Remove Italics */

.custom .headline_meta { font-style: normal; }

/* Remove Uppercase */

.custom .headline_meta span, .custom .headline_meta abbr { color: #111111; font-size: 1.1em; font-weight: normal; letter-spacing: 0; text-transform: none; }
.custom .headline_meta, .custom .headline_meta a, .custom .teaser_author, .custom .teaser_date, .custom .teaser .edit_post, .custom .teaser_author a, .custom .teaser_comments, .custom .teaser_category, .custom .teaser .edit_post a { color: #111111; letter-spacing: 0; text-transform: none; }

/* Archives */

.custom #archive_info p { display: none; }
.custom #feature_box, .custom #comment_nav_2 { border-width: 0 0 0.1em; }
.custom #archive_info { border-width: 0; }
.custom #archive_info, .custom .prev_next { border-color: #E9E9E9; }
.custom .prev_next { font-size: 1.1em; border-width: 0.1em 0 0; letter-spacing: 0; text-transform: none; color: #111111; }
.custom .prev_next a:link { color: #1bb1e6; text-decoration: none; }
.custom .prev_next a:hover, .custom .prev_next a:visited { color: #92278F; text-decoration: none; }
.custom .post_box, .custom .teasers_box { border-color: #E9E9E9; border-style: solid; clear: both; margin-top: 0; }
.custom .post_box top { border: none; }
.custom .teaser .teaser_date { font-size: 1.1em; line-height: 1.6em; }
.custom #archive_info { padding-bottom: 1em; padding-top: 2.5em; }
.custom #archive_info h1 { font-size: 2em; font-weight: bold; line-height: 1em; text-transform: none; }
.custom #archive_intro { border-color: #E9E9E9; border-style: none; }

/* COMMENTS */

.custom .format_text .to_comments { color: #111111; }
.custom .format_text .to_comments span.bracket { display: none; }
.custom .format_text .to_comments span { font-size: 1.2em; color: #006699; }
.custom #respond_intro p { font-size: 1.2em; color: #111111; }
.custom #commentform { border-top: 1px dotted #CCFF00; }

.custom .comments_intro span.bracket { color: #CCCCCC; display: none; }
.custom .comments_intro span { font-size: 1em; }
.custom .comments_intro p { color: #111111; }

/* Teasers */

.custom abbr, acronym { letter-spacing: 0; text-transform: none; }

/* TAGS */

.custom .post_tags { color: #666666; }

/* SIDEBARS */

.custom #sidebars li.widget ul { list-style-position: outside; list-style-type: disc; margin-bottom: 0.5em; }
.custom #sidebars li.widget li { margin:0 0.5em 0 17px; padding:0; }
.custom li.widget ul li { margin-bottom: 0; }
.custom li.widget p { margin-bottom: 0.5em; }
.custom li.widget p a { color: #1bb1e6; text-decoration:none; }
.custom li.widget p a:hover { color: #92278F; text-decoration:none; }
.custom li.widget { margin-bottom: 1.5em; }
.custom .widget h3 { color: #ffffff; font-variant: normal; letter-spacing: 0; margin-bottom: 0.7em; font-weight: bold; }
.custom li.widget { background-image: url("images/sidebar_bg.gif"); background-position: 0 -0.8em; background-repeat: repeat-x; border: 1px solid #E9E9E9;  padding: 0.3em 0.5em 0.5em 0.5em; text-align: left; width: 14.5em; margin-left: 2em; }
.custom .sidebar { color: #111111; margin-top: 1.1em }
.custom .sidebar ul.sidebar_list { padding-left: 3em; padding-right: 0; }
.custom #sidebars a:link { color: #1bb1e6; text-decoration:none; }
.custom #sidebars a:visited { color: #92278F; text-decoration:none; }
.custom #sidebars a:hover { color: #92278F; text-decoration:none; }

.custom li#add_to_any_subscribe_widget-3.widget { background-image: none; background-repeat: no-repeat; border: 1px solid #E9E9E9; padding: 0.5em 1em 0.7em 0; text-align: left;}
.custom li#add_to_any_subscribe_widget-3.widget h3 { display: none; }

.custom input, .custom textarea { background: none repeat scroll 0 0 #FFFFFF; border-color: #AAAAAA #DDDDDD #DDDDDD #AAAAAA; border-style: solid; border-width: 1px; color: #444444; font-size: 1em; }

/* FOOTER ZONE */

.custom #footer_area { background: none repeat scroll 0 0 transparent; border-top: 0.1em solid #E9E9E9; }
.custom #footer_area .page { padding-bottom: 0.4em; }
.custom #footer { background: none repeat scroll 0 0 transparent; margin-top: 0; border: 0 none; }

/* Styles */

.custom #footer { font-family: Arial,Helvetica,sans-serif; color:#666666; text-align:center; padding-left:0; padding-right:0; padding-top:1.3em; }
.custom #footer p { font-size: 1.1em; line-height: 1.3em; }
.custom #footer p span { font-size: 1.05em; font-weight: bold; }
.custom #footer p span.head { color: #666666; font-size: 1.4em; font-weight: bold; letter-spacing: 0; text-transform: uppercase; }
.custom #footer a { color:#1bb1e6; text-decoration:none; }
.custom #footer a { border-bottom:0 none; }
.custom #footer a:hover, .custom #footer p span a:hover, .custom #footer p span.head a:hover { color:#92278F; text-decoration:none; }
.custom #footer ul { clear:both; margin:0; padding:0; }
.custom #footer li { font-size: 1em; font-weight: normal; display: inline; list-style: none outside none; margin: 0; padding: 0; text-align: center; }
.custom #footer p span a, .custom #footer p span.head a { color:#1bb1e6; text-decoration:none; }
.custom #footer p span a:hover, .custom #footer p span.head a:hover { color:#92278F; text-decoration:none; }


/* BEHIND EVERYTHING */

/* Structure */
body.custom { background: #ffffff url("images/body_background.jpg") no-repeat center top; color: #666666; }