/*
Reset Stylesheet By Dave McNally
Based on http://code.google.com/p/html5resetcss/ By Rich Clark

Version: 1.0
Date: 27th December 2011
Email: dave@enlv.in
URL: http://enlivenlabs.com
*/

/* Reset browser defaults with overrides */
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}

/* For better readability, customise for individual sizes later */
body {
    line-height: 1.5;
}

/* To ensure links aren't left as default (ugly)! */
a {
    text-decoration: none;
    color: inherit;
}

/* To clear all floats */
.group:after { 
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}

/* Make sure HTML5 elements are behaving */
article,aside,details,figcaption,figure, footer,header,hgroup,menu,nav,section { 
	display: block;
}

/* Be gone, evil default bullets */
nav ul {
    list-style: none;
}

/* Quote resets */
blockquote:before, blockquote:after, q:before, q:after {
    content : '';
    content : none;
}

q {
    quotes : none;
}

/* Override initial bolding of headings */
h1, h2, h3, h4, h5, h6 {
    font-weight: normal;
}


* {
    box-sizing: border-box;
}