/* custom CSS
------------------*/

* {
	text-shadow: none;
	margin: 0;
	padding: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

@font-face {
	font-family: "RobotoThin";
	src: url(Roboto/Roboto-Thin.ttf) format("truetype");
}

@font-face {
	font-family: "RobotoLight";
	src: url(Roboto/Roboto-Light.ttf) format("truetype");
}

@font-face {
	font-family: "RobotoMedium";
	src: url(Roboto/Roboto-Regular.ttf) format("truetype");
}

body {
	text-align: center;
	background-color: #111;
}

h1 {
	margin: 0;
	padding: 0;
	font-family: "RobotoLight";
	font-size: 28px;
	color: #000;
}

h2 {
	margin: 0;
	padding: 0;
	font-family: "RobotoLight";
	font-size: 20px;
	color: #FFF;
}

p {
	margin: 0;
	padding: 0;
	font-family: "RobotoLight";
	font-size: 14px;
	color: #444;
}

a, a:link, a:visited, a:hover {
	text-decoration: none;
}

label {
	margin: 0;
	padding: 0;
	font-family: "RobotoLight";
	font-size: 12px;
	color: #000
}

.aligntop {
	display: inline-block;
	vertical-align: baseline;
}

.verticalcenter {
	margin: auto;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
}

.image-bg {
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background-image: none;
}

.contentsite {
	position: relative;
	width: 100%;
	margin: 0;
}

.header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	background-color: #000;
}

.logo {
	float: none;
	margin: 5px auto;
	max-width: 200px;
}
.logo > img {
	width: 100%;
}

.claim {
	display: none;
}

.claim > h2 {
	color: #FFF;
}

.lesson-box {
	position: relative;
	width: 100%;
	margin-top: 65px;
}
.lesson-box-right {
	clear: both;
	display: block;
	position: relative;
	height: 200px;
}
.lesson-box-center {
	position: absolute;
    top: 50%; left: 50%;
    margin-top: -130px; margin-left: -200px;
    width: 400px; height: 240px;
    text-align: center;
}
.lesson-title {
	height: 44px;
	padding: 7px 0 0 10px;
	background-color: #000;
	text-align: left;
}

.lesson-title > h2 {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.lesson-img {
	width: 100%;
	height: 247px;
	overflow: hidden;
}

.lesson-img > img {
	width: 100%;
}

.lesson-details {
	background-color: rgba(255, 255, 255, 0.9);
	padding: 10px;
}

.cloud-details {
	display: inline-block;
	vertical-align: top;
	width: 100%;
	text-align: left;
}

.cloud-details > h1 {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	font-size: 24px;
}

.cloud-details > p {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.course-places {
	display: inline-block;
	vertical-align: top;
	margin: 0 0 10px 0;
	text-align: center;
}

.course-places > p {
	display: inline-block;
	vertical-align: middle;
	color: #951b81;
}
.circle {
	display: inline-block;
	vertical-align: middle;
	margin: 2px auto;
	width: 70px;
	height: 45px;
	/*border-radius: 25px;*/
	border: 0;
	border-bottom: 3px solid #951b81;
	text-align: center;
}
.circle > h1 {
	font-size: 30px;
	color: #951b81;
	line-height: 42px;
	text-align: center;
}
.open {
	display: inline-block;
	vertical-align: middle;
	margin: 0 0 0 5px;
	width: 70px; height: 30px;
	border-radius: 3px;
	border: 2px solid #951b81;
	text-align: center;
}
.open > h1 {
	font-size: 20px;
	color: #951b81;
	line-height: 24px;
	text-align: center;
}
.lesson-days {
	width: 100%;
	padding: 0;
	height: 100px;
}
.date-area {
	float: left;
	width: 50%;
	margin-bottom: 10px;
	text-align: left;
}
.date-box {
	padding: 5px 0 0 0;
	width: 100%;
	height: 80px;
	background-color: #CCC;
}

.day {
	text-align: center;
}

.day > h1 {
	font-size: 30px;
	color: #951b81;
}

.day > p {
	margin-right: 10px;
}

.date {
	text-align: center;
}

.date > h1 {
	font-size: 24px;
}

.date > p {
	margin-right: 10px;
}

.text-gt {
	text-align: center;
	width: auto;
	height: 150px;
}
.text-gt > img {
	margin-bottom: 20px;
}
.text-gt > p {
	color: #FFFFFF;
	margin-bottom: 15px;
}


/* Buttons
------------------- */

.btn {
	cursor: pointer;
	height: 40px;
	text-align: center;
	background-color: #951b81;
}

.btn:hover {
	background-color: #77126b;
}

.btn > p {
	line-height: 40px;
	font-size: 16px;
	color: #FFF;
}

.btn-negative {
	cursor: pointer;
	height: 40px;
	text-align: center;
	border: 1px solid #FFF;
	background-color: rgba(0, 0, 0, 0.1);
}

.btn-negative:hover {
	background-color: rgba(0, 0, 0, 0.25);
}

.btn-negative > p {
	line-height: 40px;
	font-size: 16px;
	color: #FFF;
}

@media screen and (min-width: 951px) {

	.contentsite {
		position: relative;
		width: 950px;
		margin: 0 auto;
	}
	.logo {
		float: left;
		margin: 5px 0;
		width: 200px;
	}
	.logo > img {
		width: 100%;
	}
	.claim {
		display: block;
		float: right;
		margin-top: 18px;
	}
	.claim > h2 {
		color: #FFF;
	}
	.lesson-box {
		position: absolute;
		width: 450px; height: 475px;
		margin-top: 0;
		top: 110px;
		left: 15px;
	}
	.lesson-box-right {
		position: absolute;
		width: 430px; height: 475px;
		top: 110px;
		left: 500px;
	}
	.lesson-title {
		height: 44px;
		padding: 7px 0 0 10px;
		background-color: #000;
		text-align: left;
	}
	.lesson-title > h2 {
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
	}
	.lesson-img {
		height: 247px;
		overflow: hidden;
	}
	.lesson-img > img {
		width: 100%;
	}
	.lesson-details {
		background-color: rgba(255, 255, 255, 0.9);
		padding: 10px;
	}
	.cloud-details {
		display: inline-block;
		vertical-align: top;
		width: 430px;
		text-align: left;
	}
	.cloud-details > h1 {
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
	}
	.cloud-details > p {
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
	}
	.course-places {
		display: inline-block;
		vertical-align: top;
		width: 80px;
		text-align: center;
		padding-top: 10px;
	}
	.course-places > p {
		color: #951b81;
	}
	.circle {
		margin: 5px 0 0 0;
		width: 70px;
		height: 45px;
		/*border-radius: 25px;*/
		border: 0;
		text-align: center;
	}
	.circle > h1 {
		font-size: 36px;
		color: #951b81;
		line-height: 42px;
		text-align: center;
	}
	.open {
		margin: 5px auto;
		width: 75px;
		height: 30px;
		border-radius: 3px;
		border: 2px solid #951b81;
		text-align: center;
	}
	.open > h1 {
		font-size: 22px;
		color: #951b81;
		line-height: 26px;
		text-align: center;
	}
	.lesson-days {
		display: inline-block;
		vertical-align: top;
		width: 345px;
		padding: 0;
		height: 100px;
	}
	.date-area {
		float: left;
		width: 50%;
		margin-bottom: 10px;
		text-align: left;
	}
	.date-box {
		padding: 5px 0 0 0;
		width: 100%;
		height: 80px;
		background-color: #CCC;
	}
	.day {
		text-align: center;
	}
	.day > h1 {
		font-size: 30px;
		color: #951b81;
	}
	.day > p {
		margin-right: 10px;
	}
	.date {
		text-align: center;
	}
	.date > h1 {
		font-size: 24px;
	}
	.date > p {
		margin-right: 10px;
	}
	.text-gt {
		text-align: center;
		width: auto;
		height: 150px;
	}
}