/* Header */
.header {
	max-width:1200px;
	background-color:#000;
	color:#f1f1f1;
	text-align:right;
	margin-left:auto;
	margin-right:auto;
	vertical-align:middle;
}

.header_background {
	background-color:#000000;
	width:100%;
	height:60px;
	position:fixed;
	z-index: 2;
	z-index: 999;
}

.header_responsive {
	max-width:1200px;
	text-align:left;
	vertical-align:middle;
	font-size:13px;
	font-family: star, serif;
	z-index: 999;
}

.header_responsive_background {
	background-color:#000;
	width:100%;
	height:60px;
	position:fixed;
	padding:0px;
	z-index: 2;
	z-index: 999;
}


.header_button_login {
	background-color: #19a9c6;
	color: #FFFFFF;
	cursor: pointer;
}

/* Regular Menu */
.menu {
	background-color:#000000;
	float:right;
	height:30px;
	font-size:12px;
	font-family: star, serif;
}

.menu_docs_icon {
	width:20px;
	margin-top:20px;
}

.menu_selected, .menu_unselected {
	background-color:#000000;
	float:left;
	padding:0px 12px;
	display:block;
	font-stretch:extra-expanded;
	text-decoration:none;
	color:#FFFFFF;
}

.menu_selected {
	background-color:#fe3d41;
	padding-top:7px;
	height:70px;
	line-height:70px;
	color:#FFFFFF;
}

.menu_unselected {
	background-color:#000000;
	cursor: pointer;
	height:60px;
	line-height:60px;
	color:#cccccc;
}

.menu_unselected:hover {
	animation: menu_slide ease 0.3s;
	animation-iteration-count: 1; 
    animation-fill-mode: forwards;
}

@keyframes menu_slide {
	0% {
		background:#000000;
		padding-top:0px;
	}
	100% {
		color:#FFFFFF;
		background:#19a9c6;
		padding-top:7px;
		height:70px;
		line-height:70px;
	}
}

/* Menu Responsive */
.menu_dropdown {
	width:200px;
	margin-left:10px;
	margin-top:6px;
	padding:0px;
}

.menu_responsive_selected, .menu_responsive_unselected {
	font-size:13px;
	font-family: star, serif;
	color:#f1f1f1;
	padding:10px;
	margin:0px;
	text-decoration:none;
	cursor:pointer;
}

.menu_responsive_selected {
	color:#FFFFFF;
	background-color:#fe3d41;
	padding-left:20px;
	width:215px;
}

.menu_responsive_unselected {
	color:#CCCCCC;
	background-color:#000000;
	padding-left:15px;
}

.menu_responsive_unselected:hover {
	animation: menu_responsive_slide ease 0.3s;
	animation-iteration-count: 1; 
    animation-fill-mode: forwards;
}

@keyframes menu_responsive_slide {
	0% {
		background:#000000;
	}
	100% {
		color:#FFFFFF;
		background:#19a9c6;
		padding-left:20px;
		width:215px;
	}
}

.menu_icon {
	width:30px;
	height:30px;
	margin:15px;
}
