/*
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/
*/



.custom { background-image: url(../../../../img/bg.jpg); background-repeat: no-repeat; background-position: center top; background-color: #1B2A3F;}

.custom #page { width: 900px; background-image: url(../../../../img/page-tile.jpg); background-repeat: repeat-y; padding:0px; }

.custom #header { padding: 0; margin: 0; border:none; }

div.outsidebox { position:relative; width:910px; margin-left:auto; margin-right:auto; height:100px; text-align:center;}

#logo { position:absolute; left:0px; bottom:5px; }

img.sig { margin-top:-25px; }

.custom h1, .custom h2, .custom h3 { font-weight:bold; font-family: Tahoma, Geneva, sans-serif; }

.custom h1, .custom h2.entry-title, .custom p.headline_meta { text-align:center; }

.custom h1 { color:#637289; }

.custom h2.entry-title a { color:#637289; }

.custom h2.entry-title a:hover { color:#999; }

.custom h1, .custom h2.entry-title { border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #FFC59D; font-size: 18px; }

.custom p.headline_meta { font-size:12px; }

div.foot { color: #FFF; text-align: center; font-size: 13px; padding-top: 10px; }

.custom #footer { border:none; }

.custom #content { padding-top:10px; }

.custom #content_box { background-image:none; }

.custom #column_wrap { background-image:none; }

.custom div.post_box { border: 1px solid #CCC; padding-right: 2.2em; padding-left: 2.2em; margin-bottom:2.2em; margin-left:1.1em; margin-right:1.1em; }

.custom .sidebar h3 { font-family: Tahoma, Geneva, sans-serif; font-size: 16px; color: #58682B; font-variant: normal; font-weight: bold; letter-spacing: normal; line-height: normal; margin-bottom: 0.5em; }

.custom .sidebar h3 a { color: #1B2A3F;}

.custom p.to_comments span {font-size:1em;}

.custom .sidebar p { font-size:13px; margin-bottom: 1em; }

.custom #sidebar_1 ul.sidebar_list { padding-left:1.3em; padding-right:0.9em; }

.custom #sidebar_2 ul.sidebar_list { padding-left:0.9em; padding-right:1.3em; } 

.custom li.widget { font-size:13px; }

.custom li.widget ul li {margin-bottom:0;}

.custom li.widget_categories ul li {margin-top:.5em; margin-left:1.25em; list-style:square; color:#637289;}

.custom #email { margin-bottom:2.769em; margin-left:-10px; font-size: 13px; }

.custom #email h3 { font-size: 14px; color: #1B2A3F; }

.custom #email #env { margin-left:-10px; margin-bottom:-3px; margin-right:2px; }

.custom #email input { font-size:12px; }

.custom #email-input {width:11em;} 

.custom #email-subscribe { background-color:#666; color:#CCC;}

.custom #quote { color: #1B2A3F; border: 1px solid #CCC; padding: 8px; margin-top:20px;}

.custom #quote p {padding:0;}

.custom a { color: #58682B; }

.custom a:hover { color: #FF9348; }

