
/*** Reset some styles ***/
ul, ol, div, img {
    margin: 0;
    padding: 0;
    border: 0px none;
}
li { list-style-type: none; }

/*** General classes ***/
.left { float: left; }
.right { float: right; }
.clear { clear: both; }
.odd { background-color: #efefef; }
.even { background-color: white; }

/*** Rounded Corners ***/
.rounded {
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    -khtml-border-radius: 10px;
    border-radius: 10px;
}

