html{
	overflow: auto;
}

html.active{
	overflow: hidden;
}

.app-header{
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    overflow: visible;
    width: 100%;
    height: 70px;
	background-color: #ffffff;
	-moz-box-shadow: 10px 5px 10px 5px rgba(0,0,0,0.1);
	-webkit-box-shadow: 10px 5px 10px 5px rgba(0,0,0,0.1);
	box-shadow: 10px 5px 10px 5px rgba(0,0,0,0.1);
}

.app-header .logo {
    position: absolute;
    left:10px;
    right:0;
	top: 5px;
	width: 160px;
	height: 60px;
	background-image: url(../images/logo.png);
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	z-index: 100;
}

.app-header .logo:hover{
    cursor: pointer;
}

.menu-wrapper{
	position: relative;
	height:100%;
}

#menu-btn{
    position: absolute;
	top: 20px;
	right: 20px;
    cursor: pointer;
	background-color: #808080;
	padding: 10px;
	border-radius: 4px;
	-webkit-border-radius: 4px;
	
	-moz-transition: width .5s, height .5s, top .5s, bottom .5s, left .5s, right .5s, margin .5s, padding .5s, opacity .5s, transform .5s, background-color .5s, max-height .5s;
	-o-transition: width .5s, height .5s, top .5s, bottom .5s, left .5s, right .5s, margin .5s, padding .5s, opacity .5s, transform .5s, background-color .5s, max-height .5s;
	-webkit-transition: width .5s, height .5s, top .5s, bottom .5s, left .5s, right .5s, margin .5s, padding .5s, opacity .5s, transform .5s, background-color .5s, max-height .5s;
	transition: width .5s, height .5s, top .5s, bottom .5s, left .5s, right .5s, margin .5s, padding .5s, opacity .5s, transform .5s, background-color .5s, max-height .5s;
}

#menu-btn .icon-bar {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 1px;
	background-color: #fff;
}

#menu-btn .icon-bar+.icon-bar{
    margin-top: 4px;
}

.app-header.open-menu #menu-btn{
	background-color: #e96656;
}

#menu{
	position: relative;
	top: 70px;
	display:none;
	overflow: auto;
}

.app-header.open-menu #menu{
	width: 100%;
	left: 0%;
}

#menu .item {
	position: relative;
	border-bottom: solid 1px #ccc;
	background-color: #ffffff;
	background-color: rgba(255,255,255,0.9);
	overflow:hidden;
}

#menu .item  .holder{
	display: inline-block;
	width:100%;
	color: #999;
	-moz-transition: width .5s, height .5s, top .5s, bottom .5s, left .5s, right .5s, margin .5s, padding .5s, opacity .5s, transform .5s, background-color .5s, max-height .5s;
	-o-transition: width .5s, height .5s, top .5s, bottom .5s, left .5s, right .5s, margin .5s, padding .5s, opacity .5s, transform .5s, background-color .5s, max-height .5s;
	-webkit-transition: width .5s, height .5s, top .5s, bottom .5s, left .5s, right .5s, margin .5s, padding .5s, opacity .5s, transform .5s, background-color .5s, max-height .5s;
	transition: width .5s, height .5s, top .5s, bottom .5s, left .5s, right .5s, margin .5s, padding .5s, opacity .5s, transform .5s, background-color .5s, max-height .5s;
}

#menu .item  .holder:hover{
	color: #bcbcbc;
}

#menu .item.selected:before
{
	position: absolute;
	content: " ";
	display: block;
	width: 6px;
	height: 100%;
	background-color: #FD5761;
	clear: both; /* if you need to break floating elements */
}

#menu .item.services.selected:before
{
	background-color: #e96656;
}

#menu .item.workflow.selected:before
{
	background-color: #34d293;
}

#menu .item.about.selected:before
{
	background-color: #3ab0e2;
}

#menu .item.contact.selected:before
{
	background-color: #e7ac44;
}

#menu .item .holder:hover{
	background: rgba(204, 204, 204,0.9);
	color: #fff;
	cursor: pointer;
}

#menu .item .holder{
	position: relative;
	display: block;
	font-size: 16px;
	padding: 14px;
}

/* Content more width > 900px*/
@media (min-width: 900px) {
	html{
		overflow: auto !important;
	}

	.app-header{
		overflow: hidden;
	}
	
	#menu-btn{
		display: none;
	}
	
	#menu {
		position: absolute;
		background: none;
		right: 0;
		height: 100%;
		
		display:block !important;
		filter: alpha(opacity=100) !important;
		-moz-opacity:1 !important;
		-khtml-opacity: 1 !important;
		opacity: 1 !important;
		top: 0px;
		
		-moz-transition: none;
		-o-transition: none;
		-webkit-transition: none;
		transition: none;
		overflow: hidden;
	}
	
	#menu .item{
		border-bottom: 0px;
	}
	
	#menu .item.selected:before
	{
		content: none;
	}
	
	#menu .item.selected:after
	{
		content: " ";
		display: block;
		height: 6px;
		margin-top: -6px;
		background:  #E61824;
		clear: both; /* if you need to break floating elements */
	}
	
	#menu .item.services.selected:after
	{
		background-color: #e96656;
	}

	#menu .item.workflow.selected:after
	{
		background-color: #34d293;
	}

	#menu .item.about.selected:after
	{
		background-color: #3ab0e2;
	}

	#menu .item.contact.selected:after
	{
		background-color: #e7ac44;
	}

	#menu .item .holder{
		position: relative;
		display: block;
		font-size: 16px;
		padding: 25px 30px 0px 30px;
	}
	
	#menu .item, #menu .item .holder{
		display: inline-block;
		height: 100%;
	}
}