/* Basic
=================================================================== */

* {
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
}

body {
	color: var(--app-color-dark);
	border: none;
    font-size: 14px;
}

#overlay {
	background: white url('../../images/app/ajax_loader.gif') no-repeat 50% 50%;
	position: fixed;
	z-index: 99999;
	width: 100%;
	height: 100%;
	top: 0px;
	left: 0px;
}

#main-container > .row {
    display: -webkit-flex;
    flex-wrap: wrap;
}

#main-content {
	padding: 0;
}

@media (min-width: 992px) {
    .container {
        width: 840px;
    }
}

@media (min-width: 1200px) {
    .container {
        width: 1020px;
    }
}

@media (min-width: 1440px) {
    .container {
        width: 1215px;
    }
}

pre {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    border-radius: 14px;
    background: var(--common-primary-brand-beige-40, #F9F5F1);
    height: 48px;
    padding: 10px 16px;
    font-size: 14px;
    flex: 1 0 auto;
    border: none;
}

/* Basic
=================================================================== */

.main-menu-admin {
	padding-left: 0px;
	margin-left: 0px;
}

.top-submenu {
    margin-left: 0;
}

hr {
  	margin: 20px 0;
  	border: 0;
  	border-top: 1px solid #e0dfdf;
  	border-bottom: 1px solid #fefefe;
}

div.alert ul {
    margin-bottom: 0px;
}

.green {
	color: #78CD51;
}

.red {
	color: #FA603D;
}

.blue {
	color: #67C2EF;
}

.yellow {
	color: #FABB3D;
}

.well {
	border: 1px solid #ddd;
	background-color: #f6f6f6;
	-webkit-box-shadow: none;
       -moz-box-shadow: none;
          	box-shadow: none;
	-webkit-border-radius: 2px;
       -moz-border-radius: 2px;
	        border-radius: 2px;
}

.breadcrumb {
	display: none;
	margin: 0px;
	border: 0px;
	color: #aaa;
	background: transparent;
	-webkit-box-shadow: none;
	   -moz-box-shadow: none;
	   		box-shadow: none;
  	-webkit-border-radius: 2px;
       -moz-border-radius: 2px;
	        border-radius: 2px;
	padding: 8px 0;
}

.breadcrumb span {
	text-shadow: 1px 1px 0px #fff;
}

.breadcrumb a {
	color: #aaa;
	text-shadow: 0px 1px 1px #fff;
}

.breadcrumb a:hover {
	color: #646464;
	text-shadow: 0px 1px 1px #fff;
	text-decoration: none;
}

.box-small {
	text-align: center;
	position: relative;
	display: block;
	margin: 20px;

}

.box-small-link {
	border: 1px solid #ddd;
	margin-bottom: -1px;
  	padding: 30px 0px;
	font-size: 26px;
  	background-color: #fafafa;
  	background-image: -moz-linear-gradient(top, #fafafa, #efefef);
  	background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fafafa), to(#efefef));
  	background-image: -webkit-linear-gradient(top, #fafafa, #efefef);
  	background-image: -o-linear-gradient(top, #fafafa, #efefef);
  	background-image: linear-gradient(to bottom, #fafafa, #efefef);
  	filter: progid:dximagetransform.microsoft.gradient(startColorstr='#fafafa', endColorstr='#efefef', GradientType=0);
  	-webkit-box-shadow: none;
       -moz-box-shadow: none;
          	box-shadow: none;
  	-webkit-border-radius: 2px;
       -moz-border-radius: 2px;
          	border-radius: 2px;
	display:block;
	color: #646464;
	text-shadow: 0px 1px 1px #fff;
}

.box-small-link:hover {
	border: 1px solid #3c4049;
	margin-bottom: -1px;
  	padding: 30px 0px;
  	color: #fff;
  	background-color: #4e525d;
  	background-image: -moz-linear-gradient(top, #4e525d, #3c4049);
  	background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#4e525d), to(#3c4049));
  	background-image: -webkit-linear-gradient(top, #4e525d, #3c4049);
  	background-image: -o-linear-gradient(top, #4e525d, #3c4049);
  	background-image: linear-gradient(to bottom, #4e525d, #3c4049);
  	filter: progid:dximagetransform.microsoft.gradient(startColorstr='#4e525d', endColorstr='#3c4049', GradientType=0);
	text-shadow: 0px 1px 1px #000;
	text-decoration: none;
}

.box-small-title {
	width: 100%;
	margin: 10px auto;
	font-size: 15px;
	color: #aaa;
	text-shadow: 0px 1px 1px #fff;
}



.box {
	margin: 20px 0px;
    color: var(--app-color-dark);
    background: var(--app-card-bg);
    border-radius: var(--app-card-radius);
    display: block;
    padding: var(--app-card-padding);
    border: var(--app-card-border);
    text-decoration: none;
    transition: all .3s ease;
}
.box:hover {
    box-shadow: var(--app-card-shadow);
}
.box-header {
    width: 100%;
    padding: 0;
    display: flex;
    justify-content: space-between;
    gap: 12px;
}

.box-header h2,
.box-header h3 {
    font-size: 18px;
    font-weight: 700;
}

.box-header h2 i,
.box-header h3 i {
	margin: 1px 3px 0px 5px;
	opacity: .8;
}

.box-header .break{
	border-left: 1px solid #fcfcfc;
	border-right: 1px solid #ddd;
	margin: -12px 10px -10px 10px;
	padding: 12px 0px 10px 0px;

}

.box-header .box-icon {
	float:right;
	margin-top: 1px;
}

.box-header .box-icon i {
	-webkit-transition: all 0.1s ease-in-out;
	-moz-transition: all 0.1s ease-in-out;
	-o-transition: all 0.1s ease-in-out;
	-ms-transition: all 0.1s ease-in-out;
	transition: all 0.1s ease-in-out;
	opacity: .7;
	color: white;
}

.box-header .box-icon i:hover {
	opacity: 1;
	color: white;
	text-decoration: none;
}

.box-header .box-icon a {
	margin: 0px 2px;
}
.box-header .box-icon a:hover {
	text-decoration: none;
}


.box-content {
  	margin-top: 0px;
    padding-top: 20px;
}





/* Box Header Nav */
.box-header-nav {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    border-bottom: var(--app-layout-border);
    padding: 0 0 16px;
}
.box-header-nav > h2 {
    font-size: 22px;
    font-weight: 700;
}
.box-header-nav > h2 > i {
	margin: 0px 6px 0px 5px;
	opacity: 1;
}
.box-header-nav .break {
	margin: 0px;
	padding: 0;
	display:block;
	width:0px;
	height:41px;
	float:left;
}

.box-header-nav .box-icon {
	padding:10px;
    margin-left: auto;
}
.box-header-nav .box-icon a {
	margin: 5px;
	opacity: .6;
}
.box-header-nav .box-icon a:hover {
	opacity: 1;
	text-decoration: none;
}

.box-header-nav > .page-nav {
	display: table;
}
.box-header-nav > .page-nav > ul.navigation {
	position: relative;
	left: 0;
	display: table-row;
	margin: 0 10px 0 0;
}
.box-header-nav > .page-nav > ul.navigation > li {
	display: table-cell;
	float:left;
	padding: 0;
	margin: 0;
}
.box-header-nav > .page-nav > ul.navigation > li > a {
	text-decoration: none;
	font-size: 13px;
	opacity: .8;
	display: block;
	padding: 11px 20px 10px 20px;
}

.box-header-nav > .page-nav > ul.navigation > li > a > i {
	margin-left:-5px;
	margin-right: 5px
}

.box-header-nav > .page-nav > ul.navigation > li.active > a,
.page-nav > ul.navigation > li:hover > a {
	opacity: 1;
	text-decoration: none;
}

.box-header-nav > .page-nav ul.navigation li:first-child {
	border-left:none;
}




.box-header-nav > .page-nav ul.navigation li a.dropdown-toggle .caret {
	border-top-color: white;
	border-bottom-color: white;
	opacity: .6;
}


.box-header-nav > .page-nav ul.navigation li.dropdown ul.dropdown-menu {
	position: absolute;
	top: 100%;
	left: 0;
	z-index: 1000;
	display: none;
	float: left;
	min-width: 160px;
	padding: 5px 0;
	margin: 2px 0 0;
	list-style: none;
	background-color: #ffffff;
	border: 1px solid #ccc;
	border: 1px solid rgba(0, 0, 0, 0.2);
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	border-radius: 6px;
	-webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
	-moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
	box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
	-webkit-background-clip: padding-box;
	-moz-background-clip: padding;
	background-clip: padding-box;
}

.box-header-nav > .page-nav ul.navigation li.dropdown.open > ul.dropdown-menu {
	display: block;
}
.box-header-nav > .page-nav ul.navigation li.dropdown.open > ul.dropdown-menu > li {
	border: none;
}
.box-header-nav > .page-nav ul.navigation li.dropdown ul.dropdown-menu:before {
	position: absolute;
	top: -7px;
	left: 9px;
	display: inline-block;
	border-right: 7px solid transparent;
	border-bottom: 7px solid #ccc;
	border-left: 7px solid transparent;
	border-bottom-color: rgba(0, 0, 0, 0.2);
	content: '';
}
.box-header-nav > .page-nav ul.navigation li.dropdown ul.dropdown-menu:after {
	position: absolute;
	top: -6px;
	left: 10px;
	display: inline-block;
	border-right: 6px solid transparent;
	border-bottom: 6px solid #ffffff;
	border-left: 6px solid transparent;
	content: '';
}

.box-header-nav > .page-nav ul.navigation li.dropdown ul.dropdown-menu > li > a {
	display: block;
	padding: 3px 20px;
	clear: both;
	font-weight: normal;
	line-height: 20px;
	color: #333333;
	white-space: nowrap;
}
.box-header-nav > .page-nav ul.navigation li.dropdown ul.dropdown-menu > li > a:hover {
	color: white;
}







.box-header-nav.blue {
	background-color: #428bca;
	background-image: -moz-linear-gradient(top, #318aca, #26628e);
	background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#318aca), to(#26628e));
	background-image: -webkit-linear-gradient(top, #318aca, #26628e);
	background-image: -o-linear-gradient(top, #318aca, #26628e);
  	background-image: linear-gradient(to bottom, #318aca, #26628e);
	filter: progid:dximagetransform.microsoft.gradient(startColorstr='#318aca', endColorstr='#26628e', GradientType=0);
}
.box-header-nav.blue > h2 {
	color: white;
	text-shadow: 0px 1px 0px #333;
}
.box-header-nav.blue > h2 > i {
	color:white;
	text-shadow: 0px 1px 0px #333;
}
.box-header-nav.blue .break {
	border-left: 1px solid #1267a6;
	border-right: 1px solid #88b7d5;
}
.box-header-nav.blue > .page-nav > ul.navigation > li > a {
	border-right:none;
	border-left:none;
	color: white;
	text-shadow: none;
	position: relative;
	opacity: .8;
}
.box-header-nav.blue > .page-nav > ul.navigation > li.active > a,
.box-header-nav.blue > .page-nav > ul.navigation > li:hover > a {
	background-color: #7cb8e2;
	background-image: -moz-linear-gradient(top, #7cb8e2, #4b95ca);
	background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#7cb8e2), to(#4b95ca));
	background-image: -webkit-linear-gradient(top, #7cb8e2, #4b95ca);
	background-image: -o-linear-gradient(top, #7cb8e2, #4b95ca);
  	background-image: linear-gradient(to bottom, #7cb8e2, #4b95ca);
	filter: progid:dximagetransform.microsoft.gradient(startColorstr='#7cb8e2', endColorstr='#4b95ca', GradientType=0);
	opacity: 1;
}
.box-header-nav.blue > .page-nav ul.navigation li a.dropdown-toggle .caret {
	border-top-color: white;
	border-bottom-color: white;
}

/* Header Section
=================================================================== */

#highlight-navbar {
	border: none;
	border-radius: 0px;
	margin-bottom: 0px;
}

#highlight-navbar.inactive ul.nav > li,
#highlight-navbar.inactive a.brand {
	opacity: 0.3;
}
#highlight-navbar.inactive ul.nav > li.active {
	opacity: 1;
	color: white;
}
#highlight-navbar .row .col-md-2 {
    background: #394B5E;
}

#highlight-navbar .chosen-container {
	margin-top: 30px
}

.navbar .col-md-10 {
	margin-left: 0 !important;
	float: right;
}
.navbar .nav > li {
    float: left;
}
.navbar .nav > li > a {
    text-shadow: none;
    font-size: 12px;
}
.navbar .nav>li>a:focus,
.navbar .nav>li>a:hover {
    text-decoration: none;
    background-color: transparent;
}

.navbar-inner {
    height: 68px;
    padding: 12px 24px;
    border: none;
    border-radius: 0px;
    *zoom: 1;
    position: relative;
    z-index: 10;
    box-shadow: none;
}


.navbar-inner a {
    color: #646464;
}

.navbar-inner a i {
    opacity: .8;
}

.navbar-inner a:hover i {
    opacity: 1;
}

.navbar-inner .dropdown-menu li {
    text-shadow: none;
}

.navbar .nav > li > a {
    padding: 10px;
}

.navbar .nav > li > a:focus,
.navbar .nav > li > a:hover {
    color: black;
}

.brand img {
	margin: -12px 0px -5px 0px;
}

a.brand span {
	color: #fff;
	text-shadow: 1px 1px 2px #0a0c0e;
}

.header-nav .nav {
	margin: 0px;
	display: block;
	height: 40px;
}
.header-nav .btn {
  	display: flex;
    align-items: center;
    gap: 12px;
	margin: 0;
  	font-size: 14px;
  	line-height: 20px;
  	text-align: center;
  	vertical-align: middle;
  	cursor: pointer;
  	background: transparent;
  	border: none;
    padding: 7px 12px !important;
    width: 78px;
    height: 44px;
    border-radius: 16px;
    position: relative;
    background: var(--Background-Secondary);
    box-shadow: var(--app-box-shadow-beige);
}
.header-nav .btn .img-circle {
    display: inline-block;
    width: 30px;
    min-width: 30px;
    height: 30px;
    background-position: center;
    background-size: cover;
    border-radius: 50%;
}
.header-nav .btn i {
    opacity: 1;
    font-size: 14px;
}

.header-nav .btn .caret {
	border-top-color: #999 !important;
	border-bottom-color: #999 !important;
}

.header-nav .btn:hover .caret {
	border-top-color: #000 !important;
	border-bottom-color: #000 !important;
}


#under-header {
	margin: -20px 0px 20px 0px;
	border-top: px solid #fcfcfc;
}

/* Navigation Section
=================================================================== */

.current-user {
	position: relative;
	color: #fff;
	height: 80px;
	padding: 10px;
}
.current-user .name {
	color: #F0F5FA;
	font-size: 15px;
	padding: 10px 0;
	display: block;
	text-decoration: none;
	position: relative;
	text-shadow: rgba(0,0,0,0.25) 0 -1px 0;
}
.current-user .name img {
	position: relative;
	display: block;
	margin: 0 auto;
    max-height: 45px;
    max-width: 80%;
}
#sidebar-default {
	background: var(--Background-Secondary);
	z-index: 999;
    margin-bottom: -99999px;
    padding-bottom: 99999px;
    padding-left: 0;
    padding-right: 0;
}
#sidebar-default li.header {
	color: var(--app-color-dark);
	font-weight: bold;
	font-size: 18px;
	margin-bottom: 0;
	margin-top: 0;
	padding: 30px 0px 10px 15px;
	border: none;
}
#sidebar-default ul li a {
	margin: 0;
	color: var(--app-color-dark);
	font-weight: 400;
	font-size: 16px;
	padding: 12px 14px;
	background: transparent;
	text-decoration: none;
	display: inline-block;
	width: 100%;
	-webkit-transition: background 0.13s linear;
	-moz-transition: background 0.13s linear;
	-ms-transition: background 0.13s linear;
	-o-transition: background 0.13s linear;
	transition: background 0.13s linear;
  	border: none !important;
  	background: transparent;
  	border-radius: var(--app-dropdown-item-radius);
  	-webkit-font-smoothing: antialiased;
}
#sidebar-default ul li a:hover {
    background: var(--app-dropdown-hover);
    text-decoration: none;
    color: var(--common-primary-brand-cobalt-blue-100, #385FEB);
}

@media (max-width: 1240px) {
    #sidebar-default li.header {
        font-size: 13px;
    }
    #sidebar-default ul li a {
        font-size: 14px;
    }
}

#sidebar-default ul li a i {
	font-size: 18px;
	margin-right: 9px;
	min-width: 20px;
	text-align: center;
	position: relative;
	top: 1px;
    font-weight: 300;
}
#sidebar-default ul.nav > li > a.active {
    color: var(--common-primary-brand-cobalt-blue-100, #385FEB);
    font-weight: 700;
}
#sidebar-default ul.nav li ul li a.submenu.active {
    background: #677991;
    box-shadow: none;
}
#sidebar-default.sidebar-affiliation {
    margin-bottom: 0;
    padding-bottom: 0;
}
#sidebar-default .current-user .menu {
	position: absolute;
	left: 35px;
	top: 60px;
	background: #fff;
	width: 165px;
	z-index: 999;
	border-radius: 3px;
	padding: 8px 0;
	list-style-type: none;
	box-shadow: 1px 3px 1px rgba(0,0,0,0.25);
	opacity: 0;
	-moz-transform: scale(0);
	-o-transform: scale(0);
	-ms-transform: scale(0);
	-webkit-transform: scale(0);
	transform: scale(0);
	-webkit-transition: all 300ms cubic-bezier(0.34, 1.61, 0.7, 1);
	-moz-transition: all 300ms cubic-bezier(0.34, 1.61, 0.7, 1);
	-ms-transition: all 300ms cubic-bezier(0.34, 1.61, 0.7, 1);
	-o-transition: all 300ms cubic-bezier(0.34, 1.61, 0.7, 1);
	transition: all 300ms cubic-bezier(0.34, 1.61, 0.7, 1);
	-webkit-transform-origin: 50% 0;
	-moz-transform-origin: 50% 0;
	-o-transform-origin: 50% 0;
	-ms-transform-origin: 50% 0;
	transform-origin: 50% 0;
}


.sidebar-nav > ul {
	margin-top: 1px;
	border: none;
	padding-bottom: 50px;
}
.nav-stacked>li+li {
	margin-top: 0px;
}
.sidebar-nav > ul > li > a > .menu-icon-right {
    height: 20px;
    width: 20px;
    display: block;
    float: right;
    margin-top: -2px;
}
.sidebar-nav > ul > li > a > .menu-icon-right > i {
	font-size: 10px !important;
}



/* Dropdown Section */
.sidebar-nav > ul > li > ul {
	position: relative;
	margin: 0;
	margin-bottom: 20px;
	padding-bottom: 15px;
	padding-left: 20px;
	border-bottom: 1px solid #000;
	box-shadow: 0 1px 0px rgba(255,255,255,0.09);
	-webkit-animation-duration: 0.4s;
	-moz-animation-duration: 0.4s;
	-o-animation-duration: 0.4s;
	animation-duration: 0.4s;
	list-style: none;
	display: none;
}

.sidebar-nav > ul > li > ul > li {
	padding: 0px;
}
.sidebar-nav > ul > li > ul > li > a {
    color: #646464;
    display: block;
    padding-left: 53px;
}
.sidebar-nav > ul > li > ul > li > a > i {
	margin-top: 1px;
	margin-right: 5px;
}
.sidebar-nav > ul > li > ul > li:hover > a {
	text-decoration: none;
	color:white;
}



.metrics {
	margin-top:30px;
	font-family:"Helvetica Neue", Arial;
	background-color:#394B5E;
	border-radius:5px
}
.metrics.nobg {
    background:none;
    margin-top:0px;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
}
.metrics .metric{
	float:left;
	width:16.66%;
	padding:23px 0;
	text-align:center;
	border-right:1px solid #526075;
}
.metrics .metric.four{
    width: 25%
}
.metrics.nobg .metric {
    text-align:left;
    padding: 10px;
}
.metrics.nobg .metric .btn {
    display: block;
}
.metrics .metric:last-child{
    border-right: none;
}

@media (max-width: 767px){
	.metrics .metric{
		width:50%
	}
}

.metrics .metric .field{
	color:#f4f4f4;
	margin-top:10px;
	display:inline-block;
	font-size:14px
}
@media (max-width: 991px){
	.metrics .metric .field{
		font-size:14px
	}
}

.metrics .metric .data{
	display:block;
	color:#fff;
	font-size:27px;
	text-shadow:1px 1px #000
}

@media (max-width: 991px){
	.metrics .metric .data{
		font-size:21px
	}
}

/* Main menu search */
.nav #admin-search {
    margin-right: 24px;
    padding: 25px 15px;
    width: 100%;
}

.nav #admin-search input {
    background-color: #FFF;
    border: 1px solid #DDDDE1;
    border-radius: 4px;
    box-shadow: none;
}

/* Dropdown Menu */

.navbar .nav li.dropdown.open > .dropdown-toggle,
.navbar .nav li.dropdown.active > .dropdown-toggle,
.navbar .nav li.dropdown.open.active > .dropdown-toggle {
  	color: black;
  	background-color: white;
  	outline: 0;
}

.dropdown-menu .divider {
  	*width: 100%;
  	height: 1px;
  	margin: 0px 1px;
  	*margin: -5px 0 5px;
  	overflow: hidden;
  	background-color: #e5e5e5;
}

.dropdown-menu a {
  	display: block;
  	padding: 5px 10px !important;
  	clear: both;
  	font-weight: normal;
  	line-height: 16px;
  	color: #333333;
  	white-space: normal !important;
}

.dropdown-menu li {
	border: none;
}

.dropdown-menu li:first-child {
	border-top: 0px !important;
}

.dropdown-menu li:last-child {
	border-bottom: 0px !important;
}

.dropdown-menu li > a:hover,
.dropdown-menu li > a:focus,
.dropdown-submenu:hover > a {
  	color: #ffffff;
  	text-decoration: none;
  	background-color: #0088cc;
  	background-color: #0081c2;
  	background-image: -moz-linear-gradient(top, #0088cc, #0077b3);
  	background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0077b3));
  	background-image: -webkit-linear-gradient(top, #0088cc, #0077b3);
  	background-image: -o-linear-gradient(top, #0088cc, #0077b3);
  	background-image: linear-gradient(to bottom, #0088cc, #0077b3);
  	background-repeat: repeat-x;
  	filter: progid:dximagetransform.microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0077b3', GradientType=0);
}

.dropdown-menu .active > a,
.dropdown-menu .active > a:hover {
  	color: #ffffff;
  	text-decoration: none;
  	background-color: #0088cc;
  	background-color: #0081c2;
  	background-image: linear-gradient(to bottom, #0088cc, #0077b3);
  	background-image: -moz-linear-gradient(top, #0088cc, #0077b3);
  	background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0077b3));
  	background-image: -webkit-linear-gradient(top, #0088cc, #0077b3);
  	background-image: -o-linear-gradient(top, #0088cc, #0077b3);
  	background-repeat: repeat-x;
  	outline: 0 !important;
  	filter: progid:dximagetransform.microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0077b3', GradientType=0);
}

.dropdown-menu .disabled > a,
.dropdown-menu .disabled > a:hover {
  	color: #999999;
}

.dropdown-menu .disabled > a:hover {
  	text-decoration: none;
  	cursor: default;
  	background-color: transparent;
}

.dropdown-menu-title {
	background: #f6f6f6;
	color: #646464;
	padding: 5px 10px;
	display: block;
	font-size: 12px;
	-webkit-border-radius: 6px 6px 0px 0px;
       -moz-border-radius: 6px 6px 0px 0px;
          	border-radius: 6px 6px 0px 0px;
	border-bottom: 1px solid #DDD
}
.dropdown-menu-footer {
	background: #DDD;
	padding: 3px;
	display: block;
	border-top: 1px solid #AAA;
	font-size: 12px;
	display: block;
	height: 34px;
	-webkit-border-radius: 0px 0px 4px 4px;
       -moz-border-radius:  0px 0px 4px 4px;
          	border-radius:  0px 0px 4px 4px;

}
.dropdown-menu-footer a{
	float:left;
	clear: none;
	border-right:1px solid #CCC;
	padding-right: 10px;
	color: #000;
	opacity: .6
}
.dropdown-menu-footer a:last-child{
	border-right: none;
	padding-right: 0px;
}
.dropdown-menu-footer a:hover{
	opacity: 1;
	text-decoration: none
}

ul.notifications li,
ul.tasks li,
ul.messages li{
	width: 260px;
}

ul.notifications li .avatar img,
ul.tasks li .avatar img,
ul.messages li .avatar img {
	float: left;
	height: 40px;
	width: 40px;
	margin-right: 10px;
  	-webkit-border-radius: 4px;
       -moz-border-radius: 4px;
          	border-radius: 4px;
}


ul.messages li .header {
	display: block;
}

ul.messages li .header .from {
	font-size: 12px;
	font-weight: bold;
}

ul.notifications li .time,
ul.tasks li .header .percent,
ul.messages li .header .time {
	font-size: 11px;
	font-weight: bold;
	font-style: italic;
	position: absolute;
	right: 5px;
}
ul.tasks li .title,
ul.notifications li .message {
	font-size: 12px;
}

ul.notifications li.warning a {
	color: #ff4a48;
}
ul.notifications li.warning a:hover {
	color: white;
}

ul.notifications li.error a {
	color: #FA5833;
}
ul.notifications li.error a:hover {
	color: white;
}

ul.messages li .message {
	font-size: 11px;
}



/* Notifications & Labels
=================================================================== */

.notification {
	position: absolute;
	top: -12px;
	right: -12px;
	line-height: 16px;
	height: 30px;
	padding: 6px 10px;
	color: white !important;
	text-shadow: 0 1px hsla(0, 0%, 0%, 0.25);
	border-width: 1px;
	border-style: solid;
	border-radius: 10px;
  	-webkit-border-radius: 50em;
       -moz-border-radius: 50em;
          	border-radius: 50em;
	-webkit-box-shadow: 0 1px 1px hsla(0, 0%, 0%, 0.08), inset 0 1px hsla(0, 100%, 100%, 0.3);
	   -moz-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.08), inset 0 1px rgba(255, 255, 255, 0.3);
			box-shadow: 0 1px 1px hsla(0, 0%, 0%, 0.08), inset 0 1px hsla(0, 100%, 100%, 0.3);
}

.notification-small {
	padding: 2px 7px;
	color: white !important;
	text-shadow: 0 1px hsla(0, 0%, 0%, 0.25);
	border-width: 1px;
	border-style: solid;
  	-webkit-border-radius: 50em;
       -moz-border-radius: 50em;
          	border-radius: 50em;
	-webkit-box-shadow: 0 1px 1px hsla(0, 0%, 0%, 0.08), inset 0 1px hsla(0, 100%, 100%, 0.3);
	   -moz-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.08), inset 0 1px rgba(255, 255, 255, 0.3);
			box-shadow: 0 1px 1px hsla(0, 0%, 0%, 0.08), inset 0 1px hsla(0, 100%, 100%, 0.3);
}

.notification-small,
.notification {
	border-color: #2FABE9;
	background-color: #67C2EF;
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, hsl(200, 80%, 82%)), color-stop(100%, hsl(200, 81%, 67%)));
	background-image: -webkit-linear-gradient(top, hsl(200, 80%, 82%), hsl(200, 81%, 67%));
	background-image: -moz-linear-gradient(top, hsl(200, 80%, 82%), hsl(200, 81%, 67%));
	background-image: -ms-linear-gradient(top, hsl(200, 80%, 82%), hsl(200, 81%, 67%));
	background-image: -o-linear-gradient(top, hsl(200, 80%, 82%), hsl(200, 81%, 67%));
	background-image: linear-gradient(top, hsl(200, 80%, 82%), hsl(200, 81%, 67%));
}

.notification-small.green,
.notification.green {
	border-color: 	#5AAD34;
	background-color: 	#78CD51;
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, hsl(101, 54%, 71%)), color-stop(100%, hsl(101, 55%, 56%)));
	background-image: -webkit-linear-gradient(top, hsl(101, 54%, 71%), hsl(101, 55%, 56%));
	background-image: -moz-linear-gradient(top, hsl(101, 54%, 71%), hsl(101, 55%, 56%));
	background-image: -ms-linear-gradient(top, hsl(101, 54%, 71%), hsl(101, 55%, 56%));
	background-image: -o-linear-gradient(top, hsl(101, 54%, 71%), hsl(101, 55%, 56%));
	background-image: linear-gradient(top, 	hsl(101, 54%, 71%), hsl(101, 55%, 56%));
}

.notification-small.yellow,
.notification.yellow {
	border-color: #F4A506;
	background-color: #FABB3D;
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, hsl(40, 95%, 76%)), color-stop(100%, hsl(40, 95%, 61%)));
	background-image: -webkit-linear-gradient(top, hsl(40, 95%, 76%), hsl(40, 95%, 61%));
	background-image: -moz-linear-gradient(top, hsl(40, 95%, 76%), hsl(40, 95%, 61%));
	background-image: -ms-linear-gradient(top, hsl(40, 95%, 76%), hsl(40, 95%, 61%));
	background-image: -o-linear-gradient(top, hsl(40, 95%, 76%), hsl(40, 95%, 61%));
	background-image: linear-gradient(top, hsl(40, 95%, 76%), hsl(40, 95%, 61%));
}

.notification-small.red,
.notification.red {
	border-color: #FA5833;
	background-color: #FA603D;
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, hsl(11, 95%, 76%)), color-stop(100%, hsl(11, 95%, 61%)));
	background-image: -webkit-linear-gradient(top, hsl(11, 95%, 76%), hsl(11, 95%, 61%));
	background-image: -moz-linear-gradient(top, hsl(11, 95%, 76%), hsl(11, 95%, 61%));
	background-image: -ms-linear-gradient(top, hsl(11, 95%, 76%), hsl(11, 95%, 61%));
	background-image: -o-linear-gradient(top, hsl(11, 95%, 76%), hsl(11, 95%, 61%));
	background-image: linear-gradient(top, hsl(11, 95%, 76%), hsl(11, 95%, 61%));
}


/* Quick Buttons
=================================================================== */

.quick-button {
	border: 1px solid var(--Border-Secondary, #F3EEE8);
	padding: 30px 0px 10px 0px;
	font-size: 14px;
    border-radius: 16px;
	display:block;
	text-align: center;
	cursor: pointer;
	position: relative;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
    text-decoration: none;
    background: #fff;
}

.quick-button:hover,
.quick-button.active:hover {
	text-decoration: none;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.quick-button:hover .notification {
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}


.quick-button.active {
	text-decoration: none;
	border-color: #a5a5a5;
	color: #ffffff;
	background-color: var(--app-color-primary);
	text-shadow: none;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.quick-button i {
	font-size: 32px;
}

/* Quick Buttons Small
=================================================================== */

.quick-button-small {
	border: 1px solid #ddd;
  	padding: 15px 0px 0px 0px;
	font-size: 10px;
  	background-color: #fafafa;
  	background-image: -moz-linear-gradient(top, #fafafa, #efefef);
  	background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fafafa), to(#efefef));
  	background-image: -webkit-linear-gradient(top, #fafafa, #efefef);
  	background-image: -o-linear-gradient(top, #fafafa, #efefef);
  	background-image: linear-gradient(to bottom, #fafafa, #efefef);
  	filter: progid:dximagetransform.microsoft.gradient(startColorstr='#fafafa', endColorstr='#efefef', GradientType=0);
  	-webkit-box-shadow: 0 1px 0px rgba(255, 255, 255, .8);
	   -moz-box-shadow: 0 1px 0px rgba(255, 255, 255, .8);
			box-shadow: 0 1px 0px rgba(255, 255, 255, .8);
  	-webkit-border-radius: 2px;
       -moz-border-radius: 2px;
          	border-radius: 2px;
	display:block;
	color: #646464;
	text-shadow: 0 1px 0px rgba(255, 255, 255, .6);
	text-align: center;
	cursor: pointer;
	position: relative;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.quick-button-small:hover {
	text-decoration: none;
	border-color: #a5a5a5;
	color: #444444;
	text-shadow: 0 1px 0px rgba(255, 255, 255, 1);
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
  	-webkit-box-shadow: 0px 0px 3px rgba(0,0,0,.25);
       -moz-box-shadow: 0px 0px 3px rgba(0,0,0,.25);
          	box-shadow: 0px 0px 3px rgba(0,0,0,.25);
}
.quick-button-small:hover .notification {
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	-webkit-box-shadow: 0px 0px 3px rgba(0,0,0,.6);
       -moz-box-shadow: 0px 0px 3px rgba(0,0,0,.6);
          	box-shadow: 0px 0px 3px rgba(0,0,0,.6);
}

.quick-button-small i {
	font-size: 20px;
}

/* Dashboard Lists
=================================================================== */
.sortable-dashboard {
	position: relative;
	margin: 0;
	padding: 0;
}
.sortable-dashboard .col-md-4,
.sortable-dashboard .col-md-8,
.sortable-dashboard .col-md-12 {
	margin: 0px;
	padding: 0px;
}
.sortable-dashboard .box { margin: 10px 10px 10px 0px !important; }


ul.dashboard-list li{
	padding: 5px 0;
	list-style:none;
  	border-top: 1px solid #fff;
	border-bottom: 1px solid #ebebeb;
	font-size: 12px;
}

ul.dashboard-list li i{
	opacity: .7;
}

ul.dashboard-list li:first-child {
	border-top: none;
	border-bottom: 1px solid #EBEBEB;
}

ul.dashboard-list li:last-child {
	border-bottom: none;
}

ul.dashboard-list a:hover{
	text-decoration:none;
}

ul.dashboard-list{
	margin:0;
}

ul.dashboard-list li a span {
	display: inline-block;
	font-size: 18px;
	font-weight: bold;
	margin-right: 10px;
	text-align: right;
	width: 50px;
	zoom: 1;
}

ul.dashboard-list li .avatar {
	height: 50px;
	width: 50px;
	padding: 1px;
	float: left;
	margin-top: 3px;
	margin-right: 15px;
	border: 1px solid #EBEBEB;
}

ul.dashboard-list li .avatar img{
	height: 40px;
	width: 40px;
	padding: 1px;
	float: left;
	margin-top: 3px;
	margin-right: 15px;
	border: 1px solid #EBEBEB;
}

/* Support tickets
=================================================================== */

ul.tickets {
	margin:0;
}

ul.tickets li {
	list-style: none;
	padding: 5px 0;
  	border-top: 1px solid #fff;
	border-bottom: 1px solid #ebebeb;
	font-size: 12px;
}

ul.tickets li:first-child {
	border-top: none;
	border-bottom: 1px solid #ebebeb;
}

ul.tickets li:last-child {
	border-bottom: none;
}


ul.tickets li.ticket .header {
	width: 100%;
	display: inline-block;
	font-weight: bold;
	font-size: 13px;
}

ul.tickets li.ticket .header .title {
	float: left;
	text-align: left;
}

ul.tickets li.ticket .header .number {
	float: right;
	text-align: right;
}

ul.tickets li.ticket .avatar img {
	height: 36px;
	width: 36px;
	padding: 1px;
	float: left;
	margin-top: 1px;
	margin-right: 10px;
	border: 1px solid #EBEBEB;
}

ul.tickets li.ticket .content{
	display: inline-block;
	width: 100%;
}

ul.tickets li.ticket .content .name,
ul.tickets li.ticket .content .status {
	float: left;
	text-align: left;
	width: 50%;
}

ul.tickets li.ticket .content .priority,
ul.tickets li.ticket .content .label,
ul.tickets li.ticket .content .date {
	float: right;
	text-align: right;
}

/* Chat
=================================================================== */

ul.chat {
	margin:0;
}

ul.chat li {
	list-style: none;
	padding: 5px 0;
	margin: 10px auto;
	font-size: 12px;
}


ul.chat li img.avatar {
	height: 50px;
	width: 50px;
	padding: 1px;
	border: 1px solid #EBEBEB;
}

ul.chat li.left img.avatar {
	float: left;
	margin-right: 10px;
}

ul.chat li.right img.avatar {
	float: right;
	margin-left: 10px;
}

ul.chat li .message {
	display: block;
	border: 1px solid #ddd;
	padding: 5px;
	position: relative;
	-webkit-border-radius: 4px;
   	   -moz-border-radius: 4px;
      		border-radius: 4px;
	-webkit-box-shadow: 0px 1px 1px rgba(0,0,0,.05), inset 0 -1px 1px rgba(0,0,0,.05);
	   -moz-box-shadow: 0px 1px 1px rgba(0,0,0,.05), inset 0 -1px 1px rgba(0,0,0,.05);
		   	box-shadow: 0px 1px 1px rgba(0,0,0,.05), inset 0 -1px 1px rgba(0,0,0,.05);
}

ul.chat li.left .message {
	text-align: left;
	margin-left: 65px;
	background: #fff
}

ul.chat li.left .message .arrow {
	height: 10px;
	width: 10px;
	display: block;
	position: absolute;
	top: 5px;
	left: -10px;
	background: url('../../images/app/chat-left.png') no-repeat 0px 0px;
}

ul.chat li.right .message .arrow {
	height: 10px;
	width: 10px;
	display: block;
	position: absolute;
	top: 5px;
	right: -10px;
	background: url('../../images/app/chat-right.png') no-repeat 0px 0px;
}

ul.chat li.right .message {
	text-align: right;
	margin-right: 65px;
	background: #f6f6f6;
}

ul.chat li .message .text {
	display: block;
}

.chat-form {
	border-top: 1px solid #ddd;
	background: #eee;
	padding: 10px;
	margin: 20px -10px -10px -10px;
}

.chat-form textarea {
	width: 100%;
	padding: 0.5em;
	-webkit-box-sizing: border-box; /* Safari, Chrome et al  */
	   -moz-box-sizing: border-box; /* Firefox */
	        box-sizing: border-box; /* Opera/IE 8+ */
	height: 80px;
	outline: 0px !important;
	font-size: 12px;
}


/* Forms
=================================================================== */

.form-actions {
  	padding: 19px 20px 20px;
  	margin: 20px -10px -10px -10px;
  	background-color: #f5f5f5;
  	border-top: 1px solid #e5e5e5;
  	*zoom: 1;
}

.form-actions:before,
.form-actions:after {
  	display: table;
  	line-height: 0;
  	content: "";
}

.form-actions:after {
 	clear: both;
}



/* Tabs
=================================================================== */

.tab-menu.nav-tabs {
  	*zoom: 1;
	margin-top: -52px;
}

.tab-menu.nav-tabs > li {
  	float: right;
}

.tab-menu.nav-tabs {
  	border-bottom: none;
}

.tab-menu.nav-tabs > li {
  	margin-bottom: -1px;
}

.tab-menu.nav-tabs > li > a {
  	padding-top: 10px;
  	padding-bottom: 10px;
  	line-height: 20px;
	margin-left: -3px;
  	border-left: 1px solid #ddd;
	border-right: 1px solid #ddd;
  	-webkit-border-radius: 0px;
       -moz-border-radius: 0px;
            border-radius: 0px;
}

.tab-menu.nav-tabs > li > a:hover {
	border-color: #ddd;
}

.tab-menu.nav-tabs > .active > a  {
  	color: #555555;
  	cursor: default;
  	background-color: #fcfcfc;
  	border-left: 1px solid #ddd;
}

.tab-menu.nav-tabs > .active > a:hover {
	background-color: #fafafa;
}

/* Forms
=================================================================== */

.add-on,
textarea,
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"],
input[type="file"],
.uneditable-input {
  	border-color: #dddddd !important;
}


.form .input-small,
.form-horizontal .input-small {
    width: 90px;
}
.form-inline .form-group .input-small {
    width: 90px;
}
.form .input-large,
.form-horizontal .input-large {
    width: 210px;
}
.form .input-xlarge,
.form-horizontal .input-xlarge {
    width: 270px;
}
.form .input-xxlarge,
.form-horizontal .input-xxlarge {
    width: 530px;
}

.form .input-xs {
    height: 22px;
    padding: 2px 5px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 3px;
}



/* Login Box
=================================================================== */

.login-box {
	width: 400px;
	position:absolute;
	top:50%;
	left:50%;
	margin-left: -200px;
	margin-top: -180px;

	background: rgb(245,245,245); /* Old browsers */
	/* IE9 SVG, needs conditional override of 'filter' to 'none' */
	background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2Y1ZjVmNSIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjE5JSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9Ijc3JSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNmNWY1ZjUiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
	background: -moz-linear-gradient(top,  rgba(245,245,245,1) 0%, rgba(255,255,255,1) 19%, rgba(255,255,255,1) 77%, rgba(245,245,245,1) 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(245,245,245,1)), color-stop(19%,rgba(255,255,255,1)), color-stop(77%,rgba(255,255,255,1)), color-stop(100%,rgba(245,245,245,1))); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  rgba(245,245,245,1) 0%,rgba(255,255,255,1) 19%,rgba(255,255,255,1) 77%,rgba(245,245,245,1) 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  rgba(245,245,245,1) 0%,rgba(255,255,255,1) 19%,rgba(255,255,255,1) 77%,rgba(245,245,245,1) 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  rgba(245,245,245,1) 0%,rgba(255,255,255,1) 19%,rgba(255,255,255,1) 77%,rgba(245,245,245,1) 100%); /* IE10+ */
	background: linear-gradient(to bottom,  rgba(245,245,245,1) 0%,rgba(255,255,255,1) 19%,rgba(255,255,255,1) 77%,rgba(245,245,245,1) 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f5f5f5', endColorstr='#f5f5f5',GradientType=0 ); /* IE6-8 */
	color: #000;
	overflow: hidden;
	-webkit-border-radius: 2px;
       -moz-border-radius: 2px;
	        border-radius: 2px;
	-webkit-box-shadow: 0px 0px 0px 5px rgba(0,0,0,0.15);
       -moz-box-shadow: 0px 0px 0px 5px rgba(0,0,0,0.15);
         	box-shadow: 0px 0px 0px 5px rgba(0,0,0,0.15);
}

.login-box .icons {
	text-align: right;
	margin: 20px 15px;

}

.login-box .icons i {
	text-align: right;
	opacity: .2;
	margin: 0px 5px;
}

.login-box .icons i:hover {
	opacity: .8;
}

.login-box h2 {
	color: #646464;
	margin-left: 30px;
	font-family: monaco;
	font-weight: normal;
}

.login-box h3 {
	color: #646464;
	margin-left: 30px;
	font-family: monaco;
	font-weight: normal;
}

.login-box p {
	margin: 10px 30px;
	font-weight: normal;
}

.login-box .input-prepend {
	background: #fff;
	width: 100%;
	text-align: center;
	padding: 15px 0px;
	border-left: 3px solid #fff;
}

.login-box .input-prepend-focus {
	background: #fcfcfc;
	width: 100%;
	text-align: center;
	padding: 15px 0px;
	border-left: 3px solid #646464;
}

.login-box .add-on {
	border: 1px solid #eee !important;
	background: #eee;
	margin-left: -10px;
	padding: 10px;
}

.login-box .add-on i{
	opacity: .6;
}

.login-box input[type="text"],
.login-box input[type="email"],
.login-box input[type="password"] {
	border: 1px solid #eee !important;
	border-left:1px solid #eee !important;
	color: #333;
	-webkit-box-shadow: none;
       -moz-box-shadow: none;
          	box-shadow: none;
	height: 42px !important;
}

.login-box .remember {
	margin-top: 20px;
	margin-left: 20px;
	float: left;
}

.login-box .button-login {
	margin-top: 20px;
	margin-right: 20px;
	float: right;
}

/* UI - Uniform
=================================================================== */

div.checkbox label {
    padding-left: 0;
}
div.checker {
    margin-top: -4px;
    margin-left: 0 !important;
}
div.checker.disabled span {
    background: #e6e6e6;
    cursor: not-allowed;
}
div.checker input {
    margin: 0;
}
table div.checker span.checked {
    background: #fdb61a;
}

div.radio {
    margin-top: 1px !important;
    margin-bottom: 5px;
}
div.radio span {
    background: white;
    border: 1px solid #d4d4d4;
    border-radius: 100%;
    width: 19px;
    height: 19px;
}
div.radio input {
    margin: 0;
}
div.radio span.checked {
    background: #13bd3b;
}
div.radio.disabled span {
    background: #e6e6e6;
    cursor: not-allowed;
}

div.uploader{
	-webkit-border-radius:14px;
	   -moz-border-radius:14px;
			border-radius:14px;
}

/* UI - Sliders & Progress
=================================================================== */

.ui-slider-handle {
	display: inline-block;
	background: #fcfcfc; /* Old browsers */
	background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZjZmNmYyIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNmN2Y3ZjciIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
	background: -moz-linear-gradient(top,  #fcfcfc 0%, #f7f7f7 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#fcfcfc), color-stop(100%,#f7f7f7)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #fcfcfc 0%,#f7f7f7 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #fcfcfc 0%,#f7f7f7 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #fcfcfc 0%,#f7f7f7 100%); /* IE10+ */
	background: linear-gradient(to bottom,  #fcfcfc 0%,#f7f7f7 100%); /* W3C */
	border: 1px solid #CBCBCB;
	-webkit-border-radius: 50em;
       -moz-border-radius: 50em;
	        border-radius: 50em;
	height: 16px;
	width: 16px;

	margin-right: 12px;
	outline: none;
}

.slider {
	border: 1px solid #C9C9C9;
	height: 6px;
	-webkit-border-radius: 4px;
       -moz-border-radius: 4px;
	        border-radius: 4px;
	-webkit-box-shadow: 0 1px 0 #ffffff;
	   -moz-box-shadow: 0 1px 0 #ffffff;
		    box-shadow: 0 1px 0 #ffffff;
	position: relative;
	margin: 8px 0;
	background: #fcfcfc; /* Old browsers */
	background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZjZmNmYyIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNmMmYyZjIiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
	background: -moz-linear-gradient(top,  #fcfcfc 0%, #f2f2f2 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#fcfcfc), color-stop(100%,#f2f2f2)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #fcfcfc 0%,#f2f2f2 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #fcfcfc 0%,#f2f2f2 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #fcfcfc 0%,#f2f2f2 100%); /* IE10+ */
	background: linear-gradient(to bottom,  #fcfcfc 0%,#f2f2f2 100%); /* W3C */
}

.ui-slider-range {
	-webkit-border-radius: 4px;
       -moz-border-radius: 4px;
	        border-radius: 4px;
	height: 100% ;
	position: absolute;
	margin-top: -1px;
	margin-left: -1px;
	-webkit-box-shadow: 0 1px 0 #ffffff !important;
	   -moz-box-shadow: 0 1px 0 #ffffff !important;
			box-shadow: 0 1px 0 #FFFFFF !important;
}

.sliderVertical .ui-slider-range {
	width: 100%;
	top: auto;
	bottom: auto;
}

.ui-slider-range-max {
	right: -1px;
}

.ui-slider-range-min {
	left: -1px;
}

.sliderVertical .ui-slider-range-max {
	top: -px;
}

.sliderVertical .ui-slider-range-min {
	bottom: 0;
}

.sliderBlue .ui-slider-range, .progressBlue .ui-progressbar-value {
	background: rgb(103,194,239); /* Old browsers */
	/* IE9 SVG, needs conditional override of 'filter' to 'none' */
	background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzY3YzJlZiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMyZmFiZTkiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
	background: -moz-linear-gradient(top,  rgba(103,194,239,1) 0%, rgba(47,171,233,1) 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(103,194,239,1)), color-stop(100%,rgba(47,171,233,1))); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  rgba(103,194,239,1) 0%,rgba(47,171,233,1) 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  rgba(103,194,239,1) 0%,rgba(47,171,233,1) 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  rgba(103,194,239,1) 0%,rgba(47,171,233,1) 100%); /* IE10+ */
	background: linear-gradient(to bottom,  rgba(103,194,239,1) 0%,rgba(47,171,233,1) 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#67c2ef', endColorstr='#2fabe9',GradientType=0 ); /* IE6-8 */
	border: 3px solid #0098e4;
}

.sliderGreen .ui-slider-range, .progressGreen .ui-progressbar-value {
	background: rgb(189,234,116); /* Old browsers */
	/* IE9 SVG, needs conditional override of 'filter' to 'none' */
	background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2JkZWE3NCIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNiNmUzNzAiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
	background: -moz-linear-gradient(top,  rgba(189,234,116,1) 0%, rgba(182,227,112,1) 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(189,234,116,1)), color-stop(100%,rgba(182,227,112,1))); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  rgba(189,234,116,1) 0%,rgba(182,227,112,1) 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  rgba(189,234,116,1) 0%,rgba(182,227,112,1) 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  rgba(189,234,116,1) 0%,rgba(182,227,112,1) 100%); /* IE10+ */
	background: linear-gradient(to bottom,  rgba(189,234,116,1) 0%,rgba(182,227,112,1) 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#bdea74', endColorstr='#b6e370',GradientType=0 ); /* IE6-8 */
	border: 3px solid #96bb5c;
}

.sliderDarkGreen .ui-slider-range, .progressDarkGreen .ui-progressbar-value {
	background: rgb(120,205,81); /* Old browsers */
	/* IE9 SVG, needs conditional override of 'filter' to 'none' */
	background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzc4Y2Q1MSIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiM1YWFkMzQiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
	background: -moz-linear-gradient(top, rgba(120,205,81,1) 0%, rgba(90,173,52,1) 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(120,205,81,1)), color-stop(100%,rgba(90,173,52,1))); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, rgba(120,205,81,1) 0%,rgba(90,173,52,1) 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, rgba(120,205,81,1) 0%,rgba(90,173,52,1) 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top, rgba(120,205,81,1) 0%,rgba(90,173,52,1) 100%); /* IE10+ */
	background: linear-gradient(to bottom, rgba(120,205,81,1) 0%,rgba(90,173,52,1) 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#78cd51', endColorstr='#5aad34',GradientType=0 ); /* IE6-8 */
	border: 3px solid #3f8b1c;
}

.sliderPink .ui-slider-range, .progressPink .ui-progressbar-value {
	background: rgb(232,76,138); /* Old browsers */
	/* IE9 SVG, needs conditional override of 'filter' to 'none' */
	background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2U4NGM4YSIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNlMjE2NjgiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
	background: -moz-linear-gradient(top,  rgba(232,76,138,1) 0%, rgba(226,22,104,1) 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(232,76,138,1)), color-stop(100%,rgba(226,22,104,1))); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  rgba(232,76,138,1) 0%,rgba(226,22,104,1) 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  rgba(232,76,138,1) 0%,rgba(226,22,104,1) 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  rgba(232,76,138,1) 0%,rgba(226,22,104,1) 100%); /* IE10+ */
	background: linear-gradient(to bottom,  rgba(232,76,138,1) 0%,rgba(226,22,104,1) 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e84c8a', endColorstr='#e21668',GradientType=0 ); /* IE6-8 */
	border: 3px solid #9e0c47;
}

.sliderOrange .ui-slider-range, .progressOrange .ui-progressbar-value {
	background: rgb(250,96,61); /* Old browsers */
	/* IE9 SVG, needs conditional override of 'filter' to 'none' */
	background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZhNjAzZCIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNmYTU4MzMiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
	background: -moz-linear-gradient(top,  rgba(250,96,61,1) 0%, rgba(250,88,51,1) 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(250,96,61,1)), color-stop(100%,rgba(250,88,51,1))); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  rgba(250,96,61,1) 0%,rgba(250,88,51,1) 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  rgba(250,96,61,1) 0%,rgba(250,88,51,1) 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  rgba(250,96,61,1) 0%,rgba(250,88,51,1) 100%); /* IE10+ */
	background: linear-gradient(to bottom,  rgba(250,96,61,1) 0%,rgba(250,88,51,1) 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fa603d', endColorstr='#fa5833',GradientType=0 ); /* IE6-8 */
	border: 3px solid #c13a1a;
}

.sliderLightOrange .ui-slider-range, .progressLightOrange .ui-progressbar-value {
	background: rgb(250,187,61); /* Old browsers */
	/* IE9 SVG, needs conditional override of 'filter' to 'none' */
	background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZhYmIzZCIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNmNGE1MDYiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
	background: -moz-linear-gradient(top,  rgba(250,187,61,1) 0%, rgba(244,165,6,1) 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(250,187,61,1)), color-stop(100%,rgba(244,165,6,1))); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  rgba(250,187,61,1) 0%,rgba(244,165,6,1) 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  rgba(250,187,61,1) 0%,rgba(244,165,6,1) 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  rgba(250,187,61,1) 0%,rgba(244,165,6,1) 100%); /* IE10+ */
	background: linear-gradient(to bottom,  rgba(250,187,61,1) 0%,rgba(244,165,6,1) 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fabb3d', endColorstr='#f4a506',GradientType=0 ); /* IE6-8 */
	border: 3px solid #d79103;
}

.sliderRed .ui-slider-range, .progressRed .ui-progressbar-value {
	background: rgb(255,84,84); /* Old browsers */
	/* IE9 SVG, needs conditional override of 'filter' to 'none' */
	background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZmNTQ1NCIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNmZjAwMDAiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
	background: -moz-linear-gradient(top,  rgba(255,84,84,1) 0%, rgba(255,0,0,1) 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(255,84,84,1)), color-stop(100%,rgba(255,0,0,1))); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  rgba(255,84,84,1) 0%,rgba(255,0,0,1) 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  rgba(255,84,84,1) 0%,rgba(255,0,0,1) 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  rgba(255,84,84,1) 0%,rgba(255,0,0,1) 100%); /* IE10+ */
	background: linear-gradient(to bottom,  rgba(255,84,84,1) 0%,rgba(255,0,0,1) 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff5454', endColorstr='#ff0000',GradientType=0 ); /* IE6-8 */
	border: 3px solid #be0000;
}

.sliderYellow .ui-slider-range, .progressYellow .ui-progressbar-value {
	background: rgb(234,232,116); /* Old browsers */
	/* IE9 SVG, needs conditional override of 'filter' to 'none' */
	background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2VhZTg3NCIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNlM2UyNzAiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
	background: -moz-linear-gradient(top,  rgba(234,232,116,1) 0%, rgba(227,226,112,1) 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(234,232,116,1)), color-stop(100%,rgba(227,226,112,1))); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  rgba(234,232,116,1) 0%,rgba(227,226,112,1) 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  rgba(234,232,116,1) 0%,rgba(227,226,112,1) 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  rgba(234,232,116,1) 0%,rgba(227,226,112,1) 100%); /* IE10+ */
	background: linear-gradient(to bottom,  rgba(234,232,116,1) 0%,rgba(227,226,112,1) 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#eae874', endColorstr='#e3e270',GradientType=0 ); /* IE6-8 */
	border: 3px solid #bbb95c;
}


.sliderVertical {
	float: left;
    height: 100px;
    margin-right: 40px;
    width: 5px;
}

/* ToDo List
=================================================================== */
.todo ul{
	list-style: none;
	padding: 0px;
	margin: 0px;
	position: relative
}

.todo ul li{
	margin-left: 0px !important;
	padding: 5px;
	border-top: 1px solid #fff;
	border-bottom: 1px solid #f6f6f6;
	font-size: 12px;
}

.todo-actions{
	position: absolute;
	right: 0px;
}

.todo .label {
	position: absolute;
	right: 50px;
}
.todo-actions a:hover {
	text-decoration: none
}

.todo-actions i {
	opacity: .5;
	margin: -2px 0px;
}
.todo-actions i.encours {
	color:#F4A506
}
.todo-actions i:hover {
	opacity: .8;
}

.todo ul li:first-child{
	border-top: 0px;
}

.todo ul li:last-child{
	border-bottom: 0px;
}

/* Skill Bars
=================================================================== */
.skill-bar h5 {
	margin-bottom:6px;
}

.skill-bar li {
	margin-bottom:12px;
	list-style: none;
	margin-left: -26px;
	padding-left: 0px;
}

.meter {
	height: 23px;
	position: relative;
	background: #f6f6f6;
}

.meter > span {
	display: block;
	height: 100%;
	position: relative;
	overflow: hidden;
}

.meter > span:after, .animate > span > span {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	overflow: hidden;
}

.meter > span:after,
.animate > span > spans li.current {
	background:#f16529;
}

/* Star Rating
=================================================================== */

.rating {
  unicode-bidi: bidi-override;
  direction: rtl;
  font-size: 30px;
}
.rating span.star,
.rating span.star {
  font-family: FontAwesome;
  font-weight: normal;
  font-style: normal;
  display: inline-block;
}
.rating span.star:hover,
.rating span.star:hover {
  cursor: pointer;
}
.rating span.star:before,
.rating span.star:before {
  content: "\f006";
  padding-right: 5px;
  color: #999999;
}
.rating span.star:hover:before,
.rating span.star:hover:before,
.rating span.star:hover ~ span.star:before,
.rating span.star:hover ~ span.star:before {
  content: "\f005";
  color: #e3cf7a;
}

/* Footer
=================================================================== */

footer {
	position: relative;
	min-height: 44px;
	background: url('../../images/app/dbg.jpg');
	border-top: 1px solid #0a0c0e;
	border-bottom: 2px solid #0a0c0e;
	text-shadow: 1px 1px 1px #0a0c0e;
	color: #A7A7A7;
	-webkit-border-radius: 0px;
	   -moz-border-radius: 0px;
	      	border-radius: 0px;
	*zoom: 1;
	-webkit-box-shadow: 0 -4px 0 rgba(0,0,0,.1);
	   -moz-box-shadow: 0 -4px 0 rgba(0,0,0,.1);
	        box-shadow: 0 -4px 0 rgba(0,0,0,.1);
    padding-top: 10px;
}

footer p {
	position: relative;
}

footer span.copyright {
    text-align:left;
    float:left;
    margin-left: 20px;
}

footer span.version {
    text-align:right;
    float:right;
    font-size:10px;
    margin-right: 20px;
}

/* Sparkline stats
=================================================================== */

.sparkLineStats {
	position: relative;
	margin-bottom: -4px;
}

.sparkLineStats ul {
	margin:0;
}

.sparkLineStats li {
	margin-bottom: 0;
	line-height: 32px;
	padding-top:3px;
	font-size: 12px
}

.sparkLineStats li .number {
	font-size: 17px;
	font-weight: 700;
	padding:0px 0px 0px 2px;
	color: #FA5833;
}

.sparkLineStats li span:first-child {
	margin-right: 5px;
}

.sparkLineStats h4 {
	position: relative;
	border-bottom: 1px solid #c4c4c4;
	padding-bottom: 0px;
	margin-bottom: 10px;
	line-height: 37px;
	-webkit-box-shadow: 0 1px 0px rgba(255, 255, 255, 1);
	   -moz-box-shadow:0 1px 0px rgba(255, 255, 255, 1);
			box-shadow: 0 1px 0px rgba(255, 255, 255, 1);
}


/* Circle stats
=================================================================== */

.circleStats {text-align: center; position: relative;}
.circleStatsItem {
	position: relative;
	background: rgba(255,255,255,0.7);
	-webkit-box-shadow: inset 0 0px 0 2px rgba(0,0,0,.2), 0 0px 0 4px rgba(0,0,0,.1);
	   -moz-box-shadow: inset 0 0px 0 2px rgba(0,0,0,.2), 0 0px 0 4px rgba(0,0,0,.1);
	        box-shadow: inset 0 0px 0 2px rgba(0,0,0,.2), 0 0px 0 4px rgba(0,0,0,.1);
	-webkit-border-radius: 50em;
	   -moz-border-radius: 50em;
	      	border-radius: 50em;
	width:120px;
	height: 120px;
	margin: 10px auto;
}


.circleStatsItem i {
	font-size: 30px;
	position: absolute;
	top:30%;
	left:0%;
	margin-top: 0px;
	width: 100%;
	text-align: center
}

.circleStatsItem.red, .circleStatsItem.red i {color:#FA5833; }
.circleStatsItem.orange, .circleStatsItem.orange i {color:#f4a70c; }
.circleStatsItem.blue, .circleStatsItem.blue i {color:#2FABE9; }
.circleStatsItem.green, .circleStatsItem.green i {color:#b9e672; }
.circleStatsItem.yellow, .circleStatsItem.yellow i {color:#e7e572; }
.circleStatsItem.pink, .circleStatsItem.pink i {color:#e42b75; }

.circleStatsItem input {
	cursor: default;
	box-shadow: none;
	border: none;
	height: auto;
	position: absolute;
	top:20px;
	left: 120px;
	border-color: rgba(0, 0, 0, 0.8);
}

.circleStatsItem .plus {
	font-size: 16px;
	position: absolute;
	top:55%;
	margin-left: 30px;
	display: none;
}

.circleStatsItem .percent {
	font-size: 14px;
	position: absolute;
	top:57%;
	margin-left: 24px;
}


.circleStatsItem input:focus {
	outline: 0;
	outline: thin dotted 0;
  	-webkit-box-shadow: none;
       -moz-box-shadow: none;
         	box-shadow: none;
}


/* Notifications Center
=================================================================== */
#notifications-center {
	position: fixed;
	top: 0;
	right: 0;
	z-index: 8888;
	background: rgba(0,0,0,0.8);
	color: #fff;
	width: 300px;
	height: 100%;
	-webkit-box-shadow: -1px 0px 2px rgba(0,0,0,0.45);
       -moz-box-shadow: -1px 0px 2px rgba(0,0,0,0.45);
         	box-shadow: -1px 0px 2px rgba(0,0,0,0.45);
}

#notifications-center .item {
	border-top: 1px solid #444;
	border-bottom: 1px solid #000;
	overflow: hidden;
	height: 50px;
	padding: 10px;
}

#notifications-center .item img {
	width: 30px;
	height: 30px;
	margin: 10px;
}

/* Query Loader
=================================================================== */

.QOverlay {
	background-color: #000000;
	z-index: 9999;
}

.QLoader {
	background-color: #CCCCCC;
	height: 1px;
}

.QAmt {
	color:#333333;
	font-family:"Trebuchet MS",Arial,Helvetica,sans-serif;
	font-size:40px;
	font-weight:bold;
	line-height:50px;
	height:50px;
	width:100px;
	margin:-60px 0 0 -50px;
}

/* Glyphicons Red
=================================================================== */

.icon-red {
  background-image: url("../../images/glyphicons-halflings-red.png");
}




/* Timeline
=================================================================== */

.timeline {
	width: auto;
	display: block;
	margin: 20px auto;
	margin-bottom: 120px;
	background: url("../../images/app/timeline-bg.png") repeat-y center top;
}

.timeslot {
	display: inline-block;
	position: relative;
	width: 100%;
	margin: 5px 0px;
	height: 100%;
	min-height: 124px
}

.timeslot .task {
	position: absolute;
	width: 42%;
	padding-right: 18px;
	display: block;
	border: none;
}

.timeslot.alt .task {
	left: auto;
	right: -20px;
	padding-left: 18px;
}

.timeslot .task .conteneur {
	border: 2px solid #67C2EF;
	background: #EDF6FB;
	padding: 5px;
	display: block;
	font-size: 12px;
	line-height: 16px;
	-webkit-border-radius: 4px;
	   -moz-border-radius: 4px;
			border-radius: 4px;
	min-height: 150px;
}
.timeslot .task .conteneur .contenu {
	width:75%;
}
.timeslot .task .conteneur p.type{
	font-size: 11px;
	margin-bottom: 5px
}

.timeslot .task .conteneur p.details{
	font-size: 16px;
	padding-bottom: 10px;
	padding-top: 10px;
	line-height: 18px
}

.timeslot .task .conteneur p.remaining{
	font-size: 11px;
	margin-bottom: 0px
}
.timeslot .task .conteneur p.remaining_time{
	font-size: 14px;
}

.timeslot .task .participants {
	position: absolute;
	top: 5px;
	right: 20px;
	width:145px;
	height: 160px;
}

.timeslot .task .participants .box-small-title {
	font-size: 12px;
	margin-top: 0px;
	text-align: center
}

.timeslot .task .arrow {
	position: absolute;
	top: 6px;
	right: 0px;
	height: 20px;
	width: 20px;
	background: url("../../images/app/timeline-left-arrow.png") no-repeat;
}

.timeslot.alt .task .arrow {
	position: absolute;
	top: 6px;
	left: 0px;
	height: 20px;
	width: 20px;
	background: url("../../images/app/timeline-right-arrow.png") no-repeat;
}

.timeslot .icon {
	position: absolute;
	border: 2px solid #67C2EF;
	background: #3b3b41;
	-webkit-border-radius: 50em;
	   -moz-border-radius: 50em;
			border-radius: 50em;
	height: 30px;
	width: 30px;
	left: 50%;
	margin-left: -16px;
	color: #fff;
	font-size: 18px;
	line-height: 30px;
	text-align: center;
	text-shadow: none;
	z-index: 2;
}

.timeslot.alt .icon {

}

.timeslot .time {
	background: #f9f9f9;
	position: absolute;
	-webkit-border-radius: 4px;
	   -moz-border-radius: 4px;
			border-radius: 4px;
	top: 1px;
	left: auto;
	right: 50%;
	padding: 5px 40px 5px 10px;
}

.timeslot.alt .time {
	top: 1px;
	right:auto;
	left: 50%;
	padding: 5px 10px 5px 40px;
	z-index: 1;
	margin-top: 1px;
}


/* DASHBOARD MODULES */
.dashboard-modules .box {
	margin-left:0px !important;
	margin-right: 5px !important
}
@media (max-width: 979px) {
	.dashboard-modules .box {
		margin-left:0px !important;
		margin-right: 0px !important
	}

	#sidebar-default {
        margin-bottom: 0px !important;
        padding-bottom: 0px !important;
    }
    #content {
        margin-bottom: 0px !important;
        padding-bottom: 0px !important;
    }
    #main-container {
        overflow: visible !important;
    }

}
@media (min-width: 1200px) {
	.dashboard-modules .box {
		margin-left:0px !important;
		margin-right: 10px !important
	}
}
@media (max-width: 480px) {
	.dashboard-modules .box {
		margin-left:0px !important;
		margin-right: 0px !important
	}
}

#settings-menu {
    border-right: 1px solid #E8ECF1;
}
#settings-menu h3 {
    margin: 0;
    text-align: left;
    font-size: 15px;
    padding: 0px 30px;
    text-transform: uppercase;
}
#settings-menu .menu {
    list-style-type: none;
    padding: 0;
    margin: 0;
}


#settings-menu .menu li a {
    display: block;
    padding: 13px 0px;
    font-size: 15px;
    color: #555;
    text-decoration: none;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}
#settings-menu .menu li a.active,
#settings-menu .menu li a:hover {
    color: #6787DA;
}
#settings-menu .menu li a i {
    font-size: 20px;
    position: relative;
    top: 2px;
    width: 25px;
}


.dataTables_scrollHeadInner table {
	margin-bottom: 0px;
}
.table>thead>tr>th {
	border-bottom-width: 1px;
}
.dataTables_filter {
	text-align: right;
}
.dataTables_filter input {
    display: block;
    width: 100%;
    height: 34px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    -webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
}

@media(max-width: 979px) {
	#highlight-navbar {
		display: none;
	}
	button.navbar-toggle {
		color: white;
        display: block;
	}
    .navbar-header {
        float: none;
    }
	.current-user {
		height: auto;
		float: left;
	}
	.current-user .name {
		padding: 0;
	}
    .navbar-collapse.collapse.in {
        display: block !important;
    }
    .navbar-collapse.collapse {
        display: none !important;
    }
}

#stats-participants .highcharts-container {
    box-shadow: none;
}

.stats-container {
    border-radius: 1.25rem;
    background-color: #F3F6F9;
    padding: 2rem;
}
.stat {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    flex-direction: row;
}
.symbol-circle {
    position: relative;
    border-radius: 50%;
    background-color: #ffffff;
    color: #3F4254;
    width: 30px;
    height: 30px;
    margin-right: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    line-height: 0;
}
.stat-nb {
    font-weight: bold;
}
.stat-title {
    color: #B5B5C3;
}
.stat-right {
    display: flex;
    flex: 1 1 auto;
    justify-content: flex-end;
}

.highcharts-title {
    display: block;
}

.switch-left {
    display: inline-block;
    vertical-align: top;
    margin-bottom: 0px;
}
.switch-right {
    display: inline-block;
    margin-bottom: 0px;
    width: calc(100% - 75px);
}
.switch-right .switch-infos {
    margin-bottom: 10px;
}
.switch-right .switch-infos label {
    margin-bottom: 0px;
}
.switch-input {
    position: relative;
}

.ios-toggle {
    position: absolute;
    margin-left: -9999px;
    visibility: hidden;
}
.ios-toggle + label {
    display: block;
    position: relative;
    cursor: pointer;
    outline: none;
    user-select: none;
}

input.ios-toggle-round + label {
    padding: 0px;
    width: 60px;
    height: 30px;
    border-radius: 30px;
}
input.ios-toggle-round + label:before,
input.ios-toggle-round + label:after {
    display: block;
    position: absolute;
    top: 1px;
    left: 1px;
    bottom: 1px;
    content: "";
}
input.ios-toggle-round + label:before {
    right: 1px;
    background-color: #f3f3f3;
    border-radius: 30px;
    transition: background 0.4s;
    height: 30px;
}
input.ios-toggle-round + label:after {
    width: 26px;
    height: 26px;
    margin-top: 2px;
    margin-left: 2px;
    background-color: #b0b6be;
    border-radius: 100%;
    transition: margin 0.4s;
}
input.ios-toggle-round:checked + label:after {
    margin-left: 30px;
    background: #13bd3b;
}
input.ios-toggle-round.ios-toggle-white + label:before {
    background-color: white;
}
#ModalBuild input.ios-toggle-round.ios-toggle-white + label:before {
    background-color: #f3f3f3;
}

input.ios-toggle-round.ios-toggle-large + label {
    width: 120px;
    height: 60px;
    border-radius: 60px;
}

input.ios-toggle-round.ios-toggle-large + label:before {
    border-radius: 60px;
}
input.ios-toggle-round.ios-toggle-large + label:after {
    width: 58px;
}
input.ios-toggle-round.ios-toggle-large:checked + label:after {
    margin-left: 60px;
}


input.ios-toggle-round.ios-toggle + label,
input.ios-toggle-round.ios-toggle-mini + label {
    width: 48px;
    height: 22px;
    border-radius: 10px;
    margin-bottom: 0px;
    background: transparent;
}
input.ios-toggle-round.ios-toggle + label:before,
input.ios-toggle-round.ios-toggle-mini + label:before {
    border-radius: 10px;
    height: 20px;
}
input.ios-toggle-round.ios-toggle + label:after,
input.ios-toggle-round.ios-toggle-mini + label:after {
    width: 16px;
    height: 16px;
    margin-top: 2px;
    box-shadow: none;
    margin-left: 2px;
}

.section.announcement {
    padding: 10px;
    background: none;
}


/*******************/
/*** AFFILIATION ***/
/*******************/
.main-container-affiliation {
    display: flex;
}
