/*
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/
*/

/*--Header--*/
.custom #header #logo a {
background:transparent url(images/rivoliLogo_header.jpg) no-repeat scroll 0 0;
display:block;
height:69px;
width:795px;
}

.custom #header #logo {float:center}

.custom #header #logo, .custom #header #tagline { text-indent: -9999px; }

.custom #header { padding: 0; }

.custom #footer img#logo-img {float:right;}

.custom #header {height:79px;}

.custom #header {border-bottom:0;}

.custom .format_text img.alignleft { clear: none; }

.custom #page {margin-right: -0.1em;}

/*--No Titles--*/
.home2 h2 { display: none; }
.about-us h1 { display: none; }
.contact h1 { display: none; }
.portfolio h1 { display: none; }
.commercial h1 { display: none; }
.hyannisport h1 { display: none; }
.seloft h1 { display: none; }
.harvard-wgs h1 { display: none; }
.split-oaks h1 { display: none; }
.northwestern h1 { display: none; }
.mos h1 { display: none; }
.bath h1 { display: none; }
.sleep h1 { display: none; }
.eating h1 { display: none; }
.living h1 { display: none; }
.newton-cottage h1 { display: none; }
.wellesley-residence h1 { display: none; }
.playing-house h1 { display: none; }
.test-home h1 { display: none; }
.midtown-manhattan h1 { display: none; }





/*--Registration Tab--*/
.custom li.tab-4 a {color:#faa61a;}
.custom li.tab-4 a:hover {color:#000;}
.custom ul.menu li.tab-4 a {background:#ffffff;}


/*--Background--*/
		
body.custom { background: url('images/iStock_000005485768Small(2).jpg'); }

		.custom #page { padding: 2em 1.9em; background: #fff; border: 0.4em solid #faa61a; border-top: 50; }

/*--No Lines--*/
.custom ul#tabs {border-bottom:0;}


/*--Nav Colors--*/
.custom a, .custom a:visited { color: #000; } .custom a:hover { color: #000; }
.custom ul#tabs li a, .custom ul#tabs li a:visited { color: #000; text-decoration: none;}
.custom ul#tabs li a:hover { color: #000; text-decoration: none; background color: transparent; border-bottom:none;}

.custom .headline_area {
margin-bottom:0em;
}

.custom .post_box {
padding-top:0em;
}

