
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: normal;
  src: url('../fonts/OpenSans-Regular.ttf') format('truetype');
}
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: bold;
  src: url('../fonts/OpenSans-Bold.ttf') format('truetype');
}
@font-face {
  font-family: 'Open Sans';
  font-style: italic;
  font-weight: normal;
  src: url('../fonts/OpenSans-Italic.ttf') format('truetype');
}
@font-face {
  font-family: 'Open Sans';
  font-style: italic;
  font-weight: bold;
  src: url('../fonts/OpenSans-BoldItalic.ttf') format('truetype');
}

/* switch box model to border-box as the w3c model does not make sense to me ;) */
* {
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-ms-box-sizing: border-box;
}

html, body,ul,li {
	padding:0;
	margin:0;
	border:0;
}

html, body {
	height: 100%;
	width:100%;
}


body {
	font-family: 'Open Sans';
	background: url('../img/app-bg.jpg');
}

.content {
	position:relative;
	width: 100%;
}

.logo {
	width:509px;
	margin: 0px auto;
	margin-top:60px;
}

h1 {
	margin:18px auto;
	font-size: 36px;
	font-weight: normal;
	text-align: center;
	color:#7d8086;
	text-shadow: 2px 2px 2px rgba(0,0,0,0.15);
}

.content-container {
	margin: 32px auto;
	padding: 0px;
	color: #3e3e3e;
	background-color: #ffffff;
	border: 1px solid #bbb;
	min-height:46px;
	width:760px;
	/*line-height:46px;*/
	border-radius: 3px;
	
	box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.09);
	-moz-box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.09);
	-webkit-box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.09);
	-o-box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.09);
	
	overflow: hidden;
}

.content-container .sub3 {
	float:left;
	width: 220px;
	margin-left: 27px;
	margin-bottom: 18px;
}

.content-container h2 {
	color:#1c77af;
	text-shadow: 2px 2px 2px rgba(0,0,0,0.15);
}

.content-container a {
	color:#009bd1;
	text-decoration:none;
}

.content-container a:hover {
	text-decoration:underline;
}