/* Stuff used by all Pages ================================================ */

  body {
    font-family: tahoma, verdana, arial, sans-serif;
    font-size: 10.5pt;
  }
  
  input[type="text"]:hover
   , textarea:hover
   , select:hover
   , input[type="image"]:hover 
   , input[type="password"]:hover 
   , input[type="button"]:hover {
    outline: 2px solid yellow;
  }    
  
  input[type="text"]:active
   , textarea:active
   , select:active
   , input[type="image"]:active 
   , input[type="password"]:active 
   , input[type="button"]:active
   , button img:active {
    border: 1px solid #7F9DB9;
    outline: 1px solid #7F9DB9;
  }    
  
  input[type="text"]:focus
   , textarea:focus
   , select:focus
   , input[type="password"]:focus 
   , input[type="button"]:focus
   , button img:focus {
    border: 1px solid #7F9DB9;
    outline: 1px solid #7F9DB9;
    background-color: white;
  }    
  
  input[type="text"]
   , textarea
   , select
   , input[type="password"] {
    margin: 1px; 
    border: 1px solid #7F9DB9;
    background-color: #F5FAFF;
    font: inherit;
  }  
  
  input[type="text"]
   , textarea
   , input[type="password"] {
    padding: 0 0.15em; 
  }
  
  textarea {
    overflow: auto;
  }
