/*

    HTML and CSS
    
    Author: Alyshia Lemley
    Date: 11/8/2015
    

*/




/* Styles for the dynamic table of contents */


#index {
   font-family: 'Trebuchet MS', Helvetica, sans-serif;
   padding: 10px 5px;
   font-size: 10px;
   border: 2px solid black;
   background-color: rgb(212, 219, 255);
}
                          
#index h1 {
   font-size: 14px; 
   text-align: center; 
   background-color: black; 
   border: 2px solid black; 
   letter-spacing: 2px; 
   font-weight: normal;
   color: white;
}

#index span {
   background-color: white;
   border: 1px solid black; 
   cursor: pointer;
   display: inline-block;
   font-family: 'Courier New', courier, monospace;
   font-size: 10px; 
   height: 10px;
   margin-right: 4px; 
   padding: 0px; 
   text-align: center; 
   width: 10px;
}
                            
#index a {
   color: black;
   text-decoration: underline;
}

#index li {
   list-style-type: none; 
   text-transform: uppercase; 
}
                          
                          
#index ol {
   margin-left: 0px; 
   padding-left: 0px;
}

#index ol li {
   margin-top: 5px;
}

#index ol ol {
   margin-left: 20px;
}

#index ol ol li {
   margin-top: 5px;
}

#index ol ol ol {
   margin-left: 25px;
}

#index ol ol ol li {
   margin-top: 5px;
}

