@charset "utf-8";
/* CSS Document */

* {
	margin: 0;
	padding: 0;
	font-family: 'OpenSansLight', sans-serif;
	font-weight: 300;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

@font-face {
  font-family: 'OpenSansLight';
  src: url('../fonts/opensans-light.eot');
  src: url('../fonts/opensans-light.eot') format('embedded-opentype'),
       url('../fonts/opensans-light.woff2') format('woff2'),
       url('../fonts/opensans-light.woff') format('woff'),
       url('../fonts/opensans-light.ttf') format('truetype'),
       url('../fonts/opensans-light.svg#OpenSansLight') format('svg');
}

@font-face {
  font-family: 'OpenSansSemibold';
  src: url('../fonts/opensans-semibold.eot');
  src: url('../fonts/opensans-semibold.eot') format('embedded-opentype'),
       url('../fonts/opensans-semibold.woff2') format('woff2'),
       url('../fonts/opensans-semibold.woff') format('woff'),
       url('../fonts/opensans-semibold.ttf') format('truetype'),
       url('../fonts/opensans-semibold.svg#OpenSansSemibold') format('svg');
}

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: 'OpenSansSemibold'; 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;
}*/

.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*/

/* 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 #e5e6e1 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 #e5e6e1 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 #e5e6e1 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 #e5e6e1 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 #e5e6e1;
				border: 1px #e5e6e1 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 #e5e6e1 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;
}
/* 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 #e1e6ef;
	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 #e1e6ef;
	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: 36px;
	text-align: center;
	vertical-align: middle;
	cursor: pointer;
	color: #333333;
	background-color: #f1f1f1;
	border-radius: 4px;
	border: 1px #f1f1f1 solid;
}
a.mangole-btn:link {
	text-decoration: none;
	color: #333;
}
a.mangole-btn:visited {
	text-decoration: none;
	color: #333;
}
a.mangole-btn:active {
	text-decoration: none;
	color: #333;
}
a.mangole-btn:hover {
	text-decoration: none;
	color: #333;
}
.mangole-btn:hover,
.mangole-btn:focus {
	color: #333333;
	text-decoration: none;
	background-image:none;
	border: 1px #E2E2E2 solid;
}

.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;
	}
	a.mangole-btn.blue:active,
	a.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);
	}
	a.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;
	}
	a.mangole-btn.gray:active,
	a.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);
	}
	a.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: #333;
		background-color: #EF6763;
	}
	a.mangole-btn.red:link {
		text-decoration: none;
		color: #fff;
	}
	a.mangole-btn.red:visited {
		text-decoration: none;
		color: #fff;
	}
	a.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);
	}
	a.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: #4077B3;
		background-image: linear-gradient(to bottom, #A83838, #C24747);
	}

	.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;
	}
	a.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);
	}
	a.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;
		background-image: linear-gradient(to bottom, #75a046, #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 #e1e6ef;
	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;
		height: auto;
		min-height: 50px;
		padding: 15px 15px;
		background-color: #fff;
		color: #333;
		border-bottom: 1px #e5e6e1 solid;

		overflow: hidden;
		text-overflow: ellipsis;

	}
		.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%;
		float: left;
	}
/* END PANEL STYLE	*/

/* DATAGRID STYLE */
.mangole-datagrid {
	display: table;
	table-layout: fixed;
	border: 1px solid #e5e6e1;
	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 {
			padding: 10px 7px 9px 7px;
			text-align: center;
			color: #333;
			border-bottom: 1px #e5e6e1 solid;
			font-weight: 700;
			font-size: 14px;
		}

	.mangole-datagrid .mangole-datagrid-row {
		display: table-row;
		border-bottom: 1px #e5e6e1 solid;
		overflow: auto;
	}
		.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 #e5e6e1 solid;
		border-bottom: 1px #e5e6e1 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"]{
				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 */

/* ORDERED LIST STYLE */
.mangole-orderedlist {
	position: relative;
	display: inline-block;
	width: 100%;
	min-height: 100px;
	padding: 5px 5px 0 5px;
    border: 1px solid #e1e6ef;
    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 #e1e6ef;
		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 #E1E6EF 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 */

/* 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="number"],
	.mangole-general-textbox input[type="password"],
	.mangole-general-textbox input[type="date"],
	.mangole-general-textbox textarea {
		width:100%;
		height: 36px;
		border: 1px solid #e1e6ef;
		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="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;
		}

		#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="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 #e1e6ef;
	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 #e1e6ef 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 #e5e6e1 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 #e5e6e1 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 #e5e6e1 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 #e5e6e1 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 #e5e6e1 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 */

.span1 { display: inline-block; width: 100%; height: auto; }
.span2 { width: 50%; height: auto; }
.span3 { width: 33.33%; height: auto; }
.span4 { width: 25%; height: auto; }
.span5 { width: 20%; height: auto; }
.span6 { width: 16.66%; height: auto; }
.span7 { width: 14.28%; height: auto; }
.span8 { width: 12.5%; height: auto; }
.span9 { width: 11.11%; height: auto; }
.span10 { width: 10%; height: auto; }
.span20 { width: 20%; height: auto; }
.span30 { width: 30%; height: auto; }
.span40 { width: 40%; height: auto; }
.span50 { width: 50%; height: auto; }
.span60 { width: 60%; height: auto; }
.span70 { width: 70%; height: auto; }
.span80 { width: 80%; height: auto; }
.span90 { width: 90%; height: auto; }
.span100 { width: 100%; height: auto; }

.border-left { border-left: 1px #e0e0e0 solid; }
.border-right { border-right: 1px #e0e0e0 solid; }
.border-bottom { border-bottom: 1px #e0e0e0 solid; }
.border-top { border-top: 1px #e0e0e0 solid; }
.border-none { border: none; }

.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-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-bottom05 { padding-bottom: 5px; }
.padding-bottom1 { padding-bottom: 10px; }
.padding-bottom2 { padding-bottom: 20px; }
.padding-bottom3 { padding-bottom: 30px; }
.padding-bottom4 { padding-bottom: 40px; }
.padding-bottom5 { padding-bottom: 50px; }
.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%; }

.margin-top1 { margin-top: 10px; }
.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-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-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-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; }

.top1 { top: 10px;}
.top2 { top: 20px;}
.top3 { top: 30px;}

.left1 { left: 10px;}
.left2 { left: 20px;}
.left3 { left: 30px;}

.right1 { right: 10px; }
.right2 { right: 20px; }
.right3 { right: 30px; }

.bottom1 { bottom: 10px; }
.bottom2 { bottom: 20px; }
.bottom3 { bottom: 30px; }

.width1 { width: 10px; }
.width2 { width: 20px; }
.width3 { width: 30px; }
.width4 { width: 40px; }
.width5 { width: 50px; }
.width6 { width: 60px; }

.height1 { height: 10px; }
.height2 { height: 20px; }
.height3 { height: 30px; }
.height4 { height: 40px; }
.height5 { height: 50px; }
.height6 { height: 60px; }
.height7 { height: 70px; }
.height8 { height: 80px; }
.height9 { height: 90px; }
.height10 { height: 100px; }
.height11 { height: 110px; }
.height12 { height: 120px; }
.height13 { height: 130px; }
.height14 { height: 140px; }
.height15 { height: 150px; }

.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; }

.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-right-radius { border-bottom-right-radius: 5px; }

.circle { border-radius: 50%; }

.background-color-white { background-color: #fff; }
.background-color-gray1 { background-color: #f1f1f1; }
.background-color-gray2 { background-color: #F0F0F0; }
.background-color-transparent { background-color: transparent; }
.background-color-black-translucent { background-color: rgba(0, 0, 0, 0.54); }

.inset-shadow { box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.14); }

.cursor-pointer { cursor: pointer; }

.text-color-white { color: #fff; }
.text-color-gray { color: #969696; }
.text-color-black { color: #000; }

.position-relative { position: relative; }
.position-absolute { position: absolute; }

.justify { text-align: justify; }
.center { text-align: center; }
.align-right { text-align: right; }
.vertical-align { vertical-align: middle; }

.line-height1 { line-height: 10px; }
.line-height2 { line-height: 20px; }
.line-height3 { line-height: 30px; }
.line-height4 { line-height: 40px; }
.line-height5 { line-height: 50px; }

.float-left {
	float: left;
}

.remove-padding-right-from-last:last-child {
	padding-right: 0px!important;
}

.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-size26 { font-size: 26px; }
.font-size28 { font-size: 28px; }



/*
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}