/**
*	General
*/
@font-face {
    font-family: roboto-light;
    src: url(fonts/Roboto-Light.ttf);
}
body {
	font-family: roboto-light;
	font-size: 14pt;
	height: 100%;
	margin: 0px;
	padding: 0px;
}

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

div {
	color: #333;
}

p {
	margin: 0px 30px;
}

.aleft {
	text-align: left;
}

.blank {
	height: 60px;
}

.container {
	display: inline-table;
	padding: 5px;
	min-width: 320px;
}

.delimiter {
	border-top: 1px solid #FFC107;
	height: 0px;
	width: 100%;
}

.heading {
	color: #FFC107;
	font-size: 32pt;
	font-weight: 600;
	margin-bottom: 50px;
	padding: 80px 0px 15px;
}

.subheading {
	color: #333;
	font-size: 16pt;
	font-weight: 600;
	text-align: left;
}

.section {
	padding: 0px 0px 160px;
	text-align: center;
}

.text {
	color: #111;
	font-size: 18pt;
	padding: 5px 15px;
	text-align: justify;
}

.text.center {
	text-align: center;
}

.wrapper {
	margin: 0px 15px;
	max-width: 1200px;
	min-height: 100%;
}

/**
*	Start
*/

#banner img {
	height: auto;
	width: 100%;
}

#banner-text {
	background-color: #d50000;
	color: #fff;
	font-size: 24pt;
	padding: 20px 0;
	text-align: center;
}

#banner-text a {
	color: #fff; 
}

/**
*	About
*/

#about {
	min-height: 560px;
}

#fb-wrapper {
	display: inline-block;
	float: none;
	margin: 0px auto 30px;
}


/**
*	Calendar
*/
#eventList {
	text-align: center;
	width: 100%;
}

.calendarEvent {
	box-shadow: 0 1px 6px rgba(0,0,0,.12),0 1px 6px rgba(0,0,0,.12);
	display: inline-block;
	font-size: 14pt;
	margin: 20px 0px;
	padding: 0px 0px 5px;
	width: 100%;
}

.calendarEvent div {
	padding: 0px 5px 5px;
}


.calendarName {
	background-color: #d50000;
	color: #fff;
	font-size: 16pt;
	font-weight: 700;
	margin-bottom: 5px;
	padding-top: 5px;
}

.calendarEvent .calendarName {
	padding: 5px;
}


/**
*	Infos
*/
#infos {
	text-align: center;
}

#infos ul {
	color: #aaa;
	list-style: none;
	margin-top: 4px;
	padding-left: 24px;
	text-align: left;
}

#infos li {
	font-size: 16pt;
	padding: 8px 0px; 
}

#infos a {
	color: #aaa;
}

#infos a:hover {
	color: #ddd;
}

/**
*	Footer
*/
.footer {
	background-color: #424242;
	bottom: 0px;
	color: #fff;
	position: relative;
	text-align: center;
	width: 100%;
}

.footer a {
	color: #fff;
}

.footer a:hover {
	color: #ddd;
}

.footer div {
	color: #fff;
	display: inline-block;
	margin: 24px 0px;
	padding: 0px 10px;
}


/**
*	Media Queries
*/
@media screen and (min-width: 440px) {

	#banner-text {
		padding: 60px 0 20px;
	}

	.calendarEvent {
		margin: 20px 15px;
		width: 380px;
	}

}

@media screen and (min-width: 800px) {
	#banner-text {
		font-size: 36pt;
	}

	#fb-wrapper {
		float: left;
		margin-right: 20px;
	}

	.wrapper {
		margin: 0px auto;
	}
}

