/* TEMPLATE 01 */

/* Intro screen: background color */
div#intro{
	background-color: #282624 !important;
}
/* Intro screen: realtor name title */
div#intro h2{
	color: #ff6600 !important;
}
/* Intro screen: open home address title */
div#intro h3{
	color: #ebebeb !important;
}

/* main page background color and text color */
body{
	background-color: #282624 !important;
	color: #000;
}

/* Main site: Main realtor name title */
#heading_two{
	color: #999999 !important;
} 
/* Main site: Main home description title */
#heading_three{
	color: white !important;
}
/* Main site: Main home address title*/
#heading_three span {
	color: #ff6600 !important;
}

/* Footer: "site by" text color */
a#site_credit span{
	color: #888;
}
/* Footer: color of "|" symbol */
#agent_login{
	color: #888;
}
/* Footer: "agent login" text color */
#agent_login a{
	color: #888;
}
/* Footer: "agent login" text color hover state */
#agent_login a:hover {
	color: #fff;
}

/* gallery slideshow toolbar text color and background color
*	NOTE: background translucent color is produced with a 1x1 pixel png image that is semi-transparent */
div.gallery_toolbar {
	background-image: url(../img/black_overlay.png);
	color: #fff;
}
/* gallery slideshow toolbar text color, selected state*/
div.gallery_toolbar .active{
	color: #ff6600;
}
/* text color for start/pause slideshow */
#start_slide_show, #pause_slide_show {
	color: #ff6600;
}


/* line spacing for text in user-created content areas */
.jspPane *{
	line-height: 1.45em !important;
	color:#000;
}

/* link color and text decoration */
.scroll_this a {
	color: #ff6600;
	text-decoration:none;
}
/* link hover color and text decoration */
.scroll_this a:hover{
	color: #ff6600;
	text-decoration:underline;
}

/* nav button background color */
ul#main_nav li a{
	background-color: #6d6964 !important;
}
/* nav button text color if necessry */
ul#main_nav li a span{
	color: white !important;
}
/* nav highlight background color */
ul#main_nav li a.current{
	background-color: #ff6600 !important;
}

/* subnav highlight bkgrnd color */
ul.sub_nav li a.current{
	background-color: #ff6600 !important;
}
/* subnav highlight text color */
ul.sub_nav li a.current span{
	color: #ffffff !important;
}

/* close button */
div.sub_page .close {
	background: #ff6600;
	color:#ffffff;
}

/* sub pages' background color - semi-transparent png image */
div.sub_page {
	background-image: url(../img/white_transparent.png);
}

/* contact form field background, text and border colors */
form#contact_form input.text {
	border: none;
	background: #666;
	color: #fff;
}
/* contact form textarea (message field at bottom) colors*/
form#contact_form textarea {
	border: none;
	background: #666;
	color: #fff;
}

/* contact form buttons */
form#contact_form .button {
	background: #808080;
	color: white;
}
form#contact_form .button:hover {
	background: #909090;
	color: white;
}



