/*Style sheet for simulating frames
 *using only Cascading Style Sheets
*/

body{ margin: 0px; }
A:link, A:visited, A:active { text-decoration: none }

/* Mast head is simulation of top frame */
#mastHead{ position: fixed;
           top: 0px;
           left: 0px;
           width: 100%;
           height: 100px;
           z-index: 1;
           font-size: 400%;
           text-align: center;
           letter-spacing: 0.35em;
           font-family: serif;
           border:none;
			  background-image: url("images/banner.jpg");
			  border-bottom: 2px solid #DD0000;
           }

/* Link Index is the simulation of left index/browsing frame */
#linkIndex{ position: fixed;
            left: 10px;
            top: 100px;
            width: 170px;
            border-right: 2px solid #DD0000;
            padding: 3px;
            text-decoration: none;
            text-align: left;
            padding-bottom: 150px;
            float: left;
            }

/* Contents Box is the simulation of the main content frame
   whose content changes according to the link clicked in the
   left linkIndex frame */
#contentsBox{ border: none;
				  position: absolute;
              top: 130px;
              left: 200px;
              padding: 0px 5px;
              }

#linkIndex A { display: block;
    				padding-left: 10px;
    				line-height: 110%;
    				border-left: 1px solid #fff;
               }
                                
#linkIndex A:visited{ color: blue;
                      }
                      
#linkIndex A:hover{ background-color: brown;
						  font-family: serif;
						  color: white;
                    }
                    
#linkIndex p{ background-color: none;
						  font-family: serif;
						  color: black;
                    }
                    
#linkIndex tt { background-color: navy;
	  				 font-family: serif;
	  				 display: block;
	  				 font-size: 12pt;
	  				 padding-left: 10px;
	  				 line-height: 110%;
	  				 border-left: 1px solid #fff;
	  				 color: white;
					 }
					 
#contentsBox tt { color: navy;
                  background-color: #FFDDAA;
                  padding: 0px 3px;
                  }

pre.code{ margin: 5px 25px;
       	 border: 2px dashed #ddd;
       	 padding: 3px 8px; }

dt { margin-top: 1em;
     color: #DD0000;}