/* REMOVE UNWANTED DEFAULT UL STYLES AND SPACING, COLOR NAV BAR */
ul {
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
/* baggrundsfarve i øverste menubjælke */
background-color: #db060c; 
} 
/* DISPLAY ALL NAV BAR LI (BUTTONS) SIDE BY SIDE */
li {
float: left;
}
/* STYLE LIST ITEMS (MENU BUTTONS AND DROP BUTTON) */
li a, .drop-button {
display: inline-block;
font-family: Arial, Helvetica, sans-serif;
font-size: 12pt;
color: white;
text-align: center;
padding: 12px 14px;
text-decoration: none;
}
/* CHANGE BACKGROUND COLOR ON HOVER (ALL MENU BUTTONS: BOTH MENUS) */
li a:hover, .dropdown-menu:hover .drop-button {
background-color: blue;
}
/* HIDE DROPDOWN MENU UNTIL HOVERED OVER. ADD SOME STYLE */
.dropdown-links {
display: none;
position: absolute; 
/* STOPS THE HORIZONTAL MENU FROM EXPANDING WITH DROPDOWN MENU */
background-color: teal;
/* menubjælke-links bredde herunder */
min-width: 194px;
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.8);
}
/* MAKE DROPDOWN MENU AND LINKS VISIBLE ON MOUSE HOVER */
.dropdown-menu:hover .dropdown-links {
display: block;
}
/* STYLE AND POSITION THE LINKS */
.dropdown-links a {
color: white;
display: block;
text-align: left;
}
.pennormal {font-family: Arial, Helvetica, sans-serif;
font-size: 12px;
color: #808080;
#borderimg1  
    border: 10px solid transparent;
    padding: 15px;
    border-image-source: url(border.png);
    border-image-repeat: round;
    border-image-slice: 30;
    border-image-width: 10px;}

/* The Modal (background) */
.modal {
display: none; /* Hidden by default */
position: fixed; /* Stay in place */
z-index: 1; /* Sit on top */
left: 0;
top: 0;
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: #aaa;
float: right;
font-size: 28px;
font-weight: bold;
}

.close:hover,
.close:focus {
color: black;
text-decoration: none;
cursor: pointer;
} 

/* Style the button that is used to open and close the collapsible content */
.collapsible {
background-color: #eee;
color: #444;
cursor: pointer;
padding: 18px;
width: 100%;
border: none;
text-align: left;
outline: none;
font-size: 15px;
}

/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.active, .collapsible:hover {
background-color: #ccc;
}

/* Style the collapsible content. Note: hidden by default */
.content {
padding: 0 18px;
display: none;
overflow: hidden;
background-color: #f1f1f1;
} 





