
/* Reset all margins, padding and borders */
* {
    margin: 0;
    padding: 0;
    border: 0;
}

/* Global Properties*/
body {
    color: #000;
    font-family: Verdana, Helvetica, Arial, sans-serif;
    font-size: 100%;
    line-height: 100%;
    background: #fff;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: normal;
    line-height: 1.3em;
}

p {
    margin-bottom: 10px;
    line-height: 1.3em;
}

ul, ol, li {
    list-style-type: none;
    line-height: 1.3em;
}

a, a:visited {
    color: #333;
    text-decoration: none;
    cursor: pointer;
}

a:hover {
    text-decoration: underline;
}

.float-left {
	float: left;
}

.float-right {
	float: right;
}

.clear-both {
	overflow: hidden;
}