body {
	font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
	font-size: 13px;
	font-weight: normal;
    color: #444;
    text-transform: none;
}

a {
	text-decoration: none;
}
a:hover {
	text-decoration: underline;
}

h1 {
	margin: 0 15px 20px;
}

hr {
	clear: both;
}

.container {
	max-width: 1200px;
	margin: auto;
	padding: 0 30px;
}

.navigation {
	width: 20%;
	float: left;
	margin-bottom: 20px;
}

.navigation ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.navigation li:hover {
	background-color: #eee;
}

.navigation a {
	color: #444;
	padding: 5px 15px;
	display: block;
	text-decoration: none;
}

.content {
	width: calc(80% - 30px);
	padding-left: 30px;
	float: left;
}

.content > img {
	width: 100%;
}

.factsheet {
	float: left;
	width: 25%;
	margin-right: 20px;
}

.description {
	float: left;
	width: calc(75% - 20px);
}

.images .image, .logo .image {
	width: calc(50% - 40px);
    float: left;
    margin: 15px 20px;
    position: relative;
}

.images img, .logo img {
	width: 100%;
}

.download {
	padding: 10px 25px;
	background-color: #def
}

.credits, .contact {
	float: left;
	width: 50%;
}

.spinner {
    display: inline-block;
    font: normal normal normal 14px/1 "Black Tie";
    font-size: inherit;
    vertical-align: -14.28571429%;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-transform: translate(0,0);
    -ms-transform: translate(0,0);
    transform: translate(0,0);
    -webkit-animation: bt-spin 2s infinite linear;
    animation: bt-spin 2s infinite linear;
    position: absolute;
    color: #fff;
    left: calc(50% - 17px);
    top: calc(50% - 17px);
    font-size: 35px !important;
}

.spinner:before {
    content: "\f03d";
}

@media (max-width: 768px) {
	.navigation, .content, .credits, .contact {
		width: 100%;
		float: none;
		padding: 0;
	}

	.images img, .logo img {
		width: 100%;
	    float: none;
	    margin: 15px 0;
	}
}

.modal {
    display: none;
    position: fixed;
    z-index: 11;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
    overflow-y: initial !important;
}

.modal-content {
    position: relative;
    background-color: #fff;
    margin: auto;
    padding: 45px 15px 15px 25px;
    border: 1px solid #444;
    border-radius: 10px;
    width: 80%;
    max-width: 500px;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
    -webkit-animation-name: animatetop;
    -webkit-animation-duration: 0.4s;
    animation-name: animatetop;
    animation-duration: 0.4s;
    overflow-y: hidden;
    transition:max-height 1s ease;
}

.modal-content .close {
    color: #444;
    font-size: 28px;
    font-weight: bold;
    top: 5px;
    right: 15px;
    position: absolute;
}

.modal-content .save {
    color: #444;
    font-size: 28px;
    line-height: 38px;
    top: 5px;
    left: 30px;
    position: absolute;
}

.modal-content .close:hover,
.modal-content .close:focus,
.modal-content .save:hover,
.modal-content .save:focus {
    color: #999;
    text-decoration: none;
    cursor: pointer;
}

.modal-body {
    padding: 5px;
    text-align: left;
    color: #444;
    transition:opacity 0.5s ease;
    max-height: 600px;
    overflow-y: auto;
}

/* Add Animation */
@-webkit-keyframes animatetop {
    from {top:-300px; opacity:0} 
    to {top:0; opacity:1}
}

@keyframes animatetop {
    from {top:-300px; opacity:0}
    to {top:0; opacity:1}
}

@-webkit-keyframes bt-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}
@keyframes bt-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}