
html, body{
	background-color: #fff;
	font-family:'AkkuratLightPro-Regular', Arial;
	color:#333;
	font-size: 20px;
	width:100%;
	height: 100%;
	padding:0px;
	margin:0px;
	transition: font-size 0.5s; 
}

@font-face {
	font-family:'AkkuratLightPro-Regular';
	src: url('font/AkkuratLightPro-Regular_gdi.eot');
	src: url('font/AkkuratLightPro-Regular_gdi.eot?#iefix') format('embedded-opentype'),
		url('font/AkkuratLightPro-Regular_gdi.woff') format('woff'),
		url('font/AkkuratLightPro-Regular_gdi.ttf') format('truetype'),
		url('font/AkkuratLightPro-Regular_gdi.svg#AkkuratLightPro-Regular') format('svg');
	font-weight: 400;
	font-style: normal;
	font-stretch: normal;
	unicode-range: U+0020-25CA;
}

::-moz-selection { 
	color: #fff;
	background: #ee6c4d;
}
::selection { 
	color: #fff;
	background: #ee6c4d; 
}

a{
	color:#ee6c4d;
	text-decoration: none;
}

a:hover{
	text-decoration: underline;
}

h2{
	color:#23282b;
	font-size: 40px;
	font-weight: normal;
}

p{
	line-height: 32px;
}

aside{
	background-color: #eee;
	width:50%;
	height: 100%;
	display: block;
	position: fixed;
	float:left;
	padding:3% 7%;
	box-sizing: border-box;
	background:url("img/background.png") no-repeat;
	background-size:cover;
	background-position: center center;
	transition: width 0.8s; 
	transition: padding 0.5s; 
	top: 0; bottom: 0; left: 0; right: 50%;
}

article{
	width:36%;
	display: block;
	position: relative;
	float:right;
	padding:3% 7%;
	transition: padding 0.5s; 
}

.logo{
	width:78px;
}

.avatar{
	border-radius: 50%;
	width:96px;
	height: 96px;
}

ul{
	list-style-type: none;
	line-height: 30px;
	margin:0px;
	padding:0px;
}

li{
	padding-bottom:15px;
}

li.subheading {
	text-transform: uppercase;
    font-size:10px;
    letter-spacing:2px;
    margin-top:20px;
    color:#999;
}

li.linethrough {
	text-decoration: line-through;
    position: relative;
}

footer ul{
	position: relative;
	border-top:1px solid #ccc;
	width:100%;
	margin-top:30px;
	padding-top:10px;
	padding-bottom:30px;
}

footer{
	position: relative;
}

footer ul li{
	display: inline-block;
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 1px;
	padding-right:10px;
	padding-bottom:0px;
	margin-right:10px;
	line-height: normal;
	border-right:1px solid #eee; 
}

footer ul li:nth-last-child(1){
	padding-right:0px;
	margin-right:0px;
	border-right:none;
}


footer a{
	color: #666;
}

footer a.primary{
	color: #ee6c4d;
}


 /* Extra Small Devices, Phones */ 
@media screen and (max-width : 768px) {

	html, body{
		font-size:18px;
	}

	h2{
		margin:20px 0px;
	}

	aside{
		position: relative;
		width:100%;
		height: 90%;
		padding:10% 7%;
		float:left;
		display: none;

	}

	article{
		width:86%;
		height: 10%;
		float:left;
		padding:7% 7%;
	}

}