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

.header_background {
	background-color:#1c1f24;
	width:100%;
	height:75px;
	position:fixed;
	z-index:2;
	z-index:999;
	border-bottom:1px solid #131416;
}

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

.header_responsive_icon {
	margin:10px;
	background:#1c1f24 url("/icons/ui/menu.png") center/20px 20px no-repeat !important;
	width:60px;
	height:60px;
	border:1px solid #131416;
	border-radius:30px;
	cursor:pointer;
}

.header_responsive_icon:hover {
	background:#1c78a8 url("/icons/ui/menu.png") center/20px 20px no-repeat !important;
	border:1px solid #19a9c6;
	cursor:pointer;
}

.header_responsive_background {
	margin:10px;
	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:#1c1f24;
	float:right;
	height:30px;
	font-size:14px;
	font-family:title, sans-serif;
}

.menu_hidden {
    display:none;
}

.menu_spacer {
	height:75px;	
}

.menu_logo, .menu_logo_responsive {
	height:18px;
	margin-top:30px;
	float:left;
	display:none;
	cursor:pointer;
}

.menu_logo {
	margin-left:15px;
	margin-top:30px;
	float:left;
	display:none;
	cursor:pointer;
}

.menu_logo_responsive {
	margin-left:80px;
}

.menu_icon {
	width:75px;
	height:75px;
	margin:20px;
}

.menu_logo_enabled {
	display:block;
}

.menu_docs_icon {
	width:28px;
	margin-top:50%;
}

.menu_selected, .menu_unselected {
	background-color:#1c1f24;
	float:left;
	padding:0px 10px;
	display:block;
	font-stretch:extra-expanded;
	text-decoration:none;
	color:#FFFFFF;
	cursor:pointer;
}

.menu_selected {
	background-color:#fe3d41;
	height:90px;
	line-height:90px;
	color:#FFFFFF;
}

.menu_unselected {
	background-color:#1c1f24;
	cursor:pointer;
	height:75px;
	line-height:75px;
	color:#cccccc;
	border-bottom:1px solid #131416;
}

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

/* Menu Responsive */
.menu_dropdown {
	background-color:#1c1f24;
	width:180px;
	padding:0px;
	border:1px solid #131416;
	margin:0px;
	margin-top:10px;
}

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

.menu_responsive_selected {
	color:#FFFFFF;
	background-color:#fe3d41;
	border-right:5px solid #ff5155;
	width:200px;
	padding-left:20px;
}

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

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

/* Page Header */
.page_header_background_large, .page_header_background_small {
	background-repeat:no-repeat;
    background-position:center center;
	background-size:cover;
	width:100%;
    margin:0px;
    padding:0px;
    vertical-align:bottom;
}

.page_header_container_large, .page_header_container_small {
	min-width:600px;
	padding:20px;
	background-color:rgba(0,0,0,0.25);
	position:relative;
}

.page_header_container_large {
	height:700px;
	padding-top:200px; 
}

.page_header_container_small {
	height:300px;
	padding-top:100px; 
}

.page_header_menu {
	text-align:center;
	border-left:5px solid #1c1f24;
	border-right:5px solid #1c1f24;
	background-color:rgba(15,15,17,0.5);
	padding:10px 20px 10px 20px;
	position:absolute;
	bottom:0px;
	left:0px;
	right:0px;
}

.page_header_menu a {
	color:#DDDDDD;
	text-decoration:none;
}

.page_header_menu a:hover {
	color:#1c78a8;
	text-decoration:none;
}

.page_header_column_icon {
	width:20%;
	display:inline-block;
	text-align:left;
	vertical-align:top;
	padding:0px;
	margin:0px;
}

.page_header_column_body {
	width:80%;
	display:inline-block;
	text-align:left;
	vertical-align:top;
	padding:0px;
	margin:0px;
}

.page_header_heading {
	padding-left:12px;
	padding-top:6px;
	padding-bottom:6px;
	border-left:5px solid #fa4047;
	border-bottom:0px solid #DDDDDD;
	margin-right:10px;
	background-image:linear-gradient(to right, rgba(15,15,17,0.5), rgba(15,15,17,0));
	white-space:nowrap;
}


/* Animations */
@keyframes menu_slide {
	0% {
		background:#1c78a8;
		padding-top:0px;
	}
	100% {
		color:#FFFFFF;
		background:#1c78a8;
		height:90px;
		line-height:90px;
		border-bottom:5px solid #19a9c6;
	}
}

@keyframes menu_responsive_slide {
	0% {
		background:#1c1f24;
	}
	100% {
		color:#FFFFFF;
		background:#1c78a8;
		padding-left:20px;
		width:200px;
		border-right:5px solid #19a9c6;
	}
}