/*
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 { background: #fff; color: #666666; font-size: 62.5%; }

/*---:[ core layout elements ]:---*/
#header { border-bottom: 0px }
	#column_wrap { float: left; }
	.post_box, .teasers_box { border-top: 1px dotted #0066cc; clear: both; }
	.teasers_box .post_box { margin: 0; border-top: none; clear: none; }
		.teaser { float: left; }
		.teaser_right { float: right; }
	.top { border: none !important; }
		#sidebars { border-style: solid; border-color: #0066cc; }
			#sidebar_1 { border-style: dotted; border-color: #0066cc; }
#footer { color: #888; border-top: 3px double #0066cc; text-align: right; clear: both; }

/*---:[Header Styling]:---*/
#header { padding: 0; }

/*---:[ multimedia box ]:---*/
#multimedia_box { width: 100%; }
	#image_box { background: #e4bc5a; border-bottom: 0px solid #0066cc; }
		#image_box img { display: block; background: #fff; border-style: solid; border-color: #666666; }
	/*---:[ video box styles ]:---*/
	#video_box { background: #e4bc5a; }
	/*---:[ custom box styles ]:---*/
	#custom_box { background: #e4bc5a; border-bottom: 0px solid #0066cc; }

/*---:[ feature box ]:---*/
#feature_box { background: #fff; border-bottom: 0px solid #0066cc; }

/*---:[ form inputs ]:---*/
input, textarea { font-size: 1em; color: #444; background: #fffef; border: 1px solid #0066cc; border-right-color: #0066cc; border-bottom-color: #0066cc; }
input:focus, textarea:focus { background: #fff; border-color: #0066cc; border-right-color: #0066cc; border-bottom-color: #0066cc; }
	.sidebar .text_input { width: 95%; }
	input.form_submit { font-weight: bold; color: #111; background: url('images/submit-bg.gif'); border: 3px double #0066cc; border-top-color: #0066cc; border-left-color: #0066cc; cursor: pointer; width: auto !important; overflow: visible; }
	#commentform input.form_submit { border-width: 3px; }
	input.form_submit:hover { color: #090; }

.custom a, .custom a:visited { color: #1042F7; }	
.custom a:hover { color: #2361a1; }
.wp-caption { border-style: solid; border-color: #060666; background-color: #ffffef; }
img.frame { background: #ffffef; border-color: #060666; }
#header #tagline { color: #0066cc; }

/*---:[navbar]:---*/
ul#tabs li a { font-size: 1em; padding: 0.6em 0.9em; }

#tabs li { background: #e4bc5a; }
#tabs a { color: #1042f7; }
#tabs a:hover { color: #94adff; }
.headline_area h1, .headline_area h2 { color: #060666; }
.format_text h2, .format_text h3 { color: #060666; }
.format_text h4 { color: #1042F7; }
.format_text h5 { color: #1042F7; }
.format_text h6 { color: #1042F7; }
.teaser h2 { }
.sidebar h3 { color: #1042F7; }
#archive_info h1 { color: #1042F7; }	

/*---:[Share this post]:---*/

.share-buttons ul {
        display: inline;
        list-style-type: none;
        list-style-image:none;
        margin: 0 0 10px 0; 
        }

.share-buttons li {
        display: inline;
        img-align: left;
        padding: 0 5px; 
        border: none;
        }

.share-buttons {
       display: inline;
       border: medium none;
       opacity: 1;
       }
.share-buttons li:hover {
       opacity: 0.7;
       }
       
.share-buttons li img {
      border: 0px;
      }
       
