 /* 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 th
e 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: 12px;
 }
 /* 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 {
 background-color: #006;
 color: #000;
 font-family: Verdana, Arial, Helvetica, sans-serif;
 font-size: 11px;
 line-height: 14px;
 margin: 0 0 0 0; /* Sets the margin properties for an element using shorthand notation (top, right, bott
om, left) */
 padding: 0 0 0 0; /* Sets the padding properties for an element using shorthand notation (top, right, bo
ttom, left) */
 text-align: center; /* Centers the page content container in IE 5 browsers. */
 border-right:thin;
 }
 /* Commonly used to style page titles. */
 h1 {
 color: #000;
 font-family: Verdana, Arial, Helvetica, sans-serif;
 font-size: 14px;
 font-weight: bold;
 line-height: 14px;
 }
 /* Commonly used to style section titles. */
 h2 {
	color: #44566F;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 16px;
	font-weight: bolder;
	line-height: 14px;
 }
 /* Sets the style for the h3 header. */
 h3 {
 font-family: Verdana, Arial, Helvetica, sans-serif;
 }
 /* Sets the style for the h4 header. */
 h4 {
 font-family: Verdana, Arial, Helvetica, sans-serif;
 }
 /* Sets the style for the h5 header. */
 h5 {
 font-family: Verdana, Arial, Helvetica, sans-serif;
 }
 /* Sets the style for the h6 header. */
 h6 {
 font-family: Verdana, Arial, Helvetica, sans-serif;
 }
 /* Sets the style for unvisited links. */
 a, a:link {
	color: #8189A0;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-weight: normal;
	text-decoration: underline;
 }
 /* Sets the style for visited links. */
 a:visited {
 font-weight: normal;
 text-decoration: none;
 }
 /* Sets the style for links on mouseover. */
a:hover {
 color: #44566f;
 text-decoration: underline;
 font-family: Verdana, Arial, Helvetica, sans-serif;
 }
 /* This is a container for the page content. It is common to use the container to constrain the width of the
C:\Documents and Settings\Deneva\My Documents\websites\parkview\New\index.css: 1/3
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 pag
e. IE 5 browser require the use of text-align: center defined by the body element to center the container. F
or liquid layouts you may simply set the left and right margins to center the container on the page. */
#outerWrapper {
 background-color: #fff;
 margin: 0 auto 0 auto; /* 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: 800px;
 border-right-width: thin;
 border-top-color: #44566F;
 border-right-color: #44566F;
 border-bottom-color: #44566F;
 border-left-color: #44566F;
 border-right-style: solid;
 border-left-width: thin;
 border-left-style: solid;
 }
 #outerWrapper #header {
 background-color: #FFFFFF;
 border-bottom-style: solid;
 border-bottom-width: 0px;
 font-size: 18px;
 font-weight: bold;
 height: 140px;
 line-height: 15px;
 padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, rig
ht, bottom, left) */
 width: 800px;
 }
 #outerWrapper #topNavigation {
 background-color: #FFFFFF;
 border-bottom-style: solid;
 border-bottom-width: 0px;
 height: 31px;
 padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, rig
t, bottom, left) */
 width: 800px;
 }
 #outerWrapper #contentWrapper #leftColumn1 {
 background-color: #44566f;
 background-repeat:no-repeat;
 border-right:0px; /* Sets the right border properties for an element using shorthand notation */
 float: left;
 padding: 5px 5px 5px 5px; /* Sets the padding properties for an element using shorthand notation (top, rig
ht, bottom, left) */
 width: 200px; height:auto;
 background-image:url(../images1/ParkviewNewPrototypeSliced_r3_c1.jpg)
 }

 /* Contains the main page content. When using a mutliple column layout the margins will be set to account fo
the floated columns' width, margins, and padding. */
 #outerWrapper #contentWrapper #content {
 margin: 0 0px 0 211px; /* Sets the margin properties for an element using shorthand notation (top, right
, bottom, left) */
 padding: 10px 10px 10px 10px;
 width:47em; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, l
ft) */
 }
 /* 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 flo
C:\Documents and Settings\Deneva\My Documents\websites\parkview\New\index.css: 2/3
ated 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 {
	height: 41px;
	width:800px;
	background-image:url(../images1/FooterLg.jpg) /* Sets the padding properties for an element using shorthand
otation (top, right, bottom, left) */;
	border-top-width: 0px;
	border-top-style: none;
	border-top-color: #666;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 9px;
	text-align: center;
	padding-top: 0px;
	padding-right: 1px;
	padding-bottom: 1px;
	padding-left: 1px;
 }
 #outerWrapper #footer a, #outerWrapper #footer a:link {
	color: #44566f;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 9px;
 }
 #outerWrapper #footer a:hover {
	color: #44566F;
	text-decoration: underline;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 9px;
 }

 /* It is common to set printer friendly styles such as a white background with black text. */
 body {
 background-color: #fff;
 background-image: none;
 border-color: #000; /* Sets the border color properties for an element using shorthand notation */
 color: #44566F;
 }

