﻿/* Layout */
/* This rule resets a core set of elements so that they will appear consistent across browsers. Without this rule, content styled with an h1 tag, for example, would appear in different places in Firefox and Internet Explorer because each browser has a different top margin default value. By resetting these values to 0, the elements will initially be rendered in an identical fashion and their properties can be easily defined by the designer in any subsequent rule. */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6{ margin:0;  padding:0;  border:0;  outline:0;  font-size:100%}
/* The body is the outermost layout component and contains the visible page content. Setting properties for the body element will help to create consistent styling of the page content and more manageable CSS. Besides using the body element to set global properties, it is common to use the body element to set the background color of the page and create a centered container for the page content to display. */
body
{
    color: #999999;
    margin: 0 0 0 0; /* Sets the margin properties for an element using shorthand notation (top,right,bottom,left) */
    padding: 0 0 0 0; /* Sets the padding properties for an element using shorthand notation (top,right,bottom,left) */
    text-align: center; /* Centers the page content container in IE 5 browsers. */
    background: #feae31 url(../img/bg5.jpg) repeat-x;
    font: 0.7em/1.5em Verdana, Arial, Helvetica, sans-serif;
    text-decoration: none;
}
/* Commonly used to style page titles. */
h1{ color:#000;  font-size:14px;  font-weight:bold;  line-height:14px}
/* Commonly used to style section titles. */
h2{ color:#000;  font-size:12px;  font-weight:bold;  line-height:14px}
/* Sets the style for unvisited links. */
a,  a:link, a:visited{ color:#00F;  font-weight:bold;  text-decoration:none}
/* Sets the style for links on mouseover. */
a:hover{ text-decoration:underline}
/* Sets the style for a link that has focus. */
a:focus, a:active{ color:#000}
/* This is a container for the page content. It is common to use the container to constrain the width of the page content and allow for browser chrome to avoid the need for horizontal scrolling. For fixed layouts you may specify a container width and use auto for the left and right margin to center the container on the page. IE 5 browser require the use of text-align:center defined by the body element to center the container. For liquid layouts you may simply set the left and right margins to center the container on the page. */
#outerWrapper{background-color:#fff; /* Sets the margin properties for an element using shorthand notation (top,right,bottom,left) */text-align:left; /* Redefines the text alignment defined by the body element. */width:961px; margin-top:0; margin-right:auto; margin-bottom:0; margin-left:auto}
#outerWrapper #header
{
    background-position: center center;
    font-size: 18px;
    font-weight: bold;
    height: 180px;
    line-height: 15px; /* Sets the padding properties for an element using shorthand notation (top,right,bottom,left) */
    width: 946px;
    background: #FFCC66 url(../img/header9.jpg);
    border-top-width: 5px;
    border-right-width: 5px;
    border-left-width: 5px;
    border-top-style: solid;
    border-right-style: solid;
    border-bottom-style: none;
    border-left-style: solid;
    border-top-color: #FFCC66;
    border-right-color: #FFCC66;
    border-left-color: #FFCC66;
    color: #FFFFFF;
    background-repeat: no-repeat;
    font-family: Verdana;
    padding-left: 5px;
}
#outerWrapper #topNavigation
{
    background-color: #FFCC66; /* Sets the bottom border properties for an element using shorthand notation */
    height: 35px; /* Sets the padding properties for an element using shorthand notation (top,right,bottom,left) */
    width: 941px;
    padding: 10px;
}

/* Columns */
#outerWrapper #contentWrapper #rightColumn1
{
    /* Sets the left border properties for an element using shorthand notation */
    background-position: #FFCC66;
    border-left: solid 1px #666;
    float: right; /* Sets the padding properties for an element using shorthand notation (top,right,bottom,left) */
    width: 12em;
    background: #FFCC66;
    text-align: center;
    padding-top: 10px;
    padding-right: 5px;
    padding-bottom: 10px;
    padding-left: 5px;
}
#outerWrapper #contentWrapper #leftColumn1
{
    /* Sets the right border properties for an element using shorthand notation */
    background-position: #FFCC66;
    border-right: solid 1px #666;
    float: left; /* Sets the padding properties for an element using shorthand notation (top,right,bottom,left) */
    width: 12em;
    background: #FFCC66;
    text-align: center;
    padding-top: 10px;
    padding-right: 5px;
    padding-bottom: 10px;
    padding-left: 5px;
}

/* End Cols */
/* Contains the main page content. When using a mutliple column layout the margins will be set to account for the floated columns' width, margins, and padding. */
#outerWrapper #contentWrapper #content{margin-top:0; margin-right:14em; margin-bottom:0; margin-left:14em; padding:10px}
/* Contains the main page content. When using a mutliple column layout the margins will be set to account for the floated columns' width, margins, and padding. */
#outerWrapper #contentWrapper #content2{margin-top:0; margin-bottom:0; padding:10px}

/* Using floated elements and a clear float class is a common method to accomplish multiple column tableless layouts. If floated elements are used without being cleared the elements following will wrap around the floated element. This class should be applied to an element after the last floated element and before the close of the container with floated elements. */
#outerWrapper #contentWrapper .clearFloat{ clear:both;  display:block}
#outerWrapper #footer
{
    /* Sets the top border properties for an element using shorthand notation */
    background-position: #FF7603 url(../img/pro_line_0a.gif) repeat-x;
    border-top: solid 1px #666;
    height: 15px;
    padding: 10px; /* Sets the padding properties for an element using shorthand notation (top,right,bottom,left) */
    background: #FF7603 url(../img/pro_line_0a.gif) repeat-x;
    text-align: center;
    color: #FFCC66;
}

/* End Layout */ 
/* Top Menu */
#outside
{
    background-position: #FFCC66;
    background: #FFCC66;
}
#navigation-1
{
    padding: 1px 0;
    margin: 0px auto 0px auto;
    list-style: none;
    width: 97%;
    height: 21px;
    border-top: 1px solid #FFF;
    border-bottom: 1px solid #FFF;
    font: normal 8pt verdana,arial,helvetica;
}
#navigation-1 li{margin:0; padding:0; display:block; float:left; position:relative; width:130px}
#navigation-1 li a:link, #navigation-1 li a:visited
{
    background-position: #FFCC66 url(../img/pro_line_0a.gif) repeat-x;
    display: block;
    text-align: center;
    text-decoration: none;
    background: #FF9933 url(../img/pro_line_0aa.gif) repeat-x;
    color: #fff;
    width: 130px;
    height: 13px;
    padding-top: 4px;
    padding-right: 0;
    padding-bottom: 4px;
    padding-left: 0;
}
#navigation-1 li:hover a, #navigation-1 li a:hover, #navigation-1 li a:active
{
    background-position: #FFCC66;
    display: block;
    text-align: center;
    text-decoration: none;
    background: #FFCC00;
    color: #fff;
    width: 128px;
    height: 13px;
    border-left: 1px solid #fff;
    border-right: 1px solid #fff;
    padding-top: 4px;
    padding-right: 0;
    padding-bottom: 4px;
    padding-left: 0;
}
#navigation-1 li ul.navigation-2{margin:0; list-style:none; display:none; background:#fff; width:128px; position:absolute; top:21px; left:-1px; border:1px solid #b9121b; border-top:none; padding-top:1px; padding-right:1px; padding-bottom:0; padding-left:1px}
#navigation-1 li:hover ul.navigation-2{display:block}
#navigation-1 li ul.navigation-2 li{width:128px; clear:left; width:146px}
#navigation-1 li ul.navigation-2 li a:link, #navigation-1 li ul.navigation-2 li a:visited
{
    background-position: #FFCC66;
    clear: left;
    background: #FF9933;
    width: 128px;
    border: none;
    border-bottom: 1px solid #fff;
    position: relative;
    z-index: 1000;
    padding-top: 4px;
    padding-right: 0;
    padding-bottom: 4px;
    padding-left: 0;
    background-image: url('../img/pro_line_0aa.gif');
}
#navigation-1 li ul.navigation-2 li:hover a, #navigation-1 li ul.navigation-2 li a:active, #navigation-1 li ul.navigation-2 li a:hover{clear:left; background:#FFD25A; width:128px; border:none; border-bottom:1px solid #fff; position:relative; z-index:1000; padding-top:4px; padding-right:0; padding-bottom:4px; padding-left:0}
#navigation-1 li ul.navigation-2 li ul.navigation-3{display:none; margin:0; padding:0; list-style:none; position:absolute; left:145px; top:-2px; padding:1px 1px 0 1px; border:1px solid #b9121b; border-left:1px solid #b9121b; background:#fff; z-index:900}
#navigation-1 li ul.navigation-2 li:hover ul.navigation-3{display:block}
#navigation-1 li ul.navigation-2 li ul.navigation-3 li a:link, #navigation-1 li ul.navigation-2 li ul.navigation-3 li a:visited{background:#b9121b}
#navigation-1 li ul.navigation-2 li ul.navigation-3 li:hover a, #navigation-1 li ul.navigation-2 li ul.navigation-3 li a:hover, #navigation-1 li ul.navigation-2 li ul.navigation-3 li a:active{background:#ec454e}
#navigation-1 li ul.navigation-2 li a span{position:absolute; top:0; left:132px; font-size:12pt; color:#fe676f}
#navigation-1 li ul.navigation-2 li:hover a span, #navigation-1 li ul.navigation-2 li a:hover span{position:absolute; top:0; left:132px; font-size:12pt; color:#fff}

/* End Top Menu */
#firstTitle{    font-family:'Times New Roman',Times,serif;     font-size:1.5em;     font-weight:bold;     font-style:italic;     color:#FFF;     text-align:left;     position:relative;     top:150px;     padding-left:15px}

.tableBorder{    margin:5px;     width:100%;     padding-top:10px;     padding-bottom:10px}

#tablereg2{    padding:5px;     width:95%;     border:1px solid #F30;     font-family:Verdana,Arial,Helvetica,sans-serif;     color:#006;     font-size:10pt}

#tablereg2 td, tr{    padding:5px;     color:#009;     font-weight:normal;     font-family:Verdana,Arial,Helvetica,sans-serif;     font-size:10pt}

#tablereg2 td, tr, p{    font-family:Arial,Helvetica,sans-serif;     font-size:8pt;     color:#666}

#pageBody{width:941px; background:#FFF; margin:0 auto auto}
.colHead{width:63%; height:27px; color:#666; padding-top:10px; font-size:12pt; text-align:left; background:none}
.colHead2{width:94%; height:27px; color:#666; padding-top:10px; font-size:12pt; margin-top:20px; text-align:left; background:none}
.paraDiv
{
    padding: 8px;
    width: 95%;
    line-height: 20px;
    margin-right: auto;
    margin-left: auto;
}

.paraDiv p{    font-family:'Arial Narrow';     font-size:medium}

.paraDivhead{    width:90%;     padding:3px;     background-color:#F90;     color:#FFF;     font-weight:bold;     margin-right:auto;     margin-left:auto}

.imgborder{padding:5px; border:1px solid #CCC; margin:5px}
   
    
#pageText{    padding:1px}
#pageText h3{text-transform:capitalize; border-bottom-width:1px; border-bottom-style:solid; border-bottom-color:#999; color:#333; text-align:left; width:400px; display:block; float:left; font:normal 130%/20px Arial,Helvetica,sans-serif}

#pageText h2{    font-size:130%;     font-weight:bolder;     color:#f63;     text-align:left;     font-family:Arial,Helvetica,sans-serif;     font-style:normal}

#pageText p{color:#666; text-align:justify; font-family:Geneva,Arial,Helvetica,sans-serif; font-size:1.2em; font-style:normal; font-variant:normal;
    margin-left: 0px;
}
#pageText h1{    font:normal 20px Verdana,Arial,Helvetica,sans-serif;     color:#F60}

#pageHead h1{    font-family:Verdana,Arial;     font-size:1.8em;     font-weight:normal;     text-transform:capitalize;     color:#F60}
.searchBox{text-align:left; height:384px; padding:10px; width:100%; border-collapse:collapse; background:#E9EDFE url(../img/boxbg2.jpg)}
.searchBox td{text-align:left; height:auto; padding:10px; margin:0; border-collapse:collapse; text-transform:capitalize; color:#963; border-top-width:0; border-right-width:0; border-bottom-width:0; border-left-width:0; font:12px Arial,Helvetica,sans-serif}

.messageBox{ background-color:#FFFAD7;  border:1px solid #F60;  padding:5px;  text-align:center;  vertical-align:middle;  margin-right:auto;  margin-left:auto}

#textBoxlrg{ border:1px solid #F60;  width:600px;  background-color:#FDEECC;  text-align:left;  padding:10px}

.browselist{ list-style-type:square;  text-align:left;  font-size:10pt}

.placeHolder{ height:225px;  padding-right:14px;  padding-left:10px;  width:279px}

.imgSmall{height:80px; width:120px}

.imgHolder{ margin:3px 6px 3px 6px;  display:block}

img.imgHolder{display:block}

.thumbBox
{
    padding: 3px 0 3px 0px;
    color: #FF6600;
    background-color: #FDEDB5;
    margin-bottom: 5px;
    font-weight: bold;
}

.thumbBox a{ color:#00F}

.altThumbBox{ background-color:#FFF2D9;  padding:3px 0 3px 0;  color:#F60;  margin-bottom:5px;  font-weight:bold}

.clearBoth{clear:both}

.submit input, textarea{width:350px}

#pageBottom{ margin:auto;  width:941px;  background-color:#FFF;  text-align:center;  padding:0px;  margin:5px 5px 5px 5px}

/* my datagrid stuff */
.gridAlternatingrowstyle{    background-color:#f9f9f9}
.gridHeaderstyle{    background-color:#e5e5e5;     height:23px}
.gridHeaderstyle th{    border:1px solid #bbb;     padding-left:5px;     text-align:left}
 
.gridHeaderstyle a{    color:black}
   
.gridSortalternatingrowstyle{    background-color:#e5e5e5}
.gridSortrowstyle{    background-color:#f0f0f0}
.gridSortascheaderstyle{    background:#c5c5c5 url(Img/sort_asc.gif) no-repeat scroll right center;     padding-left:5px}
.gridSortdescheaderstyle{    background:#c5c5c5 url(Img/sort_desc.gif) no-repeat scroll right center;     padding-left:5px}
  
.gridPagerstyle{    color:#444;     background-color:#e5e5e5;     font-size:x-small;     text-align:right}

.gridPagerstyle select{    font-size:x-small}
 
.gridPrevious{    background:transparent url(Img/previous.gif) no-repeat scroll center;     height:1.3em;     width:16px}
.gridNext{    background:transparent url(Img/next.gif) no-repeat scroll center;     height:1.3em;     width:16px}
 
.gridGotopage{    font-size:x-small;     width:20px}

.villaFinder{border:1px solid #CCC; text-align:left; font-family:Verdana,Arial,Helvetica,sans-serif; color:#808080; font-size:12px; width:100%; border-collapse:collapse; margin-right:auto; margin-left:auto; background-image:url('../img/fieldbg4.png'); background-repeat:repeat-x}
.villaFinder td{border:0 solid #999; text-align:left; height:auto; border-collapse:collapse; margin:0; padding:6px; vertical-align:top; font-size:12px}

/*Modal Popup*/
.modalBackground{background-color:Gray; filter:alpha(opacity=70); opacity:0.7}

.invoice{}

#guideTable body{    font:normal 11px auto "Trebuchet MS",Verdana,Arial,Helvetica,sans-serif;     color:#4f6b72;     background:#E6EAE9}

#guideTable a{color:#c75f3e}

#guideTable{    width:575px;     padding:0;     margin:0 auto 0 auto}

#guideTable caption{    padding:0 0 5px 0;     width:580px;     font:italic 11px "Trebuchet MS",Verdana,Arial,Helvetica,sans-serif;     text-align:right;     color:#333}

#guideTable th{    font:bold 11px "Trebuchet MS",Verdana,Arial,Helvetica,sans-serif;     color:#FFF;     letter-spacing:2px;     text-transform:uppercase;     text-align:center;     padding:6px 6px 6px 12px;     background:#F90 none;     border:1px solid #FF934A}

#guideTable th.nobg{    background:none;     border:1px solid #FF934A}

#guideTable td{    border-right:1px solid #C1DAD7;     border-bottom:1px solid #C1DAD7;     background:#fff;     padding:6px 6px 6px 12px;     color:#4f6b72;     border:1px solid #FF934A}

#guideTable td.alt{    background:#FFE8B7;     color:#797268}

#guideTable th.spec{border-left:1px solid #C1DAD7; border-top:0; background:#fff url(../img/bullet1.gif) no-repeat; font:bold 10px "Trebuchet MS",Verdana,Arial,Helvetica,sans-serif}

#guideTable th.specalt{    border-left:1px solid #C1DAD7;     border-top:0;     background:#f5fafa url(../img/bullet2.gif) no-repeat;  font:bold 10px "Trebuchet MS",Verdana,Arial,Helvetica,sans-serif;  color:#797268}
/*Menu*/
#info{position:relative}
p.bold{padding-left:15px; color:#c00}
a.linkup{position:relative}
a.buttonup{position:absolute; top:200px; left:650px; border:0}
a.buttonup img{border:0}
.gleft{float:left; margin:25px 0 10px 0}
.gright{float:right; margin:25px 5px 10px 0}
.grc{margin:20px 0 0 10px}

.textcm{font-size:12px; color:#666; margin:5px; padding:5px}

.tablecm{font-family:"Trebuchet MS"; font-size:10px; color:#666; padding:5px; width:84%; border:1px solid #999; border-collapse:collapse; margin-right:auto; margin-left:auto; margin-top:10px; margin-bottom:10px; text-align:left}

.tablecm td{    font-family:Tahoma,"Times New Roman";     font-size:12px;     color:#666;     vertical-align:text-top;     line-height:20px;     text-align:left}

.tablecm a{color:#F63}
    
#contentFve{    font-family:Tahoma,"Times New Roman";     font-size:1em;     color:#B1B1B1;     width:100%}

#contentFveDef{    font-family:Tahoma,"Times New Roman";     font-size:1em;     color:#B1B1B1;     margin-right:auto;     margin-left:auto;     padding-right:20px;     padding-left:20px}

#contentFve h2{    font-family:Tahoma,"Times New Roman";     color:#F60;     font-size:14pt}
.GoogleMap{    text-align:center;     margin-left:10px}
#contentFve .tableDistance td{    padding:4px;     font-size:10pt;     color:#666;     text-align:left}

.tdlistbox{    padding:8px;     border:1px solid #F30;     width:450px}

.tdimg{    margin-left:0px}

.propBox{    width:90%;     text-align:left;     color:#666;     border-bottom-style:solid;     border-bottom-width:1px;     border-bottom-color:#F30;     margin-right:auto;     margin-left:auto}

.tdBg{    border:1px solid #FFA264;     background-image:url( '../img/fieldbg3.png' );     background-repeat:repeat-x}
   
#outerLayout{    padding:5px;     width:98%}
    
.highlightbold{    font-family:"Trebuchet MS";     color:#F60;     font-weight:700;     font-size:1.25em;     text-decoration:none}

.tdnowrap{white-space:nowrap}

.standardInput{    background-image:url('../img/fieldbg3.png');  background-repeat:repeat-x}
.col{}

.tableGrid{ padding:5px;  margin-right:auto;  margin-left:auto}

.villaCalendar, .villaCalendar td{padding:1px; border:solid 1px #ccc; border-spacing:0px}

.villaCalendar td{ font-size:9px; width:15px; height:15px; text-align:center}

.litBox{ padding:5px;  float:left;  margin-left:124px}

/*CSS type tables cs*/
/*Forms */
div.row{ clear:both;  padding-top:10px}

div.row span.label{ float:left;  width:100px;  text-align:right}

div.row span.formw{ float:right;  width:335px;  text-align:left}

 /*Cells */
 
div.float{ float:left}
 
div.float p{ text-align:center}
div.container{ border:2px dashed #333;  background-color:#ffe}
div.spacer{ clear:both}
/* End Cells */
/*Photo Page table*/
.album{ border-collapse:collapse;  width:100%;  text-align:center}

.album td{ padding:5px;  margin:5px}
/*End Photo Page*/
/*VillaFinder td*/
.buttonBox{ font-size:small;  margin-right:auto;  margin-left:auto;  width:90%}

.buttonBox td{ font-size:small;  text-align:left;  padding:5px}
/*end*/
/*Prop List*/
.viewBox{ padding-right:8px;  padding-bottom:10px;  padding-left:5px}

.mapPage {
	background-color: #FFF;
	text-align: left;
}
fieldset
{
    width: 95%;
    padding: 5px;
    color: #999999;
    margin-left: 15px;
}
legend
{
    border-color: #999999;
    font-size: 14px;
    color: #FF3300;
    font-family: Verdana;
}