/* ==== Google font ==== */
@import url('https://fonts.googleapis.com/css?family=Lato:100,300,400,700,900,100italic,300italic,400italic,700italic,900italic|Montserrat:700|Merriweather:400italic');

/* ===========================
Reset
============================ */

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;
	vertical-align: baseline;
}

article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}

li, ol, ul {
	list-style: none;
}



/* ===========================
General Settings
============================ */

body {
    width: 100%;
    height: 100%;
    font-family: 'Lato',sans-serif;
	font-weight: 300;
    color: #666;
    background-color: #fff;
	/*background-color: #D2CDC8;*/
	
}

html {
    width: 100%;
    height: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 130px 0 0;
    text-transform: uppercase;
    font-family: 'Lato',sans-serif;
    font-weight: 500;
    letter-spacing: 1px;
	font-size: 40px;
	
}

p {
    margin: 0 0 20px;
    font-size: 16px;
    line-height: 1.6em;
}

a {
    color: #6A6A6A;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

a:hover,
a:focus {
    text-decoration: none;
    color: #D2CDC8;
}



/* ===========================
Margins
============================ */
.marginbot-0{margin-bottom:0 !important;}
.marginbot-10{margin-bottom:10px !important;}
.marginbot-20{margin-bottom:20px !important;}
.marginbot-30{margin-bottom:30px !important;}
.marginbot-40{margin-bottom:40px !important;}
.marginbot-50{margin-bottom:50px !important;}

/* ===========================
Main settings
============================ */

.outer-wrap {
    display: table;
    position: absolute;
    height: 100%;
    width: 100%;
}

.inner-wrap {
	width: 1000px;
    position: absolute;
    top:0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

.header {
    height:100%;
	/*text-align: right;*/
	font-family: 'Lato',sans-serif;
    font-weight: 500;
    letter-spacing: 1px;
    font-size: 30px;
}

.content {
    text-align: left;
	float: left;
    width: 100%;
	margin-bottom: 5px;
	/*background-color: #D2CDC8;*/
	border-top: 1px solid #D2CDC8;
}

.subcontent {
    
}
.hidden {
	display: none;
}

.boxed-grey {
	background: #f9f9f9;
	padding: 20px;
}

.text-center {
	text-align:center;
}

.half-width {
	width: 49%;
	float: left;
	padding: 10px 5px 10px 5px;
}

.quarter-width {
	width: 24%;
	float: left;
	padding: 10px 5px 10px 5px;
}

.profilepic {
    background-image: url(../img/ProfilPicture_Smiley_Small.png);
    width: 150px;
    height: 180px;
}

.profilepic:hover,
.profilepic:focus {
    background-image: url(../img/ProfilPicture_Neutral_Small.png);
}

.nopad {
	padding: 0px 0px 0px 0px;
	
}

.littlepad {
	padding: 0px 15px 0px 5px;
    height: 180px;	
}
	
.firstborder {
	border-top: 5px solid #6A6A6A;
	
}

.icons {
	height: 180px;
	padding: 0px 5px 0px 5px;
	text-align: right;
}

.iconpadding{
	padding-top: 150px;
}

/* ===========================
Animations
============================ */

.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
@-webkit-keyframes bounceInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }

  80% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes bounceInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateY(30px);
    -ms-transform: translateY(30px);
    transform: translateY(30px);
  }

  80% {
    -webkit-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
  }

  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

/* ===========================
Background
============================ */

.bg-white {
	background: #fff;
}

.bg-gray {
	background: #f8f8f8;
}


.bg-dark {
	background: #575757;
}
		




/* ===========================
Responsive Settings
============================ */

@media(min-width:767px) {

    
}

@media(max-width:1250px) {

	
}	
	
@media(max-width:1000px) {
h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 20px;
    text-transform: uppercase;
    font-family: 'Lato',sans-serif;
    font-weight: 500;
    letter-spacing: 1px;
	font-size: 40px;
	
}

.inner-wrap {
	width: 100%;
    position: absolute;
    top:0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}
	
.content {
    text-align: center;
}

.half-width {
	width: 100%;
	float: left;
	padding: 0px;
}

.quarter-width {
	width: 100%;
	float: left;
	padding: 0px;
}

.header {
    height: 100%;
    text-align: center;
    font-family: 'Lato',sans-serif;
    font-weight: 500;
    letter-spacing: 1px;
    font-size: 30px;
}

.symbolmargin {
	margin-top: 20px;
}

.profilepic{
    width: 150px;
    height: 180px;
    top:0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}
.littlepad {
    height: 70px;	
}
.icons {
	text-align: center;
}
.iconpadding{
	padding-top: 0px;
}
	}