/* 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;
}

/* 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: #947648;
color: #000;
font-family: Arial, Helvetica, sans-serif;
font-size: 12px;
line-height: 14px;
margin: 23px 0 30px 0; 
padding: 0 0 0 0; 
text-align: center; /* Centers the page content container in IE 5 browsers. */
background-image: url('http://www.paulinekaplan.com/images/interface/bkgd_vs2.gif');
}


/* h tag styles. */
h1 {
color: #000;
font-size: 14px;
font-weight: bold;
line-height: 14px;
}

h2 {
color: #000;
font-size: 12px;
font-weight: bold;
line-height: 14px;
}


.hspace {
color: #000;
font-size: 12px;
font-weight: bold;
line-height: 14px;
margin: 20px 0 0 0;
padding: 0 0 0 0;
}




/* Link styles. */
a,  a:link {
color: #000;
font-weight: bold;
text-decoration: none;
}

a:visited {
color: #000;
font-weight: bold;
text-decoration: none;
}

a:hover {
color: #000;
text-decoration: underline;
}

a:focus {
color: #000;
}

a:active {
color: #000;
}

#leftColumn1 a:link {
color:#b77a20;
}

#leftColumn1 a:visited {
color:#b77a20;
}

#leftColumn1 a:hover {
color:#b77a20;
background-color:#fff;
padding: 5px;
}

#leftColumn1 a:active {
color:#b77a20;
}

/* Lists styles. */

#topnav ul {
list-style-type: none;
text-align:center;
padding:0;
margin:0;
}

#topnav ul li {
display:inline;
border-right:solid #c1bfba 2px;
background-image: url('http://www.paulinekaplan.com/images/interface/nav_dot.jpg');
background-repeat:no-repeat;
background-position: 0.5em 50%;


}

#topnav ul li a:link{
font-size:12px;
color:#d5a328;
text-decoration: none;
padding: .2em 1.1em .2em 1.7em;
margin:0 0 0 10px;
}

#topnav ul li a:visited {
font-size:12px;
color:#d5a328;
text-decoration: none;
padding: .2em 1.1em .2em 1.7em;
margin:0 0 0 10px;
}

#topnav ul li a:hover {
font-size:12px;
color:#d5a328;
text-decoration: underline;
padding: .2em 1.1em .2em 1.7em;
margin:0 0 0 10px;
}

#topnav ul li a:active {
font-size:12px;
color:#d5a328;
text-decoration: none;
padding: .2em 1.1em .2em 1.7em;
margin:0 0 0 10px;
}


#leftColumn1 ul {
list-style-type:none;
padding: 0;
margin-left: 1em;
}

#leftColumn1 ul li {
background-image: url('http://www.paulinekaplan.com/images/interface/arrow1.gif');
background-repeat:no-repeat;
background-position: 90% .7em;
padding-left: .6em;
padding-top:7px;
padding-bottom: 7px;
border-top: solid #666 1px;
}

/*Image styles*/
#leftColumn1 img {
padding:0;
margin: 0 0 0 20px;
}

/* 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-image: url('http://www.paulinekaplan.com/images/interface/bkgd_lr_shadow.jpg');
  background-color: #fcfcfc;
  margin: 0 auto 0 auto; 
  text-align: left; /* Redefines the text alignment defined by the body element. */
  width: 794px;
}
#outerWrapper #header {
background-image: url('http://www.paulinekaplan.com/images/interface/home_1.jpg');
background-repeat:no-repeat;
background-color: #c6b043;
border-bottom: solid 0px #666;
font-size: 18px;
font-weight: bold;
line-height: 15px;
padding: 0; 
height: 317px;
}

#outerWrapper #header #topnav {
margin: 155px 10px 0 0;
padding:0;
width: 580px;
float: right;
font-size:11px;
background-color: transparent;
}

#outerWrapper #contentWrapper {
background-color: #fcfcfc;
background-image: url('http://www.paulinekaplan.com/images/interface/bkgd_lr_shadow.jpg');
background-repeat: repeat-y;
padding: 0; 
}

#left_gradient {
float: left;
padding: 0;
margin:0;
width: 211px;
background-image: url('http://www.paulinekaplan.com/images/interface/bkgd_lgradient.jpg');
background-repeat:repeat-x;
}

#outerWrapper #contentWrapper #leftColumn1 {
padding: 20px 0 0 0;
background-color: transparent;
background-image: url('http://www.paulinekaplan.com/images/interface/bkgd_lshadow.jpg');
background-repeat:repeat-y;
background-position: left;
}

#outerWrapper #contentWrapper #rightColumn1 {
background-image: url('http://www.paulinekaplan.com/images/interface/bkgd_rshadow.jpg');
background-repeat:repeat-y;
background-position:right;
border-left: solid 0px #666;
float: right;
padding: 0 40px 0 0;
width: 260px;
}

#outerWrapper #contentWrapper #rightColumn1 p {
padding: 0;
margin: 5px 0 0 0;
}

/* 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: 0 320px 0 210px; 
  padding: 0 0 0 20px; 
}

#outerWrapper #contentWrapper #content p {
padding: 0;
margin: 5px 0 0 0;
}


#outerWrapper #contentWrapper #content2 {
  margin: 0 100px 0 210px; 
  padding: 0 0 0 40px; 
}

#outerWrapper #contentWrapper #content2 h2 {
font-family: Arial, Helvetica, sans-serif;
font-size: 13px;
margin: 15px 0 6px 5px; 
padding: 0; 
}

#outerWrapper #contentWrapper #content2 p {
color:#333;
font-family: Arial, Helvetica, sans-serif;
font-size: 12px;
line-height: 17px;
margin: 0 0 10px 5px; 
padding: 0; 
}


#outerWrapper #contentWrapper #content3 {
  margin: 0 50px 0 210px; 
  padding: 0 0 0 40px; 
}

#outerWrapper #contentWrapper #content3 h2 {
font-family: Arial, Helvetica, sans-serif;
font-size: 13px;
margin: 15px 0 6px 5px; 
padding: 0; 
}

#outerWrapper #contentWrapper #content3 p {
color:#333;
font-family: Arial, Helvetica, sans-serif;
font-size: 12px;
line-height: 17px;
margin: 0 0 10px 5px; 
padding: 0; 
}



/* 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 {
background-color: #fcfcfc; 
padding: 0 0 0 0;
margin:0 0 0 0;
background-image: url('http://www.paulinekaplan.com/images/interface/bkgd_footer1.jpg');
background-repeat: none;
height: 98px;
}

#footer h4 {
font-size:12px;
color:#a9701c;
font-weight:bold;
padding:25px 0 0 0;
margin:0 0 0 250px;
}

.foottext {
color:#a9701c;
font-size:12px;
font-weight:bold;
}

#emailtable {
padding:0 0 10px 0;
margin:2px 0 30px 280px;
}

#mailing_list {
padding:0 0 0 0;
margin:0 0 0 0;
}

.left {
float: left;
margin: 10px 10px 10px 0;
}

.red {
color:#b25500;
font-weight: bold;
}

.blue {
color:#003399;
font-weight: bold;
}

.fontnine { 
font-size: 9px; 
font-weight:bold;
}

#rightColumn1 a {
color:#0000cc;
font-size:11px;
font-weight:bold;
}



#outerWrapper #contentWrapper #content2  ul {
padding: 0;
margin: 0 0 13px 0;
}

#outerWrapper #contentWrapper #content2  ul li {
padding: 0;
margin: 0 0 0 35px;
}

#esi {
line-height: 18px;
background: none;
color:#fff;
font-size:11px;
font-weight:bold;
width:700px;
margin:0 auto;
}

#esi a:link {
color:#fff;
font-size:11px;
font-weight:bold;
text-decoration: underline;
}

#esi a:visited {
color:#fff;
font-size:11px;
font-weight:bold;
text-decoration: underline;
}

#esi a:hover {
color:#fff;
font-size:11px;
font-weight:bold;
text-decoration: none;
}


#esi a:active {
color:#fff;
font-size:11px;
font-weight:bold;
text-decoration: underline;
}


#outerWrapper #contentWrapper #content  ul {
padding: 0;
margin: 7px 0 0 20px;
}

#rightColumn1 ul {
padding: 0;
margin: 7px 0 0 20px;
}

