@import url(plugins/form/icheck/skins/all.css);
@import url(plugins/form/switch/switch.css);
@import url(animation.css);
@import url(jquery-ui.css);
::-moz-selection {
  background-color: #ffcc33;
  color: white;
}


.modal-body .widget-im.notification {
  background-color: #FFF;
  padding: 0px;
}


/*
00 - modal
------------------------------------------------------------*/


/*!
 * Bootstrap Modal
 *
 * Copyright Jordan Schroter
 * Licensed under the Apache License v2.0
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Boostrap 3 patch for for bootstrap-modal. Include BEFORE bootstrap-modal.css!
 */

body.modal-open, 
.modal-open .navbar-fixed-top, 
.modal-open .navbar-fixed-bottom {
  margin-right: 0;
}

.modal {
  left: 50%;
  bottom: auto;
  right: auto;
  z-index: 1050;
  padding: 0;
  width: 500px;
  margin-left: -250px;
  background-color: #ffffff;
  border: 1px solid #999999;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  background-clip: padding-box;
}

.modal.container {
  max-width: none;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
}


/*!
 * Bootstrap Modal
 *
 * Copyright Jordan Schroter
 * Licensed under the Apache License v2.0
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 */
.modal-open {
	overflow: hidden;
}


/* add a scroll bar to stop page from jerking around */
.modal-open.page-overflow .page-container,
.modal-open.page-overflow .page-container .navbar-fixed-top,
.modal-open.page-overflow .page-container .navbar-fixed-bottom,
.modal-open.page-overflow .modal-scrollable {
	overflow-y: scroll;
}

@media (max-width: 979px) {
	.modal-open.page-overflow .page-container .navbar-fixed-top,
	.modal-open.page-overflow .page-container .navbar-fixed-bottom  {
		overflow-y: visible;
	}
}


.modal-scrollable {
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	overflow: auto;
}

.modal {
	outline: none;
	position: absolute;
	margin-top: 0;
	top: 50%;
	overflow: visible; /* allow content to popup out (i.e tooltips) */
}

.modal.fade {
	top: -100%;
	-webkit-transition: opacity 0.3s linear, top 0.3s ease-out, bottom 0.3s ease-out, margin-top 0.3s ease-out;	
	   -moz-transition: opacity 0.3s linear, top 0.3s ease-out, bottom 0.3s ease-out, margin-top 0.3s ease-out;
	     -o-transition: opacity 0.3s linear, top 0.3s ease-out, bottom 0.3s ease-out, margin-top 0.3s ease-out;
	        transition: opacity 0.3s linear, top 0.3s ease-out, bottom 0.3s ease-out, margin-top 0.3s ease-out;
}

.modal.fade.in {
	top: 50%;
}

.modal-body {
	max-height: none;
	overflow: visible;
}

.modal.modal-absolute {
	position: absolute;
	z-index: 950;
}

.modal .loading-mask {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: #fff;
	border-radius: 6px;
}

.modal-backdrop.modal-absolute{
	position: absolute;
	z-index: 940;
}

.modal-backdrop, 
.modal-backdrop.fade.in{
	opacity: 0.7;
	filter: alpha(opacity=70);
	background: #fff;
}

.modal.container {
  width: 940px;
  margin-left: -470px;
}

/* Modal Overflow */

.modal-overflow.modal {
	top: 1%;
}

.modal-overflow.modal.fade {
	top: -100%;
}

.modal-overflow.modal.fade.in {
	top: 1%;
}

.modal-overflow .modal-body {
	overflow: auto;
	-webkit-overflow-scrolling: touch;
}

/* Responsive */

@media (min-width: 1200px) {
	.modal.container {
		width: 1170px;
		margin-left: -585px;
	}
}

@media (max-width: 979px) {
	.modal, 
	.modal.container,
	.modal.modal-overflow 	{
		top: 1%;
		right: 1%;
		left: 1%;
		bottom: auto;
		width: auto !important;
		height: auto !important;
		margin: 0 !important;
		padding: 0 !important;
	}
	
	.modal.fade.in, 
	.modal.container.fade.in,
	.modal.modal-overflow.fade.in {
		top: 1%;
		bottom: auto;
	}
	
	.modal-body,
	.modal-overflow .modal-body {
		position: static;
		margin: 0;
		height: auto !important;
		max-height: none !important;
		overflow: visible !important;
	}
	
	.modal-footer,
	.modal-overflow .modal-footer {
		position: static;
	}
}

.loading-spinner {
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -12px 0 0 -12px;
}

/*
Animate.css - http://daneden.me/animate
Licensed under the ? license (http://licence.visualidiot.com/)

Copyright (c) 2012 Dan Eden*/

.animated {
	-webkit-animation-duration: 1s;
	   -moz-animation-duration: 1s;
	     -o-animation-duration: 1s;
	        animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	   -moz-animation-fill-mode: both;
	     -o-animation-fill-mode: both;
	        animation-fill-mode: both;
}

@-webkit-keyframes shake {
	0%, 100% {-webkit-transform: translateX(0);}
	10%, 30%, 50%, 70%, 90% {-webkit-transform: translateX(-10px);}
	20%, 40%, 60%, 80% {-webkit-transform: translateX(10px);}
}

@-moz-keyframes shake {
	0%, 100% {-moz-transform: translateX(0);}
	10%, 30%, 50%, 70%, 90% {-moz-transform: translateX(-10px);}
	20%, 40%, 60%, 80% {-moz-transform: translateX(10px);}
}

@-o-keyframes shake {
	0%, 100% {-o-transform: translateX(0);}
	10%, 30%, 50%, 70%, 90% {-o-transform: translateX(-10px);}
	20%, 40%, 60%, 80% {-o-transform: translateX(10px);}
}

@keyframes shake {
	0%, 100% {transform: translateX(0);}
	10%, 30%, 50%, 70%, 90% {transform: translateX(-10px);}
	20%, 40%, 60%, 80% {transform: translateX(10px);}
}

.shake {
	-webkit-animation-name: shake;
	-moz-animation-name: shake;
	-o-animation-name: shake;
	animation-name: shake;
}



.progress {
  height: 20px;
  margin-bottom: 20px;
  overflow: hidden;
  background-color: #f5f5f5;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1);
          box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1);
}
.progress-bar {
  float: left;
  width: 0;
  height: 100%;
  font-size: 12px;
  line-height: 20px;
  color: #fff;
  text-align: center;
  background-color: #337ab7;
  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15);
          box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15);
  -webkit-transition: width .6s ease;
       -o-transition: width .6s ease;
          transition: width .6s ease;
}
.progress-striped .progress-bar,
.progress-bar-striped {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
  background-image:      -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
  background-image:         linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
  -webkit-background-size: 40px 40px;
          background-size: 40px 40px;
}
.progress.active .progress-bar,
.progress-bar.active {
  -webkit-animation: progress-bar-stripes 2s linear infinite;
       -o-animation: progress-bar-stripes 2s linear infinite;
          animation: progress-bar-stripes 2s linear infinite;
}
.progress-bar-success {
  background-color: #5cb85c;
}
.progress-striped .progress-bar-success {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
  background-image:      -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
  background-image:         linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
}
.progress-bar-info {
  background-color: #5bc0de;
}
.progress-striped .progress-bar-info {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
  background-image:      -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
  background-image:         linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
}
.progress-bar-warning {
  background-color: #f0ad4e;
}
.progress-striped .progress-bar-warning {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
  background-image:      -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
  background-image:         linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
}
.progress-bar-danger {
  background-color: #d9534f;
}
.progress-striped .progress-bar-danger {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
  background-image:      -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
  background-image:         linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
}


.bar {
   /*
    background: #000;
    height: 100%;
    -webkit-border-radius: 10px 0px 0px 10px;
    -moz-border-radius: 10px 0px 0px 10px;
    border-radius: 10px 0px 0px 10px;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
    filter: alpha(opacity=90);
    -moz-opacity: 1;
    -khtml-opacity: 1;
    opacity: 1;
	
	*/
}


/* Effect : scale up */
/* Effect : scale up */
/* Effect : scale up */
/* Effect : scale up */
/* Effect : scale up */



/* Effect : scale up
.md-scale {
  opacity: 0;
  -moz-transform: scale(0.7);
  -ms-transform: scale(0.7);
  -webkit-transform: scale(0.7);
  transform: scale(0.7);
  -moz-transition: opacity 0.25s linear, -moz-transform 0.25s;
  -webkit-transition: opacity 0.25s linear, -webkit-transform 0.25s;
  transition: opacity 0.25s linear, transform 0.25s;
}
.md-scale.in {
  opacity: 1;
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -webkit-transform: scale(1);
  transform: scale(1);
}
 */
/* Effect : Slide from the right 
.md-slideRight {
  opacity: 0;
  -moz-transform: translateX(20%);
  -ms-transform: translateX(20%);
  -webkit-transform: translateX(20%);
  transform: translateX(20%);
  -moz-transition: opacity 0.25s linear, -moz-transform 0.25s cubic-bezier(0.25, 0.5, 0.5, 0.9);
  -webkit-transition: opacity 0.25s linear, -webkit-transform 0.25s cubic-bezier(0.25, 0.5, 0.5, 0.9);
  transition: opacity 0.25s linear, transform 0.25s cubic-bezier(0.25, 0.5, 0.5, 0.9);
}
.md-slideRight.in {
  opacity: 1;
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -webkit-transform: translateX(0);
  transform: translateX(0);
}
*/
/* Effect : Slide from the bottom 
.md-slideUp {
  opacity: 0;
  -moz-transform: translateY(20%);
  -ms-transform: translateY(20%);
  -webkit-transform: translateY(20%);
  transform: translateY(20%);
  -moz-transition: opacity 0.25s linear, -moz-transform 0.25s cubic-bezier(0.25, 0.5, 0.5, 0.9);
  -webkit-transition: opacity 0.25s linear, -webkit-transform 0.25s cubic-bezier(0.25, 0.5, 0.5, 0.9);
  transition: opacity 0.25s linear, transform 0.25s cubic-bezier(0.25, 0.5, 0.5, 0.9);
}
.md-slideUp.in {
  opacity: 1;
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
*/
/* Effect : Slide from the top 
.md-slideDown {
  opacity: 0;
  -moz-transform: translateY(-40%);
  -ms-transform: translateY(-40%);
  -webkit-transform: translateY(-40%);
  transform: translateY(-40%);
  -moz-transition: opacity 0.25s linear, -moz-transform 0.25s cubic-bezier(0.25, 0.5, 0.5, 0.9);
  -webkit-transition: opacity 0.25s linear, -webkit-transform 0.25s cubic-bezier(0.25, 0.5, 0.5, 0.9);
  transition: opacity 0.25s linear, transform 0.25s cubic-bezier(0.25, 0.5, 0.5, 0.9);
}
.md-slideDown.in {
  opacity: 1;
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

*/

/* Effect:  slide and stick to top 
.modal.md-stickTop {
  top: 0;
}

.md-stickTop {
  opacity: 0;
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
  -moz-transition: opacity 0.25s linear, -moz-transform 0.25s;
  -webkit-transition: opacity 0.25s linear, -webkit-transform 0.25s;
  transition: opacity 0.25s linear, transform 0.25s;
}
.md-stickTop.in {
  border-radius: 0 0 3px 3px;
  margin-top: 0 !important;
  opacity: 1;
  -moz-transform: translateY(0%);
  -ms-transform: translateY(0%);
  -webkit-transform: translateY(0%);
  transform: translateY(0%);
}
*/
/* Effect : 3D flip horizontal 
.modal.md-flipHor {
  -webkit-perspective: 1300px;
  -moz-perspective: 1300px;
  perspective: 1300px;
}

.md-flipHor {
  opacity: 0;
  -moz-transform: rotateY(-70deg);
  -ms-transform: rotateY(-70deg);
  -webkit-transform: rotateY(-70deg);
  transform: rotateY(-70deg);
  -moz-transition: opacity 0.25s linear, -moz-transform 0.25s;
  -webkit-transition: opacity 0.25s linear, -webkit-transform 0.25s;
  transition: opacity 0.25s linear, transform 0.25s;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d;
}
.md-flipHor.in {
  opacity: 1;
  -moz-transform: rotateY(0deg);
  -ms-transform: rotateY(0deg);
  -webkit-transform: rotateY(0deg);
  transform: rotateY(0deg);
}
*/
/* Effect : 3D flip vertical 
.modal.md-flipVer {
  -webkit-perspective: 1300px;
  -moz-perspective: 1300px;
  perspective: 1300px;
}

.md-flipVer {
  opacity: 0;
  -moz-transform: rotateX(-70deg);
  -ms-transform: rotateX(-70deg);
  -webkit-transform: rotateX(-70deg);
  transform: rotateX(-70deg);
  -moz-transition: opacity 0.25s linear, -moz-transform 0.25s;
  -webkit-transition: opacity 0.25s linear, -webkit-transform 0.25s;
  transition: opacity 0.25s linear, transform 0.25s;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d;
}
.md-flipVer.in {
  opacity: 1;
  -moz-transform: rotateX(0deg);
  -ms-transform: rotateX(0deg);
  -webkit-transform: rotateX(0deg);
  transform: rotateX(0deg);
}

.modal-header {
  border-bottom: 1px solid;
  border-color: #e5e5e5;
}

.modal-header[class^="bd-"], .modal-header[class*="bd-"] {
  border-width: 5px !important;
}

.modal-body {
  max-height: none;
  overflow: visible;
}

.modal-footer {
  margin: 0;
}
.modal-footer .btn {
  margin-bottom: 0;
}

.modal.modal-absolute {
  position: absolute;
  z-index: 950;
}
.modal .loading-mask {
  background: #fff;
  border-radius: 6px;
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.modal-backdrop {
  background: #111;
  filter: alpha(opacity=30);
  opacity: 0.3;
}
.modal-backdrop.modal-absolute {
  position: absolute;
  z-index: 940;
}
.modal-backdrop.fade.in {
  background: #111;
  filter: alpha(opacity=30);
  opacity: 0.3;
}

.modal.container {
  margin-left: -470px;
  width: 940px;
}

*/


/* Modal Overflow 
.modal-overflow.modal {
  top: 1%;
}
.modal-overflow.modal.fade {
  top: -100%;
}
.modal-overflow.modal.fade.in {
  top: 1%;
}
.modal-overflow .modal-body {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
*/
/*
00 - Modal crop
----------------------
.modal-crop {
  padding: 0;
}
.modal-crop .row {
  margin: 0;
}
.modal-crop .col-md-8, .modal-crop .col-md-4 {
  padding: 0;
}
.modal-crop .modal-crop-body {
  padding: 15px;
  position: relative;
}
.modal-crop .modal-crop-body textarea {
  height: 75px;
  max-height: 75px;
}
.modal-crop .modal-crop-body .close {
  position: absolute;
  right: 15px;
  top: 10px;
}
*/

 .profile-cover {
  height: 232px;
  margin-right: -100px;
  overflow: hidden;
  padding: 15px 25px;
}



.profile-avatar div {
  margin: 10px 0 5px;
}

.profile-avatar span {
  background-color: #FFF;
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 2px;
  display: inline-block;
  font-size: 18px;
  margin-left: -13px;
  padding: 2px 15px 5px;
}



.profile-status {
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  bottom: 17px;
  display: inline-block;
  /*position: absolute;*/
  right: 5px;
  float:right
  
}
.profile-status a {
  color: #FFF;
  font-size: 1.5em;
  font-weight: 700;
}
.profile-status a:hover {
  color: #EEE;
}
.profile-status a small {
  display: block;
  font-size: 0.5em;
  font-weight: 300;
}



.badge {
   /* background-color: #ddaaec !important;*/
	
	}


.bg-primary {
    background-color: #0090d9;
    color: white;
}
.bg-primary-lighten {
    background-color: #00a1f3;
    color: white;
}
.bg-primary-darken {
    background-color: #007fc0;
    color: white;
}
.bg-primary-gradient {
    background-color: #0090d9;
    background-image: linear-gradient(155deg, #0090d9 40%, #004c73);
    color: white;
}
.bg-success {
    background-color: #2ecc71;
    color: white;
}
.bg-success-lighten {
    background-color: #40d47e;
    color: white;
}
.bg-success-darken {
    background-color: #29b765;
    color: white;
}
.bg-success-gradient {
    background-color: #2ecc71;
    background-image: linear-gradient(155deg, #2ecc71 40%, #1b7943);
    color: white;
}
.bg-warning {
    background-color: #ffcc33;
    color: white;
}
.bg-warning-lighten {
    background-color: #ffd24d;
    color: white;
}
.bg-warning-darken {
    background-color: #ffc61a;
    color: white;
}
.bg-warning-gradient {
    background-color: #ffcc33;
    background-image: linear-gradient(155deg, #ffcc33 40%, #cc9900);
    color: white;
}
.bg-danger {
    background-color: #d9534f;
    color: white;
}
.bg-danger-lighten {
    background-color: #de6764;
    color: white;
}
.bg-danger-darken {
    background-color: #d43f3a;
    color: white;
}
.bg-danger-gradient {
    background-color: #d9534f;
    background-image: linear-gradient(155deg, #d9534f 40%, #a02622);
    color: white;
}
.bg-info {
    background-color: #b5d1d8;
    color: white;
}
.bg-info-lighten {
    background-color: #c6dbe1;
    color: white;
}
.bg-info-darken {
    background-color: #a4c7cf;
    color: white;
}
.bg-info-gradient {
    background-color: #b5d1d8;
    background-image: linear-gradient(155deg, #b5d1d8 40%, #72a7b5);
    color: white;
}
.bg-white {
    background-color: white;
    color: #777;
}
.bg-white-lighten {
    background-color: white;
    color: #777;
}
.bg-white-darken {
    background-color: #f2f2f2;
    color: #777;
}
.bg-white-gradient {
    background-color: white;
    background-image: linear-gradient(155deg, white 40%, #cccccc);
    color: #777;
}
.bg-inverse {
    background-color: #62707d;
    color: white;
}
.bg-inverse-lighten {
    background-color: #6d7d8b;
    color: white;
}
.bg-inverse-darken {
    background-color: #57636f;
    color: white;
}
.bg-inverse-gradient {
    background-color: #62707d;
    background-image: linear-gradient(155deg, #62707d 40%, #353d44);
    color: white;
}
.bg-theme {
    background-color: #f35958;
    color: white;
}
.bg-theme-lighten {
    background-color: #f57170;
    color: white;
}
.bg-theme-darken {
    background-color: #f14140;
    color: white;
}
.bg-theme-gradient {
    background-color: #f35958;
    background-image: linear-gradient(155deg, #f35958 40%, #d6110f);
    color: white;
}
.bg-theme-inverse {
    background-color: #0aa699;
    color: white;
}
.bg-theme-inverse-lighten {
    background-color: #0bbeaf;
    color: white;
}
.bg-theme-inverse-darken {
    background-color: #098e83;
    color: white;
}
.bg-theme-inverse-gradient {
    background-color: #0aa699;
    background-image: linear-gradient(155deg, #0aa699 40%, #044640);
    color: white;
}
.bg-palevioletred {
    background-color: #372b32;
    color: white;
}
.bg-palevioletred-lighten {
    background-color: #45363f;
    color: white;
}
.bg-palevioletred-darken {
    background-color: #292025;
    color: white;
}
.bg-palevioletred-gradient {
    background-color: #372b32;
    background-image: linear-gradient(155deg, #372b32 40%, black);
    color: white;
}
.bg-green {
    background-color: #99cc00;
    color: white;
}
.bg-green-lighten {
    background-color: #ace600;
    color: white;
}
.bg-green-darken {
    background-color: #86b300;
    color: white;
}
.bg-green-gradient {
    background-color: #99cc00;
    background-image: linear-gradient(155deg, #99cc00 40%, #4d6600);
    color: white;
}
.bg-lightseagreen {
    background-color: #3db9af;
    color: white;
}
.bg-lightseagreen-lighten {
    background-color: #4cc4ba;
    color: white;
}
.bg-lightseagreen-darken {
    background-color: #37a69d;
    color: white;
}
.bg-lightseagreen-gradient {
    background-color: #3db9af;
    background-image: linear-gradient(155deg, #3db9af 40%, #246c66);
    color: white;
}
.bg-purple {
    background-color: #736086;
    color: white;
}
.bg-purple-lighten {
    background-color: #806b95;
    color: white;
}
.bg-purple-darken {
    background-color: #665577;
    color: white;
}
.bg-purple-gradient {
    background-color: #736086;
    background-image: linear-gradient(155deg, #736086 40%, #40354b);
    color: white;
}
.bg-darkorange {
    background-color: #f9ba46;
    color: white;
}
.bg-darkorange-lighten {
    background-color: #fac35f;
    color: white;
}
.bg-darkorange-darken {
    background-color: #f8b12d;
    color: white;
}
.bg-darkorange-gradient {
    background-color: #f9ba46;
    background-image: linear-gradient(155deg, #f9ba46 40%, #d28b07);
    color: white;
}
.bg-pink {
    background-color: #d13a7a;
    color: white;
}
.bg-pink-lighten {
    background-color: #d64f88;
    color: white;
}
.bg-pink-darken {
    background-color: #c42e6d;
    color: white;
}
.bg-pink-gradient {
    background-color: #d13a7a;
    background-image: linear-gradient(155deg, #d13a7a 40%, #861f4b);
    color: white;
}


.widget-tile {
    margin: -20px;
    overflow: hidden;
    padding: 20px;
    position: relative;
}
.widget-tile h5 {
    margin-bottom: 5px;
    text-transform: uppercase;
}
.widget-tile h2 {
    margin-bottom: 25px;
}
.widget-tile section {
    position: relative;
}
.widget-tile .hold-icon {
    color: rgba(0, 0, 0, 0.1);
    font-size: 5em;
    position: absolute;
    right: 0.5em;
    top: 0;
}
.widget-tile .progress {
    width: 80%;
}
.widget-tile .progress.progress-over-tile {
    margin: auto -20px 5px;
    width: auto;
}


.progress-bar {
    box-shadow: none;
    position: relative;
}
.progress {
    background-color: #eee;
    border-radius: 0;
    box-shadow: none;
    margin-bottom: 5px;
    overflow: visible;
    position: relative;
}
.progress.progress-dark {
    background-color: #2d3237;
}
.progress.progress-white {
    background-color: rgba(0, 0, 0, 0.3);
}
.progress.progress-sm {
    height: 10px;
}
.progress.progress-xs {
    height: 5px;
}
.progress-label {
    font-size: 10px;
    margin-bottom: 15px;
    position: relative;
    top: -5px;
}
.progress-label.lasted {
    margin-bottom: 0;
}
.progress-label.label-white {
    color: white;
}
.progress .progress-tooltip {
    background-color: #000;
    color: #fff;
    display: none;
    font-size: 10px;
    opacity: 0.6;
    padding: 3px 5px 3px 7px;
    position: absolute;
    right: -10px;
    top: -25px;
}
.progress .progress-tooltip::before {
    border-color: black transparent transparent;
    border-style: solid;
    border-width: 5px;
    bottom: -10px;
    content: "";
    height: 0;
    position: absolute;
    right: 5px;
    width: 0;
}
.progress-bar-theme {
    background-color: #6cc3a0;
}
.progress-bar-success {
    background-color: #5cb85c;
}
.progress-bar-white {
    background-color: #fff;
}
.progress:hover .progress-tooltip, .progress.tooltip-in .progress-tooltip {
    display: inline-block;
}
.progress-stripes .progress-bar {
    animation: 3s linear 0s normal none infinite running animate-stripes;
    background-image: -moz-linear-gradient(135deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-size: 30px 30px;
}
.progress-shine span {
    position: absolute;
}
.progress-shine .progress-bar::after {
    animation: 2s ease-out 0s normal none infinite running animate-shine;
    background: #fff none repeat scroll 0 0;
    bottom: 0;
    content: "";
    left: 0;
    opacity: 0;
    position: absolute;
    right: 0;
    top: 0;
}



.widget-chart {
    padding: 15px;
    position: relative;
}
.widget-chart h2 {
    color: #fff;
    margin: 0 0 15px;
}
.widget-chart.chart-dark {
    color: #575757;
}
.widget-chart.chart-dark .flot-text {
    color: rgba(0, 0, 0, 0.5);
    font-size: 11px;
}
.widget-chart .flot-chart {
    display: none;
}
/*
  
 .profile-cover {
  background: url(../img/overview.png) bottom repeat;
  height: 232px;
  margin-right: -100px;
  overflow: hidden;
  padding: 15px 25px;
}

.profile-status {
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  bottom: 17px;
  display: inline-block;
  position: absolute;
  right: 5px;
}
.profile-status a {
  color: #FFF;
  font-size: 1.5em;
  font-weight: 700;
}
.profile-status a:hover {
  color: #EEE;
}
.profile-status a small {
  display: block;
  font-size: 0.5em;
  font-weight: 300;
}

.profile-avatar {
  bottom: 15px;
  position: absolute;
}
.profile-avatar div {
  margin: 10px 0 5px;
}
.profile-avatar span {
  background-color: #FFF;
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 2px;
  display: inline-block;
  font-size: 18px;
  margin-left: -13px;
  padding: 2px 15px 5px;
}
.profile-avatar img {
  border: 3px #FFF solid;
  display: inline-block;
  margin: 0 0 7px;
  position: relative;
  width: 50px;
  z-index: 2;
}

.profile-about {
  background-color: #FFF;
  height: 232px;
  overflow: hidden;
  padding: 15px 25px;
  position: absolute;
}

*/


/*
00 - alert notific8 
------------------------------------------------------------*/
.jquery-notific8-container {
  display: block;
  margin: 0;
  padding: 0;
  position: fixed;
}
.jquery-notific8-container.top {
  top: 55px;
}
.jquery-notific8-container.top.right {
  right: 15px;
}
.jquery-notific8-container.bottom.right {
  right: 15px;
}
.jquery-notific8-container.top.left {
  left: 15px;
}
.jquery-notific8-container.bottom {
  bottom: 0;
}
.jquery-notific8-container.bottom.left {
  left: 15px;
}

.jquery-notific8-notification {
  border-radius: 1px;
  display: block;
  opacity: 0;
  padding: 10px 15px;
  position: relative;
  -webkit-transform: translate3d(50%, 0, 0);
  transform: translate3d(50%, 0, 0);
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  width: 290px;
}
.jquery-notific8-notification.in {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.jquery-notific8-notification:hover .jquery-notific8-close {
  display: block;
}

.jquery-notific8-heading {
  font-weight: bold;
  margin-bottom: 0.3125em;
}

.jquery-notific8-close {
  cursor: pointer;
  display: none;
  padding: 0 0.25em;
  position: absolute;
  top: 5px;
}

.jquery-notific8-close-sticky {
  cursor: pointer;
  position: absolute;
  text-align: center;
  text-transform: uppercase;
  width: 5.5625em;
}
.jquery-notific8-close-sticky span {
  display: inline-block;
  font-size: 0.625em;
  padding: 5px 0;
}

.right .jquery-notific8-notification {
  clear: right;
  float: right;
  padding-right: 2.0625em;
}
.right .jquery-notific8-close {
  right: 7px;
}

.left .jquery-notific8-close {
  right: 7px;
}

.right .jquery-notific8-close-sticky {
  right: -5px;
  top: -5px;
}

.left .jquery-notific8-notification {
  clear: left;
  float: left;
  opacity: 0;
  -webkit-transform: translate3d(-50%, 0, 0);
  transform: translate3d(-50%, 0, 0);
}
.left .jquery-notific8-notification.in {
  opacity: 1;
  -webkit-transform: translate3d(0%, 0, 0);
  transform: translate3d(0%, 0, 0);
}
.left .jquery-notific8-close-sticky {
  right: -5px;
  top: -5px;
}

.top .jquery-notific8-notification {
  margin-top: 0.625em;
}

.bottom .jquery-notific8-notification {
  margin-bottom: 0.625em;
}

.jquery-notific8-notification {
  background-color: #F7F4D0;
}
.jquery-notific8-notification.default {
  color: #FFF;
}

/*
00 -  jslider
------------------------------------------------------------*/
.jslider {
  display: block;
  font-family: Arial, sans-serif;
  height: 1em;
  margin-top: 30px;
  position: relative;
  top: 0.6em;
}
.jslider table {
  border: 0;
  border-collapse: collapse;
  width: 100%;
}
.jslider td, .jslider th {
  border: 0;
  padding: 0;
  text-align: left;
  vertical-align: top;
}
.jslider table {
  vertical-align: top;
  width: 100%;
}
.jslider table tr {
  vertical-align: top;
  width: 100%;
}
.jslider table tr td {
  vertical-align: top;
  width: 100%;
}
.jslider .jslider-bg {
  position: relative;
}
.jslider .jslider-bg i {
  background-color: #EEE;
  font-size: 0;
  height: 5px;
  position: absolute;
  top: 0;
}
.jslider .jslider-bg .l {
  background-position: 0 0;
  left: 0;
  width: 50%;
}
.jslider .jslider-bg .r {
  background-position: right 0;
  left: 50%;
  width: 50%;
}
.jslider .jslider-bg .v {
  background: #CCC;
  height: 5px;
  left: 20%;
  position: absolute;
  top: 0;
  width: 60%;
}
.jslider .jslider-pointer {
  background-color: #FFF;
  border: 1px #DDD solid;
  border-radius: 4px;
  box-shadow: 1px 1px 0px rgba(0, 0, 0, 0.125);
  cursor: pointer;
  height: 15px;
  left: 20%;
  margin-left: -6px;
  position: absolute;
  top: -5px;
  width: 15px;
}
.jslider .jslider-pointer-to {
  left: 80%;
}
.jslider .jslider-label {
  color: black;
  font-size: 10px;
  left: 0px;
  line-height: 12px;
  opacity: 0.4;
  padding: 0px 2px;
  position: absolute;
  top: -24px;
  white-space: nowrap;
}
.jslider .jslider-label-to {
  left: auto;
  right: 0;
}
.jslider .jslider-value {
  background: #f5f5f5;
  font-size: 9px;
  left: 20%;
  line-height: 12px;
  padding: 3px 8px 1px;
  position: absolute;
  top: -28px;
  white-space: nowrap;
}
.jslider .jslider-value-to {
  left: 80%;
}
.jslider .jslider-label small, .jslider .jslider-value small {
  position: relative;
  top: -0.4em;
}
.jslider .jslider-scale {
  position: relative;
  top: 12px;
}
.jslider .jslider-scale span {
  border-left: 1px solid #DDD;
  font-size: 0;
  height: 5px;
  position: absolute;
}
.jslider .jslider-scale ins {
  color: #DDD;
  font-size: 9px;
  left: 0px;
  position: absolute;
  text-decoration: none;
  top: 7px;
}

.jslider-single .jslider-pointer-to, .jslider-single .jslider-value-to, .jslider-single .jslider-bg .v {
  display: none;
}

.jslider-limitless .jslider-label {
  display: none;
}




.fileinput {
    display: inline-block;
    margin-bottom: 9px;
}

.fileinput .btn {
    vertical-align: middle;
}

.btn-file {
    overflow: hidden;
    position: relative;
    vertical-align: middle;
}


.btn-default {
    background-color: #ffffff;
    border-color: #ddd;
    color: #aaa;
}



.btn, button {
    outline: 0 none;
}

.fileinput-exists .fileinput-new, .fileinput-new .fileinput-exists {
    display: none;
}

.btn-file > input {
    cursor: pointer;
    direction: ltr;
    font-size: 23px;
    margin: 0;
    opacity: 0;
    position: absolute;
    right: 0;
    top: 0;
    transform: translate(-300px, 0px) scale(4);
}



.avatar-mini {
    width: 30px;
}

.treeview {
    list-style: outside none none;
    margin: 0;
    padding: 0;
}
.treeview ul {
    background-color: white;
    list-style: outside none none;
    margin: 4px 0 0;
    padding: 0;
}
.treeview .hitarea {
    background: rgba(0, 0, 0, 0) url("../img/treeview/treeview-default.gif") no-repeat scroll -64px -25px;
    cursor: pointer;
    float: left;
    height: 16px;
    margin-left: -16px;
    width: 16px;
}
* html .hitarea {
    display: inline;
    float: none;
}

.treeview li {
    margin: 0;
    padding: 0 0 3px 16px;
}
.treeview li span {
    display: block;
    position: relative;
    top: -3px;
}
.treeview a, .treeview li span {
    color: #717171;
    transition: all 0.2s ease 0s;
}
.treeview a:hover, .treeview li span.hover {
    color: #a1a1a1;
}
.treeview a.selected {
    background-color: #eee;
}
#treecontrol {
    display: none;
    margin: 1em 0;
}
.treeview .hover {
    color: red;
    cursor: pointer;
}
.treeview li {
    background: rgba(0, 0, 0, 0) url("../img/treeview/treeview-default-line.gif") no-repeat scroll 0 0;
}
.treeview li.collapsable, .treeview li.expandable {
    background-position: 0 -176px;
}
.treeview .expandable-hitarea {
    background-position: -80px -3px;
}
.treeview li.last {
    background-position: 0 -1766px;
}
.treeview li.lastCollapsable, .treeview li.lastExpandable {
    background-image: url("../img/treeview/treeview-default.gif");
}
.treeview li.lastCollapsable {
    background-position: 0 -111px;
}
.treeview li.lastExpandable {
    background-position: -32px -67px;
}
.treeview div.lastCollapsable-hitarea, .treeview div.lastExpandable-hitarea {
    background-position: 0 center;
}
.treeview-red li {
    background-image: url("../img/treeview/treeview-red-line.gif");
}
.treeview-red .hitarea {
    background-image: url("../img/treeview/treeview-red.gif");
}
.treeview-red li.lastCollapsable, .treeview-red li.lastExpandable {
    background-image: url("../img/treeview/treeview-red.gif");
}
.treeview-black li {
    background-image: url("../img/treeview/treeview-black-line.gif");
}
.treeview-black .hitarea {
    background-image: url("../img/treeview/treeview-black.gif");
}
.treeview-black li.lastCollapsable, .treeview-black li.lastExpandable {
    background-image: url("../img/treeview/treeview-black.gif");
}
.treeview-gray li {
    background-image: url("../img/treeview/treeview-gray-line.gif");
}
.treeview-gray .hitarea {
    background-image: url("../img/treeview/treeview-gray.gif");
}
.treeview-gray li.lastCollapsable, .treeview-gray li.lastExpandable {
    background-image: url("../img/treeview/treeview-gray.gif");
}
.treeview-famfamfam li {
    background-image: url("../img/treeview/treeview-famfamfam-line.gif");
}
.treeview-famfamfam .hitarea {
    background-image: url("../img/treeview/treeview-famfamfam.gif");
}
.treeview-famfamfam li.lastCollapsable, .treeview-famfamfam li.lastExpandable {
    background-image: url("../img/treeview/treeview-famfamfam.gif");
}
.treeview .placeholder {
    background: rgba(0, 0, 0, 0) url("../img/treeview/ajax-loader.gif") no-repeat scroll 0 0;
    display: block;
    height: 16px;
    width: 16px;
}


.filetree li {
    padding: 3px 0 2px 16px;
}
.filetree span.folder, .filetree span.file {
    display: block;
    padding: 0 0 1px 20px;
}
.filetree span.folder {
    background: rgba(0, 0, 0, 0) url("../img/treeview/folder.gif") no-repeat scroll 2px 2px;
}
.filetree li.expandable span.folder {
    background: rgba(0, 0, 0, 0) url("../img/treeview/folder-closed.gif") no-repeat scroll 2px 2px;
}
.filetree span.file {
    background: rgba(0, 0, 0, 0) url("../img/treeview/file.gif") no-repeat scroll 2px 2px;
}
.genealogytree li {
    padding: 3px 0 2px 16px;
}
.genealogytree span.folder, .genealogytree span.file {
    display: block;
    padding: 0 0 1px 20px;
}
.genealogytree span.folder {
    background: rgba(0, 0, 0, 0) url("../img/treeview/folder.gif") no-repeat scroll 2px 2px;
}
.genealogytree li.expandable span.folder {
    background: rgba(0, 0, 0, 0) url("../img/treeview/folder-closed.gif") no-repeat scroll 2px 2px;
}
.genealogytree span.file {
    background: rgba(0, 0, 0, 0) url("../img/treeview/file.gif") no-repeat scroll 2px 2px;
}



.dropdown-toggle .badge {

	background-color:#2ba6cf
}




a[data-toggle="collapse"] {
	display:block;
	padding:10px 5px;
	color:#999;
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow:hidden;
}
a[data-toggle="collapse"] i {
	width:17px;
	height:17px;
	text-align:center;
	line-height:17px;
	margin-right:3px;
}


a[data-toggle="collapse"] i.collapse-caret {
	float:right;
	margin-top:3px;
}


h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
 
  margin: 0;
}

.row p {
    font-size: 1.1em !important;
    font-family: 'arial';
}


.tab-content {
	padding:15px;
	background-color:#FFF;
	position:relative;
	z-index:2;
	margin-bottom:20px;
}

.panel  .panel { padding:0px; border:0px }

/*.panel  .panel .panel-body{ padding:0px; border:0px }*/


.panel  .panel .panel{ padding:0px; border:0px }

.panel-body {
	position:relative;
	padding:20px;
	-webkit-transition: -webkit-transform 0.5s;
	transition: transform 0.5s;
}

.panel-tools {
	position:relative;
	padding:7px 10px;
	background-color:#FCFCFC;
	/*z-index:7;*/
	-webkit-transition: -webkit-transform 0.5s;
	transition: transform 0.5s;
}
.panel-tools-mini {
	position:absolute;
	border:none;
	border-bottom:1px solid transparent;
	background-color:#FFF;
	padding:0;
	padding-right:10px;
	top:22px;
	right:0;
}
.panel-tools-mini ul li {
	display:inline-block;
}
.panel-tools-mini ul li a {
	color:#a1a1a1;
}
.panel-tools.push-in {
	-webkit-transform: translate3d(-150px, 0, 0);
	transform: translate3d(-150px, 0, 0);
}
.panel-tools .pt-confirm-group {
	position:absolute;
	right:-150px;
	top:0;
	width:150px;
	border-radius: 0px;
}
.panel-tools .pt-confirm-group .btn {
	border-radius: 0px;
	height:36px;
}
.panel-tools ul li {
	display: table-cell;
	text-align:left;
}
.panel-tools ul.dropdown-menu li {
	display: block!important;
	font-size:12px;
}
.panel-tools ul.dropdown-menu li i.fa, .panel-tools ul.dropdown-menu li span.glyphicon {
	color:#999;
	margin-right:5px;
	margin-left:-7px;
	width:13px;
	height:13px;
	text-align:center;
}
.panel-tools.half-line {
	padding:5px 10px;
	height:24px;
	margin-bottom:0px;
}
.panel-tools ul li .btn {
	height:35px;
	width:35px;
	margin:0 3px;
	line-height:32px;
	text-align:center;
	padding:0;
	border-radius:0;
}
.panel-tools.circle ul li .btn {
	border-radius:50%;
}
.panel-tools.fully {
	height:36px;
	padding:0 10px;
}
.panel-tools.fully ul li {
	border-color:#EFEFEF;
	border-style:solid;
	border-width:0 0 0 1px;
}
.panel-tools.fully ul li:last-child {
	border-width:0 1px;
}
.panel-tools.fully ul li .btn, .panel-tools.color li .btn {
	height:36px;
	border-collapse:separate;
	border-bottom:0;
	border-top:0;
	border:0;
	line-height:33px;
	margin:0;
}
.panel-tools.color, .panel-tools.color ul li {
	border:0;
	padding:0;
}
.panel-tools.color li .btn, .panel-tools.color.circle li .btn {
	color:#FFF;
}
.panel-tools.color.circle {
	padding:5px 10px;
}
.panel-tools.color.circle li .btn {
	border:none;
	line-height:33px;
}


/*Button Theme*/
.btn-theme {
	background-color: #f37864;
	border-color: #f37864;
	color:#FFF;
}
.btn-theme.btn-transparent {
	color:#E96E5A;
}
.btn-theme.btn-transparent:hover, .btn-theme.btn-transparent:focus {
	background-color: rgba(243, 120, 100, 0.2);
	color:#E96E5A!important;
}
.btn-theme:hover, .btn-theme:focus, .btn-theme:active, .btn-theme.active, .open .dropdown-toggle.btn-theme, .btn-theme.btn-transparent:active, .btn-theme.btn-transparent.active {
	background-color: #E96E5A;
	border-color: #E96E5A;
	color:#FFF!important;
}
.btn-theme.disabled, .btn-theme[disabled], fieldset[disabled] .btn-theme, .btn-theme.disabled:hover, .btn-theme[disabled]:hover, fieldset[disabled] .btn-theme:hover, .btn-theme.disabled:focus, .btn-theme[disabled]:focus, fieldset[disabled] .btn-theme:focus, .btn-theme.disabled:active, .btn-theme[disabled]:active, fieldset[disabled] .btn-theme:active, .btn-theme.disabled.active, .btn-theme[disabled].active, fieldset[disabled] .btn-theme.active, .open .dropdown-toggle.btn-theme.btn-transparent {
	background-color: #FF9682;
}
/*Button Theme inverse*/
.btn-theme-inverse {
	background-color: #9A9A28;
	border-color: #6CC3A0;
	color:#FFF;
}
.btn-theme-inverse.btn-transparent {
	color:#0BAD8C;
}
.btn-theme-inverse.btn-transparent:hover,  .btn-theme-inverse.btn-transparent:focus {
	background-color: rgba(124,90,18,0.20);
	color:#0BAD8C!important;
}
.btn-theme-inverse:hover, .btn-theme-inverse:focus, .btn-theme-inverse:active, .btn-theme-inverse.active, .open .dropdown-toggle.btn-theme-inverse, .btn-theme-inverse.btn-transparent:active, .btn-theme-inverse.btn-transparent.active {
	background-color: #7C6F39;
	border-color: #5DB491;
	color:#FFF!important;
}
.btn-theme-inverse.disabled, .btn-theme-inverse[disabled], fieldset[disabled] .btn-theme-inverse, .btn-theme-inverse.disabled:hover, .btn-theme-inverse[disabled]:hover, fieldset[disabled] .btn-theme-inverse:hover, .btn-theme-inverse.disabled:focus, .btn-theme-inverse[disabled]:focus, fieldset[disabled] .btn-theme-inverse:focus, .btn-theme-inverse.disabled:active, .btn-theme-inverse[disabled]:active, fieldset[disabled] .btn-theme-inverse:active, .btn-theme-inverse.disabled.active, .btn-theme-inverse[disabled].active, fieldset[disabled] .btn-theme-inverse.active, .open .dropdown-toggle.btn-theme-inverse.btn-transparent {
	background-color: #38DAB9;
}


/*Button Inverse*/
.btn-inverse {
	background-color: #62707D;
	border-color: #62707D;
	color:#FFF;
}

.btn-inverse a strong{

	color:#FFF;
}


.btn-inverse.btn-transparent {
	color:#53616E;
}
.btn-inverse.btn-transparent:hover,  .btn-inverse.btn-transparent:focus {
	background-color: rgba(83, 97, 110, 0.2);
	color:#53616E!important;
}
.btn-inverse:hover, .btn-inverse:focus, .btn-inverse:active, .btn-inverse.active, .open .dropdown-toggle.btn-inverse, .btn-inverse.btn-transparent:active, .btn-inverse.btn-transparent.active {
	background-color: #53616E;
	border-color: #53616E;
	color:#FFF!important;
}
.btn-inverse.disabled, .btn-inverse[disabled], fieldset[disabled] .btn-inverse, .btn-inverse.disabled:hover, .btn-inverse[disabled]:hover, fieldset[disabled] .btn-inverse:hover, .btn-inverse.disabled:focus, .btn-inverse[disabled]:focus, fieldset[disabled] .btn-inverse:focus, .btn-inverse.disabled:active, .btn-inverse[disabled]:active, fieldset[disabled] .btn-inverse:active, .btn-inverse.disabled.active, .btn-inverse[disabled].active, fieldset[disabled] .btn-inverse.active, .open .dropdown-toggle.btn-inverse.btn-transparent {
	background-color: #808E9B;
}

/*
table.table {
  clear: both;
  margin-bottom: 6px !important;
  max-width: none !important;
}
table.table thead .sorting, table.table thead .sorting_asc, table.table thead .sorting_desc, table.table thead .sorting_asc_disabled, table.table thead .sorting_desc_disabled {
  cursor: pointer;
}
table.table thead .sorting {
  background: url("img/sort_both.png") no-repeat center right;
}
table.table thead .sorting_asc {
  background: url("img/sort_asc.png") no-repeat center right;
}
table.table thead .sorting_desc {
  background: url("img/sort_desc.png") no-repeat center right;
}
table.table thead .sorting_asc_disabled {
  background: url("img/sort_asc_disabled.png") no-repeat center right;
}
table.table thead .sorting_desc_disabled {
  background: url("img/sort_desc_disabled.png") no-repeat center right;
}
table.table thead .sorting, table.table thead .sorting_asc, table.table thead .sorting_desc, table.table thead .sorting_asc_disabled, table.table thead .sorting_desc_disabled {
  padding-right: 20px;
}
table.dataTable th:active {
  outline: none;
}
*/



/*
00 - widget friend
------------------------------------------------------------*/
.widget-friend ul {
  margin: 0;
  padding: 15px 0;
  text-align: center;
  margin-bottom: 15px;
}
.widget-friend ul li {
  display: inline-block;
  margin: 5px;
  position: relative;
}
.widget-friend ul li:first-child {
  display: block;
  padding: 10px 15px;
  text-align: left;
}
.widget-friend ul li:last-child {
  height: 50px;
  line-height: 50px;
  top: 3px;
  width: 50px;
}
.widget-friend ul li:last-child i {
  border: 1px #CCC dashed;
  display: inline-block;
  height: 48px;
  line-height: 46px;
  text-align: center;
  width: 48px;
}
.widget-friend ul li img {
  border: 2px #EEE solid;
  opacity: 0.3;
  width: 50px;
}
.widget-friend ul li.online img, .widget-friend ul li.busy img {
  opacity: 1;
}
.widget-friend ul li.online:after, .widget-friend ul li.busy:after {
  background-color: #00cc00;
  border: 2px white solid;
  content: "";
  height: 10px;
  position: absolute;
  right: 3px;
  top: 3px;
  width: 10px;
}
.widget-friend ul li.busy:after {
  background-color: #ff9900;
}

.panel .widget-friend ul, .tab-content .widget-friend ul {
  padding: 0;
}

/*
00 - widget collapse
------------------------------------------------------------*/
.widget-collapse {
  border-bottom: 1px rgba(0, 0, 0, 0.025) solid;
  position: relative;
}
.widget-collapse.dark {
  color: #FAFAFA;
}
.widget-collapse.dark header {
  background-color: #23272e;
}
.widget-collapse header {
  padding: 0 10px;
}
.widget-collapse header a {
  color: #999;
  display: block;
  overflow: hidden;
  padding: 10px 5px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.widget-collapse header a i {
  color: rgba(255, 255, 255, 0.2);
  height: 17px;
  line-height: 17px;
  margin-right: 3px;
  text-align: center;
  width: 17px;
}
.widget-collapse header a i.collapse-caret {
  float: right;
  margin-top: 3px;
}
.widget-collapse header a .label {
  border-radius: 1px;
  font-weight: 300;
  padding: 2px 6px;
}
.widget-collapse section .collapse-boby {
  padding: 15px;
}

/*
00 - widget mini chart
------------------------------------------------------------*/
.widget-mini-chart {
  border-bottom: 1px rgba(255, 255, 255, 0.035) solid;
  padding: 15px 15px 20px;
  position: relative;
}
.widget-mini-chart:last-child {
  border-bottom: 0;
}
.widget-mini-chart .mini-chart {
  bottom: 20px;
  left: 20px;
  position: absolute;
}
.widget-mini-chart .pull-right .mini-chart {
  left: auto;
  right: 20px;
}

.dark .widget-mini-chart p {
  border-bottom: 1px #efefef solid;
  color: rgba(255, 255, 255, 0.9);
  display: inline-block;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  padding: 2px 0;
  position: relative;
}
.dark .widget-mini-chart p:before {
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #efefef;
  bottom: -6px;
  content: "";
  height: 0;
  left: 8px;
  position: absolute;
  width: 0;
}
.dark .widget-mini-chart p:after {
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #efefef;
  bottom: -5px;
  content: "";
  height: 0;
  left: 8px;
  position: absolute;
  width: 0;
}

/*
00 - widget rating
------------------------------------------------------------*/
.widget-rating {
  margin-top: 15px;
}
.widget-rating .glyphicon {
  margin-right: 5px;
}
.widget-rating .rating .glyphicon {
  font-size: 22px;
}
.widget-rating .rating-num {
  font-size: 54px;
  margin-top: 0px;
}
.widget-rating .progress {
  margin-bottom: 18px;
}
.widget-rating .progress.last {
  margin-bottom: 5px;
}
.widget-rating .progress-bar {
  text-align: left;
}
.widget-rating .progress-label {
  margin-bottom: 0;
}
.widget-rating .rating-desc {
  padding-top: 10px;
}
.widget-rating .rating-desc .col-md-3 {
  padding-right: 0px;
}
.widget-rating .col-md-6:first-child {
  padding-right: 0px;
}
.widget-rating .sr-only {
  clip: auto;
  margin-left: 5px;
  overflow: visible;
}

/*
00 - widget tile
------------------------------------------------------------*/
.widget-tile {
  position: relative;
  overflow: hidden;
  margin: -20px;
  padding: 20px;
}
.widget-tile h5 {
  margin-bottom: 5px;
  text-transform: uppercase;
}
.widget-tile h2 {
  margin-bottom: 25px;
}
.widget-tile section {
  position: relative;
}
.widget-tile .hold-icon {
  position: absolute;
  top: 0;
  right: 0.5em;
  color: rgba(0, 0, 0, 0.1);
  font-size: 5em;
}
.widget-tile .progress {
  width: 80%;
}
.widget-tile .progress.progress-over-tile {
  margin: auto -20px 5px;
  width: auto !important;
}

/*
00 - widget plan
------------------------------------------------------------*/
.widget-plan {
  text-align: center;
  padding: 30px;
}
.widget-plan header {
  padding: 10px;
}
.widget-plan header h3 {
  margin-bottom: 5px;
}
.widget-plan section i {
  font-size: 5em;
  color: #ededed;
}
.widget-plan section p {
  padding: 15px 20px;
}
.widget-plan footer {
  margin-bottom: 15px;
}
.widget-plan footer button {
  text-transform: uppercase;
}

/*
00 - widget top-search
------------------------------------------------------------*/
.widget-top-search {
  background-color: #262a33;
  position: absolute;
  left: 0px;
  right: 0;
  top: -185px;
  -webkit-transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  z-index: 1000;
}
.widget-top-search.nav-top-search {
  -webkit-transform: translate3d(0, 185px, 0);
  -moz-transform: translate3d(0, 185px, 0);
  -ms-transform: translate3d(0, 185px, 0);
  -o-transform: translate3d(0, 185px, 0);
  transform: translate3d(0, 185px, 0);
}
.widget-top-search span.icon {
  position: absolute;
  text-align: center;
  right: 35px;
  top: 30px;
}
.widget-top-search span.icon a {
  font-size: 21px;
  color: rgba(255, 255, 255, 0.3);
}
.widget-top-search span.icon a:hover {
  color: rgba(255, 255, 255, 0.5);
}
.widget-top-search form {
  padding: 15px 25px 25px;
}
.widget-top-search form h2 {
  margin-bottom: 15px;
  font-size: 3.5em;
  color: rgba(255, 255, 255, 0.9);
}
.widget-top-search form input {
  background-color: #313641;
  border: none;
  color: rgba(255, 255, 255, 0.5);
}
.widget-top-search form input:focus {
  background-color: #313641;
}
.widget-top-search form button {
  background-color: #313641;
  border-color: transparent;
  color: rgba(255, 255, 255, 0.5);
}
.widget-top-search form button:hover, .widget-top-search form button:active, .widget-top-search form button:focus {
  color: white;
}

/*
00 - widget notification
------------------------------------------------------------*/
.widget-im.notification ul li section {
  -webkit-box-shadow: none;
  box-shadow: none;
  margin-bottom: 0px;
  padding: 9px 15px 9px 15px;
}
.widget-im.notification ul li section:after {
  border-bottom: 1px #ededed solid;
  bottom: 0px;
  content: "";
  left: 0;
  position: absolute;
  right: 0;
}
.widget-im.notification ul li section h4 {
  font-size: 14px;
  color: #777;
}
.widget-im.notification ul li section h4 small {
  color: #BBB;
  font-size: 12px;
}
.widget-im.notification ul li section .pre-text {
  font-size: 12px;
  padding-top: 4px;
  width: 95%;
}
.widget-im.notification ul li:last-child section:after {
  border-bottom: 0;
}
.widget-im.notification .btn-block {
  border-radius: 0;
  margin: 0;
}
.widget-im.notification ul li .im-thumbnail {
  box-shadow: inset -3px 3px 20px rgba(0, 0, 0, 0.1);
}
.widget-im.notification ul li .im-thumbnail i {
  font-size: 24px;
  height: 60px;
  line-height: 60px;
  color: rgba(0, 0, 0, 0.2) !important;
}
.widget-im.notification .im-confirm-group .btn {
  height: 60px;
}

.modal-body .widget-im.notification {
  background-color: #FFF;
  padding: 0px;
}

/*
00 - widget inbox
------------------------------------------------------------*/
.widget-im {
  overflow: hidden;
  position: relative;
}
.widget-im ul li {
  position: relative;
}
.widget-im ul li i {
  color: #EB5E28;
  
}
.widget-im ul li a:hover i {
  color: #48a770;
}
.widget-im ul li.empty {
  color: #ABAAA5;
  padding: 25px 0;
  text-align: center;
}
.widget-im ul li.empty i {
  color: #EDECE5;
  display: block;
  margin-bottom: 15px;
}
.widget-im ul li section {
  background-color: #FFF;
  border-color: #FFF;
  margin-bottom: 10px;
  padding: 15px 17px 15px 17px;
  position: relative;
  -webkit-transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  z-index: 1;
}
.widget-im ul li section.push-in {
  -webkit-transform: translate3d(-40%, 0, 0);
  transform: translate3d(-40%, 0, 0);
}
.widget-im ul li section.push-in a.im-delete:after, .widget-im ul li section.push-in a.im-action:after {
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.widget-im ul li section label {
  border-left: 20px solid transparent;
  border-top: 20px solid #99CC00;
  content: "";
  position: absolute;
  right: 0;
  top: 0;
}
.widget-im ul li section.thumbnail-in {
  padding-left: 92px;
}
.widget-im ul li h4 {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.widget-im ul li .pre-text {
  color: #CCC;
  overflow: hidden;
  padding: 5px 0 0;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%;
}
.widget-im ul li .im-thumbnail {
  background-color: #FBFBFB;
  border-right: 1px #F5F5F5 solid;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 75px;
  z-index: 2;
}
.widget-im ul li .im-thumbnail img {
  border-radius: 2px;
  height: 61px;
  margin-left: 7px;
  margin-top: 7px;
  width: 61px;
}
.widget-im ul li .im-thumbnail i {
  font-size: 30px;
  height: 75px;
  line-height: 75px;
  text-align: center;
  width: 75px;
}
.widget-im .im-confirm-group {
  position: absolute;
  right: 0;
  top: 0;
  width: 40%;
  z-index: 0;
}
.widget-im .im-confirm-group .btn {
  border: 0;
  border-radius: 0;
  height: 75px;
  padding: 0;
}
.widget-im .widget-im-tools span + span {
  color: #999;
  margin-left: 7px;
}
.widget-im ul li time {
  background-color: #F7F6F1;
  border-radius: 2px;
  color: #BBB;
  display: inline-block;
  font-size: 11px;
  height: 20px;
  line-height: 20px;
  padding: 0 10px;
}

.modal-body .widget-im {
  background-color: #e5e9ec;
  padding: 20px;
}

.widget-timeline-custom {
  background-color: #e5e9ec;
}


/******/
.align-xs-left, .align-sm-left, .align-md-left, .align-lg-left {
	text-align:left;
}
.align-xs-center, .align-sm-center, .align-md-center, .align-lg-center {
	text-align:center;
}
.align-xs-right, .align-sm-right, .align-md-right, .align-lg-right {
	text-align:right;
}




/***avatar***/
.avatar {
  border: 2px #FFF solid;
  display: inline-block;
  margin-right: 5px;
  position: relative;
}
.avatar img {
  width: 34px;
}

.avatar-small {
  width: 50px;
}

.avatar-mini {
  width: 34px;
}

.avatar-slide {
  color: #FFF;
  padding: 25px 0px 0;
  position: relative;
}
.avatar-slide .avatar-detail {
  margin: 5px auto 25px;
  padding: 5px 15px;
  text-align: center;
}
.avatar-slide .avatar-detail p {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-bottom: 5px;
}
.avatar-slide .avatar-detail p a {
  color: #0aa699;
  display: block;
  margin-bottom: 5px;
}
.avatar-slide .avatar-detail p:first-child {
  font-size: 24px;
}
.avatar-slide .avatar-detail span {
  background-color: rgba(255, 255, 255, 0.4);
  color: #FFF;
  display: inline-block;
  font-size: 10px;
  line-height: 25px;
  margin: 5px 5px 0 0;
  padding: 1px 7px;
}

.sidebar-normal #emp-notification-leftmenustatscount span {
  background-color: rgba(255, 255, 255, 0.4);
  color: #FFF;
  display: inline-block;
  font-size: 10px;
  line-height: 25px;
  margin: 5px 5px 0 0;
  padding: 1px 7px;
}


.avatar-slide .avatar-link {
  margin-bottom: 1px;
}
.avatar-slide .avatar-link a {
  color: #FFF;
  font-size: 16px;
  line-height: 35px;
  position: relative !important;
}
.avatar-slide .avatar-link a i {
  height: 20px;
  text-align: center;
  width: 20px;
  z-index: 3;
}
.avatar-slide .avatar-link a.btn {
  border-left: 1px rgba(0, 0, 0, 0.2) solid;
  border-radius: 0;
  background: #372b32;
}
.avatar-slide .avatar-link a.btn:first-child {
  border-left: 0;
}
.avatar-slide .avatar-link a.btn:hover {
  background: #2e242a;
}
.avatar-slide .avatar-link a em {
  height: 14px;
  margin-left: 5px;
  margin-top: -4px;
  position: absolute;
  top: 50%;
  width: 14px;
}
.avatar-slide .avatar-link a em:after {
  background-color: #FFCC33;
  content: "";
  height: 8px;
  left: 0;
  position: absolute;
  width: 8px;
}
.avatar-slide .avatar-link a em.red:after {
  background-color: #E02222;
}
.avatar-slide .avatar-link a em.green:after {
  background-color: #A9D96C;
}
.avatar-slide .avatar-link a em:before {
  background: transparent;
  border: 3px solid #FFF;
  content: "";
  height: 24px;
  left: -8px;
  filter: alpha(opacity=0);
  opacity: 0;
  position: absolute;
  top: -8px;
  width: 24px;
}
.avatar-slide .avatar-link a em.active:before {
  -webkit-animation: sonar 2s ease-out infinite;
  -moz-animation: sonar 2s ease-out infinite;
  animation: sonar 2s ease-out infinite;
}

@-webkit-keyframes sonar {
  from {
    -webkit-transform: scale(0);
    opacity: 1;
  }

  to {
    -webkit-transform: scale(1);
    opacity: 0;
  }
}
@-moz-keyframes sonar {
  from {
    -moz-transform: scale(0);
    opacity: 1;
  }

  to {
    -moz-transform: scale(1);
    opacity: 0;
  }
}
@keyframes sonar {
  from {
    transform: scale(0);
    opacity: 1;
  }

  to {
    transform: scale(1);
    opacity: 0;
  }
}
.avatar-chart {
  display: inline-block;
  height: 118px;
  left: 50%;
  margin-left: -59px;
  position: relative;
  text-align: center;
  width: 118px;
}
.avatar-chart canvas {
  left: 0;
  position: absolute;
  top: 0;
}
.avatar-chart img {
  left: 11px;
  position: absolute;
  top: 11px;
  width: 96px;
}
.avatar-chart .percent {
  background-color: #f35958;
  color: white !important;
  display: inline-block !important;
  font-size: 10px !important;
  padding: 5px 10px;
  position: absolute !important;
  right: -40px;
  text-align: center;
  z-index: 2;
  width: auto !important;
  height: auto !important;
  line-height: 15px !important;
}
.avatar-chart .percent:after {
  content: '%';
  font-size: 0.8em !important;
  margin-left: 0.1em;
}
.avatar-chart .percent:before {
  height: 0;
  width: 0;
  border-color: transparent;
  border-style: solid;
  border-width: 5px;
  border-right-color: #f35958;
  content: "";
  left: -10px;
  position: absolute;
  top: 7px;
}


/*mail box*/
#mailboxXX {
/*  -webkit-transition: transform 0.5s;
  -moz-transition: transform 0.5s;
  transition: transform 0.5s;
  background-color: white;
  bottom: 0;
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  margin-left: 0px;
  margin-top: 55px;
  overflow: hidden;
  position: absolute;
  top: 70px;   */
  
/*  overflow: scroll;
  overflow-x: hidden;
  */ 
  overflow: scroll;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;

   height:600px;
   
  
   /*
   max-height: 80%;
   height: 80%;
    height:400px;
    max-height: 100%;
  height: 100%;
  */
  z-index: 3;
 /*  height:320px;*/

  
  width: 340px;
}


/*todo mailbox*/

#nav-scroll, #mailbox #nav-scroll {
  overflow: scroll;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  height: 90%;
  padding-bottom: 220px;
  padding-top: 50px;
  position: absolute;
  width: 267px;
}

#content.after-mail-box {
  overflow: scroll;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  bottom: 0;
  left: 0;
  margin-left: 320px;
  position: absolute;
  right: 0;
  top: 70px; 
}
#content.after-mail-box::-webkit-scrollbar, #main::-webkit-scrollbar, #nav-scroll::-webkit-scrollbar, #mailbox #nav-scroll::-webkit-scrollbar, .mm-menu > .mm-panel::-webkit-scrollbar,
.ms-list::-webkit-scrollbar {
  background: #f2f0eb;
  width: 5px;
}
#content.after-mail-box::-webkit-scrollbar-thumb, #main::-webkit-scrollbar-thumb, #nav-scroll::-webkit-scrollbar-thumb, #mailbox #nav-scroll::-webkit-scrollbar-thumb, .mm-menu > .mm-panel::-webkit-scrollbar-thumb,
.ms-list::-webkit-scrollbar-thumb {
  background: #cdcdcd;
}

#nav-scroll::-webkit-scrollbar, #mailbox #nav-scroll::-webkit-scrollbar, #mailbox #nav-scroll::-webkit-scrollbar, .mm-menu > .mm-panel::-webkit-scrollbar {
  width: 17px;
}


body.leftMenu #nav-scroll, body.leftMenu #mailbox #nav-scroll, #mailbox body.leftMenu #nav-scroll {
  padding-top: 0;
}



#content {
    padding: 70px 30px 0;
}

#content.after-mail-box:after {
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  background-color: rgba(0, 0, 0, 0.45);
  content: "";
  height: 100%;
  left: 0;
  filter: alpha(opacity=0);
  opacity: 0;
  position: absolute;
  top: 0;
  visibility: hidden;
  width: 100%;
  z-index: 99;
}
#content.after-mail-box .mail-tools {
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  background-color: #FFF;
  margin-bottom: 15px;
  padding: 10px 10px 8px;
  text-align: center;
}
#content.after-mail-box .mail-tools h4 {
  line-height: 34px;
}


#mailbox {
  -webkit-transition: transform 0.5s;
  -moz-transition: transform 0.5s;
  transition: transform 0.5s;
  background-color: white;
  bottom: 0;
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  margin-left: -10px;
  margin-top: 125px;
  overflow: hidden;
  position: absolute;
  top: 70px; 
  width: 320px;
}


#mailbox #nav-scroll {
  padding: 0;
  width: 337px;
}



/*
00 - Mobile device fixed
----------------------*/
.isMobile #main.none {
  -webkit-transition: none;
  transition: none;
}
.isMobile #nav-scroll, .isMobile #mailbox #nav-scroll, #mailbox .isMobile #nav-scroll {
  width: 250px;
}
.isMobile #mailbox #nav-scroll {
  width: 300px !important;
}
.isMobile .widget-chat .chat-body {
  margin-right: 0;
}
.isMobile #main::-webkit-scrollbar, .isMobile #nav-scroll::-webkit-scrollbar, .isMobile #mailbox #nav-scroll::-webkit-scrollbar, #mailbox .isMobile #nav-scroll::-webkit-scrollbar,
.isMobile #mailbox #nav-scroll::-webkit-scrollbar,
.isMobile .mm-menu > .mm-panel::-webkit-scrollbar,
.isMobile .ms-list::-webkit-scrollbar {
  background: transparent;
}
.isMobile #main::-webkit-scrollbar-thumb, .isMobile #nav-scroll::-webkit-scrollbar-thumb, .isMobile #mailbox #nav-scroll::-webkit-scrollbar-thumb, #mailbox .isMobile #nav-scroll::-webkit-scrollbar-thumb,
.isMobile #mailbox #nav-scroll::-webkit-scrollbar-thumb,
.isMobile .mm-menu > .mm-panel::-webkit-scrollbar-thumb,
.isMobile .ms-list::-webkit-scrollbar-thumb {
  background: transparent;
}
.isMobile #nav-scroll::-webkit-scrollbar, .isMobile #mailbox #nav-scroll::-webkit-scrollbar, #mailbox .isMobile #nav-scroll::-webkit-scrollbar,
.isMobile #mailbox #nav-scroll::-webkit-scrollbar,
.isMobile .mm-menu > .mm-panel::-webkit-scrollbar {
  width: auto;
}

@media all and (max-width: 767px) {
  
  .profile-cover {
    margin-right: 0;
    position: relative;
    text-align: center;
  }

  .profile-status {
    margin-top: 15px;
    position: relative;
  }

  .profile-avatar {
    left: 0;
    right: 0;
  }

  #content.after-mail-box {
    margin-left: 0px;
  }

  #mainEmp.in #content.after-mail-box {
    overflow: hidden;
  }

  
  
  #mailbox {
    margin-left: 0;
    z-index: 100;
    -webkit-transform: translate3d(-320px, 0, 0);
    -moz-transform: translate3d(-320px, 0, 0);
    -ms-transform: translate3d(-320px, 0, 0);
    -o-transform: translate3d(-320px, 0, 0);
    transform: translate3d(-320px, 0, 0);
  }

  
  #mainEmp.in #content.after-mail-box:after {
    opacity: 1;
    visibility: visible;
  }
  
  
  #mainEmp.in #mailbox {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
 
 
  #mainEmp.in .mail-collapse {
    z-index: 100;
  }

  .widget-timeline li {
    margin-bottom: 45px;
  }
  .widget-timeline li.left section, .widget-timeline li.right section {
    margin: auto;
  }
  .widget-timeline li.left, .widget-timeline li.right {
    clear: all;
    float: none;
    width: 100%;
  }
  .widget-timeline li.left:before {
    border-bottom: 10px solid;
    border-bottom-color: inherit;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    left: 50%;
    margin-left: -10px;
    right: auto;
    top: -20px;
  }
  .widget-timeline li.right:before {
    border-bottom: 10px solid;
    border-bottom-color: inherit;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    left: 50%;
    margin-left: -10px;
    right: auto;
    top: -20px;
  }
  .widget-timeline li.right + li.left:before {
    top: -20px;
  }
  .widget-timeline li.left + li.right:before {
    top: -20px;
  }
  .widget-timeline li.left:after {
    left: 50%;
    margin-left: -6px;
    right: auto;
    top: -30px;
  }
  .widget-timeline li.right:after {
    left: 50%;
    margin-left: -6px;
    right: auto;
    top: -30px;
  }
  .widget-timeline li.right + li.left:after {
    top: -30px;
  }
  .widget-timeline li.left + li.right:after {
    top: -30px;
  }
}









.mail-menu ul {
  padding: 0px 0px 30px;
}
.mail-menu ul li {
  position: relative;
  border-bottom: 1px rgba(0, 0, 0, 0.1) solid;
}
.mail-menu ul li.mail-menu-label {
  text-transform: uppercase;
  font-family: Open Sans;
  font-size: 16px;
  color: #A1A1A1;
  padding: 10px 20px;
}
.mail-menu ul li.mail-menu-btn {
  padding: 0 15px 25px;
}
.mail-menu ul li.mail-menu-btn button {
  border-radius: 0;
  line-height: 35px;
  text-transform: uppercase;
  margin: 0;
}
.mail-menu ul li.mail-menu-btn button i {
  margin-right: 5px !important;
}
.mail-menu ul li a {
  display: block;
  border-left: 5px solid;
  border-left-color: transparent;
  padding: 10px 20px;
  color: #666;
  text-transform: capitalize;
  -webkit-transition: all 0.25s;
  -moz-transition: all 0.25s;
  transition: all 0.25s;
}
.mail-menu ul li.active a {
  border-left-color: #6CC3A0;
  background-color: #2E2E31;
  color: #EFEFEF;
}
.mail-menu ul li a:hover {
  background-color: #2E2E31;
  color: #CCC;
}
.mail-menu ul li i {
  margin-right: 15px;
  width: 17px;
  height: 17px;
  text-align: center;
}
.mail-menu ul li .badge {
  position: absolute;
  right: 20px;
}
.mail-menu ul li span.label {
  position: absolute;
  right: 20px;
  display: inline-block;
  width: 15px;
  height: 15px;
  top: 50%;
  margin-top: -7px;
  padding: 0;
}


/* mail inbox */
.mail-list {
  padding: 10px 25px;
}
.mail-list header {
  border-bottom: 1px #ededed solid;
  padding: 10px 0px 25px;
  background-color: #FFF;
}
.mail-list header .header-text {
  font-family: "Ubuntu";
  font-size: 3.5em;
  text-transform: capitalize;
  color: #717171;
  display: inline-block;
  margin-bottom: 10px;
}
.mail-list ul.mlist li {
  position: relative;
  padding: 10px;
  border-bottom: 1px #ededed solid;
}
.mail-list ul.mlist li:hover {
  background-color: #FCFCFC;
}
.mail-list ul.mlist li .iCheck {
  position: relative;
}
.mail-list ul.mlist li span {
  display: inline-block;
  padding: 0px 40px 0 0;
}
.mail-list ul.mlist li span-inbox {
  display: inline-block;
  padding: 0px 40px 0 30px;
}
.mail-list ul.mlist li p {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.mail-list ul.mlist li p a {
  font-size:14px;

}

.mail-list ul.mlist li h5 {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  padding-top: 3px;
  width: 180px;
}

.mail-list ul.mlist li h5 a { font-size:14px;

}

.mail-list ul.mlist li p {
  padding-top: 10px;
  margin: 0;
  width: 210px;
  color: #CCC;
}
.mail-list ul.mlist li p strong {
  color: #999;
}
.mail-list ul.mlist li time {
  font-size: 10px;
  color: #BBB;
}
.mail-list ul.mlist li label {
  content: "";
  top: -1px;
  right: 0px;
  position: absolute;
  border-top: 20px solid #99CC00;
  border-left: 20px solid transparent;
}
.mail-list ul.mlist li .mail-attach {
  position: absolute;
  right: 17px;
  bottom: 10px;
  color: #DDD;
}
.mail-list ul.mlist li .mail-tools {
  position: absolute;
  right: 10px;
  top: 10px;
  display: none;
}
.mail-list ul.mlist li .mail-tools a {
  display: inline-block;
  padding-right: 5px;
  color: #AAA;
}
.mail-list ul.mlist li:hover .mail-tools {
  display: block;
}
.mail-list ul.mlist li a.mail-favourite {
  position: absolute;
  left: 12px;
  top: 35px;
  font-size: 18px;
  color: #EDEDED;
}
.mail-list ul.mlist li a.mail-favourite.active {
  color: #FFCC33;
}

.mail-pagination {
  display: inline-block;
  line-height: 34px;
  height: 34px;
  margin-top: 20px;
  padding: 0 10px;
  font-style: italic;
  font-size: 12px;
  float: left;
}

.mail-title section {
  padding: 10px 15px 15px;
}
.mail-title section .mail-thumbnail {
  display: inline-block;
}
.mail-title section .mail-thumbnail img {
  width: 40px;
  border: 2px #FFF solid;
}
.mail-title section span {
  display: inline-block;
  background-color: #CCC;
  background-color: rgba(0, 0, 0, 0.1);
  margin: 3px;
  color: #FFF;
  padding: 5px 10px;
  border-radius: 2px;
  font-size: 11px;
  font-family: Arial, Helvetica, sans-serif;
}
.mail-title section span a {
  color: #DDD;
}
.mail-title section span a:hover {
  color: #FFF;
}

.mail-tools-action {
  margin-bottom: 25px;
  border-top: 1px #EDEDED solid;
}

.mail-seach {
  padding: 0 0 15px;
}
.mail-seach input {
  background-color: #EDEDED;
  color: #AAA;
}
.mail-seach input:focus {
  border-color: #DDD;
}
.mail-seach input:-moz-placeholder, .mail-seach input::-moz-placeholder, .mail-seach input:-ms-input-placeholder, .mail-seach input::-webkit-input-placeholder {
  color: #CCC;
}

.mail-attach-list {
  border-top: 1px #EDEDED solid;
  padding: 15px 0 0;
  margin-bottom: 5px;
}
.mail-attach-list h5 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 700;
}
.mail-attach-list ul {
  padding: 10px 5px 0;
}
.mail-attach-list ul li {
  padding-bottom: 5px;
  font-size: 12px;
}
.mail-attach-list ul li .label {
  margin-right: 5px;
}





/* content inbox */


#xxcontent.after-mail-box {
/*  overflow: scroll;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  */
  bottom: 0;
  left: 0;
  margin-left: 380px;
  position: absolute;
  right: 0;
  top: 110px; 
}

#content.after-mail-box::-webkit-scrollbar, #main::-webkit-scrollbar, #nav-scroll::-webkit-scrollbar, #mailbox #nav-scroll::-webkit-scrollbar, .mm-menu > .mm-panel::-webkit-scrollbar,
.ms-list::-webkit-scrollbar {
  background: #f2f0eb;
  width: 5px;
}
#content.after-mail-box::-webkit-scrollbar-thumb, #main::-webkit-scrollbar-thumb, #nav-scroll::-webkit-scrollbar-thumb, #mailbox #nav-scroll::-webkit-scrollbar-thumb, .mm-menu > .mm-panel::-webkit-scrollbar-thumb,
.ms-list::-webkit-scrollbar-thumb {
  background: #cdcdcd;
}

#nav-scroll::-webkit-scrollbar, #mailbox #nav-scroll::-webkit-scrollbar, #mailbox #nav-scroll::-webkit-scrollbar, .mm-menu > .mm-panel::-webkit-scrollbar {
  width: 17px;
}




/*table*/
table {
	font-size:13px;
}


table thead {
	background-color:#F9F8F5;
}
.table thead > tr > th, .table-bordered thead > tr > th {
	/*
	color:#A49E93;
	*/
	color:#898989;
	padding:5px 5px;
	font-weight:600;
	font-size:13px
}

.table thead > tr > th a, .table-bordered thead > tr > th a { 
font-weight:500;
font-size:13px;
 
}


.table thead > tr > th, .table tbody > tr > th, .table tfoot > tr > th, .table thead > tr > td, .table tbody > tr > td, .table tfoot > tr > td {
	border-top: 1px solid #EDEDED;
	padding:5px 5px;
}
.table-bordered {
	border: 1px solid #EDEDED;
}
.table-bordered > thead > tr > th, .table-bordered > tbody > tr > th, .table-bordered > tfoot > tr > th, .table-bordered > thead > tr > td, .table-bordered > tbody > tr > td, .table-bordered > tfoot > tr > td {
	border-color: #EDEDED;
}
.table-striped > tbody > tr:nth-child(odd ) > td, .table-striped > tbody > tr:nth-child(odd ) > th {
 background-color: #FFF;
}
.table-striped > tbody > tr:nth-child(even) > td, .table-striped > tbody > tr:nth-child(even) > th {
 background-color: #FBFAF8;
 background-color: rgba(247, 246, 241, 0.2);
}
.table-hover > tbody > tr:hover > td, .table-hover > tbody > tr:hover > th {
	background-color: #f5f5f5;
}



.glyphic {
  
    top: 1px;
    display: inline-block;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}



.circle {
 display:inline-block;
 width:7px;
 height:7px;
 border-radius:500px;
 margin:0 .5em;
 background-color:#ddd;
 vertical-align:baseline;
 border:2px solid transparent
}
.circle.text-left {
 margin-left:0
}
.circle.text-right {
 margin-right:0
}
.circle-primary {
 background-color:#5d9cec
}
.circle-success {
 background-color:#27c24c
}
.circle-info {
 background-color:#23b7e5
}
.circle-warning {
 background-color:#ff902b
}
.circle-danger {
 background-color:#f05050
}
.circle-green {
 background-color:#37bc9b
}
.circle-pink {
 background-color:#f532e5
}
.circle-inverse {
 background-color:#131e26
}
.circle-purple {
 background-color:#7266ba
}
.circle-sm {
 width:5px;
 height:5px
}
.circle-lg {
 width:11px;
 height:11px
}
.circle-xl {
 width:18px;
 height:18px
}
.circle-outline {
 background-color:transparent
}
.circle-outline.circle-primary {
 border:1px solid #5d9cec
}
.circle-outline.circle-success {
 border:1px solid #27c24c
}
.circle-outline.circle-info {
 border:1px solid #23b7e5
}
.circle-outline.circle-warning {
 border:1px solid #ff902b
}
.circle-outline.circle-danger {
 border:1px solid #f05050
}





/* Shop - Single
-----------------------------------------------------------------*/

.single-product .product {
	width: 100%;
	margin: 0;
}

.shop-quick-view-ajax,
.portfolio-ajax-modal {
	position: relative;
	background-color: #FFF;
	width: 800px;
	margin: 0 auto;
}

.single-product .product-image,
.single-product .product-image img { height: auto; }

.single-product .product-desc { padding: 0; }

.single-product .product-title h2 {
	font-size: 28px;
	margin-bottom: 8px;
}

.single-product .product-price {
	float: left;
	font-size: 24px;
	color: #1ABC9C;
	margin-bottom: 0;
}

.single-product .product-rating {
	float: right;
	position: relative;
	top: 9px;
}

.single-product .product-desc .line { margin: 20px 0; }

.quantity {
	float: left;
	margin-right: 30px;
}

.quantity .qty {
	float: left;
	width: 50px;
	height: 40px;
	line-height: 40px;
	border: 0;
	border-left: 1px solid #DDD;
	border-right: 1px solid #DDD;
	background-color: #EEE;
	text-align: center;
	margin-bottom: 0;
}

.quantity .plus,
.quantity .minus {
	display: block;
	float: left;
	cursor: pointer;
	border: 0px transparent;
	padding: 0;
	width: 36px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	background-color: #EEE;
	font-size: 16px;
	font-weight: bold;
	transition: background-color .2s linear;
	-webkit-transition: background-color .2s linear;
	-o-transition: background-color .2s linear;
}

.quantity .plus:hover,
.quantity .minus:hover { background-color: #DDD; }

.quantity .qty:focus,
.quantity .plus:focus,
.quantity .minus:focus {
	box-shadow: none !important;
	outline: 0 !important;
}

.single-product .add-to-cart.button {
	height: 40px;
	line-height: 40px;
}

.product-meta {
	font-size: 13px;
	color: #777;
}

.product-meta > .panel-body { margin-bottom: -5px; }

.product-meta > .panel-body > span {
	display: block;
	margin-bottom: 5px;
}


.single-product .feature-box.fbox-plain.fbox-small { padding-left: 26px; }

.single-product .feature-box.fbox-plain.fbox-small .fbox-icon { width: 20px; }

.single-product .feature-box.fbox-plain.fbox-small h3 {
	font-size: 15px;
	font-weight: bold;
	line-height: 18px;
	margin-bottom: 7px;
}

.single-product .feature-box.fbox-plain.fbox-small p { margin-left: -26px; }

.single-product .feature-box.fbox-plain.fbox-small .fbox-icon i { font-size: 18px; }


/* Individual Product
-----------------------------------------------------------------*/

.product.iproduct {
	float: none;
	margin: 0;
	padding: 0;
	width: 100%;
}

.iproduct .product-image,
.iproduct .product-image a,
.iproduct .product-image img { height: auto; }



/* Portfolio Single - Content
-----------------------------------------------------------------*/

.portfolio-single-content { font-size: 14px; }

.portfolio-single-content h2 {
	margin: 0 0 20px;
	padding: 0;
	font-size: 20px;
	font-weight: 600 !important;
}


.portfolio-ajax-modal { width: 1000px !important; }

.modal-padding { padding: 40px; }

.ajax-modal-title {
	background-color: #F9F9F9;
	border-bottom: 1px solid #EEE;
	padding: 25px 40px;
}

.ajax-modal-title h2 {
	font-size: 26px;
	margin-bottom: 0;
}


#portfolio-ajax-wrap {
	position: relative;
	max-height: 0;
	overflow: hidden;
	-webkit-transition: max-height .4s ease;
	-o-transition: max-height .4s ease;
	transition: max-height .4s ease;
}

#portfolio-ajax-wrap.portfolio-ajax-opened { max-height: 1200px; }

#portfolio-ajax-container {
	display: none;
	padding-bottom: 60px;
}

#portfolio-ajax-single h2 { font-size: 26px; }




/* ----------------------------------------------------------------
	Shop
-----------------------------------------------------------------*/


.shop {
	position: relative;
	margin: 0 -20px -20px 0;
}

.product { position: relative; }

.shop .product {
	float: left;
	padding: 0 20px 20px 0;
	width: 25%;
}

.product-image {
	position: relative;
	width: 100%;
	height: auto;
	overflow: hidden;
}

.product-image > a,
.product-image .slide a,
.product-image img {
	display: block;
	width: 100%;
	height: 100%;
}

body:not(.device-touch):not(.device-xs):not(.device-xxs) .product-image > a {
	-webkit-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
}

.product-image > a:nth-of-type(2) {
	opacity: 0;
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
}

.product-image:hover > a:nth-of-type(2) {
	opacity: 1;
	z-index: 2;
}

.product-desc {
	padding: 15px 0;
	font-size: 14px;
}

.product-title { margin-bottom: 7px; }

.product-title h3 {
	margin: 0;
	font-size: 20px;
}

.product-title h3 a,
.single-product .product-title h2 a { color: #333; }

.product-title h3 a:hover,
.single-product .product-title h2 a:hover { color: #1ABC9C; }

.product-price {
	font-size: 18px;
	font-weight: 600;
	color: #444;
	margin-bottom: 4px;
}

.product-price del {
	font-weight: 400;
	font-size: 90%;
	color: #888;
}

.product-price ins {
	text-decoration: none;
	color: #1ABC9C;
}

.product-overlay {
	position: absolute;
	width: 100%;
	height: 44px;
	line-height: 44px;
	top: auto;
	bottom: -44px;
	left: 0;
	z-index: 6;
	overflow: hidden;
}

body:not(.device-touch):not(.device-xs):not(.device-xxs) .product-overlay {
	-webkit-transition: bottom .3s ease-in-out;
	-o-transition: bottom .3s ease-in-out;
	transition: bottom .3s ease-in-out;
}

.product:hover .product-overlay { bottom: 0; }

.product-overlay a {
	display: block;
	float: left;
	width: 50%;
	font-size: 13px;
	color: #333;
	background-color: #F5F5F5;
	text-align: center;
	border-right: 1px solid rgba(0,0,0,0.1);
}

body:not(.device-touch):not(.device-xs):not(.device-xxs) .product-overlay a {
	-webkit-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}

.product-overlay a.item-quick-view { border-right: 0; }

.product-overlay a i {
	position: relative;
	top: 1px;
	font-size: 14px;
	margin-right: 3px;
}

.product-overlay a:hover {
	background-color: #333;
	color: #FFF;
	text-shadow: 1px 1px 1px rgba(0,0,0,0.2);
}

.sale-flash {
	position: absolute;
	top: 10px;
	left: 10px;
	padding: 6px 10px;
	background-color: #1ABC9C;
	color: #FFF;
	text-shadow: 1px 1px 1px rgba(0,0,0,0.2);
	border-radius: 2px;
	z-index: 5;
}

.sale-flash.out-of-stock { background-color: #777; }









/* ----------------------------------------------------------------
	Columns & Grids
-----------------------------------------------------------------*/


.postcontent,
.col_full { width: 100%; }
.col_half { width: 48%; }
.col_one_third { width: 30.63%; }
.col_two_third { width: 65.33%; }
.col_one_fourth { width: 22%; }
.col_three_fourth { width: 74%; }
.col_one_fifth { width: 16.8%; }
.col_two_fifth { width: 37.6%; }
.col_three_fifth { width: 58.4%; }
.col_four_fifth { width: 79.2%; }
.col_one_sixth { width: 13.33%; }
.col_five_sixth { width: 82.67%; }
body.stretched .container-fullwidth {
	position: relative;
	padding: 0 60px;
	width: 100%;
}


.postcontent { width: 860px; }
.postcontent.bothsidebar { width: 580px; }
.col_full,
.col_half,
.col_one_third,
.col_two_third,
.col_three_fourth,
.col_one_fourth,
.col_one_fifth,
.col_two_fifth,
.col_three_fifth,
.col_four_fifth,
.col_one_sixth,
.col_five_sixth {
	display: block;
	position: relative;
	margin-right: 4%;
	margin-bottom: 50px;
	float: left;
}


.postcontent { margin-right: 40px; }

.col_full {
	clear: both;
	float: none;
	margin-right: 0;
}

.postcontent.col_last { float: right; }

.col_last {
	margin-right: 0 !important;
	clear: right;
}


/* ----------------------------------------------------------------
	Flex Slider
-----------------------------------------------------------------*/


.fslider,
.fslider .flexslider,
.fslider .slider-wrap,
.fslider .slide,
.fslider .slide > a,
.fslider .slide > img,
.fslider .slide > a > img {
	position: relative;
	display: block;
	width: 100%;
	height: auto;
	overflow: hidden;
	-webkit-backface-visibility: hidden;
}

.fslider { min-height: 32px; }


.flex-container a:active,
.flexslider a:active,
.flex-container a:focus,
.flexslider a:focus  { outline: none; border: none; }
.slider-wrap,
.flex-control-nav,
.flex-direction-nav {margin: 0; padding: 0; list-style: none; border: none;}

.flexslider {position: relative;margin: 0; padding: 0;}
.flexslider .slider-wrap > .slide {display: block; -webkit-backface-visibility: hidden;} /*hack change*/
.flexslider .slider-wrap img {width: 100%; display: block;}
.flex-pauseplay span {text-transform: capitalize;}

.slider-wrap:after {content: "."; display: block; clear: both; visibility: hidden; line-height: 0; height: 0;}
html[xmlns] .slider-wrap {display: block;}
* html .slider-wrap {height: 1%;}

.no-js .slider-wrap > .slide:first-child {display: block;}

.flex-viewport {
	max-height: 2000px;
	-webkit-transition: all 1s ease;
	-o-transition: all 1s ease;
	transition: all 1s ease;
}

.flex-control-nav {
	position: absolute;
	z-index: 10;
	text-align: center;
	top: 14px;
	right: 10px;
	margin: 0;
}

.flex-control-nav li {
	float: left;
	display: block;
	margin: 0 3px;
	width: 10px;
	height: 10px;
}

.flex-control-nav li a {
	display: block;
	cursor: pointer;
	text-indent: -9999px;
	width: 10px !important;
	height: 10px !important;
	border: 1px solid #FFF;
	border-radius: 50%;
	transition: all .3s ease-in-out;
	-webkit-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
}

.flex-control-nav li:hover a,
.flex-control-nav li a.flex-active { background-color: #FFF; }


.nobottommargin { margin-bottom: 0 !important; }


.clear {
	clear: both;
	display: block;
	font-size: 0px;
	height: 0px;
	line-height: 0;
	width: 100%;
	overflow:hidden;
}





/*
00 -  Chart tooltip
------------------------------------------------------------*/
.jqstooltip {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}

/* Chart*/
.jqstooltip, #flotTip {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}

.chart_flot, #flotTip, .flot-text {
  color: #FFF;
  font-family: Arial, Helvetica, sans-serif;
}

#tooltipPie {
  font-size: 10px;
  padding: 5px;
}

#flotTip {
  background-color: #1b1e24;
  font-size: 11px;
  padding: 4px 7px;
  text-align: center;
  text-shadow: none;
}

/*
00 - label of chart (flot ,sparkline)
------------------------------------------------------------*/
.label-flot-custom {
  padding: 20px;
}
.label-flot-custom li {
  color: #999;
  display: inline-block;
  font-size: 12px;
  padding: 7px;
}

.label-sparkline li {
  color: #999;
  display: inline-block;
  font-size: 12px;
  padding: 7px;
}

.label-flot-custom li span, .label-sparkline li span {
  border-radius: 50%;
  display: inline-block;
  height: 10px;
  margin-right: 5px;
  width: 10px;
}

.label-flot-custom-title {
  font-size: 1.5em;
  left: 0;
  position: absolute;
  right: 0;
  text-align: center;
}

.label-sparkline {
  background-color: rgba(255, 255, 255, 0.2);
  padding: 5px;
}



/*
00 - colpick Color Picker
------------------------------------------------------------*/
.colpick {
  background: #FFF;
  border: 1px solid #CCC;
  display: none;
  font-family: Arial, Helvetica, sans-serif;
  height: 170px;
  margin-top: 3px;
  position: absolute;
  width: 346px;
  z-index: 10;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
}
.colpick:before {
  border-bottom: 9px solid;
  border-bottom-color: inherit;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  content: '';
  display: inline-block;
  left: 7px;
  position: absolute;
  top: -9px;
}
.colpick:after {
  border-bottom: 8px solid;
  border-bottom-color: #FFF;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  content: '';
  display: inline-block;
  left: 8px;
  position: absolute;
  top: -8px;
}

.colpick_flat {
  display: block;
  overflow: hidden;
  position: relative;
}

.colpick_color {
  cursor: crosshair;
  height: 156px;
  left: 7px;
  outline: 1px solid #aaa;
  overflow: hidden;
  position: absolute;
  top: 7px;
  width: 156px;
}

.colpick_color_overlay1 {
  background-image: -webkit-linear-gradient(left, white, rgba(255, 255, 255, 0));
  background-image: linear-gradient(to right, white, rgba(255, 255, 255, 0));
  height: 156px;
  left: 0;
  position: absolute;
  top: 0;
  width: 156px;
}

.colpick_color_overlay2 {
  background-image: -webkit-linear-gradient(top, transparent, black);
  background-image: linear-gradient(to bottom, transparent, black);
  height: 156px;
  left: 0;
  position: absolute;
  top: 0;
  width: 156px;
}

.colpick_selector_outer {
  background: none;
  border: 1px solid black;
  border-radius: 50%;
  height: 13px;
  margin: -7px 0 0 -7px;
  position: absolute;
  width: 13px;
}

.colpick_selector_inner {
  border: 2px solid white;
  border-radius: 50%;
  height: 11px;
  position: absolute;
  width: 11px;
}

.colpick_hue {
  border: 1px solid #aaa;
  cursor: n-resize;
  height: 156px;
  left: 175px;
  position: absolute;
  top: 6px;
  width: 19px;
}

.colpick_hue_arrs {
  height: 7px;
  left: -8px;
  margin: -7px 0 0 0;
  position: absolute;
  width: 35px;
}

.colpick_hue_larr {
  border-bottom: 6px solid transparent;
  border-left: 7px solid #858585;
  border-top: 6px solid transparent;
  height: 0;
  position: absolute;
  width: 0;
}

.colpick_hue_rarr {
  border-bottom: 6px solid transparent;
  border-right: 7px solid #858585;
  border-top: 6px solid transparent;
  height: 0;
  position: absolute;
  right: 0;
  width: 0;
}

.colpick_new_color {
  background: #f00;
  height: 25px;
  left: 207px;
  position: absolute;
  top: 6px;
  width: 60px;
}

.colpick_current_color {
  background: #f00;
  height: 25px;
  left: 277px;
  position: absolute;
  top: 6px;
  width: 60px;
}

.colpick_field, .colpick_hex_field {
  background: #f3f3f3;
  border: 1px solid #bdbdbd;
  color: #b8b8b8;
  font-size: 12px;
  height: 20px;
  overflow: hidden;
  position: absolute;
  width: 60px;
}

.colpick_rgb_r {
  left: 207px;
  top: 40px;
}

.colpick_rgb_g {
  left: 207px;
  top: 67px;
}

.colpick_rgb_b {
  left: 207px;
  top: 94px;
}

.colpick_hsb_h {
  left: 277px;
  top: 40px;
}

.colpick_hsb_s {
  left: 277px;
  top: 67px;
}

.colpick_hsb_b {
  left: 277px;
  top: 94px;
}

.colpick_hex_field {
  left: 207px;
  top: 121px;
  width: 130px;
}

.colpick_focus {
  border-color: #999;
}

.colpick_field_letter {
  background: #efefef;
  border-right: 1px solid #bdbdbd;
  color: #777;
  font-weight: bold;
  height: 20px;
  line-height: 20px;
  padding: 0 4px;
  position: absolute;
}

.colpick_field input {
  background: transparent;
  border: none;
  color: #555;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  height: 20px;
  line-height: 20px;
  margin: 0;
  outline: none;
  padding: 0;
  position: absolute;
  right: 15px;
  text-align: right;
}

.colpick_hex_field input {
  background: transparent;
  border: none;
  color: #555;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  height: 20px;
  line-height: 20px;
  margin: 0;
  outline: none;
  padding: 0;
  position: absolute;
  right: 15px;
  right: 4px;
  text-align: right;
}

.colpick_field_arrs {
  cursor: n-resize;
  height: 21px;
  position: absolute;
  right: 2px;
  top: -1px;
  width: 9px;
}

.colpick_field_uarr {
  border-bottom: 4px solid #959595;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  height: 0;
  position: absolute;
  top: 5px;
  width: 0;
}

.colpick_field_darr {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid #959595;
  bottom: 5px;
  height: 0;
  position: absolute;
  width: 0;
}

.colpick_submit {
  background: #efefef;
  color: #555;
  font-size: 12px;
  font-weight: bold;
  height: 22px;
  left: 207px;
  line-height: 22px;
  position: absolute;
  text-align: center;
  top: 140px;
  width: 130px;
}
.colpick_submit:hover {
  background: #f3f3f3;
  border-color: #999;
  cursor: pointer;
}

.colpick_full_ns .colpick_submit, .colpick_full_ns .colpick_current_color {
  display: none;
}
.colpick_full_ns .colpick_new_color {
  height: 25px;
  width: 130px;
}
.colpick_full_ns .colpick_rgb_r, .colpick_full_ns .colpick_hsb_h {
  top: 42px;
}
.colpick_full_ns .colpick_rgb_g, .colpick_full_ns .colpick_hsb_s {
  top: 73px;
}
.colpick_full_ns .colpick_rgb_b, .colpick_full_ns .colpick_hsb_b {
  top: 104px;
}
.colpick_full_ns .colpick_hex_field {
  top: 135px;
}

.colpick_rgbhex {
  width: 282px;
}
.colpick_rgbhex .colpick_hsb_h, .colpick_rgbhex .colpick_hsb_s, .colpick_rgbhex .colpick_hsb_b {
  display: none;
}
.colpick_rgbhex .colpick_field, .colpick_rgbhex .colpick_submit {
  width: 68px;
}
.colpick_rgbhex .colpick_new_color {
  border-right: none;
  width: 34px;
}
.colpick_rgbhex .colpick_current_color {
  border-left: none;
  left: 240px;
  width: 34px;
}
.colpick_rgbhex .colpick_hex_field {
  width: 68px;
}

.colpick_rgbhex_ns .colpick_submit, .colpick_rgbhex_ns .colpick_current_color {
  display: none;
}
.colpick_rgbhex_ns .colpick_new_color {
  border: 1px solid #8f8f8f;
  width: 68px;
}
.colpick_rgbhex_ns .colpick_rgb_r {
  top: 42px;
}
.colpick_rgbhex_ns .colpick_rgb_g {
  top: 73px;
}
.colpick_rgbhex_ns .colpick_rgb_b {
  top: 104px;
}
.colpick_rgbhex_ns .colpick_hex_field {
  top: 135px;
  width: 68px;
}

.colpick_hex {
  height: 201px;
  width: 206px;
}
.colpick_hex .colpick_hsb_h, .colpick_hex .colpick_hsb_s, .colpick_hex .colpick_hsb_b, .colpick_hex .colpick_rgb_r, .colpick_hex .colpick_rgb_g, .colpick_hex .colpick_rgb_b {
  display: none;
}
.colpick_hex .colpick_hex_field {
  height: 25px;
  left: 80px;
  top: 168px;
  width: 72px;
}
.colpick_hex .colpick_hex_field div, .colpick_hex .colpick_hex_field input {
  height: 25px;
  line-height: 25px;
}
.colpick_hex .colpick_new_color {
  border-right: none;
  left: 7px;
  top: 168px;
  width: 30px;
}
.colpick_hex .colpick_current_color {
  border-left: none;
  left: 40px;
  top: 168px;
  width: 30px;
}
.colpick_hex .colpick_submit {
  height: 25px;
  left: 164px;
  line-height: 25px;
  top: 168px;
  width: 30px;
}

.colpick_hex_ns .colpick_submit, .colpick_hex_ns .colpick_current_color {
  display: none;
}
.colpick_hex_ns .colpick_hex_field {
  width: 114px;
}
.colpick_hex_ns .colpick_new_color {
  left: 8px;
  width: 60px;
}

.colpick_dark {
  background: #161616;
  border-color: #2a2a2a;
}
.colpick_dark:after {
  border-bottom-color: #161616;
}
.colpick_dark .colpick_color {
  outline-color: #333;
}
.colpick_dark .colpick_hue {
  border-color: #555;
}
.colpick_dark .colpick_field, .colpick_dark .colpick_hex_field {
  background: #101010;
  border-color: #2d2d2d;
}
.colpick_dark .colpick_field_letter {
  background: #131313;
  border-color: #2d2d2d;
  color: #696969;
}
.colpick_dark .colpick_field input, .colpick_dark .colpick_hex_field input {
  color: #7a7a7a;
}
.colpick_dark .colpick_field_uarr {
  border-bottom-color: #696969;
}
.colpick_dark .colpick_field_darr {
  border-top-color: #696969;
}
.colpick_dark .colpick_focus {
  border-color: #444;
}
.colpick_dark .colpick_submit {
  background: #131313;
  border-color: #2d2d2d;
  color: #7a7a7a;
}
.colpick_dark .colpick_submit:hover {
  background-color: #101010;
  border-color: #444;
}

.colpick_gray {
  background: #3C4A4D;
  border-color: #3C4A4D;
}
.colpick_gray:after {
  border-bottom-color: #3C4A4D;
}
.colpick_gray .colpick_color {
  outline: 0;
}
.colpick_gray .colpick_hue {
  border: 0;
}
.colpick_gray .colpick_field, .colpick_gray .colpick_hex_field {
  background: #30393B;
  border-color: #30393B;
  color: #DDD;
}
.colpick_gray .colpick_field_letter {
  background: #2F393B;
  border-color: #2F393B;
  color: #DDD;
}
.colpick_gray .colpick_field input, .colpick_gray .colpick_hex_field input {
  color: #AAA;
}
.colpick_gray .colpick_field_uarr {
  border-bottom-color: #696969;
}
.colpick_gray .colpick_field_darr {
  border-top-color: #696969;
}
.colpick_gray .colpick_focus {
  border-color: #444;
}
.colpick_gray .colpick_submit {
  background: #212530;
  color: #7a7a7a;
}
.colpick_gray .colpick_submit:hover {
  background-color: #101010;
  border-color: #444;
}


#mainEmp {
    background: #e5e9ec;
    height: auto;
    left: 0;
    /*margin-left: 250px;
       position: absolute;
    right: 0;
    -webkit-transition: -webkit-transform 0.5s, padding-top 0.5s;
    transition: transform 0.5s, padding-top 0.5s;
    z-index: 9;
    -webkit-overflow-scrolling: touch;
	*/
}


#main{
   /*
    height: 100%;
    left: 0;
   
    overflow: auto;
        overflow-x: auto;
    overflow-x: hidden;
    
    position: absolute;
    
    -webkit-transition: -webkit-transform 0.5s, padding-top 0.5s;
    transition: transform 0.5s, padding-top 0.5s;
    z-index: 9;
    -webkit-overflow-scrolling: touch;
	*/
	
}