
/* Font Lora */
@font-face {
    font-family: Lora;
    src: url(../Fonts/Lora/static/Lora-Regular.ttf);
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: Lora;
    src: url(../Fonts/Lora/static/Lora-Italic.ttf);
    font-weight: normal;
    font-style: italic;
}
@font-face {
    font-family: Lora;
    src: url(../Fonts/Lora/static/Lora-Bold.ttf);
    font-weight: bold;
    font-style: normal;
}
@font-face {
    font-family: Lora;
    src: url(../Fonts/Lora/static/Lora-BoldItalic.ttf);
    font-weight: bold;
    font-style: italic;
}

/* General page styles */
body {
	background-color: #cfcfcf;
	min-height: 100%;
	color: #333333;
	font-family: 'Lora', serif;
	font-size: 16px;
}
::selection {
	background-color: #990000;
	color: #f8f8f8;
}

/* Header */
header {
	margin-top: 15px;
	margin-bottom: 15px;
}
header object, header img {
	width: 200px;
}

/* Menus */
nav {
    text-align: right;
}
nav.leftMenu {
    margin-top: 5rem;
}
ul.menu {
    display: block;
    margin: 0;
    padding: 0;
}
ul.menu-horizontal li {
    display: inline-block;
    padding: 1em;
}
ul.menu-vertical li {
    display: block;
    padding: .5em;
}
ul.menu li a {
    text-decoration: none;
    color: #333333;
}
ul.menu li.active a {
    font-weight: bold;
}
ul.menu li a:hover {
    color: #990000;
}

/* Main content area */
.content {
    background-color: #f8f8f8;
    border-radius: 4px;
    padding: 1rem;
}
.content.fullscreen {
    background-color: transparent;
}
.content a {
    text-decoration: none;
    color: #990000;
}
.content a:hover, .content a:focus {
    text-decoration: underline;
    color: #990000;
}
.content h1 {
    margin-bottom: 1.5rem;
}

/* Forms */
.content form textarea.xxlarge {

    display: block;
    width: 100%;
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

/* Calendar */
p.eventOverview {
    margin-bottom: 2rem;
}

/* Content element: Image / Text with image */
.image-caption {
    font-size: .9rem;
    color: #555555;
    font-style: italic;
}
.content figure {
    margin: 1rem 0;
}
.content figure.float-end {
    margin-top: 0;
    margin-left: 1rem;
}
.content figure.float-start {
    margin-top: 0;
    margin-right: 1rem;
}

form .actions {
    border-top: 2px solid #cfcfcf;
    background-color: #e8e8e8;
    padding: 1rem;
    text-align: right;
}

/* Gallery */
.gallery-item img.img-thumbnail {
    object-fit: cover;
    object-position: center;
}

/* Footer */
footer {
    font-size: 0.8rem;
    text-align: right;
}
.content footer a, .content footer a:hover, .content footer a:focus {
    color: #333333;
}