/*
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 #second_bg { width: 100%; height: 100%; background: transparent url('images/footer.png') no-repeat right bottom; }

#site_border { position: fixed; margin: 0; }
#site_border li { position: fixed; background: rgba(255, 255, 255, 0.60); list-style-type: none; z-index: 100; }
#site_border #border_top { height:	10px; left: 0; right: 0; top: 0; z-index: 100; }
#site_border #border_right { bottom: 10px; right: 0; top: 10px; width: 10px; z-index: 101; }
#site_border #border_bottom { bottom: 0; height: 10px; left: 0; right: 0; z-index: 102; }
#site_border #border_left { bottom: 10px; left: 0; top: 10px; width: 10px; z-index: 103; }

#date_stripe { padding-top: 3px; height: 15px; color: #1f242a; text-transform: uppercase; background: transparent; }
.custom #video_box { background: transparent; }
.custom input.form_submit:hover { color: #fff; }

.custom a { color: #405653; }
.custom .headline_area h1 a:hover, .custom .headline_area h2 a:hover { color: #fff; }
.custom .headline_area h2 a, .custom .headline_area h1 { font-size: 30px; }
.custom h2.entry-title { font-size: 20px; }
.custom #marktorlay { width: 297px; height: 300px; position: relative; float: right; margin-right: 210px; margin-top: -260px; background: transparent url('images/marktorlay.png') no-repeat right top; }

body { background: #ddd url('images/body.gif') repeat fixed 0 0; width: 100%; height: 100%; padding-bottom: 10px; }
.custom #header_area { padding-top: 10px; }
	.custom #header { height: 150px; }
		.custom #header #logo { background: transparent url('images/logo.png') top left no-repeat; height: 73px; width: 397px; text-align: center; padding-top: 15px; }
			.custom #header #logo a { color: #fff; }
			.custom #header #logo a:hover { color: #1f242a; }
			.custom #header_container { height: 150px; position: absolute; width: 1025px; }
			.custom #banner_mt { background: transparent url('images/banner_mt.png') top left no-repeat; width: 460px; height: 249px; margin-top: -50px; float: left; }
			.custom #snowboard { background: transparent url('images/snowboard.png') top right no-repeat; height: 195px; position: relative; }
	.custom #tabs { padding: 0 0 5px 0; border: none; position: relative; }
	.custom #tabs .current_page_item, .custom #tabs .current-cat { border-bottom: 10px solid rgba(0, 0, 0, 0.30); background: rgba(255, 255, 255, 0.40); }
	.custom #tabs .current_page_item:hover, .custom #tabs .current-cat:hover { border-bottom: 10px solid rgba(0, 0, 0, 0.30); }
		.custom #tabs li { margin-right: 3px; height: 30px; background: rgba(255, 255, 255, 0.20); border-bottom: 10px solid rgba(255, 255, 255, 0.60); padding: 0 10px; border-top: none; border-left: none; border-right: none; }
		.custom #tabs li:hover { border-bottom: 10px solid rgba(0, 0, 0, 0.10); background: rgba(255, 255, 255, 0.40); }
			.custom #tabs .rss { margin: 0; }
			.custom #tabs a { line-height: 30px; }
			.custom #tabs a:hover { text-decoration: none; }

	.custom #content_box { background: rgb(255, 255, 255); background: rgba(255, 255, 255, 0.30); }
		/*.custom .post_box { background: rgb(19, 122, 180); background: rgba(19, 122, 180, 0.30); }*/
	.custom #footer { background: rgba(255, 255, 255, 0.30); color: #414141; text-align: left; }

	.custom .sidebar { text-align: right; }
		.custom .sidebar h3 { font-size: 15px; text-transform: uppercase; margin: 0; font-weight: bold; }
		.custom li.widget { margin: 0 0 15px 0; }

dl#comment_list .bypostauthor { background: #eeeeee; }