.blink_me {
    animation: blinker 2s linear infinite;
    color: red;
    font-style: italic;
    text-align: center;
    text-decoration: underline;
}

@keyframes blinker {
    50% {
        opacity: 0;
    }
}

#box {
    width: 100%;
    background-color: lightgray;
    margin-top: 2em;
    padding-left: 2em;
    padding-right: 2em;
    padding-top: 2em;
    padding-bottom: 2em;
}

.center {
    margin: auto;
    width: 50%;
}

.ret-block {
    margin-left: 2em ;
    padding-right: 2em;
    font-family: Verdana, Arial, sans-serif;
    font-style: italic;
}

.desc_td {
    overflow: hidden;
    text-overflow: ellipsis;
}

.title_tr {
    font-weight: bold;
    font-style: italic;

}

 .p_t1 {
    font-family: 'Source-Sans-Pro';
    font-size: 18pt;
    font-style: italic;
    font-weight: bold;
    text-decoration: underline;
    text-align: left;
    text-justify: none;
}

.p_t2 {
    font-family: 'Source-Sans-Pro';
    font-size: 14pt;
    font-style: italic;
    margin-left: 1em ;
    text-align: left;
    text-justify: none;
}


/*----- General Formating -----*/	
body, html {
    font-family: Verdana, Arial, sans-serif;
    font-size: 0.95em;
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
}

video {
object-fit: contain;
}

strong {
    font-family: Verdana, Arial, sans-serif;
    text-align: left;
    text-justify: none;

}

.comment_left {
        text-align: left;
        text-decoration: underline;
}

.comment_right {
        text-align: right;
        text-decoration: underline;
}

a {
    color: #006000;
}

a:active, a:focus {
    outline: none;
}

main {
    margin: 3em 1em;
    line-height: 180%;
    max-width: 1148px;
    margin: auto;
    width: 100%;
  text-align: justify;
  text-justify: inter-word;
font-family:'Lora';}

	/*------------------------------*/
table {
    border-collapse: collapse;
    width:100%;
}
.var_img {
    max-width: 100%;
    height: auto;
}

h2 {
    font-weight: bold;
    font-style: italic;
    text-align: center;
}

h3 {
    font-family:'Cotoris-Heavy';
    text-decoration: underline;
    text-align: center;
    font-size: 20pt;
}

h4 {
    font-weight: bold;
    font-style: italic;
    text-align: center;
    font-size: 12pt;
}

h5 {
    font-weight: bold;
    font-style: italic;
    text-align: center;
}

tr:nth-child(even) {
    background-color: #f2f2f2;
}

.tr-link:hover {
    background-color: #4CAF50;
}

caption {
    background-color: #4CAF50;
    color: white;
    font-weight: bold;
    font-style: italic;
}

th, td {
    padding: 7px;
    text-align: left;
}

table {
    font-family: Verdana, Arial, sans-serif;

}

ul li ul {
    list-style-type: square;
}

table, th, td {
    border: 1px solid black;
    padding-left: 10px;
}
	/*----- Logo -----*/	
.brand {
    float: left;
    padding: 1em 1em 1em;
}
	/*----------------*/


	/*----- Menu -----*/	
nav {
    margin: 0 auto;
    width: 100%;
    height: auto;
    text-align: right;
    position: relative;
    background: rgba(255, 255, 255, 1.0);
    border-bottom: 1px solid white;
    -webkit-transition: all 0.8s ease;
    -moz-transition: all 0.8s ease;
    -o-transition: all 0.8s ease;
    transition: all 0.8s ease;
}

nav ul {
    margin: 0;
    padding: 1em 0 0 0;	
    height: 100vh;
}

nav ul li {	
    list-style: none;
    margin: 0;
    display: inline;
}

nav ul li a {
    color: #006000;
    position: relative;
    padding: 0 0 0.5em 0;
    display: inline-block;
    text-decoration: none;
    text-transform: uppercase;
}

nav ul.menu li a:hover {
    color: #03405f;
    border-bottom: 2px solid #03405f;
}
	/*----------------*/
	
	
	/*----- Media Queries -----*/
@media screen and (min-width: 961px) {
    main div {
/*        padding: 3em 1em;*/
    padding-left: 1em;
    padding-right: 1em;
    line-height: 180%;
    margin: auto;
    max-width: 1000px;
    text-align: justify;
    text-justify: inter-word;
    font-family:'Lora';

}

    nav ul.menu {
        max-height: 20px;
    }	
    a#nav-m, a.close {
        display: none;
    }
    nav ul li {
        margin: 0 30px 0 0;
    }	
}

@media screen and (max-width: 960px) {	
	/*Formatierung Mobiles Menue*/
     main div {
/*        padding: 3em 1em;*/
    line-height: 180%;
    margin: auto;
    width: 96%;
    text-align: justify;
    text-justify: inter-word;
    font-family:'Lora';

}


   /*     main div {
                width: 95%;

        }        */
        nav ul {
        top: 0em;
        position: absolute;
        hight:auto;
        background: #060;	
        /*background: rgba(200,200,200,0.95);*/
        width: 50%;
        left: -100%;

        list-style-type:none;
        margin: 0;
        padding: 0;
        transition:all .6s ease;
        -webkit-transition:all .6s ease;
    }
    
    nav ul li{
        display: block;
        text-align: left;
        padding: 0em 0.5em;
        border-bottom: 1px solid #fff;
    }
    
    nav ul li a {
        color: #000;
        padding: 1em 0;
    }
    
    nav ul.menu li a:hover {
        border-bottom: 0;
    }	

    /*Hamburger-Icon*/
    a#nav-m img, a.close img {
        width: 40px;
        height: auto;
    }
    
    nav > .close, a#nav-m:target {
        display: none;
    }

    a:target ~ ul, a:target ~ .close {
        display: inline-block;
    }
	
    a:target ~ .close {
        position: absolute;
        margin-left: -40px;
    }

    a:target ~ ul {
        left: 0;
    }
}
	/*--------------------------------------*/
