﻿

/* ==================================== Menu ==================================== */
#navigation_bottom { float: right; }

.js .selectnav { display: none; }

.menu_bottom ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.menu_bottom ul li { position: relative; }

.menu_bottom ul ul {
	position: absolute;
	display: none;
	bottom: 100%;
	left: 0;
	z-index: 100;
	width: 175px;
}

.menu_bottom > ul li { float: left; }
.menu_bottom ul li:hover > ul { display: block; }

.menu_bottom ul a {
	display: block;
	position: relative;
}

.menu_bottom ul ul ul {
	top: 0;
	left: 100%;
}

.menu_bottom ul a { text-decoration: none; }

.menu_bottom ul > li > a {
	color: #000;
	/* color: #888; */
	font-weight: 400;
	font-size: 14px;
	line-height: 18px;
	padding: 14px 18px 20px 18px;
	overflow: hidden;
	border-bottom: 3px solid transparent;
}

#current,
.menu_bottom ul li a:hover,
.menu_bottom ul > li:hover > a { 
	border-bottom: 3px solid #169fe6;
	background-color: #e3e3e3;
}	/* background-color: #e3e3e3; */

#current:after {
	background: #a0a0a0;
	bottom: -2.5px;
	content: '';
	left: 50%;
	display: block;
	height: 5px;
	margin: 0 0 0 -2.5px;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
	position: absolute;
	width: 5px;
}

.ie8 #current:after {
	display: none;
}

.menu_bottom ul li a {
	-webkit-transition: border 150ms ease-in-out, background-color 150ms ease-in-out;
	-moz-transition: border 150ms ease-in-out, background-color 150ms ease-in-out;
	-o-transition: border 150ms ease-in-out, background-color 150ms ease-in-out;
	-ms-transition: border 150ms ease-in-out, background-color 150ms ease-in-out;
	transition: border 150ms ease-in-out, background-color 150ms ease-in-out;
}


/* Drop-Down */
.menu_bottom ul ul {
	background-color: #fff;
	z-index: 999;
	border-radius: 0 0 3px 3px;
	border: 1px solid #e4e4e4;
	border-top: 3px solid #a0a0a0;
	margin: 0 0 0 0;
	box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.04);
}

.menu_bottom > ul ul li:hover > a {
	border-bottom: 0;
	background: transparent;
}

.menu_bottom ul ul li {
	margin: 0;
	padding: 0;
	width: 100%;
}

.menu_bottom ul ul li a {
	color: #000;
	font-size: 13px;
	line-height: 18px;
	padding: 10px 16px !important;
	border: 0;
}

.menu_bottom ul ul li { border-top: 1px solid #e8e8e8; }
.menu_bottom ul ul li:first-child { border: 0; }

.menu_bottom ul ul li a:hover {
	color: #999;
	background-color: #fbfbfb;
	border: 0;
	}

.menu_bottom ul ul li a {
	-webkit-transition: background-color 50ms ease-in-out;
	-moz-transition: background-color 50ms ease-in-out;
	-o-transition: background-color 50ms ease-in-out;
	-ms-transition: background-color 50ms ease-in-out;
	transition: background-color 50ms ease-in-out;
}

.menu_bottom ul ul ul {
	border: 1px solid #e0e0e0;
	border-radius: 0 3px 3px 3px;
	margin: -1px 0 0 0;
}

.sf-sub-indicator {
	color: #c6c6c6;
	margin: 0 0 0 2px;
	width: 11px;
	display: inline-block;
	font-size: 12px;
	line-height: 0;
	}

.menu_bottom ul ul .sf-sub-indicator .icon-angle-down { display: none; }


