*{
	padding:0;
	margin:0;
}
html { 
	height: 100%; 
}

body {
	width: 100%;
	min-height: 100%;
	margin: 0;
	font-family: 'Lato', sans-serif;
	font-size: 16px;
	font-weight: 400;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	background: url("../images/tilebg.png") repeat fixed;
}

.text-center {
	text-align: center;
}

.wrapper {
	position: relative;
	width: 100%;
	height: 100%;
}

.content {
	width: 960px;
	height: inherit;
	margin: 0px auto;
	background: #fff;
	text-align: center;
	border-style: solid;
	border-color: #ffbde1;
	border-width: 40px 0px 0px 0px;
	box-shadow: 0px 0px 15px rgba(0, 0, 0, .3);
}

.sticker-container {
	position: absolute;
	bottom: 0px;
	margin: 0px 80px;
	animation: animJump 5s infinite;
}

img {
	display: block;
	max-width: 100%;
}

.footer {
	background: #222;
	height: 40px;
}

.footer-content {
	line-height: 40px;
	width: 960px;
	height: inherit;
	margin: auto;
	color: #fff;
}

.promo-container {
	height: 428px;
	margin-top: -40px;
}

.banner-divider {
	position: relative;
	background: #ffbde1;
	height: 40px;
}

.description-container {
	position: relative;
	margin: auto;
	padding: 20px 0px 100px 20px;
	min-height: 100%;
	background: #fff;
	width: 600px;
	text-align: left;
}

hr{
	margin: auto;
	width: 600px;
}

a{
	text-decoration: none;
	color: #181d2a;
}
a:hover{
	text-decoration: none;
	color: violet;
	text-shadow: 0px 0px 15px rgba(0, 0, 0, .3);
}

h1{
	margin-bottom: 10px;
}

ol{
	margin-left: 30px;
}

@keyframes animJump{
	0%{
		transform: translate(0px, 0px);
	}
	10%{
		transform: rotate(10deg) translate(10px, -10px);
	}
	20%{
		transform: translate(15px, 0px) rotate(0deg);
	}
	30%{
		transform: rotate(-10deg) translate(-10px, -10px);
	}
	40%{
		transform: translate(-15px, 0px) rotate(0deg);
	}
	50%{
		transform: rotate(10deg) translate(0px, -10px);
	}
	60%{
		transform: translate(0px, 0px) rotate(0deg);
	}
	100%{
		transform: rotate(0deg) translate(5px, 0px);
		transform: translate(0px, 0px);
	}

}

/* form */
#email{
	width: 50%;
	background-color: white;
	border: 1px #ffbde1 solid;
	color: #181d2a;
	padding: 5px;
	margin: 10px;
}
#subject{
	width: 50%;
	background-color: white;
	border: 1px #ffbde1 solid;
	color: #181d2a;
	padding: 5px;
	margin: 10px;
}
#message{
	width: 50%;
	background-color: white;
	border: 1px #ffbde1 solid;
	color: #181d2a;
	padding: 5px;
	margin: 10px;
	resize: none;
}
#submit{
	text-indent: -99999px;
	position: absolute;
	float: right;
	width: 100px;
	height: 150px;
	background-color: white;
	background-image: url("../images/sticker_m_ok.png");
	background-repeat: no-repeat;
	background-size: 100%;
	border: none;
	color: #181d2a;
	margin-top: -90px;
	margin-left: 10px;
	transition: transform .2s;
}
#submit:hover {
	-ms-transform: scale(1); /* IE 9 */
	-webkit-transform: scale(1); /* Safari 3-8 */
	transform: scale(1.1); 
  }