/* Start reset html elements */
* {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    background: transparent;
    color: inherit;
    font-size: inherit;
    font-family: inherit;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
}

address, article, aside, audio, canvas, command, datalist,
details, embed, figcaption, figure, footer, header,
hgroup, keygen, mark, meter, nav, ouput, progress,
section, source, summary, time, video, wbr, img {
    display: block;
}

input:focus, textarea:focus, select:focus {
    outline: none;
}

textarea{
	resize: none
}

table {
    border-collapse: collapse;
    border-spacing: 0;
    padding: 0;
    border: 0;
}

table td, table th {
    padding: 0;
}

input {
    -webkit-appearance: none; /*Safari/Chrome*/
    -moz-appearance: none; /*Firefox*/
    -ms-appearance: none; /*IE*/
    -o-appearance: none; /*Opera*/
    appearance: none;
    -webkit-border-radius: 0;
}

a:active, label:active {
    outline: none;
    ie-dummy: expression(this.hideFocus=true);
}

a:focus, label:focus {
    -moz-outline-style: none;
    outline: none;
    ie-dummy: expression(this.hideFocus=true);
}

input[type=checkbox] {
    border-width: 0px
}

/* End reset html elements */

/* Start generic elements  */
html {
    overflow-y: scroll;
    -webkit-font-smoothing: antialiased;
    font-smoothing: antialiased;
    font-smooth: always;
}

body, html {
    height: 100%;
    -webkit-text-size-adjust: none;
}

body {
    color: #000;
}

ul { 
	list-style-position: inside;
}

ul li { 
	padding-left: 0;
}

/* span is to cope for protected emails */
.clear {
    clear: both;
    height: 1px;
    overflow: hidden;
}

/* For modern browsers */
.clearfix:before,
.clearfix:after {
    content: "";
    display: table;
}

.clearfix:after {
    clear: both;
}