﻿/* 
Mahtab (08-08) problem with text-align : center
In IE (7) this displays as I would expect (with the table centered).  
However with Firefox (3.0.1) the table is left aligned.
Apparently this is due to a bug with the way FF handles CSS. 
I tried many things and interestingly -moz-center works in FF (it's like they realized 'Duh! ... center doesn't work' and made up their own version of it)
But this doesn't work in IE so I found a weird solution and there it is: We will have 2 body class :S
I know ... don't ask me why but it now works properly in both browseres !!
*/

body /* Internet Explorer alignment*/
{
    margin-left: auto;
    margin-top: 0px;
    margin-right: auto;
    margin-bottom: 0px;
    background-image: url(../images/bg.gif);
    background-repeat: repeat-x;
    background-position: left top;
    background-color: #1f1f1f;
    text-align: center;
}
body /* Mozilla Firefox alignment */
{
    margin-left: auto;
    margin-top: 0px;
    margin-right: auto;
    margin-bottom: 0px;
    background-image: url(../images/bg.gif);
    background-repeat: repeat-x;
    background-position: left top;
    background-color: #1f1f1f;
    text-align: -moz-center;
}
.bodyText
{
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    color: #ffffff;
    text-align: justify;
    line-height: 16px;
    padding: 10px 5px 5px 5px;
}
.bodyText a
{
    color: #ccc;
    text-decoration: underline;
    text-align: left;
}
.mainTable
{
    width: 1000px;
    border: 0px;
    text-align: center;
}
.bodyText a:hover
{
    color: #ccc;
    text-decoration: none;
}
img
{
    border-style: none;
}
.leftSideBar
{
    width: 6px;
    background-image: url(../images/leftSideBarImage.gif);
}
.body_BorderedTable
{
    background-color: #1f1f1f;
    border-color: #666666;
    border-width: 1px;
    border-style: solid;
    padding: 10px;
}
.body_BorderlessTable
{
}
.rightSidebar
{
    font-size: 11px;
    padding: 10px;
    font-family: Arial, Helvetica, sans-serif;
    text-align: justify;
    color: #ccc;
}
.rightSidebar a
{
    font-size: 11px;
    padding: 0px;
    font-family: Arial, Helvetica, sans-serif;
    text-align: justify;
    color: #999;
}
.rightSideTitle
{
    font-size: 12px;
    font-family: Arial, Helvetica, sans-serif;
    text-align: justify;
    color: #acba38;
}
.middlebar_Title
{
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    color: #acba38;
    display: block;
    font-weight: bold;
}
.middlebar_SubTitle
{
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    color: #ffffff;
    display: block;
    font-weight: bold;
}
.middlebar_SubTitle a
{
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    color: #ccc;
    text-decoration: underline;
    font-weight: bold;
}

.middlebar_SubTitle a:hover
{
    color: #ccc;
    text-decoration: none;
}

.sidebar_Title
{
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    font-weight: bold;
    color: #cccccc;
    margin-top: 15px;
    display: block;
    padding-left: 8px;
    padding-bottom: 8px;
}
.sidebar_Buttons
{
    font-size: 12px;
    font-family: Arial, Helvetica, sans-serif;
    width: 160px;
    color: #cccccc;
    text-align: left;
    background-image: url(../images/buttonImage.gif);
    background-repeat: repeat-x;
    border: 0px;
    border-left-color: #333333;
    border-left-style: solid;
    border-left-width: 1px;
    border-right-color: #333333;
    border-right-style: solid;
    border-right-width: 1px;
    padding-left: 5px;
}
.sidebar_Buttons a
{
    font-size: 12px;
    font-family: Arial, Helvetica, sans-serif;
    width: 160px;
    color: #cccccc;
    text-align: left;
    text-decoration: none;
    padding-left: 5px;
}
.sidebar_Buttons a:hover
{
    font-size: 12px;
    font-family: Arial, Helvetica, sans-serif;
    width: 160px;
    color: #cccccc;
    text-align: left;
    text-decoration: underline;
    padding-left: 5px;
}
.qSearchFeatures
{
    font-size: 12px;
    display: block;
    font-family: Arial,Helvetica,sans-serif;
    color: #cccccc;
    text-align: left;
    padding-left: 5px;
}
.footerText
{
    font-family: Arial,Helvetica,sans-serif;
    font-size: 11px;
    color: #cccccc;
    text-align: center;
}

.footerText a
{
    text-decoration: underline;
    color: #999999;
}

.allButtons
{
    width: 160px;
    margin: 10px 0 0 0;
    background-color: #151515;
    border: solid 1px #4e4e4c;
    vertical-align: middle;
    color: #cccccc;
    font-family: Arial,Verdana,Tahoma;
    font-size: 12px;
    text-align: left;
    padding-left: 5px;
    text-decoration: none;
}

/***************************************************************/
/******** CSS for Quick Serach on the left side panel **********/
/***************************************************************/

.QuickSearchTitle
{
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    font-weight: bold;
    color: #cccccc;
    margin-bottom: 20px;
    display: block;
    text-align: left;
    padding-left: 10px;
}

.QuickSearchTable
{
    padding-left: 5px;
}

.QuickSearchDropDown
{
    font-family: Arial,Helvetica,sans-serif;
    font-size: 12px;
    width: 155px;
    color: #666666;
    margin-bottom: 10px;
}
.QuickSearchDoubleDropDown
{
    font-family: Arial,Helvetica,sans-serif;
    font-size: 12px;
    width: 155px;
    color: #666666;
    margin-bottom: 10px;
}
.QuickSearchTypeLabel
{
    font-size: 12px;
    display: block;
    font-family: Arial,Helvetica,sans-serif;
    color: #cccccc;
}
.QuickSearchCategoryLabel
{
    font-size: 12px;
    display: block;
    font-family: Arial,Helvetica,sans-serif;
    color: #cccccc;
}
.QuickSearchLabel
{
    font-size: 12px;
    display: block;
    font-family: Arial,Helvetica,sans-serif;
    color: #cccccc;
    text-align: left;
}
.QuickSearchBedroomsLabel
{
    font-size: 12px;
    border-color: #333333;
    border-style: solid;
    border-width: 1px;
}
.QuickSearchPriceLabel
{
    font-size: 12px;
    border-color: #333333;
    border-style: solid;
    border-width: 1px;
    margin-bottom: 10px;
}
.QuickSearchButton
{
    width: 160px;
    margin: 10px 0 0 0;
    background-color: #151515;
    border: solid 1px #4e4e4c;
    vertical-align: middle;
    color: #cccccc;
    font-family: Arial,Verdana,Tahoma;
    font-size: 12px;
    text-align: left;
    padding-left: 5px;
    text-decoration: none;
}

/***************************************************************/
/*************** CSS for serach results listing ****************/
/***************************************************************/

.StandardSearchTable
{
    background-image: url(../images/searchDisplayBG.gif);
    background-repeat: repeat-x;
    border: solid 1px #3f4040;
    width: 700px; /* height: 108px; */
    text-align: justify;
    margin-bottom: 5px;
    background-color: #2e2e2e;
    padding: 5px;
}
.StandardSearchHeading
{
    padding-left: 7px;
    vertical-align: top;
    height: 20px;
}
.StandardSearchDetails
{
    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;
    color: White;
    padding-left: 10px;
    height: 85px;
    vertical-align: top;
}
.StandardSearchTitle
{
    font-family: Tahoma, Arial, Verdana;
    color: #acba38;
    font-size: 12px;
    font-weight: bold;
    display: block;
}
.StandardSearchPrice
{
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    color: White;
    text-align: left;
    height: 20px;
    width: 700px;
}
.StandardSearchRoomNumber
{
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    color: White;
}
.StandardSearchAttributesTable
{
    width: 600px;
    vertical-align: top;
}
.StandardSearchRoomsTable
{
    text-align: right;
    padding-left: 200px;
}
.StandardSearchRooms
{
    text-align: right;
    width: 200px;
}

.StandardSearchImage
{
    border: solid 1px #999999;
    height: 90px;
}
.SearchStandardPagingTable
{
    background-image: url(../images/searchDisplayBG.gif);
    background-repeat: repeat-x;
    border: solid 1px #3f4040;
    width: 734px;
    font-family: Arial, Tahoma, Verdana;
    font-size: 11px;
    color: White;
}
.SearchStandardPagingTable a
{
    font-family: Arial, Tahoma. Verdana;
    font-size: 11px;
    color: White;
}
.SearchStandardPaging
{
    width: 5px;
}
.SearchStandardPagingCurrent
{
    width: 5px;
}
.SearchStandardPagingCurrent a
{
    text-decoration: none;
    color: #acba38;
    font-weight: bold;
}
.SearchStandardPagingPrevious
{
    width: 5px;
}

/***************************************************************/
/*************** CSS for serach results listing ****************/
/***************************************************************/

.ProjectSearchTable
{
    background-image: url(../images/searchDisplayBG.gif);
    background-repeat: repeat-x;
    border: solid 1px #3f4040;
    width: 700px; /* height: 108px; */
    text-align: justify;
    margin-bottom: 5px;
    background-color: #2e2e2e;
    padding: 5px;
}
.ProjectSearchHeading
{
    padding-left: 7px;
    vertical-align: top;
    height: 20px;
}
.ProjectSearchDetails
{
    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;
    color: White;
    padding-left: 10px;
    height: 85px;
    width: 610px;
    vertical-align: top;
}
.ProjectSearchTitle
{
    font-family: Tahoma, Arial, Verdana;
    color: #acba38;
    font-size: 12px;
    font-weight: bold;
    display: block;
}
.ProjectSearchPrice
{
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    color: White;
    text-align: left;
    height: 20px;
    width: 700px;
}
.ProjectSearchRoomNumber
{
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    color: White;
}
.ProjectSearchAttributesTable
{
    width: 600px;
    vertical-align: top;
}
.ProjectSearchRoomsTable
{
    text-align: right;
    padding-left: 200px;
}
.ProjectSearchRooms
{
    text-align: right;
    width: 200px;
}

.ProjectSearchImage
{
    border: solid 1px #999999;
    height: 90px;
}
.ProjectSearchPagingTable
{
    background-image: url(../images/searchDisplayBG.gif);
    background-repeat: repeat-x;
    border: solid 1px #3f4040;
    width: 700px;
    font-family: Arial, Tahoma, Verdana;
    font-size: 11px;
    color: White;
}
.ProjectSearchPagingTable a
{
    font-family: Arial, Tahoma. Verdana;
    font-size: 11px;
    color: White;
}

.ProjectSearchPaging
{
    width: 5px;
}
.ProjectSearchPagingCurrent
{
    width: 5px;
}
.ProjectSearchPagingCurrent a
{
    text-decoration: none;
    color: #acba38;
    font-weight: bold;
}
.ProjectSearchPagingPrevious
{
    width: 5px;
}

/***************************************************************/
/***************** CSS for property display ********************/
/***************************************************************/

.ListingDisplayTitle
{
    font-family: Tahoma, Arial, Verdana;
    color: #acba38;
    font-weight: bold;
    font-size: 13px;
}
.ListingDisplayAddress
{
    font-family: Tahoma, Arial, Verdana;
    color: white;
    font-size: 13px;
}
.ListingEnquirtySubmittedMessage
{
    font-family: Tahoma, Arial, Verdana;
    color: #acba38;
    font-size: 12px;
}
.ListingDisplayAttributesTable
{
    width: 400px;
}
.ListingDisplayPrice
{
    font-family: Tahoma, Arial, Verdana;
    color: white;
    font-weight: bold;
    font-size: 12px;
    width: 310px;
}
.ListingDisplayRoomNumber
{
    font-family: Tahoma, Arial, Verdana;
    color: white;
    font-size: 12px;
}
.ListingDisplayDescriptionTable
{
    font-family: Tahoma, Arial, Verdana;
    color: white;
    font-size: 12px;
    width: 90%;
    text-align: justify;
    padding-bottom: 20px;
}
.ListingDisplayFeaturesHeading
{
    font-family: Tahoma, Arial, Verdana;
    color: #acba38;
    font-weight: bold;
    font-size: 13px;
    padding-top: 10px;
}
.ListingDisplayFeaturesList
{
    font-family: Tahoma, Arial, Verdana;
    color: white;
    font-size: 12px;
}
.ListingDisplayInspectionsNone
{
    font-family: Tahoma, Arial, Verdana;
    color: white;
    font-size: 12px;
}
.SubscriberAgentsDisplayTable
{
    width: 100%;
}
.SubscriberAgentsDisplayProfileHeading
{
    font-family: Tahoma, Arial, Verdana;
    color: white;
    font-size: 13px;
}

.AgentDisplayName
{
    font-family: Tahoma, Arial, Verdana;
    color: #acba38;
    font-weight: bold;
    font-size: 13px;
}
.AgentDisplayProfileLink
{
    font-family: Tahoma, Arial, Verdana;
    color: #acba38;
    font-size: 12px;
}
.AgentDisplayPhone
{
    font-family: Tahoma, Arial, Verdana;
    color: white;
    font-size: 12px;
}
.SubscriberAgentsDisplayPhoneLabel
{
    font-family: Tahoma, Arial, Verdana;
    color: white;
    font-size: 12px;
}

.AgentDisplayMobile
{
    font-family: Tahoma, Arial, Verdana;
    color: white;
    font-size: 12px;
}
.SubscriberAgentsDisplayProfileLink
{
    display: block;
}
.AgentDisplayEmail
{
    font-family: Tahoma, Arial, Verdana;
    color: white;
    font-size: 13px;
}
.AgentDisplayImageCell
{
    border: solid 1px #666666;
    width: 100px;
}
.AgentDisplayDetails
{
    display: block;
    padding-left: 15px;
    padding-right: 10px;
}
.ListingDisplayDetailsLeft
{
    width: 430px;
    vertical-align: top;
}
.ListingDisplayDetailsTable
{
    width: 100%;
    padding-bottom: 10px;
}

.ListingDisplayDetailsTable td
{
    vertical-align: top;
}

/***************************************************************/
/******** CSS for Base Serach on the left side panel ***********/
/***************************************************************/

.BaseSearchTitle
{
    font-family: Arial, Helvetica, sans-serif;
    font-size: 18px;
    font-weight: bold;
    color: #cccccc;
    margin-bottom: 20px;
    display: block;
    text-align: left;
}

.BaseSearchTextBox
{
    width: 50px;
    font-family: Arial,Helvetica,sans-serif;
    font-size: 12px;
    color: #666666;
    margin-bottom: 10px;
}

.BaseSearchDropDown
{
    font-family: Arial,Helvetica,sans-serif;
    font-size: 12px;
    width: 155px;
    color: #666666;
    margin-bottom: 10px;
}
.BaseSearchDoubleDropDown
{
    font-family: Arial,Helvetica,sans-serif;
    font-size: 12px;
    width: 155px;
    color: #666666;
    margin-bottom: 10px;
}
.BaseSearchTypeLabel
{
    font-size: 12px;
    font-family: Arial,Helvetica,sans-serif;
    color: #cccccc;
}
.BaseSearchCategoryLabel
{
    font-size: 12px;
    font-family: Arial,Helvetica,sans-serif;
    color: #cccccc;
}
.BaseSearchLabel
{
    font-size: 12px;
    display: block;
    font-family: Arial,Helvetica,sans-serif;
    color: #cccccc;
    text-align: left;
}
.BaseSearchBedroomsLabel
{
    font-size: 12px;
    border-color: #333333;
    border-style: solid;
    border-width: 1px;
}
.BaseSearchPriceLabel
{
    font-size: 12px;
    border-color: #333333;
    border-style: solid;
    border-width: 1px;
    margin-bottom: 10px;
}
.BaseSearchButton
{
    font-size: 16px;
    font-family: Arial, Helvetica, sans-serif;
    width: 160px;
    font-weight: bold;
    margin: 10px 0 0 0;
    color: #cccccc;
    text-align: left;
    background-image: url(../images/buttonImage.gif);
    background-repeat: repeat-x;
    border: 0px;
    padding-left: 5px;
}
.ListingDisplayGoogleMapTable
{
    /*border:1px solid #666666;*/
    height: 290px;
    margin-right: 20px;
    vertical-align: top;
    text-align: center;
}

/***************************************************************/
/******** CSS for Enquiry Form in Property Display Pages *******/
/***************************************************************/

.ListingEnquiryHeading
{
    font-family: Tahoma, Arial, Verdana;
    color: #acba38;
    font-weight: bold;
    font-size: 13px;
    display: block;
    margin-bottom: 10px;
    margin-top: 10px;
    margin-left: 5px;
}
.ListingDisplayInspectionsHeading
{
    color: #ACBA38;
    font-family: Tahoma,Arial,Verdana;
    font-size: 13px;
    font-weight: bold;
    padding-top: 10px;
}
.ListingDisplayInspectionsLabel
{
    color: white;
    font-family: Tahoma,Arial,Verdana;
    font-size: 12px;
    font-weight: bold;
}
.ListingDisplayInspections
{
    color: white;
    font-family: Tahoma,Arial,Verdana;
    font-size: 12px;
}
.ListingEnquiryRow
{
    color: white;
    font-family: Tahoma,Arial,Verdana;
    font-size: 12px;
}
.ListingEnquiryLabel
{
    display: block;
    margin-left: 5px;
}
.ListingDisplayEnquiryTable
{
    border: 1px solid #666666;
    display: block;
    width: 250px;
    margin-left: 5px;
}
.ListingEnquirySubmit
{
    display: block;
    margin-top: 10px;
    padding-bottom: 10px;
}
.ListingEnquiryTextBox
{
    margin-bottom: 5px;
    margin-top: 5px;
    width: 220px;
    margin-left: 5px;
}
.ListingEnquiryTextArea
{
    width: 220px;
    height: 65px;
    margin-left: 5px;
}
.ListingEnquiryButton
{
    background-color: #151515;
    border: 1px solid #4E4E4C;
    color: #CCCCCC;
    font-family: Arial,Verdana,Tahoma;
    font-size: 12px;
    margin: 10px 0 0;
    padding-left: 5px;
    text-align: left;
    text-decoration: none;
    vertical-align: middle;
    width: 160px;
}
/***************************************************************/
/******************** Contact page Text fields *****************/
/***************************************************************/

.ContactTxtFields
{
    width: 200px;
}
.ContactTxtFieldsRequired
{
    font-size: 12px;
    text-align: left;
    background-image: url(http://www.brightfox.com.au/foxdata/images/required.gif);
    background-position: right top;
    background-repeat: no-repeat;
    width: 200px;
}
.SubscriberDisplayInfo a:link
{
    color: #cccccc;
}

/***************************************************************/
/************ Latest News under Company profile ****************/
/***************************************************************/

.PublicationDisplayTable
{
    width: 100%;
    background-image: url(../images/newsBG.gif);
    background-repeat: repeat-x;
    background-color: #1c1c1c;
    border: 0 none;
    color: #CCCCCC;
    border: 1px solid #3F4040;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    vertical-align: middle;
    margin-bottom: 10px;
}

.PublicationDisplayIcon
{
}

.PublicationDisplayHeading
{
    display: none;
}

.PublicationDisplayTitle
{
    font-weight: bold;
    padding: 10px;
    color: #ACBA38;
}

.PublicationDisplayRow
{
    color: White;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-weight: bold;
}

.PublicationDisplayDate
{
    padding: 10px;
    vertical-align: top;
    width: 100px;
}

.PublicationDisplayDescription
{
    color: White;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-weight: normal;
    padding-bottom: 5px;
    padding: 10px;
}
.PublicationDisplayLink a
{
    color: #999999;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    padding: 10px;
}

.PublicationDisplayLink
{
}

.PublicationDisplayLink a:hover
{
    color: #999999;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
}

/***************************************************************/
/**************************** Our Team *************************/
/***************************************************************/

.SubscriberAgentsDisplayDetails
{
    vertical-align: top;
}

.SubscriberAgentsDisplayName
{
    color: #ACBA38;
    display: block;
    font-family: Tahoma,Arial,Verdana;
    font-size: 12px;
    font-weight: bold;
}

.SubscriberAgentsDisplayPhone
{
    color: White;
    font-family: Tahoma,Verdana,Arial;
    font-size: 12px;
    display: block;
}

.SubscriberAgentsDisplayMobile
{
    color: White;
    font-family: Tahoma,Verdana,Arial;
    font-size: 12px;
    display: block;
}

.SubscriberAgentsDisplayEmail a:link
{
    color: White;
    font-family: Tahoma,Verdana,Arial;
    font-size: 12px;
    display: block;
}

.SubscriberAgentsDisplayEmail a:visited
{
    color: White;
    font-family: Tahoma,Verdana,Arial;
    font-size: 12px;
    display: block;
}

.SubscriberAgentsDisplayImage
{
    border: 1px solid #666666;
    display: block;
    width: 90px;
}

/***************************************************************/
/**************** Static Project Display Page ******************/
/***************************************************************/

.projectDisplayTable
{
    background-image: url(../images/projectDisplayBG.gif);
    background-repeat: repeat-x;
    border: 1px solid #3F4040;
    margin-bottom: 5px;
    text-align: justify;
    width: 720px;
}

.projectDisplayImage
{
    border: 1px solid white;
    height: 126px;
    width: 168px;
}

.projectDisplayTitle
{
    color: #ACBA38;
    display: block;
    font-family: Tahoma,Arial,Verdana;
    font-size: 12px;
    font-weight: normal;
}

.projectDisplayDetails
{
    color: White;
    font-family: Tahoma,Verdana,Arial;
    font-size: 11px;
}

.projectDisplayView
{
    width: 144px;
    height: 27px;
    background-color: #151515;
    border: solid 1px #4e4e4c;
    vertical-align: middle;
    color: #cccccc;
    font-family: Arial,Verdana,Tahoma;
    font-size: 11px;
    text-align: center;
}

.viewProjectLink
{
    color: #cccccc;
    font-family: Arial,Verdana,Tahoma;
    font-size: 11px;
    text-align: center;
    text-decoration: none;
}
.ListingDisplayMap
{
    vertical-align: top;
}

.ListingDisplayAttributesTable
{
    width: 90%;
    padding-bottom: 10px;
}
.ListingDisplayPrice
{
    width: 90%;
}


/***************************************************************/
/******************** Featured Display *************************/
/***************************************************************/

.FeaturedListingTable
{
    height: 148px;
    padding: 0px;
}


/***************************************************************/
/************* CSS for Office Locations Page *******************/
/***************************************************************/

#sheet 
{
    margin-left: 15px;
    width: 745px;
    padding: 0px;
}

.office_image 
{
    width:362px;
    padding: 0px;
    padding-right: 5px;
    float: left;
}

.office_image img 
{
    width: 362px;
}

.office_map 
{
    width: 362px;
    padding: 0px;
    padding-left: 5px;
    float: left;
}

.office 
{   
    padding: 0px;
}

.office_desc 
{
    clear: both;
    border-bottom: 1px solid #4e4e4c;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.office_title 
{
    padding-top: 5px;
    font-weight: bold;
    font-size: 14px;
    font-family: Arial, Helvetica 25 UltraLight, Sans-Serif;
}

.office_text 
{
    margin-top: 5px;
    font-size: 12px;
    font-family: Arial, Helvetica 25 UltraLight, Sans-Serif;
    font-weight: 600;
}





.clearfix:after {
	content: ".";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
}
 
.clearfix {
	display: inline-block;
}
 
html[xmlns] .clearfix {
	display: block;
}
 
* html .clearfix {
	height: 1%;
}  
