@charset "utf-8";
/* CSS Document */

* {
	margin:0px;
	padding:0px;
}

* {
    box-sizing: border-box;
}
.row:after {
    content: "";
    clear: both;
    display: block;
}

[class*="col-"] {
    float: left;
    padding: 5px;
	margin-left:5px;
	margin-right:5px;
}

.col-6 {
	width: 100%;
}

html {
    font-family: "Lucida sans"; 
    font-size: 0.8rem;
}



.header {
    background: #ed433e;
    color: #fffeb7;
    padding: 10px;
	margin-bottom:10px;
	box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
}

.header a {
    color: #fffeb7;
}


.menu ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}
.menu li {
    padding: 3px;
    margin-bottom: 5px;
    background: #fffeb7;
	color: #6a2510;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
}

.menu li:hover {
    background:#ed433e;
	color:#fffeb7;
}

.menu a {
	color:#6a2510;
}

.menu a:hover {
	color:#fffeb7;
}

.dropbutton{
	background: #ed433e;
	color: #fffeb7;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
	margin-left:10px;
	margin-bottom:15px;
	font-family: "Lucida sans"; 
    font-size: 15px;
	cursor: pointer;
}


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

.dropdown-content {
    display: none;
    position: absolute;
    background: #fffeb7;
	min-width: 160px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
}

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

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

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

.dropdown:hover .dropbutton {
    background:#fffeb7;
	color:#ed433e;
	font-family: "Lucida sans"; 
    font-size: 15px;
}


img {
	width:auto;
	height:auto;
	border-style:solid;
	border-width:1px;
	border-color:black;
}


p {
	margin-left:10px;
	border-style:solid;
	border-left:none;
	border-right:none;
	border-top:none;
	border-bottom-width:0.5px;
	border-color:#ed433e;
}

button {
	background:#ed433e;
	color:#fffeb7;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
	font-family: "Lucida sans"; 
    font-size: 12px;
	cursor: pointer;
}

button:hover {
	background:#ed433e;
	color:#fffeb7;
	font-family: "Lucida sans"; 
    font-size: 14px;
}

script {
	font-family: "Lucida sans"; 
    font-size: 12px;
}