/**
 * Typography
 * basic definitions + import font styles
 */

/* import text font: Roboto */
@import url('Fonts/roboto-v18-latin/font.css');
/*@import url('~/Skins/Fonts/roboto-v18-latin/font.css');*/

/* import icon font: Icomoon */
@import url('Fonts/icomoon/style.css');
/*@import url('~/Skins/Fonts/icomoon/style.css');*/

/* import icon font: Extensions */
@import url('Fonts/files-extensions/style.css');
/*@import url('~/Skins/Fonts/extensions/style.css');*/

/*
html,
form, 
td, 
th, 
div, 
*/
* {
	font-family: inherit;
	/* font antialiasing */
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}


/**
 * General
 */

html,
body,
form {
	height: 100%;
	margin: 0;
	padding: 0;
	overflow: hidden;
}

body {
	background: #EFF3F6;
	/* default font for default skin */
	font-family: Roboto, Arial, sans-serif;
	/* ref size for rem calculations */
	font-size: 1rem;
}


/**
 * Kill outline efect in chrome
 * outline: -webkit-focus-ring-color auto 5px;
 */

:focus {
	outline: none;
}

/**
 * Tools
 */
.shim {
	font-size: 1%;
	clear: both;
}

.OverFlowClass {
	overflow: visible !important;
}

/**/


.ItemFileDocLink a,
.ItemFileDocLink a,
.ItemFileDocLink a:link,
.ItemFileDocLink a:visited,
.ItemFileDocLink a:active {
	/*font-size: .6rem;*/
	color: #F6895D;
	color: var(--main-color, #F6895D);
	font-weight: 400;
	text-decoration: none;
}

	.ItemFileDocLink a:hover {
		color: #CC6440 !important;
		color: var(--main-color-hover,#CC6440) !important;
	}

.FileDocLink,
a.FileDocLink {
	font-weight: 400;
	color: #F6895D;
	color: var(--main-color, #F6895D);
}

	a.FileDocLink:link,
	a.FileDocLink:visited,
	a.FileDocLink:active {
		color: #F6895D;
		color: var(--main-color, #F6895D);
		text-decoration: none;
	}

	a.FileDocLink:hover {
		color: #CC6440 !important;
		color: var(--main-color-hover,#CC6440) !important;
	}

	.Strike,
	a.FileDocLink.Strike {
		text-decoration: line-through !important;
	}

	a.FileDocLink.Normal {
		font-weight: normal;
	}


.FileDocNote {
	font-style: italic;
	color: #A1AAB6;
	font-size: 0.8rem;
	clear: both;
}

	.FileDocNote .FileDocLink {
		color: inherit !important;
	}

.ToolbarLink,
a.ToolbarLink,
a.ToolbarLink:link,
a.ToolbarLink:visited,
a.ToolbarLink:active,
a.ToolbarLink:hover {
	font-size: 1rem;
	color: #F6895D;
	color: var(--main-color, #F6895D);
	text-decoration: none;
}

	a.ToolbarLink:hover {
		color: #CC6440;
		color: var(--main-color-hover,#CC6440);
	}

.ToolbarLink {
	padding-left: 10px;
	padding-right: 20px;
}



/**
 * Toolbar 
 */

.fd-toolbar-right,
.fd-align-right {
	float: right;
	font-size: .8rem;
}

.fd-align-center {
	padding-top: 10px;
	padding-bottom: 10px;
	padding-left: 50%;
}

/**
 * Toolbar link button
 * .fd-link-button show only text
 * .is-highlight ads the highlight color (default: filedoc orange)
 */
.fd-link-button {
	width: 100%;
	box-sizing: border-box;
	padding: .4rem .8rem;
	text-align: center;
	text-transform: capitalize;
	text-decoration: none;
	font-size: .9rem;
	font-weight: 500;
	border-radius: .2rem;
	text-align: center;
	transition: background-color 300ms;
}

.fd-link-button {
	color: #3F424F;
	background-color: #fff;
}

	.fd-link-button:hover,
	.fd-link-button:focus {
		background-color: #EFF3F6;
		/*border: 1px solid #EFF3F6;*/
	}

	.fd-link-button.is-highlight {
		color: #fff;
		color: var(--menu-text-color, #fff);
		background-color: #F6895D;
		background-color: var(--main-color, #F6895D);
		border: 1px solid transparent;
	}

		.fd-link-button.is-highlight:hover,
		.fd-link-button.is-highlight:focus {
			background-color: #CC6440;
			background-color: var(--main-color-hover, #CC6440);
		}

	.fd-link-button.is-clean-highlight {
		color: #F6895D;
		color: var(--main-color, #F6895D);
		border: 1px solid;
		border-color: #F6895D;
		border-color: var(--main-color, #F6895D);
	}

		.fd-link-button.is-clean-highlight:hover,
		.fd-link-button.is-clean-highlight:focus {
			border: 1px solid;
			border-color: #F6895D;
			border-color: var(--main-color, #F6895D);
		}


.fd-icon-button,
.fd-file-extension-button {
	text-indent: -9000px;
	position: relative;
	display: inline-block;
	width: 2.2rem;
	height: 2rem;
	vertical-align: middle;
	text-align: center;
	font-size: 2rem;
	font-weight: 500;
	color: #7A8DA0;
}

/*IE Outline*/
.fd-icon-button,
.fd-file-extension-button,
.fd-form-overlay-button,
.fd-form-overlay-button-combo,
.fd-form-side-button,
.masterpage-search {
	text-decoration: none;
	outline: none;
}

.fd-file-extension-button {
	width: 2rem !important;
	height: 1.5rem !important;
	font-size: 1.5rem !important;
}

	.fd-icon-button:before,
	.fd-file-extension-button:before {
		position: absolute;
		left: 0;
		top: 0;
		width: 2.2rem;
		text-indent: 0;
	}

	.fd-icon-button:hover,
	.fd-icon-button:focus,
	.fd-file-extension-button:hover,
	.fd-file-extension-button:focus {
		color: #43525E;
	}

	.fd-icon-button.is-highlight,
	.fd-file-extension-button.is-highlight {
		color: #F6895D;
		color: var(--main-color, #F6895D);
	}

		.fd-icon-button.is-highlight:hover,
		.fd-icon-button.is-highlight:focus,
		.fd-file-extension-button.is-highlight:hover,
		.fd-file-extension-button.is-highlight:focus {
			color: #CC6440;
			color: var(--main-color-hover, #CC6440);
		}

	.fd-icon-button.grid,
	.fd-file-extension-button.grid {
		width: 1.7rem;
		height: 1.5rem;
		font-size: 1.5rem;
	}

		.fd-icon-button.grid:before,
		.fd-file-extension-button.grid:before {
			width: 1.7rem;
		}


.rgSortAscIcon, .rgSortDescIcon {
	color: #888;
}

/**
 * Form Overlay Button
 * .fd-form-overlay-button Overlays the form element to the left
 * .icon-* ads the icon (Skins/Fonts/icomoon/demo.html)
 */
.fd-form-overlay-button,
.fd-form-overlay-button-combo {
	text-indent: -9000px;
	position: relative;
	display: inline-block;
	width: 2.2rem;
	height: 2rem;
	vertical-align: middle;
	text-align: center;
	line-height: 2.2rem;
	font-size: 1.4rem;
	font-weight: 700;
	/*margin-left: -2.4rem;*/
	margin-left: -35px;
}

.fd-form-overlay-button-combo {
	display: inline;
	margin-left: -3.1rem !important;
	bottom: 4px;
	/*margin-left: -42px !important;*/
}

	.fd-form-overlay-button:before, .fd-form-overlay-button-combo:before {
		position: absolute;
		left: 0;
		top: 0;
		width: 2.2rem;
		text-indent: 0;
	}

.fd-form-overlay-button, .fd-form-overlay-button-combo {
	color: #A1AAB6;
}

	.fd-form-overlay-button:hover,
	.fd-form-overlay-button:focus,
	.fd-form-overlay-button-combo:hover,
	.fd-form-overlay-button-combo:focus {
		color: #7A8DA0;
	}

	.fd-form-overlay-button.is-highlight {
		color: #F6895D;
		color: var(--main-color, #F6895D);
	}

		.fd-form-overlay-button.is-highlight:hover,
		.fd-form-overlay-button.is-highlight:focus {
			color: #CC6440;
			color: var(--main-color-hover, #CC6440);
		}




/**
 * Form Side Button
 * .fd-form-overlay-button Overlays the form element to the left
 * .icon-* ads the icon (Skins/Fonts/icomoon/demo.html)
 */

.fd-form-side-button {
	text-indent: -9000px;
	position: relative;
	display: inline-block;
	width: 2.2rem;
	height: 2rem;
	vertical-align: middle;
	text-align: center;
	line-height: 2.2rem;
	font-size: 2rem;
	font-weight: 500;
}

	.fd-form-side-button:before {
		position: absolute;
		left: 0;
		top: 0;
		width: 2.2rem;
		text-indent: 0;
	}

.fd-form-side-button {
	color: #A1AAB6;
}

	.fd-form-side-button:hover,
	.fd-form-side-button:focus {
		color: #7A8DA0;
	}

	.fd-form-side-button.is-highlight {
		color: #F6895D;
		color: var(--main-color, #F6895D);
	}

		.fd-form-side-button.is-highlight:hover,
		.fd-form-side-button.is-highlight:focus {
			color: #CC6440;
			color: var(--main-color-hover, #CC6440);
		}


/**
 * Misc
 */


.radNumericBox {
	color: #000;
	;
	border-color: #808080;
}

input.btnSearch {
	float: left;
	border: none;
	border: solid 0 #fff;
}



/**
 * Login
 */

.LabelUserLogin {
	color: #4e9dd0;
	font-weight: bold;
	font-size: 12px;
}

.LabelSectionTitle {
	font-weight: bold;
	color: #000;
}

.UserLogin {
	color: #4d4d4d;
	font-weight: bold;
	font-size: 12px;
}



/**
 * Captcha
 */

.RadCaptcha_SpamProtectorPanel > img {
	width: 100% !important;
	height: auto !important;
}

.rcCaptchaAudioLink {
	float: right;
}

.RadCaptcha_Default input.control {
}



/**
 * Login elements
 */

.filedoc-css-logo {
	width: 175px;
	height: 65px;
	position: absolute;
	top: 20px;
	left: 46px;
	display: block;
	z-index: 100;
	background: transparent url('/Images/Skins/Default/Login/filedoc-logo-login2019.png') no-repeat center center;
}

.filedoc-login-background {
	background-color: #EFF3F6;
}

	.filedoc-login-background::before {
		content: '';
		display: block;
		z-index: 1;
		padding: 0;
		margin: 0;
		position: absolute;
		left: 0;
		right: 0;
		width: 100%;
		height: 50%;
		background-image: url('/Images/Skins/Default/Login/filedoc-background-book.jpg');
		background-color: #313942;
		background-position: 50% 100%;
		background-size: cover;
	}



/**
 * Login Box
 */

.filedoc-login-box {
	position: absolute; /* can be fixed too */
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	width: 470px;
	height: 640px;
	max-width: 100%;
	max-height: 84%;
	z-index: 101;
	color: #4F5467;
}

.filedoc-login-form {
	box-sizing: border-box;
	padding: 40px 50px 30px;
	width: 100%;
	background: #fff;
	-webkit-box-shadow: 0 2px 10px rgba(0,0,0,.3);
	box-shadow: 0 2px 10px rgba(0,0,0,.3);
	/*this to solve "the content will not be cut when the window is smaller than the content": */
	max-width: 100%;
	max-height: 100%;
	overflow: auto;
}

.filedoc-login-box h1 {
	font-size: 2rem;
	font-weight: 300;
	text-align: center;
	color: #F6895D;
	color: var(--main-color, #F6895D);
	margin: 0.8rem 0 0.8rem;
}

.filedoc-login-client-logo {
	border-bottom: 1px solid #A1AAB6;
	padding-bottom: 20px;
	text-align: center;
}

	.filedoc-login-client-logo img {
		border: none;
	}

.filedoc-login-version {
	text-align: center;
	text-transform: uppercase;
	font-size: .7rem;
	color: #4F5467;
	margin: 0.5rem auto;
}

table.filedoc-login-table,
table.filedoc-login-table tr,
table.filedoc-login-table td {
	width: 100%;
	padding: 0;
	margin: 0;
}

	table.filedoc-login-table td {
		padding-bottom: 10px;
	}

.col-button {
	text-align: center;
}

	.col-button .button {
		max-width: 80%;
		font-size: 1.2rem;
	}


/**
 * Main Footer
 * !Hidden @20180620
 */

.filedoc-footer {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	display: block;
	width: 100%;
	background: #313942;
	box-sizing: border-box;
	padding: .5rem 1rem;
	display: none !important;
}

	.filedoc-footer span {
		color: #D6DDE4;
		font-size: .7rem;
		color: #D6DDE4;
		text-decoration: none;
		transition: color 300ms
	}

.filedoc-footer-company-label {
	float: left;
}

.filedoc-footer-copyright-label {
	float: right;
}



/**
 * Tools
 */

/*
.mobile-hide-background
.pad-hide-background {
	background: none !important;
}
*/

.is-menu,
.is-menu li {
	margin: 0;
	padding: 0;
}

	.is-menu li {
		display: inline-block;
	}



/**
 * Header Bar
 */

.filedoc-header {
	height: 41px;
	background: #313942;
}

.filedoc-logo {
	content: "";
	display: block;
	min-width: 91px;
	min-height: 19px;
	border: none;
	left: 10px;
	top: 11px;
	position: absolute;
}

.filedoc-header-right {
	float: right;
	height: 41px;
}

.filedoc-username {
	display: inline-block;
	height: 41px;
	line-height: 41px;
	color: #fff;
	font-size: .9rem;
	margin-right: 20px;
	font-weight: 400;
	float: left;
}

	.filedoc-username .FileDocLink,
	.filedoc-username a.FileDocLink {
		color: var(--menu-text-color, #F6895D);
	}

		.filedoc-username a.FileDocLink:link,
		.filedoc-username a.FileDocLink:visited,
		.filedoc-username a.FileDocLink:active {
			color: var(--menu-text-color, #F6895D);
		}

		.filedoc-username a.FileDocLink:hover {
			color: var(--menu-text-color,#CC6440) !important;
		}

/**
 * Notifications Menu
 */
.filedoc-notifications {
	float: left;
	margin-right: 20px;
	height: 41px;
}

	.filedoc-notifications li {
		height: 41px;
		line-height: 41px;
		display: inline-block;
	}

a.notification-box {
	display: block;
	height: 41px;
	width: 41px;
	line-height: 45px;
	border: none;
	position: relative;
	text-decoration: none;
	font-size: 1.7rem;
	color: #fff;
	transition: color 300ms;
}

	a.notification-box:link,
	a.notification-box:visited,
	a.notification-box:active {
		color: #7A8DA0;
	}

	a.notification-box:hover,
	a.notification-box:focus {
		color: #fff;
	}

	a.notification-box > i {
		position: absolute;
		font-family: Roboto, Arial, Verdana, sans-serif !important;
		background-color: #ccc;
		font-size: .6rem;
		font-weight: 500;
		height: 1.2rem;
		border-radius: .7rem;
		text-align: center;
		line-height: 1.3rem;
		box-sizing: border-box;
		padding: 0 .3rem;
		top: 5px;
		right: 2px;
		color: #fff;
		font-style: normal;
		text-shadow: 0 1px 1px rgba(0,0,0,.3);
	}

a.notification-docs > i,
a.notification-procs > i {
	color: var(--menu-text-color, #fff);
	background-color: #F8A543;
	background-color: var(--main-color, #F8A543);
}

a.notification-alerts > i {
	background-color: #FF4C79;
}

a.notification-tasks > i {
	background-color: #3DB8DB;
}


/**
 * Dashboard
 */

.fd-dashboard-content,
.fd-dashboard {
	padding: 0;
}

.fd-dashboard-content {
	width: 100%;
	background: #EFF3F6 !important;
}

.fd-dashboard-tables-wrapper {
	padding: 0 5px;
}

.fd-dashboard-title {
	height: 25px;
	line-height: 25px;
	text-decoration: none;
	color: #7A8DA0;
	border: none;
	padding-top: 5px;
}

	h1.fd-panel-header-title,
	.fd-dashboard-title h2 {
		font-family: Roboto, Arial, sans-serif;
		font-weight: 500;
		font-size: .9rem;
		line-height: 25px;
		color: #3F424F;
		margin: 0;
		padding-left: 7px;
		display: inline-block;
		float: left;
	}

h1.fd-panel-header-title {
	font-size: 1rem;
	padding-right: 5px;
	line-height: 35px;
}

.fd-dashboard-title .fd-align-right {
	margin-top: -4px;
}

.fd-dashboard-cell {
	width: 50%;
	float: left;
}



/**
 * Dashboard Dockzones
 */

.RadDock_filedocZone.fd-dashboard-dockzone {
	padding: 5px;
	border: none;
}

/*
.RadDock_filedocZone.fd-dashboard-dockzone-left {
	padding-left: 0;
}
*/
.RadDock_filedocZone.fd-dashboard-dockzone-right {
	/*padding-right: 0;*/
	margin-top: -3px;
}


.RadDock_filedocPane {
	position: inherit !important;
	background: #fff !important;
	border: none;
}

.fd-dashboard-modules-grid {
	padding: 5px;
}

/**
 * Dash graph
 */
.fd-dash-wrapper {
	position: relative;
}

	.fd-dash-wrapper .rdTitleBar {
		position: relative;
		z-index: 100;
	}

.fd-dash-graph-dropbox {
	position: absolute;
	right: 10px;
	top: 8px;
	z-index: 100;
}

	.fd-toolbar-right .RadComboBox .rcbInner,
	.fd-dash-graph-dropbox .RadComboBox .rcbInner {
		background-color: #fff;
		border-color: #fff;
		padding-right: 1.4rem;
	}


	.fd-dash-graph-dropbox .RadComboBox_Default .rcbInput {
		text-align: right;
	}

.fd-dash-graph {
	min-height: 462px;
}





/**
 * Dashinfo Menu
 */

/**
 * Stats bar
 */

.filedoc-header-dashinfo {
	background: #fff;
	height: 91px;
	margin-bottom: 3px;
	/*-webkit-box-shadow: 0 1px 1px rgba(0,0,0,.3);
	box-shadow: 0 1px 1px rgba(0,0,0,.3);*/
}

ul.filedoc-dashinfo {
	position: relative;
	margin: 0;
	padding: 0;
	display: block;
	height: 91px;
}

	ul.filedoc-dashinfo li.dashinfo-box {
		position: relative;
		display: block;
		margin: 0;
		padding: 0;
		height: 61px;
		float: left;
		vertical-align: top;
		text-align: center;
		font-weight: 300;
		line-height: 30px;
		font-size: 1.9rem;
		color: #7A8DA0;
		vertical-align: top;
		line-height: 30px;
		font-size: .8rem;
		color: #A1AAB6;
		text-align: center;
	}

		ul.filedoc-dashinfo li.dashinfo-box div.dashinfo-content {
			display: block;
			height: 91px;
			padding: 0;
			margin: 0;
			-webkit-transition: background-color 400ms;
			-o-transition: background-color 400ms;
			transition: background-color 400ms;
			text-decoration: none;
			font-family: Roboto, Arial, sans-serif;
			font-size: .8rem;
			color: #A1AAB6;
			font-weight: 400;
		}

		ul.filedoc-dashinfo li.dashinfo-box > a:hover,
		ul.filedoc-dashinfo li.dashinfo-box > a:focus {
			background-color: #F7F8F9;
		}

	ul.filedoc-dashinfo .dashinfo-block {
		display: inline-block;
		height: 51px;
		padding: 15px 20px 0;
		text-align: center;
		margin: 15px 0;
	}

	ul.filedoc-dashinfo i.icon {
		position: absolute;
		width: 50px;
		height: 50px;
		top: 20px;
		overflow: hidden;
		margin-left: -50px;
		content: "";
		border-radius: 100%;
		background-color: #F8A543;
		background-color: var(--main-color, #F8A543);
		display: inline-block;
		color: #fff;
		float: left;
		line-height: 50px;
		font-family: 'icomoon' !important;
		text-align: center;
		font-size: 1.8rem;
		font-weight: 400;
	}

	ul.filedoc-dashinfo a.fd-counter {
		font-size: 1.8rem;
		display: block;
		font-style: normal;
		font-weight: 300;
		color: #7A8DA0;
		line-height: 50%;
		text-decoration: none;
	}

	ul.filedoc-dashinfo li.dashinfo-docs div.dashinfo-content,
	ul.filedoc-dashinfo li.dashinfo-procs div.dashinfo-content {
		padding-left: 60px;
	}

	ul.filedoc-dashinfo li.dashinfo-alerts div.dashinfo-content,
	ul.filedoc-dashinfo li.dashinfo-tasks div.dashinfo-content {
		padding-left: 60px;
	}

	ul.filedoc-dashinfo .dashinfo-docs i.icon,
	ul.filedoc-dashinfo .dashinfo-procs i.icon {
		background-color: #F8A543;
		background-color: var(--main-color, #F8A543);
		color: var(--menu-text-color, #fff);
	}

	ul.filedoc-dashinfo .dashinfo-alerts i.icon {
		background-color: #FF4C79;
	}

	ul.filedoc-dashinfo .dashinfo-tasks i.icon {
		background-color: #3DB8DB;
	}

	ul.filedoc-dashinfo .dashinfo-docs-total,
	ul.filedoc-dashinfo .dashinfo-procs-total {
		border-right: 1px solid #D8DFE5;
	}

	ul.filedoc-dashinfo .dashinfo-docs-expired a.fd-counter,
	ul.filedoc-dashinfo .dashinfo-procs-expired a.fd-counter {
		color: #F6895D;
		color: var(--main-color, #F6895D);
	}

	ul.filedoc-dashinfo .dashinfo-docs-to-reply a.fd-counter,
	ul.filedoc-dashinfo .dashinfo-procs-to-reply a.fd-counter {
		color: #F8A543;
		color: var(--main-color, #F8A543);
	}

	ul.filedoc-dashinfo .dashinfo-docs-expired,
	ul.filedoc-dashinfo .dashinfo-procs-expired,
	ul.filedoc-dashinfo .dashinfo-alerts-total {
		border-right: 1px solid #A1AAB6;
	}

	ul.filedoc-dashinfo .dashinfo-alerts-total {
		padding-right: 30px;
	}

	ul.filedoc-dashinfo .dashinfo-tasks-total {
		padding-right: 40px;
	}

	ul.filedoc-dashinfo .dashinfo-docs-expired a.fd-counter,
	ul.filedoc-dashinfo .dashinfo-procs-expired a.fd-counter {
		color: #F6895D;
		color: var(--main-color, #F6895D);
	}






/**
 * Radwindow e Modal Windows
 */

body .TelerikModalOverlay {
	background-color: rgb(63, 66, 79) !important;
	opacity: .7 !important;
}

.RadWindow.RadWindow_Default {
	background: #fff;
	border-width: 0 !important;
	-webkit-box-shadow: 0 1px 3px rgba(0,0,0,.5);
	box-shadow: 0 1px 3px rgba(0,0,0,.5);
	padding: 0 30px 20px;
}

	.RadWindow.RadWindow_Default .rwTitleBar,
	.RadWindow.RadWindow_Default .rwTitleWrapper {
		height: 50px;
		width: 100%;
		position: relative;
	}

	.RadWindow.RadWindow_Default .rwIcon {
		position: absolute;
		display: none !important;
	}

	.RadWindow.RadWindow_Default h6.rwTitle {
		display: block;
		width: 100%;
		text-align: center !important;
		color: #6F8294;
		font-weight: 300;
		font-size: 1rem;
		line-height: 30px;
		padding: 15px 0 0;
		margin: 0;
		width: 100%;
	}

	.RadWindow.RadWindow_Default .rwCommands {
		position: absolute;
		right: -18px;
		top: 20px;
	}

		.RadWindow.RadWindow_Default .rwCommands > .rwListItem:first-child {
			/*display: none !important;*/ /* hide maximize button */
		}

	.RadWindow.RadWindow_Default .rwContent {
		border: 0 solid #D8DFE5;
		border-top-width: 1px;
	}

	.RadWindow.RadWindow_Default .fd-rwSeparator,
	.fd-rwSeparator {
		width: 100%;
		float: left;
		margin-top: 25px;
		border: 0 solid #D8DFE5;
		border-top-width: 1px;
	}

	.RadWindow.RadWindow_Default .fd-rwCommands,
	.fd-rwCommands {
		text-align: center;
		clear: both;
		padding-top: 20px;
	}

	.RadWindow.RadWindow_Default .fd-link-button.rw,
	.fd-link-button.rw {
		padding: .4rem 1.8rem;
		margin-right: 10px;
	}


/**
 * Buttons
 */

.button {
	width: 100%;
	color: #fff;
	color: var(--menu-text-color, #fff);
	background-color: #F6895D;
	background-color: var(--main-color, #F6895D);
	box-sizing: border-box;
	padding: .8rem 1.6rem;
	text-align: center;
	text-transform: capitalize;
	transition: background-color 300ms;
	text-decoration: none;
	font-size: .9rem;
	font-weight: 300;
	border-radius: .5rem;
	border-width: 1px;
}

	.button:hover,
	.button:focus {
		background-color: #CC6440;
		background-color: var(--main-color-hover, #CC6440);
	}


/**/

.SubTitle {
	background-color: #efefef;
	border-bottom: solid 1px #c3c3c3;
	border-top: solid 1px #c3c3c3;
	font-size: 11px !important;
	color: #999;
	height: 28px;
	margin-bottom: 20px !important;
	padding: 0 5px 0 5px;
	vertical-align: middle !important;
}

.LabelPesquisa {
	color: #4d4d4d;
	font-size: 11px;
}

.BotaoPesquisar {
	color: #4d4d4d;
	text-decoration: none;
	font-size: 11px;
}

.MenuMain {
	line-height: 23px;
	min-height: 23px;
	vertical-align: middle;
	width: 100%;
	border-collapse: collapse;
	border-spacing: 0;
}

.mainHorizontalMenu {
	list-style: none;
	padding-right: 10px;
}

	.mainHorizontalMenu li {
		float: left;
		padding-left: 15px;
		padding-top: 2px;
		white-space: nowrap;
	}

	.mainHorizontalMenu a {
		display: block;
		padding-left: 23px;
		line-height: 17px;
		background: url('/Images/Skins/Default/Home/TopMenuIconsSprite.png') no-repeat;
	}

	.mainHorizontalMenu #alinkDesktop {
		background-position: 0 0;
	}

	.mainHorizontalMenu #alinkFavorites {
		background-position: 0 -16px;
	}

	.mainHorizontalMenu #alinkConfig {
		background-position: 0 -32px;
	}

	.mainHorizontalMenu #alinkChangePassword {
		background-position: 0 -48px;
	}

	.mainHorizontalMenu #alinkManual {
		background-position: 0 -64px;
	}

	.mainHorizontalMenu #alinkOrganizationRules {
		background-position: 0 -80px;
	}

	.mainHorizontalMenu #alinkLogout {
		background-position: 0 -96px;
	}

.Footer {
	height: 19px;
}

.LabelFooter {
	color: #333;
	font-size: 11px !important;
}



/**
 * Label Toolbar
 */

.LabelToolbar {
	background: #ebf0f4;
	border-top: 1px solid #ccc;
	font-size: 1rem;
	clear: both;
	padding-left: 2px;
	color: #F6895D;
	color: var(--main-color, #F6895D);
}

	.LabelToolbar td {
		white-space: nowrap;
		padding: 0 5px
	}


.ContentBody {
	overflow: hidden;
	background: #fff;
}



.LabelControl {
	/*font-size: 11px;*/
	font-size: 0.8rem;
	color: #000;
}

	.LabelControl input {
		margin: 0 3px 0 0;
		vertical-align: bottom;
	}

	.LabelControl label {
		margin-right: 10px;
	}

.LabelControlReadOnly {
	font-size: .8rem;
	color: #4F5467;
}




/**
 * RadCaptcha_CaptchaImage
 */

img#RadCaptcha_CaptchaImage {
	width: 100% !important;
	height: auto !important;
}

.rcCaptchaAudioLink {
	position: relative;
	top: 10px;
	right: 0;
	text-indent: -9000px;
	display: block;
}

	.rcCaptchaAudioLink::before {
		position: absolute;
		content: "\e944"; /*icon-volumemedium*/
		line-height: 40px;
		color: #F6895D;
		color: var(--main-color, #F6895D);
		text-indent: 0;
		font-size: 2.2rem;
		font-family: icomoon;
		-webkit-transition: all 400ms;
		-o-transition: all 400ms;
		transition: all 400ms;
		display: block;
	}

	.rcCaptchaAudioLink:hover::before {
		color: #CC6440;
		color: var(--main-color-hover, #CC6440);
	}




.Mandatory {
	font-size: 10pt;
	color: red;
	padding: 0 5px 0 5px;
}

.DivMessage {
	width: 100%;
	border: solid 1px #05D32C;
	background-color: #D6F2DB;
	padding: 0 5px 0 5px;
	font-size: 11px;
	color: #000;
}

.DivError {
	width: 100%;
	border: solid 1px #FF0000;
	background-color: #FFD7D7;
	padding: 0 5px 0 5px;
	font-size: 11px;
	color: #000;
}

.TableForm {
	width: 100% !important;
	border-top: solid 1px #ccc;
}

.TdTitle {
	border-bottom: solid 1px #ccc;
	/*border-left: solid 1px #ccc;*/
	padding-left: 0;
	vertical-align: top !important;
	padding: 2px 5px 2px 5px;
}

.TdControl {
	border-bottom: solid 1px #ccc;
	border-left: solid 1px #ccc;
	padding: 2px 5px 2px 5px;
	vertical-align: top !important;
}

.TdObservations {
	background-color: #fcfcfc;
	border-bottom: solid 1px #ccc;
	border-left: solid 1px #ccc;
	/*border-right: solid 1px #ccc;*/
	padding: 2px 5px 2px 5px;
	vertical-align: top !important;
}

.TableLog {
	width: 100%;
	border: solid 1px #ccc;
}

.DivLog {
	padding-top: 5px;
	width: 100%;
	display: none;
}

#TrDivMessages {
	padding-bottom: 5px;
}



/**
 * Main Panel Toolbar
 */

.fd-toolbar-main {
	min-height: 36px;
	background: #fff;
	/*padding: 5px 0;*/
	border: 1px solid #d7d9dd;
	border-width: 1px 0;
}

.fd-toolbar-icons {
	background: #fff;
	padding: 0.1rem 0.6rem;
}

.ToolBarLeft {
	width: 0;
	height: 26px;
}

.ToolBarRight {
	height: 25px;
	text-align: right;
	vertical-align: middle;
	padding-right: 20px;
}

	.ToolBarRight img {
		vertical-align: middle;
	}

.ToolBarSeparator {
	padding: 0;
	font-size: 1%;
}



/**
 * Toolbar gfx
 */

.fd-toolbar-right-col {
	text-align: right;
	vertical-align: middle;
}

.fd-col-separator {
	background: #D8DFE5;
	width: 1px;
	height: 26px;
	content: ' ';
	overflow: hidden;
	display: inline-block;
	margin: 5px;
	vertical-align: middle;
}

.fd-regs-per-page {
	font-size: .8rem;
	color: #7A8DA0;
}

.fd-tool-icons,
.fd-config-icons {
	vertical-align: middle;
	-webkit-transition: color 3000ms;
	-o-transition: color 3000ms;
	transition: color 3000ms;
	text-decoration: none;
}

	.fd-tool-icons,
	.fd-tool-icons::before {
		display: inline-block;
		overflow: hidden;
		width: 36px;
		height: 36px;
	}

.fd-tool-icons {
	font-size: 2.4rem;
	color: #F6895D;
	color: var(--main-color, #F6895D);
	text-indent: -9000px;
	position: relative;
	visibility: visible !important;
}

	.fd-tool-icons::before {
		font-family: 'icomoon';
		font-size: 2.4rem;
		position: absolute;
		top: 0;
		left: 0;
		text-indent: 0;
	}

.fd-config-icons {
	font-size: 2rem;
	color: #7A8DA0;
}

.fd-tool-icons:hover {
	color: #CC562E;
}

.fd-config-icons:hover {
	color: #515E68;
}

a.fd-tool-icons,
a.fd-tool-icons:hover,
a.fd-config-icons,
a.fd-config-icons:hover {
	text-decoration: none;
}

.fd-tool-icons .fd-link-label,
.fd-config-icons .fd-link-label {
	display: none;
}

.fd-toolbar-right-col .ToolBarIcons {
	display: inline-block;
}


/**
 * Toolbar inbox filters
 */

.fb-inbox-search {
	padding-top: 20px;
}

.fb-inbox-search-input {
}

.fb-inbox-filter-item {
	padding-top: 2px;
}











.BackgroundTop {
	padding-right: 10px;
	vertical-align: top;
}

	.BackgroundTop img {
		vertical-align: top;
		margin-right: 2px;
	}

.ACMCombo {
	border: solid 1px transparent;
	background: #FFF;
	cursor: pointer;
}

.ACMComboHover {
	border: solid 1px #ccc;
	background: #ececec;
	cursor: pointer;
}



.PageTitle {
	color: #919191;
	line-height: 25px;
	font-size: 13px;
	font-weight: bold;
	text-transform: uppercase;
	vertical-align: middle;
}

.LabelRoot {
	font: normal 11px Roboto, Arial, sans-serif;
	color: #666;
	padding-left: 18px;
}

.PageBorder,
.MainTable {
	padding: 3px 0 3px 3px;
	background: #e6e6e6;
}

.MainTable {
	width: 100%;
	height: 100%;
}

.ContentField {
	font-weight: 500;
	color: #000;
	font-family: Roboto, Arial, sans-serif !important;
	font-size: 11px !important;
}

.ContentFieldDescription {
	font-style: italic;
	color: #808080;
	font-family: Roboto, Arial, sans-serif !important;
	font-size: 11px !important;
}


/**
 * Document Frames
 */

.BoxTitle .Text {
	font-weight: 500;
	font-family: Roboto, Arial, sans-serif;
	font-size: 1rem;
	display: block;
	height: 38px;
	line-height: 34px;
	background: #fff;
	width: 100%;
	text-indent: .5rem;
	border: 1px solid #d7d9dd;
	border-width: 1px 0;
}

.DivContent {
	padding: 0;
	margin: 5px 0 0;
	border: solid 1px #ccc;
}

/**
 * Search
 */

.masterpage-search {
	content: "";
	position: relative;
	left: 20px;
	/*top: 13px;*/
	width: 30px;
	height: 30px;
	text-align: center;
	z-index: 99;
}

	.masterpage-search::after {
		display: inline-block;
		content: "\e929"; /*icon-search*/
		font-family: 'icomoon' !important;
		font-size: 1.6rem;
		color: #D8DFE5;
		color: var(--menu-text-color, #D8DFE5);
		line-height: 30px;
	}

#ctl00_mainSearchBox .RadInput_Default .riTextBox,
#ctl00_mainSearchBox .RadInputMgr_Default,
#ctl00_ctl00_mainSearchBox .RadInput_Default .riTextBox,
#ctl00_ctl00_mainSearchBox .RadInputMgr_Default {
	background-color: #5C6B77;
	background-color: var(--main-searchBox, #5C6B77);
	border: none;
	border-radius: 5px;
	width: 200px;
	height: 30px;
	/*line-height: 30px;*/
	color: #D8DFE5;
	color: var(--menu-text-color, #D8DFE5);
	font-style: italic;
	font-weight: 300;
	font-family: Roboto, Arial, sans-serif;
	font-size: .9rem;
	padding-left: 40px;
	position: relative;
	/*top: 12px;*/
	right: 10px;
}

	#ctl00_mainSearchBox .RadInput_Default .riTextBox:focus,
	#ctl00_mainSearchBox .RadInputMgr_Default:focus,
	#ctl00_ctl00_mainSearchBox .RadInput_Default .riTextBox:focus,
	#ctl00_ctl00_mainSearchBox .RadInputMgr_Default:focus {
		background-color: #5C6B77 !important;
		background-color: var(--main-searchBox, #5C6B77) !important;
	}

#ctl00_mainSearchBox > div:first-child,
#ctl00_ctl00_mainSearchBox > div:first-child {
	/*float: none !important;*/
	position: relative;
}

#ctl00_mainSearchBox .cell,
#ctl00_ctl00_mainSearchBox .cell {
	padding: 12px;
}

#ctl00_mainSearchBox,
#ctl00_ctl00_mainSearchBox {
	min-width: 250px;
}

/*
.ToolBarIcons a {
	padding-right:5px;
}
*/
.Table {
	width: 100%;
	border: solid 1px #808080;
}

	.Table .header {
		background: #808080 url('/Images/Skins/Default/Tables/GridHeaderBg.gif') repeat-x bottom;
		font: bold 10px Verdana, Arial, Sans-serif;
		height: 22px;
		border-top: solid 1px #e5e5e5;
		border-bottom: solid 1px #bbb;
		padding: 0 5px 0 5px;
	}

	.Table .footer {
		background: #808080 url('/Images/Skins/Default/Tables/GridHeaderBg.gif') repeat-x bottom;
		font: bold 10px Verdana, Arial, Sans-serif;
		height: 22px;
		border-top: solid 1px #e5e5e5;
		border-bottom: solid 1px #bbb;
		padding: 0 5px 0 5px;
	}

.LabelToolbar table td {
	overflow: hidden;
	zoom: 1;
}

.ACOptionsDark {
	border: solid 1px transparent;
	padding-left: 6px;
	height: 20px;
	line-height: 20px;
	background: transparent;
	vertical-align: middle;
	cursor: hand;
	cursor: pointer;
}

.ACOptionsDark {
	color: #FFF;
}

	.ACOptionsDark:hover {
		color: #FFF;
		text-decoration: underline;
	}

	.ACOptionsDark:hover {
		border-color: #000;
	}

	.ACOptionsDark.InnerArrow:hover {
		color: #CC6440 !important;
		color: var(--main-color-hover, #CC6440) !important;
	}


.AdditionalInputs {
	border: solid 1px red;
}

.BoxTitle {
	/*background: transparent url('data:image/jpg;base64,/9j/4AAQSkZJRgABAQEASABIAAD/2wBDAAICAgICAgICAgICAgICAgMCAgICAwMDAwMDAwMEAwMDAwMDBAQEBAUEBAQFBQYGBQUHBwcHBwcHBwcHBwcHBwf/2wBDAQICAgMDAwUEBAUHBgUGBwgICAgICAgHBwcHBwcHBwcHBwcHBwcHBwcHBwcHBwcHBwcHBwcHBwcHBwcHBwcHBwf/wAARCAAZABQDAREAAhEBAxEB/8QAFwABAAMAAAAAAAAAAAAAAAAAAAECBv/EABkQAQACAwAAAAAAAAAAAAAAAAAEYRUWkf/EABgBAQADAQAAAAAAAAAAAAAAAAACBAkF/8QAGBEBAAMBAAAAAAAAAAAAAAAAAAMRFBX/2gAMAwEAAhEDEQA/AI2eZfWcnHiac4IzZ5l9OPEYIzZ5l9OPEYI1sXSG5dsxdG4sxdG4to3JRAAAAAf/2Q==') repeat-x;*/
	height: 25px;
	display: none !important;
}

	.BoxTitle .Text,
	.rpLink .Text {
		text-overflow: ellipsis;
		width: calc(100% - 30px);
		white-space: nowrap;
		overflow: hidden;
		padding: 8px 5px 0 5px;
		float: left;
		font-size: 11px;
	}

	.BoxTitle .Icon,
	.rpLink .Icon {
		width: 20px;
		height: 20px;
		cursor: pointer;
		float: right;
		display: none;
	}

/**/

.Class_Left_Label,
.Class_Right_Label {
	text-align: right;
	font-weight: 500;
	line-height: 100%;
}

td.Class_Left_Label,
td.Class_Right_Label,
.label_text {
	vertical-align: top;
}

	td.Class_Left_Label.nptb,
	td.Class_Right_Label.nptb {
		padding-top: 0;
		padding-bottom: 0;
	}

.Class_Left_Label:after,
.Class_Right_Label:after,
.label_cell .label_text:after {
	content: ":";
	white-space: nowrap;
}

.label_cell .label_text.noDots:after {
	content: "";
}

.Class_Left_Label .FieldLabel {
}


/**/

.content_cell_left,
.content_cell_right {
	padding: 0 0 3px;
	line-height: 100%;
	vertical-align: top;
}

.content_cell,
.content_cell td {
	vertical-align: top;
}

	.content_cell .RadAjaxPanel {
		min-height: 42px;
	}

.content_cell {
	padding-bottom: 10px;
}

.TDFieldContent .Default.RadEditor {
	border: 1px solid #AAA;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	-ms-border-radius: 3px;
	-o-border-radius: 3px;
	border-radius: 3px;
}

	.TDFieldContent .Default.RadEditor .reContentCell {
		border-width: 1px 0 0;
	}

/**/

.label_cell {
	text-align: right;
	vertical-align: top;
	font-weight: 500;
}

	.label_cell.textLeft {
		text-align: left;
	}

.label_text,
.content_text {
	line-height: 110%;
	padding: 5px 0 0;
	display: inline-block;
}

.label_cell .label_text,
.label_cell .content_text {
	text-align: right;
	font-weight: 500;
}


/**
 * Mandatory Field
 */

.label_text.FillIn:before {
	content: "* ";
	color: #F6895D;
	color: var(--main-color, #F6895D);
	font-weight: 500;
}



/**
 * Search filters in treeview
 * ? icons + - ?
 */

.fd-show-filters-wrapper > td,
.fd-search-results-wrapper > td,
.fd-search-filters-wrapper > td {
	padding: 10px 5px 5px 19px;
}

.fd-filters-label {
	font-size: .9rem;
	margin-bottom: 6px;
	color: #3F424F;
}

	.fd-filters-label a {
		text-decoration: none;
		color: #3F424F;
	}

		.fd-filters-label a:hover {
			color: #000;
		}




/*input[name="txtSearchTextDocs"],
input[name="txtSearchTextNodes"] {
	margin-top: 5px;
	margin-bottom: 5px;
}
*/


.label_text {
	font-weight: 300;
	color: #4F5467;
	font-size: .8rem;
}


/**
 * No results
 * ? info alert ?
 */

.fd-no-results-wrapper {
	padding: 10px;
}



/**/

.Class_Left_Label,
.label_cell_left {
	width: 100px;
}

.Class_Right_Label,
.label_cell_right {
	width: 100px;
}

.content_cell_left {
	width: 400px;
}

.content_cell_right {
	width: 200px;
}

/**/



.label_cell.label_text {
	display: block;
	float: right;
}

.label_cell.label_cell_top .label_text {
	text-align: left;
	/*padding-bottom: 2px;*/
	/*font-weight: bold;*/
	float: left;
}

/*w820 - 4 Columns */

.w820 {
	width: 820px;
}

	.w820 .LPad5 {
		vertical-align: top;
	}

	.w820 .Class_Left_Label,
	.w820 .Class_Right_Label,
	.w820 .label_cell {
		width: 100px;
		padding-left: 5px;
		padding-right: 5px;
		box-sizing: border-box;
	}

	.w820 .content_cell_left {
		width: 400px;
	}

		.w820 .content_cell_left.w3 {
			width: 710px;
		}

	.w820 .content_cell_right {
		width: 200px;
	}

/**/

/*w820 - 2 Columns */

.w820_2C {
	min-width: 600px;
}

	.w820_2C .LPad5 {
		vertical-align: top;
	}

	.w820_2C .Class_Left_Label,
	.w820_2C .label_cell {
		/*width: 150px;*/
		width: 175px;
		padding-left: 5px;
		padding-right: 5px;
		box-sizing: border-box;
	}

	.w820_2C .content_cell_left {
		width: 650px;
	}

		.w820_2C .content_cell_left.nowidth {
			width: inherit;
		}

/**/

.w500 {
	width: 500px;
}

	.w500 .LPad5 {
		vertical-align: top;
	}

	.w500 .Class_Left_Label,
	.w500 .Class_Right_Label,
	.w500 .label_cell {
		width: 80px;
		padding-left: 5px;
		padding-right: 5px;
		box-sizing: border-box;
	}

	.w500 .content_cell_left {
		width: 410px;
	}

/**/

/* LL - Large Left */

.w500_LL {
	width: 500px;
}

	.w500_LL .LPad5 {
		vertical-align: top;
	}

	.w500_LL .Class_Left_Label,
	.w500_LL .Class_Right_Label,
	.w500_LL .label_cell {
		width: 100px;
		padding-left: 5px;
		padding-right: 5px;
		box-sizing: border-box;
	}

	.w500_LL .content_cell_left {
		width: 390px;
	}

/**/

/* LL - Very Large Left */

.w500_VLL,
.w500_VLL2 {
	width: 500px;
}

	.w500_VLL .LPad5,
	.w500_VLL2 .LPad5 {
		vertical-align: top;
	}

	.w500_VLL .Class_Left_Label,
	.w500_VLL .Class_Right_Label,
	.w500_VLL .label_cell {
		width: 125px;
		padding-left: 5px;
		padding-right: 5px;
		box-sizing: border-box;
	}

	.w500_VLL2 .label_cell {
		width: 150px;
		/*padding-left: 5px;*/
		padding-right: 5px;
		box-sizing: border-box;
	}

	.w500_VLL .content_cell_left {
		width: 375px;
	}

	.w500_VLL2 .content_cell_left {
		width: 350px;
	}

/**/

.w300 {
	width: 300px;
}

	.w300 .LPad5 {
		vertical-align: top;
	}

	.w300 .Class_Left_Label,
	.w300 .Class_Right_Label,
	.w300 .label_cell {
		width: 50px;
		padding-left: 5px;
		padding-right: 5px;
		box-sizing: border-box;
	}

	.w300 .content_cell_left {
		width: 240px;
	}

/**/

fieldset {
	/*padding: 0;
    margin: 0;*/
	border: 0;
}

	fieldset.showBorder {
		border: 1px solid #ccc !important;
		padding: 5px !important;
	}

		fieldset.showBorder fieldset.showBorder {
			border: 1px solid #ddd !important;
			margin-left: 5px !important;
			margin-top: 10px !important;
		}

	fieldset legend {
		font-weight: 500;
		font-size: 12px;
		color: #F6895D;
		color: var(--main-color,#F6895D);
	}

	fieldset .form-group {
		padding-bottom: 2px;
		display: block;
		min-width: 200px;
	}

		fieldset .form-group label {
			display: block;
		}

		fieldset .form-group .Control,
		fieldset .form-group .riSingle,
		fieldset .form-group .riTextBox {
			display: inline-block !important;
			width: calc(100% - 5px) !important;
			padding-left: 3px;
		}

			/* Numeric TextBox */
			fieldset .form-group .riSingle.RadInput {
				width: 100% !important;
				padding: 0 !important;
				margin: 0 !important;
			}

				fieldset .form-group .riSingle.RadInput input {
					width: 100% !important;
					padding: 0 !important;
					margin: 0 !important;
				}
			/* End Numeric TextBox */

			fieldset .form-group .Control label {
				display: inline !important;
			}

		fieldset .form-group .label_text::after {
			/*content: ":";*/
		}

		fieldset .form-group .radioButtonList .Control {
			padding: 2px 0;
		}

		fieldset .form-group .label_text {
			font-weight: 500;
		}

		fieldset .form-group .RadComboBox {
			display: block !important;
			width: calc(100% - 1px) !important;
		}

	/* Em progresso */
	fieldset.horizontal {
		padding-top: 8px;
	}

		fieldset.horizontal .form-group {
			display: block !important;
			width: 100%;
			padding-bottom: 5px;
		}

		fieldset.horizontal label {
			display: inline-block !important;
			text-align: right;
			width: 100px;
		}

		fieldset.horizontal .Control {
			display: inline-block !important;
			width: calc(100% - 120px) !important;
		}


/**/

.LPad5 {
	padding-left: 5px;
}

.LPad10 {
	padding-left: 10px;
}

.RPad5 {
	padding-right: 5px;
}

.HPad5 {
	padding-left: 5px;
	padding-right: 5px;
}

.VPad5 {
	padding-top: 5px;
	padding-bottom: 5px;
}

.TPad5 {
	padding-top: 5px;
}

.BPad5 {
	padding-bottom: 5px;
}

.PopupPageTitle {
	background: transparent url('/Images/Skins/Default/Misc/PageTitle_bg.jpg') repeat-x;
	height: 25px;
	color: #fff;
	font-size: 9pt !important;
	font-weight: bold;
	padding-left: 10px;
}

.AreaHeader {
	height: 40px;
	line-height: 40px;
	padding-left: 20px;
	padding-right: 5px;
	color: #F6895D;
	color: var(--main-color, #F6895D);
	font-weight: 400;
	font-size: 0.9rem;
	font-family: Roboto, Arial, sans-serif;
	background: #EFF3F6;
	overflow-x: hidden
}

/**/

#docContent {
	padding: 0;
	overflow-x: hidden;
	overflow-y: auto;
}

/*

/*
.rdTitleBar {
    height: 41px !important;
}

.rdTitleBar em {
    font-family: Roboto, Arial,Verdana!important;
	padding-left: 6px !important;
	font-size: .8rem !important;
	font-weight: bold !important;
	display: block;
	overflow: hidden;
	white-space: nowrap;
	float: left;
	color: #3F424F;
	font-weight: 500;
}

.rdContent {
	position: inherit !important;
	padding: 0 !important;
	overflow: hidden !important;
	text-align: left !important;
	color: #000 !important;
	margin: 0 !important;
}
*/

/**/

.w50 {
	width: 50px;
}

.w100 {
	width: 100px;
}

/**/

.mainWrapper {
	padding: 2px 5px 0;
}

.menuWrapper {
	background-color: #4E5C6A;
	background-color: var(--top-menu-background, #4E5C6A);
}

.footerWrapper {
	position: absolute;
	bottom: 0;
	z-index: 999999;
	width: 100%;
}

/**/

.helpButton {
	position: absolute;
	right: 40px;
	top: 27px;
}

	.helpButton.helpContent {
		right: 5px;
	}

/**/

.paneMainContent {
	padding: 10px 0;
}

/**/

table.tableLayout {
	margin: 0;
	padding: 0;
	border-collapse: collapse;
}

.tableLayoutSeparate {
	margin: 0;
	padding: 0;
	border-collapse: separate;
}

/**/

.RadAutoCompleteBox_Default .racTokenList {
	border-color: #AAA;
	color: #333333;
	background-color: #FFF;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	-ms-border-radius: 3px;
	-o-border-radius: 3px;
	border-radius: 3px;
}

.radInput_Default .riTextBox {
	font-size: 11px;
}
/**/
/*quando se passou para a framework 4.0 as imagens ficaram com um border estranho*/
img {
	border: 0;
}
/**/

.formBlockSep {
	padding-top: 8px;
}

.fd-main-filters-wrapper {
	background: #fff;
	padding: 7px 0;
	margin-top: -7px;
}

.basicTable100 {
	width: 100%;
	border-collapse: collapse;
	border-spacing: 0;
}

.basicTable {
	border-collapse: collapse;
	border-spacing: 0;
}

	.basicTable th, td {
		padding: 0;
	}

.mainTableTdRight {
	text-align: right;
	width: 100%;
}

.basicTableP5 th,
.basicTableP5 td {
	width: 100%;
	padding: 2px;
}

.basicTableP5 {
	width: 100%;
	padding: 2px;
}

	.basicTableP5 .label_text {
		font-weight: 500;
	}

.DragDropZone {
	width: 100%;
	height: 90px;
	background-color: #ccc;
	border-color: #ccc;
	color: #fff;
	float: left;
	text-align: center;
	font-size: 1.2rem;
	font-weight: bold;
}


.fdItemOpened {
	margin-left: 2px;
}

	.fdItemOpened .icon {
		vertical-align: top;
		width: 1.8rem;
		padding-left: 8px;
	}

	.fdItemOpened td {
		line-height: 1.4rem !important;
	}

.fdItemOpenedMainBox {
	padding: 6px 8px;
}

	.fdItemOpenedMainBox .NoResults {
		padding-left: 40px;
	}

	.fdItemOpenedMainBox div {
		font-size: .8rem;
		line-height: 1rem;
	}

.fdItemOpened span.fd-tbicon {
	width: 1.2rem;
	left: -7px;
}

.fdItemOpened .boxAction {
	text-align: right;
	font-size: 1.4em;
}

.fdItemOpened .boxActionIcon {
	vertical-align: top;
	width: 1.75rem;
}

.fdItemOpened .boxAction .fd-tbicon {
	font-size: 1.1rem;
}

.divTable {
	display: table;
}

.fd-toolbar {
	display: table;
	width: 100%;
}

	.divTable .cell,
	.fd-toolbar .cell {
		display: table-cell;
		text-align: left;
		vertical-align: top;
	}

/* RadSpliter */
.RadSplitter .rspPaneTabContainer {
	height: 100%;
}

.RadSplitter .rspSlideTitle {
	display: none;
}

.RadSplitter .rspSlideTitleContainer {
	visibility: hidden;
}

/* RadTabStrip */
.RadTabStrip_Default .rtsTxt:first-letter {
	text-transform: uppercase;
}

/* RadPanelBar */
.RadPanelBar_Default .rpText:first-letter {
	text-transform: uppercase;
}

.RadSplitter .rspPaneTabContainer {
	height: 100% !important;
}

.rspSlideContent {
	background: #fff;
}



/**
 * [button description]
 */

button:focus {
	outline: 0;
}


/**
 * Remove blur effect from selected form elements
 * attributed by the browser agent
 */

input,
textarea,
select {
	outline: 0;
}

textarea {
	height: 60px;
}


/*Activities*/

.activities_details {
	list-style: none;
	padding-left: 0;
	margin-top: 0;
	margin-bottom: 0;
}

	.activities_details span {
		font-weight: bolder;
	}

	.activities_details li {
		padding-top: 3px;
	}

/**/


.AreaHeader.TitleForm {
	margin: 0;
}

/*Separator*/
hr.form {
	border: 0;
	border-top: 2px solid #ea5203;
	border-color: #F6895D;
	border-color: var(--main-color,#F6895D);
}

.WrapTextColumn {
	white-space: pre-line;
}


/**
 * selecione o tipo de documento.
 */

.fd-dynamic-fields {
	padding: 10px 0 30px;
}

.fd-text-info {
	padding: 20px;
	font-size: .9rem;
	font-weight: 300;
	color: #A1AAB6;
}

	.fd-text-info::first-letter {
		text-transform: capitalize;
	}


/**
 * Toolbar Filters
 */

.TDSubLevel {
	min-height: 24px;
	padding-left: 15px !important;
	vertical-align: middle;
}

	.fd-toolbar-column,
	.TDSubLevel .InboxFilters {
		float: left;
		padding-right: 10px;
	}

.fd-toolbar-column-search {
	position: relative;
	padding-top: 22px;
}

.TDSubLevel .InboxFilters > div:first-child {
	padding-bottom: .4rem;
	font-family: Roboto, Arial, sans-serif;
	font-weight: 300;
	font-size: .8rem;
	color: #7A8DA0;
}

.TDSubLevelDetails {
	height: 24px;
	vertical-align: middle;
}

.TDLeftPane,
.TDRightPane,
.TDContentPane {
	vertical-align: top;
}

.TDPageTitle {
	height: 18px;
}

#rTreeClassification {
	margin: 20px 0;
}


/* to do: normalizar wrapper dos items */
#PageViewToolbarAttachments {
	background: #fff;
	/*padding: 5px 0;*/
}


/* Menu Popup */

.Filedoc-Drop-Menu .Mobile {
	display: none;
}

.Control:focus, .racFocused, .rcbFocused, .riFocused {
	background-color: #fff !important;
}

.BorderColor {
	border-color: #F6895D;
	border-color: var(--main-color, #F6895D) !important;
}

.RecurrenceSeparator {
	float: left;
	margin-right: 25px;
	margin-left: 25px;
	border-left: 1px solid;
	border-color: #F6895D;
	border-color: var(--main-color, #F6895D);
	height: 110px;
}

/* Upload Box */
.RadUpload_Default .ruFakeInput {
	float:left !important;
}