/*

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: #ffffff url( 'images/blue-gradient.jpg') repeat-x top left;

}



.custom .comments_closed p {

  display: none;

}



.custom #header { 

	border-bottom:none;



	height: 220px;

	width: 850px;



	padding-top:0;

	padding-bottom:100;

	background:url('images/living banner.jpg') top left no-repeat; }



.custom h2 a {

   color: #3399ff;

   text-decoration: none;

}

.custom h2 a:visited {

   color: #3399ff;

   text-decoration: none;

}

.custom h2 a:hover {

   color: #ff0000;

   text-decoration: underline;

}

.custom h2 a:active {

   color: #3399ff;

   text-decoration: underline;

}



/* Style the First (or Only) Post */

.custom .post.top {

   background:#FFFFFF none repeat scroll 0 0;

   border:5px single #666666 !important;

   margin:1em;

   padding:2em;

}



/* Style Remaining Posts (in a Multi-Post Listing) */

.custom .post.post_box {

   background:#FFFFFF none repeat scroll 0 0;

   border:5px single #000000;

   margin:1em;

   padding:2em;

}



/* Make Teasers one across instead of two */

.custom .teaser {

   width: 100%;

   margin-top: 2em;

   padding-top: 2em;

   border-top: 1px dotted #bbb;

   text-align: justify;

}

.custom .teasers_box {

   padding-top: 0;

   padding-bottom:0;

   border-top: 0;}



/* Featured Post Formatting */

.custom #my-feature-box { font-family: Georgia,Arial,sans-serif; color: #ffffff; background: #bbbbbb; padding: 10px 10px 10px 10px; }

.custom #my-feature-box h2 { font-size: 2.2em; margin: 0 0 15px 0; }

.custom #my-feature-box h2 a { color: #000000; text-decoration: none; }

.custom #my-feature-box h2 a:hover { color: #ffffff; }

.custom #my-feature-box p {  color: #000000; font-size: 1.4em; line-height:1.571em; text-align: justify;}

.custom #my-feature-box .featurereadmore { padding: 22px 0 0 0; }

.custom #my-feature-box .featurereadmore a { font-size: 14px; text-decoration: none; }



/* Welcome Video */

.custom #welcome-video { float: right; margin: 0 0 10px 10px; width: 320px; height: 240px; }



/* Sales Letter */

.salesletter #header { display: none } /* padding: 0; border-bottom: 0em; */

.salesletter #nav_area { display: none }

.salesletter .menu { display: none }

.salesletter #footer { padding-bottom: 0; border-top: 0em; }

.salesletter #footer { display: none; }

.salesletter #sidebars { display: none; border: none; }

.salesletter ul#tabs { display:none; }

.salesletter #content_box { background:none; }

.salesletter .bullet_list ul { list-style-image: url(images/teal-check.png); lineheight: 40px; }

.salesletter .comments_closed { display: none; }

.salesletter #header #logo { display: none; }

.salesletter #header #tagline { display: none; }

.salesletter #content { margin: 0 auto; float: none; }

.salesletter .headline_area { display: none; }

.salesletter .tweetmebutton { display: none; }

.salesletter #owbutton { display: none; }

.salesletter #content h1, .sale #content h1 { color: red; font-size:26pt; text-align:center; font-weight:bold; font-family: arial; line-height: 100%; }

.salesletter #content h2, .sale #content h1 { color: blue; font-size:26pt; text-align:center; font-weight:bold; font-family: arial }

.salesletter #content h3, .sale #content h1 { font-size:14pt; text-align:center; font-weight:bold; }

.salesletter a { color: #111; }

.salesletter a:hover { color: ; background: #f2e127; }

.salesletter #page { background: #fff; }

body.salesletter { background: #8db6b6; }

.salesletter .salestext { font-size: 12pt; font-family: Helvetica,Arial,sans-serif; }

.salesletter b-quote { text-indent: 40px; }

 

.custom .format_text input {

border-width:0.067em;

padding:0.2em;

width: auto;

}













































