/*OVERLAY*/
.overlay, .app_box, .userMenu
{
	transition: all .35s cubic-bezier(0.175,0.885,0.320,1.275),opacity .25s linear;
	-ms-transition: all .35s cubic-bezier(0.175,0.885,0.320,1.275),opacity .25s linear;
	-moz-transition: all .35s cubic-bezier(0.175,0.885,0.320,1.275),opacity .25s linear;
	-webkit-transition: all .35s cubic-bezier(0.175,0.885,0.320,1.275),opacity .25s linear;
	-o-transition: all .35s cubic-bezier(0.175,0.885,0.320,1.275),opacity .25s linear;

}

.overlay
{
	position:absolute;
	background-color: black;
	opacity: 0;
	top:0;
	right:0;
	z-index: 2;
}
body.userMenu-is-open .overlay
{
	left:0;
	bottom:0;
	opacity: 0.4;
	cursor: pointer;
	overflow: hidden;
}

/*USER MENU*/
body
{
	overflow-x:hidden;
}
body.userMenu-is-open
{
	overflow: hidden;
}
body .app_box
{
	position: relative;
}
body.userMenu-is-open .app_box
{

overflow: hidden;
position: absolute;
top:0;
bottom: 0;
width: 100%;
transform: translate(-250px,0);
-ms-transform: translate(-250px,0);
-moz-transform: translate(-250px,0);
-webkit-transform: translate(-250px,0);
-o-transform: translate(-250px,0);	
}
body.userMenu-is-open .userMenu
{
	transform: translate(0px,0);
	-ms-transform: translate(0px,0);
	-moz-transform: translate(0px,0);
	-webkit-transform: translate(0px,0);
	-o-transform: translate(0px,0);						
}
.userMenu
{
	width: 300px;
	padding: 0px;
	padding-right: 30px;
	display: block;
	position: fixed;
	top: 0;
	bottom: 0;
	right: -30px;
	z-index: 3;
	overflow: auto;

	background-color: #FFF;

	transform: translate(300px,0);
	-ms-transform: translate(300px,0);
	-moz-transform: translate(300px,0);
	-webkit-transform: translate(300px,0);
	-o-transform: translate(300px,0);
}
.userMenu .separator
{
	display: block;
	width: 80%;
	margin: auto;
	margin-top: 20px;
	margin-bottom: 20px;
	height: 1px;
	border-bottom: 1px solid rgba(0,0,0,0.1);
}
.userMenu .displayName
{
	font-size: 1.4em;
	font-weight: 400;
	text-align: center;
	vertical-align: middle;
	color:#666;
	padding-top: 20px;
}
.userMenu .containerTuiles
{
	/*margin-top: px;*/
}
.userMenu .containerTuiles .tuile
{
	width: 50%;
	display: inline-block;
	/* right: -1px; */
	margin: 0;
	padding: 0;
	
	font-size: inherit;
	margin-right: -4px;

	padding-top: 20px;
	padding-bottom: 20px;

	color:#666;

	transition: all .1s ease-in-out;
	-ms-transition: all .1s ease-in-out;
	-moz-transition: all .1s ease-in-out;
	-webkit-transition: all .1s ease-in-out;
	-o-transition: all .1s ease-in-out;
}
.userMenu .containerTuiles .tuile span.icon
{
	font-size: 1.5em;
	text-align: center;
	display: block;
}
.userMenu .containerTuiles .tuile span.label
{
	font-size: 1em;
	text-align: center;
	display: block;
	margin-top: 10px;
	font-weight: 600;
}
.userMenu .containerTuiles .tuile:hover
{
	background-color: #999;
}
.userMenu .containerTuiles a.logout .tuile:hover {
	background-color: #c0392b;
}
.userMenu .containerTuiles a.profil .tuile:hover {
	background-color: #2c3e50;
}
.userMenu .containerTuiles a.planning .tuile:hover {
	background-color: #2980b9;
}
.userMenu .containerTuiles a.stayawake .tuile:hover {
	background-color: rgb(133, 197, 218);
}

.userMenu .containerTuiles .tuile:hover span.label, .userMenu .containerTuiles .tuile:hover span.icon
{
	color:white;
}