@charset "utf-8";
/* CSS Document */

* {
    margin: 0;
    padding: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
    display: block;
}

body {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: #333;
    font-size: 15px;
    background-color: #f7f7f7;
    padding: 10px;
    border-bottom: 1px solid #df0101;
}

h2 {
	font-size: 16px;
    font-style: italic;
	text-align: left;
	margin-bottom: 20px;
}

h3 {
    font-weight: bold;
    margin-bottom: 5px;
}

h3:not(:first-child) {
    margin-top: 20px;
}

label {
    display: inline-block;
    color: #df0101;
    font-size: 16px;
    font-style: italic;
    margin-bottom: 10px;
}

input {
    padding: 5px;
    width: 70px;
}

input[type="reset"] {
    font-size: 12px;
    border-top: 1px solid #cbcbcb;
    border-left: 1px solid #cbcbcb;
    border-bottom: 2px solid #bebebe;
    border-right: 2px solid #bebebe;
    width: 120px;
    text-align: center;
    cursor: pointer;
    margin-top: 15px;
}

select {
    padding: 5px;
}

#helpIcon {
	display: inline-block;
	width: 13px;
	height: 13px;
	
	background-image: url(../img/hilfe.png);
	background-repeat: no-repeat;
	background-size: 100%;
}

#helpIcon.active {
	background-image: url(../img/close.png);
}

#helpText {
	display: none;
	position: absolute;
	
	height: 0;
	width: 0;
}

#helpText.active {
	display: block;
	
	height: auto;
	width: auto;
}

form > div > img {
    margin-top: 10px;
}

p.hint {
    font-size: 13px;
    font-style: italic;
    margin-bottom: 10px;
}

#showFiles {
    max-height: 250px;
    width: 90%;
    overflow: auto;
    margin: 30px 0;
    line-height: 25px;
}

#showFiles a {
    text-decoration: none;
    color: #df0101;
}

#showFiles a img {
    margin-left: 10px;
}

@media (min-width: 490px) {
    
    form > div:not(:last-child) {
        float: left;
    }
    
    form > div:not(:first-child) {
        margin-left: 30px;
    }
    
    form > div:last-child {
        clear: both;
    }
    
}