/* the following lines attempt to clear the css palette */

* {
     margin:0;
     padding:0;
     border: none;
     text-decoration:none;
     list-style:none; 
}

/* css proper */

body {
     color: white;
     background-color: black;
     font: 0.84em/1.333 Arial, sans-serif; 
}

h1 {
     font-size: 2em;
     margin-bottom: 10px;
     color: #FF6600; 
}

h2 {
     font-size: 1.5em;
     margin-bottom: 10px;
     color: #FF9933; 
}

h3 {
     font-size: 1.4em;
     margin-bottom: 10px; 
}

h4 {
     font-size: 1.2em;
     margin-bottom: 10px; 
}

h5 {
     font-size: 1.1em;
     margin-bottom: 10px; 
}

h6 {
     font-size: 1em;
     margin-bottom: 10px; 
}

p {
     padding-bottom: 10px; 
}

a {
     color: #FF0000; 
}

ul{
     margin-bottom: 10px; 
}

li{
     list-style-type: square;
     list-style-position: inside;
     margin-left: 10px; 
}

.hidden {
     display: none; 
}

.centered {
     text-align: center; 
}

a:hover {
     text-decoration: underline; 
}

/* end of basic elements */