 .errorWrap {
                padding: 10px;
                margin: 0 0 20px 0;
                background: #dd3d36;
                color:#fff;
                -webkit-box-shadow: 0 1px 1px 0 rgba(0,0,0,.1);
                box-shadow: 0 1px 1px 0 rgba(0,0,0,.1);
            }
            .succWrap{
                padding: 10px;
                margin: 0 0 20px 0;
                background: #5cb85c;
                color:#fff;
                -webkit-box-shadow: 0 1px 1px 0 rgba(0,0,0,.1);
                box-shadow: 0 1px 1px 0 rgba(0,0,0,.1);
            }

            .cookies-eu-banner {
                background: #444;
                color: #fff;
                padding: 6px;
                font-size: 13px;
                text-align: center;
                position: fixed;
                bottom: 0;
                width: 100%;
                z-index: 10;
            }

            .cookies-eu-banner button {
                text-decoration: none;
                background: #222;
                color: #fff;
                border: 1px solid #000;
                cursor: pointer;
                padding: 4px 7px;
                margin: 2px 0;
                font-size: 13px;
                font-weight: 700;
                transition: background 0.07s, color 0.07s, border-color 0.07s;
            }

            .cookies-eu-banner button:hover {
                background: #fff;
                color: #222;
            }


  #writeDIV {
                width: 100%;
                padding: 5px;
                /*text-align: center;*/
                background-color: #68c9b4;
                margin-top: 20px;
            }


            label {
                /*
                font-family: Georgia, "Times New Roman", Times, serif;
                font-size: 18px;*/
                color: #333;
                height: 20px;
                width: 300px;
                /*margin-top: 10px;*/
                margin-left: 10px;
                /*text-align: right;*/
                clear: both;
                float:left;
                margin-right:15px;
            }
            .center-image {
                display: block;
                margin-left: auto;
                margin-right: auto;

            }

            .button-log {
                transition-duration: 0.4s;
                background-color: #FFE4C4;
                color: black;
            }

            .button-log:hover {
                background-color: white; /* Green */
                color:  black;
            }



a:visited {
    color: blueviolet;
    background-color: transparent;
    text-decoration: none;
}

a:link {
    color: white;
    background-color: transparent;
    text-decoration: none;
}

a:hover {
    color: red;
    background-color: transparent;
    text-decoration: underline;
}

a:active {
    color: yellow;
    background-color: transparent;
    text-decoration: underline;
}

.dropbtn {
    background-color: black;
    color: white;
    padding: 16px;
    font-size: 16px;
    border: none;
}

.dropdown {
    float:left;

    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: lightgrey;
    min-width: 200px;
    z-index: 1;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    background-color: white;
}
.dropdown:hover .dropdown-content {
    display: block;
}
.dropdown:hover .dropbtn {
    background-color: grey;
}

ul.menu {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #333333;
}

ul.menu li {
    float: left;
}


ul.menu li a {
    display: block;
    color: white;
    text-align: center;
    padding: 10px;
    text-decoration: none;
}

ul.menu li a:hover {
    background-color: #111111;
}



ul.breadcrumb {
    padding: 5px 16px;
    list-style-type: none;
    background-color: #3d4058;
    border-style: none;
}

/* Display list items side by side */
ul.breadcrumb li {
    display: inline;
    color: white;
    font-size: 12px;
}

/* Add a slash symbol (/) before/behind each list item */
ul.breadcrumb li+li:before {
    padding: 2px;
    color: white;
    content: "/\00a0";
}

/* Add a color to all links inside the list */
ul.breadcrumb li a {
    color: #a2b5d8;
    text-decoration: none;
}

/* Add a color on mouse-over */
ul.breadcrumb li a:hover {
    color: #01447e;
    text-decoration: underline;
}