<html>
<!-- 
  Copyright Evan Goer, Feb 2003.
  You may freely copy, share, and modify this file for non-profit, 
  educational purposes only.  
-->
<head>
  <title>Non-uniform Padding</title>
  <style type="text/css">
  <!--

    div.unpadded {
      border: 3px solid;
      background: #ccccff;
    }

     div.name {
     font-weight: bold;
     font-size: 100%;
     font-face: "Tahamo";
    }
    div.main_page { 
      padding-top: 2%;
      padding-bottom: 2%;
      padding-left: 13%;
      padding-right: 13%;
      font-family: "Times New Roman";   
    }
    div.intro {
      padding-top: 30px;
      margin-bottom: 20px;
      padding-left: 20px;
      padding-right: 20px;
      font-family: "Times New Roman";
    }
    div.title {
     background: #C0C0C0;
     font-weight: bold;
     font-size: 100%;
     padding_top: 5px;
     padding-bottom: 5px;
     font-family: "Tahoma";   
    }
    div.in_frame {
      padding_top: 15px;
      padding-bottom: 15px;
      font-family: "Times New Roman";
    }
      
  -->
  </style>
</head>
<body>
<div class="unpadded">
  No padding
</div>
<br>
<div class="padded">
  Top: 10px; bottom: 0px<br>
  Left: 5em; right: 0px
</div>
</body>
</html>
