/***********
         Eric Meyer's CSS normalization
         modified for Arts & Science
                               **************/

html { overflow-y: scroll; } /* added from HTML5 boilerplate: forces scrollbar to prevent appearance of horizontal shift */

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, em, font, ins, kbd, q, s, samp,
small, strike, strong, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-weight: inherit;
    font-style: inherit;
    font-size: 100%;
    font-family: inherit;
    /* removed table related tags so iOn can still control table appearance; removed sub and sup so iOn can still control the superscript and subscript appearance  */
} 
#header img,
#rt-col img,
#lft-col img,
#footer img,
#content > img
#content .bucket img {  /* need to leave margin default in #content #usrcontent so the CMS can control h-space in the HTML. Can't use the :not() selector because it isn't supported in IE 8  */
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-weight: inherit;
    font-style: inherit;
    font-size: 100%;
    font-family: inherit;
}
#content #usrcontent {
    border: 0;
    outline: 0;
    font-weight: inherit;
    font-style: inherit;
    font-size: 100%;
    font-family: inherit;
}
    
/* reinstated default focus style */
a:focus {
    outline: 1px dotted #0e305e;
}
body {
    line-height: 1;
    color: black;
    background: white;
}
em { font-style: italic; }
strong { font-weight: bold; }
/*ol, ul {

    list-style: none;
} removed so people can control in iOn */

/* tables still need 'cellspacing="0"' in the markup */
table {
    border-collapse: separate;
    border-spacing: 0;
}


img, video, object, table { max-width: 100%; }

blockquote:before, blockquote:after,
q:before, q:after {
    content: "";
}
blockquote, q {
    quotes: "" "";
}