/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

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;
}
body {
	line-height: 1;
}
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;
}

/*************************
	Main Styling
*************************/
body {
	background: #FFFFFF;
	color: #636363;
	padding-top: 15px;
	font-family: goudy;
}

a {
	color: #08C;
	text-decoration: none;
}

a:hover,
a:focus {
	text-decoration: underline;
}

#container {
	width: 1160px;
	margin: 0 auto;
	padding: 0 18px;
}

/* Header */
#container > header {
	padding: 0 0.8em;
	height: 90px;
}

header div#logo { 
	float: left;
	color: rgb(11, 148, 70);
	padding-top: 0.9em;
	font-size: 2em;
	font-style: regular;
	font-family: klinicslab;
	
}

header nav {
	float: right;
}

header nav ul {
	margin: 0;
	padding: 0;
	float: right;
}

header nav ul li {
	float: left;
	padding: 2.5em 0 2.5em 2em;
}

header nav ul li a,
header nav ul li a:visited {
	font-size: 1em;
	text-decoration: none;
	color: rgb(10,28,49);
	font-family: museoslablight;
}

header nav ul li a.active,
header nav ul li a:focus,
header nav ul li a:hover {
	color:rgb(10, 28, 49);
	font-family: klinicslabbook;
	
}

/* Home Featue */
section#feature {
	width: 100%;
	height: 300px;
	background-color:rgb(10, 28, 45);

	color:rgba(255,255,255,1.00);
	text-align: center;
	text-shadow: 0 1px 3px rgba(0,0,0,0.8);
	-moz-text-shadow: 0 1px 3px rgba(0,0,0,0.8);
	-webkit-text-shadow: 0 1px 3px rgba(0,0,0,0.8);
	-o-text-shadow: 0 1px 3px rgba(0,0,0,0.8);
	
	
}

section#feature h1 {
	font-size: 1.2em;
	font-weight: bold;
	padding-top: 5.8em;
	font-family: museoslablight;
	font-style: light;
	letter-spacing: 1px;
	
}

section#feature h2 {
	padding-top: 0.5em;
	font-size: 3.5em;
	font-family: klinicslabbook;
	font-style: light;
	letter-spacing: 1px;

}

/* Page Text */
* {
    box-sizing: border-box;
}

body {
    background-color: #f1f1f1;
    padding: 20px;
    font-family: Arial;
}

/* Center website */
.main {
    max-width: 1000px;
    margin: auto;
}

h1 {
    font-size: 50px;
    word-break: break-all;
}

.row {
    margin: 8px -16px;
}

/* Add padding BETWEEN each column (if you want) */
.row,
.row > .column {
    padding: 8px;
}

/* Create four equal columns that floats next to each other */
.column {
    float: left;
    width: 25%;
}

/* Clear floats after rows */ 
.row:after {
    content: "";
    display: table;
    clear: both;
}

/* Content */
.content {
    background-color: white;
    padding: 10px;
}

/* Responsive layout - makes a two column-layout instead of four columns */
@media screen and (max-width: 900px) {
    .column {
        width: 50%;
    }
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
    .column {
        width: 100%;
    }
}
/* Footer */
footer {
	text-align: center;
	font-size: 0.7em;
	border-top: 1px dotted #0B0C13;
	padding-top: 1em;
	margin: 1em;
	clear: both;
}

footer a,
footer a:visited {
	color: #636363;
}

footer a:hover,
footer a:focus {
	color: green;
}
