﻿@charset "utf-8";

/* 
	Designer :  Wilvin Jiménez
	Slicer/Coder :  Wilvin Jiménez				
*/

@font-face {
	font-family: HelveticaWebFont;
	src: url(fonts/helveticaneue-webfont.woff);
}

body {
	background: #f2f3ee;
	font-family: Arial, Tahoma, sans-serif, Verdana;
	min-width: 992px;
	border:0;
	color: #4c4c4c;
}

a:hover, input:hover, textarea:hover, select:hover {
	/* Transitions */  
	-webkit-transition: all .2s linear;
	-moz-transition: all .2s linear;
	-o-transition: all .2s linear;
	transition: all .2s linear;
}

h1, h2, h3, h4, a {
	color: #0075bc;
	font-weight: normal;
	margin: 0;
	font-style: normal;
	line-height: normal;
}

h1 {
	font-size: 22px;
}

h2 {
	font-size: 20px;
}

h3 {
	font-size: 18px
}

h4 {
	font-size: 14px
}

small {
	font-size: 80%;
}

h1 small, h2 small, h3 small, h4 small {
	font-size: 65%;
}

p, label {
	font-size: 12px;
	color: #656565;
}

p {
	margin: 0 0 14px;
}

b {
	font-weight: bold;
}

em {
	font-style: italic;
}

.panel {
	overflow: hidden;
	clear: both;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	-moz-box-shadow: 0px 3px 0px 0px #aaa;
	-webkit-box-shadow: 0px 3px 0px 0px #aaa;
	box-shadow: 0px 3px 0px 0px #aaa;
	margin:0 0 18px 0;
	background-color: #fff;
}

.panel header {
	padding: 14px 18px 10px;
}

.panel header h1, .panel header h2, .panel header h3, .panel header h4 {
	font-family: HelveticaWebFont;
	margin-bottom: 0;
}

.panel h1, .panel h2, .panel h3, .panel h4 {
	margin-bottom: 12px;
}

.panel section.content {
	padding: 0 18px 18px;
}

.form-wrapper {
	margin-left:  -10px;
	margin-right:  -10px;
}

.form-layout,
.form-buttons-container {
	clear: both;
	overflow: hidden;
	padding: 2px 0 4px;
}

.form-layout.horizontal.right-align label {
	text-align: right;
}

.form-layout .form-group {
	margin: 0 0 8px;
	padding-top: 2px;
	padding-bottom: 2px;
	min-height: 26px;
	overflow: hidden;
	text-align: left;
}

.form-layout .form-group.language-field {
	position: relative;
	padding-right: 36px;
}

.form-layout .form-group.language-field input[type=button].flag-button {
	position: absolute;
	bottom: 10%;
	right: 12px;
	width: 14px;
	height: 24px;
	padding: 0;
	border: 0;
	background: url(images/flag-icon.png) right 5px no-repeat;
}

.form-layout.horizontal .form-group.language-field {
	padding-right: 0;
}

.form-layout.horizontal .form-group.language-field div.inputs-wrapper {
	padding-right: 34px;
}

.form-layout .form-group label {
	float: none;
	height: 17px;
	margin: 4px 0 4px;
	text-align: left;
	font-weight: bold;
}

small.hint, .form-layout .form-group small.primary {
	color: #00b0f0;
}

.form-layout .form-group label small {
	margin-left: 4px;
	font-weight: normal;
}

.form-layout .form-group small.success {
	color: #3ab54a;
}

.form-layout .form-group small.failed {
	color: #e7392b;
}

.form-layout .form-group small.warning {
	color: #ebc409;
}

.form-layout .form-group small.primary.dark {
	color: #0075bc;
}

.form-layout.horizontal .form-group label {
	float: left;
}

.form-layout .form-group label small.mandatory {
	margin: 0;
	font-weight: bold;
	color: #e7392b;
}

.form-layout .form-group span.text-control {
	float: none;
	display: block;
	margin: 4px 0;
	font-size: 12px;
	font-weight: bold;
}

.form-layout.horizontal .form-group span.text-control {
	float: left;
	display: block;
	margin-left: 8px;
}

.form-control {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	vertical-align:  middle;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	border: solid 1px #dcdcdc;
	width: 100%;
	height: 30px;
	background-color: #fff;
	background-image: none;
	padding: 4px 10px;
	color: #4d4d4d;
	font-size: 12px;
}

input[type=text].form-control.datepicker-field {
	padding-right: 28px;
	background: url(images/datepicker-field-icon.png) right 5px no-repeat;
}

.form-control.success {
	border-color: #3ab54a;
}

.form-control.failed {
	border-color: #e7392b;
}

.form-control.warning {
	border-color: #ebc409;
}

.form-control.primary {
	border-color: #00b0f0;
}

.form-control.primary.dark {
	border-color: #0075bc;
}

select.form-control, textarea.form-control {
	height: auto;
	min-height: 30px;
	max-height: 74px;
}

.form-control:hover, .form-control:focus {
	background-color: #f7f7f7
}

.form-layout.horizontal .checkbox {
	padding: 7px 0;
}

.checkbox, .radio {
	vertical-align: middle;
	margin: 0 0 14px;
	padding-top: 27px;
	padding-bottom: 5px;
	font-weight: bold;
}

.form-layout.horizontal .checkbox, .form-layout.horizontal .radio {
	display: inline-block;
	margin: 0 10px;
}

.right-aligned {
	text-align: right;
}

.center-aligned {
	text-align: center;
}

.button {
	display: inline-block;
	text-align: center;
	white-space: nowrap;
	vertical-align: middle;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	border: solid 1px #a1a1a1;
	-moz-box-shadow: 0px 2px 0px 0px #959595;
	-webkit-box-shadow: 0px 2px 0px 0px #959595;
	box-shadow: 0px 2px 0px 0px #959595;
	margin: 0 10px 0 0;
	padding: 2px 10px;
	background: #fff;
	color: #444;
	cursor: pointer;
	font-size: 10px;
}

.right-aligned .button {
	margin: 0 0 0 10px;
}

.button.small {
	padding: 4px 16px;
	font-size: 12px;
}

.button.medium {
	padding: 4px 22px;
	font-size: 16px;
}

.button.large {
	padding: 6px 28px;
	font-size: 20px;
}

.button.success, .button.failed, .button.warning, .button.primary, .button.primary.dark {
	border: 0;
	color: #fff;
}

.button.success {
	background: #3ab54a;
	-moz-box-shadow: 0px 3px 0px 0px #1c6225;
	-webkit-box-shadow: 0px 3px 0px 0px #1c6225;
	box-shadow: 0px 3px 0px 0px #1c6225;
}

.button.failed {
	background: #e7392b;
	-moz-box-shadow: 0px 3px 0px 0px #6c150e;
	-webkit-box-shadow: 0px 3px 0px 0px #6c150e;
	box-shadow: 0px 3px 0px 0px #6c150e;
}

.button.warning {
	background: #ebc409;
	-moz-box-shadow: 0px 3px 0px 0px #937a00;
	-webkit-box-shadow: 0px 3px 0px 0px #937a00;
	box-shadow: 0px 3px 0px 0px #937a00;
}

.button.primary {
	background: #00b0f0;
	-moz-box-shadow: 0px 3px 0px 0px #0077a2;
	-webkit-box-shadow: 0px 3px 0px 0px #0077a2;
	box-shadow: 0px 3px 0px 0px #0077a2;
}

.button.primary.dark {
	background: #0075bc;
	-moz-box-shadow: 0px 3px 0px 0px #00558a;
	-webkit-box-shadow: 0px 3px 0px 0px #00558a;
	box-shadow: 0px 3px 0px 0px #00558a;
}

div.buttons-group {
	display: inline-block;
	margin: 0 10px 0 0;
}

.right-aligned div.buttons-group {
	margin: 0 0 0 10px;
}

div.buttons-group .button.first {
	webkit-border-radius: 3px 0 0 3px;
	-moz-border-radius: 3px 0 0 3px;
	border-radius: 3px 0 0 3px;
	border-right: 0;
}

div.buttons-group .button {
	float: left;
	margin: 0;
	webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
}

div.buttons-group .button.success {
	border-right: solid 1px #1c6225;
}

div.buttons-group .button.failed {
	border-right: solid 1px #6c150e;
}

div.buttons-group .button.warning {
	border-right: solid 1px #937a00;
}

div.buttons-group .button.primary {
	border-right: solid 1px #0077a2;
}

div.buttons-group .button.primary.dark {
	border-right: solid 1px #00558a;
}

div.buttons-group .button.last {
	webkit-border-radius: 0 3px 3px 0;
	-moz-border-radius: 0 3px 3px 0;
	border-radius: 0 3px 3px 0;
}

h1.app-logo {
	font-family: HelveticaWebFont;
	font-size: 26px;
	line-height: 18px;
	font-weight: normal;
	color: #fff;
	text-align: center;
}

h1.app-logo small.version {
	display: block;
	margin: 0 0 0 92px;
	line-height: 18px;
	font-size: 36%;
	font-weight: 500;
}

/* ------- Login/Logout ------- */

#login {
	width: 320px;
	margin: 140px auto;
}

#login h1.app-logo {
	margin: 0 0 8px;
	font-size: 34px;
	font-weight: 500;
	line-height: 26px;
	color: #00b0f0;
}

#login h1.app-logo small.version {
	margin: 0 0 0 124px;
}

#login .panel {
	text-align: center;
	-webkit-background-clip: padding-box;
	-moz-background-clip: padding;
	background-clip: padding-box;
}

#login .panel h1.heading {
	font-family: HelveticaWebFont;
	margin: 0;
	padding: 8px 16px;
	background-color: #0075bc;
	color: #fff;
	text-align: left;
	-webkit-background-clip: padding-box;
	-moz-background-clip: padding;
	background-clip: padding-box;
}

#login .panel section.content {
	padding: 18px 14px;
}

#login .panel section.content p {
	margin: 12px 0 0;
}

#login section.login-options {
	color: ##0075bc;
	font-size: 11px;
}

#login footer {
	margin: 16px 0 0;
	text-align: center;
	color: #cecece;
}

#login footer section.language a.current {
	font-weight: bold;
	text-decoration: underline;
}

#login footer a, section#login footer p {
	margin: 4px 0 0;
	font-size: 11px;
	color: #858789;
}

/* ------- Master ------- */

#page {
	position: relative;
	clear: both;
	float: left;
	width: 100%;
	overflow: hidden;
}

#page div.page-container-wrapper {
	float: left;
	width: 200%;
	position: relative;
	left: 232px;
}

#page div.page-container {
	float: left;
	float: right;
	width: 50%;
	position: relative;
	right: 232px;
}

section.page-content {
	margin: 0 0 0 232px;
	position: relative;
	right: 100%;
	overflow: hidden;
}

section.page-content header section.main {
	height: 60px;
	border-bottom: solid 2px #c6c9cc;
	padding: 0 12px;
	background: #fff;
	color: #858789;
}

section.page-content header section.main div.utilities-wrapper {
	float: right;
	height: 58px;
	padding: 0 0 0 12px;
}

section.page-content header section.main section.date {
	float: left;
	height: 58px;
	padding: 0 0 0 25px;
	background: url(images/calendar-icon.png) left no-repeat;
}

section.page-content header section.main section.date p {
	max-width: 148px;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	color: #858789;
	line-height: 60px;
}

section.page-content header section.main section.help {
	float: left;
	height: 58px;
	padding: 18px 12px;
}

section.page-content header section.main section.help a {
	display: block;
	width: 18px;
	height: 18px;
	background: url(images/help-icon.png) no-repeat;
	text-indent: -9999px;
}

section.page-content header section.main section.notifications {
	float: left;
	height: 58px;
	border-left: solid 1px #ebeff2;
	border-right: solid 1px #ebeff2;
	padding: 18px 34px 18px 14px;
}

section.page-content header section.main section.notifications div {
	position: relative;
	display: inline-block;
	padding: 0 0 0 24px;
	line-height: 18px;
	margin: 0 0 0 34px;
	font-size: 12px;
}

section.page-content header section.main section.notifications div a {
	color:#858789;
}

section.page-content header section.main section.notifications div.item-messages {
	background: url(images/messages-icon.png) no-repeat;
	margin: 0;
}

section.page-content header section.main section.notifications div.item-alerts {
	background: url(images/alerts-icon.png) no-repeat;
}

section.page-content header section.main section.notifications small {
	position: absolute;
	display: block;
	top: -5px;
	right: -22px;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	width: 15px;
	height: 15px;
	text-align: center;
	font-size: 10px;
	text-shadow: none;
	line-height: 13px;
	color: #fff;
}

section.page-content header section.main section.notifications div.item-messages small {
	border: solid 1px #00b0f0;
	background: #00b0f0;
}

section.page-content header section.main section.notifications div.item-alerts small {
	border: solid 1px #f8cc34;
	background: #f8cc34;
}

section.page-content header section.main div.utilities-wrapper.animate-able section.notifications small {
	opacity: 0;
	top: -1px;
	/* Transitions */  
    -webkit-transition: top 300ms linear 200ms, opacity 400ms linear 300ms;
	-moz-transition: top 300ms linear 200ms, opacity 400ms linear 300ms;
	-o-transition: top 300ms linear 200ms, opacity 400ms linear 300ms;
	transition: top 300ms linear 200ms, opacity 400ms linear 300ms;
}

section.page-content header section.main div.utilities-wrapper.animate-able.animated section.notifications small {
	opacity:  1;
	top: -5px;
}

section.page-content header section.main section#language {
	float: left;
	height: 58px;
	border-right: solid 1px #ebeff2;
	padding: 12px;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
}

section.page-content header section.main section#language div.language-select {
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	width: 60px;
	border-bottom: solid 2px #636466;
	padding: 4px 8px;
	background: #858789 url(images/select-arrow-button.png) 38px 7px no-repeat;
	color: #fff;
}

section.page-content header section.main section#language div.language-select:hover {
	background-color: #636466;
}

section.page-content header section.main section#language div.language-select div.language-content {
	display: none;
	border-top: solid 1px #fff;
	margin: 5px 0 0;
	padding: 5px 0 0;
}

section.page-content header section.main section#language div.language-select div.language-content a {
	display: block;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	width: 100%;
	color: #fff;
	font-size: 12px;
	cursor: pointer;
	padding: 2px 6px 4px;
}

section.page-content header section.main section#language div.language-select div.language-content a::before {
	margin-right: 4px;
	font-size: 10px;
	content: "\2022";
}

section.page-content header section.main section#language div.language-select div.language-content a:hover {
	background: #858789;
	text-decoration: none;
	color: #fff;
}

section.page-content header section.main section.user-menu-info {
	float: left;
	height: 58px;
	padding: 9px 0 9px 12px;
}

section.page-content header section.main section.user-menu-info div.user-menu {
	height: 36px;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
}

section.page-content header section.main section.user-menu-info div.user-menu > a {
	float: left;
	margin: 0 10px 0 0;
	border: solid 2px #fff;
	-moz-box-shadow: 0px 2px 0px 0px #858789;
	-webkit-box-shadow: 0px 2px 0px 0px #858789;
	box-shadow: 0px 2px 0px 0px #858789;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;	
	background-color: #fff;
}

section.page-content header section.main section.user-menu-info div.user-menu > a > img {
	width: 30px;
	height: 30px;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;	
}

section.page-content header section.main section.user-menu-info div.user-menu div#user-select-menu {
	float: left;
	position: relative;
	padding: 6px 0;
	vertical-align: middle;
	cursor: pointer;
}

section.page-content header section.main section.user-menu-info div.user-menu span.user-id {
	display: inline-block;
	vertical-align: middle;
	min-width: 60px;
	max-width: 106px;
	margin: 0 8px 0 0;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	font-size: 12px;
}

section.page-content header section.main section.user-menu-info div.user-menu span.select-pointer {
	display: inline-block;
	vertical-align: middle;
	width: 22px;
	height: 22px;
	background: url(images/select-arrow-icon.png) center no-repeat;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	text-indent: -9999px;
}

section.page-content header section.main section.user-menu-info div.user-menu:hover span.select-pointer {
	background: #858789 url(images/select-arrow-icon-white.png) center no-repeat;
}

section.page-content header section.main section.user-menu-info #user-select-menu.active span.select-pointer {
	background: #858789 url(images/select-arrow-icon-white.png) center no-repeat;;
	-webkit-border-bottom-left-radius: 0;
	-moz-border-radius-bottomleft: 0;
	border-bottom-left-radius: 0;
	-webkit-border-bottom-right-radius: 0;
	-moz-border-radius-bottomright: 0;
	border-bottom-right-radius: 0;
}

section.page-content header section.main section.user-menu-info div.user-menu div.select-options {
	display: none;
	position: absolute;
	top: 28px;
	right: 0;
	z-index: 10;
	overflow: hidden;
	width: 100%;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	-webkit-border-top-right-radius: 0;
	-moz-border-radius-topright: 0;
	border-top-right-radius: 0;
	background: #858789;
}

section.page-content header section.main section.user-menu-info div.user-menu div.select-options ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

section.page-content header section.main section.user-menu-info div.user-menu div.select-options ul li a {
	display: block;
	width: 100%;
	padding: 6px 11px;
	font-size: 12px;
	color: #fff;
	margin: 0;
}

section.page-content header section.main section.user-menu-info div.user-menu div.select-options ul li a:hover {
	text-decoration: none;
	background-color: #636466;
}

section.page-content header section.main section.user-menu-info div.user-menu div.select-options ul li.logout a {
	border-top: solid 1px #636466;
	padding: 6px 10px 8px 28px;
	background-image: url(images/logout-icon.png);
	background-position: 10px 8px;
	background-repeat: no-repeat;
}

section.page-content header section.main p {
	margin: 0;
}

section.page-content header section.breadcrumb {
	height: 30px;
	padding: 4px 0 0;
	background: #f2f3ee;
}

section.page-content header section.breadcrumb ul {
	margin: 0;
	padding: 0 0 0 10px;
	list-style: none;
}

section.page-content header section.breadcrumb ul li {
	display: inline-block;
	margin: 0 0 0 6px;
	font-size: 10px;
}

section.page-content header section.breadcrumb ul.path li::before {
	content: "/";
	color: #adb0b2;
	margin: 0 9px 0 0;
}

section.page-content header section.breadcrumb ul li a {
	color: #858789;
	font-size: 11px;
}

section.page-content header section.breadcrumb ul li.home {
	margin: 0;
}

section.page-content header section.breadcrumb ul li.home::before {
	content: "";
	margin: 0;
}

section.page-content header section.breadcrumb ul li.home a {
	padding: 0 0 0 24px;
	background: url(images/home-icon.png) left no-repeat;
	font-weight: bold;
}

section.page-content header section.breadcrumb ul li.current a {
	font-weight: bold;
	text-decoration: underline;
}

section.page-content div#main-content {
	padding: 18px;
}

section.page-content div#main-content #scroll-to-top-btn {
	display: none;
	position: fixed;
	bottom: 18px;
	right: 18px;
}

section.page-content div#main-content #scroll-to-top-btn:hover {
	opacity: 0.7;
	/* Transitions */  
	-webkit-transition: opacity 300ms linear 100ms;
	-moz-transition: opacity 300ms linear 100ms;
	-o-transition: opacity 300ms linear 100ms;
	transition: opacity 300ms linear 100ms;
}

aside {
	float: left;
	position: relative;
	right: 232px;
	width: 232px;
	background: #fff;
	border-right: solid 1px #c6c9cc;
}

aside div.app-logo-container {
	height: 59px;
	border-bottom: solid 1px #0096cc;
	padding: 16px 0 0;
	background: #00b0f0;
}

#navigation ul.menu {
	color: #b0c8d1;
	list-style-type: none;
	padding: 0;
	margin: 0;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
}

#navigation ul.menu > li {
	border-bottom: solid 1px #ebeff2;
}

#navigation ul.menu > li > em {
	display: block;
}

#navigation ul.menu > li > em > a {
	display: block;
	padding: 14px 12px;
	color: #858789;	
	background: url(images/main-nav-indicator.png) 214px 18px no-repeat;
	cursor: pointer;
	text-decoration: none;
}

#navigation ul.menu > li > em > a:hover {	
	background-color: #f5f5f5 !important;
}

#navigation ul.menu > li.active > em a, #navigation ul.menu > li.active > em a {
	background: #e6eaed url(images/main-nav-indicator-active.png) 214px 18px no-repeat;
	font-weight: bold;
}

#navigation ul.menu li > ul {
	display: none;
	list-style: none;
	margin: 0;
	padding: 0;
	background: #f5f5f5;
}

#navigation ul.menu li.active > ul {
	display: block;
}

#navigation ul.menu li > ul > li {
	list-style: none;
	margin: 0;
	padding: 0;
}

#navigation ul.menu li > ul > li > a{
	display: block;
	padding: 8px 24px;
	color: #858789;
	text-decoration: none;
	cursor: pointer;
}

#navigation ul.menu li > ul > li.active > a{
	color: #f89734;
	font-weight: bold;
}

#navigation ul.menu ul li.group-container > a {
	background: url(images/main-nav-indicator.png) 214px 12px no-repeat;
}

#navigation ul.menu ul li.group-container.active > a {
	background: url(images/main-nav-indicator-active.png) 210px 12px no-repeat;
}

#navigation ul.menu ul li.group-container.active > a {
	color: #f89734;
}

#navigation ul.menu ul ul {
	display: none;
	margin: 8px 0 0;
	background: #fafafa;
}

#navigation ul.menu li a:hover {
	background-color: #fff !important;
}

#navigation ul.menu ul ul > li > a {
	padding: 8px 48px;
}

#navigation ul.menu ul ul > li > a {
	padding: 8px 40px;
}

#navigation ul.menu ul ul > li > a::before {
	content: "- ";
}

#navigation ul.menu ul ul > li.active > a {
	font-weight: normal;
}

/* ------- Tables --> Static ------- */

table.data {
	width: 100%;
	margin: 14px 0;
}

table.data.dynamic {
	margin: 0;
}

table.data.fixed {
	table-layout: fixed;
}

table.data thead {
	font-size: 14px;
}

table.data tr th.hiddenCell,
table.data tr td.hiddenCell {
	display: none;
}

table.data thead tr th {
	border: solid 1px #dcdcdc;
	padding: 6px 10px;
	text-align: left;
}

table.data thead.highlighted tr th {
	border: solid 1px #00558a;
	background: #0075bc;
	color: #fff;
}

table.data tbody {
	font-size: 12px;
	color: #656565;
}

table.data tbody tr td {
	border: solid 1px #dcdcdc;
	padding:6px 10px;
	text-align: left;
}

table.data tbody tr.deleted td {
	color: #e7392b;
	text-decoration: line-through;
}

table.data tbody tr:hover {
	background-color: #f7f7f7;
}

table.data tbody tr td.form-control-container {
	text-align: center;
	padding: 0;
}

table.data .content-wrapped {
	width: 1%;
}

table.data tbody tr td.form-control-container input, table.data tbody tr td.form-control-container select {
	width: 100%;
	height: 100%;
	padding: 0 10px;
	border: 0;
	margin: 0;
	background-color: transparent;
	color: #656565;
	vertical-align: middle;
}

table.data tbody tr td.form-control-container input[type=checkbox], table.data tbody tr td.form-control-container input[type=radio] {
	width: auto;
	height: auto;
	margin: 0 10px;
}

table.data tbody tr td.actions-container {
	min-width: 94px;
	width: auto;
}

table.data tbody tr.deleted td.actions-container a.action {
	pointer-events: none;
	opacity: 0.3;
}

table.data tbody tr td.actions-container a.action {
	display: inline-block;
	height: 16px;	
	margin: 0 4px 0;
	text-indent: -9999px;
	cursor: pointer;
	background-repeat: no-repeat;
}

table.data tbody tr td.actions-container a.action.edit {
	width: 16px;
	background:url(images/edit-icon.png);
}

table.data tbody tr td.actions-container a.action.delete {
	width: 15px;
	background:url(images/delete-icon.png);
}

table.data tbody tr td.actions-container a.action.see-detail {
	width: 17px;
	background:url(images/see-detail-icon.png) center no-repeat;
}

table.data tbody tr td.actions-container a.action.download {
	width: 17px;
	background:url(images/download-icon.png) center no-repeat;
}

table.data tbody tr td.actions-container a.action.downloadOriginalFile {
	width: 17px;
	background: url(images/download-original-file-icon.png) center no-repeat;
}

table.data tbody tr td.actions-container a.action.upload {
	width: 17px;
	background:url(images/upload-icon.png) center no-repeat;
}

table.data tbody tr td.actions-container a.action.checkfile {
	width: 17px;
	background:url(images/checkfile-icon.png) center no-repeat;
}

table.data tbody tr td.actions-container a.action.agree {
	width: 17px;
	background:url(images/agree-icon.png) center no-repeat;
}

table.data tbody tr td.actions-container a.action.deposit {
	width: 17px;
	background:url(images/deposit-icon.png) center no-repeat;
}

table.data tbody tr td.actions-container a.action.see-detail:hover {
}

table.data tbody tr td.image-container {
	min-width: 94px;
	width: auto;
    text-align: center;
}

table.data tbody tr.deleted td.image-container a.image {
	pointer-events: none;
	opacity: 0.3;
}

table.data tbody tr td.image-container a.image {
	height: 25px;
    width: 25px;
	display: inline-block;
	text-indent: -9999px;
	cursor: pointer;
	background-repeat: no-repeat;
}

table.data tbody tr td.image-container a.image.Check {
	background:url(images/Check-icon.png) center no-repeat;
}

table.data tbody tr td.image-container a.image.Uncheck {
	background:url(images/Uncheck-icon.png) center no-repeat;
}

table.data tbody tr td.image-container a.image.Uncheck-Intime {
	background:url(images/Uncheck-Intime-icon.png) center no-repeat;
}

table.data tbody tr td.image-container a.image.Balance {
	background:url(images/Balance-icon.png) center no-repeat;
}

table.data tbody tr td.image-container a.image.Unbalance {
	background:url(images/Unbalance-icon.png) center no-repeat;
}

table.data tbody tr td.image-container a.image.Unbalance-NotDeposited {
	background:url(images/Unbalance-NotDeposited-icon.png) center no-repeat;
}

/* ------- Tables --> Dynamic ------- */

.dataTables_wrapper {
	clear: both;
	margin: 14px 0;
}

.dataTables_wrapper .header {
	height: 38px;
	background: #0075bc;
	font-weight: bold;
	text-shadow: 0 1px 0px #005171;
	color: #fff;
}

.dataTables_wrapper .header .title {
	float: left;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	width: 300px;
	margin: 8px 0 0 12px;
	font-size: 14px;
}

.dataTables_wrapper .dataTables_filter {
	float: right;
	margin: 7px 6px 0 0;
	text-align: right;
}

.dataTables_wrapper .dataTables_filter label {
	display: inline-block;
	color: #fff;
}

.dataTables_wrapper .dataTables_filter input[type=text] {
	display: inline-block;
	width: 260px;
	height: 24px;
	margin: 0 0 0 4px;
	padding: 0 6px;
	line-height: 10px;
	border: solid 1px #00558a;
	color: #656565;
	font-size: 12px;
}

.dataTables_wrapper table.data.dynamic thead th {
	cursor: pointer;
}

.dataTables_wrapper table.data.dynamic thead tr th.sorting {
	background: url(images/sorting-col-bg.png) 96% no-repeat;
}

.dataTables_wrapper table.data.dynamic thead tr th.sorting_desc {
	background: url(images/sorting-desc-col-bg.png) 96% no-repeat;
}

.dataTables_wrapper table.data.dynamic thead tr th.sorting_asc {
	background: url(images/sorting-asc-col-bg.png) 96% no-repeat;
}

.dataTables_wrapper table.data.dynamic thead tr th.content-wrapped.sorting, .dataTables_wrapper table.data.dynamic thead tr th.content-wrapped.sorting_desc, .dataTables_wrapper table.data.dynamic thead tr th.content-wrapped.sorting_asc {
	background: none;
}

.dataTables_wrapper table.data.dynamic thead tr th.sorting_desc, .dataTables_wrapper table.data.dynamic thead tr th.sorting_asc, .dataTables_wrapper table.data.dynamic tbody tr td.sorting_1 {
	background-color: #f7f7f7;
}

.dataTables_wrapper .footer {
	overflow: hidden;
	padding: 8px;
	border: solid 1px #dcdcdc;
	border-top: 0;
	color: #656565;
}

.dataTables_wrapper .dataTables_length, .dataTables_wrapper .dataTables_info {
	float: left;
	font-size: 11px;
	line-height: 20px;
}

.dataTables_wrapper .dataTables_info em {
	font-size: 11px;
	font-weight: bold;
}

.dataTables_wrapper .dataTables_length select {
	border: solid 1px #dcdcdc;
	font-size: 11px;
}

.dataTables_wrapper .dataTables_paginate {
	float: right;
	font-size: 10px;
	padding: 4px 0;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
}

.dataTables_wrapper .dataTables_paginate a {
	border: solid 1px #cecece;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	margin: 0 2px;
	padding: 2px 8px;
	cursor: pointer;
}

.dataTables_wrapper .dataTables_paginate a.paginate_button_disabled, .dataTables_wrapper .dataTables_paginate a.paginate_button_disabled:hover {
	border: solid 1px #cecece;
	color: #cecece;
	text-decoration: none;
}

.dataTables_wrapper .dataTables_paginate a.paginate_active, .dataTables_wrapper .dataTables_paginate a.paginate_active:hover {
	background: #0075bc;
	font-weight: bold;
	text-decoration: underline;
	border-color: #0075bc;
	color: #fff;
}

/* ------- Tabs ------- */

div.tabs.ui-tabs {
	margin: 14px 0;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
	border: 0;
	background: none;
	font-size: 12px;
	padding: 0;
}

div.tabs.ui-tabs ul.ui-tabs-nav {
	padding: 0;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
	background: none;
	border: 0;
}

div.tabs.ui-tabs ul.ui-tabs-nav li {
	margin: 0;
	border: solid 1px #00558a;
	border-right: 0;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
}

div.tabs.ui-tabs ul.ui-tabs-nav.right-aligned li {
	float: right;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
}

div.tabs.ui-tabs ul.ui-tabs-nav li.first, div.tabs.ui-tabs ul.ui-tabs-nav.right-aligned li.last {
	-webkit-border-radius: 4px 0 0 0 0;
	-moz-border-radius: 4px 0 0 0;
	border-radius: 4px 0 0 0;
}

div.tabs.ui-tabs ul.ui-tabs-nav li.last, div.tabs.ui-tabs ul.ui-tabs-nav.right-aligned li.first {
	-webkit-border-radius: 0 4px 0 0 0;
	-moz-border-radius: 0 4px 0 0;
	border-radius: 0 4px 0 0;
	border-right: solid 1px #00558a;
}

div.tabs.ui-tabs ul.ui-tabs-nav.right-aligned li.last {
	border-right: 0;
}

div.tabs.ui-tabs ul.ui-tabs-nav li a {
	padding: 4px 18px;
	margin: 0;
	font-size: 14px;
	color: #fff;
	line-height: 26px;
}

div.tabs.ui-tabs ul.ui-tabs-nav li.ui-state-default {
	background: #0075bc;
}

div.tabs.ui-tabs ul.ui-tabs-nav li.ui-state-default.ui-state-active {
	background: #00558a;
	margin: 0;
	padding: 0;
}

div.tabs.ui-tabs div.ui-tabs-panel {
	border: solid 1px #dcdcdc;
	padding: 16px;
	font-size: 12px;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
}

/* ------- Accordion ------- */

div.accordion.ui-accordion {
	margin: 14px 0;
}

div.accordion.ui-accordion h3.ui-accordion-header {
	margin: 0 0 4px;
	font-size: 14px;
	font-weight: bold;
}

div.accordion.ui-accordion h3.ui-accordion-header.ui-state-active {
	margin: 0;
	background: #0075bc;
	border: solid 1px #00558a;
}

div.accordion.ui-accordion h3.ui-accordion-header.ui-state-hover {
	color: #0075bc;
}

div.accordion.ui-accordion h3.ui-accordion-header.ui-state-active.ui-state-hover {
	color: #fff;
}


div.accordion.ui-accordion div.ui-accordion-content {
	margin: 0 0 4px;
	padding: 16px;
}

/* ------- Dialog ------- */

div.dialog-section {
	display: none;
}

div.dialog-window {
	position: fixed;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	-moz-box-shadow: 0px 3px 0px 0px #aaa;
	-webkit-box-shadow: 0px 3px 0px 0px #aaa;
	box-shadow: 0px 3px 0px 0px #aaa;
	margin: 0 0 18px 0;
	padding: 0;
	border: 0;
	background-color: #fff;
}

div.dialog-window div.ui-widget-header {
	border: 0;
	-webkit-border-bottom-left-radius: 0;
	-moz-border-radius-bottomleft: 0;
	border-bottom-left-radius: 0;
	-webkit-border-bottom-right-radius: 0;
	-moz-border-radius-bottomright: 0;
	border-bottom-right-radius: 0;
	font-family: HelveticaWebFont;
	margin: 0;
	padding: 8px 12px;
	background-color: #0075bc;
	text-align: left;
	-webkit-background-clip: padding-box;
	-moz-background-clip: padding;
	background-clip: padding-box;
	font-size: 16px;
	font-weight: normal;
}

div.dialog-window div.ui-widget-header .ui-dialog-titlebar-close {
	border: 0;
	right: 10px;
}

div.dialog-window div.ui-dialog-content {
	padding: 14px;
}

div.dialog-window .ui-dialog-buttonpane {
	margin: 0;
}

div.dialog-window .ui-dialog-buttonpane button {
	margin: 4px 0 4px 7px;
}

/* ------- Alerts and Messages ------- */

div.alert, div.message {
	position: relative;
	border: solid 1px #a1a1a1;
	-moz-box-shadow: 0px 1px 0px 0px #959595;
	-webkit-box-shadow: 0px 1px 0px 0px #959595;
	box-shadow: 0px 1px 0px 0px #959595;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	padding: 10px 28px 10px 10px;
	margin: 0 0 16px 0;
}

div.alert::after {
	position: absolute;
	top: 3px;
	right: 9px;
	font-size: 10px;
	font-weight: bold;
	color: #444;
	content: "x";
}

div.alert {
	cursor: pointer;
}

div.alert h1, div.message h1 {
	margin-bottom: 4px;
	line-height: 18px;
	font-size: 14px;
	font-weight: bold;
	color: #444;
}

div.alert p, div.message p {
	margin: 0 !important;
	font-size: 12px;
	text-align: left;
	line-height: 16px;
	color: #444;
}

div.alert.success::after, div.alert.failed::after, div.alert.warning::after, div.alert.primary::after, div.alert.primary.dark::after {
	color: #fff;
}

div.alert.success, div.alert.failed, div.alert.warning, div.alert.primary, div.alert.primary.dark, div.message.success, div.message.failed, div.message.warning, div.message.primary, div.message.primary.dark {
	border: 0;
}

div.alert.success h1, div.alert.failed h1, div.alert.warning h1, div.alert.primary h1, div.alert.primary.dark h1, div.message.success h1, div.message.failed h1, div.message.warning h1, div.message.primary h1, div.message.primary.dark h1 {
	color: #fff;
}

div.alert.success p, div.alert.failed p, div.alert.warning p, div.alert.primary p, div.alert.primary.dark p, div.message.success p, div.message.failed p, div.message.warning p, div.message.primary p, div.message.primary.dark p {
	border: 0;
	color: #fff;
}

div.alert.success, div.message.success {
	background: #3ab54a;
	-moz-box-shadow: 0px 3px 0px 0px #1c6225;
	-webkit-box-shadow: 0px 3px 0px 0px #1c6225;
	box-shadow: 0px 3px 0px 0px #1c6225;
}

div.alert.failed, div.message.failed {
	background: #e7392b;
	-moz-box-shadow: 0px 3px 0px 0px #6c150e;
	-webkit-box-shadow: 0px 3px 0px 0px #6c150e;
	box-shadow: 0px 3px 0px 0px #6c150e;
}

div.alert.warning, div.message.warning {
	background: #ebc409;
	-moz-box-shadow: 0px 3px 0px 0px #937a00;
	-webkit-box-shadow: 0px 3px 0px 0px #937a00;
	box-shadow: 0px 3px 0px 0px #937a00;
}

div.alert.primary, div.message.primary {
	background: #00b0f0;
	-moz-box-shadow: 0px 3px 0px 0px #0077a2;
	-webkit-box-shadow: 0px 3px 0px 0px #0077a2;
	box-shadow: 0px 3px 0px 0px #0077a2;
}

div.alert.primary.dark, div.message.primary.dark {
	background: #0075bc;
	-moz-box-shadow: 0px 3px 0px 0px #00558a;
	-webkit-box-shadow: 0px 3px 0px 0px #00558a;
	box-shadow: 0px 3px 0px 0px #00558a;
}

div.alert.animate-able, div.message.animate-able {
	opacity: 0;
	/* Transitions */  
    -webkit-transition: opacity 400ms linear 300ms;
	-moz-transition: opacity 400ms linear 300ms;
	-o-transition: opacity 400ms linear 300ms;
	transition: opacity 400ms linear 300ms;
}

div.alert.animate-able.animated, div.message.animate-able.animated {
	opacity:  1;
}

/* ------- Ajax-loaders ------- */

#page form div.loader div.wrapper {
	position: absolute;
	top: 300px;
	left: 50%;
	z-index: 100;
	text-align: center;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	-moz-box-shadow: 0px 3px 0px 0px #aaa;
	-webkit-box-shadow: 0px 3px 0px 0px #aaa;
	box-shadow: 0px 3px 0px 0px #aaa;
	background-color: #fff;
	padding: 16px 26px;
}

#page form div.loader div.wrapper p {
	margin: 14px 0 0;
}

#page form div.loader div.loader-bg-overlay {
	z-index: 70;
	position: fixed;
	top: 0;
	left: 0;
	opacity: 0.7;
	background: #000;
	width: 101%;
	min-height: 101%;
}

/* ------- Message and Alerts Management ------- */

div.form-buttons-container.message-buttons {
	overflow: hidden;
}

div.form-buttons-container.message-buttons h3 {
	float: left;
	margin-top: 4px;
	font-size: 16px;
}

div.form-buttons-container.message-buttons div.left-buttons {
	float: left;
	margin: 0 0 0 12px;
}

div.form-buttons-container.message-buttons div.right-buttons {
	float: right;
}

div.message-section {
	overflow: hidden;
	margin: 12px 0 0;
	font-size: 12px;
}

div.message-data-container {
	float: left;
	width: 30%;
	min-height: 595px;
	border: solid 1px #dcdcdc;
	border-top: 0;
}

div.message-data-container .dataTables_wrapper {
	margin: 0;
}

div.message-data-container .footer {
	border: 0;
	border-bottom: solid 1px #dcdcdc;
}

div.message-data-container .dataTables_info {
	margin: 0 0 6px;
}

table.message-list {
	width: 100%;
}

table.message-list tbody tr td {
	border-top: solid 1px #dcdcdc;
	border-bottom: solid 1px #dcdcdc;
	padding: 8px;
	cursor: pointer;
}

table.message-list tbody tr td.message-info {
	padding-left: 0;
}

table.message-list tbody tr td p {
	margin: 0;
}

table.message-list tbody tr.current td, table.message-list tbody tr:hover td {
	background: #f7f7f7;
}

table.message-list tbody tr.unread td{
	background: #fefeda;
}

div.message-section div.message-info {
	float:left;
	width: 70%;
}

div.message-section div.message-info em.email::before {
	content: "\003c  ";
}

div.message-section div.message-info em.email::after {
	content: " \003e";
}

div.message-section div.message-info div.header-section {
	background: #f7f7f7;
	border: solid 1px #dcdcdc;
	border-left: 0;
	padding: 4px 8px;
	line-height: 19px;
}

div.message-section div.message-info div.message-body {
	border: solid 1px #dcdcdc;
	border-top: 0;
	border-left: 0;
}

div.message-section div.message-info div.message-body textarea {
	width: 100%;
	padding: 12px;
	border: 0;
	max-height: 280px;
}

/* ------- Dashboard ------- */

div.dashboard-widget-container {
	overflow: hidden;
	clear: both;
	padding: 0 0 14px;
}

div.dashboard-widget-container div.dashboard-widget {
	overflow: hidden;
}

div.dashboard-widget-container div.most-used {
	width: 100%;
	float: left;
	margin: 8px 0;
	border: solid 1px #959595;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	cursor: pointer;
}

div.dashboard-widget-container div.most-used div.wrapper {
	overflow: hidden;
	max-height: 42px;
}

div.dashboard-widget-container div.most-used a {
	display: table;
	width: 102%;
	height: 40px;
}

div.dashboard-widget-container div.most-used a:hover {
	text-decoration: none;
}

div.dashboard-widget-container div.most-used a b.index-number {
	display: table-cell;
	width: 54px;
	padding: 0 10px;
	vertical-align: middle;
	background: #959595;
	text-align: center;
	font-size: 18px;
	color: #fff;
}

div.dashboard-widget-container div.most-used a em {
	display: table-cell;
	padding: 0 10px;
	vertical-align: middle;
	font-size: 14px;
	color: #959595;
}

div.dashboard-widget-container div.most-used a:hover b.index-number {
	background: none;
	color: #959595;
}

div.dashboard-widget-container div.most-used a:hover em {
	background: #959595;
	color: #fff;
}

div.dashboard-widget-container div.most-used.primary {
	border: solid 1px #00b0f0;
}

div.dashboard-widget-container div.most-used.primary a b.index-number {
	background: #00b0f0;
	color: #fff;
}

div.dashboard-widget-container div.most-used.primary a em {
	background: none;
	color: #00b0f0;
}

div.dashboard-widget-container div.most-used.primary a:hover b.index-number {
	background: none;
	color: #00b0f0;
}

div.dashboard-widget-container div.most-used.primary a:hover em {
	background: #00b0f0;
	color: #fff;
}

div.dashboard-widget-container div.most-used.primary.dark {
	border: solid 1px #0075bc;
}

div.dashboard-widget-container div.most-used.primary.dark a b.index-number {
	background: #0075bc;
	color: #fff;
}

div.dashboard-widget-container div.most-used.primary.dark a em {
	background: none;
	color: #0075bc;
}

div.dashboard-widget-container div.most-used.primary.dark a:hover b.index-number {
	background: none;
	color: #0075bc;
}

div.dashboard-widget-container div.most-used.primary.dark a:hover em {
	background: #0075bc;
	color: #fff;
}

div.dashboard-widget-container div.most-used.success {
	border: solid 1px #3ab54a;
}

div.dashboard-widget-container div.most-used.success a b.index-number {
	background: #3ab54a;
	color: #fff;
}

div.dashboard-widget-container div.most-used.success a em {
	background: none;
	color: #3ab54a;
}

div.dashboard-widget-container div.most-used.success a:hover b.index-number {
	background: none;
	color: #3ab54a;
}

div.dashboard-widget-container div.most-used.success a:hover em {
	background: #3ab54a;
	color: #fff;
}

div.dashboard-widget-container div.most-used.failed {
	border: solid 1px #e7392b;
}

div.dashboard-widget-container div.most-used.failed a b.index-number {
	background: #e7392b;
	color: #fff;
}

div.dashboard-widget-container div.most-used.failed a em {
	background: none;
	color: #e7392b;
}

div.dashboard-widget-container div.most-used.failed a:hover b.index-number {
	background: none;
	color: #e7392b;
}

div.dashboard-widget-container div.most-used.failed a:hover em {
	background: #e7392b;
	color: #fff;
}

div.dashboard-widget-container div.most-used.warning a b.index-number {
	background: #ebc409;
	color: #fff;
}

div.dashboard-widget-container div.most-used.warning {
	border: solid 1px #ebc409;
}

div.dashboard-widget-container div.most-used.warning a em {
	background: none;
	color: #ebc409;
}

div.dashboard-widget-container div.most-used.warning a:hover b.index-number {
	background: none;
	color: #ebc409;
}

div.dashboard-widget-container div.most-used.warning a:hover em {
	background: #ebc409;
	color: #fff;
}