body
{
    background-color: #000066;  /** Hintergrundfarbe der ganzen Seite */
    color: #ffffff;             /** Schriftfarbe der ganzen Seite */
    margin-top: 50px;           /** Abstand zum oberen Seitenrand */

}
textarea {
    resize:vertical;/*will prevent resizing horizontally*/
}
a:link { text-decoration:none; font-weight:normal; color:#ffffff; }
a:visited { text-decoration:none; font-weight:normal; color:#ffffff; }
a:hover { text-decoration:none; font-weight:normal; background-color:#000000; }
a:active { text-decoration:none; font-weight:normal; background-color:#000000; }
a:focus { text-decoration:none; font-weight:normal; background-color:#000000; }

.text-center {
    text-align: center;
}

.block-center {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.list-unstyled
{
    margin: 0;
    padding: 0;
    list-style: none;
}

#wrapper
{
    width: 860px; /** Beschränkt seitenbreite auf 860px */

}

#wrapper article
{
    border: 1px #ffffff solid;
    border-width:1px;
    border-style:solid;
    border-bottom-color:#2c2c2c;
    border-right-color:#2c2c2c;
    border-top-color:#808080;
    border-left-color:#808080;
    margin-top: 30px; /* 30px abstand zwischen den einzelnen artikeln */
    background-color: #990000; /* standard hintergundfarbe */

    padding: 2px;
}


#wrapper article.half-margin
{
    margin-top: 15px; /** weniger abstand bei half margin */
}

#wrapper article.no-margin
{
    margin-top: 0; /** bei artikeln mit der klasse no-margin keinen abstand nach oben */
    border-top: 0; /** wenn kein abstand da ist brauchts auch keinen rahmen nach oben */
}

#wrapper article .article-elem
{
    border-width:1px;
    border-style:solid;
    border-bottom-color:#808080;
    border-right-color:#808080;
    border-top-color:#2c2c2c;
    border-left-color:#2c2c2c;
    padding: 2px;
    margin-top: 1px; /** für abstand zwischen den elementen innerhalb des artikel */
}

#wrapper article .article-elem:first-child
{
    margin-top: 0; /** ausser beim ersten da gilt das padding vom artikel */
}

#wrapper article.article-headtext
{
    background-color: #9900FF; /** hintergrund farbe für den text im header */
}


#wrapper article .article-short
{
    background-color: #000000; /** hintergrundfarbe für das kürzel */
}

#wrapper article .article-format
{
    background-color: #006633; /** hintergrundfarbe für die formatangabe */
}

#wrapper article p /** margin normalisierung */
{
    margin: 0; /* entfernt den standard margin */
}

#wrapper article .logo
{
    padding: 1px; /* 1px abstand zwischen dem logo und dem äusseren div */
    height: 370px;
}

#wrapper article .logo img
{ /* maße des logos */
    width: 850px;
    height: 370px;
}

input
{
    min-width: 300px;
}

/* The Modal (background) */
.modal {
    display: block; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0px;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content/Box */
.modal-content {
    background-color: #fefefe;
    margin: 15% auto; /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 80%; /* Could be more or less, depending on screen size */
}

/* The Close Button */
.close {
    color: #ffffff;
    float: right;
    padding-right: 5px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}