body {
	background: #fff;
	font-weight: 400;
	font-size: 14px;
	color: #333;
}


/****** MENU *****/

.menu {
	height: 50px;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 10000;
	font-family: 'Helvetica', sans-serif;
	font-weight: 200;
	font-size: 14px;
    letter-spacing: 0;
    margin-bottom: 64px;
}

.menu .logo {
	height: 75px;
}

.menu .logo img {
    width: auto;
    height: 75px;
    margin: 5px 0 5px;
}

.menu .logo img.green {
	display: none;
}

.menu a {
    font-weight: 300;
    color: #333;
    display: block;
    padding: 14px 0 0;
    height: 50px;
    box-sizing: border-box;
}


.menu li.active, .menu li:hover {
	
}


.menu a.active, .menu a:hover {
	border-bottom: 1px solid #333;
	text-decoration: none;
}


.menu ul {
	list-style: none;
	margin-right: -1em;
	float: right;
	margin-bottom: 0;
}

.menu ul li {
	display: inline-block;
	position: relative;
	padding: 0 15px;
}

.menu ul li.parent > a {
	padding-left: 32px;
}

.menu ul li a i {
    font-size: 12px;
    display: inline-block;
    position: absolute;
    top: 22px;
    left: 12px;
    opacity: 0.7;
    text-shadow: none;
}



/****** SUBMENU *****/

.menu ul li ul {
    display: none;
    background-color: #fff;
    position: absolute;
    padding: 0;
    text-align: right;
    opacity: 0;
    transition: opacity .35s ease 0s;
    padding: 3px;
    border: 1px solid #eee;
    right: auto;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
}

.menu ul li ul li {
	width: 100%;
	border: 0;
}

.menu ul li ul li.active, .menu ul li ul li:hover {
	border: 0;
}

.menu ul li ul li a:hover, .menu.over ul li ul li a:hover {
	border: 0;
	color: #fff;
	background-color: #82bb28;
}

.menu ul li ul a {
    color: #333;
    border: 0;
    white-space: nowrap;
    text-transform: none;
    text-shadow: none;
    font-size: 14px;
    letter-spacing: 0;
    text-align: center;
    padding: 8px 30px;
    height: auto;
    line-height: 1.7em;
}

.menu ul li:hover ul {
	display: block;
	opacity: 1;
	transition: opacity .35s ease 0s;
	
}

.navbar-toggle {
	margin-right: 0;
}

.navbar-toggle .icon-bar {
	background: #fff;
}

.menu .logo a {
    padding: 0;
    height: auto;
    display: inline-block;
}

.menu .logo a:hover {
    border: 0;
}

.hamburger {
    position: relative;
    float: right;
    padding: 9px 10px;
    margin-top: 8px;
    margin-right: 0;
    margin-bottom: 8px;
    background-color: transparent;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 4px;
    display: none;
}

.hamburger:focus {
	outline: none;
}

.hamburger-box {
    width: 22px;
    height: 20px;
}

.hamburger-inner, .hamburger-inner:after, .hamburger-inner:before {
    position: absolute;
    width: 22px;
    height: 1px;
    border-radius: 2px;
    background-color: #fff;
}

.hamburger:hover {
	opacity: 1;
}


.hamburger-inner:before {
    top: -6px;
}

.hamburger-inner:after {
    bottom: -6px;
}



a:focus {
	text-decoration: none;
	outline: none;
}

a:hover, a:focus {
	color: #333;
}

p, ol, ul {
	line-height: 1.8em;
	margin-bottom: 1em;
}

h1 {
	font-weight: 200;
	font-size: 2.4em;
	margin-bottom: 1.1em;
}

h2 {
    font-weight: 500;
    margin-top: 3em;
    margin-bottom: 2em;
    font-size: 1.4em;
}

h3 {
	font-size: 1.1em;
	font-weight: 400;
	margin-top: 2em;
	margin-bottom: 1.5em;
}


