/*
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/
*/

/* --==[ BEGIN Form Styles ]==-- */
.custom #wpcf {margin-left: 4em;}
.custom #wpcf label {clear: both;display: block;float: left;width: 160px;}
.custom #wpcf input {float: left;width: 200px;padding: 1px;margin: 2px 5px 2px 0;}
.custom #wpcf input[type=checkbox] {width: auto;}
.custom #wpcf textarea {width: 360px;height: 100px;padding: 1px;margin: 0 5px 10px 0;}
.custom #wpcf #contactsubmit {margin-left: 125px;width: 80px;}
.custom .comments_closed p {display: none;}
/* --==[ End Form Styles ]==-- */

/* --==[ BEGIN Comments Styles ]==-- */
.custom .format_text .to_comments { display: none; }
/* --==[ End Comments Styles ]==-- */

.custom .sidebar h3 { font-variant: small-caps; letter-spacing: 0em; color: #b00000; font-weight:bold; }

/* --==[ BEGIN Widget Styles Boxes ]==-- */
.custom .alert_one {
background:#F7F3E2 none repeat scroll 0 0; border:1px solid #DDCE93; padding:0.571em 0.786em;}
.custom li.widget { background: #EAF3FA; border:1px solid #BBD8E7;}
.custom li.widget ul { list-style: circle; margin-left: 15px;}
.custom .widget { background: #EAF3FA; border:0px solid #BBD8E7; padding: 0.300em;}
/* --==[ End Widget Styles Boxes ]==-- */

/* --==[ BEGIN Sitebar Styles Boxes ]==-- */
.custom .sidebar ul.sidebar_list { padding-right: 0em; padding-left: 1em; }
/* --==[ End Sitebar Styles Boxes ]==-- */

/* --==[ BEGIN Header Styles Boxes ]==-- */
.custom #header { padding-top: 0em; padding-bottom: 0em; }
.custom #header, #footer { padding-right: 0em; padding-left: 0em; }
/* --==[ BEGIN Header Styles Boxes ]==-- */