/*
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: #394f5c url('images/1500_index.jpg') ; background-position:left top; background-repeat:no-repeat; background-attachment:fixed; color:#fff}
.custom #page {background:url('images/opacity.png') ; background-position:left top; background-repeat:repeat;}

/*---:[ global elements ]:---*/
a{ color: #0095df; text-decoration: none; }
a:hover { text-decoration: none; color:#ffff00; }
a.post_image_link { outline: none; }
a img { border: none; }
blockquote { border-left: 1px solid #ddd; color: #fff; }
abbr, acronym { line-height: 1em; text-transform: uppercase; letter-spacing: 1px; border-bottom: none; cursor: help; }
code { line-height: 1em; background: #eee; }
pre { background: #eee; border: 1px solid #ddd; overflow: auto; clear: both; }
p.center { text-align: center !important; }
p.bottom { margin: 0 !important; }
.remove_bottom_margin { margin-bottom: 0 !important; }
.custom #container {
    margin-top: 5em;
    margin-bottom: 2em;
    padding: 0.3em; 
}



/*---:[ headlines and bylines ]:---*/
.custom h1, h2, h3, h6 { font-weight: normal; color:0095df }
h4, h5 { font-weight: bold; }
h5, h6 { text-transform: uppercase; letter-spacing: 1px; }
.format_text h2.top, .format_text h3.top { margin-top: 0 !important; }
.sidebar h3 { font-variant: small-caps; letter-spacing: 2px; color: #0095df; }
	h2 a { color: #0095df; }
	h2 a:hover { color: #ccc; }

/*.custom #header { border-bottom:none;
height:150px;
padding-top:0;
padding-bottom:0;
background:url(images/logo.png)
center left no-repeat;
 }

/*.custom #header #logo { display:none; }

.custom #header #tagline { display:none; }
/*.custom #header { border-bottom: 3px double #ddd; clear: both; padding: 0.2em; background-color:#fff; 
 }*/
.custom #header #logo a:hover { color: #477eda; }
.custom #header #tagline { font-weight: normal; color: #477eda; }*/

.custom h2 a { color: #0095df; }
	.custom h2 a:hover { color: #ccc; }
	
/*---:[ nav menu styles ]:---*/
.menu { list-style: none; border: 1px solid #ddd; border-width: 0 0 1px 1px; }
	.menu li { margin-bottom: -0.1em; background: #333; border: 1px solid #ffff00; border-left: 0; float: left; }
	.menu .current_page_item, .menu .current-cat { color:#ffff00; padding-bottom: 0.1em; background: #0095df; border-bottom: 0; }
		.menu a { display: block; line-height: 1em; color: #ccc; text-transform: uppercase; letter-spacing: 2px; }
		.menu a:hover { color: #ffff00; text-decoration: underline; }
		.menu .current_page_item a, .menu .current-cat a { cursor: text; }
		.menu .current_page_item a:hover, .menu .current-cat a:hover { text-decoration: none; }
	.menu .rss { padding-right: 0; background: none; border: none; float: right; }
		.menu .rss a { padding-right: 16px; background: url('images/icon-rss.gif') 100% 50% no-repeat; }
		
		

/*---:[ content styles ]:---*/
.format_text a { text-decoration: underline; }
.format_text a:hover { text-decoration: none; }
.format_text p.note { background: #f5f5f5; border: 1px solid #ddd; color:#000000; }
.format_text p.alert { background: #ffffa0; border: 1px solid #e5e597; }
.format_text .drop_cap { color: #888; float: left; }
.format_text ul { list-style: square; }
	.format_text dt { font-weight: bold; }
	
/*---:[ after-post elements ]:---*/
.format_text .to_comments { color: #666; clear: both; }
	.format_text .to_comments span { color: #ffff00; line-height: 1em; }
	.format_text .to_comments span.bracket { color: #ccc; }
	.format_text .to_comments a { color: #666; text-decoration: none; }
	.format_text .to_comments a:hover { color: #ffff00; text-decoration: underline; }

/*---:[ multimedia box ]:---*/
#multimedia_box { width: 100%; }
	#image_box { background: #333; border-bottom: 1px solid #ddd; }
		#image_box img { display: block; background: #fff; border-style: solid; border-color: #bbb; }
	/*---:[ video box styles ]:---*/
	#video_box { background: #333; }
	/*---:[ custom box styles ]:---*/
	#custom_box { background: #333; border-bottom: 1px solid #ddd; }


