/*original from The CSS Anthology (Sitepoint)*/
/*Goes with Sheila Phillips' website*/

body { 
  margin: 0;
  padding: 0;
  font-family: Georgia, "Times New Roman", Times, serif;
  background-color: #c1bdd7;
  text-align: center;
  /*background-image: url(pageshadow.jpg);
  background-repeat: repeat-y;
  background-position: center;*/
} 

#wrapper {
  position: relative;
  text-align: left;
  width: 1020px;
  margin-right: auto;
  margin-left: auto;
  background-color: #ffffff;
  background-image: url(background.jpg);
  background-repeat: repeat-y;
  margin-top: 10px;
  margin-bottom: 10px;
} 

#header {
  position:relative; 
  height:170px; 
  background-color: #cccccc;
  background-image: url(header.jpg); 
  width:100%;
} 

#content {
  float: right;
  width: 695px;
  padding: 20px 15px 0 10px;
  background-color: transparent;
}

#scrollpicture {
  height: 270px;
  width: 686px;
  overflow: auto;
  border: 2px solid #3f3579;
}

#sideleft {
  float: left;
  width: 300px; 
  color: #ffffff;
  background-color: transparent;
  padding: 10px 0 0 0;
}
 
#footer {
  clear: both;
  color: #000000;
  text-align: right;
  background-color: transparent;
  background-image: url(bottom_border.jpg);
  background-repeat: no-repeat;
  background-position: bottom;
  padding: 10px 20px 15px 0;
}

a:link, a:visited, a:active {
  text-decoration: none;
  color: #5e5499;
}

a:hover {
  text-decoration: underline;
}

img {
  border: 2px solid #3f3579;
}
 
.noborder {
  border: none;
}

.list {
  line-height: 2em;
}

/*printer styles*/ 
@media print{ 
/*hide the left column when printing*/ 
#sideleft {
  display:none;
} 
}

