/*
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; }	&lt;--- 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/
*/
/*---:[ Set 6: image of ocean water that slides into a tranquil blue-green color ]:---*/

body.custom { background: #8db6b6 url('images/bg-ocean.jpg') 50% 0 no-repeat; }

.custom #container { margin-top: 2em; margin-bottom: 2em; }

	.custom #page { background: #fff; }
	
/*---[ end Set 6 ]:---*/

body.custom { background: #8db6b6 url('images/bg-ocean.jpg') 50% 0 no-repeat; }

.custom #container { margin-top: 2em; margin-bottom: 2em; }

	.custom #page { background: #fff; }
	
	/*.custom #header {background: url(images/red-couch-header.jpg) no-repeat; height: 150em; width: 750em;}*/ 


/* This line sets up our clickable background image based on the site title's link */
/* DIY: Adjust the height & width attributes to reflect the actual size of your image */
/* DIY: Change the filename of your image to reflect the actual header's file name */
.custom #header #logo a { display: block; height: 186px; width: 1020px; background: url('images/Rbizhdr2.jpg') no-repeat; outline: none; }

/* This line gets rid of the site title & tagline by casting them out to far left field */
.custom #header #logo, .custom #header #tagline { text-indent: -9999px; }

/* This line collapses the vertical space of the tagline so that there isn't unnecessary white space after the header image */

/* This is a bit of a kludge, but it seems to work. */
.custom #header #tagline { height: 0; }

/* This line removes the padding from the header so that the background image sits close to the nav menu, the bottom border of the header, and the sides of the content */
.custom #header { padding: 0; }

/* This strips the normal page to the bare bone for CSS class name page called Survey-A*/
.Survey-A #header { padding: 0; border-bottom: 0em; }
.Survey-A #footer { padding-bottom: 0; border-top: 0em; }
.Survey-A #footer { display: none; }
.Survey-A #sidebars { display: none; border: none; }
.Survey-A #tabs {display:none;}
.Survey-A #content_box { background:none; }
.Survey-A .comments_closed { display: none; }
.Survey-A #header #logo { display: none; }
.Survey-A #header #tagline { display: none; }
.Survey-A #content { margin: 0 auto; float: none; }


/*This code will make the page headline large, bold and centered:*/
.Survey-A #content h2, .sale #content h1 { font-size:30pt; text-align:center; font-weight:bold; }
	/*▪	This will center your content in a nice box:*/
.Survey-A #container { width:960px; margin-top: 1em; border: 0.2em solid #000; }
	/*▪	This will give the yellow background when someone hovers over a link. A very good sales letter effect:*/
.Survey-A a { color: #111; } .Survey-A a:hover { color: ; background: #f2e127; }
	/*▪	This will put a background color outside your text box, which will make your text stand out more:*/
.Survey-A #page { background: #fff; } body.Survey-A { background: #8db6b6; }

/*this code strips the normal page to the bare bone for page called css class= video1*/

.video1 #header { padding: 0; border-bottom: 0em; }
.video1 #footer { padding-bottom: 0; border-top: 0em; }
.video1 #footer { display: none; }
.video1 #sidebars { display: none; border: none; }
.video1 #tabs {display:none;}
.video1 #content_box { background:none; }
.video1 .comments_closed { display: none; }
.video1 #header #logo { display: none; }
.video1 #header #tagline { display: none; }
.video1&nbsp;#content { margin: 0 auto; float: none; }

/*This code will make the page headline large, bold and centered:*/
.video1 #content h2, .sale #content h1 { font-size:30pt; text-align:center; font-weight:bold; }
	/*▪	This will center your content in a nice box:*/
.video1 #container { width:960px; margin-top: 1em; border: 0.2em solid #000; }
	/*▪	This will give the yellow background when someone hovers over a link. A very good sales letter effect:*/
.video1 a { color: #111; } .video1 a:hover { color: ; background: #f2e127; }
	/*▪	This will put a background color outside your text box, which will make your text stand out more:*/
.video1 #page { background: #fff; } body.video1 { background: #8db6b6; }

