html { font-size: 62.5%; } 
body {
  font-size: 14px;
  font-size: 1.4rem;
  color:#333;
  font-family:-apple-system, BlinkMacSystemFont, 
    "Helvetica Neue", sans-serif;
  font-weight:400;
	text-rendering: geometricPrecision;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.alert {
	border-radius:0;
	margin-bottom:0;
}

a {
	color:#33303d;
	outline:0;
}

a:hover,
a:focus {
	color:#33303d;
}

a:active,
a:focus,
button:active,
button:focus,
.btn:active,
.btn:focus,
input:active,
input:focus {
	outline: 0 !important;
	box-shadow:none;
}

ul {
	margin:0;
	padding:0;
	list-style:none;
}

#ajaxResponse {
	position:fixed;
	display:none;
	bottom:25px;
	left:15px;
	background:rgba(0,0,0,0.7);
	z-index:10;
	padding:7px 10px;
	color:#fff;
	font-size:16px;
	line-height:16px;
	text-align:left;
}

#cookiepolicy {
	position:fixed;
	top:36px;
	left:0;
	right:0;
	font-size:1em;
	line-height:1.4em;
	padding:0.3em 1em;
	color:#fff;
	z-index:99999;
	background:rgba(0,0,0,0.8);
	text-align:justify;
}

@media (min-width:767px) { 
	#cookiepolicy {
		bottom:0;
		top:auto;
		text-align:center;
	}
}

#cookiepolicy_btn {
	border:0;
	color:#000;
	background:#fff;
	border-radius:0;
	margin:0 1em;
}

.dropup .dropdown-menu {
  box-shadow: 0 -6px 6px rgba(0, 0, 0, 0.1);
}

.dropdown-menu:before {
  position: absolute;
  top: -7px;
  left: 2px;
  display: inline-block;
  border-right: 7px solid transparent;
  border-bottom: 7px solid #ccc;
  border-left: 7px solid transparent;
  border-bottom-color: rgba(0, 0, 0, 0.1);
  content: '';
}

.dropdown-menu:after {
  position: absolute;
  top: -6px;
  left: 3px;
  display: inline-block;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #ffffff;
  border-left: 6px solid transparent;
  content: '';
}

.dropdown-menu {
  min-width:0px;
  box-shadow: 0 6px 6px rgba(0, 0, 0, 0.1);
  padding:5px 1px;
  margin-top:-2px;
  border-radius:0;
}

.dropdown:not(.dropup) .dropdown-menu {
	border-top:none;
}

.dropdown.dropup .dropdown-menu {
	border-bottom:none;
	margin-bottom:0px;
}

.dropdown-menu.dropdown-menu-right {
	left:auto;
	right:4px;
}

.dropdown-menu:before,
.dropdown-menu.dropdown-menu-right:before {
  display:none;
}

.dropdown-menu:after,
.dropdown-menu.dropdown-menu-right:after {
  display:none;
}

.remoteDropdown ul > li.loading {
	padding:10px;
	text-align:center;
	max-height:auto;
}

.dropdown-menu > li > a .fa {
	font-size:14px;
}

footer .dropdown-menu > li > a .fa {
	font-size:1rem;
}

#footer-debug {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 20px;
  text-align: center;
	color:#000;
	font-weight:bold;
	font-size:1rem;
	line-height:1.5;
  border-top: 1px solid rgba(0,0,0,0.3);
  background:#99ff99
}

#footer-debug.development {
	background:#fc0;
	color:#000;
	font-weight:bold;
	font-size:1rem;
	line-height:1.5;
}

.badge {
	border-radius:15px;
	padding:2px 5px;
	line-height:12px;
	background:#5F5B6A;
	vertical-align:top;
}


/************** MODAL **********/
.modal-backdrop {
	background:#000;
}

.modal-backdrop.in {
	opacity:0.4;
}

.modal {
 overflow-y: auto;
}

.modal-open {
	overflow: hidden;
}

.modal-dialog {
	margin:50px auto;
}

.modal-dialog p.alert.alert-danger {
	word-wrap:break-word;
}

@media (max-width:767px) {
	.modal-open #appModal {
		padding-right:0px !important;
	}
	.modal-dialog {
		margin:10px;
	}	
}

.modal-header {
	padding:5px 10px;
	background:#f8f8f8;
	overflow:hidden;
	position:relative;
}

.modal-header h4 {
	text-shadow:0 1px 0 #fff;
	color:#666;
}

.modal-content {
	border:none;
	overflow:hidden;
	border-radius:0;
}

.modal-content .modal-body.modal-loading {
	margin:0 auto;
	padding:10px;
	text-align:center;
}

@media (min-width:768px) {
	.fade-scale {
	-webkit-transform: scale(0.7);
	-moz-transform: scale(0.7);
	-ms-transform: scale(0.7);
	transform: scale(0.7);
	opacity: 0;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
	}

	.fade-scale.in {
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
	opacity: 1;
	}

	.modal {
	  text-align: center;
	}

  .modal:before {
    display: inline-block;
    vertical-align: middle;
    content: " ";
    height: 100%;
  }

  .modal-dialog {
	  display: inline-block;
	  text-align: left;
	  vertical-align: middle;
	}
}

.loading-modal-icon {
  height: 28px;
  width: 28px;
  -webkit-animation: rotate 1s infinite linear;
  -moz-animation: rotate 1s infinite linear;
  animation: rotate 1s infinite linear;
  border: 2px solid #aaa;
  border-right-color: transparent;
  border-radius: 50%;
  display:inline-block;
}

.loading-modal-icon.sm {
  height: 14px;
  width: 14px;
  position:relative;
  top:3px;
  right:2px;
}

@-webkit-keyframes rotate {
  0%    { -webkit-transform: rotate(0deg); }
  100%  { -webkit-transform: rotate(360deg); }
}

@-moz-keyframes rotate {
  0%    { -moz-transform: rotate(0deg); }
  100%  { -moz-transform: rotate(360deg); }
}

@keyframes rotate {
  0%    { transform: rotate(0deg); }
  100%  { transform: rotate(360deg); }
}

.modal-body-hidden {
	opacity:0;
}

.modal-footer-loading {
	padding: 10px 15px;
}

.modal-broadcast {
	max-height:400px;
	overflow:auto;
}

.close {
	font-size:26px;
	font-weight:300;
	opacity:0.4;
	position:relative;
	z-index:2;
	top:2px;
	right:-5px;
	display:inline-block;
	min-width:26px;
}

.close:hover,
.close:focus {
	opacity:0.7;
}

.modal-body p.alert {
	margin-bottom:0;
}

input.form-control[type="text"],
input.form-control[type="email"], 
input.form-control[type="tel"],
input.form-control[type="number"],
input.form-control[type="password"],
textarea {
	-webkit-appearance: none;
}

abbr,
abbr[data-original-title], abbr[title] {
	border-bottom: initial;
  text-decoration: none;
  border-bottom:none;
}

.btn {
  padding: 6px 10px;
  -webkit-transition: all 100ms ease-in-out;
  -moz-transition: all 100ms ease-in-out;
  transition: all 100ms ease-in-out;
  font-weight:300;
  background:#607D8B;
  color:#fff;
  text-transform:none;
  overflow:hidden;
  position:relative;
  -webkit-transition:box-shadow 300ms ease;
  -o-transition:box-shadow 300ms ease;
  -moz-transition:box-shadow 300ms ease;
  -ms-transition:box-shadow 300ms ease;
  transition:box-shadow 300ms ease;
  text-shadow:none;
  font-size:1.6rem;
  line-height:1.3;
	border:1px solid rgba(0,0,0,0.1);
}

.btn:hover,
.btn:active,
.bt:focus {
	box-shadow:0 0 20px -5px rgba(0,0,0,0.7);
	border:1px solid rgba(0,0,0,0.3);
}

.btn.block {
	display:block;
	width:100%;
}

.btn:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%; 
  display: block;
  width: 0;
  height:0;
  padding-top: 0;  
  border-radius: 100%;  
  background-color: rgba(0, 0, 0, .1);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

@media (min-width:992px) {
	.btn:not([disabled]):hover:before {
	  width: 200%;
	  height:200%;
	  padding-top: 200%;
	  transition: width .4s ease-out, padding-top .4s ease-out;
	}
}

.btn:hover,
.btn:active,
.btn:focus,
.btn.focus {
	background-image: none;
  outline: 0 none;
  color:#fff;
}

.btn + .btn {
	margin-left:5px;
}

.btn.center {
	margin:0 auto;
	display:block;
}

.btn.round {
	border-radius:50%;
	padding:6px 9px;
}

.btn-group.open .dropdown-toggle {
	box-shadow:none;
}

.input-group-btn > .btn > i.fa {
	margin:0;
}

.btn.xs, 
.btn-group-xs > .btn {
  padding:3px 5px;
  font-size:1.1rem;
  max-height:21px;
}

.btn.xs i {
	position:relative;
	top:-1px;
}

.btn.xs.i {
	padding:3px;
}

.btn.sm, 
.btn-group-sm > .btn {
  padding:4px 6px;
  font-size:1.2rem;
}

.btn.lg, 
.btn-group-lg > .btn {
  font-size:1.8rem;
  padding:10px 13px;
}

.btn.xl, 
.btn-group-xl > .btn {
  font-size:2.4rem;
  padding:15px 19px;
}

.btn i.fa {
	margin-right:5px;
}

.btn.i i.fa {
	margin-right:0px;
}

.btn.xs.i i.fa {
	width:1.1rem;
}

.btn.sm.i i.fa {
	width:1.2rem;
}

.btn.i i.fa {
	width:1.4rem;
}

.btn.lg.i i.fa {
	width:1.8rem;
}

.btn.xl.i i.fa {
	width:2.4rem;
}

.btn.txt {
	text-transform:none;
	background: none !important;
	color:#33303d;
  box-shadow: none;
  outline: 0 none;	
  padding:0;
  border-color:transparent;
  text-shadow:none;
}

.btn.txt:hover,
.btn.txt:active,
.btn.txt:focus,
.btn.txt.focus {
	text-decoration:underline;
  box-shadow:none;
  border-color:transparent;
  text-shadow:none;
}

.btn.txt:before {
	display:none;
  background-color: rgba(128, 128, 128, .1);  
}

/* RED */
.btn.red {
	background:#c62828;
  color:#fff;
}

.btn.txt.red {
	color:#c62828;	
}

.btn.red:hover,
.btn.red:active,
.btn.red:focus,
.btn.red.focus {
	color:#fff;
}

.btn.txt.red:hover,
.btn.txt.red:active,
.btn.txt.red:focus,
.btn.txt.red.focus {
	color:#c62828;
}

/* BLUE */
.btn.blue {
	background:#0288D1;
  color:#fff;
}

.btn.txt.blue {
	color:#0288D1;	
}

.btn.blue:hover,
.btn.blue:active,
.btn.blue:focus,
.btn.blue.focus {
	color:#fff;
}

.btn.txt.blue:hover,
.btn.txt.blue:active,
.btn.txt.blue:focus,
.btn.txt.blue.focus {
	color:#0288D1;
}

/* GREEN */
.btn.green {
	background:#388E3C;
	color:#fff;
}

.btn.green:hover,
.btn.green:active,
.btn.green:focus,
.btn.green.focus {
	color:#fff;
}

.btn.txt.green {
	color:#388E3C;
}

.btn.txt.green:hover,
.btn.txt.green:active,
.btn.txt.green:focus,
.btn.txt.green.focus {
	color:#2E7D32;
}

/* YELLOW */
.btn.yellow {
	background:#FFD600;
	color:#33303d;
}

.btn.yellow:hover,
.btn.yellow:active,
.btn.yellow:focus,
.btn.yellow.focus {
	color:#33303d;
}

.btn.txt.yellow {
	color:#FFD600;
}

.btn.txt.yellow:hover,
.btn.txt.yellow:active,
.btn.txt.yellow:focus,
.btn.txt.yellow.focus {
	color:#FFD600;
}

/* WHITE */

.btn.white {
	background:#fff;
	color:#33303d;
}

.btn.white:hover,
.btn.white:active,
.btn.white:focus,
.btn.white.focus {
	color:#33303d;
}

.btn.white:before {
  background-color: rgba(128, 128, 128, .1);  
}

/* GREY */
.btn.grey {
	background:#EEEEEE; 
	color:#33303d;
}

.btn.grey:hover,
.btn.grey:active,
.btn.grey:focus,
.btn.grey.focus {
	background:#EEEEEE; 
	color:#33303d;
}

.btn.txt.grey {
	color:#EEEEEE;
}

.btn.txt.grey:hover,
.btn.txt.grey:active,
.btn.txt.grey:focus,
.btn.txt.grey.focus {
	color:#EEEEEE;
}

.btn.grey:before {
  background-color: rgba(128, 128, 128, .2);  
}

/* DARK GREY */

.btn.dark-grey {
	background:#ccc; 
	color:#33303d;
}

.btn.dark-grey:hover,
.btn.dark-grey:active,
.btn.dark-grey:focus,
.btn.dark-grey.focus {
	background:#ccc; 
	color:#000;
}

.btn.dark-grey:before {
  background-color: rgba(128, 128, 128, .3);  
}

.btn.trans {
	background:transparent; 
	color:#33303d;
}

/* BLACK */
.btn.black {
	background:#000; 
	color:#fff;
}

.btn.black:hover,
.btn.black:active,
.btn.black:focus,
.btn.black.focus {
	background:#000; 
	color:#fff;
}

.btn.black:before {
  background-color: rgba(128, 128, 128, .2);  
}

/* TRANS */
.btn.trans:hover,
.btn.trans:active,
.btn.trans:focus,
.btn.trans.focus {
	background:transparent; 
	color:#000;
}

.btn.trans:before {
  background-color: rgba(128, 128, 128, .3);  
}

.btn.trans.red {
	color:#c62828;	
}

.btn.trans.blue {
	color:#1976D2;	
}

.btn.trans.green {
	color:#2E7D32;	
}

.input-xs, 
.form-group-xs .form-control {
  padding:3px 5px;
  height:20px;
}

.form-control,
.form-group-lg .form-control {
  border-radius:0px;
}

.breadcrumb {
	background:none;
	margin:0;
	padding:0;
}

.breadcrumb ol {
	list-style:none;
	padding:0;
	margin:0 0 5px 0;
	white-space:nowrap;
	overflow:hidden;
	max-width:100%;
}

.breadcrumb ol li {
	display:inline-block;
	font-size:1.1rem	;
}

.breadcrumb ol li:after {
	content:"›";
}

.breadcrumb ol li:last-child:after {
	content:"";
}

.appMessageNotificationCounter {
	position:absolute;
	border-radius:50%;
	background:#f00;
	display:block;
	height:18px;
	min-width:18px;
	line-height:1.1;
	top:3px;
	right:-4px;
	padding:2px;
	z-index:1;
	border:1px solid rgba(255,255,255,0.5);
}

.appMessageNotificationCounter strong {
	font-size:1.1rem;
	text-align:center;
	position:relative;
	color:#fff;
	display:block;
	text-shadow:none;
}

.navbar {
  min-height:0;
  margin:0;
  border-radius:0;
}

.form-control {
	box-shadow:none;
  border:1px solid #eee;
  height:32px;
}

.form-control.input-sm {
	height:30px;
}

.input-group-addon {
	border:1px solid #ccc;
}

.form-control:focus {
  box-shadow:none;
  border:1px solid #ccc;
}

.form-horizontal .has-feedback .forgot-link {
	top:2px;
	color:#888;
	font-size:24px !important;
	display:block;
	pointer-events:auto;
}

footer ul.bottom-nav {
	list-style:none;
	margin:0;
	padding:0;
	text-align:center;
}

footer ul.bottom-nav > li {
	display:inline-block;
	padding:0 5px;
	color:#fff;
	font-size:1rem;
	line-height:30px;
}

footer ul.bottom-nav > li > a {
	color:#fff;
	font-size:1rem;
	line-height:30px;	
}

footer ul.bottom-nav > li.dropup ul {
	display:none
}

footer ul.bottom-nav > li + li {
	margin-left:15px;
}

form {
	margin:0;
}

.navbar-form {
	padding:0;
	margin:5px;
	box-shadow:none;
}

.navbar-form button {
	color:#000;
	height:26px;
	font-size:14px;
	line-height:14px;
	background:#fff;
	border-top-right-radius: 3px;
	border-bottom-right-radius: 3px;
}

.navbar-form button::before {
	display:none;
}

.navbar-form button:hover,
.navbar-form button:focus,
.navbar-form button:active {
	color:#000;
	background:#D3D2D8;
}

.navbar-form input,
.navbar-form input:hover,
.navbar-form input:focus,
.navbar-form input:active {
	border:none !important;
	height:26px !important;
	font-size:1.2rem;
	line-height:26px;
	padding:6px;
	min-width:220px;
	border-top-left-radius: 3px;
	border-bottom-left-radius: 3px;
	background:rgba(255,255,255,0.8);  
	-webkit-transition: background 100ms ease-in-out;
  -moz-transition: background 100ms ease-in-out;
  transition: background 100ms ease-in-out;
}

.navbar-form input:hover,
.navbar-form input:focus,
.navbar-form input:active {
	background:rgba(255,255,255,0.9);
}

/***************/
/* DATE PICKER */
/***************/

.datepicker {
  top: 0;
  left: 0;
  padding: 4px;
  margin-top: 1px;
  -webkit-border-radius: 4px;
  	 -moz-border-radius: 4px;
  				border-radius: 4px;
	z-index:1151 !important;
}

.datepicker:before {
  content: '';
  display: inline-block;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 7px solid #ccc;
  border-bottom-color: rgba(0, 0, 0, 0.2);
  position: absolute;
  top: -7px;
  left: 8px;
}
.datepicker:after {
  content: '';
  display: inline-block;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #ffffff;
  position: absolute;
  top: -6px;
  left: 9px;
}
.datepicker > div {
  display: none;
}
.datepicker table {
  width: 100%;
  margin: 0;
}
.datepicker td,
.datepicker th {
  text-align: center;
  width: 20px;
  height: 20px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
.datepicker td.day:hover {
  background: #eeeeee;
  cursor: pointer;
}
.datepicker td.day.disabled {
  color: #eeeeee;
}
.datepicker td.old,
.datepicker td.new {
  color: #999999;
}
.datepicker td.active,
.datepicker td.active:hover {
  color: #ffffff;
  background-color: #5F5B6A;
}
.datepicker td.active:hover,
.datepicker td.active:hover:hover,
.datepicker td.active:focus,
.datepicker td.active:hover:focus,
.datepicker td.active:active,
.datepicker td.active:hover:active,
.datepicker td.active.active,
.datepicker td.active:hover.active,
.datepicker td.active.disabled,
.datepicker td.active:hover.disabled,
.datepicker td.active[disabled],
.datepicker td.active:hover[disabled] {
  color: #ffffff;
  background-color: #5F5B6A;
}
.datepicker td.active:active,
.datepicker td.active:hover:active,
.datepicker td.active.active,
.datepicker td.active:hover.active {
  background-color: #003399 \9;
}

.datepicker th.switch {
  width: 145px;
}
.datepicker th.next,
.datepicker th.prev {
  font-size: 21px;
}
.datepicker thead tr:first-child th {
  cursor: pointer;
}
.datepicker thead tr:first-child th:hover {
  background: #eeeeee;
}

/********************/
/** NOTIFICATIONS   */
/********************/

#notificationListZone {
	min-width:400px;
	max-height:300px;
	overflow:auto;
	padding:0 0 5px;
	list-style:none;
}

@media (max-width:767px) {
	#notificationWrapper {
		position:fixed;
		left:5px;
		right:5px;
		bottom:40px;
		max-height:calc(100vh - 40px);
	}

	#notificationListZone {
		padding-right:5px;
		min-width:0;
	}
}

.noNotificationMessage {
	text-align:center;
	font-size:1.4rem;
	background:#D3D2D8;
	margin:10px 10px 5px;
}

#appNotificationsLoadMoreBttn {
	display:none;
	margin:0 4px;
	width:calc(100% - 8px);
}


#notificationListZone li {
	padding:0 5px;
	margin-bottom:5px;
	max-height:65px;
	overflow:hidden;
	position:relative;
}

#notificationListZone li:last-child {
	margin-bottom:0;
}

#notificationListZone li:after {
	content:"";
	display:block;
	clear:both;
}

#notificationListZone img.notificationImg {
	max-width:55px;
	width:100%;
	position:absolute;
	top:0;
	left:5px;
	height:auto;

}

#notificationListZone > li > a.lnkNotification {
	display:block;
	clear:none;
	white-space:normal;
	margin-left:55px;
	height:55px;
	font-weight:300;
	padding:5px;
}

@media (max-width:767px) {
	#notificationListZone > li > a.lnkNotification {
		padding-top:0;
	}
}

#notificationListZone li.unread > a.lnkNotification {
	background:#f1f0f7;
}

#notificationListZone li > a.lnkNotification:hover,
#notificationListZone li > a.lnkNotification:focus,
#notificationListZone li > a.lnkNotification:active {
	background:#d3d2d8 !important;
	color:#333 !important;
	text-decoration:none;
}

#notificationListZone > li > a.lnkNotification > time {
	color:#444;
	font-size:10px;
}

.contentContainer {
  background:#fff;
  border:1px solid #bbb;
  border-radius:4px;
  margin-bottom:10px;
  padding:5px;
}

@media (min-width:768px) {
	.contentContainer {
  	padding:15px !important;
  }
}

.form-buttons {
	text-align:right;
	border-top:0;
}

.form-buttons.left {
	text-align:left;
}

.has-feedback-left {
	position:relative;
}

.has-feedback-left .form-control {
	padding-left:27px;
}

.has-feedback-left .form-control.time-control {
	padding-left:10px;
	display:inline-block;
	width:100px;
}

.has-feedback-left .form-control.time-control + span {
	font-size:12px;
	padding-left:2px;
}

.has-feedback-left .form-control-feedback {
  left: 0px;
  color: #ccc;
  line-height: 34px;
  font-size: 14px;
}

.form-horizontal .has-feedback-left .form-control-feedback {
	left:5px;
	color:#ccc;
	line-height:30px;
	font-size:14px;
}

.form-horizontal .checkbox, 
.form-horizontal .checkbox-inline, 
.form-horizontal .radio, 
.form-horizontal .radio-inline {
	padding-top:4px;
}

.form-horizontal .form-group-lg .control-label {
	font-size:18px;
	padding-top:10px;
	font-weight:normal;
}

.form-control.hasError,
.form-control.hasError:focus,
.wysibb .wysibb-text.active.hasError {
	border:1px solid #d00;
}

.navbar .form-control:focus {
  box-shadow:none;
  border:1px solid transparent;
}

.navbar .dropdown-menu .divider {
  margin:5px 0;
}

.dropdown-user > a > i {
	display:none;
}

.navbar-nav {
  margin: 0 -15px;
}

@media (max-width:767px) { 
	.navbar-form input, .navbar-form input:hover, .navbar-form input:focus, .navbar-form input:active {
		min-width:0;
	}

	.dropdown-user > a > i {
		display:inline;
	}

	.dropdown-user .caret {
		display:none;
	}

	.navbar-nav .open .dropdown-menu {
		position:absolute;
		bottom:100%;
		left:0;
		right:auto;
		background:#fff;
		box-shadow:0 -3px 3px rgba(0, 0, 0, 0.1)
	}

	.navbar  .dropdown-user .dropdown-menu.dropdown-menu-right {
		left:auto;
		right:0;
	}

	.navbar .nav > li > a.dropdown-toggle, 
	.navbar-nav > li > a, 
	.navbar-nav > li > span {
		margin:0;
		white-space: nowrap;
	}

	.navbar-nav > li > a:focus,
	.navbar-nav > li > a:active {
		background:none;
	}
	
	footer .navbar .nav {
		margin:0;
	}

	.navbar-nav .open .dropdown-menu > li > a,
	.navbar-nav .open .dropdown-menu .dropdown-header {
		padding:3px 20px 3px 6px;
	}
}


footer {
	padding-top:15px;
	padding-bottom:15px;
}

@media (max-width:767px) {
	.navbar-nav .open .dropdown-menu {
		position:static;
	}
}

#content {
	padding-top:15px;
}

.dropdown-menu {
	font-size:1.6rem;
}

#urlRewriteBefore {
	font-size:1.6rem;
	padding-right:0;
	border:1px solid #ccc;
	border:none;
}

.input-group-addon + #urlRewrite {
	padding-left:2px;
}

#uploadFileBttn {
	position:absolute;
	top:0;
	left:0;
	right:0;
	bottom:0;
	line-height:150px;
	font-size:1.6rem;
}


.image-thumb .btn {
	border:none;
	font-size:12px;
	text-shadow:none;
}

.image-thumb .btn:hover,
.image-thumb .btn:active,
.image-thumb .btn:focus {
	background:#fff;
	border:none;

}

.form-control {
	font-size:1.6rem;
	border:1px solid #ccc;
}

.form-control:focus,
.form-control:active {
	border:1px solid #000;
}

.select2-container--bootstrap .select2-selection--single {
	height:32px !important;
}

div.dropdown > button.btn.dropdown-toggle {
	display:block;
}

div.dataTables_wrapper div.dataTables_filter {
	text-align:left;
}

table.dataTable.table-condensed>thead>tr>th {
	padding-right:5px;
}

#artworksList_wrapper {
	position:relative;
}
div.dataTables_wrapper div.dataTables_processing {
	top:150px;
	border:1px solid #000;
}

.highlight {
	background:#ffff66;
}

.sortable-ghost {
	visibility:hidden;
}

textarea { resize:vertical;}

.dropdown:not(.dropup) .dropdown-menu {
	border:1px solid rgba(0,0,0,.15);
	
}

.redactor_editor, 
.redactor_editor:focus {
	box-shadow:none;
	border-radius:0;
}

@media (min-width:768px) {
	.navbar-nav {
		margin-left:-15px;
	}
}

h1.form-title {
	color:#37474F;
	font-size:3.4rem;
	padding:10px 0px;
	margin:0 0 20px 0;
	border-bottom:1px solid #37474F;
}

h1.form-title > .fa {
	position:relative;
  text-align: center;
  width: 1.28571em;
}

.tab-content > .tab-pane {
  padding-top:10px;
}

td i.handle {
	display:inline-block;
	width:15px;
	text-align:center;
	margin-right:5px;
	cursor:pointer;
}

td i.handle:hover,
td i.handle:focus,
td i.handle:active {
	color:#f00;
}

@media (min-width: 768px) {
	.dl-horizontal dt {
		width:250px;
	}

	.dl-horizontal dd {
		margin-left:270px;
	}
}
