
@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,700);

*{
	margin:0;
	padding:0;
	box-sizing: border-box;
}
body {
	background:#ffffff;
	font-family: 'Open Sans', serif;
	color:#333;
	position:relative;
  line-height:1.7
}
.header{
	background: #4A89DC;
  color:#fff;
  text-align:center;
}
.container{
	position:relative;
	width:100%;
	max-width: 1200px;
	margin: 0 auto;
}
.container::after{
	content: "";
	clear: both;
	display: block;
}
.sidebar{
	background: #ddd;
	float:left;
	width: 30%;
	padding: 10px;
}
.content{
	background: #333;
	width: 70%;
	float:left;
}
.footer{
	background: #f0f0f0;
	height: 150px;
}
.spacer{
	background: #f00;
	color:#fff;
	padding: 10px;
}
.element{
	background: #434A54;
	padding: 4px;
	text-align: center;
	color:#fff;
	bottom:-20px;
	transition: bottom .3s;
  border-radius:3px;
}
.sticky{
	position: fixed;
	bottom: 0;
	left: auto;
	width: 200px;
}