/*
Description:
Removes default browser styling on many elements and creates
more general, cross-browser rules. Based off Yahoo's and
Eric Meyer's reset CSS files.
Version: 2008-03-26
Author: Travis Forden, Threespot
-------------------------------------------------------- */
/* Neutralize styling: Elements we want to clean out entirely */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, font, ins, kbd, q, s, samp,
small, strike, strong, tt, var,
b, u, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
/*table, caption, tbody, tfoot, thead, tr, th, td  {
    background: transparent;
    border: 0;
    font-size: 100%;
    margin: 0;
    outline: 0;
    padding: 0;
    vertical-align: baseline;
}*/
img{
    background: transparent;
    border: 0;
    font-size: 100%;
    margin: 0;
    outline: 0;
    padding: 0;
}

/* Neutralize styling: Elements with a vertical margin */
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
dl, ol, ul {
    margin: 1em 0;
}
/* Basic Font Items */
body {
    line-height: 1;
}
address, caption, cite, code,
dfn, th, var {
    font-style: normal;
    font-weight: normal;
}
/* Tables */
table {
    border-collapse: collapse;
    border-spacing: 0;
}
caption, th {
    text-align: left;
}
/* Remove bullets from lists */
ol, ul {
    list-style: none;
}
/* Quotations */
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
/* Forms */
label {
    cursor: pointer;
}
input, select, textarea {
    font-size: 100%;
}