@CHARSET "ISO-8859-1";
/********************************************************
 Author: Cornel Studach

 EvR CD:
    Farbe Rot     : R 186 (xBA), G   0 (x00), B  41 (x29) -> #BA0029
    Farbe Blau    : R   1 (x01), G 105 (x69), B 176 (xB0) -> #0169B0
    Farbe Schwarz : R  30 (x1E), G  30 (x1E), B  30 (x1E) -> #1E1E1E


********************************************************/

html {
    overflow-y: scroll;
}

body {
    color: black;
    font-size: 100.01%;
    font-family: Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 1em;
    min-width: 41em;
    /* Mindestbreite verhindert Umbruch und Anzeigefehler in modernen Browsern */
}

form {
    margin: 0;
}

h1 {
    font-size: 1.5em;
    margin: 0 0 0.7em;
    padding: 1em;
    text-align: center;
    background-color: #eee;
    border: 1px ridge silver;
}

.logo {
    font-size: 1em;
    float: left;
    height: 4em;
    margin: 0.5em;
    text-align: center;
    border: none;
}

/********************************************************
 Login
********************************************************/
.userName {
    color: #BA0029;
}

.errorInfo {
    color: #BA0029;
    margin: 2em 1em 0em 1em;
}

form.loginForm span {
    width: 8em;
    display: inline-block;
}

form.loginForm label {
    display: block;
    padding-top: 0.5em;
}

form.loginForm button[type="submit"] {
    padding: 0.2em 1em 0.2em 1em;
    margin: 1em 0 2em 0;
    background-color: #eee;
    border: thin solid silver;
    font-size: 1em;
    font-weight: bolder;
}

/********************************************************
 Help
********************************************************/
.helpImage {
    border: thin solid silver;
    padding: 0.5em;
    background-color: #F8F8F8;
}

/********************************************************
 Menu
********************************************************/

ul.menu {
    font-size: 0.83em;
    float: left;
    width: 10em;
    margin: 0 0 1.2em;
    padding: 0;
    border: 1px solid silver;
    background-color: #eee;
}

ul.menu li {
    list-style: none;
    margin: 0;
    padding: 0.5em;
}

ul.menu a {
    display: block;
    padding: 0.2em 0.5em 0.2em 0.5em;
    font-size: larger;
    font-weight: bold;
    text-decoration: none;
    border: 1px solid silver;
}

ul.menu a:link {
    color: black;
    background-color: white;
}

ul.menu a:visited {
    color: black;
    background-color: white;
}

ul.menu a:hover {
    color: white;
    background-color: #aaa;
}

ul.menu a:active {
    color: white;
    background-color: gray;
}

/********************************************************
 Content
********************************************************/
div#content {
    margin: 0 0 1em 9em;
    padding: 0 1em 1em 1em;
    border: 1px solid silver;
    min-height: 10em;
}

* html div#content {
    height: 1em;
    /* Workaround gegen den 3-Pixel-Bug des Internet Explorer bis Version 6 */
}

div#content h2 {
    font-size: 1.2em;
    margin: 0.5em 0;
}

div#content h3 {
    font-size: 1em;
    margin: 2em 0 0 0;
}

div#content p {
    font-size: 1em;
    margin: 2em 0 0 0;
}

.fileImage {
    width: 1.5em;
}

div#content li img {
    width: 1em;
}

.downloadLinks {
    margin: 1em;
}

form > input[type="image"] {
    vertical-align: middle;
    width: 2em;
}

form > input[type="submit"] {
    font-family: Helvetica, Arial, sans-serif;
    font-size: 1em;
    vertical-align: middle;
    padding: 0.25em 0 0.25em 0.5em;
    border: none;
    background: none;
}

p {
    padding-left: 2em;
}

div.code {
    padding: 0.5em;
    margin: 2em 8em 2em 8em;
    background-color: #f1f1f1;
    border: thin solid silver;
    font-family: monospace;
    font-size: larger;
    font-weight: bold;
}

code {
    color: #0169B0;
    font-size: larger;
    font-weight: bold;
}

/********************************************************
 Footer
********************************************************/
p#footer {
    clear: both;
    font-weight: bold;
    margin: 0;
    padding: 0.5em;
    text-align: center;
    background-color: #eee;
    border: 1px solid silver;
}

/********************************************************
 Files
********************************************************/
.directoryRoot {
    list-style: none;
    margin: 0;
    padding: 0;
    color: #0169B0;
}

.directoryRoot input[type="submit"]:hover {
    border: none;
    color: white;
    background: #0169B0;
}

ul.directoryRoot > li > form {
    margin: 1em 1em 0 2em;
}

input img {
    background-color: #BA0029;
}

.metaInfoList {
    list-style: none;
    font-size: 0.8em;
    margin: 0 1em 1em 3em;
}

/********************************************************
 Members
********************************************************/

/* Table */
div.table_m {
    border-collapse: collapse;
    margin-left: 4em;
}

/* Row */
.table_m > div {
    display: table-row;
}

.table_m > div > div {
    padding: 0.5em;
    display: table-cell;
    border: thin solid silver;
    vertical-align: top;
}

/* First column */
.table_m > div > div:nth-child(1) {
    width: 10em;
    font-weight: bolder;
}

/* Second colum */
.table_m > div > div:nth-child(2)  {
    width: 20em;
}

.table_m > div > div > ul {
    list-style-type: none;
    margin: 0;
    padding: 0 0.5em 0 1em;
}

div.name_m {
    padding: 2em 0 1em 2em;
    font-weight: bold;
}

/********************************************************
 File list
********************************************************/

.fileList {
    list-style: none;
    color: #0169B0;
    padding: 0 0 0 2em;
}

.fileList > li:nth-child(1) {
    padding: 1em 0 1em 0;
}

.fileList input[type="image"]{
    margin-left: 2em;
}

/********************************************************
 Repertoire table
********************************************************/

div.table_rep {
    border-collapse: collapse;
    margin: 1em 1em 1em 4em;
}

div.table_rep div {
    display: table-row;
}

div.table_rep > div:nth-child(1) {
    font-weight: bolder;
}

div.table_rep div {
    padding: 0.25em 0.5em 0.25em 0.5em;
}

div.table_rep > div > div {
    display: table-cell;
    border: thin solid silver;
    vertical-align: top;
}

div.table_rep ul {
    margin: 0;
    padding-left: 1.2em;
}

div.table_rep li {
    list-style-type: square;
    margin: 0 0 0 0;
}

div.repDownloadLinkList {

}

div.table_rep > div > div > ul.repDownloadLinkList {
    padding-left: 0;
}

div.table_rep > div > div:nth-child(6) {
    min-width: 10em;
}

div.table_rep > div > div:nth-child(7) {
    padding: 0;
}

div.table_rep > div:nth-child(1) > div:nth-child(7) {
    padding: 0.25em 0.5em 0.25em 0.5em;
}

ul.repDownloadLinkList > li {
    list-style-type: none;
}

.diverseList > div > div {
    display: table-cell;
    vertical-align: top;
}

.diverseList > div > div:nth-child(1) {
    padding-right: 1em;
    width: 7em;
}

.sheetInfo > form {
    display: inline;
    margin-right: 0.5em;
}

div.sheetInfo > div {
    display: inline;
    margin-right: 0.5em;
    padding: 0;
}

/********************************************************
 Events
********************************************************/
div.table_e {
    border-collapse: collapse;
    margin: 1em 1em 1em 2em;
}

/* Row */
.table_e > div {
    display: table-row;
}

.table_e > div > div {
    padding: 0.5em;
    display: table-cell;
    border: thin solid silver;
    vertical-align: top;
}

/* First column */
.table_e > div > div:nth-child(1) {
    font-weight: bolder;
    min-width: 8em;
}

/* Second column */
.table_e > div > div:nth-child(2) {
    width: 1000em;
}

.table_e > div > div:nth-child(2) > ul {
    list-style-type: square;
    margin: 0;
    padding: 0 0.5em 0 1em;
}

.table_e > div > div:nth-child(2) > ul > li {
    padding: 0.1em;
}

/********************************************************
 Buttons
********************************************************/
.submitButton {
    background-color: #eee;
    width: 13em;
    border: thin solid silver;
    text-align: left;
    padding: 0.25em;
    margin: 0 0 0.5em 5em;
    font-weight: bolder;
    font-size: 1em;
}

.deleteButton {
    background-color: #eee;
    width: 2em;
    font-weight: bold;
    border: thin solid silver;
}

/********************************************************
 Tooltips
********************************************************/
/* Tooltip container */
.tooltip {
    position: relative;
    display: inline-block;
}

/* Tooltip text */
.tooltip .tooltiptext {
    visibility: hidden;
    color: white;
    font-size: 0.8em;
    background-color: NAVY;
    text-align: center;
    padding: 0.25em 1em 0.25em 1em;

    /* Position the tooltip text - see examples below! */
    position: absolute;
    z-index: 1;

    top: -5px;
    right: 1.5em;

    white-space: nowrap;
}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltip:hover .tooltiptext {
    visibility: visible;
}

.rep_file_list input[type="image"] {
    width: 1.5em;
    margin: 0 0 -1em 0;
}

.loginInfo {
    margin: 2em 1em 4em 0;
}

.eventDownloads {
    margin: 0 0 0 3em;
}

.mailButton {
    width: 1.6em;
}

/********************************************************
 Rehearsal Editor
********************************************************/

form.changeRehearsalForm button[type="submit"] {
    padding: 0.2em 1em 0.2em 1em;
    margin: 0em 0 2em 2em;
    background-color: #eee;
    border: thin solid silver;
    font-size: 1em;
    font-weight: bolder;
}

form.changeRehearsalForm li button[type="submit"] {
    padding: 0.2em 1em 0.2em 1em;
    margin: 0em 0 0.5em 0em;
    background-color: #eee;
    border: thin solid silver;
    font-size: 1em;
    font-weight: bolder;
}

form.changeRehearsalForm input[type="text"] {
    font-size: 1em;
    width: 98%;
    margin: 0 0 0.2em 0;
}

form.changeRehearsalForm textarea {
    font-size: 1em;
    width: 98%;
    height: 4em;
}

form.changeRehearsalForm > div > div > div:nth-child(2) > ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

form.changeRehearsalForm > div > div > div:nth-child(2) > ul li {
    padding: 0;
    margin: 0;
}
