#users-container{
	position: fixed;
	width: 320px;
	height:100%;
	right: -320px;
	top:0;
	z-index: 1000;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
	background: rgba(0, 0, 0, 0.8);
}
body{
	-webkit-transition: right 0.5s ease;
	-moz-transition: right 0.5s ease;
	-ms-transition: right 0.5s ease;
	-o-transition: right 0.5s ease;
	transition: right 0.5s ease;
	position: relative;
}
body.sidebar-open{
	right: 320px;
}
body.sidebar-mini{
	right: 0;
}

body.sidebar-open #users-container{
	right: 0;
}
body.sidebar-mini #users-container{
	right: -290px !important;
	width: 320px !important;
}
#users-container iframe{
	width:100%;
	height:100%;
	border:none;
}

body.sidebar-full {
	overflow: hidden;
}
body.sidebar-full,
body.sidebar-full .navbar-container{
	right: 0;
}
body.sidebar-full.sidebar-mini {
	overflow: auto;
}
body.sidebar-show-close #users-container .close{
	position: fixed;
	top: 33px;
	right: 33px;
	width: 70px;
	height: 70px;
	background: url("/view/img/ico_close.png") center center no-repeat;
	cursor: pointer;
	display: block;
}
body.sidebar-full.sidebar-mini #users-container .close{
	display: none;
}
body.sidebar-full #users-container{
	width: 100%;
	height:100%;
	right: 0;
}
.login-form-container{
	position: absolute;
	width: 80%;
	padding: 20px 8%;
	margin: 0 2%;
	border: 2px solid #ff0000;
	left: 0;
	right: 0;
	margin: auto;
	background:  white;
}
.login-form-container input[type="submit"]{
	margin-top:20px
}