/*
 * base.css v0.2 - https://github.com/createthegroup/css-reset/
 * Encapsulated adaptation of [normalize.css](http://necolas.github.com/normalize.css/)
 * designed to be used in conjunction with a reset stylesheet and edited on a
 * project by project basis.
 *
 * Usage:
 *     [include a reset stylesheet here...]
 *     <div>
 *         <h1>This element is unformatted</h1>
 *         <div class="-base">
 *             <h2>This element is formatted</h2>
 *             <p>Adding `-base` to any element will turn it's html content into a
 *             formatted document without the need for extra classes or IDs.</p>
 *         </div>
 *     </div>
 */

 /** TYPOGRAPHY **/

.\-base {
	line-height: 1.5;
}

.\-base h1,
.\-base h2,
.\-base h3,
.\-base h4,
.\-base h5,
.\-base h6 {
    line-height: normal;
}

.\-base h1 {
    font-family: 'P22UndergroundW01-Light', helvetica, arial, sans-serif;
    letter-spacing: 1px;
    font-size: 246.15%; /* 32px */
    text-transform: uppercase;
    color: #111;
    line-height: normal;
    margin: 0 0 0.75em;
}

.\-base h2 {
    font-family: 'Garamond W01 Italic', georgia, serif;
    font-size: 153.85%; /* 20px */
    margin: 2.0em 0 0.4em;
}

.\-base p,
.\-base pre,
.\-base dl,
.\-base menu,
.\-base ol,
.\-base ul {
 	margin: 0 0 1.7em;
}

.\-base abbr[title] {
    border-bottom: 1px dotted;
    cursor: help;
}

.\-base b,
.\-base strong {
    font-weight: bold;
}

.\-base dfn,
.\-base dfn {
    font-style: italic;
}

.\-base ins,
.\-base del,
.\-base s,
.\-base u {
	text-decoration: underline;
}

.\-base b,
.\-base strong {
    font-weight: bold;
}

.\-base address,
.\-base cite,
.\-base dfn,
.\-base em,
.\-base i {
    font-style: italic;
}

.\-base blockquote {
	margin-left: 40px;
	margin-right: 40px;
}

.\-base mark {
    background: #ff0;
    color: #000;
}

.\-base small {
    font-size: 80%;
}

.\-base sub,
.\-base sup {
    font-size: 75%;
    bottom: -0.25em;
}

.\-base sup {
	top: -0.25em;
}

.\-base code,
.\-base kbd,
.\-base pre,
.\-base samp {
    font-family: "Courier New", "Andale Mono", monospace;
}

/** LISTS **/

.\-base dd {
    margin: 0 0 0 40px;
}

.\-base ol,
.\-base ul {
    padding: 0 0 0 40px;
}

.\-base ul {
    list-style: disc;
}

.\-base ol {
    list-style: decimal;
}