/*
   Definition of the text and text areas of the page.
   
   Warren Sack <wsack@ucsc.edu>
*/
   
     body {
          background: white;
          margin-left: 10%;
          margin-right: 10%;
     }
     :link {
          color: black;
     }
     :visited {
          color: black;
     }
     :Active {
          color: black;
     }
     :hover {
          color: gray;
	 }
     .text {
          font-family: Arial;
          font-size: 12pt;
          color: black;
     }
     .headingText {
          font-family: Arial;
          font-size: 14pt;
          color: black;
     }
       .keyText {
          font-family: Arial;
          font-size: 10pt;
          color: gray;
          z-index: 1;
     }
     .valueText {
          font-family: Arial;
          font-size: 10pt;
          color: black;
          z-index: 1;
     }
     .keyBox {
          background: white;
          border: none;
     }
     .valueBox {
          background: white;
          border: none;
     }
    #keysAndValues{   
            position: absolute;
            left: 100;
            top: 50;
            opacity:.90;
            filter: alpha(opacity=90); 
            -moz-opacity: 0.9;
            width: 400;
            height: 400;
            background-color: white
     }
