﻿/* "???" denotes an issue that needs to be resolved */

/*========================================================
                     GLOBAL STYLING
=========================================================*/
*
{
    margin: 0;
    padding: 0;
}

body
{
    padding: 0 0 12px 0;
    margin: 0px;
    font-family: Arial,Helvetica,sans-serif;
    /* background-color set in theme StyleSheet.css */
}

textarea
{
    font-family: Arial;
}

h1
{
    text-transform: uppercase;
    font-size: 2.5em;
    font-weight: normal;
    margin-bottom: 15px;
    /* color set in theme StyleSheet.css */
}

h2
{
    font-size: 22px;
    /* color set in theme StyleSheet.css */
}

h3
{
    margin: 5px 0;
    /* color set in theme StyleSheet.css */
}

a
{
    text-decoration: underline;
    cursor: pointer;
    /* color set in theme StyleSheet.css */
}

a:hover
{
    text-decoration: none;
}

img
{
    border-style: none;
    border-color: inherit;
}

/* ??? Is this correct here in base.css? */
p, body, table, list
{
    font-family: Arial !important;
    font-size: 12px;
    margin-top: 0;
}

/* ??? This writes over the margin-top: 0 above */
p
{
    margin: 10px 0;
}

div
{
    display: block;
}

/* ??? could combine this and below */
ul
{
    padding-left: 40px;
}

/* ??? could combine this and above */
ol
{
    padding-left: 40px;
}

/* ??? do we want to make this something more generic?*/
ul.Leaf
{
    list-style-position: outside;
    list-style-image: url('/Assets/Leaf_Bullet.png');
}

ul.Search
{
    list-style-position: outside;
    list-style-image: url('/Assets/Search_Bullet.png');
}

ul.BulletPad li
{
    margin-top: 10px;
    margin-bottom: 10px;
}

.pic
{
    border: 1px solid #000000;
}

.alert
{
    color: #990000;
    font-weight: bold;
}

.Error
{
    color: Red;
    font-weight: bold;
    text-align: center;
    border: solid 1px red;
    display: block;
    width: auto;
    padding: 5px;
    background-color: #fddfd7;
}

.left
{
    float: left;
}

.right
{
    float: right;
}

.clear
{
    clear: both;
}

.text-center
{
    text-align: center;
}

.text-left
{
    text-align: left;
}

.text-right
{
    text-align: right;
}

.red
{
    color: Red;
}

/* ??? Should these #listing-main settings be in this main stylesheet? */
#listing-main-details
{
	margin: 10px 0;
	width: 730px;
	float: left;
}

#listing-main-agents
{
	margin-left: 730px;
	margin-top: 10px;
}

/*========================================================
                      MAIN PAGES STYLING
=========================================================*/
.pager-button
{
    background: url('/Assets/Layout/button-gradient-bg.png') repeat-x;
    border: solid 1px #d3d6d3;
}

#body-wrapper
{
    width: 100%;
    /* background set in theme StyleSheet.css */
}
#top
{
    min-height: 800px;
    /* background set in theme StyleSheet.css */
}
/* #bottom background set in theme StyleSheet.css */
#page
{
    width: 982px;
    margin: 0 auto;
}

/*====================
 .footer-main Styling
====================*/
.footer-main
{
    width: 950px;
    min-height: 300px;
    margin: 20px auto;
    /* background set in theme StyleSheet.css */
}
.footer-main a
{
    text-decoration: none;
    /* color set in theme StyleSheet.css */
}
.footer-main ul
{
    margin: 0px;
    padding: 0px;
    list-style-type: none;
}
.footer-main li
{
    width: 17%;
    float: left;
    font-weight: bold;
    margin: 3px 0;
    font-size: 0.95em;
}
.footer-main li ul li
{
    width: auto;
    float: none;
    font-weight: normal;
}
/* .copy-notice color set in theme StyleSheet.css */
.social-media-link
{
    padding: 0;
}

/*=========================
 .chat-callout Styling
==========================*/
.chat-callout
{
    text-align: center;
    width: 126px;
    height: 57px;
    margin-top: 10px;
    padding: 5px;
    float: right;
    text-align: center;
    margin-right: 6px;
    /*background: url('/Assets/Layout/chat-callout.png') no-repeat center;*/
}
.chat-callout table
{
    width: 102px;
    margin: 0 auto;
    display: block;
}

/*=========================
 Top Navigation Bar Styling
==========================*/
ul#topnav
{
    padding: 0px;
    margin: 14px 8px 0 auto;
    height: 36px;
    list-style-type: none;
    float: right;
    width: 100%;
    display: inline-block;
}
ul#topnav li
{
    display: inline;
    height: 36px;
    display: block;
    float: left;
    padding: 10px 17px 0px 17px;
    font-size: 18px;
    position: relative;
    /* color set in theme StyleSheet.css */
}
ul#topnav li a
{
    text-decoration: none;
    font-weight: normal;
    /* color set in theme StyleSheet.css */
}
/* ul#topnav li a:hover color set in theme StyleSheet.css */
/* ul#topnav li.nav-separator background set in theme StyleSheet.css */
ul#topnav li .sub
{
    position: absolute; /*--Important--*/
    top: 44px;
    left: 0;
    z-index: 99999;
    padding: 10px 10px 10px;
    float: left; /*--Bottom right rounded corner--*/
    -moz-border-radius-bottomright: 5px;
    -khtml-border-radius-bottomright: 5px;
    -webkit-border-bottom-right-radius: 5px; /*--Bottom left rounded corner--*/
    -moz-border-radius-bottomleft: 5px;
    -khtml-border-radius-bottomleft: 5px;
    -webkit-border-bottom-left-radius: 5px;
    display: none; /*--Hidden for those with js turned off--*/ /* background set in theme StyleSheet.css */
}
ul#topnav li .sub-right
{
    position: absolute; /*--Important--*/
    top: 44px;
    left: auto;
    right: 0;
}
ul#topnav li .row /*--If needed to break out into rows--*/
{
    clear: both;
    float: left;
    width: 100%;
}
ul#topnav li .sub ul
{
    list-style: none;
    margin: 0;
    padding: 0 0 0 0;
    width: 180px;
    display: block;
    float: left;
}
ul#topnav .sub ul li
{
    width: 100%; /*--Override parent list item--*/
    font-size: 12px;
    text-transform: none;
    height: auto;
    padding: 1px;
    margin: 3px;
}
ul#topnav .sub ul li h2 /*--Sub nav heading style--*/
{
    padding: 0;
    margin: 0;
    font-size: 1.3em;
    font-weight: normal;
}
ul#topnav .sub ul li h2 a /*--Sub nav heading link style--*/
{
    padding: 5px 0;
    background-image: none;
    /* color set in theme StyleSheet.css */
}
ul#topnav .sub ul li a
{
    float: none;
    text-indent: 0; /*--Override text-indent from parent list item--*/
    height: auto; /*--Override height from parent list item--*/
    padding-left: 20px;
    display: block;
    text-decoration: none;
    /* color set in theme StyleSheet.css */ /* background set in theme StyleSheet.css */
}
/* ul#topnav .sub ul li a:hover color set in theme StyleSheet.css */

/*===============
 Content Styling
===============*/
#content
{
    padding: 0px;
    margin: 0 auto;
    width: auto;
}
#content div#content-top-left
{
    float: left;
    width: 12px !important;
    height: 12px !important;
    background: url('/Assets/Layout/content-top-left.png') no-repeat !important;
}
#content div#content-top-right
{
    float: right;
    width: 12px !important;
    height: 12px !important;
    background: url('/Assets/Layout/content-top-right.png') no-repeat !important;
}
#content div#content-top
{
    margin: 0px 12px !important;
    width: auto;
    height: 12px !important;
    background: url('/Assets/Layout/content-top.png') repeat-x !important;
}
#content div#content-middle
{
}
#content div#content-middle-left
{
    margin: 0px;
    padding: 0px;
    background: url('/Assets/Layout/content-left.png') repeat-y !important;
    width: 100%;
}
#content div#content-middle-right
{
    margin: 0;
    padding: 0;
    background: url('/Assets/Layout/content-right.png') right repeat-y !important;
    width: 100%;
}
#content div#content-center
{
    padding: 1px;
    min-height: 800px;
    margin-left: 12px !important;
    margin-right: 12px !important;
    background-color: White;
}
#content div#content-bottom-left
{
    float: left;
    width: 12px !important;
    height: 12px !important;
    background: url('/Assets/Layout/content-bottom-left.png') no-repeat !important;
}
#content div#content-bottom-right
{
    float: right;
    width: 12px !important;
    height: 12px !important;
    background: url('/Assets/Layout/content-bottom-right.png') no-repeat !important;
}
#content div#content-bottom
{
    margin: 0px 12px !important;
    width: auto;
    height: 12px !important;
    background: url('/Assets/Layout/content-bottom.png') repeat-x !important;
}

/*==================
 .smcontent Styling
==================*/
.smcontent
{
    padding: 0px;
}
.smcontent div.content-top-left
{
    float: left;
    width: 12px !important;
    height: 12px !important;
    background: url('/Assets/Layout/content-top-left.png') no-repeat !important;
}
.smcontent div.content-top-right
{
    float: right;
    width: 12px !important;
    height: 12px !important;
    background: url('/Assets/Layout/content-top-right.png') no-repeat !important;
}
.smcontent div.content-top
{
    margin: 0px 12px !important;
    width: auto;
    height: 12px !important;
    background: url('/Assets/Layout/content-top.png') repeat-x !important;
}
.smcontent div.content-middle
{
}
.smcontent div.content-middle-left
{
    margin: 0px;
    padding: 0px;
    background: url('/Assets/Layout/content-left.png') repeat-y !important;
    width: 100%;
}
.smcontent div.content-middle-right
{
    margin: 0;
    padding: 0;
    background: url('/Assets/Layout/content-right.png') right repeat-y !important;
    width: 100%;
}
.smcontent div.content-center
{
    padding: 1px;
    margin-left: 12px !important;
    margin-right: 12px !important;
    background-color: White;
}
.smcontent div.content-bottom-left
{
    float: left;
    width: 12px !important;
    height: 12px !important;
    background: url('/Assets/Layout/content-bottom-left.png') no-repeat !important;
}
.smcontent div.content-bottom-right
{
    float: right;
    width: 12px !important;
    height: 12px !important;
    background: url('/Assets/Layout/content-bottom-right.png') no-repeat !important;
}
.smcontent div.content-bottom
{
    margin: 0px 12px !important;
    width: auto;
    height: 12px !important;
    background: url('/Assets/Layout/content-bottom.png') repeat-x !important;
}

/*=======================
 .gray-box-shadow styling
========================*/
.gray-box-shadow
{
    padding: 0px;
}
.gray-box-shadow div.top-left
{
    float: left;
    width: 12px !important;
    height: 12px !important;
    background: url('/Assets/Layout/gray-box-shadow-top-left.png') no-repeat !important;
}
.gray-box-shadow div.top-right
{
    float: right;
    width: 12px !important;
    height: 12px !important;
    background: url('/Assets/Layout/gray-box-shadow-top-right.png') no-repeat !important;
}
.gray-box-shadow div.top
{
    margin: 0px 12px !important;
    width: auto;
    height: 12px !important;
    background: url('/Assets/Layout/gray-box-shadow-top.png') repeat-x !important;
}
.gray-box-shadow div.middle
{
}
.gray-box-shadow div.middle-left
{
    margin: 0px;
    padding: 0px;
    background: url('/Assets/Layout/gray-box-shadow-left.png') repeat-y !important;
    width: 100%;
}
.gray-box-shadow div.middle-right
{
    margin: 0;
    padding: 0;
    background: url('/Assets/Layout/gray-box-shadow-right.png') right repeat-y !important;
    width: 100%;
}
.gray-box-shadow div.center
{
    padding: 1px;
    margin-left: 12px !important;
    margin-right: 12px !important;
    background-color: #f6f6f5;
}
.gray-box-shadow div.bottom-left
{
    float: left;
    width: 12px !important;
    height: 12px !important;
    background: url('/Assets/Layout/gray-box-shadow-bottom-left.png') no-repeat !important;
}
.gray-box-shadow div.bottom-right
{
    float: right;
    width: 12px !important;
    height: 12px !important;
    background: url('/Assets/Layout/gray-box-shadow-bottom-right.png') no-repeat !important;
}
.gray-box-shadow div.bottom
{
    margin: 0px 12px !important;
    width: auto;
    height: 12px !important;
    background: url('/Assets/Layout/gray-box-shadow-bottom.png') repeat-x !important;
}

/*===============
 Carousel Styling
================*/
div.jMyCarousel .prev
{
    background: url('/Assets/GalleryView/themes/dark/prev.png') center center no-repeat;
    width: 47px;
    height: 61px;
    border: 0px;
}
div.jMyCarousel .next
{
    background: url('/Assets/GalleryView/themes/dark/next.png') center center no-repeat;
    width: 40px;
    height: 61px;
    border: 0px;
}
div.jMyCarousel .up
{
    background: url('../../img/up.png') center center no-repeat;
    width: 61px;
    height: 40px;
    border: 0px;
}
div.jMyCarousel .down
{
    background: url('../../img/down.png') center center no-repeat;
    width: 47px;
    height: 61px;
    border: 0px;
}
div.jMyCarousel
{
    margin: auto;
    padding-left: 1;
}
div.jMyCarousel ul
{
    border: solid 2px white;
}
div.jMyCarousel ul li
{
    margin: .2px;
    line-height: 0px;
    padding: 34px;
    background: url('/Assets/Layout/homepage_carousel_divider.png') no-repeat right;
}
div.jMyCarousel ul li a
{
    /* in case of link */
    display: block;
    margin: 0px;
    padding: 0px;
}
div.jMyCarousel ul li a img
{
    display: block;
    border: 0px;
    margin-bottom: 0px;
    padding-bottom: 0px;
}

/*==================
 #mynothnagle styling
==================*/
#mynothnagle-flyout
{
    position: absolute;
    top: 0;
    right: 200px;
    width: 300px;
    z-index: 1000;
}
#mynothnagle-tab
{
    width: 132px;
    height: 32px;
    float: right;
    /* background set in theme StyleSheet.css */
    cursor: pointer;
}
#mynothnagle-login fieldset
{
    border: 0px;
}
#mynothnagle-login legend
{
    font-weight: bold;
    padding: 0 3px;
    color: White;
}
#mynothnagle-login a
{
    color: #FFF;
}
#mynothnagle-login
{
    color: #FFF;
    background-color: #b86868;
    z-index: -1;
    border: 1px solid #890304;
    display: none;
    margin-bottom: -1px;
}

/*============
 #Misc Styling
=============*/
.lpPoweredByDiv
{
    display: none !important;
}

.fieldlabel
{
    font-weight: bold;
    vertical-align: top;
    /* color set in theme StyleSheet.css */
}

.defaultbutton
{
}


.ListingBox
{
    padding: 2px 2px;
    vertical-align: top;
    margin: 2px 0;
    /* background set in theme StyleSheet.css */
    /* border set in theme StyleSheet.css */
}

.ContentBoxHeading
{
    font-family: verdana;
    font-size: 18px;
    padding-bottom: 4px;
    /* color set in theme StyleSheet.css */
}

.SectionHeading
{
    font-family: verdana;
    font-size: 18px;
    margin-top: 25px;
    margin-bottom: 10px;
    /* background set in theme StyleSheet.css */
    /* color set in theme StyleSheet.css */
}

.SubsectionLink
{
    font-size: 1.3em;
    text-decoration: none;
    /* color set in theme StyleSheet.css */
}
.SubsectionLink:hover
{
    text-decoration: underline;
}

ul.NoBullet
{
    list-style-type: none;
    padding-left: 0px;
    padding-right: 0px;
    margin: 5px 0;
}


@media screen
{
    #tblMain
    {
        width: 997px;
        border-top: 0px;
        background-color: #ffffff;
        /* border set in theme StyleSheet.css */
    }
    #tbHeader
    {
    }
    #tbPrintHeader
    {
        display: none;
    }
    .MainBody
    {
        background-color: #ffffff;
        padding: 5px;
        vertical-align: top;
        padding-right: 50px;
    }
    .nopad .MainBody
    {
        background-color: #ffffff;
        padding: 5px;
        vertical-align: top;
    }
    /* top right bottom left */
    #DevToolBox
    {
    }
    #tdAgentFrame
    {
    }
}
@media print
{
    body
    {
        margin: 0px;
        background: #FFFFFF;
    }
    #tblMain
    {
        background-color: #ffffff;
        width: 650px;
    }
    #tbHeader
    {
        display: none;
    }
    #tbPrintHeader
    {
    }
    #tdSideBar
    {
        display: none;
    }
    .MainBody
    {
        background-color: #ffffff;
        vertical-align: top;
        padding: 10px;
    }
    #DevToolBox
    {
        display: none;
    }
    #trRecentProps
    {
        display: none;
    }
    .printSpacer
    {
        page-break-after: always;
        height: 1px;
    }
    #big0
    {
        z-index: 1;
    }
}

#header #Logo
{
    margin-top: 10px;
    margin-left: 8px;
}

/* #header #Logo a background set in theme StyleSheet.css */

#Header div#SectionBanner
{
    width: 815px;
    height: 65px;
}

#Header div#Menu
{
    width: 815px;
    height: 35px;
}

#ContentLeft
{
    width: 808px;
}

#ContentRight
{
    width: 142px;
}

#ContentRight input
{
    border: solid 1px #999999 !important;
}

.greyborder
{
    border: solid 1px #999999 !important;
}

.ChatBox
{
    width: 150px;
    background-color: #c70606;
}

.TanBox
{
    border: 1px solid rgb(183, 180, 149);
    background-color: #e0ddba !important;
    height: 435px;
    width: 531px;
    padding-right: 450px;
    padding-left: 4px;
}

.idxFooter
{
    font-size: 10px;
    color: #666666;
    padding: 2px;
}
.idxFooter p
{
    font-size: 10px;
}
.map_icon
{
    display: inline;
}

span.StatusRed
{
    color: Red;
}
.StatusRed
{
    padding: 0px;
    width: auto;
    text-align: center;
}
.StatusRed div.TopLeft
{
    float: left;
    width: 6px !important;
    height: 6px !important;
    background: url('/Assets/RoundedCorners/Red/RoundedCorner_Top_Left.png') no-repeat !important;
}
.StatusRed div.TopRight
{
    float: right;
    width: 6px !important;
    height: 6px !important;
    background: url('/Assets/RoundedCorners/Red/RoundedCorner_Top_Right.png') no-repeat !important;
}
.StatusRed div.Top
{
    margin: 0px 6px !important;
    width: auto;
    height: 6px !important;
    background: url('/Assets/RoundedCorners/Red/RoundedCorner_Top.png') repeat-x !important;
}
.StatusRed div.Middle
{
}
.StatusRed div.MiddleLeft
{
    margin: 0px;
    padding: 0px;
    background: url('/Assets/RoundedCorners/Red/RoundedCorner_Left.png') repeat-y !important;
    width: 100%;
}
.StatusRed div.MiddleRight
{
    margin: 0;
    padding: 0;
    background: url('/Assets/RoundedCorners/Red/RoundedCorner_Right.png') right repeat-y !important;
    width: 100%;
}
.StatusRed div.Center
{
    padding: 1px;
    margin-left: 6px !important;
    margin-right: 6px !important;
    background: #FF4C4C !important;
    color: White;
}
.StatusRed div.BottomLeft
{
    float: left;
    width: 6px !important;
    height: 6px !important;
    background: url('/Assets/RoundedCorners/Red/RoundedCorner_Bottom_Left.png') no-repeat !important;
}
.StatusRed div.BottomRight
{
    float: right;
    width: 6px !important;
    height: 6px !important;
    background: url('/Assets/RoundedCorners/Red/RoundedCorner_Bottom_Right.png') no-repeat !important;
}
.StatusRed div.Bottom
{
    margin: 0px 6px !important;
    width: auto;
    height: 6px !important;
    background: url('/Assets/RoundedCorners/Red/RoundedCorner_Bottom.png') repeat-x !important;
}

.DevTools
{
    padding: 4px;
    background-color: #FFFFFF;
}
.DevTools ul
{
    margin: 0px;
    padding: 0px;
}
.DevTools li
{
    display: inline;
    margin: 0px 10px;
}

/*================
 Grideview Styling
=================*/
/* .GridViewRowHighlight background-color set in theme StyleSheet.css */
.RowStyle td
{
    vertical-align: top;
    padding: 2px;
    /* color set in theme StyleSheet.css */
    /* background-color set in theme StyleSheet.css */
}
.AlternatingRowStyle td
{
    vertical-align: top;
    padding: 2px;
    /* background-color set in theme StyleSheet.css */
}
.GridViewRowHighlight
{
    background-color: #FFE6A0 !important;
}
.GridViewTitle
{
    font-size: 14px;
    font-weight: bold;
    padding-left: 2px;
    /* color set in theme StyleSheet.css */
}

/*================
 #Gridline Styling
=================*/
.GridLine1
{
    border-left: 1px solid #CCCCCC;
    border-right: 1px solid #CCCCCC;
    padding: 4px;
    /* background-color set in theme StyleSheet.css */
}
.GridLine2
{
    border-style: solid;
    border-width: 2px 1px 1px;
    padding: 4px;
    /* background-color set in theme StyleSheet.css */
    /* border-color set in theme StyleSheet.css */
    
}

/*===================
 .TableHeader styling
====================*/
.TableHeader a
{
    color: White !important;
}
.TableHeader th
{
    background-color: Gray;
    border: 1px solid #c7cbac;
    color: White;
    text-align: left;
    padding-top: 2px;
    padding-bottom: 2px;
    padding-left: 2px;
}

/*=======================================================
                      HOME PAGE STYLING
=========================================================*/
/*==================
 Noogle Styling
==================*/
#noogle
{
    padding: 0px;
    margin: 12px auto;
    width: auto;
    text-align: center;
}
#noogle div#noogle-top-left
{
    float: left;
    width: 12px !important;
    height: 12px !important;
    /* background set in theme StyleSheet.css */
}
#noogle div#noogle-top-right
{
    float: right;
    width: 12px !important;
    height: 12px !important;
    /* background set in theme StyleSheet.css */
}
#noogle div#noogle-top
{
    margin: 0px 12px !important;
    width: auto;
    height: 12px !important;
    /* background set in theme StyleSheet.css */
}
#noogle div#noogle-middle
{
}
#noogle div#noogle-middle-left
{
    margin: 0px;
    padding: 0px;
    width: 100%;
    /* background set in theme StyleSheet.css */
}
#noogle div#noogle-middle-right
{
    margin: 0;
    padding: 0;
    width: 100%;
    /* background set in theme StyleSheet.css */
}
#noogle div#noogle-center
{
    padding: 1px;
    margin-left: 12px !important;
    margin-right: 12px !important;
    /* background-color set in theme StyleSheet.css */
}
#noogle div#noogle-bottom-left
{
    float: left;
    width: 12px !important;
    height: 12px !important;
    /* background set in theme StyleSheet.css */
}
#noogle div#noogle-bottom-right
{
    float: right;
    width: 12px !important;
    height: 12px !important;
    /* background set in theme StyleSheet.css */
}
#noogle div#noogle-bottom
{
    margin: 0px 12px !important;
    width: auto;
    height: 12px !important;
    /* background set in theme StyleSheet.css */
}
#noogle table
{
    margin: 0 auto;
}
#noogle .qsearch
{
    text-transform: uppercase;
    font-weight: bold;
    font-size: 18px;
    /* color set in theme StyleSheet.css */
}
.noogle-go
{
    width: 38px;
    height: 27px;
}

/*========================
 Homepage sections styling
=========================*/
.twitter-box
{
    padding: 15px 45px 0 45px;
    width: 210px;
    height: 215px;
    background: url('/Assets/Layout/homepage_twitter.png') no-repeat center top;
    display: inline-block;
    word-wrap: break-word;
}

li.details-bullet
{
    margin: 3px 0;
    padding-left: 20px;
    padding-bottom: 2px;
}

/* #photo-gallery background set in theme StyleSheet.css */
/* #guided-tour background set in theme StyleSheet.css */
/* #threesixty-tour background set in theme StyleSheet.css */
/* #aerial-gallery background set in theme StyleSheet.css */

/*========================
 Home Page Bullets Styling
=========================*/
ul.homepage-list
{
    margin: 5px;
    padding: 0px;
}
li.homepage-bullet
{
    padding-left: 35px;
}
/* #email_me_listings background set in theme StyleSheet.css */
/* #print_ads_online background set in theme StyleSheet.css */
/* #mortgage_services background set in theme StyleSheet.css */
/* #refinancing background set in theme StyleSheet.css */
/* #why_nothngagle background set in theme StyleSheet.css */
/* #seven_steps background set in theme StyleSheet.css */
/* #relo background set in theme StyleSheet.css */
/* #allstate background set in theme StyleSheet.css */
/* #home_services background set in theme StyleSheet.css */
/* #home_warranty background set in theme StyleSheet.css */


/*=====================
 .homepage-box Styling
=====================*/
.homepage-box
{
    padding: 0px;
    width: 315px;
    cursor: inherit;
    /* color set in theme StyleSheet.css */
}
/*.homepage-box h1 color set in theme StyleSheet.css */
/*.homepage-box:hover h1 color set in theme StyleSheet.css */
.homepage-box #propSearch td
{
    text-transform: uppercase;
    font-weight: bold;
}
.homepage-box #propSearch td select, .homepage-box #propSearch td a
{
    text-transform: capitalize;
}
.homepage-box li
{
    margin: 10px 0;
    display: block;
}
.homepage-box div.homepage-box-middle
{
}
.homepage-box div.homepage-box-middle-left
{
    margin: 0px;
    padding: 0px;
    background: url('/Assets/Layout/homepage-box-left.png') no-repeat bottom left;
    width: 100%;
}
.homepage-box div.homepage-box-middle-right
{
    margin: 0;
    padding: 0;
    background: url('/Assets/Layout/homepage-box-right.png') no-repeat bottom right;
    width: 100%;
}
.homepage-box div.homepage-box-center
{
    padding: 1px;
    min-height: 590px;
    margin-left: 12px !important;
    background: url('/Assets/Layout/homepage-box-middle.png') repeat-x bottom;
    margin-right: 17px !important;
    background-color: White;
}
.homepage-box div.homepage-box-bottom-left
{
    float: left;
    width: 17px !important;
    height: 15px !important;
    background: url('/Assets/Layout/homepage-box-bottom-left.png') no-repeat !important;
}
.homepage-box div.homepage-box-bottom-right
{
    float: right;
    width: 17px !important;
    height: 15px !important;
    background: url('/Assets/Layout/homepage-box-bottom-right.png') no-repeat !important;
}
.homepage-box div.homepage-box-bottom
{
    margin: 0px 17px !important;
    width: auto;
    height: 15px !important;
    background: url('/Assets/Layout/homepage-box-bottom.png') repeat-x !important;
}
