body, html { padding: 0; margin: 0; } /* make everything fit in the page nicely */
html { /* baseline values */
    background-color: #000;
    color: #ccc;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 14px;
    cursor: crosshair; /* i just think this is cute. feel free to remove */
}
body {
    width: 900px; /* layout width */
    margin: auto;
}
/*********************
    basic stuff(?)    
*********************/

h1, h2 { /* becauuse font variation is cute */
    font-family: Georgia, 'Times New Roman', Times, serif; 
    text-align: center;
}
h1, h2, h3 { /* any floating effects will be removed beforehand */
    clear: both;
}
h1 {
    font-size: 2.5em;
}
h2 {
    padding: 0;
    margin: 0;
    font-size: 1.2em;
    background-color: #336;
    background-image: linear-gradient(#779 30%, #336 100%);
    color: #ddd;
}
h3 {
    font-size: 1em;
    padding: 2px; margin: auto;
    max-width: 700px;
    margin-top: 10px;
    background-image: url(/img/headings.png);
    border: 1px solid #778;
}
h4 {
    font-size: 1em;
    color: #ddd;
    text-align: center;
    padding: 0; margin: 10px;
}
p {
    margin: 5px;
    text-align: justify;
}
a {
    color: #a6a;
    text-decoration: none;
}
a:hover {
    color: #fff;
    text-decoration: underline;
}
ol, ul, dl {
    width: 80%; margin: auto;
}

/*********************
    for further use    
*********************/

.iconleft { /* stick to the side of the element, with some space */
    margin: 10px;
    float: left;
}
.iconright { /* take a wild guess */
    margin: 10px;
    float: right;
}
.imgcenter {
    display: block;
    text-align: center; margin: auto;
}
.center {
    text-align: center;
}