/* Style sheet books
- Beginning CSS : cascading style sheets for Web design / Richard York. 
	by York, Richard, 2005 
- Beginning web programming with HTML, XHTML, and CSS / Jon Duckett. 
	by Duckett, Jon. 2008 2nd edition
- Mastering integrated HTML and CSS / Virginia DeBolt. 
	by DeBolt, Virginia. 2007
	Note if you define an element using a ".", then use class=
	But if you define an element using a "#", then use div id= or td id=
	until I totally understand this, we can make it work by using # to define the styles
	and using ID= either in a div, td, or span
	I think that anything defined with a . and using class, cannot overide if it is inside a # defined element like the page divs
	Also - remember to use commas instead of space for defining multiple tags
	VERY IMPORTANT - if you define a text color in a class # within a div or td using ID
	then you cannot overide the color using a .xxxx sytle either using <span ... or using <td class=
	
	colors should always be hex or rgb percent etc. Only 16 colornames are defined by W3C
	however, see http://www.w3schools.com/HTML/html_colornames.asp for color names supported by all browsers
	
*/

@charset "utf-8";
/* First - defaults for common html tags */

body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background:#EFFFCE; /*url(../graphics/photos/large/city.jpg) */
	margin: 0; 			/* zero the margin and padding of body element because of differing browser defaults */
	padding: 0;
	text-align: center; /* For IE 5, centers the container
											The text is then set to the left aligned default in the #container selector */
}

input {font-size:100%;}
blockquote { font-size:90%; font-family: Arial, Helvetica, sans-serif; margin-left : +8;}
ul {

margin-top : 0em;}

li {
	font-size :100%;
	margin-left:-18px;
	margin-bottom:7px;
	margin-top:10px;
	text-indent: 0px;
	display: list-item;
	list-style-position: outside;
	list-style-image:url(../navButtons/mm_arrow.gif);
	list-style-type: circle;}

#container { /*	container div holds all page divs ------------- */
	/* Note 47em overall width matches to an 800 width screen if text is browser default size */
	width: 58em;  /* 56 main content 40, sidebar 14 +2 = size for maincontent */
	/* background:black; color:white; */ /* overall black container with white text */
	margin: 0 auto; /* the auto margins in conjunction with a width center the page */
	background:white;	/* this has to be set the same as mainContent if overall body background has a color */
	border: 1px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 


/*	header div -------------------------------- */
#header {
	background:#E8E8FF; /* background-image: url(../graphics/wave.jpg); */
	padding: 0 10px;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
} 
				 
#header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse
						- an unexplainable space between divs. If the div has a border around it, 
						this is not necessary as that also avoids the margin collapse */
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	font-size: 100%; font-weight:bold; color:#666;
}


/* These are for the menus in the header div */
#header .menuButtonsADM { background-color:#909; color:white;}
#header .menuButtons1 { background-color: #009; color:white;}
#header .menuButtons2 { background-color: #000; color:white;}

#header a:link
	{font-weight: bold;  color:white; text-decoration:none; line-height:14px;} 
#header a:visited
	{font-weight: bold;  color:white; text-decoration:none; line-height:14px;} 
#header a:active
	{font-weight: bold;  color:white; text-decoration:none; line-height:14px;} 
#header a:hover {color:red; }				/* header anchor hover */

	
/* Tips for mainContent:
1. If you give this #mainContent div a font-size value different than the #sidebar1 div, the margins of the #mainContent div will be based on its font-size and the width of the #sidebar1 div will be based on its font-size. You may wish to adjust the values of these divs.
2. The space between the mainContent and sidebar1 is created with the left margin on the mainContent div.  No matter how much content the sidebar1 div contains, the column space will remain. You can remove this left margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends.
3. To avoid float drop, you may need to test to determine the approximate maximum image/element size since this layout is based on the user's font sizing combined with the values you set. However, if the user has their browser font size set lower than normal, less space will be available in the #mainContent div than you may see on testing.
4. In the Internet Explorer Conditional Comment below, the zoom property is used to give the mainContent "hasLayout." This avoids several IE-specific bugs that may occur.
*/



/* mainContent Div ------------------------------------------------------------------------ */
#mainContent {
		float: left; 
		width: 40em;
		/* background:black; color:white; */ /* mainContent black container with white text */
		background:white; color:black;
  	margin: 0 0em 0 10px; } /* left margin looks best if you match the padding amount to the header and footer. */

#mainContent h1{	
	font-size: 130%; font-weight:bold;
	font-family: Tahoma, Geneva, sans-serif;
	color: #666;
	margin-top: 0.2em;
	margin-bottom: 0.12em;
	padding-bottom: 0.0em;
	margin-left: 0;
	padding-left: 0; }



#mainContent h2 {
	font-size: 120%; font-weight:bold;
	color:#666;
	margin-left: 0px; /* the left and right margin should be given to every element that will be placed in the side columns */
	margin-right: 0px; }

#mainContent h3 {
font-size: 110%; font-weight:bold;
	color:#666;
	margin-left: 0px; /* the left and right margin should be given to every element that will be placed in the side columns */
	margin-right: 0px; }



#mainContent a {font-weight:500; color:#005AA4;text-decoration: none;} /* mainContent a href or a link */
#mainContent a:link {} 				/* mainContent anchor link, visited, and active*/
#mainContent a:visited{}	/* mainContent anchor link, visited, and active*/
#mainContent a:active {}	/* mainContent anchor link, visited, and active*/
#mainContent a:hover {color:red;}
	
/* Tips for sidebar1:
1. Be aware that if you set a font-size value on this div, the overall width of the div will be adjusted accordingly.
2. Since we are working in ems, it's best not to use padding on the sidebar itself. It will be added to the width for standards compliant browsers creating an unknown actual width. 
3. Space between the side of the div and the elements within it can be created by placing a left and right margin on those elements as seen in the ".twoColElsRtHdr #sidebar1 p" rule.
*/
/* sideBar div for our right side menus -------------------------------------------- */
#sidebar1 {
	float: right;
	
	margin: 0px 0px 0px 0px;
	width: 14em; /* since this element is floated, a width must be given */
	/* background:black; color:white; */ /* sidebar1 black container with white text*/
	background:white; color:Black;
	 /* the background color will be displayed for the length of the content in the column, but no further */
/* 	padding: 0px 0px; top and bottom padding create visual space within this div */
}
#sidebar1 a  {color:#993; font-weight:600; text-decoration:none		}			/* sidebar1 anchor hover */
#sidebar1 a:link {}			/* sidebar1 anchor hover */
#sidebar1 a:visited {}			/* sidebar1 anchor hover */
#sidebar1 a:active {}			/* sidebar1 anchor hover */
#sidebar1 a:hover {color:red;	}				/* sidebar1 anchor hover */

#sidebar1 h3, #sidebar1 p, #sidebar1 td{
	margin-top:0px;
	margin-left: 0px; /* the left and right margin should be given to every element that will be placed in the side columns */
	margin-right: 0px;
}



/* footer div - bottom of page ------------------------------------------------- */
#footer { 
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#E8E8FF;
} 
#footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}
#footer a {font-size:90%;}
#footer a:link {color:purple; text-decoration:none		}			/* sidebar1 anchor hover */
#footer a:visited {color:purple; text-decoration:none		}			/* sidebar1 anchor hover */
#footer a:active {color:purple; text-decoration:none		}			/* sidebar1 anchor hover */
#footer a:hover {color:red;	}				/* sidebar1 anchor hover */



/* a div for property listing formmating -------------------------------------- */
#propertyListing { 	
	margin: 100 0em 0 10px;
	background: #FF9; /* the background color will be displayed for the length of the content in the column, but no further */
/* 	padding: 0px 0px; top and bottom padding create visual space within this div */
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
}
	
/* these IDs are for the viewer learning center */

#viewerSummariesClass  {font-size:90%;} 
.viewerSummariesStartQuoteClass  img { background-image:url(../navButtons/overviewstartQuote.gif);}
#viewerContentClass h1 {font-size:140%; color:#F90; margin:0 0 0 0;}
#viewerContentClass h2 {font-size:110%; margin:0 0 0 0;}
#viewerSummariesClass a{font-size:90%;}
#viewerSectionMenu h1 {font-size:120%; color:#F90; margin:0 0 0 0;}
#viewerArticleMenu h2  {font-size:80%; margin:0 0 0 0;}

/* This is for propertyListing */
#propertyListingBodyHomeExchangeClass {background:none; color:black;}
#propertyListingBannerHomeExchangeClass {background:#F90; color:white; font-size:90%} /* oarnagish */
#propertyListingBannerHomeExchangeClass h1 { font-size:100%; font-weight:900;}
#propertyListingBannerHomeExchangeClass a {font-weight:900;}
#propertyListingBannerHomeExchangeClass a:link {color:#30C;}
#propertyListingBannerHomeExchangeClass a:visited {color:C0EAFE;}
#propertyListingBannerHomeExchangeClass a:active {color:C0EAFE;}
#propertyListingBannerHomeExchangeClass a:hover {color:#F00;}

#propertyListingBodyRentalClass {background:none; color:black;}
#propertyListingBannerRentalClass {background:#093; color:white; font-size:90%}
#propertyListingBannerRentalClass h1 { font-size:100%; font-weight:900;}
#propertyListingBannerRentalClass a {font-weight:900;}
#propertyListingBannerRentalClass a:link {color:#FC3;}
#propertyListingBannerRentalClass a:visited {color:lime;}
#propertyListingBannerRentalClass a:active {color:lime;}
#propertyListingBannerRentalClass a:hover {color:yellow;font-weight:900;	}
#propertyListingBannerRentalClass td {color:purple;}


#propertyListingClass {color:none;}
#propertyListingClass img {float:center;}
#propertyListingClass td {color:none;}
.propertyListingLabelClass {background:#EEE; color:#000}

/* Miscellaneous classes for reuse */
.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}



/*c.backGroundHotlist this was the background for the cityfinder box */
#cityFinderID {background:#393; color:#FFF;}

/*c.backGroundSortedBy is the background color for searchSort display*/
.searchSortClass {background:#F0F0F0; color:black;} /*very light gray #F0F0F0 */




/*c.backGroundSelectDark this was the dark background banding for search parameters */
/*c.backGroundSelectLight this was the dark background banding for search parameters */
.bandingDarkClass {background:#F2F2F2; color: #000}
.bandingLightClass{background:#F8F8F8; color: #000;}

/* Photograb colors */
.photoSelectClass {background:#6CF; color: #000}
.photoDeselectClass {background:#CCC; color: #000;}

.<!--- to TEST the session warning, run  _junk/testSessionErrorMsg.cfm ---> {background:#990; color:#CCC;} /*This is the serious alert that used to be in a bright green*/
.sessionAlertClass {padding-top:2px; padding-left:13px; padding-right:12px; background: #0F0; color:#000;}
.highLighterStyle {background-color:#FF6; color:#000} /* this is like a yellow highlighter or banner to stand out */
.lightHighLighterStyle {background-color:#FF6; color:#000} /* this is a very light highlighter */
.resultsDialogClass {background: #F90; color:#FFF;} /* A background and font coloring for displaying results */

.tinyHref { font-size:80%; font-style:italic}

.tipsDialogClass {background:yellow; color:black; content:Tip} /* Used for information tips and alerts */
.hintClass {background:#FF0; color:black; font-size:80%}
.darkVerticalLineClass {background:#333;} /* old way to do vertical line in table */

#searchResultsPanelClass {background:#06EA95; color:#000;} /* 0C9 nice green */
#searchResultsPanelClass a{color:#FFF}
#searchResultsPanelClass a:link {color:#FFF}
#searchResultsPanelClass a:visited {color:#FFF}
#searchResultsPanelClass a:active {color:#FFF}
#searchResultsPanelClass a:hover {color:#FF0}

#darkBannerClass {background: #699; color:#FFF;} /*set a dark banner color and light text */
#darkBannerClass a:link {color:#FF0}
#darkBannerClass a:visited {color:#FF0}
#darkBannerClass a:active {color:#FF0}
#darkBannerClass a:hover {color:#F00}

#darkBodyClass {background: #699; color:#FFF;} /*set a dark banner color and light text */
#darkBodyClass a:link {color:#FF0}
#darkBodyClass a:visited {color:#FF0}
#darkBodyClass a:active {color:#FF0}
#darkBodyClass a:hover {color:#F00}

.tSpaceClass {font-size:1px}
#mediumBannerClass {background:#E1F4FF; color: #030; font-size:80%} /*set a light banner color and a dark text light */
#mediumBannerClass a:link {color:#00F}
#mediumBannerClass a:visited {color:#00F}
#mediumBannerClass a:active {color:#00F}
#mediumBannerClass a:hover {color:#F00}


#mediumBodyClass {background:#FC9; color:black;} /*set a light banner color and a dark text light */
#mediumBodyClass a:link {color:#00F}
#mediumBodyClass a:visited {color:#00F}
#mediumBodyClass a:active {color:#00F}
#mediumBodyClass a:hover {color:#F00}


#lightBannerClass {background: #FFC; color: #009;} /*set a light banner color and a dark text light */
#lightBannerClass a:link {color:#00F}
#lightBannerClass a:visited {color:#00F}
#lightBannerClass a:active {color:#00F}
#lightBannerClass a:hover {color:#F00}

#lightBodyClass {background: #FFC; color: #009;} /*set a light banner color and a dark text light */
#lightBodyClass a:link {color:#00F}
#lightBodyClass a:visited {color:#00F}
#lightBodyClass a:active {color:#00F}
#lightBodyClass a:hover {color:#F00}


#hotBannerClass {background:#F63; color:#000;} /*this is a hot colored banner - currerntly used just in photograb */
#hotBannerClass a:link {color:#00F}
#hotBannerClass a:visited {color:#00F}
#hotBannerClass a:active {color:#00F}
#hotBannerClass a:hover {color:#00F}




.mediumLineClass {background:#666;} /* temporary - used for a medium grey line color to replace a color */
.alertBodyClass a:link {color:#F00;}
.alertBodyClass {background:#FF6; color:black;} /*used for alert type body elements currently sidebar in detail properties */

/* All form button and banner containing form buttons. */
.formBannerClass {background: #E4E4E4; color: #CCC; } /*set any contrasting background and color */
.formSubmitClass {background: #000; color: #FFF; } /*set any contrasting background and color */
.formCancelClass {background: #000; color: #FFF; } /*set any contrasting background and color */
.formResetClass {background: #000; color: #FFF; } /*set any contrasting background and color */
.formContinueClass {background: #000; color: #FFF; } /*set any contrasting background and color */
.formBackClass {background: #000; color: #FFF; } /*set any contrasting background and color */
.formFieldSatisfiedClass {color:#01872D;}
.formFieldNeededClass {color:red;}

.editDarkButtonClass {background:#666; color:#FFF; font-weight:bold; border:thick; border:white; border-style:outset}
.editLightButtonClass {background: white; color:#333; font-weight:bold; border:thick; border:black; border-style:outset}

/* Class styles for debug info */
.debugLevel01Style {color:purple;}
.debugLevel02Style {color:orange;}
.debugLevel04Style {color:green;}
.debugLevel16Style {color:purple;}
.debugLevel32Style {color:purple;}
.debugLevel128Style {color:purple;}
.debugLevel254Style {color:red;}
.debugJoopFuchsia {color:#F39;}
.poweredByStyle {background-color: #FEF8A7; font-size: 7pt;    color:black;}
										
.hintText	{color: #09C; font:bold;}										
.bannerLabels {font-weight: bold; font-family: Arial, Helvetica, sans-serif; color: #FFFFFF;}
.MessageTypeText {font-weight: bold; font-family: Arial, Helvetica, sans-serif;}
.MessageText {font-weight: bold; font-family: Arial, Helvetica, sans-serif; color: #800080;}
.infoLineText {font-weight: bold; font-size:10pt; font-family: Arial, Helvetica, sans-serif; color:black;}
.signoutText {font-weight: bold; font-size:8pt; font-family: Arial, Helvetica, sans-serif; color: #800080;}
.bottomNavText {font-weight: bold; font-family: Arial, Helvetica, sans-serif; font-size: 8pt;}
.pulloutStyle {font-size:90%; font-weight:300; color:#993;}
.sideMenuLink { 
	font-family: Arial, Helvetica, sans-serif; 
	font-size: 90%; 
	font-weight: bold;
	background:transparent;
	text-decoration: underline;
	text-align: left;
	border-width: 0;
	margin-right: 0px;
	margin-top : 0px;
	margin-bottom : 0.1em;
	margin-left : 0;
	padding-left : 0;
	padding-right : 0;
}

#sideMenuLink hover {color: black;}			/* line hover color */
			/* line hover color */
.menuText {font-family: Arial, Helvetica, sans-serif; font-size: 10pt; }



<!--- Styles for page content
	stdColorText	this is a standard text color to go with stdColorBack
	redHighlightText	a radical highlight text for stdColorBack,this may be red 
	blueHighlightText a calm highlight text for stdColorBack,this may be blue 
--->


.dummy { font-size: 8pt;}
.greySmallBold { font-size:90%; font-weight: 900; font-family: arial, helvetica, sans-serif;  margin-top: 0.0em; margin-bottom: 0.0em; margin-left: 0; padding-left: 0; }
.stateProvClass {color:#000; font-size:80%;}
.smallAnnotation {font-size: 70%;}
.boldSoftAnnotation {  font-weight: bold; color: #666}
.bolddarkAnnotation {  font-weight: bold; color: #333}

.stdText { font-size: 10pt; }
.admText { font-size: 10pt;  color: #ff99ff}
.mediumLabelText {font-size: 110%; font-weight:bolder; }
.bigLabelText{
	font-size: 130%; font-weight:bolder;
	font-family: Tahoma, Geneva, sans-serif;
	color: #666;
	margin-top: 0.2em;
	margin-bottom: 0.12em;
	padding-bottom: 0.0em;
	margin-left: 0;
	padding-left: 0; }
	
.banner1Text { color: #ffffff}
/* Medium Text classes */
.darkMediumTextClass {font-weight: bold; color: #333;}
.darkMediumTextHighlightClass {font-weight: bold; color: #933;}

.redHighlightText {  font-weight: bold; color: #F00}
.blueHighlightText {  font-weight: bold; color: #639}
.greenHighlightText {  font-weight: bold; color: #669933}
.HighlightText {  font-weight: bold; color: #0000a0}
.downlightText {  font-weight: bold; font-size:80%; color:teal}  <!--- teal --->
.labelStyle {font-family: Arial, Helvetica, sans-serif; }

.linkSimulate { 
	font-family: Arial, Helvetica, sans-serif;
	background:transparent;
	color: #0000FF; 
	text-decoration: underline;
	text-align: left;
	border-width: 0;
	margin-right: 0px;
	margin-top : 0em;
	margin-bottom : 0em;
	margin-left : 0;
	padding-left : 0;
	padding-right : 0;  
	 
}

.submitNice { 
	font-family: Arial, Helvetica, sans-serif; 
	font-size: 8pt; 
	font-weight: bold;
	background-color: #dddddd; 
	color: #000000; 
	text-align: center;
	border-width: 2;
	margin-right: 6px;
	margin-top : 0;
	margin-bottom : 0;
	margin-left : 0;
	padding-left : 0;
	padding-right : 0;  
}

.formCompact { margin:0; }





P.intro {text-align : left; }

P.intro:first-letter {
font-family : "Times New Roman", times, serif;
font-size : 24px;
font-style: italic;
color : #004080; }




/* Tips for Elastic layouts 
1. Since the elastic layouts overall sizing is based on the user's default fonts size, they are more unpredictable. Used correctly, they are also more accessible for those that need larger fonts size since the line length remains proportionate.
2. Sizing of divs in this layout are based on the 100% font size in the body element. If you decrease the text size overall by using a font-size: 80% on the body element or the #container, remember that the entire layout will downsize proportionately. You may want to increase the widths of the various divs to compensate for this.
3. If font sizing is changed in differing amounts on each div instead of on the overall design ie: #sidebar1 is given a 70% font size and #mainContent is given an 85% font size, this will proportionately change each of the divs overall size. You may want to adjust based on your final font sizing.
*/

