/* MAIN TOOLBAR */
.main-toolbar {
	position: absolute; top: 0; right: 0; left: 0;
	height: 50px;
	padding: 15px 20px;
	
	color: #5e7597;
	
	background-color: #FFF;

	z-index: 10;
}
.main-toolbar.blur {
	-webkit-filter: blur(4px);
	-moz-filter: blur(4px);
	-ms-filter: blur(4px);
	-o-filter: blur(4px);
	filter: blur(4px);
}
.main-toolbar .left {
	width: 280px;
	float: left;
	
	vertical-align: middle;
}
.main-toolbar .center {
	display: inline-block;
	margin-left: 30px;
	width: auto;
	float: left;
	
	font-size: 12px;
	text-align: left;
	vertical-align: middle;
}
.main-toolbar .right {
	width: auto;
	float: right;
	
	text-align: right;
	vertical-align: middle;
}
.main-toolbar .img {
	width: 40px; height: 40px;
	margin-right: 20px;
	
	border: none;
	
	float: left;
}
.main-toolbar .img img {
	width: 50px; height: 50px;

	float: left;
}
.main-toolbar .info {
	text-overflow: ellipsis;
	overflow: hidden;
	
	margin-left: 20px;
}
.main-toolbar .info .title {
	height: 50px;
	padding: 5px 0;

	font-family: 'helveticaneuecyrlight';
	font-size: 1.125em;
	font-weight: normal;
	line-height: 20px;
	text-transform: uppercase;
	text-overflow: ellipsis;
	white-space: normal;

	overflow: hidden;
}
.main-toolbar .info .description {
	height: 14px;
	
	font-size: 12px;
	line-height: 14px;
	text-overflow: ellipsis;	

	overflow: hidden;
}

.global-search {
	padding: 10px 15px;
	margin: 6px 0;
	
	font-size: 14px;
	min-width: 160px;
	
	border-color: #CCC;
	-webkit-border-radius: 30px;
	border-radius: 30px;
	
	-webkit-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	transition: all 0.5s ease;
}
.global-search:focus {
	width: 200px;
	border-color: #748eb4;
}


.btn-login {
	display: inline-block;
	padding: 10px 25px;
	margin: 5px 0;
	
	font-size: 14px;
	font-family: 'helveticaneuecyrmedium', sans-serif;
	text-transform: uppercase;
	
	border: solid 2px #748eb4;
	
	-webkit-border-radius: 20px;
	border-radius: 20px;
	
	color: #748eb4;
	background-color: #FFF;
	
	-webkit-transition: all 0.1s ease-out;
	-ms-transition: all 0.1s ease-out;
	transition: all 0.1s ease-out;
	
	cursor: pointer;
}
.btn-login:hover { 
	color: #FFF;

	background-color: #748eb4;
}
.language-select {
	display: inline-block;
	margin: 0 10px;
}
.language {
	margin: 5px;
	
	font-size: 0.875em;
}
.language.selected {
	color: #626262;
	
	border-bottom: solid 1px #424242;
}
.user-info {
	display: inline-block;
	margin: 7px 10px;
	max-width: 160px;
	
	color: #748eb4;
	line-height: 1.375em;
	font-size: 1em;
	font-family: 'helveticaneuecyrlight', sans-serif;
	font-weight: normal;
	vertical-align: middle;

	background-color: #FFF;
	
	cursor: pointer;
}
.user-info-name {
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}
.logout {
	-webkit-transition: all 0.1s ease-out;
	-ms-transition: all 0.1s ease-out;
	transition: all 0.1s ease-out;
}
.logout:hover {
	color: #5e7597;	
}
.user-avatar {
	display: inline-block;
	width: 50px; height: 50px;
	margin-right: 10px;
	
	vertical-align: middle;
	
	border-radius: 100%;
	
	overflow: hidden;
}
.user-avatar img {
	width: inherit; height: inherit;
}
/* MAIN TOOLBAR */


/* APPLICATION LIST */
.app-select {
	display: inline-block; *display: inline; zoom: 1;
	position: relative;
	padding: 10px;
	margin: 0 20px;
	width: 20px; height: 20px;

	color: #748eb4;
	font-size: 1.125em;
	text-align: left;
	
	-webkit-transition: all 0.1s ease-out;
	-ms-transition: all 0.1s ease-out;
	transition: all 0.1s ease-out;
	
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	
	cursor: pointer;
}
.app-select:hover {
	color: #102a52;
}
.application-list {
	position: absolute; top: 0px; right: -15px;
	height: auto; width: 200px;
	padding: 20px 15px;
	
	text-align: center;
	
	background-color: #3f444c;
	
	-webkit-transform: translateY(35px);
	transform: translateY(35px);
	
	-webkit-transition: 
		all 0.25s ease-out;
	-ms-transition: 
		all 0.25s ease-out;
	transition: 
		all 0.25s ease-out;
	
	opacity: 0;
	
	z-index: 9;
}
.application-list.active {
	-webkit-transform: translateY(45px);
	transform: translateY(45px);
	
	opacity: 1;
}
.application-list-underlay {
	position: fixed; top: 0; right: 0; bottom: 0; left: 0;
}
.application-arrow {
	position: absolute; top: 0px; right: 0px;
	height: 0px !important;
	
	color: #3f444c;
	font-size: 30px !important;
}
.application-arrow:after {
	position: absolute; right: 30px; bottom: -10px;
	font-family: 'FontAwesome';
	content: '\f0d8';
}
.application {
	display: inline-block;
	height: 70px; width: 80px;
	margin: 10px;
	float: left;

	color: #DDD;
	font-size: 0.875em;
	text-align: center;
	
	-webkit-transition: all 0.1s ease-out;
	-ms-transition: all 0.1s ease-out;
	transition: all 0.1s ease-out;
	
	cursor: pointer;
}
.application:hover {
	color: #FFF;
}
.application-icon {
	font-size: 3em !important;
}
.application-title {
	margin-top: 10px;
}
/* APPLICATION LIST */