/*
Theme Name: Flexx Theme - Sensation
Theme URI: http://flexxtheme.com/
Author: iThemes
Author URI: http://ithemes.com/
Version: 2.0.8
Description: Flexx is an endlessly extensible, highly configurable blog theme from iThemes.com.
Tags: blog, theme options, multiple layouts, multiple color schemes
All the CSS, XHTML, design, and images are copyrighted. Please do not steal.

Version History
	1.0.0 - 2008-11-12
		Initial Release
	1.0.1 - 2008-11-13
		Updated featured-images.php code to 1.0.7
	1.0.2 - 2008-11-13
		Updated featured-images.php code to 1.0.8
		Updated iThemesFileUtility.php to 1.1.1
		Updated feature-bottom.php and feature-top.php
		Updated flexlayout.php
	1.0.3 - 2008-11-17
		Updated functions.php to add PHP4 compatibility
		Updated lib/contact-page-plugin/contact-page-plugin.php to 1.0.2
		Updated lib/featured-images/featured-images.php to 1.0.10
		Updated lib/flexx-layout-editor/flexx-layout-editor.php to 1.0.2
		Updated lib/theme-options/theme-options.php to 1.0.2
		Updated lib/theme-options/theme-options-framework.php to 1.0.3
		Updated lib/tutorials/tutorials.php to 1.0.4
	1.0.4 - 2008-11-24
		Updated lib/theme-options/theme-options.php to 1.0.3
		Standardized the changelog format in style.css
	1.0.5 - 2008-11-24
		Updated lib/flexlayout.php
	1.0.6 - 2008-11-25
		Updated lib/featured-images/featured-images.php to version 1.0.11
		Updated lib/contact-page-plugin/contact-page-plugin.php to version 1.0.3
		Updated lib/flexx-layout-editor/flexx-layout-editor.php to version 1.0.3
		Updated lib/iThemesFileUtility.php to version 1.1.2
		Updated lib/theme-options/theme-options-framework.php to version 1.0.4
		Updated lib/tutorials/tutorials.php to version 1.0.5
	1.0.7 - 2008-12-02
		Updated lib/tuturials/tutorials.php to version 1.0.6
	1.0.8 - 2008-12-11
		Updated footer.php and functions.php
	1.1.0 - 2008-12-16
		Updated iThemesFileUtility.php to version 1.3.0
		Added lib/billboard folder and files
		Modified functions.php file to add entry code for lib/billboard/billboard.php
	1.1.1 - 2009-01-13
		Updated functions.php to fix the tracking code error
	2.0.0 - 2009-02-17
		Updated style.css - added "position: relative;" to #header
		Updated entire lib/featured-images directory to version 1.1.0
		Updated lib/theme-options/theme-options.php to version 1.1.1
		Updated lib/theme-options/theme-options-framework.php to version 1.0.5
		Updated lib/theme-options/js/theme-options.js.php to add header and favicon uploader code
		Updated lib/billboard/billboard.php to version 1.0.3
		Updated header.php to add text overlay code
		Updated header.php to add custom favicon code
		Updated menu-pages.php to add support for new Site Name option
		Updated lib/iThemeFileUtility.php to version 1.4.0
		Added lib/feedburner-widget directory
		Updated functions.php to include Feedburner Widget code and adjust default Featured Images height
		Replaced screenshot.png and images/random/header.jpg with new images
		Added images/FlexxHeader.psd
	2.0.1 - 2009-02-17
		Updated the /css/reset.css file
		Updated the search.php file to fix a couple of bugs
		Updated style.css to make sure that returned pages never show the "date box"
	2.0.2 - 2009-02-17
		Updated the /lib/feedburner-widget/css/style.css.php file
	2.0.3 - 2009-02-18
		Updated style.css and /lib/feedburner-widget/css/style.css.php
	2.0.4 - 2009-02-27
		Updated style.css to explicitly declare ol and ul styles
	2.0.5 - 2009-02-27
		Added a filterable footer credit link (happyjoe.com compatibility)
	2.0.6 - 2009-03-01
		Updated lib/tutorials/tutorials.php to version 1.0.7
	2.0.7 - 2009-03-03
		Updated lib/feedburner-widget/feedburner-widget.php to version 1.0.1
	2.0.8 - 2009-03-03
		Updated lib/iThemesFileUtility.php to version 1.4.1
*/
/*CSS Reset*/
@import url(css/reset.css);
/*Get the grid, baby!*/
@import url(css/grid.css);

body { /* This is where you set many of the universal defaults */
	background: #fff ; 
	color: #333;
	font-family: Arial;
	font-size: 12px;
	line-height: 16px;
	text-align: center;
        margin:-20px 0 0 0;
}

/*********************************************
		Universal Link Styles
*********************************************/
a {
	color: #103752;
	text-decoration: none;
}
a:hover { 
	color: #000; 
	text-decoration: underline; 
}


/*********************************************
		Universal Text Elements
*********************************************/
ol, ul {
	margin: 5px 35px;
}
ol {
	list-style-type: decimal;
}
ul {
	list-style-type: square;
}
blockquote {
	margin: 5px 20px 5px 20px; padding: 0px 20px;
	font-style: italic;
	background: #DDD;
	border: 1px solid #555;
	border-left: 3px solid #555;
}
img { border: 0px; background: none; }
p {
	padding: 10px 22px;
	margin: 0px;
}
/*********************************************
		Header Styles
*********************************************/
/* Use this for universal styles for all header elements
Be sure to uncomment the styles before using */
h1,h2,h3,h4,h5,h6 {
	/*
	font-family: ;
	font-size: ;
	color: px;
	margin: px; padding: px;
	*/
}

h1 { /* This style is generally used as title on single posts and pages */
	font-size: 20px;
	line-height: 24px;
}
h2 { /* This style used as a sub-header in post/page content */
	font-size: 18px;
}
h3 { /* This style used as the post titles on homepage/archive */
	clear: both;
	font-size: 20px;
	line-height: 24px;
}
h3 a {
}
h3 a:hover {
}
h4 { /* This style used as title for comments and as the identifying header on archive page  */
	font-size: 18px;
	padding: 0 0 0 15px;
}
h5 {
	font-size: 16px;
}
h6 {
	font-size: 14px;
}

/*********************************************
		The Obligatory WP Styles
*********************************************/
.aligncenter,
div.aligncenter {
   display: block;
   margin-left: auto;
   margin-right: auto;
}
.alignleft {
   float: left;
   margin: -8px 8px 8px 0px;
}
.alignright {
   float: right;
   margin: -8px 0 16px 8px;
}
.wp-caption {
   border: 1px solid #ddd;
   text-align: center;
   background-color: #f3f3f3;
   padding-top: 4px;
   margin: 10px;
}
.wp-caption img {
   margin: 0;
   padding: 0;
   border: 0 none;
}
.wp-caption p.wp-caption-text {
   font-size: 11px;
   line-height: 17px;
   padding: 0 4px 5px;
   margin: 0;
}
.post img {border: 2px solid #cfcfcf;}

/*********************************************
		Container Div
*********************************************/
#container {
	background: #900000 url(images/sidebar-westgate.jpg) repeat-y;
	margin-top: 20px;
	border: 1px solid #FFF;


}

/*********************************************
		Header Styles
*********************************************/
#header {
	clear: both;
	background: #000;
	position: relative;
}
#header #title a {
	display: block;
	overflow: hidden;
}
/*********************************************
		Horizontal Navigaion Styles 
				(with dropdowns)
*********************************************/

/*ADD BACKGROUND WITH ARROWS TO MENU ITEMS*/
.page_itempage-item-10,.page_itempage-item-11,.page_itempage-item-26{
background:url(images/westgate-menu-bg-arrow.gif) no-repeat;
}

/*ADD BACKGROUND WITHOUT ARROW TO MENU ITEMS*/
.page_itempage-item-8,.page_itempage-item-9,.page_itempage-item-21,.page_itempage-item-24,.page_itempage-item-18,.page_itempage-item-25,.page_itempage-item-19,.page_itempage-item-20,.page_itempage-item-27,.page_itempage-item-60{
background: url(../FlexxSensation/images/westgate-menu-bg.gif) no-repeat;
}

#above-header #pagemenu,
#above-header #catmenu {
	border-bottom: 1px solid #FFF;
}
#below-header #pagemenu,
#below-header #catmenu {
	border-top: 0px solid #FFF;
}
#pagemenu,
#catmenu {
	background: url();
	float: left;
	font-size: 11px;
	//text-transform: uppercase;
	width: 120px; height: 32px;
	margin: 0px 0 0 -25px; padding: 0 35px 0 0;
}

#pagemenu:hover,
#catmenu:hover {
	background:transparent;
	float: left;
	font-size: 11px;
	//text-transform: uppercase;
	width: 120px; height: 32px;
	//margin: 5px 0 0 -25px; padding: 0 35px 0 0;
}
/* This is the style for the first UL (horizontal) */
#pagemenu ul,
#catmenu ul {
	float: left;
	background:transparent;
	height: 32px; 
	margin: 0px; padding: 0px;
}

/* This is the style for the top level list items */
#pagemenu ul li,
#catmenu ul li {
	
	width: 127px;
	display: block;
	float: left;
	list-style-type: none;
	height: 20px; line-height: 20px;
	padding:1px 0 0 5px;
        margin:0 0 0 35px;
        font-weight:bold;
        font-size:10px;
}
#pagemenu ul li.home,
#catmenu ul li.home {
	background: #214367 url(images/sidebar-westgate.jpg) repeat-y;
}
/* The style for all links */
#pagemenu a,
#catmenu a {
	color: #FFF;
	text-decoration: none;
}
/* The universal hover state colors and background for all LI items and links */
#pagemenu li:hover a,
#pagemenu li.sfhover a,
#pagemenu li a:hover,
#catmenu li:hover a,
#catmenu li.sfhover a,
#catmenu li a:hover {
     background:#C70101 url() repeat-y scroll 0 0;
     //color:#000000;
     margin:0 0 0 -5px;
     padding:0 0 0 4px;
     text-decoration:none;
     width:103px;
     border: 1px solid #FFF;
}
/* This is the style for the top level links, if different than the universal */
#pagemenu ul li a,
#catmenu ul li a {
	display: block;
	width:120px; 
	margin: 0px; padding: 0px 0px 0 0px; color:#fff;
	text-decoration: none; text-align:left;
	border-right: 0px solid #FFF;
	background:url() no-repeat;
}
#pagemenu li:hover a span,
#pagemenu li.sfhover a span,
#pagemenu li a span:hover,
#catmenu li:hover a span,
#catmenu li.sfhover a span,
#catmenu li a span:hover {
     text-decoration: none;
     background:#214367 url(images/sidebar-westgate.jpg) repeat-y;
     color:#FFFFFF;
}	
 /*This is the style for the top level links, if different than the universal*/ 
#pagemenu ul li a span,
#catmenu ul li a span{
	display: block;
	width:115px; 
	//margin: 0px 0 20px 0; padding: 0px  0 0px 0; color:#fff;
	text-decoration: none;
	border-right: 0px solid #FFF;

}
/* Home link */
#pagemenu ul li.home a {
	width: 40px;
	text-indent: -9999px;
	overflow: hidden;
	background:#214367 url(images/sidebar-westgate.jpg) repeat-y;
}
#pagemenu ul li.home a:hover {
	width: 40px;
	text-indent: -9999px;
	overflow: hidden;
	background:#214367 url(images/sidebar-westgate.jpg) repeat-y;
}
/* if you want to set a "current page item" style, do it here */
#pagemenu ul li.current_page_item a,
#catmenu ul li.current_page_item a {
        //color:#000;
}
/****************************** 
The second-level stuff 
*******************************/
/* This hides the nested UL before you hover */
#pagemenu li ul,
#catmenu li ul {
	clear: both;
	position: relative;
	//width: 200px; /* the width of the dropdown */
	left: -999em;
	border-top: 0px solid #FFF;
        margin:  -22px 0px 0 -48px;
}
/* This shows the nested UL when you hover */
#pagemenu li:hover ul, 
#pagemenu li.sfhover ul,
#catmenu li:hover ul, 
#catmenu li.sfhover ul {
	left: auto;
	display:  block;
	z-index: 1000;

}

/* This is the style for the nested UL */
#pagemenu li:hover ul,
#pagemenu li.sfhover ul,
#catmenu li:hover ul,
#catmenu li.sfhover ul {
	background: transparent;
	display: block;
        padding: 0px;
}
/* This is the style for the LI items within the nested UL */
#pagemenu li:hover ul li,
#pagemenu li.sfhover ul li,
#catmenu li:hover ul li,
#catmenu li.sfhover ul li {
	background: transparent;
	width: 100%;
	display: block;
	padding: 0px; margin: 0px 0 0 152px;
	overflow: hidden;
	text-align: left;

}
/* This is the style for the links within the LI items within the nested UL */
#pagemenu li:hover ul li a,
#pagemenu li:hover ul li.current_page_item a,
#pagemenu li.sfhover ul li a,
#pagemenu li.sfhover ul li.current_page_item a,
#catmenu li:hover ul li a,
#catmenu li:hover ul li.current_page_item a,
#catmenu li.sfhover ul li a,
#catmenu li.sfhover ul li.current_page_item a {

	background:url(images/westgate-menu-bg.gif) repeat-x;
	width: 100%;
	display: block;
	padding: 0px 0px 0 9px;
	//border: 0px solid #FFF;
	//border-top: none;
        font-size:10px;
        border:1px solid #000;

}
/* This is the style for the hover state on the links within the LI items within the nested UL */
#pagemenu li:hover ul li a:hover, 
#pagemenu li.sfhover ul li a:hover,
#catmenu li:hover ul li a:hover, 
#catmenu li.sfhover ul li a:hover {
	text-decoration: none;
	//padding: 0px 5px 0 27px;
	background:#C70101 url() no-repeat;
        width:100%;
}



/*********************************************
		Feature-Top Div
		Feature-Bottom Div
*********************************************/
.w260,.w260-,.w390,.w390- {display: inline; float: left; margin: 0px 10px; text-align: left; overflow: hidden;}
.w260 {width: 240px;} .w260- {width: 260px; margin: 0px;}
.w390 {width: 370px;} .w390- {width: 390px; margin: 0px;}
#feature-top,
#feature-bottom {
	width: 100%;
	background: #900000 url(images/sidebar-westgate.jpg) repeat-y ;
	color: #FFF;
	float: left;
	margin: 0px; padding: 0px 0px 10px 0px;
	overflow: hidden;
}
#feature-top {
	border-top: 1px solid #FFF;
}
#feature-top a {
	color: #FFF;
	text-decoration: none;
}
#feature-top a:hover {
	color: #FFF;
	text-decoration: underline;
}
#feature-bottom {
	#900000;
        
}
#feature-bottom a {
	color: #FFF;
	text-decoration: none;
}
#feature-bottom a:hover {
	color: #FFF;
	text-decoration: underline;
}
#feature-top .widget,
#feature-bottom .widget {
	padding: 0px 0px 10px 0px;
}
#feature-top h4,
#feature-bottom h4 {
background: url(images/star.gif) 5px 50% no-repeat;
	margin: 0px; padding: 5px 5px 5px 30px;
	color: #FFF;
	font-size: 14px;
	text-transform: lowercase;
	border: 1px solid #ffffff;
	border-left: none; border-right: none;
}
#feature-top h4 a,
#feature-bottom h4 a {
	color: #FFF;
	text-decoration: none;
}
#feature-top h4 a:hover,
#feature-bottom h4 a:hover {
	color: #FFF;
	text-decoration: none;
}

#feature-top-left h4,
#feature-top-middle h4,
#feature-bottom-middle h4 {
	border: 1px solid #ffffff;
	border-left: none;
}



#feature-bottom-left h4{
        background: url('images/sidebar-westgate.jpg') repeat-y;
        border: 1px solid #ffffff;
	border-left: none;
}


#feature-top p,
#feature-top ul,
#feature-top ol,
#feature-top img  {
	padding: 10px;
}
#feature-bottom p,
#feature-bottom ul,
#feature-bottom ol,
#feature-bottom img  {
	padding: 10px;
}
#feature-top .textwidget,
#feature-bottom .textwidget {
	padding: 10px;
}
#feature-top ul,
#feature-top ol,
#feature-bottom ul,
#feature-bottom ol {
	padding: 10px 0px; margin: 0px 15px 5px 25px;
	list-style-type: square;
}
#feature-top li ul,
#feature-top li ol,
#feature-bottom li ul,
#feature-bottom li ol {
	padding: 0px;
}
#feature-top a.rsswidget img,
#feature-bottom a.rsswidget img {
	display: none;
}
	
/*********************************************
		Content Div
*********************************************/

#signUpButton {
    background: url(images/sign-up-button.png) 50% 50% no-repeat;
    height: 50px;
    width: 755px;
    line-height: 50px;
    text-align: left;
    display: block;
    margin: 0;
    padding: 0 0 0 25px;
    color: #961010;
    font-size: 36px;
    cursor: pointer;
}
.invetory #signUpButton {
    background: url(images/sign-up-button-invetory.png) no-repeat;
} 
#signUpButton .gray {
    text-align: right;
    padding: 0;
    font-size: 24px;
    line-height: 26px;
    color: #4d4d4d;
}
#signUpButton .small {
    font-size: 12px;
    color: #000000;
}
#homeHolder {
    position:relative;
    height:1px;
    overflow:visible;
    margin-top: -2px;
}
#homeSub {
    display:none;
    position: absolute;
    background:#d2d4d5 url(images/hiddenBG.gif) repeat-x;
     border:1px solid #929292;
     -moz-border-radius: 15px;
     border-radius: 15px;
     width:300px;
     padding: 12px;
     margin: 10px 0 0 14px;
     color:#000;
     z-index: 9999;
}
#homeSub h2 {
    font-size: 16px;
    color: #900000;
}
#homeSub h3 {
    font-size: 16px;
}
#homeSub #closeForm {
    display: block;
    float: right;
    text-align: right;
    font-style: italic;
    margin: -8px -8px 0 0;
    cursor: pointer;
}
#homeSub #start .logo {
    padding: 0 0 47px 0;
    margin: 0 0 10px 17px;
    display: block;
    clear: both;
    background: url(images/logoBG.png) 0 100% no-repeat;
}
#homeSub #start .logo .logoOne {
    font-size: 40px;
    line-height: 42px;
    color: #900000;
    display: block;
}
#homeSub #start .logo .logoTwo {
    font-size: 12px;
    line-height: 14px;
    color: #000;
    clear: both;
    padding: 0 0 0 20px;
    display: block;
}
#homeSub #start .logo .logoThree {
    font-size: 20px;
    line-height: 22px;
    color: #4d4d4d;
    clear: both;
    padding: 0 0 0 10px;
    text-align: right;
    display: block;
}
#homeSub #start label {
    margin-top:3px;
    display: block;
    height: 25px;
    clear: both;
}
#homeSub #start label .rowOne {
    width: 75px;
    display: block;
    float: left;
    margin: 0 0 0 10px;
}
#homeSub #start label .rowTwo {
    width: 100px;
    display: block;
    float: left;
    margin: 0 0 0 10px;
} 
#homeSub #start input {
    display: block;
}
#homeSub #start .row1 {
    width: 195px;
}
#homeSub #start .row2 {
    width: 170px;
}
#homeSub #next label {
    display: block;
    margin: 5px 0 3px 0;
    font-weight: bold;
}
#homeSub form .submit {
    background: url(images/submitBG.png) 50% 50% no-repeat;
    width: 198px;
    height: 33px;
    line-height: 33px;
    font-size: 20px;
    text-align: center;
    border: none;
    margin: 0 13px 0 0;
    color: #FFF;
    float: right;
}
#homeSub #next .item {
    display: block;
    padding: 2px 7px;
    display: block;
    float: left;
    line-height: 17px;
    min-width: 60px;
}
#homeSub #next .holder {
    display: block;
}
#homeSub #next .holder .clearAll {
    height: 1px;
    display: block;
    clear: both;
}
#homeSub #next .item input {
    top: 3px;
}
#homeSub #lastName, #homeSub #firstName {
    visibility: hidden;
    height: 1px;
    margin: 0;
    padding: 0;
}
#searchBar {
    height: 91px;
    width: 776px;
    border: 2px solid #4d4d4d;
    background: url(images/searchBG.png) repeat-x;
    color: #f2f2f2;
}
#searchBar form .section {  
    display: block;
    float: left;            
    margin-left: 20px;
}
.section .submit {
    background: url(images/submitButtonBG.png) 50% 50% no-repeat; 
    text-transform: uppercase;    
    display: inline-block;       
    text-align: center;
    border: none;
    color: #FFF;
    height: 34px;
    width: 146px;
    cursor: pointer;
    margin: 1px 0 0 13px;
}
#searchBar form .section select {
    width: 123px;
    background: #ccc; 
    margin: 0;
    border: none;  
    color: #808080;
    height: 17px;
}
#searchBar form .section label {
    display: inline-block;
    width: 63px;     
}                  
#searchBar form .section3 label {
    width: 50px;
}
#searchBar form .section .holder {
    height: 24px;
    line-height: 24px;
    display: inline-block;
    margin: 3px 0 0 0;
}
#searchBar form .section1 { 
    width: 130px;
    font-size: 16px;
    line-height: 18px;
    font-family: Arial;
    font-weight: bold;
    padding: 0;
    margin: 15px 0 0 23px;
}
#searchBar form .section #numberOfTrailers {
    display: inline-block;
    width: 80px;
}
#searchBar form .section .filter {
    color: #cb0f10;
    display: block;
    margin: 5px 0 0 0;
    font-size: 13px;
    line-height: 15px;
}
#searchBar form .section2 {
    width: 186px;  
}
#searchBar form .section3 {
    width: 185px;
    margin-left: 15px;
}
#searchBar form .section4 {
    width: 186px;
}
#content {
	background: #FFF url(images/page-roundhead.gif) no-repeat;
        margin:0 0 0 20px;
}
#listingContainer .pagenumbers {
    width: 265px;
    height: 26px;
    margin: 7px 0 7px 262px;    
    clear: both;
    float: left;
}
.pagenumbers #prevBox, .pagenumbers #nextBox {
    width: 30px;
    float: left;
}                    
.pagenumbers .pageButtonHolder {
    width: 200px;
    float: left;  
    height: 20px;  
}
.pageButtonHolder #scroll {
    margin: 0;
    text-align: center;
}
#scroll a.listingNavLink {
    display: inline-block;
    margin: 0 0 0 3px;
    width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    background: #999;
    border: 1px solid #333;
    border-radius: 3px;   	                
    -moz-border-radius: 3px;
    color: #FFF;
} 
#scroll a.activePage.listingNavLink {
    background: #ccc;
    color: #333;
}
#listingContainer .holder {
    width: 390px;
    height: 178px;
    float: left;
    margin: 0;    
}
.holder1, .holder4, .holder5, .holder8, .holder9 {
    background: #d2d4d5 url(images/grayHolderBG.png) repeat-x;
}
.holder .left {
    width: 155px;
    height: 130px;
    float: left;
    margin: 0 0 0 45px;
}
.left .title {
    font-size: 16px;       
    height: 23px;
    line-height: 23px;
    color: #C70101;
    text-transform: uppercase;
    display: inline-block;
}
.left a img {
    width: 146px;
    height: 94px;
    border: 1px solid #333;
}
.holder .right {
    width: 160px;
    height: 130px;
    float: left;
    margin: 0 0 0 10px;
}
.holder .right span {
    display: block;
    font-size: 14px;
    color: #000;
}
.holder .right span.price {
    font-size: 16px;
    font-weight: bold;
    display: inline-block;
    height: 23px;
    line-height: 23px;
}
.right .brand, .right .type {
    height: 23px;
    line-height: 23px;
    margin-top: 3px;
}
.right .price, .right .brand, .right .type {
    padding-left: 15px;
}
.holder .right a {
    background: url(images/detailBG.png) no-repeat;
    padding: 3px 8px 10px 6px;
    margin: 5px 0 0 0;
    height: 29px;
    line-height: 25px;
    width: 96px;
    text-align: center;
    font-size: 13px;
    text-transform: capitalize;
    color: #FFF;
    display: inline-block;
}
.holder .lower {
    width: 325px;
    height: 45px;
    float: left;
    margin: 0 0 0 39px;
}
.holder a.financing, .mainListing .financing {
    background: url(images/financingBG.png) no-repeat;
    display: block;
    margin: 20px auto 10px;
    width: 286px;
    height: 134px;
    text-decoration: none;    
}

.toggleContact, .toggleSubContact {
    cursor: pointer;
}   
#lowerHolder {
    display:none;
    position: absolute;
    background:#ddd;
    border:1px solid #333 ;
    -moz-border-radius: 15px;
    border-radius: 15px;
    width:400px;
    z-index: 99;
    color: #000;
    padding: 10px;
    margin: 0 0 0 -5px;
}
#lowerHolder button {
    margin-top:3px;
    margin-left:20px;
}
#lowerHolder .red {
    font-weight: bold;
    color: #8c0503;
}
#lowerHolder .contactForm label {
    display: block;
    clear: both;
}
#lowerHolder .contactForm label.first {
    display: inline-block;
    clear: none;
}
#lowerHolder .contactForm label span {
    display: inline-block;
    width: 175px;
    padding-right: 4px;
    text-align: right;
}
#lowerHolder .contactForm .name {
    height: 1px;
    visibility: hidden;
}
#lowerSubHolder #closeForm {
    cursor: pointer;
    display: block;
    float: right;
    font-style: italic;
    font-size: 12px;
    margin: 4px 4px 0 0;
    text-align: right;
}

#lowerContact {
    display:none;
    position: absolute;
    background:#ddd;
    border:1px solid #333 ;
    -moz-border-radius: 15px;
    border-radius: 15px;
    width:425px;
    z-index: 99;
    color: #000;
    padding: 10px;
    margin: 0 0 0 -5px;
}
#lowerContact button {
    margin-top:3px;
    margin-left:20px;
}
#lowerContact .red {
    font-weight: bold;
    color: #8c0503;
}
#lowerContact label {
    display: block;
    clear: both;
}
#lowerContact label.first {
    clear: none;
}
#lowerContact label span {
    display: inline-block;
    width: 85px;
    padding-right: 4px;
    text-align: right;
    font-size: 16px;
    line-height: 20px;
}
#lowerContact .name {
    height: 1px;
    visibility: hidden;
}
#lowerContactSubHolder #closeForm {
    cursor: pointer;
    display: block;
    float: right;
    font-style: italic;
    font-size: 12px;
    margin: 4px 4px 0 0;
    text-align: right;
} 
#lowerContactSubHolder #closeContactForm {
    cursor: pointer;
    display: block;
    float: right;
    font-style: italic;
    font-size: 12px;
    margin: 4px 4px 0 0;
    text-align: right;
}
#listingContainer .holder.noResult {
    height: 158px;
    width: 350px;
    padding: 10px 10px 10px 30px;
    font-size: 16px;
    color: #000;    
    font-family: Arial;
}
.holder .sub,.holder .noResult2{
    display: block;
    font-size: 25px;
    line-height: 34px;
    color: #333;
    font-family: Tahoma;
    margin: 0px 0 7px 0; 
    font-weight: bold;   
}
.holder .noResult2 {     
    font-size: 21px;
    line-height: 30px;
    color: #000;
    font-weight: bold;
    margin: 10px 0 0 86px;
}
.mainListing .financing {
    display: inline-block;
}
.financing .sub1 {
    display: block;
    margin: 0px 0 0 31px;
    padding: 8px 0 0 0;
    font-size: 28px;
    line-height: 32px;
    color: #808080;
}  
.financing .sub2 {
    display: block;
    margin: 2px 0 0 81px;
    font-size: 30px;
    line-height: 30px;
    color: #333;
} 
.financing .sub3 {
    display: block;
    margin: 2px 0 0 122px;
    font-size: 24px;
    line-height: 28px;
    color: #666;
} 
.financing .sub4 {
    display: block;
    margin: 0;
    font-size: 17px;
    line-height: 23px;
    color: #c1272d;
    text-align: center;
}
   
.mainListing .photo {
    position: relative;
    height: 490px;
    width: 565px;
    float: left;
    margin: 7px;
}
.mainListing .photo img {
    top: 0; left: 0;
    max-height: 485px;
    width: 560px;
    border: 2px solid #b2b2b2;
    position: absolute;
}
.mainListing .photo img:first-child {
    z-index: 99;
}
.mainListing .subPhotos {
    width: 195px;
    float: left;
}
.mainListing .subPhotos .subPhotoHolder {
    margin: 7px 7px 0 0;
    display: inline-block;
    height: 57px;
    width: 88px;
    border: 1px solid #b2b2b2;
    background: #e6e6e6;
}
.mainListing .subPhotos img {
    height: 57px;
    width: 88px;
    cursor: pointer;
}
.mainListing .buttons {
    display: block;
    clear: both;
    float: left;
    margin: 0px 10px 15px;
}
.buttons .largeButton {
    background: url(http://globals.uscybertek.com/images/button-red-151x31.png) 50% 50% no-repeat;
    height: 31px;
    width: 151px;
    color: #FFF;
    text-align: center;
    line-height: 31px;
    font-size: 15px;
    display: inline-block;
}
.buttons .smallButton {
    background: url(http://globals.uscybertek.com/images/button-red-140x31.png) 50% 50% no-repeat;
    height: 31px;
    width: 140px;    
    color: #FFF;
    text-align: center;
    line-height: 31px;
    font-size: 17px;
    display: inline-block;
}
.mainListing .buttons a, .mainListing .buttons span {
    margin-left: 34px;
}
.mainListing .left {
    width: 375px;
    float: left;
    clear: left;
    padding: 5px 10px;
    margin: 0 0 0 26px;
}
.mainListing .left .price {
    font-size: 16px;
    font-weight: bold;
    clear: both;
    display: block;
}
.mainListing .left .aptNum, .featListing .right .aptNum,
.mainListing .left .address, .featListing .right .address,
.mainListing .left .CSZ, .featListing .right .CSZ {
    font-size: 15px;
    clear: both;
    display: block;
}
.mainListing .left .bed-bath, .featListing .right .bed-bath {
    font-size: 12px;
    clear: both;
    display: block;
    margin: 10px 0;
}
 .featListing .right .CSZ, .featListing .right .bed-bath {
    font-size: 15px;
    margin: 10px 0 5px 15px;
}
.mainListing .left .desc, .featListing .right .desc {
    display: block;
    clear: both;
    margin: 10px 0;
    font-size: 11px;
}
.featListing .right .desc {
    max-height: 200px;
    overflow: hidden;
    margin: 10px 5px 10px 15px;
}
.mainListing .left .share, .featListing .right .share {
    display: block;
    clear: both;
    text-align: right;
    height: 20px;
    margin: 15px 0;
}
.featListing .right .detialsButton {
    display: block;
    background: url(http://globals.uscybertek.com/images/listing_details_button_93x34_red.png) 50% 50% no-repeat;
    width: 93px;
    height: 34px;
    padding: 0;
    margin: 15px 0 0 45px;
    font-size: 16px;
    color: #fff;
    text-align: center;
    line-height: 28px;
    text-decoration: none;
}
.mainListing .left .share .addthis_default_style, .featListing .right .share .addthis_default_style {
    width: 150px;
    float: right;
}
.mainListing .left .contactInfo, .featListing .contactInfo{
    font-size: 15px;
    clear: both;
    display: block;
    margin: 10px 0;
    padding: 15px;
    border: 1px solid #b2b2b2;
    background: #E6E6E6;
}
.featListing .contactInfo {
    width: 278px;
    float: left;
    clear: left;
}
.mainListing .left .contactInfo .agencyName, .featListing .contactInfo .agencyName{
    display: block;
    clear: both;
    font-weight: bold;
    color: #8c0503;
    margin: 10px 0 0;
}
.mainListing .left .contactInfo .phoneNum, .featListing .contactInfo .phoneNum {
    display: block;
    clear: both;
    font-weight: bold;
}
.mainListing .propertyInfo {
    width: 300px;
    float: right;
    margin: 10px 15px 10px 0;
}                                   
.propertyInfo .moreInfoTitle {
    font-size: 15px;
    font-weight: bold;
}
.mainListing .propertyInfo ul {
    margin: 10px 0 0 15px;
    list-style: disc;
}
.mainListing .propertyInfo ul li {
    margin: 5px 0 0;
    clear: both;
}
.mainListing .return a {
    font-family: Arial;
    font-size: 13px;
    color: #333;
    text-decoration: underline;
    line-height: 17px;
    padding: 3px 0 0 7px;
    display: inline-block;
}
.details .left .main {
    display: block;
    font-size: 15px;
    line-height: 18px;
}
.details .left .main span {
    display: inline-block;
    width: 95px;
}
.addthis_toolbox a img {
    width: 75px;
    height: 20px;
}
.featListing {
    border: 2px solid #7f7f7f;
    width: 568px;
    height: 360px;
    margin: 15px auto;
    padding: 10px;
}
.featListing .left {
    width: 305px;
    height: 235px;
    float: left;
}
.featListing .left .title {
    width: 100%;
    height: 20px;
    font-size: 20px;
    line-height: 20px;
    color: #c1272d;
    padding:  0 0 0 20px;
    margin: 0 0 9px 0;
    text-align: left;
}
.featListing .left img {
    display: block;
    width: 306px;
    max-height: 202px;
    margin: 7px auto 0;
    border: 2px solid #7f7f7f;
}
.featListing .right {
    width: 250px;
    float: right;
    margin: 0 8px 0 0;
}
.featListing .right  .price {
    display: block;
    clear: both;
    margin: 10px 0 5px 20px;
}
.hidden {
    width: 1px;
    height: 1px;
    overflow: hidden;
    float: left;
}
.featListing .lower .contact {

}
#content.workOrder .copy h1 {

}
#content.workOrder .copy h2 {
    font-size: 20px;
    color: #8c0503;
}
#content.workOrder .copy form h3 {
    font-size: 20px;
    color: #8c0503;
    margin: 5px 0 5px 60px;
    text-align: left;
}
#content.workOrder .copy .names {
    height: 1px;
    line-height: 1px;
    overflow: hidden;
}
#content.workOrder .copy .names .fName, #content.workOrder .copy .names .lName {
    height: 1px;
    line-height: 1px;
    visibility: hidden;
    margin-top: 2px;
}
.copy form label .red {
    color: #8c0503;
    font-size: larger;
}
.copy form label input {
    border: none;
    border-bottom: 1px solid #333;
}
.copy form .fullWidth {
    width: 600px;
    margin: 10px 0 0 50px;
    display: inline-block;
}
.copy form .fullWidth input {
    width: 450px;
    margin: 0px 0 0 25px;
    display: inline-block;
    float: right;
}
.copy form .halfWidth {
    width: 350px;
    margin: 10px 0 0 50px;
    display: inline-block;
}
.copy form .halfWidth input {
    width: 200px;
    margin: 0px 0 0 25px;
    display: inline-block;
    float: right;
}
.copy form .halfWidth.radio {
    width: 100px;
}
.copy form .halfWidth.radio input {
    width: 20px;
    float: none;
}
.copy form .fullWidth textarea {
    display: block;
    clear: both;
    width: 400px;
    font-size: 15px;
    line-height: 18px;
    height: 180px;
    margin: 10px 0 0 30px;
}
.copy form #subm {
    width: 300px;
    margin: 30px 0 50px 70px;
    padding: 0;
}
#content.rentalSearch .copy .contact {
    padding: 10px 15px;
    border-radius: 10px;
    -moz-border-radius: 10px; /* Can shear border using two values like: 50px  Lower  25px  Side */
    background: #7f7f7f;
    color: #231f20;
    border: 2px ridge #8c0503;
    width: 437px;
    margin: 10px 0 10px 100px;

}
#content.rentalSearch .copy .contact h2 {
    clear: both;
    display: block;
    margin: 5px 10px;
    font-size: 25px;

}
#content.rentalSearch .copy .contact label {
    display: block;
    float: left;
    clear: left;
    width: 407px;
    margin: 7px 0 0 10px;
}
#content.rentalSearch .copy .contact label.red {
    color: #8C0503;
}
#content.rentalSearch .copy .contact label span {
    display: inline-block;
    width: 200px;
    text-align: right;
    padding: 3px 10px 3px 0;
}
#content.rentalSearch .copy .contact label input {
    width: 150px;
}
#content.rentalSearch .copy .contact label .rowTwo {
    display: block;
    float: left;
    width: 120px;
}
#content.rentalSearch .copy .contact label .row2 {
    display: block;
    float: right;
    width: 195px;
}
#content.rentalSearch .copy .contact .name {
    visibility: hidden;
    height: 1px;
    width: 1px;
}
#content.rentalSearch .copy .contact .submit {
    margin: 10px 0 0 220px;
}
.toggleContact {
    cursor: pointer;
}
#toggleSub {
    display:none;
    position: absolute;
    background:#ddd;
    border:1px solid #333 ;
    -moz-border-radius: 15px;
    border-radius: 15px;
    width:365px;
    z-index: 99;
    color: #000;
    padding: 10px;
    margin: 0 0 0 -57px;
}
#toggleSub button {
    margin-top:3px;
    margin-left:20px;
}
#toggleSub .red {
    font-weight: bold;
    color: #8c0503;
}
#toggleSub .contactForm label {
    display: block;
    clear: both;
}
#toggleSub .contactForm label.first {
    display: inline-block;
    clear: none;
}
#toggleSub .contactForm label span {
    display: inline-block;
    width: 175px;
    padding-right: 4px;
    text-align: right;
}
#toggleSub .contactForm .name {
    height: 1px;
    visibility: hidden;
}
#toggleSubHolder #closeForm {
    cursor: pointer;
    display: block;
    float: right;
    font-style: italic;
    font-size: 12px;
    margin: 4px 4px 0 0;
    text-align: right;
} 
a.listButton {
    background: url(images/linkButton.png) 50% 50% no-repeat;
    display: block;
    clear: both;
    float: right;
    height: 59px;
    width: 287px;
    color: #fff;
    text-align: center;
    line-height: 15px;
    font-size: 13px;
    text-decoration: none;
}
a.listButton span {
    font-size: 17px; 
    line-height: 28px;
    padding-top: 5px;
    text-transform: uppercase;
    display: block;    
}

.post {
	padding:50px 0 0 0;
}
.post .title {
	width: 580px;
}
.page .date {
	display: none;
}
.post .date {
	display: block;
	width: 69px; height: 75px;
	background: url(images/date.png) no-repeat;
	text-align: center;
	color: #FFF;
	float: left;
}
.post .date .month {
	font-size: 16px;
	line-height: 32px;
	text-transform: uppercase;
}
.post .date .day {
	font-size: 35px;
	line-height: 35px;
}
.post .post-title {
	float: left;
	width: 500px;
	padding: 12px 0px 0px 10px;
}
.post .post-title a {
	text-decoration: none;
        color: #900000;
}

/*********************************************
		Post Meta Styles, if needed
*********************************************/
.meta-top {
	clear: both; /* we need this so floats in the post are cleared */
}
.meta-bottom {
	clear: both; /* we need this so floats in the post are cleared */
	//border-top: 1px solid #d7d7d7;
	margin: 10px 0px 0px 0px; padding: 10px 0px 0px 0px;
        background: url(images/page-roundhead-bottom.gif) no-repeat;
        height:2px;

}

.meta-border{
        border: 1px solid #FFF;
        margin:10px 0 0 0;
}

.meta-bottom .alignleft {
	background:#FFFFFF;
        float:left;
        height:20px;
        margin:-8px 0 0;
        width:780px;
}

.meta-bottom .categories {
	background: url(images/folder.png) 0px 0px no-repeat;
	padding: 0px 0px 0px 18px;
}
.meta-bottom .comments {
	background: url(images/comments.png) 0px 2px no-repeat;
	padding: 0px 0px 0px 18px;
}
.photometa {
	margin: 0px 5px 0px 5px; padding: 0px 0px;
	width: 100%;
}
.EXIF {
	margin: -22px 0px 0px 10px; padding: 0px 0px;
	float: left;
	width: 33%;
}
.photometa h4 {
	border-bottom: 1px solid #666;
	text-align: center;
	margin: 0px; padding: 0px;
}
.photometa ul {
	list-style-type: none;
}

/*********************************************
		Previous/Next Page Navigation
*********************************************/
.paging {
	clear: both; /* To clear any floats */
	margin: 25px 0 0 0; padding: 0px;
        background: transparent url(images/page-roundhead-bottom.gif) no-repeat;
        width:780px;
        height:12px;
        float:left;

}

/*********************************************
		Sidebar
*********************************************/
#sidebar { /* Wide Sidebar */
	background: #900000 url(images/sidebar-westgate.jpg) repeat-y scroll 0 0;
        float:  left;
        margin:35% 0 0 -130px;
        padding:35px 0 10px;
        height:100px;
}




.sidebar {

	
}
#sidebar .sidebar {
	
}
.sidebar a {
	text-decoration: none;
}
.sidebar a:hover {
	text-decoration: underline;
}
.sidebar h4 {
	clear: both;
	background: transparent;
	color: #103752;
	font-size: 14px;
	text-transform: lowercase;
	font-weight: bold;
	border-bottom: double #ccc;
	margin: 0 0 10px 0; padding: 8px;
	text-align: center;
	line-height: 13px;
}
.sidebar h4 img {
	padding: 0px;
}
.sidebar h4 a {
	color: #103752;
	text-decoration: none;
	margin: 0px; padding: 0px;
}
.sidebar .widget {
	clear: both;
	padding: 5px 10px;
}
.sidebar p,
.sidebar ul,
.sidebar ol,
.sidebar img  {
	padding: 5px 0px;
}
.sidebar p, 
.sidebar .textwidget {
	padding: 5px 0px;
}
.sidebar img {
	text-align: center;
}
.sidebar ul {


	list-style-type: none;


	margin: 0px; padding: 0px;
}
.sidebar ul li {
	margin: 0px; padding: 0px 0px 0px 8px;
	line-height: 18px;




	 
}
.sidebar ul li a {
	text-decoration: none;






}



.sidebar ul li a:hover {
	
}
.sidebar ul li ul {

	margin: 0px; padding: 0px;
}


.sidebar ul li ul li {




	margin: 0px; padding: 0px 0px 0px 8px;
}

.sidebar a.rsswidget img {
	display: none;
}

/*********************************************
		Comment Styles
*********************************************/
#comments {
	padding: 10px;
}
#comments h4 {
	padding: 0;
}
#comments .comment {
	margin: 5px 0px 5px 0px; padding: 10px;
	background: #FFFFFF;
	overflow: hidden;
	border: 1px solid #999;
}
#comments .alt {
	margin: 5px 0px 5px 0px; padding: 10px;
	background: #FFFFFF;
	overflow: hidden;
	border: 1px solid #999;
}
#comments .gravatar {
	float: left;
	padding: 0 5px 0 0;
}
#comments .commentmeta {
	
}
#comments .commentmeta a {
	text-decoration: none;
}
#comments .commentmeta a:hover {
	text-decoration: underline;
}
#comments .commenttext {
	
}

#respond {
	padding: 10px;
}
#respond h4 {
	padding: 0;
}
#respond form#commentform {
}
#respond #author {
	
}
#respond #email {
	
}
#respond #url {
	
}
#respond #comment {
	width: 100%;
}
#respond #submit {
	
}

/*********************************************
		Footer Styles
*********************************************/
#footer {
	text-align: left;
	color: #fff;
}
#footer .alignleft,
#footer .alignright {
	padding: 10px;
}
#footer .alignright {
	text-align: right;
}
#footer a {
	color: #fff;
	text-decoration: none;
}
#footer a:hover {
	text-decoration: underline;
}

#footer_images {
        margin:-5px 0 0 0 ;
        padding:0px;
}

#footer_add {
        margin:0px 0 0 103px; 
        padding:0px;
}

/*********************************************
		Contact Form Styles
*********************************************/
.ithemes-contact-page {
	margin: 0 auto;
	font-size: 12px;
	font-family: Arial, Helvetica, sans-serif;
}
.ithemes-contact-page td {
	padding: 5px;
	text-align: left;
}
.ithemes-contact-page td.label {
	text-align: right;
	vertical-align: top;
	font-weight: bold;
}

.ithemes-contact-page input,
.ithemes-contact-page textarea,
.ithemes-contact-page select {
	font-family: Arial, Helvetica, Sans-Serif;
	padding: 3px;
}
.ithemes-contact-page input:hover,
.ithemes-contact-page textarea:hover,
.ithemes-contact-page  select:hover	{

}

.ithemes-contact-page  input:focus,
.ithemes-contact-page  textarea:focus,
.ithemes-contact-page  select:focus	{
}

.ithemes-contact-page textarea,
.ithemes-contact-page input {
}

