/* STYLE SHEET NOTES*/

	
	/*FONT SIZING - We work with percentage and then EMs so the end user can adjust the font size in their browser for disability-compliance. 100% equals the browsers stock default of 16px, but to make the math even for easier pixel conversion we will work with a base of 62.5%, which means;  62.5% = 10px font = 1em. 
	
	There for with this formula on this style sheet; 
	1.2EM = 12px, 1.4EM = 14px, 1.6EM = 16px  */ 

body  {
	font: 62.5% Arial, Helvetica, sans-serif; /*10px*/
	line-height:180%; /*12px*/
	/* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000000;
	background-image:url(images/back-coldwell.gif); background-repeat:repeat-x;
	background-color:#012665;
}

/* FONT FORMATING ELEMENTS */

td {padding-bottom: 8px;}

/* This rule is establishing a general font size, 1.2em = 12px */
p,li,td,a {font-size: 1.2em; line-height: 1.3em;}

p {margin: 0em 1.4em 1.4em 0;}  /*12px font,24px below each paragraph*/
li {margin: 0 2em 0 1em;}
ul {list-style:circle;}
ol {}
Blockquote {
	font-size: 1.2em;
	margin: 0 6em 3em 4em;
	color:#4B4B4B;
	font-style:italic;
}

h1 {font-size:1.6em; margin: 0 0 1.6em 0;}
h2 {font-size:1.6em; margin: 0 0 1.6em 0;}
h3 {font-size: 1.4em; margin: 1.4em 0 1em 0;}   
h4 { font-size: 1.4em; margin: 1.2em 0 .5em 0;}  /* Font Size .88em X16 = 14.8px,  Margins - 1em = 16px */

/* in content links with no class assigned*/
A:link {
	text-decoration:none;
	color:#785027;
	font-weight:bold;
}
A:visited {
	text-decoration:none;
	color:#785027;
	font-weight:bold;
}
A:hover {
	text-decoration:none;
	color:#9A6632;
	font-weight:bold;
}



/*PSUDO CLASSES FOR THIS WEBSITE*/

.red {color:#900; font-weight:bold;}
	
/* in content links with no class assigned*/
.menu {padding: 8px 8px 8px 8px; text-align:center;}
.menu A:link {
	text-decoration:none;
	color:#66431C;
	font-weight:bold;
	font-size:1.35em;
}
.menu A:visited {text-decoration:none;color:#66431C;font-weight:bold; font-size:1.35em; vertical-align: baseline; }
.menu A:hover {
	text-decoration:none;
	color:#9A6632;
	font-weight:bold; font-size:1.35em;
}

.copyright {text-align:right; padding: 40px 5px 0 0; font-size: 1.1em; line-height:1em; color:#FFF; font-weight:bold; }




.address {font-size: 1.2em; line-height:1.4em; font-weight:bold; text-align:center;}
/* this addresses the nested or cascading effect when you have items within items*/

LI LI, LI P, BLOCKQUOTE P, P A, TD P, TD Blockquote, TD LI  {font-size: 1em;}
