
/*
 * Let's target IE to respect aspect ratios and sizes for img tags containing SVG files
 *
 * [1] IE9
 * [2] IE10+
 */
/* 1 */
.ie9 img[src*=".svg"] {
  width: 100%; 
}
/* 2 */
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  img[src*=".svg"] {
    width: 100%; 
  }
}

/* ------------------------------------------------ GENERAL -- */

* {
	padding:0;
	margin:0;
}

.clear {
	clear:both;
}

img {
    max-width: 100% !important; height:auto }

img {
	border:none;
}

ul, ol {
    list-style: outside none none;
}

html, body {
	background-color:#F2F2F2;
  	position:relative;
	width:100%;
  	z-index:0;
}

body,td	{ 
	font: 1rem "Titillium Web";
	color: #555;
	text-rendering: optimizelegibility;	
}

p	{ 
	font: 0.8rem "Titillium Web";
	color: #555;
	text-rendering: optimizelegibility;	
}

A:link	{ color:#555; text-decoration: underline }
A:hover	{ color:#006492; text-decoration: none }


/* ------------------------------------------------ MAIN -- */

.wrapper {
	margin: 0 auto 0;
	margin-top:10px;
	position:relative;
	max-width:768px;
	width:90%;
	height: auto;
	z-index:1;
}

/****************************************Header*/

#header {
	position:relative;
	display:table;
	width:100%;
	height:auto;
	padding: 10px 0;
	margin:0 auto;
	z-index:1;
	background-color:#FFF;
	border-bottom: 4px solid #E5E5E5;
}

.logo {
	display:table-cell;
	vertical-align:middle;
	text-align:left;
	padding-left:1em;
}

.logo > .adjust {
	width:80px;
	height:80px;
}

.clear {
    clear: both;
}

/****************************************Content*/

#content-container { 
	position:relative;
	max-width:768px;
	width:90%;
	height:auto;
	z-index:1;
	padding-top:2em;
	margin:0 auto;
}

#content { 
	position:relative;
	width:100%;
	height:auto;
}

h1 {
    font-size: 18px;
    font-weight: 700;
    font-family: "Titillium Web";
	color:#006492;
}

h2 {
	font-size: 18px;
    font-weight: 700;
    font-family: "Titillium Web";
	color:#555;
	margin-bottom:.5em;
}

h3 {
	font-size: 18px;
    font-weight: 700;
    font-family: "Titillium Web";
	color:#006492;
	margin-bottom:.5em;
}


