/*Style sheet for simulating frames
 *using only Cascading Style Sheets
*/

body{ margin: 0px; }

/* Mast head is simulation of top frame */
#mastHead{ position: fixed;
           top: 0px;
           left: 0px;
           width: 100%;
           height: 100px;
           z-index: 1;
           background-color: #C0C0C0;
           border: 2px solid #414141;
           }

/* Link Index is the simulation of left index/browsing frame */
#linkIndex{ position: fixed;
            left: 0px;
            top: 104px;
            width: 200px;
            border: 2px solid #EE742A;
            padding: 3px;
            }

/* Contents Box is the simulation of the main content frame
   whose content changes according to the link clicked in the
   left linkIndex frame */
#contentsBox{ position: relative;
              margin-top: 104px;
              margin-left: 215px;
              border: 2px solid #EE742A;
              padding: 0px 5px;
              }

#linkIndex>a { display: block;
               padding: 1px 0px;
               }

pre.code{ margin: 5px 25px;
          border: 2px dashed #ddd;
          padding: 3px 8px; }

dt { margin-top: 1em;
     color: #EE742A;}


