/* reset margin & padding for block level elements or elements considered so */
html, body, address, blockquote, center, dir, div, dl, fieldset, form, h1, h2,
h3, h4, h5, h6, hr, isindex, menu, noframes, noscript, ol, p, pre, table, ul,
dd, dt, li, tbody, thead, tfoot, tr, td, th, input, select {
    padding: 0;
    margin: 0;
}

table {
    border-collapse: collapse;
}

/*reset border style, prevents doubled borders/
table {
    border-collapse: collapse;
}
/*img in links with no borders*/
a img, a:link img, a:visited img, img,  fieldset, abbr, acronym {
    border: none;
}
/*before and after styles for quoted*/
q:before,q:after {
    content:'';
}

/*reset lists to no style*/
ol,ul {
    list-style: none;
}

html,h1,h2,h3,h4,h5,h6,pre,code {
    font-size: 100%;
    font-weight: normal;
    font-style: normal;
}
/*reset links to no decoration*/
a, a:link, a:visited, a:active, a:hover {
    text-decoration: none;
}
/*alignment in table elements western style from left to right*/
caption,th,td {
    text-align: left;
}

/*reset input Style fuer WebKit*/
input[type=button],
input[type=submit] {
   -webkit-appearance: none;
}