/*
File:			custom.css
Description:	HFTP-NE

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 #header #logo a { display: block; height: 100px; width: 875px; background: url('images/hftpne_header.jpg') no-repeat; outline: non e; }


.custom #header #logo {float:left}

.custom #header #logo, .custom #header #tagline { text-indent: -9999px; }

.custom #header { padding: 0; }

.custom #footer img#logo-img {float:right;}

.custom #header {height:110px;}

.custom .format_text img.alignleft { clear: none; }

.custom #header { padding: 0; border-bottom:0;}

/*--No Titles--*/
.rsvp h1 { display: none; }
.join-hftp h1 { display: none; }
.home h2 { display: none; }
.schedule h1 { display: none; }
.job-opening h1 { display: none; }
.leadership h1 { display: none; }

/*--BACKGROUND--*/
body.custom { background: #44443f; 
}
	
.custom #container { margin-top: 2em; margin-bottom: 2em; padding: 0.3em; background: #33332f; border: 0.4em solid #3e3e3a; 
}

.custom #page { background: #fff; 
}

.custom #video_box {background:#FFFFFF none repeat scroll 0 0;padding:1em;}


/*--Custom Navigation--*/
.custom ul#tabs li {-moz-border-radius-topleft: 0.5em;-moz-border-radius-topright: 0.5em;-webkit-border-top-left-radius: 0.5em;-webkit-border-top-right-radius: 0.5em;border-top-left-radius: 0.5em;border-top-right-radius: 0.5em;}
.custom ul#tabs li ul li {-moz-border-radius-bottomleft: 0.5em;-moz-border-radius-bottomright: 0.5em;-webkit-border-bottom-left-radius: 0.5em;-webkit-border-bottom-right-radius: 0.5em;border-bottom-left-radius: 0.5em;border-bottom-right-radius: 0.5em;}
.custom ul#tabs {border-left: 0;}
