/* Makes Sure that the Scrollbar is always present */

html {
  overflow-y: scroll; }

/* Basic Site Properties */

body { 
  padding: 0;
  margin: 0;
  color: black; 
  font-family: "Georgia", sans-serif;
  background-color: #EAEAEA; }

/* Formatting for the Main Content Div of Each Page */

div#content {
  margin-left:auto;
  margin-right:auto;
  margin-top:0;
  margin-bottom:0;
  padding: 6em 1em 2em 1em;
  height: 100%;
  max-width:50em;
  background: white;
  border: 6px ridge #CCCCCC; }

@media handheld {

  div#content {
    border: none;
    margin: 0; }
}

/* Dividers for Different Layouts */

div.floatLeft {
  float: left; }

div.floatRight {
  float: right; }

div.fixed {
  position: fixed; }

div.smlSpacing {
  margin: 0.2em; }

div.medSpacing {
  margin: 0.5em; }

div.lrgSpacing {
  margin: 1em; }

div.noSpacing {
  margin: 0; }

div.fullWidth {
  width: 100%; }

div.fullHeight {
  height: 100%; }

div.raised {
  z-index: 2; }

div.raisedLess {
  z-index: 1; }

div.lowered {
  z-index: -2; }

div.top {
  top: 0; }

div.belowNav {
  top: 6em; }

div.bottom {
  bottom: 0; }

div.aboveFooter {
  bottom: 1.7em; }

div.left {
  left: 0; }

div.right {
  right: 0; }


/* Text Settings */

p {
  text-align: justify; }
    
a {
  color: #115E55 }

h1 {
  text-align: center;
  font-variant: small-caps; 
  font-size: 2.5em;
  font-weight: bold; 
  text-shadow: 1px 1px 3px #999999; 
  text-transform: capitalize;
  padding-bottom: 0.5em;
  background: url('../../img/underline.png') no-repeat center bottom; }

h2 {
  text-align: right;
  font-size: 1.6em;
  font-weight: bold; 
  text-shadow: 1px 1px 3px #999999; 
  padding-top: 0.2em;
  margin-top: 1.5em;
  background: url('../../img/overline.png') repeat-x center top; }

address {
  font-style: normal;
  font-size: 0.7em;
  padding-top: 0.4em;
  padding-left: 0.4em; }


/* Image Layouts */

img.centredPic {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0.2em;
  margin-bottom: 0.2em;
  border: 0; }
