.color-primary-0 { color: #AE2408 }	/* Main Primary color */
.color-primary-1 { color: #E3583A }
.color-primary-2 { color: #CD3617 }
.color-primary-3 { color: #911900 }
.color-primary-4 { color: #6F1300 }
.color-primary-5 { color: #FFFFFF }

* {
    box-sizing: border-box;
    border-radius: 5px;
}


/* Style the header */
.header {
    background-color: #AE2408;
    padding: 5px;
    font-family: Verdana;
    font-size: medium;
    text-align: center;
}

head  {
	  background: #AE2408; 
}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    /*
	background-color: #8E1900 ;
	*/
	  background-color #ffffff;
}

li {
    float: left;
}

.active {
    background-color: #4CAF50;
}	

li a, .dropbtn {
    display: inline-block;
    color: black;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

li a:hover, .dropdown:hover .dropbtn {
    background-color: #D33717;
}

li.dropdown {
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color:#D33717;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown-R {
    position: relative;
    display: inline-block;
}

.dropbtn-R {
    background-color: #4CAF50;
    color: white;
    padding: 16px;
    font-size: 16px;
    border: none;
    cursor: pointer;
}

.dropdown-content-R a:hover {background-color: #f1f1f1;}

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

.dropdown-content a:hover {background-color: #f9f9f9}

.dropdown:hover .dropdown-content {
    display: block;
}

/* Create two unequal columns that floats next to each other */

.column {
    float: left;
    padding: 10px;
    
    
    
}

/* Right column */
.column.side {
    width: 30%;
}

/* Left column */
.column.middle {
    width: 60%;
    border-radius: 5px;
}

/* Clear floats after the columns */
.row:after {
    content: "";
    display: table;
    clear: both;
}

/* Responsive layout - makes the three columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
.column.side, .column.middle {
    width: 100%;
    }
}

/* Hover thumbnail */
.thumbnail {
	  position: relative; z-index: 0; 
} 
         
.thumbnail:hover  { 
	  background-color: transparent; z-index: 50;
} 
        
.thumbnail span { /*CSS for enlarged image*/ 
	  position: absolute; background-color: white; padding: 5px; left: -1000px; border: 1px solid black; visibility: hidden; color: black; text-decoration: none; 
} 
         
.thumbnail span img { /*CSS for enlarged image*/ 
	  border-width: 0; padding: 1px; 
} 
        
.thumbnail:hover span { /*CSS for enlarged image on hover*/ 
	  visibility: visible; top: 0; left: 60px; /*position where enlarged image should offset horizontally */ 
} 

/* Box */
h2 {
    /*background-color: gray;*/
    background-color: #AE2408;
	  font-family: Arial, Helvetica, sans-serif;
    color: #d3c097;
    height: 6en;
	  width: auto;
}

/* Fonter */
p.sansserif {
    font-family: Arial, Helvetica, sans-serif;
    height: 4en;
    width: : auto;
}

i {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
}

table#t01 {
    width: 100%;    
    background-color: #000000;
}

p.footer {
	  font-size: 10px;
	  color: gray;
}

* {
  	box-sizing: border-box;
  	font-family: -apple-system, BlinkMacSystemFont, "segoe ui", roboto, oxygen, ubuntu, cantarell, "fira sans", "droid sans", "helvetica neue", Arial, sans-serif;
  	font-size: 16px;
  	-webkit-font-smoothing: antialiased;
  	-moz-osx-font-smoothing: grayscale;
}
body {
  	background-color: #FFFFFF;
}

/* orginal
.login {
  	width: 400px;
  	background-color: #ffffff;
  	box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.3);
  	margin: 100px auto;
}
.login h1 {
  	text-align: center;
  	color: #5b6574;
  	font-size: 24px;
  	padding: 20px 0 20px 0;
  	border-bottom: 1px solid #dee0e4;
}
.login form {
  	display: flex;
  	flex-wrap: wrap;
  	justify-content: center;
  	padding-top: 20px;
}
.login form label {
  	display: flex;
  	justify-content: center;
  	align-items: center;
  	width: 50px;
  	height: 50px;
  	background-color: #3274d6;
  	color: #ffffff;
}
.login form input[type="password"], .login form input[type="text"] {
  	width: 310px;
  	height: 50px;
  	border: 1px solid #dee0e4;
  	margin-bottom: 20px;
  	padding: 0 15px;
}
.login form input[type="submit"] {
  	width: 100%;
  	padding: 15px;
 	  margin-top: 20px;
  	background-color: #3274d6;
  	border: 0;
  	cursor: pointer;
  	font-weight: bold;
  	color: #ffffff;
  	transition: background-color 0.2s;
}
.login form input[type="submit"]:hover {
	  background-color: #2868c7;
  	transition: background-color 0.2s;
}
*/

.login-form {
    width: 400px;
    margin: 0 auto;
    font-family: Tahoma, Geneva, sans-serif;
}
.login-form h1 {
    text-align: center;
    color: #4d4d4d;
    font-size: 24px;
    padding: 20px 0 20px 0;
}
.login-form input[type="password"],
.login-form input[type="text"] {
    width: 100%;
    padding: 15px;
    border: 1px solid #dddddd;
    margin-bottom: 15px;
    box-sizing:border-box;
}
.login-form input[type="submit"],
.login-form input[type="reset"]] {
    width: 50%;
    padding: 50px;
    background-color: #4d4d4d;
    border: 1;
    box-sizing: border-box;
    cursor: pointer;
    font-weight: bold;
    color: #ffffff;
}

.anslag-table {
      width: 180px; 
      margin: auto;
      font-family: "Lucida Sans Unicode", "Lucida Grande", "Segoe Ui";
      font-size: 1px;
      background-color: #ffffff;
      border-collapse: collapse;
      border: 5px solid black
}

.anslag-table thead {
      background-color: #2868c7;
}      

.anslag-table tr, 
.anslag-table td {
      border: 1px solid #e1edff;
      padding: 7px 17px;
    } 
