/* style.css
 
  Note:  "#" used for a unique element  <div    id="class">
         "." used for multiple elements <div class="class">
*/
 
a:link { 
 color: #6C6C6C; /* dark grey */
 text-decoration: underline;
}
  
a:visited { 
 color: #6C6C6C; 
 text-decoration: underline;
}
 
a:hover { 
 color: #6395ae; /* light blue */
 text-decoration: none;
}
 
a:active { 
 color: #6395ae;
 text-decoration: underline;
}
 
Body {
 color: #6C6C6C; /* dark grey */
 background-color: #f7f7f7; /* off white */  
 font-family: Arial, Helvetica, sans-serif;  
 font-size  : 11px;  
 padding: 0px;
 vertical-align: top;
 margin:0px;
}


#BodyDiv { /* Virtual Tours*/
	width:804px; 
	margin-top:5px; 
	border-left: 1px #CCCCCC solid; 
	border-right: 1px #CCCCCC solid; 
	padding: 10px; 
	background-color:white;
	
} 

#BodyDiv img { /* Virtual Tours images*/
	border:solid;
}
 
#CenterPage{ /* used in the first div to center the page content */
 position: relative;
 width: +826px; /* total width of page content */
 left: 50%; 
 top: 0px;
 bottom:0px;
 margin-left: -413px; /* half of total content width */
 margin-top :  -15px;
}
 
#Footer {
 float: left;
 text-align: center;
 width : 826px;
 height:  46px;
 background-color: #e2e9ed;
 padding-top: 7px;
}

#Footer a:link { /* all links in the footer div */
  padding-right: 5px;
  padding-left : 5px;
          color: white;
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-size  : 8px;
    text-decoration: none;
}
	
#Footer a:visited { 
  padding-right: 5px;
  padding-left : 5px;
          color: white;
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-size  : 8px;
   text-decoration: none;
}
	
#Footer a:hover { 
	color: #4c6889; /* dark blue */
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size  : 8px;
	text-decoration: underline;
}
	
#Footer a:active { 	
	color: #4c6889; /* dark blue */
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size  : 8px;
	text-decoration: underline;
}

#FooterContent {
 width : 826px;
 height:  39px;
 padding-top: 10px;
 background-color   : #7ba9cf;
 background-image   : url(images/bg_footer.gif);
 background-repeat  : repeat-x;
 background-position: top;  
}
 
#FooterLegal {
 color: #4c6889;
 margin-top: 7px;
 font-family: Verdana, Arial, Helvetica, sans-serif;
 font-size  : 8px;
 font-weight: bold;
 clear: both;
}
 
 html {
 padding:0px;
 margin:0px;
 }
 
 /*This is the body div includes both right and left divs*/
 #InnerDiv {
	 width:826px;
 }
 
Img{ /* applies to all images */
 border: none; 
 float : none;
 margin:0px;
}
 
#LeftDiv{
 float: left;
 width: 463px; 
 border-left-color: #CCCCCC; 
 border-left-style: solid; 
 border-left-width: 1px;   
 background-color: white; 
 margin: 3px 5px 0px 0px; 
 color: #6C6C6C; /* dark grey */
 font-family: Arial, Helvetica, sans-serif;  
 font-size  : 11px;  
 padding: 0px 0px 25px 9px;

 
}
 
.LinkHeader {
    color: #6395ae; /* light blue */
  font-size: 18px;
}
 
#RightDiv{
 float: left;
 width: 297px;
 margin: 3px 0px 0px 0px; 
 color: #6C6C6C; /* dark grey */
 font-family: Arial, Helvetica, sans-serif;  
 font-size  : 11px;  
 background-color: #b7cfde; 
 padding: 25px; 
}
  
#RightDiv a:link { 
 color: #6C6C6C;
 text-decoration: underline;
}
 
#RightDiv a:visited { 
 color: #6C6C6C;
 text-decoration: underline;
}
 
#RightDiv a:hover { 
 color: white; 
 text-decoration: none;
}
 
#RightDiv a:active { 
 color: white;
 text-decoration: underline;
} 
 