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

body.custom { background-color: #1d1d1e; }

.custom #container { margin-top: 0em; margin-bottom: 80px; padding: 0em; width:762px }

.custom .format_text { font-size:1.25em; line-height:1.51em; }

p { color:#FFF }

h1, h2, h3, h4, h5, h6 { color:#00baf2; }

h2 a { color:#00baf2; }

/* 
h2 { font-weight: bold; }
*/

.custom a { color:#00baf2; outline: none; }

.custom a:hover { color:#FFF; }

.custom ul#tabs { border-width:0 0 0 0; }

.custom #header { border-bottom:0px; padding:0 0 0 0; }

.custom #footer { border-top:0px; }

.custom #footer { background:#1d1d1e url(http://www.vin-sol.com/wp-content/themes/thesis-15/custom/images/vinsol_bg_footer.gif) no-repeat scroll center top; border:medium none; }

.custom #footer p { margin-top:3.15em; font-size:1em  }

/* 
.custom #content_box { border:1px solid #666; }
*/

.custom #page { background:transparent url(http://www.vin-sol.com/wp-content/themes/thesis-15/custom/images/vinsol_bg_rules.gif) repeat-y scroll center top; border:medium none; padding:0; margin:0; width: 762px; }

/* 
.custom .post_box, .teasers_box, .full_width #content_box .page { margin:0 0 0 15pt; }
*/

.custom .post_box { padding-top:.6em; margin:0 15pt 0 15pt; }

.custom #comments { margin:0 15pt 0 15pt; }

.custom .prev_next { margin:0 15pt 0 15pt; padding-left:0; border-top:1px dotted #DDDDDD; text-transform:capitalize; letter-spacing:0; }

.custom .prev_next p { font-size:1.2em; }

.custom .post_nav a { font-size:1.07em; }

.custom #commentform { padding-left:0; }

.custom #respond_intro { margin-left:0; }

.custom #commentform input.form_submit { border-width:2px; font-size:1em; padding:3pt; }

.custom .headline_meta { font-size:1.15em; }

.custom .headline_meta span, .headline_meta abbr {  text-transform: inherit; letter-spacing: 0px; }

.custom .headline_area h1, .headline_area h2 { font-size:1.9em; line-height:1em; }

.custom .sidebar ul.sidebar_list { padding-left:0.6em; padding-right:2.45em; margin-bottom:.25em; }
.custom .sidebar .text_input { font-size:0.88em; width:95%; }

.custom ul.sidebar_list { padding-top:0.65em; }
.custom li.widget { margin-bottom:1.85em; }

.custom li.widget ul { color:white; list-style-image:none; list-style-position:outside; list-style-type:none; font-size:0.876em; line-height:1.25em; }
.custom li.widget ul li { margin-bottom: .25em; }

.custom #twitter_div { padding:0.625em; margin-bottom:0.65em; border:1px dashed #ddd; -moz-border-radius:5px; -webkit-border-radius:5px; border-radius:5px; }
.custom #twitter_div img { float:right; }
.custom #twitter_div ul li a { text-decoration: none; color: #666; }

.custom .to_comments .bracket { display: none; }