/* accordion sct */
.accordion {
	background-color: #eee;
	color: #44;
	cursor: pointer;
	padding: 18px;
	width: 100%;
	margin-bottom: 8px;
	text-align: left;
	border: none;
	outline: none;
	transition:0.4s;
}
.accordion:after {
	content: '\02795';
	font-size: 13px;
	color: #777;
	float: right;
	margin-left: 5px;
}
.active, .accordion:hover { 
	background-color: #ccc;
}
.active:after {
	content: "\2796";
}
.panel {
	padding: 0 18px;
	background-color: white;
	display: none;
	overflow: hidden;
	transition: max-height 0.2s ease-out;
}
/* dropdown sct */
.dropbtn {
	background-color: #3498DB;
	color: white;
	padding: 16px;
	font-size: 16px;
	border: none;
	cursor: pointer;
}
.dropbtn:hover, dropbtn:focus {
	background-color: #2980B9;
}
.dropdown {
	position: relative;
	display: inline-block;
}
.dropdown-content {
	display: none;
	position:absolute;
	background-color:#f1f1f1;
	min-width: 16px;
	box-shadow: 0px 8px 16px 0px rbga(0,0,0,0.2);
	z-index: 1;
}
.dropdown-content a {
	color: black;
	padding: 12px 16px;
	text-decoration: none;
	display: block;
}
.dropdown-content a:hover {background-color: #ddd;}
.show {display:block;}
/* header */ 
.header {
	overflow: hidden;
	background-color: #f1f1f1;
	padding: 20px 10px
}
.header a {
	float: left;
	color: black;
	text-align: center;
	padding: 12px;
	text-decoration: none;
	font-size: 18px;
	line-height: 25px;
	border-radius: 4px;
}
.header a.logo {
	font-size: 25px;
	font-weight: bold;
}
.header a:hover {
	background-color: dodgerblue;
	color: white;
}
.header-right {
	float: right;
}
@media screen and (max-width: 500px) {
	.header a {
		float: none;
		display: block;
		text-align: left;
	}
	.header-right {
		float: none;
	}
}
/* button outline */
.bttn-outline {
	display: inline-block;
	margin: 15px 0;
	padding: 10px 20px;
	background-color: #007bff;
	color: white;
	border-radius: 5px;
	transition: background-color 0.3s;
}
.bttn-outline:hover {
	background-color: #0056b3;
}
