/*
	960 Grid System ~ Text CSS.
	Learn more ~ http://960.gs/

	Licensed under GPL and MIT.
*/

/* `Basic HTML
----------------------------------------------------------------------------------------------------*/

body {
    font-family: 'Comic Neue', sans-serif;
    font-weight: 600;
    font-size: 1em;
    line-height: 1.5;
    /* Enable a font's kerning: http://stackoverflow.com/questions/15160897/font-feature-settings-what-is-the-correct-syntax */
    font-feature-settings: "kern";
    -moz-font-feature-settings: "kern";
    -webkit-font-feature-settings: "kern";
    color: #25241f;
    margin: 0px;
}

a:focus {
	outline: 1px dotted;
}

hr {
	border: 0 #ccc solid;
	border-top-width: 1px;
	clear: both;
	height: 0;
}

/* `Headings
----------------------------------------------------------------------------------------------------*/

h1 {
	color: #04346C;
	font-size: 28px;
    font-family: serif;
    font-weight: bold;
    text-align: left;
    margin-bottom: 0px;
    height: 36px;
    line-height: 36px;
}

h2 {
    color: #1F7D63;
	font-size: 28px;
    font-family: serif;
    font-weight: normal;
    text-align: left;
    margin-bottom: 0px;
    height: 36px;
    line-height: 36px;
}

h3 {
	color: #2818B1;
    font-size: 28px;
    font-family: serif;
    font-weight: normal;
    text-align: left;
    margin-bottom: 0px;
    height: 36px;
    line-height: 36px;
}

h4 {
	color: white;
    font-size: 28px;
    font-family: serif;
    font-weight: bold;
    text-align: left;
    margin-bottom: 0px;
    height: 36px;
    line-height: 36px;
}

h5 {
	color: white;
    font-size: 16px;
    font-family: serif;
    font-weight: bold;
    text-align: left;
    margin-bottom: 0px;
    height: 18px;
    line-height: 18px;
}

h6 {
    color: black;
	font-size: 16px;
    height: 18px;
    line-height: 18px;
}

/* `Spacing
----------------------------------------------------------------------------------------------------*/

ol {
    list-style: decimal;
}

ul {
    margin: 0px;
    -webkit-margin-before: 0px;
    -webkit-margin-after: 0px;
    -webkit-margin-start: 0px;
    -webkit-margin-end: 0px;
    -webkit-padding-start: 0px;
    list-style: disc;
}

li {
    margin: 0px;
    line-height: 24px;
}

p,
dl,
hr,
h6,
ol,
ul,
pre,
table,
address,
fieldset {
    margin-bottom: 0px;
    line-height: 18px;
}