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

* {
	outline: none;
}

img, object, embed {
	display: inline-block;
	vertical-align: bottom;
}

h1, h2, h3, .sidebar h3, h4, h5, h6 {
	margin-bottom: 5px;
	font-weight: bold;
	text-transform: uppercase;
	color: #f11c06;
}

h1 {
	font-size: 2.3em;
}

h2 {
	font-size: 2em;
	color: #666;
}

h3,
.sidebar h3 {
	font-size: 1.6em;
}

.headline_area h2 {
	color: #f11c06;
}

.format_text h6 {
	font-size: 1em;
	font-weight: bold;
	text-decoration: underline;
	color: #F11C06;
}

.intro {
	font-size: 110%;
	font-weight: bold;
}

.page {
	background: none !important;
}

/* header */

#header_area {
	background: #fff;
}

#header {
	height: 360px;
	padding: 0px;
	border: none;
	position: relative;
	background: url(images/header.gif) top right no-repeat;
}

.logo {
	display: block;
	width: 225px;
	height: 296px;
	overflow: hidden;
	margin: 10px 0px 0px 0px;
	float: left;
	text-indent: -999em;
	background: url(images/logo.png) center no-repeat;
}

#header .menu {
	width: 160px;
	padding: 70px 0px 0px 0px;
	float: left;
	border: none;
	font-weight: bold;
}

#header .menu li {
	float: none;
	zoom: 1.0;
}

#header .menu a {
	zoom: 1.0;
	border: none;
	color: #fff;
	background: none;
}

#header .menu a:hover,
#header .menu a:focus,
#header .menu .current a {
	color: #FCAE1C;
}

#player {
	position: absolute;
	top: 115px;
	left: 420px;
}

#contactInfo {
	width: 0px;
	height: 0px;
	text-indent: -999em;
}

/* content */
#content {
	height: 545px;
	overflow-y: auto;
}

.no_sidebars #content {
	height: auto;
	overflow: visible;
}

#content_area {
	padding: 0px 0px 10px 0px;
	background: #fff;
}

#content_area .page {
	margin-top: -35px;
	position: relative;
	z-index: 3;
}

#content_box,
#column_wrap {
	background: none;
}

.how-it-works #column_wrap {
	width: 100%;
}

.how-it-works #content {
	width: 77em;
}

.format_text {
	font-size: 1.4em;
}

.format_text p {
	margin-bottom: .8em;
}

.format_text ul {
	margin: 0px 0px 0.8em 1em;
	font-weight: bold;
}

#checklist {
	margin-left: 0px;
}

#checklist li {
	zoom: 1.0;
	padding: 0px 0px 0px 18px;
	list-style: none;
}

#checklist span {
	display: -moz-inline-stack;
	display: inline-block;
	width: 0px;
	height: 16px;
	margin: 0px 0px 0px -16px;
	float: left;
	position: relative;
	z-index: 2;
	background: url(images/icons/checkbox.gif);
}

.post_box {
	padding: 0px;
}

.gallery-icon img {
	-khtml-opacity: 0.6;
	-moz-opacity: 0.6; 
	filter:alpha(opacity=60); 
	opacity: 0.6;
}

.phone {
	font-size: 220%;
	font-weight: bold;
	color: #F11C06;
}

/* sidebars */
.sidebar_list {
	padding-top: 0px !important;
}

.testimonialBox {
	padding: 10px;
	background: #e5e5e5;
	color: #a5a5a5;
}

.testimonialBox blockquote {
	padding: 5px;
	border: none;
	border-bottom: 2px dotted #a5a5a5;
}

.testimonialBox span {
	display: block;
	margin: 5px 0px 0px 0px;
	font-weight: bold;
}

#houseListing {
	overflow: hidden;
	zoom: 1.0;
}

#houseListing dt {
	padding: 0px 25px 0px 0px;
	margin: 0px 0px 10px 0px;
	float: left;
	clear: left;
	background: url(images/icons/arrow1.gif) center right no-repeat;
}

#houseListing dd {
	margin: 0px 0px 10px 0px;
	float: right;
	clear: right;
}

#houseListing img {
	border: 1px solid #ccc;
}

#image_box, #video_box, #custom_box {
	padding: 0px;
	border: none;
	background: none;
}

/* footer */
#footer_area {
	background: url(images/footer.gif) top left repeat-x;
}

#footer {
	padding: 20px 0px;
	border: none;
}

#footer .menu {
	border: none;
}

#footer .menu a {
	border: none;
	color: #fff;
	background: none;
}

#footer .menu a:hover,
#footer .menu a:focus,
#footer .menu .current a {
	color: #FCAE1C; 
}

/* misc */
.highlight {
	color: #006DA0;
}
