/*
File:			custom.css
Description:	Custom styles for the Thesis Theme that you define

Use:

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

body.custom {
    background: #65b022 url('images/bg-skygrass.jpg') 50% 0 no-repeat;
}


.custom #container {

    margin-top: 0em;
    margin-bottom: 0em;
}

.custom #header {
background:  url('images/header-logo.jpg') no-repeat top; height: 130px; margin: 0px 0px 0 }

.custom #page {
    background: #65b022 url('images/bg-skygrass2.jpg') no-repeat top center;  
}



/*---:[ nav menu styles ]:---*/

ul#tabs { list-style: none; border: 1px solid #65b022; border-width: 0 0 1px 1px; }

	ul#tabs li { margin-bottom: -0.1em; background: #a6dafb; border: 1px solid #65b022; border-left: 0; float: left; }

	ul#tabs li.current_page_item, ul#tabs li.current-cat { padding-bottom: 0.1em; background: #65b022; border-bottom: 0; }
	
		ul#tabs li a, ul#tabs li a:visited { display: block; line-height: 1em; color: #295613; text-decoration: none; text-transform: lowercase; letter-spacing: 2px; }

		ul#tabs li a:hover { color: #295613; text-decoration: underline; }
	
		ul#tabs li.current_page_item a, ul#tabs li.current_page_item a:visited, ul#tabs li.current-cat a, ul#tabs li.current-cat a:visited { cursor: default; }
	
		ul#tabs li.current_page_item a:hover, ul#tabs li.current-cat a:hover { text-decoration: none; }
	
	ul#tabs li.rss { padding-right: 0; background: none; border: none; float: right; }
		
		ul#tabs li.rss a { padding-right: 16px; background: url('images/icon-rss.gif') 100% 50% no-repeat; }

/*---:[ rotating image styles ]:---*/

#multimedia_box { width: 100%; padding 10px;}

	#image_box { padding: 1.1em; background: #a6dafb; }

		#image_box img { display: block; padding: 0.1em; background: #fff; border: 0.1em solid #fff; }

	/*---:[ video box styles ]:---*/

	#video_box { padding: 1em; background: #000; }

	/*---:[ custom box styles ]:---*/

	#custom_box { padding: 1.1em; background: #a6dafb; border-bottom: 1px solid #295613; }


/*---:[ core layout elements ]:---*/

#header { border-bottom: 1px double #65b022; clear: both; }

	.post_box { border-top: 1px dotted #fff; }
				
	.top { border-bottom: none ; }

#footer { color: #fff; border-top: 1px double #295613; text-align: right; clear: both; }




		


