body {
	margin: 0;
	color: #333;
	font-family: Roboto, Helvetia, sans-serif;
	font-size: 16px;
}

body, * {
	box-sizing: border-box;
}

a, a:focus, a:active {
	text-decoration: none;
	color: inherit;
}

ul {
	padding: 0;
}

ul li {
	list-style: none;
	margin-bottom: 10px;
}

p {
	text-align: justify;
}

.hidden {
	display: none;
}

#header {
	width: 100%;
	padding: 15px;
	background-color: #111;
}
#header .header-img {
	text-align: center;
}
#header .header-text {
	text-align: center;
	color: #fff;
}

#main {
	width: 100%;
	height: calc(100vh - 120px);
	padding: 20px;
    background: -webkit-linear-gradient(#ffffff 0%, #f8e9db 99%);
    background: -o-linear-gradient(#ffffff 0%, #f8e9db 99%);
    background: linear-gradient(#ffffff 0%, #f8e9db 99%); /* FF3.6-15 */ /* Chrome10-25,Safari5.1-6 */ /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#f8e9db',GradientType=0 ); /* IE6-9 */
}

#main .main-title {
	margin-bottom: 20px;
}
#main .main-title h2 {
	margin-bottom: 10px;
	text-align: center;
	color: #6a0b13;
}
#main .main-title .legend {
	margin: 0 0 10px 0;
	text-align: center;
	font-size: 14px;
}


#main .main-content ul {
	margin-top: 20px;
}
#main .main-content ul li {
	float: left;
}
#main .main-content ul li a {
	background-color: #690b12;
    color: white;
    padding: 8px 12px;
    display: inline-block;
    font-size: 12px;
    margin: 5px;
    border-radius: 5px;
}

.overlay.has-popup {
	position: fixed;
    z-index: 2;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0,0,0, 0.7);
}
.popup {
	position: fixed;
    z-index: 5;
    top: 20%;
    left: 10%;
    right: 10%;
    background: white;
    padding: 15px;
}