<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*========================================================================================
    * Filename:         reset.css
    * Description:      Reduces browser inconsistencies
    * Version:          1.0 (2015-11-11)
========================================================================================*/

/*========================================================================================
    Remove margin, padding, border and outline from several tags.
========================================================================================*/
* { outline: none !important; }

html, body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, button, input, select, textarea, p, blockquote, th, td {
    margin: 0;
    padding: 0;
}

object, embed {
    outline: 0;
}

html, abbr, acronym, fieldset, img, iframe {
	border: 0;
}

/*========================================================================================
    Prevent dotted border on focused elements.
========================================================================================*/

:focus {
    outline: none;
}

/*========================================================================================
    Remove border around linked images.
========================================================================================*/

a img, :link img, :visited img {
    border: 0;
}

/*========================================================================================
    Improve usability by changing the cursor.
========================================================================================*/

button, a {
    cursor: pointer;
}

abbr, acronym {
    cursor: help;
}

label {
    cursor: default;
}

/*========================================================================================
    Remove possible quote marks from &lt;q&gt;, &lt;blockquote&gt;.
========================================================================================*/

blockquote, q {
    quotes: none;
}

/*========================================================================================
    Adjust the default font size and line spacing.
    Avoid IE inheritance problems when using relative measurements to specify font size.
    Compensate rounding errors in some ancient versions of Opera and Safari.
========================================================================================*/

html {
    font-size: 100%;
    line-height: 1;
}

/*========================================================================================
    Set the default foreground and background colors.
========================================================================================*/

body {
    color: #333;
    background: #FFF;
}

/*========================================================================================
    Tables still need 'cellspacing="0"' in the markup.
========================================================================================*/

table {
    border-collapse: collapse;
    border-spacing: 0;
}

/*========================================================================================
    Disable default scrollbar for textareas in IE.
========================================================================================*/

textarea {
    overflow: auto;
}

/*========================================================================================
    Remove default list-markers, since lists are used more often for semantics.
========================================================================================*/

ol, ul {
    list-style: none;
}

/*========================================================================================
    Specify the font style and thickness for several tags.
========================================================================================*/

address, caption, cite, code, dfn, h1, h2, h3, h4, h5, h6, th, td, var {
    font-style: normal;
    font-weight: normal;
}

em, i {
    font-style: italic;
}

strong, b {
    font-weight: bold;
}

/*========================================================================================
    Achieve consistent font usage in form elements.
========================================================================================*/

input, button, select, textarea {
    font-family: inherit;
    font-size: 100%;
    font-weight: inherit;
}

/*========================================================================================
    Miscellaneous conveniences.
========================================================================================*/

div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, p, blockquote, th, td {
    background: transparent;
}</pre></body></html>