/* generic CSS 1 */
body {
    color:navy;
    background-color:#DDDDDD;
    font-family:Verdana, Geneva, Arial, sans-serif;
    margin-left:120px;
    /*margin-right:50px;*/
    /* border:1px dotted red;*/
    padding:25px;
    line-height:1.6em;
    background-image:url('dkbluesky.jpg');
    background-repeat:repeat-y;
}

h1, h2, h3 {
 font-weight:normal;
 color:purple;
}
h1 {
 font-size:180%;
 text-align:center;
}
h2 {
 font-size:150%;
 border-bottom: 1px solid red;
 margin-bottom: -0.5em;
}
h3 {
 font-size:120%;
 border-bottom: 1px dotted red;
 /*padding-left:10px;*/
  margin-bottom: -0.5em;
 
}
ul {
  list-style-type: square; 
}
ol {
  list-style-type: upper-roman; 
}
dt {
 font-style:italic; 
}

img {
  border: 1px dashed blue;
}
a  { color:blue; }
a:visited { color:fuchsia; }
a:hover { color:green; }
a:active { color:red; }

table {
  border-collapse: collapse;
  margin-top:1.5em;
}
caption {
  font-style:oblique; 
  caption-side: bottom;
}
td, th {
  border:2px solid black;
}  
td {
  text-align: right;
}