#main_header {
	/*background: #404040;*/
	display: flex;
	color: #555555;
	flex: 0 0 auto;
	/*font-family: Cuprum-Regular;*/
	min-height: 60px;
	width: 100%;
	}

/*#main_header > a > .logo {
	background: url(/_styles/logo_white_48.png) no-repeat;
	height: 100%;
	width: 50px;
	}*/

#main_header > .logo_txt {
	align-items: center;
	cursor: default;
	display: flex;
	font-size: 1.5em;
	/*font-weight: bold;*/
	/*height: 100%;*/
	margin: auto auto auto 15px;
	}

#main_header > .logo_txt > span {
	margin: auto;
	}

#main_header > .menu {
	align-items: center;
	display: flex;
	flex: auto;
	margin: 0 0 0 30px;
	}

#main_header > .menu > nav {
	display: flex;
	}

#main_header > .menu > nav > ul {
	margin: auto;
	}

#main_header > .menu > nav > ul > li {
	display: inline-block;
	/*font-size: 1.1em;*/
	list-style: none;
	padding: 5px;
	}

#main_header > .menu > nav > ul > li > a {
	color: #555555;
	text-decoration: none;
	}

#main_header > .menu > nav > ul > li > a:hover {
	color: #555555;
	text-decoration: underline;
	}

#main_header > .search_panel {
	display: flex;
	/*float: left;*/
	font-size: 1.1em;
	font-weight: bold;
	margin: 0 0 0 20px;
	}

#main_header > .search_panel > input {
	background-color: #FFF;
	border: 1px solid #FFF;
	border-radius: 5px 0 0 5px;
	font-family: Artifakt-Regular;
	height: 28px;
	margin: auto;
	padding: 0 5px;
	width: 200px;
	}

#main_header > .search_panel > button {
	background-color: #404040;
	/*background: url(/_styles/entypo/icons/magnifying-glass.svg ) no-repeat center;*/
	border: 1px solid #FFF;
	border-radius: 0 5px 5px 0;
	font-family: simple-line-icons;
    height: 30px;
    margin: auto;
    padding: 0 5px;
    width: 40px;
	}

#main_header > .search_panel > button:hover {
	background-color: #555555;
	}

#main_header > .search_panel > button:active {
	background-color: #777777;
	}

#main_header > .login_logout {
	align-items: center;
	display: flex;
	float: left;
	font-size: 1em;
	/*font-weight: bold;*/
	margin: 0 20px 0 20px;
	min-width: 60px;
	}

#main_header > .login_logout > span {
	margin: auto;
	}

#main_header > .login_logout > span > a {
	color: #555555;
	text-decoration: none;
	}

#main_header > .login_logout > span > a:hover {
	color: #555555;
	text-decoration: underline;
	}

#main_header .usermenu {
	display: flex;
	height: 30px;
	/*width: 100%;*/
	}

#main_header .usermenu ul {
	list-style: none;
	margin: 0;
	padding: 0;
	}

#main_header .usermenu ul > li > span > a {
	color: #555;
	}

#main_header .usermenu > .topmenu {
	height: 30px;
	/*width: 100%;*/
	}

#main_header .usermenu > .topmenu > li {
	display: flex;
	height: 100%;
	position: relative;
	width: 100%;
	}

#main_header .usermenu > .topmenu > li:hover {
	background: #DDD;
	/*border: 1px solid RED;*/
	}

#main_header .usermenu > .topmenu > li > span {
	margin: auto 10px auto auto;
	min-width: 100px;
	}

#main_header .usermenu > .topmenu > li > .submenu {
	background: #DDD;
	/*border: 1px solid RED;*/
	/*height: 30px;*/
	left: 0;
	position: absolute;
	top: 100%;
	width: 100%;
	z-index: 10;
	transition: 0.5s ease-in-out;
	-webkit-transition: 0.5s ease-in-out;
	-moz-transition: 0.5s ease-in-out;
	-o-transition: 0.5s ease-in-out;
	}

#main_header .usermenu .submenu {
	display: none;
	}

#main_header .usermenu .submenu li {
	display: flex;
	height: 30px;
	padding: 0 5px;
	}

#main_header .usermenu .submenu li > span {
	/*margin: auto 10px;*/
	}

#main_header .usermenu ul li:hover .submenu {
	display: flex;
	flex-direction: column;
	}

#main_header .usermenu .submenu li > span > a {
	text-decoration: none;
	}
	
#main_header .usermenu .submenu li > span > a:hover {
	text-decoration: underline;
	}