/*=================*/
/*=== CSS RESET ===*/
/*=================*/

/* 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;
}

/*=============*/
/*=== FONTS ===*/
/*=============*/

@font-face {
    font-family: 'DIN Alternate Bold';
    font-style: normal;
    font-weight: normal;
    src: local('DIN Alternate Bold'), url('DINAlternate-Bold.woff') format('woff');
}

/*====================*/
/*=== MAIN STYLING ===*/
/*====================*/

html {
    
}

#main {
    width: 100%;
    background-color: #FFFFFF;
}

body {
    min-width: 600px;
    min-height: 600px;
}

/*===========================*/
/*=== PAGE HEADER STYLING ===*/
/*===========================*/

.pageHeader{
    position: fixed;
    width:100%;
    min-width: 650px;
    height: 70px;
    background-color: #F8F8F8;
}

.pageTitle {
    position: absolute;
    
    width: 150px;
    padding: 15px;
    
    font-family:'DIN Alternate Bold';
    font-weight:normal;
    font-size:18px;
    text-transform: uppercase;
    color: #848484;
    line-height: 21px;
    letter-spacing: 0.5px;
}

.pageTitle {
    color: #848484;
    text-decoration: none;
}

.pageTitle:hover {
    background-color: #848484;
    color: white;
}

.searchForm {
    margin: 8px auto;
    text-align: center;
    width: 250px;
}

.searchLbl {
    font-family:'DIN Alternate Bold';
    font-weight:normal;
    font-size:12px;
    text-transform: uppercase;
    color: #848484;
    line-height: 21px;
    letter-spacing: 0.2px;  
}

.searchField  {
    border-radius: 5px;
    border-bottom-right-radius: 0px;
    border-top-right-radius: 0px;
    border-style: solid;
    border-width: 1px;
    border-color: #e8e8e8;
    
    font-size: 16px;
}

.submitBtn {
    border-radius: 5px;
    border-bottom-left-radius: 0px;
    border-top-left-radius: 0px;
    border-style: solid;
    border-width: 1px;
    border-color: #e8e8e8;
    margin-left: -5px;
    background-color: white;
    
    color: #848484;
    font-size: 16px;
}

.navigation {
    position: absolute;
    top: -7px;
    right: 0px;
    width: auto;
    height: 70px;
    
    font-family:'DIN Alternate Bold';
    font-weight:normal;
    font-size:12px;
    text-transform: uppercase;
    color: #848484;
    /*line-height: 16px;*/
    letter-spacing: 0.5px;
    
    text-align: right;
}

.navigation a {
    display: inline-block;
    padding: 33px 10px 33px;
    margin: 0px;
    color: #848484;
    text-decoration: none;
}

.navigation a:hover {
    background-color: #848484;
    color: white;
}

#main {
    padding-top: 70px;
}

/*=======================*/
/*=== CONTENT STYLING ===*/
/*=======================*/

.showRow {
    position: relative;
    height: 250px;
}

.col {
    position: absolute;
    height: 250px;
}

.intro {
    background-color: #00CBD3;
    width: calc(100% - 168px);
    z-index: 3;
}

.discovery {
    background-color: #2A424A;
    left: 0px;
    width: calc(100% - 80px);
    z-index: 2;
}

.summary {
    background-color: #19D96A;
    left: 0px;
    width: 100%;
    z-index: 1;
}

h2 {
    position: absolute;
    width: calc(100% - 80px);
    margin-top: 180px;
    margin-left: 80px;
    
    font-family:'DIN Alternate Bold';
    font-weight: normal;
    font-size: 20px;
    text-transform: uppercase;
    color: #ffffff;
    letter-spacing: 0.5px;
    text-align: center;
}

h3 {
    position: absolute;
    width: 250px;
    
    -ms-transform: rotate(270deg);
    transform: rotate(270deg);
    
    font-family:'DIN Alternate Bold';
    font-weight: normal;
    font-size: 20px;
    text-transform: uppercase;
    color: #ffffff;
    letter-spacing: 0.5px;
    text-align: center;
}

.intro h3 {
    top: 80px;
    left: -90px;
    height: 50px;
    padding-top: 40px;
}

.discovery h3 {
    top: 82px;
    right: -81px;
    height: 52px;
    padding-top: 34px;
}

.summary h3 {
    top: 84px;
    right: -85px;
    height: 50px;
    padding-top: 32px;
}

.content {
    position: absolute;
    width: calc(100% - 80px);
    margin-top: 0px;
    margin-left: 80px;
    
    text-align: center;
}

/*======================*/
/*=== FOOTER STYLING ===*/
/*======================*/

