body {
    background-color: white;
    /*set font size to 14 pixels or 100% of the default size*/
    font-size: 14px;
    /*font-size: 100%/1.125; */
    font-family: 'Lucida Grande','Lucida Sans Unicode','GNU Unifont',Verdana,Helvetica,sans-serif;
    line-height: 1.5;
    color: #2a2a2a;

    /*width: 100%;*/
}

header {
    width: 100%;
    top: 0;
    left: 0;
}

h1 {
    font-size: 2.5em;
    font-weight: bold;
    color: black;
    margin: 0;
    padding: 0;
}

.pageTitleInfo {
    text-align: left;
}

/* Add background color to the top navigation */
.topnav {
    background-color: white;
    border: 1px solid #2a2a2a;
    overflow: auto;
    margin: 10px 10px 10px 10px;
    position: relative;
  }
  
  /* Style the links inside the navigation bar */
  .topnav a {
    float: left;
    color: #2a2a2a;
    text-align: center;
    padding: 0px;
    text-decoration: none;
    font-size: 16px;
    margin: auto;
    padding: 5px 0px 5px 0px;
    width: 25%;
  }
  
  /* Change the color of links on hover */
  .topnav a:hover {
    background-color: #ddd;
    color: #2a2a2a;
  }
  
  /* Add a color to the active/current link */
  .topnav a.active {
    background-color: #04AA6D;
    color: white;
  }

.mainContent {
    text-align: left;
    padding: 20px 20px;
    margin: 10px 10px 10px 10px;
    border: 1px solid #000;
}

div {
    /*border: 1px solid #000;*/
    margin: 0px;
    padding: 0px;
}

/* make paragraphs of class inputText bold */
.inputText {
    font-size: 14px;
    color: #2a2a2a;
    font-weight: bold;
    font-style: italic;
    font-family: 'Lucida Grande','Lucida Sans Unicode','GNU Unifont',Verdana,Helvetica,sans-serif;
}

/* remove border from input boxes and add a carrot at the beginning*/
input[type=text] {
    border: none;
    font-weight: bold;
    color: darkblue;
    font-size: 14px;
    font-family: 'Lucida Grande','Lucida Sans Unicode','GNU Unifont',Verdana,Helvetica,sans-serif;
    width: 80%;
}


/* remove border from input boxes when active*/
input[type=text]:focus {
    border: none;
    outline: none;
    font-weight: bold;
    color: darkblue;
    font-size: 14px;
    font-family: 'Lucida Grande','Lucida Sans Unicode','GNU Unifont',Verdana,Helvetica,sans-serif;
}

input[type=text]:disabled {
    background-color: inherit;
}

#storyContent {
    /* preserve line breaks */
    white-space: pre-wrap;
}

#content {
    margin: 0 200px 0 0;
}

#content .inner {
    padding-top: 1px;
    margin: 0 10px 10px 10px;
}

#side {
    float: right;
    width: 180px;
    margin: 0;
}

#side .inner {
    padding-top: 1px;
    margin: 0 10px 10px 10px;
}

#footer {
    margin-top: 10px;
    clear: both;
}

#footer .inner {
    margin: 10px;
}

.hiddenElements {
    display: none;
  }