html {
     background-color: white;
}

div.relative {
             position: relative;
             top:10px;
}

h1 {
   color: #86592d; /* darker saddlebrown */
}

h2 {
   color: #86592d; /* darker saddlebrown */
   font-size: 110%;
}

h3 {
   color: #86592d; /* darker saddlebrown */
   font-size: 120%;
}

/* Used for centered h3 style  underlined text */
.Big-Txt-Ctr-UL {
        color: #86592d; /* darker saddlebrown */
        text-align: center;
        text-decoration-line: underline;
        font-size: 150%;
        font-weight: bold;
}

.container {
            width: 500px
}

.left {
      float: left;
}

.right { 
  float: right;
}

/* Used for top navigation menu */
.selected {
        font-weight: bold;
        background-color: #bf935a;      
}

body {
   margin-left: 20px; /* Space from left of page */
   /* padding-left:100px; Space from left of margin */
}

/* Style the content */

.content {
  background-color: white;
  padding: 10px;
}

/* Horizontal Nav Bar start */

.NavBar {
     overflow: hidden; /*prevent li elements from going outside of the list */
     float:left;
     background-color: tan;
     width:100%;
     margin:0px;
     border-bottom: 20px red;
     list-style:none; /* Remove bullets */ 
}

.NavBar ul {
    float:right; 
    margin:0; /* Space from top of page */
    padding:0; /* Space from left of page */
    list-style:none; /* Remove bullets */   
}

#NavBar li {
     float:left;
}

/* NavBar links layout */
.NavBar a {
    float:left;
    display:block;
    color: #86592d; /* darker saddlebrown */
    text-align: center;
    padding:10px;
    margin: 0px;   
    font-size: 24px;
    text-decoration: none;
    font-weight: bold;    
}


/* NavBar links mouseover background */

.NavBar a:hover  {
     color:wheat; 
     background:Black;  
}

.NavBar a.active {
     color:wheat; 
     background: blue; 
}


/* Horizontal Nav Bar end */


ul.no-bullets {
  list-style-type: none; /* Remove bullets */
  margin: 20; /* Remove margins */
  padding:100; /* Space from left of page */
  line-height: 1.3;
}

p.Indent {
             font-size: 100%;
             line-height: 1;
             margin-left: 20px;

}
p.TopPageTitle {
             color: blue;
             font-weight: bold;
             font-size: 120%;
             align=center;
             line-height: 1;
}

p.WebpageNote {
             color: crimson;
             font-weight: bold;
             font-size: 120%;
             align=center;
}

