@charset "utf-8";
/* CSS Document */

* {
	margin: 0;
	padding: 0;
	font-family: 'Tahoma', sans-serif;

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

html {
	font-size: 100%;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;

}
:focus {
	outline: 0;
}
.purple {
	color: #A82086!important;
}
body {
	font-size:1em;
	color:#000;
	background:#f2f2f2;
	overflow-x: hidden;
}
@media screen and (max-width : 800px) {
	body {
		background: #fff;
	}
}

b { font-family: 'Tahoma'; font-weight: bold; font-size: inherit; }



/*label {
	display: inline-block;
	vertical-align: middle;
	line-height: 40px;
	cursor: pointer;
}
	label.short {
		position: absolute;
		width: 75px;
		top: 0;
		right: 20px;
		margin-bottom: 0;
		font-size: 13px;
		color: #666;
	}
label input[type=checkbox],
label input[type=radio] {
	display: none;
}
label label {
	display: inline-block;
	position: relative;
	width: 20px;
	height: 20px;
	margin-right: 10px;
	top: -4px;
	border: 2px #ccc solid;
	-webkit-transition-duration: .1s;
	transition-duration: .1s;
}
	label label.radio {
		border-radius: 50%;
	}
[type=checkbox]:checked + label {
	top: -5px;
	left: 2px;
	width: 12px;
	height: 20px;
	margin-right: 18px;
	border-top: 2px solid transparent;
	border-left: 2px solid transparent;
	border-right: 2px solid #333;
	border-bottom: 2px solid #333;
	-webkit-transform: rotate(40deg);
	transform: rotate(40deg);
	-webkit-backface-visibility: hidden;
	-webkit-transform-origin: 50% 50%;
	transform-origin: 50% 50%;
}
[type=radio]:checked + label {
	border: 2px #333 solid;
	background-color: #333;
}*/




.code-info {
  position: relative;
  width: 100%;
  height: calc(100% - 320px);
  float: left;
}
.keyboard {
  display: table;
  position: relative;
  width: 100%;

  height: 270px;
  float: left;
  background-color: #009688;
}
  .keyboard .keys {
    display: table-row;
    position: relative;
    width: 100%;
    font-size: 18px;
    text-align: center;
    vertical-align: middle;
  }
  
  .keyboard .keys > div {
    display: table-cell;
    width: 33.3333%;
    vertical-align: middle;
    font-size: 25pt;
    color: #fff;
    border-right: 1px #0da596 solid;
    border-bottom: 1px #0da596 solid;
  }
    .keyboard .keys > div:last-child {
      border-right: none;
    }
    .keyboard .keys:last-child > div {
      border-bottom: none;
    }
  .keyboard .keys > div:active {
    background-color: #006b61;
  }


/* INAPPBROWSER BODY STYLE */
.inAppBrowser-wrapper {
	position: fixed;
	visibility: hidden;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	overflow: hidden;
	z-index: 6402;
	opacity: 0;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	transition: 0.2s;
	-webkit-transition: 0.2s;
}
.inAppBrowser-wrapper.visible {
	visibility: visible;
	opacity: 1;
}
.inAppBrowser-body {
    position: relative;
    width: 100%;
    height: calc(100% - 56px);
    float: left;
    background-color: #fff;
    overflow-y: auto;
}
.inAppBrowser-body.inAppBrowser {
    height: calc(100% - 112px);
}
.heading .heading-topbar.webview .heading-button {
	width: 56px;
	padding: 17px;
}
/* END INAPPBROWSER BODY STYLE */



.line-legend {
	list-style: none;
}
	.line-legend > li > span {
		display: inline-block;
		width: 15px;
		height: 15px;
		margin: 0 10px 0 0;
	}


/* SPLASH SCREEN STYLE */
#splash-screen {
    /*visibility: hidden;*/
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 1);
    z-index: 9000;
    transition: 0.3s;
    -webkit-transition: 0.3s;
}
    #splash-screen.white {
        background-color: rgba(0, 0, 0, 0);
    }

    #splash-screen .splash-screen-message {
      position: absolute;
      width: 451px;
      height: 373px;
      margin: -235px 0 0 -225.5px;
      top: 50%;
      left: 50%;
      color: #333;
      vertical-align: middle;
      opacity: 0;
      transition: 0.2s;
      -webkit-transition: 0.2s;
      background-repeat: no-repeat;
      background-size: 100% auto;
    }
    @media screen and (max-width : 451px) {
    	#splash-screen .splash-screen-message {
    		width: 100%;
    		height: auto;
    		padding-bottom: 25%;
    		margin: -235px 0 0 0;
    		left: 0;
    	}
    }
    	#splash-screen .splash-screen-message.image {
    		opacity: 1;
    		background-image: url(../img/monkeydev.png);
    	}
    	#splash-screen .splash-screen-message.hide {
    	 	opacity: 0;
    	 	-webkit-transform: translate3d(0, -100%, 0);
            transform: translate3d(0, -100%, 0);
    	 }
    	#splash-screen .splash-screen-message > img {
    		max-width: 100%;
    		float: left;
    	}
.splash-screen-loading {
	position: relative;
    width: 100%;
    height: 100%;
    /*padding: 265px 107px 0 68px;*/
    padding: 58.7% 20.5% 0 15%;
    overflow: hidden;
}
.splash-screen-loading .splash-screen-bullet {
    position: absolute;
    width: 20px;
    padding: 3px;

    background: #fff;
    -webkit-animation: animIn 2s 0s infinite;
    animation: animIn 2s 0s infinite;
}
@media screen and (max-width : 451px) {
	.splash-screen-loading .splash-screen-bullet {
		display: none;
	}
}
.splash-screen-loading .splash-screen-bullet:nth-child(1) {
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
}
.splash-screen-loading .splash-screen-bullet:nth-child(2) {
    -webkit-animation-delay: 0.15s;
    animation-delay: 0.15s;
}
.splash-screen-loading .splash-screen-bullet:nth-child(3) {
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s;
}
.splash-screen-loading .splash-screen-bullet:nth-child(4) {
    -webkit-animation-delay: 0.45s;
    animation-delay: 0.45s;
}
@-webkit-keyframes animIn {
    0% {
        -webkit-transform: translateX(0px);
        transform: translateX(0px);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        -webkit-transform: translateX(276px);
        transform: translateX(276px);
        opacity: 0;
    }
}
@keyframes animIn {
    0% {
        -webkit-transform: translateX(0px);
        transform: translateX(0px);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        -webkit-transform: translateX(276px);
        transform: translateX(276px);
        opacity: 0;
    }
}
/* END SPLASH SCREEN STYLE */

/*TOGGLE BUTTON STYLE*/
.mangole-toggle-button { background-color: white; margin: 5px 0; border-radius: 20px; border: 2px solid #D0D0D0; height: 28px; cursor: pointer; width: 54px; position: relative; display: inline-block; user-select: none; -webkit-user-select: none; -ms-user-select: none; -moz-user-select: none; }
.mangole-toggle-button button.mangole-toggle-button { cursor: pointer; outline: 0; display:block; position: absolute; left: 0; top: 0; border-radius: 100%; width: 30px; height: 30px; background-color: white; float: left; margin: -3px 0 0 -3px; border: 2px solid #D0D0D0; transition: left 0.3s; }
.mangole-toggle-button[data-state="1"] { background-color: #83B152; border: 2px solid #7DA652; }
.mangole-toggle-button[data-state="1"] button.mangole-toggle-button { left: 26px; top: 0; margin: 0; border: none; width: 24px; height: 24px; box-shadow: 0 0 4px rgba(0,0,0,0.1); }
/*END TOGGLE BUTTON STYLE*/

/*TOP SEARCH BUTTON STYLE*/
.search-button-top {
	width: 40px;
	height: 40px;
	float: right;
	color: #fff;
	font-size: 30px;
	border: none;
	background-color: rgba(0,0,0,0.01);
	cursor: pointer;
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	appearance: none;

	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: center;
    justify-content: center;
	-webkit-align-items: center;
    align-items: center;
}
.search-button-top:hover {
	opacity: 0.9;
}
/*END TOP SEARCH BUTTON STYLE*/

/*ADD BUTTON STYLE*/
#add-button,
#guide-add-button,
.add-button,
.add-mini-button,
.scan-button {
	position: fixed;
    width: 56px;
    height: 56px;
    bottom: 63px;
    right: 20px;
    background-color: #0e9587;
    z-index: 6403;
    border-radius: 50%;
    -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
    transition: 0.2s ease-out;
    -webkit-transition: 0.2s ease-out;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    line-height: 56px;
    vertical-align: middle;
    text-align: center;

    display: -webkit-flex;
	display: flex;
	-webkit-justify-content: center;
    justify-content: center;
	-webkit-align-items: center;
    align-items: center;

    cursor: pointer;
}
.scan-button,
.add-mini-button {
	visibility: hidden;
	width: 40px;
    height: 40px;
    bottom: 80px;
    right: 22px;
    -webkit-transform: translate3d(0, 56px, 0);
	transform: translate3d(0, 56px, 0);
}
.add-mini-button {
	bottom: 130px;
}
	#add-button[data-icon]:before,
	#guide-add-button[data-icon]:before,
	.add-button[data-icon]:before,
	.add-mini-button[data-icon]:before {
		padding: 0 0 0 0;
		font-size: 25px;
	}
	.scan-button[data-icon]:before,
	.add-mini-button[data-icon]:before {
		padding: 0 0 0 0;
		font-size: 18px;
	}
	#add-button.active,
	#guide-add-button.active,
	.add-button.active,
	.add-mini-button.active {
		-webkit-transform: translate3d(0, 200%, 0);
		transform: translate3d(0, 200%, 0);
	}
/*END ADD BUTTON STYLE*/

/* FORM ROTATOR STYLE */
.mangole-form {
	display: inline-block;
	position: absolute;
	width: 100%;
	height: 100%;
	overflow: hidden;
}
	.mangole-form-body {
		display: inline-block;
		position: absolute;
		width: 100%;
		height: 100%;
		padding: 15px;
		overflow-y: auto;
	}
/* FORM PANEL ROTATOR STYLE */

/* PANEL ROTATOR STYLE */
.mangole-panel-rotator-wrapper {
	position: absolute;
	width: 100%;
	height: 100%;
	overflow: hidden;
}
	.mangole-panel-rotator-wrapper .mangole-panel-rotator {
		visibility: hidden;
		position: absolute;
		width: 100%;
		height: 100%;
		top:0;
		right: -10%;
		opacity: 0; 
		overflow-y: auto;
		-webkit-transition-duration: .2s;
		-moz-transition-duration: .2s;
		-o-transition-duration: .2s;
		-ms-transition-duration: .2s;
	}
		.mangole-panel-rotator-wrapper .mangole-panel-rotator.mangole-panel-rotator-active {
			visibility: visible;
			right: 0;
			opacity: 1;
		}
/* END PANEL ROTATOR STYLE */

/*DROPDOWN MENU STYLE*/
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 160px;
  margin: 2px 0 0;
  font-size: 14px;
  list-style: none;
  background-color: #fff;
  border: 1px solid #ccc;
  border: 1px solid rgba(0,0,0,0.15);
  border-radius: 4px;
  -webkit-box-shadow: 0 6px 12px rgba(0,0,0,0.175);
  box-shadow: 0 6px 12px rgba(0,0,0,0.175);
  background-clip: padding-box;
}
.dropdown-menu.visible {
  display: block;
}
  .dropdown-menu > li {
    display: block;
    float: left;
    width: 100%;
    height: 50px;
    border-top: 1px #ccc solid;
  }
  .dropdown-menu > li:first-child {
    border-top: none;
  }
  .dropdown-menu > li:hover {
    background-color: #f1f1f1;
  }
    .dropdown-menu > li > a,
    .dropdown-menu > li > a:hover,
    .dropdown-menu > li > a:active,
    .dropdown-menu > li > a:visited {
      display: block;
      width: 100%;
      height: 100%;
      float: left;
      padding: 0 10px; 
      line-height: 50px;
      vertical-align: middle;
      color: #333;
      text-decoration: none;
    }
  .dropdown-menu:before {
    border-bottom: 7px solid rgba(0, 0, 0, 0.2);
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    content: "";
    display: inline-block;
    left: 9px;
    position: absolute;
    top: -7px;
  }
  .dropdown-menu:after {
    border-bottom: 6px solid #FFFFFF;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    content: "";
    display: inline-block;
    left: 10px;
    position: absolute;
    top: -6px;
  }
/*END DROPDOWN MENU STYLE*/

/* ACORDEON MENU STYLE */
.mangole-acordeon-menu {
	display: inline-block;
	background: #fff;
	border:1px #b5b5b5 solid;
	list-style: none;
	font-size: 15px;
}
	.mangole-acordeon-menu > li {
		width:100%;
		min-height: 50px;
		float: left;
		line-height: 50px;
		vertical-align: middle;
		border-bottom: 1px #b5b5b5 solid;
		cursor: pointer;
	}
		.mangole-acordeon-menu > li:last-child {
			border-bottom: none;
		}
	.mangole-acordeon-menu .mangole-acordeon-menu-title {
		color:#fff;
		background-color: #37b5e8;
		
	}
	.mangole-acordeon-menu li a {
		display: block;
		width: 100%;
		height: 100%;
		float: left;
		text-decoration: none;
		color: inherit;
		overflow: hidden;
			text-overflow: ellipsis;
			white-space: nowrap;
	}
		.mangole-acordeon-menu li a:hover:not(.mangole-acordeon-menu-title-link) {
			background: #f8f8f8;
			-webkit-transition-duration: .2s;
			-moz-transition-duration: .2s;
			-o-transition-duration: .2s;
			-ms-transition-duration: .2s;
		}
		.mangole-acordeon-menu li a .mangole-acordeon-menu-icon {
			display: inline-block;
			height: 100%;
			float: left;
			text-align: center;
			vertical-align: middle;
			font-size: 30px;
			background-repeat: no-repeat;
			background-position: 50% 50%;
		}
		.mangole-acordeon-menu li a .mangole-acordeon-menu-label {
			display: inline-block;
			height: 100%;
			float: left;
			padding: 0 10px;
		}
	.mangole-acordeon-menu li .mangole-acordeon-menu-li-options {
		/*visibility: hidden;*/
		width:100%;
		height: 1px;
		float: left;
		list-style: none;
		-webkit-transition-duration: .2s;
		-moz-transition-duration: .2s;
		-o-transition-duration: .2s;
		-ms-transition-duration: .2s;
	}
		.mangole-acordeon-menu li .mangole-acordeon-menu-li-options.mangole-options-active {
			/*visibility: visible;*/
			height: auto;
		}
		.mangole-acordeon-menu li .mangole-acordeon-menu-li-options > li {
			position: relative;
			width:100%;
			min-height: 50px;
			float: left;
			line-height: 50px;
			vertical-align: middle;
			/*border-bottom: 1px #b5b5b5 solid;*/
			cursor: pointer;
			color: #0F77A0;
			background:url(../img/bgpatern.png) #FAFAFA repeat;
		}
			.mangole-acordeon-menu li .mangole-acordeon-menu-li-options > li:last-child {
				border-bottom: none;
			}
			.mangole-acordeon-menu li .mangole-acordeon-menu-li-options li .mangole-acordeon-menu-icon {
				display: block;
				width: 50px;
				height: 50px;
				float: left;
				border-right: 1px #b5b5b5 solid;
				text-align: center;
			}
			.mangole-acordeon-menu li .mangole-acordeon-menu-li-options li .mangole-acordeon-menu-label {
				display: block;
				height: 50px;
				float: left;
				padding: 0 0 0 10px;
			}

			.mangole-acordeon-menu li .mangole-acordeon-menu-li-options li:hover > .mangole-acordeon-menu-li-options-contextmenu {
				display: block;
			}

			.mangole-acordeon-menu li .mangole-acordeon-menu-li-options li .mangole-acordeon-menu-li-options-contextmenu {
				display: none;
				position: absolute;
				width: 100%;
				height: auto;
				top: 0;
				left: 100%;
				background-color: #fff;
				z-index: 500;
				box-shadow: 0px 0px 5px #b5b5b5;
				border: 1px #b5b5b5 solid;
				overflow: hidden;
			}

				.mangole-acordeon-menu li .mangole-acordeon-menu-li-options li .mangole-acordeon-menu-li-options-contextmenu-label {
					width: 100%;
					float: left;
					border-bottom: 1px #b5b5b5 solid;
					/*background:url(../img/bgpatern.png) #FAFAFA repeat;*/
					text-shadow:1px 1px 0px #fff;
				}
					.mangole-acordeon-menu li .mangole-acordeon-menu-li-options li .mangole-acordeon-menu-li-options-contextmenu-label:last-child {
						border-bottom: none;
					}
					.mangole-acordeon-menu li .mangole-acordeon-menu-li-options li .mangole-acordeon-menu-li-options-contextmenu-label a {
						display: block;
						width: 100%;
						height: 100%;
						float: left;
						padding: 0 10px;
					}
/* END ACORDEON MENU STYLE */

/* SPLIT CONTAINER STYLE*/
.mangole-split-container {
	display: table;
}
.mangole-split-container-heading {
	display: table-row;
}
.mangole-split-container-row {
	display: table-row;
}
.mangole-split-container-cell {
	position: relative;
	display: table-cell;
	vertical-align: top;
}
@media screen and (max-width : 800px){
	#users-page1-frmusers-splitcontainer1 .mangole-split-container-cell,
	#users-page2-frmusers-splitcontainer1 .mangole-split-container-cell,
	#products-page1-frmproductos-splitcontainer1 .mangole-split-container-cell,
	#products-page2-frmproductos-splitcontainer1 .mangole-split-container-cell,
	#banners-page1-frmbanners-splitcontainer1 .mangole-split-container-cell,
	#banners-page2-frmbanners-splitcontainer1 .mangole-split-container-cell,

	#products-page1-frmproductos-splitcontainer1,
	#products-page2-frmproductos-splitcontainer1 {
		display: inline-block!important;
		width: 100%!important;
		padding: 5px 20px 30px 20px!important;
		border-left: none!important;
	}
}
@media screen and (max-width : 700px){
	#form-title {
		display: none!important;
	}
}
@media screen and (max-width : 500px){
	#users-page1-frmusers .mangole-form-body,
	#users-page2-frmusers .mangole-form-body,

	#banners-page1-frmbanners-splitcontainer1 .mangole-form-body,
	#banners-page2-frmbanners-splitcontainer1 .mangole-form-body,

	#products-page1-frmproductos .mangole-form-body,
	#products-page2-frmproductos .mangole-form-body {
		padding: 0!important;
	}
}
/* SPLIT CONTAINER STYLE*/

/* LABEL STYLE */
.mangole-label {
	display: inline-block;
	font-size: 15px;
	color: #191919;
	text-align: left;
	/*overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;*/
}
/* END LABEL STYLE */

/* LINK STYLE */
.mangole-link {
	display: inline-block;
	/*font-weight: 400;*/
	font-size: 15px;
	color: #191919;
	text-align: left;
	cursor: pointer;
}
	.mangole-link:hover,
	.mangole-link.active,
	.mangole-link[disabled]:hover {
		text-decoration: none;
	}

	.mangole-link[disabled] {
		/*pointer-events: none;*/
		cursor: default!important;
		color: #191919!important;
	}
/* END LINK STYLE */

/* BLANK WRAPPER STYLE */
.mangole-blank-wrapper {
	display: inline-block;
}
/* END BLANK WRAPPER STYLE */

/* CONTENT EDITABLE STYLE */
.mangole-contenteditable {
	width:100%;
	height: 36px;
	border: 1px solid #b5b5b5;
	padding:4px;
	margin:3px 0 10px 0;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
	font-size: 15px;
	color: #374767;
}
	.mangole-contenteditable:hover {
		border: 1px solid #C6CBD5;
	}
/* END CONTENT EDITABLE STYLE */

/* DROPPABLE FORM STYLE */
.mangole-droppableform {
	width:100%;
	border: 1px solid #b5b5b5;
	padding:4px;
	margin:3px 0 10px 0;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
	font-size: 15px;
	color: #374767;
	overflow-y: auto;
}
	.mangole-droppableform:hover {
		border: 1px solid #C6CBD5;
	}
/* END DROPPABLE FORM STYLE */

/* BUTTON STYLE */
.mangole-btn {
	display: inline-block;
	height: 37px;
	padding: 0 20px;
	font-size: 14px;
	line-height: 37px;
	text-align: center;
	vertical-align: middle;
	cursor: pointer;
	color: #000;
	background-color: #dedede;
	border-radius: 4px;
	border: none;
}
a.mangole-btn:link {
	text-decoration: none;
	color: #333;
}
a.mangole-btn:visited {
	text-decoration: none;
	color: #333;
}
.mangole-btn:hover,
.mangole-btn:focus {
	background-color: #d6d6d6;
}
.mangole-btn.active,
.mangole-btn:active {
	background-image: none;
	outline: 0;
	-webkit-box-shadow: inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);
	-moz-box-shadow: inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);
	box-shadow: inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);
}
.mangole-btn.disabled,
.mangole-btn[disabled] {
	cursor: default;
	background-image: none;
	opacity: 0.65;
	filter: alpha(opacity=65);
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
}

	.mangole-btn.blue {
		color: #ffffff;
		background-color: #327DE2;
		border: none;
	}
	a.mangole-btn.blue:link {
		text-decoration: none;
		color: #fff;
	}
	a.mangole-btn.blue:visited {
		text-decoration: none;
		color: #fff;
	}
	.mangole-btn.blue:active,
	.mangole-btn.blue.active {
		outline: 0!important;
		text-decoration: none;
		color: #fff;
		-webkit-box-shadow: inset 0 2px 4px rgba(0,0,0,.5), 0 1px 2px rgba(0,0,0,.05);
		-moz-box-shadow: inset 0 2px 4px rgba(0,0,0,.5), 0 1px 2px rgba(0,0,0,.05);
		box-shadow: inset 0 2px 4px rgba(0,0,0,.5), 0 1px 2px rgba(0,0,0,.05);
	}
	.mangole-btn.blue:hover {
		text-decoration: none;
		color: #fff;
	}
	.mangole-btn.blue:hover,
	.mangole-btn.blue:focus,
	.mangole-btn.blue:active,
	.mangole-btn.blue.active,
	.mangole-btn.blue.disabled,
	.mangole-btn.blue[disabled] {
		color: #ffffff;
		background-color: #2D75D6;
	}
	.mangole-btn.gray {
		color: #333;
		background-color: #dedede;
		border: none;
	}
	a.mangole-btn.gray:link {
		text-decoration: none;
		color: #333;
	}
	a.mangole-btn.gray:visited {
		text-decoration: none;
		color: #333;
	}
	.mangole-btn.gray:active,
	.mangole-btn.gray.active {
		outline: 0!important;
		text-decoration: none;
		color: #333;
		-webkit-box-shadow: inset 0 2px 4px rgba(0,0,0,.5), 0 1px 2px rgba(0,0,0,.05);
		-moz-box-shadow: inset 0 2px 4px rgba(0,0,0,.5), 0 1px 2px rgba(0,0,0,.05);
		box-shadow: inset 0 2px 4px rgba(0,0,0,.5), 0 1px 2px rgba(0,0,0,.05);
	}
	.mangole-btn.gray:hover {
		text-decoration: none;
		color: #333;
	}
	.mangole-btn.gray:hover,
	.mangole-btn.gray:focus,
	.mangole-btn.gray:active,
	.mangole-btn.gray.active,
	.mangole-btn.gray.disabled,
	.mangole-btn.gray[disabled] {
		color: #333;
		background-color: #e4e4e4;
	}
	.mangole-btn.red {
		color: #fff;
		background-color: #EF6763;
	}
	a.mangole-btn.red:link {
		text-decoration: none;
		color: #fff;
	}
	a.mangole-btn.red:visited {
		text-decoration: none;
		color: #fff;
	}
	.mangole-btn.red:active {
		outline: 0!important;
		text-decoration: none;
		color: #fff;
		-webkit-box-shadow: inset 0 2px 4px rgba(0,0,0,.5), 0 1px 2px rgba(0,0,0,.05);
		-moz-box-shadow: inset 0 2px 4px rgba(0,0,0,.5), 0 1px 2px rgba(0,0,0,.05);
		box-shadow: inset 0 2px 4px rgba(0,0,0,.5), 0 1px 2px rgba(0,0,0,.05);
	}
	.mangole-btn.red:hover {
		text-decoration: none;
		color: #fff;
	}
	.mangole-btn.red:hover,
	.mangole-btn.red:focus,
	.mangole-btn.red:active,
	.mangole-btn.red.active,
	.mangole-btn.red.disabled,
	.mangole-btn.red[disabled] {
		color: #ffffff;
		background-color: #e05a56;
	}

	.mangole-btn.green {
		color: #fff;
		background-color: #83b152;
	}
	a.mangole-btn.green:link {
		text-decoration: none;
		color: #fff;
	}
	a.mangole-btn.green:visited {
		text-decoration: none;
		color: #fff;
	}
	.mangole-btn.green:active {
		outline: 0!important;
		text-decoration: none;
		color: #fff;
		-webkit-box-shadow: inset 0 2px 4px rgba(0,0,0,.5), 0 1px 2px rgba(0,0,0,.05);
		-moz-box-shadow: inset 0 2px 4px rgba(0,0,0,.5), 0 1px 2px rgba(0,0,0,.05);
		box-shadow: inset 0 2px 4px rgba(0,0,0,.5), 0 1px 2px rgba(0,0,0,.05);
	}
	.mangole-btn.green:hover {
		text-decoration: none;
		color: #fff;
	}
	.mangole-btn.green:hover,
	.mangole-btn.green:focus,
	.mangole-btn.green:active,
	.mangole-btn.green.active,
	.mangole-btn.green.disabled,
	.mangole-btn.green[disabled] {
		color: #ffffff;
		background-color: #75a046;
	}

/* END BUTTON STYLE */


/* TABS CSS STYLE */
.mangole-tabs {
	display: inline-block;
	padding: 4px 12px;
	margin-bottom: 0;
	font-size: 14px;
	line-height: 20px;
	text-align: center;
	vertical-align: middle;
	cursor: pointer;
	color: #374767;
	background-color: #fff;
	border: 1px solid #b5b5b5;
	border-bottom-color: #fff;
}
a.mangole-tabs:link {
	text-decoration: none;
	color: #374767;
}
a.mangole-tabs:visited {
	text-decoration: none;
	color: #374767;
}
a.mangole-tabs:active {
	text-decoration: none;
	color: #374767;
}
a.mangole-tabs:hover {
	text-decoration: none;
	color: #374767;
}
.mangole-tabs:hover,
.mangole-tabs:focus {
	color: #374767;
	text-decoration: none;
	background-image:none;
}
.mangole-tabs:focus {
	outline: 0;
	outline: 0;
	outline-offset: 0;
}
.mangole-tabs.active,
.mangole-tabs:active {
	background-image: none;
	outline: 0;
	-webkit-box-shadow: inset 0 2px 4px rgba(0,0,0,.15);
	-moz-box-shadow: inset 0 2px 4px rgba(0,0,0,.15);
	box-shadow: inset 0 2px 4px rgba(0,0,0,.15);
}
.mangole-tabs.disabled,
.mangole-tabs[disabled] {
	cursor: default;
	background-image: none;
	opacity: 0.65;
	box-shadow: none;
}

/*END TABS CSS STYLE*/

/* PANEL STYLE	*/
.mangole-panel {
	display: inline-block;
	background-color: #fff;
}
	.mangole-panel-heading {
		position: relative;
		width: 100%;
		height: 50px;
		padding: 15px 15px;
		float: left;
		background-color: #fff;
		color: #333;
		border-bottom: 1px #b5b5b5 solid;

		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;

	}
		.mangole-panel .mangole-panel-heading h2 {
			float: left;
			padding: 16px 0px;
			color: #191919;
			font-size: 17px;
			line-height: 18px;
			font-weight: 300;
			cursor: default;
		}
	.mangole-panel-body {
		display: inline-block;
		width: 100%;
		height: 100%;
		float: left;
	}
		.mangole-panel-body.with-heading {
			height: calc(100% - 49px);
		}
		.mangole-panel-body.with-footer {
			height: calc(100% - 59px);
		}
		.mangole-panel-body.with-heading.with-footer {
			height: calc(100% - 108px);
		}
	.mangole-panel-footer {
		position: relative;
		width: 100%;
		height: 60px;
		padding: 11px;
		float: left;
		background-color: #fff;
		border-top: 1px #b5b5b5 solid;
	}
/* END PANEL STYLE	*/

/* DATAGRID STYLE */
.mangole-datagrid {
	display: table;
	table-layout: fixed;
	border: 1px solid #b5b5b5;
	border-bottom: none;
	background-color: #fff;
}
	.mangole-datagrid .mangole-datagrid-title {
		display: table-caption;
	}
	.mangole-datagrid .mangole-datagrid-heading {
		display: table-row;
	}
		.mangole-datagrid .mangole-datagrid-heading .mangole-datagrid-cell {
			height: 30px;
			padding: 10px 7px 9px 7px;
			text-align: center;
			color: #333;
			border-bottom: 1px #b5b5b5 solid;
			font-weight: 700;
			font-size: 14px;
		}

	.mangole-datagrid .mangole-datagrid-row {
		display: table-row;
		border-bottom: 1px #b5b5b5 solid;
		overflow: auto;
	}
		.mangole-datagrid .mangole-datagrid-row:nth-child(even) {
			background-color: #f1f1f1
		}
		.mangole-datagrid .mangole-datagrid-row:last-child {
			border-bottom: none;
		}
		.mangole-datagrid .mangole-datagrid-row:hover {
			background-color: #FBFBFB;
		}
	.mangole-datagrid .mangole-datagrid-cell {
		display: table-cell;
		padding: 10px 5px;
		border-right: 1px #b5b5b5 solid;
		border-bottom: 1px #b5b5b5 solid;
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
		cursor: pointer;
		font-size: 14px;
	}
		.mangole-datagrid .mangole-datagrid-cell.select-type,
		.mangole-datagrid .mangole-datagrid-cell.textbox-type,
		.mangole-datagrid .mangole-datagrid-cell.none-type {
			padding: 0;
		}
			.mangole-datagrid .mangole-datagrid-cell.select-type > select,
			.mangole-datagrid .mangole-datagrid-cell.textbox-type > input[type="text"],
			.mangole-datagrid .mangole-datagrid-cell.textbox-type > input[type="email"],
			.mangole-datagrid .mangole-datagrid-cell.textbox-type > input[type="number"],
			.mangole-datagrid .mangole-datagrid-cell.textbox-type > input[type="password"],
			.mangole-datagrid .mangole-datagrid-cell.textbox-type > input[type="date"],
			.mangole-datagrid .mangole-datagrid-cell.textbox-type > input[type="tel"],
			.mangole-datagrid .mangole-datagrid-cell.textbox-type > input[type="year"]{
				width: 100%;
				padding: 10px 5px;
				margin: 0;
				background-color: transparent;
				border: none;
			}
				.mangole-datagrid .mangole-datagrid-cell.select-type > select.error,
				.mangole-datagrid .mangole-datagrid-cell.select-type > input[type="text"].error,
				.mangole-datagrid .mangole-datagrid-cell.select-type > input[type="number"].error,
				.mangole-datagrid .mangole-datagrid-cell.select-type > input[type="password"].error,
				.mangole-datagrid .mangole-datagrid-cell.select-type > input[type="date"].error,
				.mangole-datagrid .mangole-datagrid-cell.select-type > textarea.error {
					border: 1px solid #E09090;
					background-color: #FDE5E9;
				}
		.mangole-datagrid .mangole-datagrid-cell:last-child {
			border-right: none;
		}
/* END DATAGRID STYLE */



/* DATAGRID V2 STYLE */
.mangole-datagridv2 {
	border: 1px solid #b5b5b5;
	border-bottom: none;
	background-color: #fff;
}
	.mangole-datagridv2 .mangole-datagrid-heading {
		width: 100%;
		height: 38px;
		float: left;
		overflow-y: scroll;
	}
		.mangole-datagridv2 .mangole-datagrid-heading::-webkit-scrollbar {
			-webkit-appearance: none;
		}
		.mangole-datagridv2 .mangole-datagrid-heading::-webkit-scrollbar-thumb:vertical {
			background-color: #fff;
		}
		.mangole-datagridv2 .mangole-datagrid-heading::-webkit-scrollbar-track {
			background-color: #fff;
		}
		.mangole-datagridv2 .mangole-datagrid-heading::-webkit-scrollbar-button:start:decrement,
		.mangole-datagridv2 .mangole-datagrid-heading::-webkit-scrollbar-button:end:increment {
			display: block;
			background-color: #fff;
		}



		.mangole-datagridv2 .mangole-datagrid-heading .mangole-datagrid-cell {
			float: left;
			padding: 0 7px;
			text-align: center;
			color: #333;
			font-weight: 700;
			font-size: 14px;
			vertical-align: middle;
			line-height: 38px;
		}
	.mangole-datagridv2 .mangole-datagrid-content {
		width: 100%;
		height: calc(100% - 96px);
		float: left;
		overflow-y: scroll;
		padding-bottom: 65px;
		border-top: 1px #b5b5b5 solid;
	}
		.mangole-datagridv2 .mangole-datagrid-content.withoutfooter {
			height: calc(100% - 38px);
			border-bottom: 1px #b5b5b5 solid;
		}
		.mangole-datagridv2 .mangole-datagrid-row {
			width: 100%;
			float: left;
			border-bottom: 1px #b5b5b5 solid;
		}
			.mangole-datagridv2 .mangole-datagrid-row:nth-child(even) {
				background-color: #f1f1f1
			}
			.mangole-datagridv2 .mangole-datagrid-row:last-child {
				border-bottom: none;
			}
			.mangole-datagridv2 .mangole-datagrid-row:hover {
				background-color: #FBFBFB;
			}
	.mangole-datagridv2 .mangole-datagrid-cell {
		height: 38px;
		float: left;
		padding: 10px 5px;
		border: none;
		border-right: 1px #b5b5b5 solid;
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
		cursor: pointer;
		font-size: 14px;
	}
		.mangole-datagridv2 .mangole-datagrid-cell.select-type,
		.mangole-datagridv2 .mangole-datagrid-cell.textbox-type,
		.mangole-datagridv2 .mangole-datagrid-cell.none-type {
			padding: 0;
		}
			.mangole-datagridv2 .mangole-datagrid-cell.select-type > select,
			.mangole-datagridv2 .mangole-datagrid-cell.textbox-type > input[type="text"],
			.mangole-datagridv2 .mangole-datagrid-cell.textbox-type > input[type="email"],
			.mangole-datagridv2 .mangole-datagrid-cell.textbox-type > input[type="number"],
			.mangole-datagridv2 .mangole-datagrid-cell.textbox-type > input[type="password"],
			.mangole-datagridv2 .mangole-datagrid-cell.textbox-type > input[type="date"],
			.mangole-datagridv2 .mangole-datagrid-cell.textbox-type > input[type="tel"],
			.mangole-datagridv2 .mangole-datagrid-cell.textbox-type > input[type="year"]{
				width: 100%;
				padding: 10px 5px;
				margin: 0;
				background-color: transparent;
				border: none;
			}
				.mangole-datagridv2 .mangole-datagrid-cell.select-type > select.error,
				.mangole-datagridv2 .mangole-datagrid-cell.select-type > input[type="text"].error,
				.mangole-datagridv2 .mangole-datagrid-cell.select-type > input[type="number"].error,
				.mangole-datagridv2 .mangole-datagrid-cell.select-type > input[type="password"].error,
				.mangole-datagridv2 .mangole-datagrid-cell.select-type > input[type="date"].error,
				.mangole-datagridv2 .mangole-datagrid-cell.select-type > textarea.error {
					border: 1px solid #E09090;
					background-color: #FDE5E9;
				}
		.mangole-datagridv2 .mangole-datagrid-cell:last-child {
			border-right: none;
		}

	.mangole-datagridv2 .mangole-datagrid-footer {
		width: 100%;
		height: 60px;
		float: left;
		padding: 11px;
		border-top: 1px #b5b5b5 solid;
	}
/* END DATAGRID V2 STYLE */


/* ORDERED LIST STYLE */
.mangole-orderedlist {
	position: relative;
	display: inline-block;
	width: 100%;
	min-height: 100px;
	padding: 5px 5px 0 5px;
    border: 1px solid #b5b5b5;
    border-radius: 2px;
    overflow-x: hidden;
}
.mangole-orderedlist.error {
	border: 1px solid #E09090;
	background-color: #FDE5E9;
}

	.mangole-orderedlist:hover {
		border: 1px solid #C6CBD5;
	}
	.mangole-orderedlist .mangole-orderedlist-item {
		position: relative;
		width: 100%;
	    min-height: 30px;
	    float: left;
	    padding: 5px;
	    margin: 0 0 5px 0;
	    background-color: #f1f1f1;
	    border: 1px #ccc solid;
	    cursor: move;
	}
		.mangole-orderedlist[data-sortable="false"] .mangole-orderedlist-item{
			cursor: pointer;
		}
		.mangole-orderedlist .mangole-orderedlist-item-remove {
			position: absolute;
		    width: 18px;
		    height: 18px;
		    top: 5px;
		    right: 5px;
		    background: #B11E1E;
		    font-size: 14px;
		    text-align: center;
		    color: #fff;
		    cursor: pointer;
		}
	.mangole-orderedlist .ui-state-highlight {
		position: relative;
		width: 100%;
		height: 30px;
		float: left;
		padding: 5px;
		margin: 0 0 5px 0;
		background-color: #FFFADF;
		border: 1px #D3A350 solid;
	}

/* END ORDERED LIST STYLE */

/* INPUT FILE STYLE */
.mangole-general-inputfile {
	position: relative;
	display: inline-block;
	width: 100%;
}
	.mangole-general-inputfile .mangole-general-inputfile-description {
		display: inline-block;
		width: 100%;
		padding: 5px 5px 20px 5px;
		font-size: 13px;
		color: #666;
	}
	/*.mangole-general-inputfile label {
		display: inline-block;
		width: 100%;
		height: 38px;
		padding: 0 10px;
		font-size: 14px;
		color: #333;
		text-align: left;
		line-height: 38px;
		vertical-align: middle;
		border-radius: 3px;
		background-color: #f1f1f1;
		border: 1px solid #b5b5b5;
		cursor: pointer;
	}

		.mangole-general-inputfile label span.plusicon {height:20px; width:20px; margin:8px 0; display:block; position:relative; float: right;} 
		.mangole-general-inputfile label span.plusicon:before,
		.mangole-general-inputfile label span.plusicon:after{ content:''; height:4px; width:20px; display:block; background:#A7A7A7; border-radius:10px;-webkit-border-radius:10px;-moz-border-radius:10px; position:absolute; top:8px; left:0px; }
		.mangole-general-inputfile label span.plusicon:after{height:20px; width:4px; top:0; left:8px; }




	.mangole-general-inputfile input[type="file"] {
		position: absolute;
		left: -9999px;
	}*/
/* END INPUT FILE STYLE */

/* AUTOCOMPLETE STYLE */
.autocomplete-wrapper {
	position: absolute;
	/*width: 100%;
	top: 100%;
	left: 0;*/
	background-color: #fff;
	box-shadow: 0 1px 2px rgb(198, 204, 214);
    border: 1px #b5b5b5 solid;
    border-radius: 2px;
    z-index: 10000;
}
	.autocomplete-wrapper-items {
		display: inline-block;
		width: 100%;
		height: 40px;
		float: left;
		padding: 0 10px;
		line-height: 40px;
		vertical-align: middle;
		cursor: pointer;
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
	}
		.autocomplete-wrapper-items:hover {
			background-color: #f1f1f1;
		}
/* END AUTOCOMPLETE STYLE */



/* JQUERY AUTOCOMPLETE STYLE */
.autocomplete-suggestions {
text-align: left; cursor: default; border: 1px solid #ccc; background: #fff; box-shadow: -1px 1px 3px rgba(0,0,0,.1);
/* core styles should not be changed */
position: absolute; display: none; z-index: 9999; max-height: 254px; overflow: hidden; overflow-y: auto; box-sizing: border-box;
}
.autocomplete-suggestion { position: relative; padding: 0 .6em; line-height: 23px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; font-size: 1.02em; color: #333; }
.autocomplete-suggestion b { font-weight: normal; color: #1f8dd6; }
.autocomplete-suggestion.selected { background: #f0f0f0; }
/* END AUTOCOMPLETE STYLE */



/* GENERAL TEXTBOX STYLE */
.mangole-general-textbox {
	position: relative;
	display: inline-block;
	width: 100%;
}
	.textbox-send-email-button {
		display: inline-block;
		position: absolute;
		width: 16px;
		height: 16px;
		top: 35px;
		right: 5px;
		background-image: url(../img/ui-icons_454545_256x240.png);
		background-repeat: no-repeat;
		background-position: -80px -97px;
		background-color: #fff;
		z-index: 10;
	}
	.mangole-general-textbox label {
		/*font-weight: 600;*/
		font-size: 14px;
		color: #000;
		text-align: left;
	}
	.mangole-general-textbox label input[type="checkbox"] {
		margin: 0 5px 0 0; 
	}


	.mangole-general-textbox input[type="text"],
	.mangole-general-textbox input[type="color"],
	.mangole-general-textbox input[type="number"],
	.mangole-general-textbox input[type="password"],
	.mangole-general-textbox input[type="date"],
	.mangole-general-textbox input[type="email"],
	.mangole-general-textbox input[type="tel"],
	.mangole-general-textbox input[type="year"],
	.mangole-general-textbox textarea {
		width:100%;
		height: 36px;
		border: 1px solid #9e9e9e;
		padding:4px;
		margin:3px 0 10px 0;
		-webkit-border-radius: 2px;
		-moz-border-radius: 2px;
		border-radius: 2px;
		font-size: 15px;
		color: #374767;
	}
	.mangole-general-textbox input[type="color"] {
		position: relative;
		padding: 0;
		margin: 0;
		top: 6px;
		cursor: pointer;
	}
		.mangole-general-textbox input[type="text"].error,
		.mangole-general-textbox input[type="number"].error,
		.mangole-general-textbox input[type="password"].error,
		.mangole-general-textbox input[type="date"].error,
		.mangole-general-textbox textarea.error,
		.mangole-general-textbox select.error,
		.mangole-orderedlist.error,
		.mangole-general-inputfile.error {
			border: 1px solid #E09090;
			background-color: #FDE5E9;
		}

		input[type="text"].error,
		input[type="number"].error,
		input[type="password"].error,
		input[type="date"].error,
		textarea.error,
		select.error {
			border: 1px solid #E09090;
			background-color: #FDE5E9;
		}
		.mangole-general-textbox select[disabled="disabled"] {
			background-color: #dcdcdc;
		}

		#tinymce.error {
			background-color: #FDE5E9;
		}

		.mangole-general-textbox input[type="text"][readonly~=readonly],
		.mangole-general-textbox input[type="number"][readonly~=readonly],
		.mangole-general-textbox input[type="password"][readonly~=readonly] {
			padding-left: 36px;
			background-image: url(../img/candado.png);
			background-repeat: no-repeat;
			background-size: 20px 20px;
			background-position: 3px 50%;
		}
		.mangole-general-textbox.hasDatepicker input[type="text"][readonly~=readonly] {
			background-image: none;
			padding-left: 4px;
		}
		.mangole-general-textbox[data-control="datepicker"] > input {
			background-image: none !important;
			padding-left: 4px !important;
		}
/*@media screen and (max-width : 800px) {
	input[type="text"],
	input[type="password"]{
		width: 100%;
		height: 40px;
	}
}
input[type="text"].colorpicker {
	cursor: pointer;
}*/
	.mangole-general-textbox input[type="text"]:hover,
	.mangole-general-textbox input[type="color"]:hover,
	.mangole-general-textbox input[type="number"]:hover,
	.mangole-general-textbox input[type="password"]:hover,
	.mangole-general-textbox input[type="date"],
	.mangole-general-textbox textarea:hover {
		border: 1px solid #C6CBD5;
	}

.mangole-general-textbox select {
	width:100%;
	height: 36px;
	border: 1px solid #b5b5b5;
	padding: 4px;
	margin: 3px 0 10px 0;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
	font-size: 15px;
	color: #374767;
}
	.mangole-general-textbox select[readonly~=readonly] {
		padding-left: 36px;
		background-image: url(../img/candado.png);
		background-repeat: no-repeat;
		background-size: 20px 20px;
		background-position: 3px 50%;
	}
/*@media screen and (max-width : 800px) {
	select {
		width: 100%;
		height: 40px;
	}
}*/
	.mangole-general-textbox select:hover {
		border: 1px solid #C6CBD5;
	}

/* END GENERAL TEXTBOX STYLE */


/* UPLOAD FILE STYLE */
div.multiplesImagesUpload,
div.multiplesFilesUpload {
	/*position: relative;
	width: 100%;
	height: auto;
	float: left;*/
	padding: 10px 0 0 0;
	border: 1px #b5b5b5 solid;
}
	div.multiplesImagesUpload:hover,
	div.multiplesFilesUpload:hover {
		border: 1px #C6CBD5 solid;
	}
ul.imageList {
	position: relative;
	width: 100%;
	height: auto;
	max-height: 600px;
	padding: 0 1% 0 1%;
	margin: 0 0 0 0;
	float: left;
	/*border: 1px #ccc solid;*/
	list-style: none;
	overflow-x: hidden;
	overflow-y: auto;
}
ul.imageList.twice {
	max-height: none;
}
	ul.imageList li.ui-state-highlight {
		position: relative;
		width: 100%;
		height: 95px;
		float: left;
		padding: 5px;
		margin: 0 0 1% 0;
		background: #FFFADF;
		border: 1px #D3A350 solid;
	}
	ul.imageList li.image {
		position: relative;
		width: 100%;
		height: auto;
		float: left;
		padding: 5px;
		margin: 0 0 1% 0;
		background: #f1f1f1;
		border: 1px #ccc solid;
		cursor: move;
	}
	ul.imageList.twice li.image {
		width: 49.5%;
		margin: 0 0.5% 1% 0;
	}
		ul.imageList li.image span.filename {
			display: block;
		}
		ul.imageList li.image div.feet {
			display: block;
			width: 100%;
			height: 28px;
			float: left;
			margin: 5px 0 0 0;
			border-top: 1px #ccc dashed;
		}
			ul.imageList li.image div.feet input,
			ul.imageList li.image div.feet select {
				width: 70%;
				height: 28px;
				float: left;
				color: #333;
				font-size: 13px;
				cursor: text!important;
				border: none;
				background: transparent;
			}
			ul.imageList li.image div.feet select {
				width: 30%;
				cursor: pointer!important;
			}
		ul.imageList li.image div.delete {
			position: absolute;
			width: 16px;
			height: 16px;
			top: 5px;
			right: 5px;
		}
		ul.imageList li.image div.cancel,
		ul.imageList li.image .preview {
			position: absolute;
			width: 18px;
			height: 18px;
			top: 5px;
			right: 5px;
			background: #B11E1E;
			font-size: 14px;
			text-align: center;
			color: #fff;
			cursor: pointer;
		}
			ul.imageList li.image .preview {
				display: inline-block;
				right: 28px;
				background-color: #0D7FB7;
				text-decoration: none;
			}
		ul.imageList li.image img {
			max-height: 50px;
			float: left;
			margin: 0 10px 0 0;
		}
		ul.imageList.twice li.image img {
			max-height: none;
			max-width: 100%
		}
		ul.imageList.twice > li.image > span {
			display: none;
		}
		ul.imageList li.image div.progress {
			position: relative;
			width: 100%;
			height: 5px;
			float: left;
			margin: 5px 0 0 0;
		}
			ul.imageList li.image div.progress div.blue {
				position: relative;
				width: 1%;
				height: 5px;
				float: left;
				background-color: rgb(136, 174, 199);
			}
/* UPLOAD FILE STYLE */


/*LOADING SCREEN STYLE */
#loading-screen {
    visibility: hidden;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.34);
    opacity: 0;
    z-index: 10000;
    transition: 0.3s;
    -webkit-transition: 0.3s;
}
    #loading-screen.visible {
        visibility: visible;
        opacity: 1;
    }
    #loading-screen .loading-screen-message {
        position: absolute;
      min-width: 230px;
      height: 60px;
      padding: 0 10px 0 5px;
      margin: -30px 0 0 -115px;
      top: 50%;
      left: 50%;
      color: #333;
      background-color: #fff;
      text-align: center;
      line-height: 60px;
      vertical-align: middle;
      border-radius: 5px;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.40);
      background-image: url(../img/loading.gif);
      background-repeat: no-repeat;
      background-position: 10px center;
      background-size: 24px 24px;
    }
        #loading-screen .loading-screen-message .circular {
            position:relative;
            display: inline-block;
            width:30px;
            height:30px;
            float: left;
            margin: 0 5px 0 0;
            top: 5px;
            background-image: url(../img/icons1.png);
            background-repeat: no-repeat;
            background-size: 40px 2294px;
            background-position: center -383px;
 
            -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
 
              animation: animationFramesLoading linear 1s;
              animation-iteration-count: infinite;
              transform-origin: 50% 50%;
              -webkit-animation: animationFramesLoading linear 1s;
              -webkit-animation-iteration-count: infinite;
              -webkit-transform-origin: 50% 50%;
        }
        @keyframes animationFramesLoading{
          0% {
            transform:  rotate(0deg) ;
          }
          100% {
            transform:  rotate(-360deg) ;
          }
        }
        @-webkit-keyframes animationFramesLoading {
          0% {
            -webkit-transform:  rotate(0deg) ;
          }
          100% {
            -webkit-transform:  rotate(-360deg) ;
          }
        }
/*END LOADING SCREEN STYLE */





/* DIALOG STYLE */
.mangole-dialog {
    /*display: none;
    position: fixed;*/
    position: absolute;
    width: 460px;
    max-width: 460px;
    min-width: 460px;
    padding: 20px 30px;
    top: 40px;
    left: 50%;
    margin: 0 0 0 -230px;
    text-align: left;
    background: #fff;
    z-index: 5000;
}
@media screen and (max-width : 800px) {
    .mangole-dialog {
        width: 80%;
        max-width: 80%;
        min-width: 80%;
        top: 20px;
        margin: 0 0 0 -40%;
    }
}
    .mangole-dialog.big {
        width: 790px;
        max-width: 790px;
        min-width: 790px;
        margin: 0 0 0 -395px;
    }
    @media screen and (max-width : 800px) {
        .mangole-dialog.big {
            width: 100%;
            max-width: 100%;
            min-width: 100%;
            top: 0px;
            left: 0;
            margin: 0;
        }
    }
    .mangole-dialog.full {
    	width: 80%;
        max-width: 80%;
        min-width: 80%;
        margin: 0 0 0 -50%;
    }

    .mangole-dialog .mangole-dialog-icon {
        position: absolute;
        width: 60px;
        height: 60px;
        left: -60px;
        top: 0;
        background: #f1f1f1;
    }
    .mangole-dialog .mangole-dialog-workarea {
        width: 100%;
        height: auto;
        float: left;
    }
    .mangole-dialog form {
        margin: 0 0 20px 0;
    }
    .mangole-dialog label {
        display: block;
        margin-bottom: 5px;
        font-size: 14px;
        font-weight: normal;
        line-height: 20px;
        color: #595959;
    }
    /*.mangole-dialog input[type="text"],
    .mangole-dialog input[type="password"],
    .mangole-dialog textarea {
        width: 100%;
        height: 30px;
        padding: 0 5px;
        margin: 0 0 10px 0;
        border: 1px #ccc solid;
    }*/
    .mangole-dialog h3 {
        margin: 0 0 10px 0;
        font-size: 24px;
        font-weight: normal;
        color: #474747;
    }
    .mangole-dialog h5 {
        margin: 0 0 10px 0;
        /*font-weight: bold;*/
        color: #474747;
    }
    .mangole-dialog .rowfluid {
        display: block;
        width: 100%;
 
    }
    .mangole-dialog ul.altlinks {
        list-style: none;
        margin: 0;
        position: absolute;
        right: 30px;
        bottom: 20px;
        font-size: 11px;
    }
        .mangole-dialog ul.altlinks li {
            line-height: 1em;
            float: left;
            margin-left: 15px;
        }
    .mangole-dialog .mangole-close {
        position: absolute;
        display: block;
        width: 44px;
        height: 44px;
 
        line-height: 44px;
        right: 0;
        top: 0;
        text-decoration: none;
        text-align: center;
        vertical-align: middle;
        opacity: 0.65;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=65)";
        filter: alpha(opacity=65);
        color: #333;
        font-style: normal;
        font-size: 28px;
        overflow: visible;
        cursor: pointer;
        background: transparent;
        border: 0;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
    }
        .mangole-dialog .mangole-close:hover {
            opacity: 1;
            -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
            filter: alpha(opacity=100);
        }
/* END DIALOG STYLE */


















	div.loginbox {
		position: absolute;
		width: 100%;
		max-width:360px;
		height: auto;
		float: left;
		left: 50%;
		padding: 20px;
		margin: 20px 0 0 -180px;
		background:#fff;
		box-shadow: 0px 0px 3px 0px #d5d5d5;
		color:#666;
	}
	@media screen and (max-width : 360px) {
		div.loginbox {
			position: static;
			width: 90%;
			margin: 20px 5%;
		}
	}
		div.loginbox div.logo {
			width:100%;
			height: auto;
			float: left;
			margin: 0 0 30px 0;
		}
		div.loginbox div.one {
			display: block;
		}
		div.loginbox div.two {
			display: none;
		}
		div.loginbox div.logo img {
			max-width:100%;
			float: left;
		}
		div.loginbox label {
			display: block;
			width:100%;
			height: 70px;
			float: left;
		}
		div.loginbox input {
			width:100%;
			height:38px;
			padding:0 9px;
			font-size:25px;
			color:#808080;
			border:1px solid #c8c8c8;
			line-height: 38px;
			vertical-align: middle;
			border-radius: 3px;
		}
		div.loginbox span.remember {
			float: left;
			padding: 5px 0 0 0;
			font-size: 14px;
			color: #999;
		}
	
	div.menubuttons {
		display: none;
		position: fixed;
		width:50px;
		height:50px;
		top: 0;
		right:10px;
		z-index: 5000;
	}
	@media screen and (max-width : 800px) {
		div.menubuttons {
			display: block;
		}
	}
		div.menubuttons div.displaymenu {
			position: relative;
			width:50px;
			height:50px;
			float: left;
			/*margin: 0 0 5px 0;*/
			color: #000;
			text-shadow:none;
			text-align: center;
			font-size:25px;
			line-height: 54px;
			vertical-align: middle;
			background: #f1f1f1;
			opacity: .4;
			cursor: pointer;
			/*box-shadow: 0 0px 18px rgba(0,0,0,1);*/
		}
			div.menubuttons div.displaymenu:hover {
				opacity: .9;
				/*background: #ffd800;*/
				box-shadow: 0 0px 18px rgba(0,0,0,1);
			}
		div.menubuttons div.displaysearch {
			display: none;
			position: relative;
			width:50px;
			height:50px;
			float: left;
			color: #000;
			text-shadow:none;
			text-align: center;
			font-size:25px;
			line-height: 54px;
			vertical-align: middle;
			background: #f1f1f1;
			opacity: .4;
			cursor: pointer;
			box-shadow: 0 0px 18px rgba(0,0,0,1);
		}
			div.menubuttons div.displaysearch:hover {
				opacity: .9;
				background: #ffd800;
			}

div.ebgheader {
	display: table;
	width:100%;
	height: auto;
	float: left;
	background:#98b74a;
}
	div.ebgheader div.header{
		display: table-row;
		width:100%;
		height: auto;
	}
		div.ebgheader div.header a {
			display: table-cell;
			width:44px;
			background-color: rgba(255,255,255,0.3);
			-webkit-transition-duration: .5s;
			-moz-transition-duration: .5s;
			-o-transition-duration: .5s;
			-ms-transition-duration: .5s;
			transition-duration: .5s;
			vertical-align: middle;
			text-align: center;
		}
			div.ebgheader div.header a:hover {
				background-color: rgba(255,255,255,0.2);
			}
				div.ebgheader div.header a img {
					max-height: 50%;
					vertical-align: middle;
				}
		div.ebgheader div.header div.logo {
			display: table-cell;
			padding: 0 0 0 20px;
		}
			div.ebgheader div.header div.logo img {
				max-width: 100%;
			}

div.ebgbody {
	display: table;
	width:100%;
	height: auto;
	min-height:250px;
	float: left;
}
	div.ebgbody div.body {
		display: table-row;
		position: relative;
		width: 100%;
		height: auto;
		min-height:250px;
		float: left;
	}

		div.ebgbody div.body div.menu {
			display: table-cell;
			max-width:233px;
			min-width:233px;
			height: auto;

			background: #fff;
			border:1px #b5b5b5 solid;
			box-shadow: 0px 1px 1px 0px #d5d5d5;
		}

		@media screen and (max-width : 800px) {
			div.ebgbody div.body div.menu {
				display: none;
				position: fixed;
				width:80%;
				height: 100%;
				top:0;
				left: 0;
				margin: 0 0 0 0;
				z-index: 5000;
				overflow-y: auto;
				-webkit-box-shadow: 0px 1px 5px 0px #000;
				-moz-box-shadow: 0px 1px 5px 0px #000;
				box-shadow: 0px 1px 5px 0px #000;
			}
		}

			
			div.ebgbody div.body div.menu ul.list{
				width:100%;
				height:auto;
				float: left;
				list-style: none;
			}

				div.ebgbody div.body div.menu ul.list li {
					width:100%;
					height: auto;
					min-height: 30px;
					float: left;
					line-height: 30px;
					vertical-align: middle;
					border-bottom: 1px #b5b5b5 solid;
					color: #888;
					cursor: pointer;
					cursor: hand;
				}
				@media screen and (max-width : 800px) {
					div.ebgbody div.body div.menu ul.list li {
						min-height: 60px;
						line-height: 60px;
					}
				}
					div.ebgbody div.body div.menu ul.list li.fn {
						border-bottom:none;
					}
					div.ebgbody div.body div.menu ul.list li.title {
						width: 100%;
						height: 31px;
						float: left;
						line-height: 31px;
						vertical-align: middle;
						color:#fff;
						background: #98B74A;
						text-shadow:1px 1px 0px #67851C;
						font-size: 15px;
					}
					@media screen and (max-width : 800px) {
						div.ebgbody div.body div.menu ul.list li.title {
							height: 61px;
							line-height: 61px;
						}
					}
					div.ebgbody div.body div.menu ul.list li div.icon,
					div.ebgbody div.body div.menu ul.list li div.iconmenu {
						width:30px;
						height: 30px;
						float: left;
						line-height: 30px;
						vertical-align: middle;
						margin: 0 15px 0 0;
						background: #f8f8f8;
						border-right: 1px #b5b5b5 solid;
						text-align: center;
					}
					@media screen and (max-width : 800px) {
						div.ebgbody div.body div.menu ul.list li div.icon,
						div.ebgbody div.body div.menu ul.list li div.iconmenu {
							height: 60px;
							line-height: 60px;
						}
					}
					div.ebgbody div.body div.menu ul.list li div.iconmenu {
						background: #98B74A;
						border-right: 1px #86a33b solid;
					}
					div.ebgbody div.body div.menu ul.list li div.link {
						font-size: 14px;
						-moz-transition-duration: .2s;
							-o-transition-duration: .2s;
							-ms-transition-duration: .2s;
							transition-duration: .2s;
					}
						div.ebgbody div.body div.menu ul.list li div.link:hover {
							background: #f8f8f8;
							-webkit-transition-duration: .2s;
							-moz-transition-duration: .2s;
							-o-transition-duration: .2s;
							-ms-transition-duration: .2s;
							transition-duration: .2s;
						}
					div.ebgbody div.body div.menu ul.list li ul.options {
						width:100%;
						height:auto;
						float: left;
						list-style: none;
						border-top: 2px #98B74A solid;

					}

						div.ebgbody div.body div.menu ul.list li ul.options li {
							width:100%;
							height: auto;
							min-height: 30px;
							float: left;
							/*padding: 0 0 0 20px;*/
							line-height: 30px;
							vertical-align: middle;
							border-top: 1px #b5b5b5 solid;
							border-bottom: none;
							color: #89ac2f;
							cursor: pointer;
							cursor: hand;
							background:url(../img/bgpatern.png) #FAFAFA repeat;
							text-shadow:1px 1px 0px #fff;
						}
						@media screen and (max-width : 800px) {
							div.ebgbody div.body div.menu ul.list li ul.options li {
								min-height: 60px;
								line-height: 60px;
							}
						}


							div.ebgbody div.body div.menu ul.list li ul.options li a {
								display: block;
							}
							div.ebgbody div.body div.menu ul.list li ul.options li a:link {
								text-decoration:none;
								color:#666;
								-webkit-transition-duration: .2s;
								-moz-transition-duration: .2s;
								-o-transition-duration: .2s;
								-ms-transition-duration: .2s;
								transition-duration: .2s;

							}
							div.ebgbody div.body div.menu ul.list li ul.options li a:visited { text-decoration:none; color:#666; }
							div.ebgbody div.body div.menu ul.list li ul.options li a:active { text-decoration:none; color:#666; }
							div.ebgbody div.body div.menu ul.list li ul.options li a:hover {
								text-decoration:none;
								color:#89ac2f;
								-webkit-transition-duration: .2s;
								-moz-transition-duration: .2s;
								-o-transition-duration: .2s;
								-ms-transition-duration: .2s;
								transition-duration: .2s;

							}

							div.ebgbody div.body div.menu ul.list li ul.options li div {
								background-image:url(../img/leftliststyle.png);
								background-repeat: no-repeat;
								background-position: 35px center;
								font-size: 14px;
							}



		{
			display: table-cell;
			padding: 0 0 0 30px;
		}

		@media screen and (max-width : 800px) {
			{
				position: static;
				width:100%;
				height: auto;
				float: left;
				padding: 15% 2% 2% 2%;
				margin: 0;
				text-align: justify;
				-webkit-box-sizing: border-box;
				-moz-box-sizing: border-box;
				box-sizing: border-box;
				overflow: hidden;
				background: #fff;
			}
		}
		
			div.plane {
				display: none;
				position: relative;
				width: 100%;
				height: auto;
				top: 0;
				left: 0;
				float: left;
				margin: 0 0 20px 0;
				background: #fff;
				z-index: 10;
			}
			@media screen and (max-width : 800px) {
				div.plane {
					position: static;
				}
			}
				div.plane.active {
					z-index: 11;
				}
			div.buttons,
			div.defaultbuttons {
				display: none;
				position: absolute;
				width: auto;
				height: 33px;
				top: 0;
				right: 0;
				padding: 1px;
				margin: 5px 2% 0 0;
			}
			@media screen and (max-width : 800px) {
				div.buttons,
				div.defaultbuttons {
					position: relative;
					float: right;
				}
			}
			div.defaultbuttons {
				display: block;
			}
			
			div.buttons div.button,
			div.defaultbuttons div.button {
				width: auto;
				min-width:11px;
				height: 31px;
				float: left;
				padding: 0 10px 0 10px;
				margin: 0 0 0 5px;
				line-height: 31px;
				vertical-align: middle;
				border: 1px #ccc solid;
				border-radius:2px;
				text-align: center;
				background: #f1f1f1;
				color:#555;
				cursor: pointer;
			}
			div.buttons div.button:hover,
			div.defaultbuttons div.button:hover {
					color: #333;
					border: 1px #999 solid;
				}

			div.title {
				width:96%;
				height: 35px;
				float: left;
				padding: 0 0 5px 0;
				margin: 20px 2% 30px 2%;
				line-height: 20px;
				vertical-align: middle;
				color: #535252;
				font-size: 20px;
				border-bottom:1px #b5b5b5 solid;
			}
			@media screen and (max-width : 800px) {
				div.title {
					width:100%;
					margin: 20px 0 30px 0;
				}
			}
			div.titleseparator {
				width: 96%;
				height: 35px;
				float: left;
				padding: 0 1% 0 1%;
				margin: 40px 2% 15px 2%;
				line-height: 35px;
				vertical-align: middle;
				color: #535252;
				font-size: 18px;
				font-weight: 400;
				background: #f1f1f1;
				border-radius: 5px;
				box-shadow: 0px 1px 1px 0px #d5d5d5;
			}

			div.sortList {
				width: 96%;
				height: auto;
				float: left;
				margin: 0 2% 20px 2%;
			}
				div.sortList .sHeader {
					width: 100%;
					height: auto;
					float: left;
				}
					div.sortList .sHeader > div {
						height: auto;
						float: left;
						display: table-cell;
						vertical-align: bottom;
						padding-bottom: 5px;
						padding-top: 10px;
						padding-left: 5px;
						padding-right: 5px;
						border-bottom: 1px #ddd solid;
						border-right: 1px #ddd solid;
						border-left: 1px transparent solid;
						border-top: 1px transparent solid;
						font-weight: 400;
						font-size: 11pt;
						letter-spacing: 0.01em;
						line-height: 14pt;
						color: rgba(0, 0, 0, 0.6);
						text-align: left;
					}
						div.sortList .sHeader > div:last-child {
							border-right: 1px transparent solid;
						}
						div.sortList .sHeader > div.center {
							text-align: center;
						}
				div.sortList .sBody {
					position: relative;
					width: 100%;
					height: auto;
					float: left;
				}
					div.sortList .sBody .sFil {
						width: 100%;
						float: left;
						cursor: move;
					}
						div.sortList .sBody .sFil:hover {
							background: #f1f1f1;
						}
						div.sortList .sBody .ui-sortable-helper {
							display: none;
						}
						div.sortList .sBody .ui-state-highlight {
							position: relative;
							width: 100%;
							height: 40px;
							float: left;
							padding: 5px;
							margin: 1% 0 1% 0;
							background: #FFFADF;
							border: 1px #D3A350 solid;
						}
						div.sortList .sBody .sFil > div {
							height: 35px;
							float: left;
							display: table-cell;
							vertical-align: bottom;
							padding-bottom: 5px;
							padding-top: 10px;
							padding-left: 5px;
							padding-right: 5px;
							border-bottom: 1px #ddd solid;
							border-right: 1px #ddd solid;
							border-left: 1px transparent solid;
							border-top: 1px transparent solid;
							font-weight: 400;
							font-size: 11pt;
							letter-spacing: 0.01em;
							line-height: 14pt;
							color: rgba(0, 0, 0, 0.6);
							text-align: left;
							overflow: hidden;
							text-overflow: ellipsis;
							white-space: nowrap;
						}
							div.sortList .sBody .sFil > div:last-child {
								border-right: 1px transparent solid;
							}
			div.viewGrid {
				width: 96%;
				height: auto;
				float: left;
				margin: 0 2% 20px 2%;
			}
				div.viewGrid .sHeader {
					width: 100%;
					height: auto;
					float: left;
				}
					div.viewGrid .sHeader > div {
						height: auto;
						float: left;
						display: table-cell;
						vertical-align: bottom;
						padding-bottom: 5px;
						padding-top: 10px;
						padding-left: 5px;
						padding-right: 5px;
						border-bottom: 1px #ddd solid;
						border-right: 1px #ddd solid;
						border-left: 1px transparent solid;
						border-top: 1px transparent solid;
						font-weight: 400;
						font-size: 11pt;
						letter-spacing: 0.01em;
						line-height: 14pt;
						color: rgba(0, 0, 0, 0.6);
						text-align: left;
					}
						div.viewGrid .sHeader > div:last-child {
							border-right: 1px transparent solid;
						}
						div.viewGrid .sHeader > div.center {
							text-align: center;
						}
				div.viewGrid .sBody {
					position: relative;
					width: 100%;
					height: auto;
					float: left;
				}
					div.viewGrid .sBody .sFil {
						width: 100%;
						float: left;
						cursor: hand;
					}
						div.viewGrid .sBody .sFil:hover {
							background: #f1f1f1;
						}
						div.viewGrid .sBody .ui-sortable-helper {
							display: none;
						}
						div.viewGrid .sBody .ui-state-highlight {
							position: relative;
							width: 100%;
							height: 40px;
							float: left;
							padding: 5px;
							margin: 1% 0 1% 0;
							background: #FFFADF;
							border: 1px #D3A350 solid;
						}
						div.viewGrid .sBody .sFil > div {
							height: 35px;
							float: left;
							display: table-cell;
							vertical-align: bottom;
							padding-bottom: 5px;
							padding-top: 10px;
							padding-left: 5px;
							padding-right: 5px;
							border-bottom: 1px #ddd solid;
							border-right: 1px #ddd solid;
							border-left: 1px transparent solid;
							border-top: 1px transparent solid;
							font-weight: 400;
							font-size: 11pt;
							letter-spacing: 0.01em;
							line-height: 14pt;
							color: rgba(0, 0, 0, 0.6);
							text-align: left;
							overflow: hidden;
							text-overflow: ellipsis;
							white-space: nowrap;
						}
							div.viewGrid .sBody .sFil > div:last-child {
								border-right: 1px transparent solid;
							}
/*
table {
	border-collapse: collapse;
	border-spacing: 0;
}

table {
  width: 96%;
  border-collapse: separate;
  margin: 0 2% 20px 2%;
  cursor: pointer;
}
@media screen and (max-width : 800px) {
	table {
	  width: 100%;
	  border-collapse: separate;
	  margin: 0 0 20px 0;
	  cursor: pointer;
	}	
}
table thead tr th,
table thead tr td {
  display: table-cell;
  vertical-align: bottom;
  padding-bottom: 5px;
  padding-top: 10px;
  padding-left: 5px;
  padding-right: 5px;
  border-bottom: 1px #ddd solid;
  border-right: 1px #ddd solid;
  border-left: 1px transparent solid;
  border-top: 1px transparent solid;
  font-weight: 400;
  font-size: 11pt;
  letter-spacing: 0.01em;
  line-height: 14pt;
  color: rgba(0, 0, 0, 0.6);
  text-align: left;
}
table thead tr th.chk,
table thead tr td.chk {
  width: 30px;
}
table thead tr th.right,
table thead tr td.right {
  text-align: right;
  padding-right: 10px;
}
table thead tr th.center,
table thead tr td.center {
  text-align: center;
}
table thead tr th.last,
table thead tr td.last {
  border-right: 1px transparent solid;
}
table thead tr th:last-child,
table thead tr td:last-child {
  border-right: 1px transparent solid;

}
table tbody tr {
  border: 1px #fff solid;
}
table tbody tr td {
  font-weight: 300;
  font-size: 11pt;
  letter-spacing: 0.02em;
  line-height: 20px;
  padding: 3px 10px;
  border-right: 1px #ddd solid;
  border-bottom: 1px #ddd solid;
  box-sizing: border-box;

  text-overflow:ellipsis;
  overflow: hidden;
}
@media screen and (max-width : 800px) {
	table tbody tr td {
		padding: 3px 1%;
		box-sizing: border-box;
	}
}
table tbody tr td.right {
  text-align: right;
}
table tbody tr td.center {
  text-align: center;
}
table tbody tr td.last {
  border-right: 1px transparent solid;
}
table tbody tr td:last-child {
  border-right: 1px transparent solid;
}
table tbody tr.success {
  background-color: #00a300 !important;
}
table tbody tr.error {
  background-color: #b91d47 !important;
}
table tbody tr.warning {
  background-color: #e3a21a !important;
}
table tbody tr.info {
  background-color: #2d89ef !important;
}
table tbody tr.info td,
table tbody tr.warning td,
table tbody tr.error td,
table tbody tr.success td {
  color: #ffffff !important;
}
table tbody tr.selected-row {
  background-color: rgba(28, 183, 236, 0.1) !important;
}
table tbody tr.selected-row td:first-child {
  border-left: 1px #1c98cc solid;
}
table tbody tr.selected-row td:last-child {
  border-right: 1px #1c98cc solid;
}
table tbody tr.selected-row td {
  border-top: 1px #1c98cc solid;
  border-bottom: 1px #1c98cc solid;
}
table.striped tbody tr:nth-child(odd) {
  background-color: #f9f9f9;
}
table.hovered {
  border-collapse: separate !important;
}
table.hovered thead tr th:hover,
table.hovered thead tr td:hover {

  background: rgba(135, 135, 135, 0.1);
}
table.hovered tbody tr:hover {
  background: rgba(135, 135, 135, 0.1);
}
table.hovered tbody tr:hover td:first-child {

}
table.hovered tbody tr:hover td:last-child {

}
table.hovered tbody tr:hover td {

}
table.bordered {
  border-collapse: separate !important;
  border: 1px #ccc solid !important;
}
table.bordered tbody tr:last-child td {
  border-bottom: 0;
}
			/*div.table {
				width: 96%;
				height: auto;
				margin: 0 2% 0 2%;
			}
				div.table div.row {
					width: 100%;
					height: auto;
					float: left;
				}
					div.table div.row.titlecol {
						font-weight: bold;
					}
					div.table div.row div.col {
						width: 50%;
						height: auto;
						float: left;
					}
					div.table div.row.center div.col {
						text-align: center;
					}*/
			div.tablecontainer {
				position: relative;
				width: 100%;
				height: auto;
				float: left;
			}
				div.tablecontainer div.msgerror {
					position: relative;
					width: 96%;
					height: auto;
					float: left;
					padding: 2%;
					margin: 10px 2% 20px 2%;
					border: 1px solid #AD0F16;
					background: #ffbbba;
					color:#AD0F16;
				}
			div.search {
				position: relative;
				width: 96%;
				height: auto;
				margin: 10px 2% 20px 2%;
				float: left;
			}
				div.search input[type="text"] {
					width:100%;
					border: 1px solid #ccc;
					padding:4px;
					-webkit-border-radius: 3px;
					-moz-border-radius: 3px;
					border-radius: 3px;
					font-size: 15px;
				}
			div.checkboxgroup {
				width: 96%;
				height: auto;
				float: left;
				padding: 0 1% 0 1%;
				margin: 20px 2% 20px 2%;
			}

				div.checkboxgroup div.checkcontainer {
					width: 20%;
					height: 20px;
					float: left;
					padding: 0 1% 0 0;
					overflow: hidden;
					text-overflow: ellipsis;
					white-space: nowrap;
				}
				@media screen and (max-width : 640px) {
					div.checkboxgroup div.checkcontainer {
						width: 33.3%;
					}
				}
				@media screen and (max-width : 360px) {
					div.checkboxgroup div.checkcontainer {
						width: 50%;
					}
				}
			div.short {
				position: relative;
				width: 43%;
				height: auto;
				margin: 10px 55% 0 2%;
				float: left;
			}
			div.shortLeft {
				position: relative;
				width: 43%;
				height: auto;
				min-height: 60px;
				margin: 10px 5% 0 2%;
				float: left;
			}
			div.large {
				position: relative;
				width: 93%;
				height: auto;
				margin: 10px 2% 0 2%;
				float: left;
			}
			/*div.multiplesImagesUpload {
				border: 1px #ccc solid;
			}
			ul.imageList {
				position: relative;
				width: 100%;
				height: auto;
				max-height: 600px;
				padding: 0 1% 0 1%;
				margin: 0 0 0 0;
				float: left;
				list-style: none;
				overflow: auto;
			}
				ul.imageList li.ui-state-highlight {
					position: relative;
					width: 100%;
					height: 95px;
					float: left;
					padding: 5px;
					margin: 0 0 1% 0;
					background: #FFFADF;
					border: 1px #D3A350 solid;
				}
				ul.imageList li.image {
					position: relative;
					width: 100%;
					height: auto;
					float: left;
					padding: 5px;
					margin: 0 0 1% 0;
					background: #f1f1f1;
					border: 1px #ccc solid;
					cursor: move;
				}
					ul.imageList li.image span.filename {
						display: block;
					}
					ul.imageList li.image div.feet {
						display: block;
						width: 100%;
						height: 28px;
						float: left;
						margin: 5px 0 0 0;
						border-top: 1px #ccc dashed;
					}
						ul.imageList li.image div.feet input {
							width: 100%;
							height: 28px;
							float: left;
							color: #333;
							font-size: 13px;
							cursor: text!important;
							border: none;
							background: transparent;
						}
					ul.imageList li.image div.delete {
						position: absolute;
						width: 16px;
						height: 16px;
						top: 5px;
						right: 5px;
					}
					ul.imageList li.image div.cancel {
						position: absolute;
						width: 18px;
						height: 18px;
						top: 5px;
						right: 5px;
						background: #B11E1E;
						font-size: 14px;
						text-align: center;
						color: #fff;
						cursor: pointer;
					}
					ul.imageList li.image img {
						max-height: 50px;
						float: left;
						margin: 0 10px 0 0;
					}
					ul.imageList li.image div.progress {
						position: relative;
						width: 100%;
						height: 5px;
						float: left;
						margin: 5px 0 0 0;
					}
						ul.imageList li.image div.progress div.blue {
							position: relative;
							width: 1%;
							height: 5px;
							float: left;
							background-color: rgb(136, 174, 199);
						}*/
			@media screen and (max-width : 480px) {
				div.short,
				div.shortLeft,
				div.large{
					width: 96%;
					padding: 0 0% 0 0%;
					margin: 10px 2% 0 2%;
				}
			}
				div.short label,
				div.shortLeft label,
				div.large label {
					width: 100%;
					height: auto;
					display: block;
					float: left;
				}
					div.short label span,
					div.shortLeft label span,
					div.large label span {
						display: block;
						width: 100%;
						height: auto;
						float: left;
					}
				div.large span.desc,
				div.short span.desc, 
				div.shortLeft span.desc {
					display: block;
					width: 100%;
					height: auto;
					margin: 0 0 5px 0;
					float: left;
					color: #777;
					font-size: 13px;
				}
			div.tilebutton {
				position: relative;
				width:22.6%;
				height: 190px;
				float: left;
				padding: 0 0 0 0;
				margin: 2% 0 2% 2%;
				line-height: 190px;
				vertical-align: middle;
				border: 1px #ccc solid;
				border-radius:2px;
				text-align: center;
				background: #f1f1f1;
				color:#555;
				cursor: pointer;
				font-size: 60px;
			}
			@media screen and (max-width : 480px) {
				div.tilebutton {
					width: 22.6%;
					height: 110px;
					line-height: 85px;
					font-size: 30px;
				}
			}
			@media screen and (max-width : 360px) {
				div.tilebutton {
					width: 31%;
					height: 100px;
					line-height: 80px;
					font-size: 30px;
				}
			}
				div.tilebutton:hover {
					color: #333;
					border: 1px #999 solid;
				}
				div.tilebutton span {
					position: absolute;
					display: block;
					width: 94%;
					height: auto;
					min-height: 20px;
					padding: 3%;
					left: 0;
					bottom: 0;
					line-height: 1;
					font-size: 14px;
					color: #535252!important;
					cursor: pointer;
				}
			div.inputbutton {
				width:auto;
				height: 31px;
				float: left;
				padding: 0 10px 0 10px;
				margin: 2% 0 2% 2%;
				line-height: 29px;
				vertical-align: middle;
				border: 1px #ccc solid;
				border-radius:2px;
				text-align: center;
				background: #f1f1f1;
				color:#555;
				cursor: pointer;
			}
				div.inputbutton label {
					display: block;
					width: 100%;
					height: 100%;
					cursor: pointer;
				}
				div.inputbutton.wolmargin {
					margin: 0 1% 1% 1%;
				}
				div.inputbutton:hover {
					color: #333;
					border: 1px #999 solid;
				}
			input[type="text"],
			input[type="password"]{
				width:100%;
				/*max-width:100%;*/
				border: 1px solid #ccc;
				padding:4px;
				margin:0 0 5px 0;
				-webkit-border-radius: 3px;
				-moz-border-radius: 3px;
				border-radius: 3px;
				font-size: 15px;
			}
			@media screen and (max-width : 800px) {
				input[type="text"],
				input[type="password"]{
					width: 100%;
					height: 40px;
				}
			}
			input[type="text"].colorpicker {
				cursor: pointer;
			}
				input[type="text"]:hover,
				input[type="password"]:hover{
					border: 1px solid #999;
				}

			select {
				/*position: relative;*/
				width:100%;
				height: 38px;
				border: 1px solid #ccc;
				padding: 3px 4px 3px 4px;
				margin:0 0 5px 0;
				-webkit-border-radius: 3px;
				-moz-border-radius: 3px;
				border-radius: 3px;
				font-size: 15px;
				background-color: #fff;
			}
			@media screen and (max-width : 800px) {
				select {
					width: 100%;
					height: 40px;
				}
			}
				select:hover {
					border: 1px solid #999;
				}


			div.actionbutton{
				width: 28px;
				height: 28px;
				float: left;
				margin: 0 0 0 2%;
				line-height: 30px;
				vertical-align: middle;
				border: 1px #ccc solid;
				border-radius: 2px;
				text-align: center;
				background: #f1f1f1;
				color: #555;
				cursor: pointer;
			}
			div.actionbutton:hover {
				color: #333;
				border: 1px #999 solid;
			}
			iframe.uploadIframe{
				width: 93%;
				height: 40px;
			}
			@media screen and (max-width : 800px) {
				iframe.uploadIframe {
					width: 100%;
					height: 40px;
					-webkit-box-sizing: border-box;
					-moz-box-sizing: border-box;
					box-sizing: border-box;
				}
			}
			div.uploadfile{
				position: relative;
				width: auto;
				height: 28px;
				float: left;
				max-width:50%;
				padding:0 3% 0 3%;
				line-height: 28px;
				vertical-align: middle;
				border: 1px #ccc solid;
				border-radius: 2px;
				text-align: center;
				background: #f1f1f1;
				color: #555;
				cursor: pointer;
				text-overflow:ellipsis;
				white-space: nowrap;
				overflow: hidden;
			}
				div.uploadfile span {
					cursor: pointer;
				}
				div.uploadfile:hover {
					color: #333;
					border: 1px #999 solid;
				}
				div.uploadfile input{
					position: absolute;
					width: 100%;
					height: 100%;
					top: 0;
					left: 0;
					filter: alpha(opacity=0);
   				opacity: 0;
   				cursor: pointer;
				}
			textarea{
				width: 100%;
				height: 194px;
				max-width:100%;
				min-width: 100%;
				border: 1px solid #ccc;
				padding: 1%;
				margin:0 0 5px 0;
				-webkit-border-radius: 3px;
				-moz-border-radius: 3px;
				border-radius: 3px;
				font-size: 15px;
			}
				textarea:hover {
					border: 1px solid #999;
				}
			div.pagesnav {
				width:95%;
				height: auto;
				float: left;
				margin: 0 2% 10px 2%;	
				color: #535252;
				font-size: 14px;
			}
				div.pagesnav span.nav {
					float: right;
				}
			span.paragraph {
				width:96%;
				height: auto;
				float: left;
				margin: 0 2% 30px 2%;	
				color: #535252;
				text-align: justify;
			}
			@media screen and (max-width : 800px) {
				span.paragraph {
					width:100%;
					margin: 0 0 30px 0;
				}
			}

	
a { color:#37b5e8; text-decoration:none; }
a:visited { color:#37b5e8; text-decoration:none; }
a:actived { color:#37b5e8; text-decoration:none; }
a:hover { color:#37b5e8; text-decoration:underline; }

 
@font-face {
  font-family: "icons";
  src:url("../fonts/generic-icons/icons.eot");
  src:url("../fonts/generic-icons/icons.eot?#iefix") format("embedded-opentype"),
    url("../fonts/generic-icons/icons.ttf") format("truetype"),
    url("../fonts/generic-icons/icons.svg#untitled-font-1") format("svg"),
    url("../fonts/generic-icons/icons.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
 
[data-icon]:before {
  font-family: "icons" !important;
  content: attr(data-icon);
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
 
[class^="icon-"]:before,
[class*=" icon-"]:before {
  font-family: "icons" !important;
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
} 
 

/*
 * jQuery Nivo Slider v3.2
 * http://nivo.dev7studios.com
 *
 * Copyright 2012, Dev7studios
 * Free to use and abuse under the MIT license.
 * http://www.opensource.org/licenses/mit-license.php
 */
 
/* The Nivo Slider styles */
.nivoSlider {
	position:relative;
	width:100%;
	height:100%;
	overflow: hidden;
}
.nivoSlider img {
	position:absolute;
	display:none;
	top:0px;
	left:0px;
	max-width: none;
}
.nivo-main-image {
	display: block !important;
	position: relative !important; 
	width: 100% !important;
}

/* If an image is wrapped in a link */
.nivoSlider a.nivo-imageLink {
	position:absolute;
	top:0px;
	left:0px;
	width:100%;
	height:100%;
	border:0;
	padding:0;
	margin:0;
	z-index:6;
	display:none;
	background:white; 
	filter:alpha(opacity=0); 
	opacity:0;
}
/* The slices and boxes in the Slider */
.nivo-slice {
	display:block;
	position:absolute;
	z-index:5;
	height:100%;
	top:0;
}
.nivo-box {
	display:block;
	position:absolute;
	z-index:5;
	overflow:hidden;
}
.nivo-box img { display:block; }

/* Caption styles */
.nivo-caption {
	position:absolute;
	left:0px;
	bottom:0px;
	background:#000;
	color:#fff;
	width:100%;
	z-index:8;
	padding: 5px 10px;
	opacity: 0.8;
	overflow: hidden;
	display: none;
	-moz-opacity: 0.8;
	filter:alpha(opacity=8);
	-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
	-moz-box-sizing: border-box;    /* Firefox, other Gecko */
	box-sizing: border-box;         /* Opera/IE 8+ */
}
.nivo-caption p {
	padding:5px;
	margin:0;
}
.nivo-caption a {
	display:inline !important;
}
.nivo-html-caption {
    display:none;
}
/* Direction nav styles (e.g. Next & Prev) */
.nivo-directionNav a {
	position:absolute;
	top:45%;
	z-index:9;
	cursor:pointer;

	display:block;
	width:30px;
	height:30px;
	background:url(../img/arrows.png) no-repeat;
	text-indent:-9999em;
	border:0;
	opacity: 0;
	-webkit-transition: all 200ms ease-in-out;
    -moz-transition: all 200ms ease-in-out;
    -o-transition: all 200ms ease-in-out;
    transition: all 200ms ease-in-out;
}
.theme-default:hover .nivo-directionNav a { opacity: 1; }
.theme-default a.nivo-nextNav {
	background-position:-30px 0;
	right:15px;
}
.theme-default a.nivo-prevNav {
	left:15px;
}
/* Control nav styles (e.g. 1,2,3...) */
.nivo-controlNav {
	position: relative;
	top:-25px;
	/*text-align:right;*/
	padding: 0 10px 0 0;
	z-index: 10;
}
.nivo-controlNav a {
	display:inline-block;
	width:15px;
	height:22px;
	background:url(../img/bullets.png) no-repeat;
	text-indent:-9999px;
	border:0;
	float: right;
	margin: 0 2px 0 0;
	cursor:pointer;
	
}
.nivo-controlNav a.active {
	font-weight:bold;
	background-position:0 -22px;
}

.nivoSlider a {
	border:0;
	display:block;
}
/*
	Colorbox Core Style:
	The following CSS is consistent between example themes and should not be altered.
*/
#colorbox, #cboxOverlay, #cboxWrapper{position:absolute; top:0; left:0; z-index:9999; overflow:hidden;}
#cboxOverlay{position:fixed; width:100%; height:100%;}
#cboxMiddleLeft, #cboxBottomLeft{clear:left;}
#cboxContent{position:relative;}
#cboxLoadedContent{overflow:auto; -webkit-overflow-scrolling: touch;}
#cboxTitle{margin:0;}
#cboxLoadingOverlay, #cboxLoadingGraphic{position:absolute; top:0; left:0; width:100%; height:100%;}
#cboxPrevious, #cboxNext, #cboxClose, #cboxSlideshow{cursor:pointer;}
.cboxPhoto{float:left; margin:auto; border:0; display:block; max-width:none; -ms-interpolation-mode:bicubic;}
.cboxIframe{width:100%; height:100%; display:block; border:0;}
#colorbox, #cboxContent, #cboxLoadedContent{box-sizing:content-box; -moz-box-sizing:content-box; -webkit-box-sizing:content-box;}

/* 
	User Style:
	Change the following styles to modify the appearance of Colorbox.  They are
	ordered & tabbed in a way that represents the nesting of the generated HTML.
*/
#cboxOverlay{background:#000;}
#colorbox{outline:0;}
	#cboxTopLeft{width:14px; height:14px; background:url(../img/controls.png) no-repeat 0 0;}
	#cboxTopCenter{height:14px; background:url(../img/border.png) repeat-x top left;}
	#cboxTopRight{width:14px; height:14px; background:url(../img/controls.png) no-repeat -36px 0;}
	#cboxBottomLeft{width:14px; height:43px; background:url(../img/controls.png) no-repeat 0 -32px;}
	#cboxBottomCenter{height:43px; background:url(../img/border.png) repeat-x bottom left;}
	#cboxBottomRight{width:14px; height:43px; background:url(../img/controls.png) no-repeat -36px -32px;}
	#cboxMiddleLeft{width:14px; background:url(../img/controls.png) repeat-y -175px 0;}
	#cboxMiddleRight{width:14px; background:url(../img/controls.png) repeat-y -211px 0;}
	#cboxContent{background:#fff; overflow:visible;}
		.cboxIframe{background:#fff;}
		#cboxError{padding:50px; border:1px solid #ccc;}
		#cboxLoadedContent{margin-bottom:5px;}
		#cboxLoadingOverlay{background:url(../img/loading_background.png) no-repeat center center;}
		#cboxLoadingGraphic{background:url(../img/loading.gif) no-repeat center center;}
		#cboxTitle{position:absolute; bottom:-25px; left:0; text-align:center; width:100%; font-weight:bold; color:#7C7C7C;}
		#cboxCurrent{position:absolute; bottom:-25px; left:58px; font-weight:bold; color:#7C7C7C;}

		/* these elements are buttons, and may need to have additional styles reset to avoid unwanted base styles */
		#cboxPrevious, #cboxNext, #cboxSlideshow, #cboxClose {border:0; padding:0; margin:0; overflow:visible;  position:absolute; bottom:-29px; background:url(../img/controls.png) no-repeat 0px 0px; width:23px; height:23px; text-indent:-9999px;}
		
		/* avoid outlines on :active (mouseclick), but preserve outlines on :focus (tabbed navigating) */
		#cboxPrevious:active, #cboxNext:active, #cboxSlideshow:active, #cboxClose:active {outline:0;}

		#cboxPrevious{left:0px; background-position: -51px -25px;}
		#cboxPrevious:hover{background-position:-51px 0px;}
		#cboxNext{left:27px; background-position:-75px -25px;}
		#cboxNext:hover{background-position:-75px 0px;}
		#cboxClose{right:0; background-position:-100px -25px;}
		#cboxClose:hover{background-position:-100px 0px;}

		.cboxSlideshow_on #cboxSlideshow{background-position:-125px 0px; right:27px;}
		.cboxSlideshow_on #cboxSlideshow:hover{background-position:-150px 0px;}
		.cboxSlideshow_off #cboxSlideshow{background-position:-150px -25px; right:27px;}
		.cboxSlideshow_off #cboxSlideshow:hover{background-position:-125px 0px;}

		/*! jQuery UI - v1.10.3 - 2013-11-19
* http://jqueryui.com
* Includes: jquery.ui.core.css, jquery.ui.datepicker.css
* Copyright 2013 jQuery Foundation and other contributors; Licensed MIT */

.ui-widget {
	/*font-family: Verdana,Arial,sans-serif;*/
	font-size: 1.1em;
}
.ui-widget .ui-widget {
	font-size: 1em;
}
.ui-widget input,
.ui-widget select,
.ui-widget textarea,
.ui-widget button {
	/*font-family: Verdana,Arial,sans-serif;*/
	font-size: 1em;
}
.ui-widget-content {
	border: 1px solid #aaaaaa;
	background: #ffffff;
	color: #222222;
}
.ui-widget-content a {
	color: #222222;
}
.ui-widget-header {
	border: 1px solid #aaaaaa;
	background: #cccccc;
	color: #222222;
	font-weight: bold;
}
.ui-widget-header a {
	color: #222222;
}

/* Interaction states
----------------------------------*/
.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default {
	border: 1px solid #d3d3d3;
	background: #e6e6e6;
	font-weight: normal;
	color: #555555;
}
.ui-state-default a,
.ui-state-default a:link,
.ui-state-default a:visited {
	color: #555555;
	text-decoration: none;
}
.ui-state-hover,
.ui-widget-content .ui-state-hover,
.ui-widget-header .ui-state-hover,
.ui-state-focus,
.ui-widget-content .ui-state-focus,
.ui-widget-header .ui-state-focus {
	border: 1px solid #999999;
	background: #dadada;
	font-weight: normal;
	color: #212121;
}
.ui-state-hover a,
.ui-state-hover a:hover,
.ui-state-hover a:link,
.ui-state-hover a:visited {
	color: #212121;
	text-decoration: none;
}
.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active {
	border: 1px solid #aaaaaa;
	background: #ffffff;
	font-weight: normal;
	color: #212121;
}
.ui-state-active a,
.ui-state-active a:link,
.ui-state-active a:visited {
	color: #212121;
	text-decoration: none;
}

/* Interaction Cues
----------------------------------*/
.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
	border: 1px solid #fcefa1/*{borderColorHighlight}*/;
	background: #fbf9ee;
	color: #363636/*{fcHighlight}*/;
}
.ui-state-highlight a,
.ui-widget-content .ui-state-highlight a,
.ui-widget-header .ui-state-highlight a {
	color: #363636/*{fcHighlight}*/;
}
.ui-state-error,
.ui-widget-content .ui-state-error,
.ui-widget-header .ui-state-error {
	border: 1px solid #cd0a0a/*{borderColorError}*/;
	background: #fef1ec;
	color: #cd0a0a/*{fcError}*/;
}
.ui-state-error a,
.ui-widget-content .ui-state-error a,
.ui-widget-header .ui-state-error a {
	color: #cd0a0a/*{fcError}*/;
}
.ui-state-error-text,
.ui-widget-content .ui-state-error-text,
.ui-widget-header .ui-state-error-text {
	color: #cd0a0a/*{fcError}*/;
}
.ui-priority-primary,
.ui-widget-content .ui-priority-primary,
.ui-widget-header .ui-priority-primary {
	font-weight: bold;
}
.ui-priority-secondary,
.ui-widget-content .ui-priority-secondary,
.ui-widget-header .ui-priority-secondary {
	opacity: .7;
	filter:Alpha(Opacity=70);
	font-weight: normal;
}
.ui-state-disabled,
.ui-widget-content .ui-state-disabled,
.ui-widget-header .ui-state-disabled {
	opacity: .35;
	filter:Alpha(Opacity=35);
	background-image: none;
}
.ui-state-disabled .ui-icon {
	filter:Alpha(Opacity=35); /* For IE8 - See #6059 */
}

/* Icons
----------------------------------*/

/* states and images */
.ui-icon {
	width: 16px;
	height: 16px;
}
.ui-icon,
.ui-widget-content .ui-icon {
	background-image: url(../img/ui-icons_454545_256x240.png)/*{iconsContent}*/;
}
.ui-widget-header .ui-icon {
	background-image: url(../img/ui-icons_454545_256x240.png)/*{iconsHeader}*/;
}
.ui-state-default .ui-icon {
	background-image: url(../img/ui-icons_454545_256x240.png)/*{iconsDefault}*/;
}
.ui-state-hover .ui-icon,
.ui-state-focus .ui-icon {
	background-image: url(../img/ui-icons_454545_256x240.png)/*{iconsHover}*/;
}
.ui-state-active .ui-icon {
	background-image: url(../img/ui-icons_454545_256x240.png)/*{iconsActive}*/;
}
.ui-state-highlight .ui-icon {
	background-image: url(../img/ui-icons_454545_256x240.png)/*{iconsHighlight}*/;
}
.ui-state-error .ui-icon,
.ui-state-error-text .ui-icon {
	background-image: url(../img/ui-icons_454545_256x240.png)/*{iconsError}*/;
}

/* positioning */
.ui-icon-blank { background-position: 16px 16px; }
.ui-icon-circle-triangle-e { background-position: -48px -192px; }
.ui-icon-circle-triangle-w { background-position: -80px -192px; }

/* Corner radius */
.ui-corner-all {
	border-radius: 0px;
}
/* Interaction Cues
----------------------------------*/
.ui-state-disabled {
	cursor: default !important;
}
/* Icons
----------------------------------*/

/* states and images */
.ui-icon {
	display: block;
	text-indent: -99999px;
	overflow: hidden;
	background-repeat: no-repeat;
}

/* Overlays */
.ui-widget-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.ui-datepicker {
	width: 17em;
	padding: .2em .2em 0;
	display: none;
}
.ui-datepicker .ui-datepicker-header {
	position: relative;
	padding: .2em 0;
}
.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
	position: absolute;
	top: 2px;
	width: 1.8em;
	height: 1.8em;
}
.ui-datepicker .ui-datepicker-prev-hover,
.ui-datepicker .ui-datepicker-next-hover {
	top: 1px;
}
.ui-datepicker .ui-datepicker-prev {
	left: 2px;
}
.ui-datepicker .ui-datepicker-next {
	right: 2px;
}
.ui-datepicker .ui-datepicker-prev-hover {
	left: 1px;
}
.ui-datepicker .ui-datepicker-next-hover {
	right: 1px;
}
.ui-datepicker .ui-datepicker-prev span,
.ui-datepicker .ui-datepicker-next span {
	display: block;
	position: absolute;
	left: 50%;
	margin-left: -8px;
	top: 50%;
	margin-top: -8px;
}
.ui-datepicker .ui-datepicker-title {
	margin: 0 2.3em;
	line-height: 1.8em;
	text-align: center;
}
.ui-datepicker .ui-datepicker-title select {
	font-size: 1em;
	margin: 1px 0;
}
.ui-datepicker select.ui-datepicker-month-year {
	width: 100%;
}
.ui-datepicker select.ui-datepicker-month,
.ui-datepicker select.ui-datepicker-year {
	width: 49%;
}
.ui-datepicker table {
	width: 100%;
	font-size: .9em;
	border-collapse: collapse;
	margin: 0 0 .4em;
}
.ui-datepicker th {
	padding: .7em .3em;
	text-align: center;
	font-weight: bold;
	border: 0;
}
.ui-datepicker td {
	border: 0;
	padding: 1px;
}
.ui-datepicker td span,
.ui-datepicker td a {
	display: block;
	padding: .2em;
	text-align: right;
	text-decoration: none;
}
.ui-datepicker .ui-datepicker-buttonpane {
	background-image: none;
	margin: .7em 0 0 0;
	padding: 0 .2em;
	border-left: 0;
	border-right: 0;
	border-bottom: 0;
}
.ui-datepicker .ui-datepicker-buttonpane button {
	float: right;
	margin: .5em .2em .4em;
	cursor: pointer;
	padding: .2em .6em .3em .6em;
	width: auto;
	overflow: visible;
}
.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current {
	float: left;
}

/* with multiple calendars */
.ui-datepicker.ui-datepicker-multi {
	width: auto;
}
.ui-datepicker-multi .ui-datepicker-group {
	float: left;
}
.ui-datepicker-multi .ui-datepicker-group table {
	width: 95%;
	margin: 0 auto .4em;
}
.ui-datepicker-multi-2 .ui-datepicker-group {
	width: 50%;
}
.ui-datepicker-multi-3 .ui-datepicker-group {
	width: 33.3%;
}
.ui-datepicker-multi-4 .ui-datepicker-group {
	width: 25%;
}
.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header,
.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header {
	border-left-width: 0;
}
.ui-datepicker-multi .ui-datepicker-buttonpane {
	clear: left;
}
.ui-datepicker-row-break {
	clear: both;
	width: 100%;
	font-size: 0;
}

/* RTL support */
.ui-datepicker-rtl {
	direction: rtl;
}
.ui-datepicker-rtl .ui-datepicker-prev {
	right: 2px;
	left: auto;
}
.ui-datepicker-rtl .ui-datepicker-next {
	left: 2px;
	right: auto;
}
.ui-datepicker-rtl .ui-datepicker-prev:hover {
	right: 1px;
	left: auto;
}
.ui-datepicker-rtl .ui-datepicker-next:hover {
	left: 1px;
	right: auto;
}
.ui-datepicker-rtl .ui-datepicker-buttonpane {
	clear: right;
}
.ui-datepicker-rtl .ui-datepicker-buttonpane button {
	float: left;
}
.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current,
.ui-datepicker-rtl .ui-datepicker-group {
	float: right;
}
.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header,
.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header {
	border-right-width: 0;
	border-left-width: 1px;
}

.ui-datepicker-month,
.ui-datepicker-year {
	background-color: inherit;
}

/* css for timepicker */
.ui-timepicker-div .ui-widget-header { margin-bottom: 8px; }
.ui-timepicker-div dl { text-align: left; }
.ui-timepicker-div dl dt { float: left; clear:left; padding: 0 0 0 5px; }
.ui-timepicker-div dl dd { margin: 0 10px 10px 40%; }
.ui-timepicker-div td { font-size: 90%; }
.ui-tpicker-grid-label { background: none; border: none; margin: 0; padding: 0; }

.ui-timepicker-rtl{ direction: rtl; }
.ui-timepicker-rtl dl { text-align: right; padding: 0 5px 0 0; }
.ui-timepicker-rtl dl dt{ float: right; clear: right; }
.ui-timepicker-rtl dl dd { margin: 0 40% 10px 10px; }

/*Slider*/
.ui-slider {
	position: relative;
	text-align: left;
}
.ui-slider .ui-slider-handle {
	position: absolute;
	z-index: 2;
	width: 1.2em;
	height: 1.2em;
	cursor: default;
}
.ui-slider .ui-slider-range {
	position: absolute;
	z-index: 1;
	font-size: .7em;
	display: block;
	border: 0;
	background-position: 0 0;
}

/* For IE8 - See #6727 */
.ui-slider.ui-state-disabled .ui-slider-handle,
.ui-slider.ui-state-disabled .ui-slider-range {
	filter: inherit;
}

.ui-slider-horizontal {
	height: .8em;
}
.ui-slider-horizontal .ui-slider-handle {
	top: -.3em;
	margin-left: -.6em;
}
.ui-slider-horizontal .ui-slider-range {
	top: 0;
	height: 100%;
}
.ui-slider-horizontal .ui-slider-range-min {
	left: 0;
}
.ui-slider-horizontal .ui-slider-range-max {
	right: 0;
}

.ui-slider-vertical {
	width: .8em;
	height: 100px;
}
.ui-slider-vertical .ui-slider-handle {
	left: -.3em;
	margin-left: 0;
	margin-bottom: -.6em;
}
.ui-slider-vertical .ui-slider-range {
	left: 0;
	width: 100%;
}
.ui-slider-vertical .ui-slider-range-min {
	bottom: 0;
}
.ui-slider-vertical .ui-slider-range-max {
	top: 0;
}


.pbtn { display: inline }
.btn {
		display: inline-block;
		padding: 4px 12px;
		margin-bottom: 0;
		font-size: 14px;
		line-height: 20px;
		text-align: center;
		vertical-align: middle;
		cursor: pointer;
		color: #333333;
		text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
		background-color: #f5f5f5;
		background-image: -moz-linear-gradient(top, #ffffff, #e6e6e6);
		background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#e6e6e6));
		background-image: -webkit-linear-gradient(top, #ffffff, #e6e6e6);
		background-image: -o-linear-gradient(top, #ffffff, #e6e6e6);
		background-image: linear-gradient(to bottom, #ffffff, #e6e6e6);
		background-repeat: repeat-x;
		filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe6e6e6', GradientType=0);
		border-color: #e6e6e6 #e6e6e6 #bfbfbf;
		border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
		filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
		border: 1px solid #cccccc;
		border-bottom-color: #b3b3b3;
		-webkit-border-radius: 4px;
		-moz-border-radius: 4px;
		border-radius: 4px;
		-webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);
		-moz-box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);
		box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);
}
a.btn:link {
		text-decoration: none;
		color: #666;
}
a.btn:visited {
		text-decoration: none;
		color: #666;
}
a.btn:active {
		text-decoration: none;
		color: #666;
}
a.btn:hover {
		text-decoration: none;
		color: #666;
}
.pbtn.pright { float: right!important }
/*@media screen and (max-width : 1000px) {
	.pbtn.pright {
		width: 100%;
		float: left!important;
	}
}*/
.btn:hover,
.btn:focus {
		color: #333333;
		text-decoration: none;
		/*background-position: 0 -28px;*/
		background-image:none;
		/*background-image: linear-gradient(to top, #0044cc, #0088cc);*/
		/*-webkit-transition: background-position 0.1s linear;
		-moz-transition: background-position 0.1s linear;
		-o-transition: background-position 0.1s linear;
		transition: background-position 0.1s linear;*/
		-webkit-transition: all 200ms ease-in-out;
    -moz-transition: all 200ms ease-in-out;
    -o-transition: all 200ms ease-in-out;
    transition: all 200ms ease-in-out;
}
.btn:focus {
		outline: thin dotted #333;
		outline: 5px auto -webkit-focus-ring-color;
		outline-offset: -2px;
}
.btn.active,
.btn:active {
		background-image: none;
		outline: 0;
		-webkit-box-shadow: inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);
		-moz-box-shadow: inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);
		box-shadow: inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);
}
.btn.disabled,
.btn[disabled] {
		cursor: default;
		background-image: none;
		opacity: 0.65;
		filter: alpha(opacity=65);
		-webkit-box-shadow: none;
		-moz-box-shadow: none;
		box-shadow: none;
}
.btn-primary {
		color: #ffffff;
		text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
		background-color: #4077B3;
		/*background-image: linear-gradient(to bottom, #0088cc, #0044cc);*/
		background-image: linear-gradient(to bottom, #478BD5, #27517E);
		background-repeat: repeat-x;
		border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
}
a.btn-primary:link {
		text-decoration: none;
		color: #fff;
}
a.btn-primary:visited {
		text-decoration: none;
		color: #fff;
}
a.btn-primary:active {
		text-decoration: none;
		color: #fff;
}
a.btn-primary:hover {
		text-decoration: none;
		color: #fff;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary.active,
.btn-primary.disabled,
.btn-primary[disabled] {
		color: #ffffff;
		background-color: #4077B3;
}
.icon-folder-open {
		background-position: -408px -120px;
		width: 16px;
}



/*
colpick Color Picker / colpick.com
*/

/*Main container*/
.colpick {
	position: absolute;
	width: 346px;
	height: 170px;
	overflow: hidden;
	display: none;
	font-family: Arial, Helvetica, sans-serif;
	background:#ebebeb;
	border: 1px solid #bbb;

	
	/*Prevents selecting text when dragging the selectors*/
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	-o-user-select: none;
	user-select: none;

	margin: 5px 0 0 0;
	z-index: 13;
}
/*Color selection box with gradients*/
.colpick_color {
	position: absolute;
	left: 7px;
	top: 7px;
	width: 156px;
	height: 156px;
	overflow: hidden;
	outline: 1px solid #aaa;
	cursor: crosshair;
}
.colpick_color_overlay1 {
	position: absolute;
	left:0;
	top:0;
	width: 156px;
	height: 156px;
	-ms-filter: "progid:DXImageTransform.Microsoft.gradient(GradientType=1,startColorstr='#ffffff', endColorstr='#00ffffff')"; /* IE8 */
	background: -moz-linear-gradient(left, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, right top, color-stop(0%,rgba(255,255,255,1)), color-stop(100%,rgba(255,255,255,0))); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(left, rgba(255,255,255,1) 0%,rgba(255,255,255,0) 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(left, rgba(255,255,255,1) 0%,rgba(255,255,255,0) 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(left, rgba(255,255,255,1) 0%,rgba(255,255,255,0) 100%); /* IE10+ */
	background: linear-gradient(to right, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
	filter:  progid:DXImageTransform.Microsoft.gradient(GradientType=1,startColorstr='#ffffff', endColorstr='#00ffffff'); /* IE6 & IE7 */
}
.colpick_color_overlay2 {
	position: absolute;
	left:0;
	top:0;
	width: 156px;
	height: 156px;
	-ms-filter: "progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#00000000', endColorstr='#000000')"; /* IE8 */
	background: -moz-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(0,0,0,0)), color-stop(100%,rgba(0,0,0,1))); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,1) 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,1) 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,1) 100%); /* IE10+ */
	background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,1) 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#000000',GradientType=0 ); /* IE6-9 */
}
/*Circular color selector*/
.colpick_selector_outer {
	background:none;
	position: absolute;
	width: 11px;
	height: 11px;
	margin: -6px 0 0 -6px;
	border: 1px solid black;
	border-radius: 50%;
}
.colpick_selector_inner{
	position: absolute;
	width: 9px;
	height: 9px;
	border: 1px solid white;
	border-radius: 50%;
}
/*Vertical hue bar*/
.colpick_hue {
	position: absolute;
	top: 6px;
	left: 175px;
	width: 19px;
	height: 156px;
	border: 1px solid #aaa;
	cursor: n-resize;
}
/*Hue bar sliding indicator*/
.colpick_hue_arrs {
	position: absolute;
	left: -8px;
	width: 35px;
	height: 7px;
	margin: -7px 0 0 0;
}
.colpick_hue_larr {
	position:absolute;
	width: 0; 
	height: 0; 
	border-top: 6px solid transparent;
	border-bottom: 6px solid transparent;
	border-left: 7px solid #858585;
}
.colpick_hue_rarr {
	position:absolute;
	right:0;
	width: 0; 
	height: 0; 
	border-top: 6px solid transparent;
	border-bottom: 6px solid transparent; 
	border-right: 7px solid #858585; 
}
/*New color box*/
.colpick_new_color {
	position: absolute;
	left: 207px;
	top: 6px;
	width: 60px;
	height: 27px;
	background: #f00;
	border: 1px solid #8f8f8f;
}
/*Current color box*/
.colpick_current_color {
	position: absolute;
	left: 277px;
	top: 6px;
	width: 60px;
	height: 27px;
	background: #f00;
	border: 1px solid #8f8f8f;
}
/*Input field containers*/
.colpick_field, .colpick_hex_field  {
	position: absolute;
	height: 20px;
	width: 60px;
	overflow:hidden;
	background:#f3f3f3;
	color:#b8b8b8;
	font-size:12px;
	border:1px solid #bdbdbd;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}
.colpick_rgb_r {
	top: 40px;
	left: 207px;
}
.colpick_rgb_g {
	top: 67px;
	left: 207px;
}
.colpick_rgb_b {
	top: 94px;
	left: 207px;
}
.colpick_hsb_h {
	top: 40px;
	left: 277px;
}
.colpick_hsb_s {
	top: 67px;
	left: 277px;
}
.colpick_hsb_b {
	top: 94px;
	left: 277px;
}
.colpick_hex_field {
	width: 68px;
	left: 207px;
	top: 121px;
}
/*Text field container on focus*/
.colpick_focus {
	border-color: #999;
}
/*Field label container*/
.colpick_field_letter {
	position: absolute;
	width: 17px;
	height: 20px;
	line-height: 20px;
	padding-left: 4px;
	background: #efefef;
	border-right: 1px solid #bdbdbd;
	font-weight: bold;
	color:#777;
}
/*Text inputs*/
.colpick_field input, .colpick_hex_field input {
	position: absolute;
	right: 11px;
	margin: 0;
	padding: 0;
	height: 20px;
	line-height: 20px;
	background: transparent;
	border: none;
	font-size: 12px;
	font-family: Arial, Helvetica, sans-serif;
	color: #555;
	text-align: right;
	outline: none;
}
.colpick_hex_field input {
	right: 4px;
}
/*Field up/down arrows*/
.colpick_field_arrs {
	position: absolute;
	top: 0;
	right: 0;
	width: 9px;
	height: 21px;
	cursor: n-resize;
}
.colpick_field_uarr {
	position: absolute;
	top: 5px;
	width: 0; 
	height: 0; 
	border-left: 4px solid transparent;
	border-right: 4px solid transparent;
	border-bottom: 4px solid #959595;
}
.colpick_field_darr {
	position: absolute;
	bottom:5px;
	width: 0; 
	height: 0; 
	border-left: 4px solid transparent;
	border-right: 4px solid transparent;
	border-top: 4px solid #959595;
}
/*Submit/Select button*/
.colpick_submit {
	position: absolute;
	left: 207px;
	top: 149px;
	width: 130px;
	height: 22px;
	line-height:22px;
	background: #efefef;
	text-align: center;
	color: #555;
	font-size: 12px;
	font-weight:bold;
	border: 1px solid #bdbdbd;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}
.colpick_submit:hover {
	background:#f3f3f3;
	border-color:#999;
	cursor: pointer;
}

/*full layout with no submit button*/
.colpick_full_ns  .colpick_submit, .colpick_full_ns .colpick_current_color{
	display:none;
}
.colpick_full_ns .colpick_new_color {
	width: 130px;
	height: 25px;
}
.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;
}

/*rgbhex layout*/
.colpick_rgbhex .colpick_hsb_h, .colpick_rgbhex .colpick_hsb_s, .colpick_rgbhex .colpick_hsb_b {
	display:none;
}
.colpick_rgbhex {
	width:282px;
}
.colpick_rgbhex .colpick_field, .colpick_rgbhex .colpick_submit {
	width:68px;
}
.colpick_rgbhex .colpick_new_color {
	width:34px;
	border-right:none;
}
.colpick_rgbhex .colpick_current_color {
	width:34px;
	left:240px;
	border-left:none;
}

/*rgbhex layout, no submit button*/
.colpick_rgbhex_ns  .colpick_submit, .colpick_rgbhex_ns .colpick_current_color{
	display:none;
}
.colpick_rgbhex_ns .colpick_new_color{
	width:68px;
	border: 1px solid #8f8f8f;
}
.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;
}

/*hex layout*/
.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 {
	width:206px;
	height:201px;
}
.colpick_hex .colpick_hex_field {
	width:72px;
	height:25px;
	top:168px;
	left:80px;
}
.colpick_hex .colpick_hex_field div, .colpick_hex .colpick_hex_field input {
	height: 25px;
	line-height: 25px;
}
.colpick_hex .colpick_new_color {
	left:9px;
	top:168px;
	width:30px;
	border-right:none;
}
.colpick_hex .colpick_current_color {
	left:39px;
	top:168px;
	width:30px;
	border-left:none;
}
.colpick_hex .colpick_submit {
	left:164px;
	top: 168px;
	width:30px;
	height:25px;
	line-height: 25px;
}

/*hex layout, no submit button*/
.colpick_hex_ns  .colpick_submit, .colpick_hex_ns .colpick_current_color {
	display:none;
}
.colpick_hex_ns .colpick_hex_field {
	width:80px;
}
.colpick_hex_ns .colpick_new_color{
	width:60px;
	border: 1px solid #8f8f8f;
}

/*Dark color scheme*/
.colpick_dark {
	background: #161616;
	border-color: #2a2a2a;
}
.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;
}


/* GOOGLE MAP SEARCH INPUT STYLE */
.controls {
  margin-top: 10px;
  border: 1px solid transparent;
  border-radius: 2px 0 0 2px;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  height: 32px;
  outline: none;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

#pac-input {
  background-color: #fff;
  font-size: 15px;
  font-weight: 300;
  margin-left: 12px;
  padding: 0 11px 0 13px;
  text-overflow: ellipsis;
  width: 300px;
}

#pac-input:focus {
  border-color: #4d90fe;
}

#type-selector {
  color: #fff;
  background-color: #4d90fe;
  padding: 5px 11px 0px 11px;
}

#type-selector label {
  font-size: 13px;
  font-weight: 300;
}

.pac-container {
	z-index: 100000;
}
/* END GOOGLE MAP SEARCH INPUT STYLE */

#routes-page1-list-routes > div.road {
	display: inline-block;
	width: 100%;
	height: 60px;
	float: left;
	box-shadow: 0 1px 1px rgba(123, 123, 123, 0.4);
	background-color: #fff;
	border-radius: 5px;
	line-height: 60px;
	margin-bottom: 10px;
}
#routes-page1-list-routes > div.road.active {
	height: 64px;
	border: 2px #2196F3 solid;
}
.width1p-15 {
    width: calc(100% - 150px);
}


.span1 { display: inline-block; width: 100%; }
.span2 { width: 50%; }
.span3 { width: 33.33%; }
.span4 { width: 25%; }
.span5 { width: 20%; }
.span6 { width: 16.66%; }
.span7 { width: 14.28%; }
.span8 { width: 12.5%; }
.span9 { width: 11.11%; }
.span10 { width: 10%; }
.span20 { width: 20%; }
.span30 { width: 30%; }
.span40 { width: 40%; }
.span50 { width: 50%; }
.span60 { width: 60%; }
.span70 { width: 70%; }
.span80 { width: 80%; }
.span90 { width: 90%; }
.span100 { width: 100%; }

.padding0 { padding: 0px; }
.padding05 { padding: 5px; }
.padding1 { padding: 10px; }
.padding2 { padding: 20px; }
.padding3 { padding: 30px; }
.padding4 { padding: 40px; }
.padding5 { padding: 50px; }
.padding6 { padding: 60px; }
.padding7 { padding: 70px; }
.padding8 { padding: 80px; }
.padding9 { padding: 90px; }
.padding10 { padding: 100px; }

.padding-top05 { padding-top: 5px; }
.padding-top1 { padding-top: 10px; }
  .padding-top15 { padding-top: 15px; }
.padding-top2 { padding-top: 20px; }
.padding-top3 { padding-top: 30px; }
.padding-top4 { padding-top: 40px; }
.padding-top5 { padding-top: 50px; }
.padding-top6 { padding-top: 60px; }
.padding-top7 { padding-top: 70px; }
.padding-top8 { padding-top: 80px; }
.padding-top9 { padding-top: 90px; }
.padding-top10 { padding-top: 100px; }
.padding-top110 { padding-top: 110px; }
.padding-top120 { padding-top: 120px; }
.padding-top130 { padding-top: 130px; }
.padding-top150 { padding-top: 150px; }

.padding-left05 { padding-left: 5px; }
.padding-left1 { padding-left: 10px; }
.padding-left2 { padding-left: 20px; }
.padding-left3 { padding-left: 30px; }
.padding-left4 { padding-left: 40px; }
.padding-left5 { padding-left: 50px; }
.padding-left6 { padding-left: 60px; }
.padding-left7 { padding-left: 70px; }
.padding-left8 { padding-left: 80px; }
.padding-left9 { padding-left: 90px; }
.padding-left10 { padding-left: 100px; }
.padding-left11 { padding-left: 110px; }
.padding-left12 { padding-left: 120px; }

.padding-right01 { padding-right: 1px; }
.padding-right02 { padding-right: 2px; }
.padding-right03 { padding-right: 3px; }
.padding-right04 { padding-right: 4px; }
.padding-right05 { padding-right: 5px; }
.padding-right1 { padding-right: 10px; }
.padding-right2 { padding-right: 20px; }
.padding-right3 { padding-right: 30px; }
.padding-right4 { padding-right: 40px!important; }
.padding-right5 { padding-right: 50px; }
.padding-right6 { padding-right: 60px; }
.padding-right7 { padding-right: 70px; }
.padding-right8 { padding-right: 80px; }
.padding-right9 { padding-right: 90px; }
.padding-right10 { padding-right: 100px; }
.padding-right11 { padding-right: 110px; }
.padding-right12 { padding-right: 120px; }

.padding-bottom05 { padding-bottom: 5px; }
.padding-bottom1 { padding-bottom: 10px; }
	.padding-bottom15 { padding-bottom: 15px; }
.padding-bottom2 { padding-bottom: 20px; }
.padding-bottom3 { padding-bottom: 30px; }
.padding-bottom4 { padding-bottom: 40px; }
.padding-bottom5 { padding-bottom: 50px; }
	.padding-bottom56 { padding-bottom: 56px; }
.padding-bottom6 { padding-bottom: 60px; }
.padding-bottom7 { padding-bottom: 70px; }
.padding-bottom8 { padding-bottom: 80px; }
.padding-bottom9 { padding-bottom: 90px; }
.padding-bottom10 { padding-bottom: 100px; }

.padding-left1p { padding-left: 1%; }

.margin1 { margin: 10px; }

.margin-top05 { margin-top: 5px; }
.margin-top08 { margin-top: 8px; }
.margin-top1 { margin-top: 10px; }
	.margin-top15 { margin-top: 15px; }
.margin-top2 { margin-top: 20px; }
.margin-top3 { margin-top: 30px; }
.margin-top4 { margin-top: 40px; }
.margin-top5 { margin-top: 50px; }
.margin-top6 { margin-top: 60px; }
.margin-top7 { margin-top: 70px; }
.margin-top8 { margin-top: 80px; }
.margin-top9 { margin-top: 90px; }
.margin-top10 { margin-top: 100px; }
.margin-top130 { margin-top: 130px; }

.margin-left05 { margin-left: 5px; }
.margin-left1 { margin-left: 10px; }
.margin-left2 { margin-left: 20px; }
.margin-left3 { margin-left: 30px; }
.margin-left4 { margin-left: 40px; }
.margin-left5 { margin-left: 50px; }
.margin-left6 { margin-left: 60px; }
.margin-left7 { margin-left: 70px; }
.margin-left8 { margin-left: 80px; }
.margin-left9 { margin-left: 90px; }
.margin-left10 { margin-left: 100px; }

.margin-left-20 { margin-left: -20px; }
.margin-left-45 { margin-left: -45px; }

.margin-right02 { margin-right: 2px; }
.margin-right05 { margin-right: 5px; }
.margin-right1 { margin-right: 10px; }
.margin-right2 { margin-right: 20px; }
.margin-right3 { margin-right: 30px; }
.margin-right4 { margin-right: 40px; }
.margin-right5 { margin-right: 50px; }
.margin-right6 { margin-right: 60px; }
.margin-right7 { margin-right: 70px; }
.margin-right8 { margin-right: 80px; }
.margin-right9 { margin-right: 90px; }
.margin-right10 { margin-right: 100px; }

.margin-bottom05 { margin-bottom: 5px; }
.margin-bottom1 { margin-bottom: 10px; }
.margin-bottom2 { margin-bottom: 20px; }
.margin-bottom3 { margin-bottom: 30px; }
.margin-bottom4 { margin-bottom: 40px; }
.margin-bottom5 { margin-bottom: 50px; }
.margin-bottom6 { margin-bottom: 60px; }
.margin-bottom7 { margin-bottom: 70px; }
.margin-bottom8 { margin-bottom: 80px; }
.margin-bottom9 { margin-bottom: 90px; }
.margin-bottom10 { margin-bottom: 100px; }

.margin-bottom-1 { margin-bottom: -10px; }
.margin-bottom-2 { margin-bottom: -20px; }
.margin-bottom-3 { margin-bottom: -30px; }
.margin-bottom-4 { margin-bottom: -40px; }
.margin-bottom-5 { margin-bottom: -50px; }
	.margin-bottom-5and6 { margin-bottom: -56px; }
.margin-bottom-6 { margin-bottom: -60px; }
.margin-bottom-7 { margin-bottom: -70px; }
.margin-bottom-8 { margin-bottom: -80px; }
.margin-bottom-9 { margin-bottom: -90px; }
.margin-bottom-10 { margin-bottom: -100px; }
.margin-bottom-11 { margin-bottom: -110px; }
.margin-bottom-12 { margin-bottom: -120px; }
.margin-bottom-13 { margin-bottom: -130px; }
.margin-bottom-14 { margin-bottom: -140px; }
.margin-bottom-15 { margin-bottom: -150px; }
.margin-bottom-16 { margin-bottom: -160px; }
.margin-bottom-17 { margin-bottom: -170px; }
.margin-bottom-18 { margin-bottom: -180px; }
.margin-bottom-19 { margin-bottom: -190px; }
.margin-bottom-20 { margin-bottom: -200px; }
.margin-bottom-21 { margin-bottom: -210px; }
.margin-bottom-22 { margin-bottom: -220px; }
.margin-bottom-23 { margin-bottom: -230px; }
.margin-bottom-24 { margin-bottom: -240px; }
.margin-bottom-25 { margin-bottom: -250px; }
.margin-bottom-26 { margin-bottom: -260px; }
.margin-bottom-27 { margin-bottom: -270px; }
.margin-bottom-28 { margin-bottom: -280px; }
.margin-bottom-30 { margin-bottom: -300px; }
.margin-bottom-35 { margin-bottom: -350px; }
.margin-bottom-40 { margin-bottom: -400px; }
.margin-bottom-45 { margin-bottom: -450px; }
.margin-bottom-47 { margin-bottom: -470px; }
.margin-bottom-50 { margin-bottom: -500px; }

.top0 { top: 0px;}
.top1 { top: 10px;}
.top2 { top: 20px;}
.top3 { top: 30px;}
.top4 { top: 40px;}
.top5 { top: 50px;}
.top6 { top: 60px;}
.top7 { top: 70px;}

.top-01 { top: -1px;}
.top-02 { top: -2px;}
.top-03 { top: -3px;}
.top-04 { top: -4px;}
.top-05 { top: -5px;}
.top-1 { top: -10px;}
.top-2 { top: -20px;}
.top-3 { top: -30px;}
.top-4 { top: -40px;}
	.top-45 { top: -45px;}
.top-5 { top: -50px;}

.top-1p { top: -10%;}
.top-2p { top: -20%;}
.top-3p { top: -30%;}
.top-4p { top: -40%;}
.top-5p { top: -50%;}

.left0 { left: 0px;}
.left05 { left: 5px;}
.left1 { left: 10px;}
	.left15 { left: 15px;}
.left2 { left: 20px;}
.left3 { left: 30px;}

.left50p { left: 50%; }

.right0 { right: 0px; }
.right05 { right: 5px; }
.right1 { right: 10px; }
.right2 { right: 20px; }
.right3 { right: 30px; }
.right4 { right: 40px; }
.right5 { right: 50px; }

.right-01 { right: -1px; }
.right-02 { right: -2px; }
.right-03 { right: -3px; }
.right-04 { right: -4px; }
.right-05 { right: -5px; }
.right-1 { right: -10px; }
.right-2 { right: -20px; }
.right-3 { right: -30px; }
.right-4 { right: -40px; }
.right-5 { right: -50px; }

.bottom0 { bottom: 0px; }
.bottom1 { bottom: 10px; }
.bottom2 { bottom: 20px; }
.bottom3 { bottom: 30px; }
.bottom4 { bottom: 40px; }
.bottom5 { bottom: 50px; }
	.bottom5and5 { bottom: 55px; }
.bottom6 { bottom: 60px; }
	.bottom6and5 { bottom: 65px; }
.bottom7 { bottom: 70px; }
	.bottom7and5 { bottom: 75px; }
.bottom8 { bottom: 80px; }
.bottom9 { bottom: 90px; }
.bottom10 { bottom: 100px; }
.bottom13 { bottom: 130px; }
.bottom14 { bottom: 140px; }

.bottom-1 { bottom: -10px; }
.bottom-2 { bottom: -20px; }
.bottom-3 { bottom: -30px; }

.width1 { width: 10px; }
.width2 { width: 20px; }
.width3 { width: 30px; }
.width4 { width: 40px; }
.width5 { width: 50px; }
	.width5and4 { width: 54px; }
	.width5and5 { width: 55px; }
.width6 { width: 60px; }
.width7 { width: 70px; }
.width8 { width: 80px; }
.width9 { width: 90px; }
.width10 { width: 100px; }
.width11 { width: 110px; }
.width12 { width: 120px; }
.width13 { width: 130px; }
.width14 { width: 140px; }
.width15 { width: 150px; }
.width16 { width: 160px; }
.width17 { width: 170px; }
.width18 { width: 180px; }
.width19 { width: 190px; }
.width20 { width: 200px; }
.width21 { width: 210px; }
.width22 { width: 220px; }
.width23 { width: 230px; }
.width24 { width: 240px; }
.width25 { width: 250px; }
.width26 { width: 260px; }
.width27 { width: 270px; }
.width28 { width: 280px; }
.width30 { width: 300px; }
.width35 { width: 350px; }
.width40 { width: 400px; }
.width45 { width: 450px; }
.width47 { width: 470px; }
.width50 { width: 500px; }

.max-width100 { max-width: 100%; }

.width1p-1 { width: calc(100% - 10px); }
.width1p-2 { width: calc(100% - 20px); }
.width1p-3 { width: calc(100% - 30px); }
.width1p-4 { width: calc(100% - 40px); }
.width1p-5 { width: calc(100% - 50px); }
	.width1p-54 { width: calc(100% - 54px); }
	.width1p-55 { width: calc(100% - 55px); }
.width1p-6 { width: calc(100% - 60px); }

.width1p-7 { width: calc(100% - 70px); }
.width1p-8 { width: calc(100% - 80px); }
.width1p-9 { width: calc(100% - 90px); }
.width1p-10 { width: calc(100% - 100px); }
	.width1p-10and4 { width: calc(100% - 104px); }
.width1p-11 { width: calc(100% - 110px); }
.width1p-12 { width: calc(100% - 120px); }
.width1p-13 { width: calc(100% - 130px); }
.width1p-14 { width: calc(100% - 140px); }
.width1p-15 { width: calc(100% - 150px); }
.width1p-16 { width: calc(100% - 160px); }
    .width1p-162 { width: calc(100% - 162px); }
.width1p-20 { width: calc(100% - 200px); }
.width1p-25 { width: calc(100% - 250px); }
.width1p-30 { width: calc(100% - 300px); }

.width2p-1 { width: calc(20% - 10px); }

.width3p-1 { width: calc(30% - 10px); }
	.width33p-1 { width: calc(33.3333% - 10px); }

.width5p-1 { width: calc(50% - 10px); }
.width5p-2 { width: calc(50% - 20px); }
.width5p-3 { width: calc(50% - 30px); }
.width5p-4 { width: calc(50% - 40px); }
.width5p-5 { width: calc(50% - 50px); }
	.width5p-5and5 { width: calc(50% - 55px); }
.width5p-6 { width: calc(50% - 60px); }
.width5p-7 { width: calc(50% - 70px); }
.width5p-8 { width: calc(50% - 80px); }
.width5p-9 { width: calc(50% - 90px); }
.width5p-10 { width: calc(50% - 100px); }
.width5p-15 { width: calc(50% - 150px); }
.width5p-20 { width: calc(50% - 200px); }
.width5p-25 { width: calc(50% - 250px); }
.width5p-30 { width: calc(50% - 300px); }



.width10p { width: 100%; }

.height1 { height: 10px; }
	.height1and5 { height: 15px; }
.height2 { height: 20px; }
	.height2and5 { height: 25px; }
.height3 { height: 30px; }
	.height3and7 { height: 37px; }
.height4 { height: 40px; }
	.height4and5 { height: 45px; }
.height5 { height: 50px; }
	.height5and6 { height: 56px; }
.height6 { height: 60px; }
	.height6and8 { height: 68px; }
.height7 { height: 70px; }
	.height7and5 { height: 75px; }
.height8 { height: 80px; }
	.height8and5 { height: 85px; }
.height9 { height: 90px; }
.height10 { height: 100px; }
.height11 { height: 110px; }
	.height11and6 { height: 116px; }
.height12 { height: 120px; }
.height13 { height: 130px; }
	.height13and6 { height: 136px; }
.height14 { height: 140px; }
.height15 { height: 150px; }
.height16 { height: 160px; }
.height17 { height: 170px; }
.height18 { height: 180px; }
.height19 { height: 190px; }
	.height19and6 { height: 196px; }
.height20 { height: 200px; }
.height21 { height: 210px; }
.height22 { height: 220px; }
.height23 { height: 230px; }
.height24 { height: 240px; }
.height25 { height: 250px; }
.height26 { height: 260px; }
.height27 { height: 270px; }
.height28 { height: 280px; }
.height30 { height: 300px; }
	.height31 { height: 310px; }
.height33 { height: 330px; }
.height35 { height: 350px; }
.height40 { height: 400px; }
.height45 { height: 450px; }
.height47 { height: 470px; }
.height50 { height: 500px; }

.height10p { height: 100%; }

.min-height1 { min-height: 10px; }
.min-height2 { min-height: 20px; }
.min-height3 { min-height: 30px; }
.min-height4 { min-height: 40px; }
.min-height5 { min-height: 50px; }
.min-height6 { min-height: 60px; }
.min-height7 { min-height: 70px; }
.min-height8 { min-height: 80px; }
.min-height9 { min-height: 90px; }
.min-height10 { min-height: 100px; }
.min-height11 { min-height: 110px; }
.min-height12 { min-height: 120px; }
.min-height13 { min-height: 130px; }
.min-height14 { min-height: 140px; }
.min-height15 { min-height: 150px; }
.min-height16 { min-height: 160px; }
.min-height17 { min-height: 170px; }
.min-height18 { min-height: 180px; }
.min-height20 { min-height: 200px; }
.min-height30 { min-height: 300px; }
.min-height40 { min-height: 400px; }
.min-height50 { min-height: 500px; }

.max-height1 { max-height: 10px; }
.max-height2 { max-height: 20px; }
.max-height3 { max-height: 30px; }
.max-height4 { max-height: 40px; }
.max-height5 { max-height: 50px; }
.max-height6 { max-height: 60px; }
.max-height7 { max-height: 70px; }
.max-height8 { max-height: 80px; }
.max-height9 { max-height: 90px; }
.max-height10 { max-height: 100px; }
.max-height11 { max-height: 110px; }
.max-height12 { max-height: 120px; }
.max-height13 { max-height: 130px; }
.max-height14 { max-height: 140px; }
.max-height15 { max-height: 150px; }
.max-height16 { max-height: 160px; }
.max-height17 { max-height: 170px; }
.max-height18 { max-height: 180px; }
.max-height20 { max-height: 200px; }
.max-height30 { max-height: 300px; }
.max-height40 { max-height: 400px; }
.max-height50 { max-height: 500px; }
.max-height100 { max-height: 100%; }

.height1p-1 { height: calc(100% - 10px); }
.height1p-2 { height: calc(100% - 20px); }
.height1p-3 { height: calc(100% - 30px); }
.height1p-4 { height: calc(100% - 40px); }
.height1p-5 { height: calc(100% - 50px); }
	.height1p-56 { height: calc(100% - 56px); }
.height1p-6 { height: calc(100% - 60px); }
	.height1p-6and8 { height: calc(100% - 68px); }
.height1p-7 { height: calc(100% - 70px); }
.height1p-8 { height: calc(100% - 80px); }
.height1p-9 { height: calc(100% - 90px); }
.height1p-10 { height: calc(100% - 100px); }
	.height1p-104 { height: calc(100% - 104px); }
	.height1p-106 { height: calc(100% - 106px); }
	.height1p-112 { height: calc(100% - 112px); }
	.height1p-116 { height: calc(100% - 116px); }
.height1p-12 { height: calc(100% - 120px); }
	.height1p-128 { height: calc(100% - 128px); }
.height1p-13 { height: calc(100% - 130px); }
.height1p-15 { height: calc(100% - 150px); }
.height1p-16 { height: calc(100% - 160px); }
	.height1p-196 { height: calc(100% - 196px); }
.height1p-20 { height: calc(100% - 200px); }
	.height1p-26 { height: calc(100% - 260px); }
.height1p-30 { height: calc(100% - 300px); }
	.height1p-326 { height: calc(100% - 326px); }
	.height1p-386 { height: calc(100% - 386px); }

.min-height1p-1 { height: calc(100% - 10px); }
.min-height1p-2 { height: calc(100% - 20px); }
.min-height1p-3 { height: calc(100% - 30px); }
.min-height1p-4 { height: calc(100% - 40px); }
.min-height1p-5 { height: calc(100% - 50px); }
.min-height1p-6 { height: calc(100% - 60px); }
.min-height1p-7 { height: calc(100% - 70px); }
.min-height1p-8 { height: calc(100% - 80px); }
.min-height1p-9 { height: calc(100% - 90px); }
.min-height1p-10 { height: calc(100% - 100px); }
.min-height1p-15 { height: calc(100% - 150px); }
.min-height1p-20 { height: calc(100% - 200px); }
.min-height1p-28 { height: calc(100% - 280px); }
.min-height1p-56 { height: calc(100% - 56px); }
.min-height1p-104 { height: calc(100% - 104px); }
.min-height1p-112 { height: calc(100% - 112px); }



.line-height1 { line-height: 1; }
	.line-height1-5 { line-height: 1.5; }
.line-height-normal { line-height: normal; }
.line-height10 { line-height: 10px; }
.line-height12 { line-height: 12px; }
.line-height15 { line-height: 15px; }
.line-height16 { line-height: 16px; }
.line-height17 { line-height: 17px; }
.line-height18 { line-height: 18px; }
.line-height20 { line-height: 20px; }
.line-height25 { line-height: 25px; }
.line-height30 { line-height: 30px; }
.line-height40 { line-height: 40px; }
.line-height50 { line-height: 50px; }

.line-height60 { line-height: 60px; }
.line-height70 { line-height: 70px; }
.line-height80 { line-height: 80px; }
.line-height90 { line-height: 90px; }
.line-height100 { line-height: 100px; }
.line-height110 { line-height: 110px; }
.line-height120 { line-height: 120px; }
.line-height130 { line-height: 130px; }
.line-height140 { line-height: 140px; }

.border-none { border: none; }
.border-top-none { border-top: none; }
.border-right-none { border-right: none; }
.border-bottom-none { border-bottom: none; }
.border-left-none { border-left: none; }

.border-fff { border: 1px #fff solid; }
.border-000 { border: 1px #000 solid; }
.border-ccc { border: 1px #ccc solid; }
.border-f0f0f0 { border: 1px #F0F0F0 solid; }
.border-f1f1f1 { border: 1px #f1f1f1 solid; }
.border-f2f2f2 { border: 1px #f2f2f2 solid; }
.border-f3f3f3 { border: 1px #f3f3f3 solid; }
.border-f4f4f4 { border: 1px #f4f4f4 solid; }
.border-f5f5f5 { border: 1px #f5f5f5 solid; }
.border-f6f6f6 { border: 1px #f6f6f6 solid; }
.border-f7f7f7 { border: 1px #f7f7f7 solid; }
.border-e0e0e0 { border: 1px #e0e0e0 solid; }

.border-color-000 { border-color: #000; }
.border-color-fff { border-color: #fff; }
.border-color-ccc { border-color: #ccc; }
.border-color-f0f0f0 { border-color: #F0F0F0; }
.border-color-f1f1f1 { border-color: #f1f1f1; }
.border-color-f2f2f2 { border-color: #f2f2f2; }
.border-color-f3f3f3 { border-color: #f3f3f3; }
.border-color-f4f4f4 { border-color: #f4f4f4; }
.border-color-f5f5f5 { border-color: #f5f5f5; }
.border-color-f6f6f6 { border-color: #f6f6f6; }
.border-color-f7f7f7 { border-color: #f7f7f7; }
.border-color-f7f7f7 { border-color: #e0e0e0; }
.border-width1 { border-width: 1px; }
.border-width2 { border-width: 2px; }
.border-width3 { border-width: 3px; }
.border-width4 { border-width: 4px; }
.border-width5 { border-width: 5px; }
.border-style-solid { border-style: solid; }
.border-style-dotted { border-style: dotted; }
.border-style-dashed { border-style: dashed; }

.border-top-color-34383a { border-top-color: #34383a; }
.border-top-color-000 { border-top-color: #000; }
.border-top-color-ccc { border-top-color: #ccc; }
.border-top-color-f0f0f0 { border-top-color: #F0F0F0; }
.border-top-color-f1f1f1 { border-top-color: #f1f1f1; }
.border-top-color-f2f2f2 { border-top-color: #f2f2f2; }
.border-top-color-f3f3f3 { border-top-color: #f3f3f3; }
.border-top-color-f4f4f4 { border-top-color: #f4f4f4; }
.border-top-color-f5f5f5 { border-top-color: #f5f5f5; }
.border-top-color-f6f6f6 { border-top-color: #f6f6f6; }
.border-top-color-f7f7f7 { border-top-color: #f7f7f7; }
.border-top-color-e0e0e0 { border-top-color: #e0e0e0; }
.border-top-width1 { border-top-width: 1px; }
.border-top-width2 { border-top-width: 2px; }
.border-top-width3 { border-top-width: 3px; }
.border-top-width4 { border-top-width: 4px; }
.border-top-width5 { border-top-width: 5px; }
.border-top-style-solid { border-top-style: solid; }
.border-top-style-dotted { border-top-style: dotted; }
.border-top-style-dashed { border-top-style: dashed; }

.border-bottom-color-2b5992 { border-bottom-color: #2b5992; }
.border-bottom-color-b32016 { border-bottom-color: #b32016; }
.border-bottom-color-34383a { border-bottom-color: #34383a; }
.border-bottom-color-000 { border-bottom-color: #000; }
.border-bottom-color-ccc { border-bottom-color: #ccc; }
.border-bottom-color-f0f0f0 { border-bottom-color: #F0F0F0; }
.border-bottom-color-f1f1f1 { border-bottom-color: #f1f1f1; }
.border-bottom-color-f2f2f2 { border-bottom-color: #f2f2f2; }
.border-bottom-color-f3f3f3 { border-bottom-color: #f3f3f3; }
.border-bottom-color-f4f4f4 { border-bottom-color: #f4f4f4; }
.border-bottom-color-f5f5f5 { border-bottom-color: #f5f5f5; }
.border-bottom-color-f6f6f6 { border-bottom-color: #f6f6f6; }
.border-bottom-color-f7f7f7 { border-bottom-color: #f7f7f7; }
.border-bottom-color-e0e0e0 { border-bottom-color: #e0e0e0; }
.border-bottom-width1 { border-bottom-width: 1px; }
.border-bottom-width2 { border-bottom-width: 2px; }
.border-bottom-width3 { border-bottom-width: 3px; }
.border-bottom-width4 { border-bottom-width: 4px; }
.border-bottom-width5 { border-bottom-width: 5px; }
.border-bottom-style-solid { border-bottom-style: solid; }
.border-bottom-style-dotted { border-bottom-style: dotted; }
.border-bottom-style-dashed { border-bottom-style: dashed; }

.border-right-color-000 { border-right-color: #000; }
.border-right-color-ccc { border-right-color: #ccc; }
.border-right-color-f0f0f0 { border-right-color: #F0F0F0; }
.border-right-color-f1f1f1 { border-right-color: #f1f1f1; }
.border-right-color-f2f2f2 { border-right-color: #f2f2f2; }
.border-right-color-f3f3f3 { border-right-color: #f3f3f3; }
.border-right-color-f4f4f4 { border-right-color: #f4f4f4; }
.border-right-color-f5f5f5 { border-right-color: #f5f5f5; }
.border-right-color-f6f6f6 { border-right-color: #f6f6f6; }
.border-right-color-f7f7f7 { border-right-color: #f7f7f7; }
.border-right-color-e0e0e0 { border-right-color: #e0e0e0; }
.border-right-width1 { border-right-width: 1px; }
.border-right-width2 { border-right-width: 2px; }
.border-right-width3 { border-right-width: 3px; }
.border-right-width4 { border-right-width: 4px; }
.border-right-width5 { border-right-width: 5px; }
.border-right-style-solid { border-right-style: solid; }
.border-right-style-dotted { border-right-style: dotted; }
.border-right-style-dashed { border-right-style: dashed; }

.border-left-color-000 { border-left-color: #000; }
.border-left-color-ccc { border-left-color: #ccc; }
.border-left-color-f0f0f0 { border-left-color: #F0F0F0; }
.border-left-color-f1f1f1 { border-left-color: #f1f1f1; }
.border-left-color-f2f2f2 { border-left-color: #f2f2f2; }
.border-left-color-f3f3f3 { border-left-color: #f3f3f3; }
.border-left-color-f4f4f4 { border-left-color: #f4f4f4; }
.border-left-color-f5f5f5 { border-left-color: #f5f5f5; }
.border-left-color-f6f6f6 { border-left-color: #f6f6f6; }
.border-left-color-f7f7f7 { border-left-color: #f7f7f7; }
.border-left-color-e0e0e0 { border-left-color: #e0e0e0; }
.border-left-width1 { border-left-width: 1px; }
.border-left-width2 { border-left-width: 2px; }
.border-left-width3 { border-left-width: 3px; }
.border-left-width4 { border-left-width: 4px; }
.border-left-width5 { border-left-width: 5px; }
.border-left-style-solid { border-left-style: solid; }
.border-left-style-dotted { border-left-style: dotted; }
.border-left-style-dashed { border-left-style: dashed; }

.border-radius0 { border-radius: 0px; }
.border-radius1 { border-radius: 1px; }
.border-radius2 { border-radius: 2px; }
.border-radius3 { border-radius: 3px; }
.border-radius4 { border-radius: 4px; }
.border-radius5 { border-radius: 5px; }

.border-radius50p { border-radius: 50%; }

.border-top-right-radius { border-top-right-radius: 5px; }
.border-top-left-radius { border-top-left-radius: 5px; }
.border-bottom-right-radius { border-bottom-right-radius: 5px; }
.border-bottom-left-radius { border-bottom-left-radius: 5px; }

.bg-color-fff { background-color: #fff; }
.bg-color-ccc { background-color: #ccc; }
.bg-color-dadada { background-color: #dadada; }
.bg-color-9e9e9e { background-color: #9e9e9e; }
.bg-color-f0f0f0 { background-color: #F0F0F0; }
.bg-color-f1f1f1 { background-color: #f1f1f1; }
.bg-color-f2f2f2 { background-color: #f2f2f2; }
.bg-color-f3f3f3 { background-color: #f3f3f3; }
.bg-color-f4f4f4 { background-color: #f4f4f4; }
.bg-color-f5f5f5 { background-color: #f5f5f5; }
.bg-color-f6f6f6 { background-color: #f6f6f6; }
.bg-color-f7f7f7 { background-color: #f7f7f7; }
.bg-color-3F51B5 { background-color: #3F51B5; }
.bg-color-b3b3b3 { background-color: #b3b3b3; }

.bg-color-d2d2d2 { background-color: #d2d2d2; }

.bg-color-2196f3 { background-color: #2196f3; }
.bg-color-9c27b0 { background-color: #9c27b0; }
.bg-color-e91e63 { background-color: #e91e63; }
.bg-color-f6f9fb { background-color: #f6f9fb; }
.bg-color-F44336 { background-color: #F44336; }
.bg-color-03a9f4 { background-color: #03a9f4; }

.bg-color-EAEAEA { background-color: #EAEAEA; }

.bg-color-custom-c3250d { background-color: #c3250d; }

.bg-color-transparent { background-color: rgba(255, 255, 255, .01); }
.bg-color-translucent { background-color: rgba(255, 255, 255, 0.71); }
.bg-color-black-translucent { background-color: rgba(0, 0, 0, 0.58); }

.bg-color-translucent-fff10 { background-color: rgba(255, 255, 255, 0.1); }
.bg-color-translucent-fff20 { background-color: rgba(255, 255, 255, 0.2); }
.bg-color-translucent-fff30 { background-color: rgba(255, 255, 255, 0.3); }
.bg-color-translucent-fff40 { background-color: rgba(255, 255, 255, 0.4); }
.bg-color-translucent-fff50 { background-color: rgba(255, 255, 255, 0.5); }
.bg-color-translucent-fff60 { background-color: rgba(255, 255, 255, 0.6); }
.bg-color-translucent-fff70 { background-color: rgba(255, 255, 255, 0.7); }
.bg-color-translucent-fff80 { background-color: rgba(255, 255, 255, 0.8); }
.bg-color-translucent-fff90 { background-color: rgba(255, 255, 255, 0.9); }

.bg-color-translucent-00010 { background-color: rgba(0, 0, 0, 0.1); }
.bg-color-translucent-00020 { background-color: rgba(0, 0, 0, 0.2); }
.bg-color-translucent-00030 { background-color: rgba(0, 0, 0, 0.3); }
.bg-color-translucent-00040 { background-color: rgba(0, 0, 0, 0.4); }
.bg-color-translucent-00050 { background-color: rgba(0, 0, 0, 0.5); }
.bg-color-translucent-00060 { background-color: rgba(0, 0, 0, 0.6); }
.bg-color-translucent-00070 { background-color: rgba(0, 0, 0, 0.7); }
.bg-color-translucent-00080 { background-color: rgba(0, 0, 0, 0.8); }
.bg-color-translucent-00090 { background-color: rgba(0, 0, 0, 0.9); }

.bg-no-repeat { background-repeat: no-repeat; }
.bg-repeat-x { background-repeat: repeat-x; }
.bg-repeat-y { background-repeat: repeat-y; }
.bg-cover { background-size: cover; }
.bg-center { background-position: 50% 50%; }

.bg-position-left-bottom { background-position: left bottom; }
.bg-position-right-bottom { background-position: right bottom; }
.bg-position-center-bottom { background-position: center bottom; }

.bg-position-left-center { background-position: left center; }
.bg-position-right-center { background-position: right center; }

.bg-size-medium { background-size: auto 50%; }
.bg-size-normal { background-size: auto 100%; }

.box-shadow-none { box-shadow: none;  }
.inset-shadow { box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.14); }
.box-shadow0 { box-shadow: 0 1px 1px rgba(123, 123, 123, 0.4); }
.box-shadow1 { box-shadow: 0 1px 1px rgba(0, 0, 0, 0.4); }
.box-shadow2 { box-shadow: 0 1px 2px rgba(0, 0, 0, 0.4); }


.box-shadow-up1 { box-shadow: 0 -1px 3px rgba(76, 76, 76, 0.25); }
.box-shadow-up2 { box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.4); }

.txt-shadow3 { text-shadow: 0 0 3px #000; }

.upper-case { text-transform: uppercase; }
.lowercase { text-transform: lowercase; }
.capitalize { text-transform: capitalize; }
.capitalize-first-letter:first-letter { text-transform: capitalize; }

.font-weight300 { font-weight: 300; }
.font-weight400 { font-weight: 400; }
.font-weight700 { font-weight: 700; }

.txt-color-white, a.txt-color-white { color: #fff; }
.txt-color-gray, a.txt-color-gray { color: #969696; }
.txt-color-black, a.txt-color-black { color: #000; }
.txt-color-orange, a.txt-color-orange { color: #FF5722; }

.txt-color-fff, a.txt-color-fff { color: #fff; }
.txt-color-000, a.txt-color-000 { color: #000; }
.txt-color-333, a.txt-color-333 { color: #333; }
.txt-color-666, a.txt-color-666 { color: #666; }
.txt-color-999, a.txt-color-999 { color: #999; }
.txt-color-ccc, a.txt-color-ccc { color: #ccc; }
.txt-color-E91E63, a.txt-color-E91E63 { color: #E91E63; }
.txt-color-03a9f4, a.txt-color-03a9f4 { color: #03a9f4; }

.txt-decoration-inherit { text-decoration: inherit; color: inherit; }
.txt-ident-9999 { text-indent: -9999px; }

.position-fixed { position: fixed; }
.position-relative { position: relative; }
.position-absolute { position: absolute; }

.inline-block { display: inline-block; }
.inline-flex { display: -webkit-inline-flex; display: inline-flex; }

.justify { text-align: justify; }
.center { text-align: center; }
.align-left { text-align: left; }
.align-right { text-align: right; }
.vertical-align { vertical-align: middle; }

.nowrap { text-overflow: ellipsis; white-space: nowrap; }

.float-left { float: left; }
.float-right { float: right; }
.float-none { float: none; }

.remove-padding-right-from-last:last-child {
  padding-right: 0px!important;
}

.font-size10 { font-size: 10px; }
.font-size11 { font-size: 11px; }
.font-size12 { font-size: 12px; }
.font-size13 { font-size: 13px; }
.font-size14 { font-size: 14px; }
.font-size15 { font-size: 15px; }
.font-size16 { font-size: 16px; }
.font-size18 { font-size: 18px; }
.font-size20 { font-size: 20px; }
.font-size22 { font-size: 22px; }
.font-size24 { font-size: 24px; }
.font-size25 { font-size: 25px; }
.font-size26 { font-size: 26px; }
.font-size28 { font-size: 28px; }
.font-size30 { font-size: 30px; }
.font-size35 { font-size: 35px; }
.font-size40 { font-size: 40px; }
.font-size50 { font-size: 50px; }

.font-size60 { font-size: 60px; }
.font-size70 { font-size: 70px; }
.font-size80 { font-size: 80px; }

.dock {
  width: inherit;
  height: inherit;
  float: left;
}
.resize-none { resize: none; }

.overflow-hidden { overflow: hidden; }
.overflow-x-hidden { overflow-x: hidden; }
.overflow-y-hidden { overflow-y: hidden; }

.overflow-x { overflow-x: auto; }
.overflow-y { overflow-y: auto; }

.clickable:active {
  -webkit-transform: scale(0.990) rotate(0deg) translateX(0px) translateY(0px) skewX(0deg) skewY(0deg);
  -ms-transform: scale(0.990) rotate(0deg) translateX(0px) translateY(0px) skewX(0deg) skewY(0deg);
  transform: scale(0.990) rotate(0deg) translateX(0px) translateY(0px) skewX(0deg) skewY(0deg);
}

.hoverable:active {
  background-color: rgba(0, 0, 0, 0.17);
}

.background-black-gradient {
  background: -webkit-linear-gradient(top, rgba(30,87,153,1) 0%,rgba(125,185,232,0) 100%) !important;
  background: linear-gradient(to bottom, rgba(30,87,153,1) 0%,rgba(125,185,232,0) 100%) !important;
}

.z-index8000 {
	z-index: 8000;
}


.perspective1 { -webkit-perspective: 1px; perspective: 1px; }
.translateZ0 { -webkit-transform: translate3d(0, 0, 0) scale(1); transform: translate3d(0, 0, 0) scale(1); }
.translateZ-1 { -webkit-transform: translate3d(0, -200%, -1px) scale(2); transform: translate3d(0, -200%, -1px) scale(2); }

.transition-duration1 { -webkit-transition-duration: .100s; transition-duration: .100s; }
.transition-duration2 { -webkit-transition-duration: .200s; transition-duration: .200s; }
.transition-duration3 { -webkit-transition-duration: .300s; transition-duration: .300s; }
.transition-duration4 { -webkit-transition-duration: .400s; transition-duration: .400s; }

.bg-size-transition-duration2 { 
  transition: background-size 2s ease-in;
  -moz-transition: background-size 2s ease-in;
  -ms-transition: background-size 2s ease-in;
  -o-transition: background-size 2s ease-in;
  -webkit-transition: background-size 2s ease-in;
}

.appearance-none {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
}

.placeholder-red::-webkit-input-placeholder { color: #F44336; }
.placeholder-fff::-webkit-input-placeholder { color: #fff; }
.placeholder-ccc::-webkit-input-placeholder { color: #ccc; }
.placeholder-000::-webkit-input-placeholder { color: #000; }
.placeholder-666::-webkit-input-placeholder { color: #666; }
.placeholder-333::-webkit-input-placeholder { color: #333; }

.cursor-pointer { cursor: pointer; }
.cursor-default { cursor: default; }

.centered {
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: center;
    justify-content: center;
	-webkit-align-items: center;
    align-items: center;
}
.align-bottom {
	display: -webkit-flex;
	display: flex;
	align-items: flex-end;
}
.vertical-centered {
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
    align-items: center;
}


.overflow-scrolling-touch {
	-webkit-overflow-scrolling: touch;
}

.video-time {
	display: inline-block;
	position: absolute;
	height: 22px;
	padding: 0 5px;
	left: 5px;
	bottom: 5px;
	background-color: rgba(0, 0, 0, 0.4);
	border-radius: 4px;
	font-size: 13px;
	line-height: 22px;
	vertical-align: middle;
	color: #fff;
	font-weight: 700;
}
.video-play {
	display: inline-block;
	width: 60px;
	height: 60px;
	margin: 40px 0 0 0;
	border: 2px #fff solid;
	opacity: 0.4;
	background-color: #000;
	border-radius: 50%;
	line-height: 51px;
	text-align: center;
	color: #fff;
	font-size: 25px;
}
	.video-play:before {
		margin-right: 0;
	}



/*
Product Name: dhtmlxCalendar 
Version: 5.0 
Edition: Standard 
License: content of this file is covered by GPL. Usage outside GPL terms is prohibited. To obtain Commercial or Enterprise license contact sales@dhtmlx.com
Copyright UAB Dinamenta http://www.dhtmlx.com
*/

@keyframes dhx_loader_rotate{100%{transform:rotate(360deg);}}@keyframes dhx_loader_dash{0%{stroke-dasharray:1,200;stroke-dashoffset:0;}50%{stroke-dasharray:89,200;stroke-dashoffset:-35px;}100%{stroke-dasharray:89,200;stroke-dashoffset:-124px;}}.dhtmlxcalendar_material{position:absolute;display:block;background-color:white;font-size:14px;font-family:Roboto,Arial,Helvetica;color:#404040;}.dhtmlxcalendar_material.dhtmlxcalendar_in_input{box-shadow:0 10px 20px rgba(0,0,0,0.19),0 6px 6px rgba(0,0,0,0.23);}.dhtmlxcalendar_material.dhtmlxcalendar_in_input div.dhtmlxcalendar_month_cont,.dhtmlxcalendar_material.dhtmlxcalendar_in_input div.dhtmlxcalendar_days_cont,.dhtmlxcalendar_material.dhtmlxcalendar_in_input div.dhtmlxcalendar_dates_cont,.dhtmlxcalendar_material.dhtmlxcalendar_in_input div.dhtmlxcalendar_time_cont{border-color:white;}.dhtmlxcalendar_material.dhtmlxcalendar_in_input div.dhtmlxcalendar_time_cont{border-top:1px solid #dfdfdf;}.dhtmlxcalendar_material ul.dhtmlxcalendar_line{position:relative;display:block;clear:both;font:inherit;margin:0;padding:0;overflow:hidden;margin-left:12px;width:225px;}.dhtmlxcalendar_material ul.dhtmlxcalendar_line li{float:left;position:relative;list-style-type:none;list-style-image:none;text-align:center;vertical-align:middle;font:inherit;cursor:default;overflow:hidden;margin:0;padding:0;}.dhtmlxcalendar_material div.dhtmlxcalendar_month_cont{position:relative;display:block;width:249px;margin:0;border-width:1px 1px 0 1px;border-style:solid;border-color:#dfdfdf;overflow:hidden;font:inherit;-webkit-user-select:text;-khtml-user-select:text;-moz-user-select:text;-ms-user-select:text;-o-user-select:text;user-select:text;}.dhtmlxcalendar_material div.dhtmlxcalendar_month_cont ul.dhtmlxcalendar_line li.dhtmlxcalendar_cell.dhtmlxcalendar_month_hdr{width:225px;height:31px;line-height:31px;}.dhtmlxcalendar_material div.dhtmlxcalendar_month_cont ul.dhtmlxcalendar_line li.dhtmlxcalendar_cell.dhtmlxcalendar_month_hdr div.dhtmlxcalendar_month_arrow{position:absolute;top:0;width:18px;height:31px;color:inherit;text-align:center;background-position:center center;background-repeat:no-repeat;}.dhtmlxcalendar_material div.dhtmlxcalendar_month_cont ul.dhtmlxcalendar_line li.dhtmlxcalendar_cell.dhtmlxcalendar_month_hdr div.dhtmlxcalendar_month_arrow.dhtmlxcalendar_month_arrow_left,.dhtmlxcalendar_material div.dhtmlxcalendar_month_cont ul.dhtmlxcalendar_line li.dhtmlxcalendar_cell.dhtmlxcalendar_month_hdr div.dhtmlxcalendar_month_arrow.dhtmlxcalendar_month_arrow_left_hover{left:4px;background-image:url("../img/dhxcalendar_material/dhxcalendar_arrow_left.png");}.dhtmlxcalendar_material div.dhtmlxcalendar_month_cont ul.dhtmlxcalendar_line li.dhtmlxcalendar_cell.dhtmlxcalendar_month_hdr div.dhtmlxcalendar_month_arrow.dhtmlxcalendar_month_arrow_right,.dhtmlxcalendar_material div.dhtmlxcalendar_month_cont ul.dhtmlxcalendar_line li.dhtmlxcalendar_cell.dhtmlxcalendar_month_hdr div.dhtmlxcalendar_month_arrow.dhtmlxcalendar_month_arrow_right_hover{right:4px;background-image:url("../img/dhxcalendar_material/dhxcalendar_arrow_right.png");}.dhtmlxcalendar_material div.dhtmlxcalendar_month_cont ul.dhtmlxcalendar_line li.dhtmlxcalendar_cell.dhtmlxcalendar_month_hdr span.dhtmlxcalendar_month_label_month,.dhtmlxcalendar_material div.dhtmlxcalendar_month_cont ul.dhtmlxcalendar_line li.dhtmlxcalendar_cell.dhtmlxcalendar_month_hdr span.dhtmlxcalendar_month_label_year{position:relative;font:inherit;} span.dhtmlxcalendar_month_label_month:hover,span.dhtmlxcalendar_month_label_year:hover { cursor: pointer; color: #3399CC; } .dhtmlxcalendar_label { cursor: pointer; } .dhtmlxcalendar_material div.dhtmlxcalendar_days_cont{position:relative;display:block;width:249px;margin:0;border-left:1px solid #dfdfdf;border-right:1px solid #dfdfdf;overflow:hidden;-webkit-user-select:text;-khtml-user-select:text;-moz-user-select:text;-ms-user-select:text;-o-user-select:text;user-select:text;}.dhtmlxcalendar_material div.dhtmlxcalendar_days_cont ul.dhtmlxcalendar_line{height:31px;}.dhtmlxcalendar_material div.dhtmlxcalendar_days_cont ul.dhtmlxcalendar_line li{width:31px;height:31px;line-height:31px;margin-left:1px;font-size:12px;color:#9a9a9a;}.dhtmlxcalendar_material div.dhtmlxcalendar_days_cont ul.dhtmlxcalendar_line li.dhtmlxcalendar_cell_first{margin-left:1px;}.dhtmlxcalendar_material div.dhtmlxcalendar_days_cont ul.dhtmlxcalendar_line li.dhtmlxcalendar_day_weekday_cell_first{margin-left:1px;}.dhtmlxcalendar_material div.dhtmlxcalendar_dates_cont{position:relative;display:block;width:249px;margin:0;padding-bottom:8px;border-width:0 1px 1px 1px;border-style:solid;border-color:#dfdfdf;overflow:hidden;font:inherit;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none;user-select:none;}.dhtmlxcalendar_material div.dhtmlxcalendar_dates_cont ul.dhtmlxcalendar_line{margin-top:1px;margin-left:13px;height:31px;line-height:31px;font:inherit;}.dhtmlxcalendar_material div.dhtmlxcalendar_dates_cont ul.dhtmlxcalendar_line li{width:31px;height:31px;line-height:31px;margin-right:1px;border-radius:50%;overflow:visible;font:inherit;}.dhtmlxcalendar_material div.dhtmlxcalendar_dates_cont ul.dhtmlxcalendar_line li div.dhtmlxcalendar_label{position:relative;width:100%;height:100%;font:inherit;line-height:31px;text-align:center;}.dhtmlxcalendar_material div.dhtmlxcalendar_dates_cont ul.dhtmlxcalendar_line li div.dhtmlxcalendar_label.dhtmlxcalendar_label_title{background-image:url("../img/dhxcalendar_material/dhxcalendar_marker.gif");background-position:top right;background-repeat:no-repeat;}.dhtmlxcalendar_material div.dhtmlxcalendar_dates_cont ul.dhtmlxcalendar_line li.dhtmlxcalendar_cell{color:#a6a6a6;}.dhtmlxcalendar_material div.dhtmlxcalendar_dates_cont ul.dhtmlxcalendar_line li.dhtmlxcalendar_cell_weekend{color:#e6918e;}.dhtmlxcalendar_material div.dhtmlxcalendar_dates_cont ul.dhtmlxcalendar_line li.dhtmlxcalendar_cell_date{color:#a6a6a6;background-color:#dcdcdc;}.dhtmlxcalendar_material div.dhtmlxcalendar_dates_cont ul.dhtmlxcalendar_line li.dhtmlxcalendar_cell_date_weekend{color:#e6918e;background-color:#dcdcdc;}.dhtmlxcalendar_material div.dhtmlxcalendar_dates_cont ul.dhtmlxcalendar_line li.dhtmlxcalendar_cell_dis,.dhtmlxcalendar_material div.dhtmlxcalendar_dates_cont ul.dhtmlxcalendar_line li.dhtmlxcalendar_cell_date_dis{color:#c0c0c0;background-color:#f2f2f2;}.dhtmlxcalendar_material div.dhtmlxcalendar_dates_cont ul.dhtmlxcalendar_line li.dhtmlxcalendar_cell_weekend_dis,.dhtmlxcalendar_material div.dhtmlxcalendar_dates_cont ul.dhtmlxcalendar_line li.dhtmlxcalendar_cell_date_weekend_dis{color:#e6918e;background-color:#f2f2f2;}.dhtmlxcalendar_material div.dhtmlxcalendar_dates_cont ul.dhtmlxcalendar_line li.dhtmlxcalendar_cell_holiday,.dhtmlxcalendar_material div.dhtmlxcalendar_dates_cont ul.dhtmlxcalendar_line li.dhtmlxcalendar_cell_weekend_holiday{color:#e6918e;}.dhtmlxcalendar_material div.dhtmlxcalendar_dates_cont ul.dhtmlxcalendar_line li.dhtmlxcalendar_cell_date_holiday,.dhtmlxcalendar_material div.dhtmlxcalendar_dates_cont ul.dhtmlxcalendar_line li.dhtmlxcalendar_cell_date_weekend_holiday{color:#d43f3a;background-color:#ebebeb;}.dhtmlxcalendar_material div.dhtmlxcalendar_dates_cont ul.dhtmlxcalendar_line li.dhtmlxcalendar_cell_holiday_dis,.dhtmlxcalendar_material div.dhtmlxcalendar_dates_cont ul.dhtmlxcalendar_line li.dhtmlxcalendar_cell_weekend_holiday_dis,.dhtmlxcalendar_material div.dhtmlxcalendar_dates_cont ul.dhtmlxcalendar_line li.dhtmlxcalendar_cell_date_holiday_dis,.dhtmlxcalendar_material div.dhtmlxcalendar_dates_cont ul.dhtmlxcalendar_line li.dhtmlxcalendar_cell_date_weekend_holiday_dis{color:#d43f3a;background-color:#f2f2f2;}.dhtmlxcalendar_material div.dhtmlxcalendar_dates_cont ul.dhtmlxcalendar_line li.dhtmlxcalendar_cell_hover{color:#a6a6a6;background-color:#ebebeb;}.dhtmlxcalendar_material div.dhtmlxcalendar_dates_cont ul.dhtmlxcalendar_line li.dhtmlxcalendar_cell_date_hover{color:#a6a6a6;background-color:#dcdcdc;}.dhtmlxcalendar_material div.dhtmlxcalendar_dates_cont ul.dhtmlxcalendar_line li.dhtmlxcalendar_cell_weekend_hover{color:#e6918e;background-color:#ebebeb;}.dhtmlxcalendar_material div.dhtmlxcalendar_dates_cont ul.dhtmlxcalendar_line li.dhtmlxcalendar_cell_date_weekend_hover{color:#e6918e;background-color:#dcdcdc;}.dhtmlxcalendar_material div.dhtmlxcalendar_dates_cont ul.dhtmlxcalendar_line li.dhtmlxcalendar_cell_holiday_hover,.dhtmlxcalendar_material div.dhtmlxcalendar_dates_cont ul.dhtmlxcalendar_line li.dhtmlxcalendar_cell_weekend_holiday_hover,.dhtmlxcalendar_material div.dhtmlxcalendar_dates_cont ul.dhtmlxcalendar_line li.dhtmlxcalendar_cell_date_holiday_hover,.dhtmlxcalendar_material div.dhtmlxcalendar_dates_cont ul.dhtmlxcalendar_line li.dhtmlxcalendar_cell_date_weekend_holiday_hover{color:#d43f3a;background-color:#ebebeb;}.dhtmlxcalendar_material div.dhtmlxcalendar_dates_cont ul.dhtmlxcalendar_line li.dhtmlxcalendar_cell_month{color:#404040;}.dhtmlxcalendar_material div.dhtmlxcalendar_dates_cont ul.dhtmlxcalendar_line li.dhtmlxcalendar_cell_month_weekend{color:#d43f3a;}.dhtmlxcalendar_material div.dhtmlxcalendar_dates_cont ul.dhtmlxcalendar_line li.dhtmlxcalendar_cell_month_date{color:white;background-color:#39c;}.dhtmlxcalendar_material div.dhtmlxcalendar_dates_cont ul.dhtmlxcalendar_line li.dhtmlxcalendar_cell_month_date_weekend{color:white;background-color:#ef5350;}.dhtmlxcalendar_material div.dhtmlxcalendar_dates_cont ul.dhtmlxcalendar_line li.dhtmlxcalendar_cell_month_dis,.dhtmlxcalendar_material div.dhtmlxcalendar_dates_cont ul.dhtmlxcalendar_line li.dhtmlxcalendar_cell_month_date_dis{color:#c0c0c0;background-color:#f2f2f2;}.dhtmlxcalendar_material div.dhtmlxcalendar_dates_cont ul.dhtmlxcalendar_line li.dhtmlxcalendar_cell_month_weekend_dis,.dhtmlxcalendar_material div.dhtmlxcalendar_dates_cont ul.dhtmlxcalendar_line li.dhtmlxcalendar_cell_month_date_weekend_dis{color:#d43f3a;background-color:#f2f2f2;}.dhtmlxcalendar_material div.dhtmlxcalendar_dates_cont ul.dhtmlxcalendar_line li.dhtmlxcalendar_cell_month_holiday{color:#d43f3a;}.dhtmlxcalendar_material div.dhtmlxcalendar_dates_cont ul.dhtmlxcalendar_line li.dhtmlxcalendar_cell_month_weekend_holiday{color:#d43f3a;}.dhtmlxcalendar_material div.dhtmlxcalendar_dates_cont ul.dhtmlxcalendar_line li.dhtmlxcalendar_cell_month_date_holiday{color:white;background-color:#ef5350;}.dhtmlxcalendar_material div.dhtmlxcalendar_dates_cont ul.dhtmlxcalendar_line li.dhtmlxcalendar_cell_month_date_weekend_holiday{color:white;background-color:#ef5350;}.dhtmlxcalendar_material div.dhtmlxcalendar_dates_cont ul.dhtmlxcalendar_line li.dhtmlxcalendar_cell_month_holiday_dis,.dhtmlxcalendar_material div.dhtmlxcalendar_dates_cont ul.dhtmlxcalendar_line li.dhtmlxcalendar_cell_month_date_holiday_dis,.dhtmlxcalendar_material div.dhtmlxcalendar_dates_cont ul.dhtmlxcalendar_line li.dhtmlxcalendar_cell_month_weekend_holiday_dis,.dhtmlxcalendar_material div.dhtmlxcalendar_dates_cont ul.dhtmlxcalendar_line li.dhtmlxcalendar_cell_month_date_weekend_holiday_dis{color:#d43f3a;background-color:#f2f2f2;}.dhtmlxcalendar_material div.dhtmlxcalendar_dates_cont ul.dhtmlxcalendar_line li.dhtmlxcalendar_cell_month_hover{color:#404040;background-color:#ebebeb;}.dhtmlxcalendar_material div.dhtmlxcalendar_dates_cont ul.dhtmlxcalendar_line li.dhtmlxcalendar_cell_month_weekend_hover{color:#d43f3a;background-color:#ebebeb;}.dhtmlxcalendar_material div.dhtmlxcalendar_dates_cont ul.dhtmlxcalendar_line li.dhtmlxcalendar_cell_month_date_hover{color:white;background-color:#39c;}.dhtmlxcalendar_material div.dhtmlxcalendar_dates_cont ul.dhtmlxcalendar_line li.dhtmlxcalendar_cell_month_date_weekend_hover{color:white;background-color:#ef5350;}.dhtmlxcalendar_material div.dhtmlxcalendar_dates_cont ul.dhtmlxcalendar_line li.dhtmlxcalendar_cell_month_holiday_hover{color:#d43f3a;background-color:#ebebeb;}.dhtmlxcalendar_material div.dhtmlxcalendar_dates_cont ul.dhtmlxcalendar_line li.dhtmlxcalendar_cell_month_weekend_holiday_hover{color:#d43f3a;background-color:#ebebeb;}.dhtmlxcalendar_material div.dhtmlxcalendar_dates_cont ul.dhtmlxcalendar_line li.dhtmlxcalendar_cell_month_date_holiday_hover{color:white;background-color:#ef5350;}.dhtmlxcalendar_material div.dhtmlxcalendar_dates_cont ul.dhtmlxcalendar_line li.dhtmlxcalendar_cell_month_date_weekend_holiday_hover{color:white;background-color:#ef5350;}.dhtmlxcalendar_material div.dhtmlxcalendar_time_cont{position:relative;display:block;width:249px;height:31px;border-left:1px solid #dfdfdf;border-right:1px solid #dfdfdf;border-bottom:1px solid #dfdfdf;overflow:hidden;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none;user-select:none;}.dhtmlxcalendar_material div.dhtmlxcalendar_time_cont ul.dhtmlxcalendar_line li{width:225px;height:31px;line-height:31px;}.dhtmlxcalendar_material div.dhtmlxcalendar_time_cont ul.dhtmlxcalendar_line li.dhtmlxcalendar_time_hdr{text-align:left;}.dhtmlxcalendar_material div.dhtmlxcalendar_time_cont ul.dhtmlxcalendar_line li.dhtmlxcalendar_time_hdr span.dhtmlxcalendar_label_hours{margin-left:42px;}.dhtmlxcalendar_material div.dhtmlxcalendar_time_cont ul.dhtmlxcalendar_line li div.dhtmlxcalendar_time_img{position:absolute;left:22px;top:7px;width:18px;height:18px;background-image:url("../img/dhxcalendar_material/dhxcalendar_clock.png");background-position:center center;background-repeat:no-repeat;}.dhtmlxcalendar_material div.dhtmlxcalendar_time_cont.dhtmlxcalendar_mode_time ul.dhtmlxcalendar_line li div.dhtmlxcalendar_time_img{left:75px;}.dhtmlxcalendar_material div.dhtmlxcalendar_time_cont.dhtmlxcalendar_mode_time ul.dhtmlxcalendar_line li.dhtmlxcalendar_cell.dhtmlxcalendar_time_hdr{text-align:center;}.dhtmlxcalendar_material div.dhtmlxcalendar_time_cont.dhtmlxcalendar_mode_time ul.dhtmlxcalendar_line li.dhtmlxcalendar_cell.dhtmlxcalendar_time_hdr span.dhtmlxcalendar_label_hours{margin-left:0;}.dhtmlxcalendar_material div.dhtmlxcalendar_time_cont.dhtmlxcalendar_mode_time ul.dhtmlxcalendar_line li.dhtmlxcalendar_cell.dhtmlxcalendar_time_hdr span.dhtmlxcalendar_label_today,.dhtmlxcalendar_material div.dhtmlxcalendar_time_cont.dhtmlxcalendar_mode_time ul.dhtmlxcalendar_line li.dhtmlxcalendar_cell.dhtmlxcalendar_time_hdr span.dhtmlxcalendar_label_clear{display:none;}.dhtmlxcalendar_material div.dhtmlxcalendar_time_cont.dhtmlxcalendar_mode_today ul.dhtmlxcalendar_line li.dhtmlxcalendar_cell.dhtmlxcalendar_time_hdr div.dhtmlxcalendar_time_img,.dhtmlxcalendar_material div.dhtmlxcalendar_time_cont.dhtmlxcalendar_mode_today ul.dhtmlxcalendar_line li.dhtmlxcalendar_cell.dhtmlxcalendar_time_hdr span.dhtmlxcalendar_label_hours,.dhtmlxcalendar_material div.dhtmlxcalendar_time_cont.dhtmlxcalendar_mode_today ul.dhtmlxcalendar_line li.dhtmlxcalendar_cell.dhtmlxcalendar_time_hdr span.dhtmlxcalendar_label_minutes,.dhtmlxcalendar_material div.dhtmlxcalendar_time_cont.dhtmlxcalendar_mode_today ul.dhtmlxcalendar_line li.dhtmlxcalendar_cell.dhtmlxcalendar_time_hdr span.dhtmlxcalendar_label_colon{display:none;}.dhtmlxcalendar_material div.dhtmlxcalendar_time_cont.dhtmlxcalendar_mode_today ul.dhtmlxcalendar_line li.dhtmlxcalendar_cell.dhtmlxcalendar_time_hdr span.dhtmlxcalendar_label_today{float:right;margin-right:8px;}.dhtmlxcalendar_material div.dhtmlxcalendar_time_cont.dhtmlxcalendar_mode_today ul.dhtmlxcalendar_line li.dhtmlxcalendar_cell.dhtmlxcalendar_time_hdr span.dhtmlxcalendar_label_clear{float:right;margin-right:74px;}.dhtmlxcalendar_material div.dhtmlxcalendar_time_cont.dhtmlxcalendar_mode_today ul.dhtmlxcalendar_line li.dhtmlxcalendar_cell.dhtmlxcalendar_time_hdr span.dhtmlxcalendar_selected_date{border-bottom:2px solid red;}.dhtmlxcalendar_material div.dhtmlxcalendar_time_cont.dhtmlxcalendar_mode_time_today ul.dhtmlxcalendar_line li.dhtmlxcalendar_cell.dhtmlxcalendar_time_hdr span.dhtmlxcalendar_label_today{float:right;margin-right:8px;}.dhtmlxcalendar_material div.dhtmlxcalendar_time_cont.dhtmlxcalendar_mode_time_today ul.dhtmlxcalendar_line li.dhtmlxcalendar_cell.dhtmlxcalendar_time_hdr span.dhtmlxcalendar_label_clear{float:right;margin-right:22px;}.dhtmlxcalendar_material div.dhtmlxcalendar_days_cont ul.dhtmlxcalendar_line li.dhtmlxcalendar_cell_wn,.dhtmlxcalendar_material div.dhtmlxcalendar_dates_cont ul.dhtmlxcalendar_line li.dhtmlxcalendar_cell_wn{display:none;}.dhtmlxcalendar_material div.dhtmlxcalendar_wn div.dhtmlxcalendar_days_cont ul.dhtmlxcalendar_line li.dhtmlxcalendar_cell,.dhtmlxcalendar_material div.dhtmlxcalendar_wn div.dhtmlxcalendar_days_cont ul.dhtmlxcalendar_line li.dhtmlxcalendar_cell_first,.dhtmlxcalendar_material div.dhtmlxcalendar_wn div.dhtmlxcalendar_days_cont ul.dhtmlxcalendar_line li.dhtmlxcalendar_cell{width:27px;}.dhtmlxcalendar_material div.dhtmlxcalendar_wn div.dhtmlxcalendar_days_cont ul.dhtmlxcalendar_line li.dhtmlxcalendar_cell_wn{display:block;width:27px;color:#3da0e3;background-color:- #060606;}.dhtmlxcalendar_material div.dhtmlxcalendar_wn div.dhtmlxcalendar_dates_cont ul.dhtmlxcalendar_line li.dhtmlxcalendar_cell{width:27px;height:28px;line-height:27px;margin-top:2px;}.dhtmlxcalendar_material div.dhtmlxcalendar_wn div.dhtmlxcalendar_dates_cont ul.dhtmlxcalendar_line li.dhtmlxcalendar_cell div{line-height:inherit;}.dhtmlxcalendar_material div.dhtmlxcalendar_wn div.dhtmlxcalendar_dates_cont ul.dhtmlxcalendar_line li.dhtmlxcalendar_cell_wn{display:block;width:27px;color:#3da0e3;background-color:- #060606;}.dhtmlxcalendar_material div.dhtmlxcalendar_selector_cover{position:absolute;left:1px;background-color:white;opacity:.5;filter:progid:DXImageTransform.Microsoft.Alpha(opacity=50);}.dhtmlxcalendar_material div.dhtmlxcalendar_selector_obj{position:absolute; width: 100%;}.dhtmlxcalendar_material div.dhtmlxcalendar_selector_obj div.dhtmlxcalendar_selector_obj_arrow{position:absolute;bottom:auto;top:1px;left:0px;width:100%;height:9px;overflow:hidden;background-image:url("../img/dhxcalendar_material/dhxcalendar_selector_top.gif");background-position:top center;background-repeat:no-repeat;}.dhtmlxcalendar_material div.dhtmlxcalendar_selector_obj table.dhtmlxcalendar_selector_table{width: 100%; /*border-bottom:1px solid #dfdfdf;border-top:0 solid white;*/background-color:white;margin-top:9px;box-shadow:0 2px 6px rgba(0,0,0,0.24);}.dhtmlxcalendar_material div.dhtmlxcalendar_selector_obj table.dhtmlxcalendar_selector_table td.dhtmlxcalendar_selector_cell_left,.dhtmlxcalendar_material div.dhtmlxcalendar_selector_obj table.dhtmlxcalendar_selector_table td.dhtmlxcalendar_selector_cell_right{width:24px;text-align:center;border-color:#dfdfdf;border-style:solid;padding:0;margin:0;background-color:white;background-position:center center;background-repeat:no-repeat;cursor:default;}.dhtmlxcalendar_material div.dhtmlxcalendar_selector_obj table.dhtmlxcalendar_selector_table td.dhtmlxcalendar_selector_cell_left{border-width:1px 0 0 1px;background-image:url("../img/dhxcalendar_material/dhxcalendar_arrow_left.png");}.dhtmlxcalendar_material div.dhtmlxcalendar_selector_obj table.dhtmlxcalendar_selector_table td.dhtmlxcalendar_selector_cell_left.dhtmlxcalendar_selector_cell_left_hover{background-color:#ebebeb;}.dhtmlxcalendar_material div.dhtmlxcalendar_selector_obj table.dhtmlxcalendar_selector_table td.dhtmlxcalendar_selector_cell_right{border-width:1px 1px 0 0;background-image:url("../img/dhxcalendar_material/dhxcalendar_arrow_right.png");}.dhtmlxcalendar_material div.dhtmlxcalendar_selector_obj table.dhtmlxcalendar_selector_table td.dhtmlxcalendar_selector_cell_right.dhtmlxcalendar_selector_cell_right_hover{background-color:#ebebeb;}.dhtmlxcalendar_material div.dhtmlxcalendar_selector_obj table.dhtmlxcalendar_selector_table td.dhtmlxcalendar_selector_cell_middle{cursor:default;}.dhtmlxcalendar_material div.dhtmlxcalendar_selector_obj table.dhtmlxcalendar_selector_table td.dhtmlxcalendar_selector_cell_middle ul{display:block;clear:both;background-color:white;/*border-left:1px solid #dfdfdf;*/margin:0;padding:0;overflow:hidden;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none;user-select:none;}.dhtmlxcalendar_material div.dhtmlxcalendar_selector_obj table.dhtmlxcalendar_selector_table td.dhtmlxcalendar_selector_cell_middle ul li{float:left;list-style-type:none;list-style-image:none;text-align:center;vertical-align:middle;margin:0;padding:0;/*border-right:1px solid #dfdfdf;*/background-color:white;cursor:default;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none;user-select:none;font-size:14px;font-family:Roboto,Arial,Helvetica;color:#404040;font-size:.9em;}.dhtmlxcalendar_material div.dhtmlxcalendar_selector_obj table.dhtmlxcalendar_selector_table td.dhtmlxcalendar_selector_cell_middle ul li.dhtmlxcalendar_selector_cell_active,.dhtmlxcalendar_material div.dhtmlxcalendar_selector_obj table.dhtmlxcalendar_selector_table td.dhtmlxcalendar_selector_cell_middle ul li.dhtmlxcalendar_selector_cell_hover{background-color:#ebebeb;}.dhtmlxcalendar_material div.dhtmlxcalendar_selector_obj table.dhtmlxcalendar_selector_table td.dhtmlxcalendar_selector_cell_middle ul.dhtmlxcalendar_selector_line{height:28px;/*border-top:1px solid #dfdfdf;border-bottom:0 solid white;*/}.dhtmlxcalendar_material div.dhtmlxcalendar_selector_obj table.dhtmlxcalendar_selector_table td.dhtmlxcalendar_selector_cell_middle ul.dhtmlxcalendar_selector_line li.dhtmlxcalendar_selector_cell{width:33.3333%; padding: 0 8px; height:28px; float:left; line-height:28px;}.dhtmlxcalendar_selector_year{ min-width:43px;  } .dhtmlxcalendar_material div.dhtmlxcalendar_selector_obj.dhtmlxcalendar_selector_month table.dhtmlxcalendar_selector_table td.dhtmlxcalendar_selector_cell_left,.dhtmlxcalendar_material div.dhtmlxcalendar_selector_obj.dhtmlxcalendar_selector_month table.dhtmlxcalendar_selector_table td.dhtmlxcalendar_selector_cell_right{display:none;width:0;}.dhtmlxcalendar_material div.dhtmlxcalendar_selector_obj.dhtmlxcalendar_selector_hours div.dhtmlxcalendar_selector_obj_arrow,.dhtmlxcalendar_material div.dhtmlxcalendar_selector_obj.dhtmlxcalendar_selector_hours2 div.dhtmlxcalendar_selector_obj_arrow,.dhtmlxcalendar_material div.dhtmlxcalendar_selector_obj.dhtmlxcalendar_selector_minutes div.dhtmlxcalendar_selector_obj_arrow{top:auto;bottom:1px;background-image:url("../img/dhxcalendar_material/dhxcalendar_selector_bottom.gif");}.dhtmlxcalendar_material div.dhtmlxcalendar_selector_obj.dhtmlxcalendar_selector_hours div.dhtmlxcalendar_selector_obj_arrow ul.dhtmlxcalendar_selector_line,.dhtmlxcalendar_material div.dhtmlxcalendar_selector_obj.dhtmlxcalendar_selector_hours2 div.dhtmlxcalendar_selector_obj_arrow ul.dhtmlxcalendar_selector_line,.dhtmlxcalendar_material div.dhtmlxcalendar_selector_obj.dhtmlxcalendar_selector_minutes div.dhtmlxcalendar_selector_obj_arrow ul.dhtmlxcalendar_selector_line{height:28px;border-top:0 solid white;border-bottom:1px solid #dfdfdf;}.dhtmlxcalendar_material div.dhtmlxcalendar_selector_obj.dhtmlxcalendar_selector_hours table.dhtmlxcalendar_selector_table,.dhtmlxcalendar_material div.dhtmlxcalendar_selector_obj.dhtmlxcalendar_selector_hours2 table.dhtmlxcalendar_selector_table,.dhtmlxcalendar_material div.dhtmlxcalendar_selector_obj.dhtmlxcalendar_selector_minutes table.dhtmlxcalendar_selector_table{margin-top:0;margin-bottom:9px;border-bottom:none;}.dhtmlxcalendar_material div.dhtmlxcalendar_selector_obj.dhtmlxcalendar_selector_hours table.dhtmlxcalendar_selector_table td.dhtmlxcalendar_selector_cell_middle ul.dhtmlxcalendar_selector_line li.dhtmlxcalendar_selector_cell,.dhtmlxcalendar_material div.dhtmlxcalendar_selector_obj.dhtmlxcalendar_selector_hours2 table.dhtmlxcalendar_selector_table td.dhtmlxcalendar_selector_cell_middle ul.dhtmlxcalendar_selector_line li.dhtmlxcalendar_selector_cell,.dhtmlxcalendar_material div.dhtmlxcalendar_selector_obj.dhtmlxcalendar_selector_minutes table.dhtmlxcalendar_selector_table td.dhtmlxcalendar_selector_cell_middle ul.dhtmlxcalendar_selector_line li.dhtmlxcalendar_selector_cell{width:34px;height:28px;line-height:28px;}.dhtmlxcalendar_material div.dhtmlxcalendar_selector_obj.dhtmlxcalendar_selector_hours table.dhtmlxcalendar_selector_table td.dhtmlxcalendar_selector_cell_left,.dhtmlxcalendar_material div.dhtmlxcalendar_selector_obj.dhtmlxcalendar_selector_hours table.dhtmlxcalendar_selector_table td.dhtmlxcalendar_selector_cell_right,.dhtmlxcalendar_material div.dhtmlxcalendar_selector_obj.dhtmlxcalendar_selector_hours2 table.dhtmlxcalendar_selector_table td.dhtmlxcalendar_selector_cell_left,.dhtmlxcalendar_material div.dhtmlxcalendar_selector_obj.dhtmlxcalendar_selector_hours2 table.dhtmlxcalendar_selector_table td.dhtmlxcalendar_selector_cell_right,.dhtmlxcalendar_material div.dhtmlxcalendar_selector_obj.dhtmlxcalendar_selector_minutes table.dhtmlxcalendar_selector_table td.dhtmlxcalendar_selector_cell_left,.dhtmlxcalendar_material div.dhtmlxcalendar_selector_obj.dhtmlxcalendar_selector_minutes table.dhtmlxcalendar_selector_table td.dhtmlxcalendar_selector_cell_right{display:none;width:0;}.dhtmlxcalendar_material div.dhtmlxcalendar_selector_obj div.dhtmlxcalendar_area_selector_month,.dhtmlxcalendar_material div.dhtmlxcalendar_selector_obj div.dhtmlxcalendar_area_selector_year,.dhtmlxcalendar_material div.dhtmlxcalendar_selector_obj div.dhtmlxcalendar_area_selector_hours,.dhtmlxcalendar_material div.dhtmlxcalendar_selector_obj div.dhtmlxcalendar_area_selector_hours2,.dhtmlxcalendar_material div.dhtmlxcalendar_selector_obj div.dhtmlxcalendar_area_selector_minutes,.dhtmlxcalendar_material div.dhtmlxcalendar_selector_obj div.dhtmlxcalendar_area_selector_minutes4,.dhtmlxcalendar_material div.dhtmlxcalendar_selector_obj div.dhtmlxcalendar_area_selector_minutes5{display:none;}.dhtmlxcalendar_material div.dhtmlxcalendar_selector_obj.dhtmlxcalendar_selector_month div.dhtmlxcalendar_area_selector_month,.dhtmlxcalendar_material div.dhtmlxcalendar_selector_obj.dhtmlxcalendar_selector_year div.dhtmlxcalendar_area_selector_year,.dhtmlxcalendar_material div.dhtmlxcalendar_selector_obj.dhtmlxcalendar_selector_hours div.dhtmlxcalendar_area_selector_hours,.dhtmlxcalendar_material div.dhtmlxcalendar_selector_obj.dhtmlxcalendar_selector_hours2 div.dhtmlxcalendar_area_selector_hours,.dhtmlxcalendar_material div.dhtmlxcalendar_selector_obj.dhtmlxcalendar_selector_minutes div.dhtmlxcalendar_area_selector_minutes,.dhtmlxcalendar_material div.dhtmlxcalendar_selector_obj.dhtmlxcalendar_selector_minutes div.dhtmlxcalendar_area_selector_minutes4,.dhtmlxcalendar_material div.dhtmlxcalendar_selector_obj.dhtmlxcalendar_selector_minutes div.dhtmlxcalendar_area_selector_minutes5{display:block;}.dhtmlxcalendar_ifr{position:absolute;overflow:hidden;background-color:white;}div.dhtmlxcalendar_skin_detect{position:absolute;left:0;top:-100px;margin:0;padding:0;border:0 solid white;width:40px;height:10px;overflow:hidden;}


/* CHARTIST.JS */
.ct-double-octave:after,.ct-major-eleventh:after,.ct-major-second:after,.ct-major-seventh:after,.ct-major-sixth:after,.ct-major-tenth:after,.ct-major-third:after,.ct-major-twelfth:after,.ct-minor-second:after,.ct-minor-seventh:after,.ct-minor-sixth:after,.ct-minor-third:after,.ct-octave:after,.ct-perfect-fifth:after,.ct-perfect-fourth:after,.ct-square:after{content:"";clear:both}.ct-label{fill:rgba(0,0,0,.4);color:rgba(0,0,0,.4);font-size:.75rem;line-height:1}.ct-grid-background,.ct-line{fill:none}.ct-chart-bar .ct-label,.ct-chart-line .ct-label{display:block;display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex}.ct-chart-donut .ct-label,.ct-chart-pie .ct-label{dominant-baseline:central}.ct-label.ct-horizontal.ct-start{-webkit-box-align:flex-end;-webkit-align-items:flex-end;-ms-flex-align:flex-end;align-items:flex-end;-webkit-box-pack:flex-start;-webkit-justify-content:flex-start;-ms-flex-pack:flex-start;justify-content:flex-start;text-align:left;text-anchor:start}.ct-label.ct-horizontal.ct-end{-webkit-box-align:flex-start;-webkit-align-items:flex-start;-ms-flex-align:flex-start;align-items:flex-start;-webkit-box-pack:flex-start;-webkit-justify-content:flex-start;-ms-flex-pack:flex-start;justify-content:flex-start;text-align:left;text-anchor:start}.ct-label.ct-vertical.ct-start{-webkit-box-align:flex-end;-webkit-align-items:flex-end;-ms-flex-align:flex-end;align-items:flex-end;-webkit-box-pack:flex-end;-webkit-justify-content:flex-end;-ms-flex-pack:flex-end;justify-content:flex-end;text-align:right;text-anchor:end}.ct-label.ct-vertical.ct-end{-webkit-box-align:flex-end;-webkit-align-items:flex-end;-ms-flex-align:flex-end;align-items:flex-end;-webkit-box-pack:flex-start;-webkit-justify-content:flex-start;-ms-flex-pack:flex-start;justify-content:flex-start;text-align:left;text-anchor:start}.ct-chart-bar .ct-label.ct-horizontal.ct-start{-webkit-box-align:flex-end;-webkit-align-items:flex-end;-ms-flex-align:flex-end;align-items:flex-end;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;text-align:center;text-anchor:start}.ct-chart-bar .ct-label.ct-horizontal.ct-end{-webkit-box-align:flex-start;-webkit-align-items:flex-start;-ms-flex-align:flex-start;align-items:flex-start;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;text-align:center;text-anchor:start}.ct-chart-bar.ct-horizontal-bars .ct-label.ct-horizontal.ct-start{-webkit-box-align:flex-end;-webkit-align-items:flex-end;-ms-flex-align:flex-end;align-items:flex-end;-webkit-box-pack:flex-start;-webkit-justify-content:flex-start;-ms-flex-pack:flex-start;justify-content:flex-start;text-align:left;text-anchor:start}.ct-chart-bar.ct-horizontal-bars .ct-label.ct-horizontal.ct-end{-webkit-box-align:flex-start;-webkit-align-items:flex-start;-ms-flex-align:flex-start;align-items:flex-start;-webkit-box-pack:flex-start;-webkit-justify-content:flex-start;-ms-flex-pack:flex-start;justify-content:flex-start;text-align:left;text-anchor:start}.ct-chart-bar.ct-horizontal-bars .ct-label.ct-vertical.ct-start{-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:flex-end;-webkit-justify-content:flex-end;-ms-flex-pack:flex-end;justify-content:flex-end;text-align:right;text-anchor:end}.ct-chart-bar.ct-horizontal-bars .ct-label.ct-vertical.ct-end{-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:flex-start;-webkit-justify-content:flex-start;-ms-flex-pack:flex-start;justify-content:flex-start;text-align:left;text-anchor:end}.ct-grid{stroke:rgba(0,0,0,.2);stroke-width:1px;stroke-dasharray:2px}.ct-point{stroke-width:10px;stroke-linecap:round}.ct-line{stroke-width:4px}.ct-area{stroke:none;fill-opacity:.1}.ct-bar{fill:none;stroke-width:10px}.ct-slice-donut{fill:none;stroke-width:60px}.ct-series-a .ct-bar,.ct-series-a .ct-line,.ct-series-a .ct-point,.ct-series-a .ct-slice-donut{stroke:#d70206}.ct-series-a .ct-area,.ct-series-a .ct-slice-pie{fill:#d70206}.ct-series-b .ct-bar,.ct-series-b .ct-line,.ct-series-b .ct-point,.ct-series-b .ct-slice-donut{stroke:#f05b4f}.ct-series-b .ct-area,.ct-series-b .ct-slice-pie{fill:#f05b4f}.ct-series-c .ct-bar,.ct-series-c .ct-line,.ct-series-c .ct-point,.ct-series-c .ct-slice-donut{stroke:#f4c63d}.ct-series-c .ct-area,.ct-series-c .ct-slice-pie{fill:#f4c63d}.ct-series-d .ct-bar,.ct-series-d .ct-line,.ct-series-d .ct-point,.ct-series-d .ct-slice-donut{stroke:#d17905}.ct-series-d .ct-area,.ct-series-d .ct-slice-pie{fill:#d17905}.ct-series-e .ct-bar,.ct-series-e .ct-line,.ct-series-e .ct-point,.ct-series-e .ct-slice-donut{stroke:#453d3f}.ct-series-e .ct-area,.ct-series-e .ct-slice-pie{fill:#453d3f}.ct-series-f .ct-bar,.ct-series-f .ct-line,.ct-series-f .ct-point,.ct-series-f .ct-slice-donut{stroke:#59922b}.ct-series-f .ct-area,.ct-series-f .ct-slice-pie{fill:#59922b}.ct-series-g .ct-bar,.ct-series-g .ct-line,.ct-series-g .ct-point,.ct-series-g .ct-slice-donut{stroke:#0544d3}.ct-series-g .ct-area,.ct-series-g .ct-slice-pie{fill:#0544d3}.ct-series-h .ct-bar,.ct-series-h .ct-line,.ct-series-h .ct-point,.ct-series-h .ct-slice-donut{stroke:#6b0392}.ct-series-h .ct-area,.ct-series-h .ct-slice-pie{fill:#6b0392}.ct-series-i .ct-bar,.ct-series-i .ct-line,.ct-series-i .ct-point,.ct-series-i .ct-slice-donut{stroke:#f05b4f}.ct-series-i .ct-area,.ct-series-i .ct-slice-pie{fill:#f05b4f}.ct-series-j .ct-bar,.ct-series-j .ct-line,.ct-series-j .ct-point,.ct-series-j .ct-slice-donut{stroke:#dda458}.ct-series-j .ct-area,.ct-series-j .ct-slice-pie{fill:#dda458}.ct-series-k .ct-bar,.ct-series-k .ct-line,.ct-series-k .ct-point,.ct-series-k .ct-slice-donut{stroke:#eacf7d}.ct-series-k .ct-area,.ct-series-k .ct-slice-pie{fill:#eacf7d}.ct-series-l .ct-bar,.ct-series-l .ct-line,.ct-series-l .ct-point,.ct-series-l .ct-slice-donut{stroke:#86797d}.ct-series-l .ct-area,.ct-series-l .ct-slice-pie{fill:#86797d}.ct-series-m .ct-bar,.ct-series-m .ct-line,.ct-series-m .ct-point,.ct-series-m .ct-slice-donut{stroke:#b2c326}.ct-series-m .ct-area,.ct-series-m .ct-slice-pie{fill:#b2c326}.ct-series-n .ct-bar,.ct-series-n .ct-line,.ct-series-n .ct-point,.ct-series-n .ct-slice-donut{stroke:#6188e2}.ct-series-n .ct-area,.ct-series-n .ct-slice-pie{fill:#6188e2}.ct-series-o .ct-bar,.ct-series-o .ct-line,.ct-series-o .ct-point,.ct-series-o .ct-slice-donut{stroke:#a748ca}.ct-series-o .ct-area,.ct-series-o .ct-slice-pie{fill:#a748ca}.ct-square{display:block;position:relative;width:100%}.ct-square:before{display:block;float:left;content:"";width:0;height:0;padding-bottom:100%}.ct-square:after{display:table}.ct-square>svg{display:block;position:absolute;top:0;left:0}.ct-minor-second{display:block;position:relative;width:100%}.ct-minor-second:before{display:block;float:left;content:"";width:0;height:0;padding-bottom:93.75%}.ct-minor-second:after{display:table}.ct-minor-second>svg{display:block;position:absolute;top:0;left:0}.ct-major-second{display:block;position:relative;width:100%}.ct-major-second:before{display:block;float:left;content:"";width:0;height:0;padding-bottom:88.8888888889%}.ct-major-second:after{display:table}.ct-major-second>svg{display:block;position:absolute;top:0;left:0}.ct-minor-third{display:block;position:relative;width:100%}.ct-minor-third:before{display:block;float:left;content:"";width:0;height:0;padding-bottom:83.3333333333%}.ct-minor-third:after{display:table}.ct-minor-third>svg{display:block;position:absolute;top:0;left:0}.ct-major-third{display:block;position:relative;width:100%}.ct-major-third:before{display:block;float:left;content:"";width:0;height:0;padding-bottom:80%}.ct-major-third:after{display:table}.ct-major-third>svg{display:block;position:absolute;top:0;left:0}.ct-perfect-fourth{display:block;position:relative;width:100%}.ct-perfect-fourth:before{display:block;float:left;content:"";width:0;height:0;padding-bottom:75%}.ct-perfect-fourth:after{display:table}.ct-perfect-fourth>svg{display:block;position:absolute;top:0;left:0}.ct-perfect-fifth{display:block;position:relative;width:100%}.ct-perfect-fifth:before{display:block;float:left;content:"";width:0;height:0;padding-bottom:66.6666666667%}.ct-perfect-fifth:after{display:table}.ct-perfect-fifth>svg{display:block;position:absolute;top:0;left:0}.ct-minor-sixth{display:block;position:relative;width:100%}.ct-minor-sixth:before{display:block;float:left;content:"";width:0;height:0;padding-bottom:62.5%}.ct-minor-sixth:after{display:table}.ct-minor-sixth>svg{display:block;position:absolute;top:0;left:0}.ct-golden-section{display:block;position:relative;width:100%}.ct-golden-section:before{display:block;float:left;content:"";width:0;height:0;padding-bottom:61.804697157%}.ct-golden-section:after{content:"";display:table;clear:both}.ct-golden-section>svg{display:block;position:absolute;top:0;left:0}.ct-major-sixth{display:block;position:relative;width:100%}.ct-major-sixth:before{display:block;float:left;content:"";width:0;height:0;padding-bottom:60%}.ct-major-sixth:after{display:table}.ct-major-sixth>svg{display:block;position:absolute;top:0;left:0}.ct-minor-seventh{display:block;position:relative;width:100%}.ct-minor-seventh:before{display:block;float:left;content:"";width:0;height:0;padding-bottom:56.25%}.ct-minor-seventh:after{display:table}.ct-minor-seventh>svg{display:block;position:absolute;top:0;left:0}.ct-major-seventh{display:block;position:relative;width:100%}.ct-major-seventh:before{display:block;float:left;content:"";width:0;height:0;padding-bottom:53.3333333333%}.ct-major-seventh:after{display:table}.ct-major-seventh>svg{display:block;position:absolute;top:0;left:0}.ct-octave{display:block;position:relative;width:100%}.ct-octave:before{display:block;float:left;content:"";width:0;height:0;padding-bottom:50%}.ct-octave:after{display:table}.ct-octave>svg{display:block;position:absolute;top:0;left:0}.ct-major-tenth{display:block;position:relative;width:100%}.ct-major-tenth:before{display:block;float:left;content:"";width:0;height:0;padding-bottom:40%}.ct-major-tenth:after{display:table}.ct-major-tenth>svg{display:block;position:absolute;top:0;left:0}.ct-major-eleventh{display:block;position:relative;width:100%}.ct-major-eleventh:before{display:block;float:left;content:"";width:0;height:0;padding-bottom:37.5%}.ct-major-eleventh:after{display:table}.ct-major-eleventh>svg{display:block;position:absolute;top:0;left:0}.ct-major-twelfth{display:block;position:relative;width:100%}.ct-major-twelfth:before{display:block;float:left;content:"";width:0;height:0;padding-bottom:33.3333333333%}.ct-major-twelfth:after{display:table}.ct-major-twelfth>svg{display:block;position:absolute;top:0;left:0}.ct-double-octave{display:block;position:relative;width:100%}.ct-double-octave:before{display:block;float:left;content:"";width:0;height:0;padding-bottom:25%}.ct-double-octave:after{display:table}.ct-double-octave>svg{display:block;position:absolute;top:0;left:0}

.chartist-tooltip {
  position: absolute;
  display: inline-block;
  opacity: 0;
  min-width: 5em;
  padding: .5em;
  background: #F4C63D;
  color: #453D3F;
  font-family: Oxygen,Helvetica,Arial,sans-serif;
  font-weight: 700;
  text-align: center;
  pointer-events: none;
  z-index: 1;
  -webkit-transition: opacity .2s linear;
  -moz-transition: opacity .2s linear;
  -o-transition: opacity .2s linear;
  transition: opacity .2s linear; }
  .chartist-tooltip:before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    width: 0;
    height: 0;
    margin-left: -15px;
    border: 15px solid transparent;
    border-top-color: #F4C63D; }
  .chartist-tooltip.tooltip-show {
    opacity: 1; }

.ct-area, .ct-line {
  pointer-events: none; }





.ct-legend {
    position: relative;
    width: 100%;
    height: 100%;
    float: left;
    z-index: 10;
    list-style: none;
    overflow-y: auto;
}
.ct-legend li {
    /*position: relative;
    height: 20px;
    padding-left: 23px;
    margin-right: 10px;
    cursor: pointer;
    list-style: none;
    font-size: 12px;*/
	width: 100%;
	height: 60px;
	float: left;
	padding: 0 15px;
	vertical-align: middle;
	line-height: 60px;
	border-bottom: 1px #b5b5b5 solid;
	cursor: pointer;
    overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.ct-legend li:before {
	position: relative;
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 0 10px 0 0;
    top: 4px;
    content: '';
    border: 3px solid transparent;
    border-radius: 2px;
}


.ct-legend [data-letter="a"]:before { background-color: #d70206; }
.ct-legend [data-letter="b"]:before { background-color: #f05b4f; }
.ct-legend [data-letter="c"]:before { background-color: #f4c63d; }
.ct-legend [data-letter="d"]:before { background-color: #d17905; }
.ct-legend [data-letter="e"]:before { background-color: #453d3f; }
.ct-legend [data-letter="f"]:before { background-color: #59922b; }
.ct-legend [data-letter="g"]:before { background-color: #0544d3; }
.ct-legend [data-letter="h"]:before { background-color: #6b0392; }
.ct-legend [data-letter="i"]:before { background-color: #f05b4f; }
.ct-legend [data-letter="j"]:before { background-color: #dda458; }
.ct-legend [data-letter="k"]:before { background-color: #eacf7d; }
.ct-legend [data-letter="l"]:before { background-color: #86797d; }
.ct-legend [data-letter="m"]:before { background-color: #b2c326; }
.ct-legend [data-letter="n"]:before { background-color: #6188e2; }
.ct-legend [data-letter="o"]:before { background-color: #a748ca; }
.ct-legend [data-letter="p"]:before { background-color: #e91e63; }
.ct-legend [data-letter="q"]:before { background-color: #607d8b; }
.ct-legend [data-letter="r"]:before { background-color: #673ab7; }
.ct-legend [data-letter="s"]:before { background-color: #795548; }
.ct-legend [data-letter="t"]:before { background-color: #3f51b5; }
.ct-legend [data-letter="u"]:before { background-color: #2196f3; }
.ct-legend [data-letter="v"]:before { background-color: #f44336; }
.ct-legend [data-letter="w"]:before { background-color: #61c7be; }
.ct-legend [data-letter="x"]:before { background-color: #9c27b0; }
.ct-legend [data-letter="y"]:before { background-color: #009688; }
.ct-legend [data-letter="z"]:before { background-color: #4caf50; }
.ct-legend [data-letter="aa"]:before { background-color: #ff9800; }
.ct-legend [data-letter="bb"]:before { background-color: #ff5722; }
.ct-legend [data-letter="cc"]:before { background-color: #00bcd4; }
.ct-legend [data-letter="dd"]:before { background-color: #888888; }
.ct-legend [data-letter="ee"]:before { background-color: #b90d00; }
.ct-legend [data-letter="ff"]:before { background-color: #8497ff; }
.ct-legend [data-letter="gg"]:before { background-color: #d28168; }
.ct-legend [data-letter="hh"]:before { background-color: #d70206; }
.ct-legend [data-letter="ii"]:before { background-color: #f05b4f; }
.ct-legend [data-letter="jj"]:before { background-color: #f4c63d; }
.ct-legend [data-letter="kk"]:before { background-color: #d17905; }
.ct-legend [data-letter="ll"]:before { background-color: #453d3f; }
.ct-legend [data-letter="mm"]:before { background-color: #59922b; }
.ct-legend [data-letter="nn"]:before { background-color: #0544d3; }
.ct-legend [data-letter="oo"]:before { background-color: #6b0392; }
.ct-legend [data-letter="pp"]:before { background-color: #f05b4f; }
.ct-legend [data-letter="qq"]:before { background-color: #dda458; }
.ct-legend [data-letter="rr"]:before { background-color: #eacf7d; }
.ct-legend [data-letter="ss"]:before { background-color: #86797d; }
.ct-legend [data-letter="tt"]:before { background-color: #b2c326; }
.ct-legend [data-letter="uu"]:before { background-color: #6188e2; }
.ct-legend [data-letter="vv"]:before { background-color: #a748ca; }
.ct-legend [data-letter="ww"]:before { background-color: #e91e63; }
.ct-legend [data-letter="xx"]:before { background-color: #607d8b; }
.ct-legend [data-letter="yy"]:before { background-color: #673ab7; }
.ct-legend [data-letter="zz"]:before { background-color: #795548; }
.ct-legend li:before { background-color: #f1f1f1; }

.ct-legend li.inactive:before {
    background-color: #ccc;
}

.ct-label {
    /* fill: rgba(0,0,0,.4); */
    /* color: rgba(0,0,0,.4); */
    font-size: 11px;
    line-height: 1;
    color: #000;
    margin-top: 7px;
    /*white-space: nowrap;*/
}