﻿/* =Reset
-----------------------------------------------------------------------------------------------*/

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, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}

html {
    height: 100%;
    min-width:300px; 
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
* {
    -moz-box-sizing:border-box;
    -webkit-box-sizing:border-box;
    box-sizing:border-box;
}


/* =BASE
-----------------------------------------------------------------------------------------------*/

/* =GENERAL
-----------------------------------------------------------------------------------------------*/

body {
    background-color: #2c2d32;
    font-family: Verdana, Arial;
    line-height: 1.4;
    font-size: 90%;
    color: #333;
    min-height: 100%;   
    
}

/* =headings
	-------------------------------------------------------------- */

h1, h2, h3, h4, h5, h6 {
    color: black;
    font-weight: normal;
}

h1 {
    font-size: 2.0em;
    margin-bottom: 0.3em;
    font-weight: 600;
}

h2 {
    font-size: 1.6em;
    margin-bottom: 1.2em;
    font-weight: 600;
}

h3 {
    font-size: 1.2em;
    margin-bottom: 0.6em;
    font-weight: 600;
}

h4 {
    font-size: 1.0em;
    font-weight: 600;
    margin-bottom: 0.6em;
}

h5 {
    font-size: 1.0em;
    font-weight: 600;
    margin-bottom: 0.6em;
}

h6 {
    font-size: 1.0em;
    text-transform: uppercase;
}

h1, h2, h3, h4, h5, h6 {
    font-family: Verdana, Arial;
}

/* =text-elements
	-------------------------------------------------------------- */

a {
    color: #0073BF;
    text-decoration: none;
}

    a:hover {
    }

    a img {
        border: none;
    }

em {
    font-style: italic;
}

b {
    font-weight: 600;
}

p, ul, ol, pre, code {
    margin-bottom: 1.1em;
}

ul {
    list-style-type: square;
}

    ul.checklist {
        list-style-image: url(images/bg-checklist.png);
    }

    ul.indented {
        margin-left: 1.3em;
    }

ol {
    list-style-type: decimal;
    list-style-position: inside;
}

pre, code {
    border: 1px solid #efefef;
    border-left-width: 5px;
    display: block;
    padding: 0.6em;
    font-size: 0.8em;
    font-family: monospace;
    background-color: #f5f5f5;
}

.note {
	font-style: italic;
	color: #5c5c5c;
}

strong {
    font-weight: 600;
}

/* due to IE <HR> margin bugs I had to made a class and apply it to a div to achieve the effect of a <HR> */
hr {
    border: none;
    height: 1px;
    margin: 1.9em 0;
    background-color: #efefef;
    color: #efefef;
}

.hr {
    border-top: 1px solid #efefef;
    margin: 1.9em 0;
}


/* =default-classes
	-------------------------------------------------------------- */

.img-align-left {
    margin: 5px 25px 15px 0;
    float: left;
}

.img-align-right {
    margin: 5px 0 15px 10px;
    float: right;
}


.text-right {
    text-align: right;
}

.text-center {
    text-align: center;
}

.float-left {
    float: left;
}

.float-left_r40 {
    float: left;
    margin-right:40px;
}

.float-right {
    float: right;
}

/* =grid
	-------------------------------------------------------------- */
.clearafter:after {
    clear: both;
    visibility: hidden;
    display: block;
    content: "";
    height: 0;
}

/* Clear Fix Hack - add  class="fixed"  to div's that have floated elements in them */
.fixed:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}

.fixed {
    display: block;
}
/*  \*/
.fixed {
    min-height: 1%;
}

* html .fixed {
    height: 1%;
}

.row {
}

.last {
    margin-right: 0px;
}

.clear {
    clear: both;
}