/*

    We have to use an universal reset.css file,
    so i've created one. Be happy!

    P.S.: <3 Peter is a homo <3
    
    ~ eDe ~

    Version: 1.1

*/

/* Common stuffs */
@charset "UTF-8";

*
{
    /* Model */
    margin:0;
    padding:0;
    border:0;
    outline:0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    
    /* Text */
    line-height:100%;
    font-size:100%;
    font-weight:inherit;
    font-family:inherit; /* V 1.1 */
    vertical-align: baseline;
    
    /* Hyperlink */
    text-decoration:none;
    color:inherit;
    
    /* List */
    list-style:none;
}

/* Table */
table
{
    border-collapse: collapse;
    border-spacing: 0;
}

/* Inline inputs */
input, select
{
    vertical-align:middle;
}

/* Cursor type changes on :hover */
a,
button,
select,
input[type=radio],
input[type=checkbox],
input[type=file]
{
    cursor:pointer; /* V 1.1 */
}

/* HTML5 elements' display-role reset */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section
{
	display: block;
}