/* Font Raleway */
@font-face {
    font-family: 'Raleway';
    src: url('fonts/raleway/raleway-light.eot');
    src: url('fonts/raleway/raleway-light.eot?#iefix') format('embedded-opentype'),
        url('fonts/raleway/raleway-light.woff') format('woff'),
        url('fonts/raleway/raleway-light.ttf') format('truetype'), 
        url('fonts/raleway/raleway-light.svg#raleway-light') format('svg');
    font-weight: 300;
    font-style: normal;
}
@font-face {
    font-family: 'Raleway';
    src: url('fonts/raleway/raleway-regular.eot');
    src: url('fonts/raleway/raleway-regular.eot?#iefix') format('embedded-opentype'),
        url('fonts/raleway/raleway-regular.woff') format('woff'),
        url('fonts/raleway/raleway-regular.ttf') format('truetype'), 
        url('fonts/raleway/raleway-regular.svg#raleway-regular') format('svg');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'Raleway';
    src: url('fonts/raleway/raleway-medium.eot');
    src: url('fonts/raleway/raleway-medium.eot?#iefix') format('embedded-opentype'),
        url('fonts/raleway/raleway-medium.woff') format('woff'),
        url('fonts/raleway/raleway-medium.ttf') format('truetype'), 
        url('fonts/raleway/raleway-medium.svg#raleway-medium') format('svg');
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: 'Raleway';
    src: url('fonts/raleway/raleway-semibold.eot');
    src: url('fonts/raleway/raleway-semibold.eot?#iefix') format('embedded-opentype'),
        url('fonts/raleway/raleway-semibold.woff') format('woff'),
        url('fonts/raleway/raleway-semibold.ttf') format('truetype'), 
        url('fonts/raleway/raleway-semibold.svg#raleway-semibold') format('svg');
    font-weight: 600;
    font-style: normal;
}
@font-face {
    font-family: 'Raleway';
    src: url('fonts/raleway/raleway-bold.eot');
    src: url('fonts/raleway/raleway-bold.eot?#iefix') format('embedded-opentype'),
        url('fonts/raleway/raleway-bold.woff') format('woff'),
        url('fonts/raleway/raleway-bold.ttf') format('truetype'), 
        url('fonts/raleway/raleway-bold.svg#raleway-bold') format('svg');
    font-weight: 700;
    font-style: normal;
}

body {
	width: 100%;
	height: 100%;
	font-family: 'Raleway', Arial;
	font-size: 13px;
	font-weight: 400;
	color: #414042;
	text-rendering: optimizeLegibility;
	/*letter-spacing: -0.1px;*/
	background-color: #ffffff;
}

/* HTML Elements */
html {
	width: 100%;
	height: 100%;
}
strong, b {
	font-weight: normal !important;
	font-family: 'Raleway', Arial;
	font-weight: 700;
}
textarea {
	overflow: auto;
}
select {
	cursor: pointer;
}
input,select,textarea {
	background-repeat: repeat-x;
}
input, select {
	vertical-align: middle;
}
input[type='text'], input[type='password'] {
	-webkit-appearance: none;
	-moz-appearance: none;
	-ie-appearance: none;
}
input[type='text']::-ms-clear {
	display: none;
}
textarea, input[type="text"], input[type="password"], select {
	border: 1px solid #cccccc;
	font-size: 13px;
	font-family: 'Raleway', Arial;
	font-weight: 400;
	color: #414042;
	outline: none;
	padding: 7px 15px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	-ms-border-radius: 5px;
	-o-border-radius: 5px;
	border-radius: 5px;
}
textarea {
	resize: none;
}
textarea:hover, input[type="text"]:hover, input[type="password"]:hover, select:hover {
	border: 1px solid #999999;
}
textarea:focus, input[type="text"]:focus, input[type="password"]:focus, select:focus {
	border: 1px solid #999999;
}
input[type="checkbox"], input[type="radio"], input[type="button"], input[type="submit"] {
	border: 0px;
	vertical-align: middle;
	background-image: none;
	background-color: transparent;
}
input[disabled="disabled"] {
	background-image: none;
	background-color: #eeeeee;
	color: #999999;
	cursor: not-allowed;
}
input[readonly="readonly"] {
	color: #5b5b5b;
	cursor: not-allowed;	
}
input[type="button"], input[type="submit"] {
	font-family: 'Raleway', Arial;
	font-weight: 700;
	background-color: #ffffff;
	height: 37px;
	border: 1px solid #cccccc;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
	-ms-border-radius: 4px;
	-o-border-radius: 4px;
	border-radius: 4px;
	padding: 10px 20px;
	cursor: pointer;
	color: #414042;
	font-size: 13px;
	-webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}
input[type="button"]:hover, input[type="submit"]:hover {
    background-image: none;
    background-color: #cccccc;
}
button[type="button"][disabled],
button[type="reset"][disabled],
button[type="submit"][disabled],
input[type="reset"][disabled],
input[type="submit"][disabled],
input[type="button"][disabled] {
	color: #ffffff !important;
	background-color: #cccccc !important;
}
input:disabled,
textarea:disabled {
    background-color: #f7f7f7;
}
input[type="button"][disabled="disabled"]:hover,
input[type="submit"][disabled="disabled"]:hover {
	cursor: default;
}
input[type="button"][disabled="disabled"]:active,
input[type="submit"][disabled="disabled"]:active {
	background: #ffffff; /* Old browsers */	
	background: -moz-linear-gradient(top,  #ffffff 0%, #f0f0f0 45%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(45%,#f0f0f0)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #ffffff 0%,#f0f0f0 45%); /* Chrome10+,Safari5.1+ */
	background: linear-gradient(to bottom,  #ffffff 0%,#f0f0f0 45%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#f0f0f0',GradientType=0 ); /* IE6-8 */
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
	border-radius: 3px;	
}

/* Colors */
.red {
	color: #f0000a;
}

.no-transition {
	-webkit-transition: none !important;
	-moz-transition: none !important;
	-o-transition: none !important;
	-ms-transition: none !important;
	transition: none !important;
}

/* Home */
.ng-home-container {
	background-color: #666666;
	background: url('../img/login-background-ie.jpg') no-repeat top center #ffffff;
	background:url('../img/login-background.jpg')no-repeat top center #ffffff;
	background-size: 100% auto;
	height: 270px;
	width: 103.5%;
	margin-left: -1.7%;
	margin-top: -5px;
}

.ng-home-container ul li {
	width: 15.85%;
	min-height: 205px;
	float: left;
	background-color: #ffffff;
	border: 1px solid #cccccc;
	padding: 3%;
	margin: 3% 1.5% 1.5% 0;
	text-align: center;
}
.ng-home-container ul li:first-child {
	margin-left: 3.5%;
}
.ng-home-container ul li img {
	margin-bottom: 10px;
}
.ng-home-container ul li strong {
	font-size: 18px;
	margin-bottom: 5px;
	display: block;
}

/* Login Page Styles */
.ng-login-header-content {
	position: relative;
}
.ng-login-header-logo {
	background-image: none;
	position: absolute;
	width: 148px;
	height: 72px;
	right: 0;
}

/* Class created to "Not a client" login container */
.ng-login-isnt-client {
	background-color: #e6e8ed;
	width: 100%;
	height: auto;
	overflow: auto;
	color: #414042;
	padding: 85px 0;
	text-align: center;
	margin-bottom: 30px;
}
.ng-login-isnt-client input[type="submit"].big-button {
	margin-top: 20px;
	padding: 0 35px;
}

.ng-login-header .ng-login-logo { 
	float: left;
	font-family: 'Raleway', Arial;
	font-weight: 400;
	font-size: 13px;
	color: #636161;
	font-style: italic;
	margin-top: 22px;
	height: auto;
}
.ng-login-header .ng-login-logo img, .ng-login-header .ng-login-logo .ng-neogrid-text {
	float: left;
}
.ng-login-header .ng-login-logo .ng-neogrid-text {
	margin-top:28px;
	margin-left: 5px;
}
.ng-login-app-name{
	color: #ffffff;
	font-size: 28px;
}

.fixed-content { 
	width: 970px; 
	margin: 0 auto; 
}

.no-border {
	border: none;
}
.no-margin {
	margin: 0;
}

html, body { 
	height: 100%;
}
body.login {
	background-color: #666666;
	background: url('../img/login-background-ie.jpg') no-repeat top left #ffffff;
	background:url('../img/login-background.jpg')no-repeat top left #ffffff;
	background-size: auto 780px;
	min-height: 100%; 
	height: auto; 
	position: relative; 
	overflow-x:hidden;
	color: #ffffff;
}
.ng-container-login { 
	padding-bottom: 22px; /*footer height*/ 
}

.ng-login-header.ng-watermark {
	height: 72px;
}

.ng-login-footer { 
	background-color: #ffffff;
	width: 100%; 
	height: 50px;
	position: absolute; 
	bottom: 0;
	border-bottom: 2px solid #d4171e;
}

.ng-login-footer .ng-page-footer-text {
	color: #414042;
	margin: auto;
}

.ng-login-header-content {
	padding: 30px 0 10px 0;
	width: 526px;
}
.ng-login-content .ng-login-col {
	float: left;
}
.ng-login-content .ng-login-col-content {
	width: 526px;
	float: left;
	padding-bottom: 50px;
}
.ng-login-content .ng-login-col-content form {
	background-color: #ffffff;
	background-color: rgba(255,255,255,0.7);
	/*background-color: rgba(0,0,0,0.2);*/
	color: #414042;
	width: 400px;
	padding: 38px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-ms-border-radius: 10px;
	-o-border-radius: 10px;
	border-radius: 10px;
}
form#frmLogin div.ng-login-title, form#frmLogin div.ng-login-text {
	display: none;
}

.ng-login-content .ng-login-col-separator {
	display: none;
}
.ng-login-content .ng-login-col-options {
	width: 430px;
	float: right;
	padding-top: 75px;
}
.ng-login-options-item {
	padding-bottom: 30px;
	margin-bottom: 20px;
	border-bottom: 1px solid #ededed;
}
.ng-login-options-item:nth-child(3) {
border-bottom: none;
}
.ng-login-options-item a {
	color: #5f5f5f;
	text-decoration: underline;
}
.ng-login-title {
	font-size: 24px;
	margin-bottom: 7px;
}
.ng-login-content .ng-login-col-content input[type="text"], .ng-login-content .ng-login-col-content input[type="password"] {
	width: 370px;
	margin-bottom: 20px;
}
.ng-login-content form.personalized label {
	margin-bottom: 10px;
	display: block;
	font-size: 16px;
}
.ng-login-content form.personalized .big-button {
	width: 140px;
}
.ng-login-content .ng-login-col-content .link-lost-key-btn {
	text-align: right;
	float: right;
	padding: 14px 0 0 0;
}
input[type="submit"].big-button, .form-button {
	height: 37px;
	display: inline-block;
	color: #ffffff;
	-webkit-border-radius: 100px;
	-moz-border-radius: 100px;
	-ms-border-radius: 100px;
	-o-border-radius: 100px;
	border-radius: 100px;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
 	-ms-box-shadow: none;
 	-o-box-shadow: none;
 	box-shadow: none;
	font-family: 'Raleway', Arial;
	font-weight: 700;
	font-size: 14px;
	text-decoration: none;
	cursor: pointer;
	margin: 5px 5px 5px 0;
	padding: 2px 25px;
	z-index: 99;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
	text-transform: uppercase;
}
input[type="submit"].big-button .icon, .form-button .icon {
	margin: -5px 0 0 10px;
}
.ng-login-flag .flag {
	display: none;
}
.ng-login-flag {
	margin: 0 0 30px 0;
	display: block;
}
.ng-login-flag img {
	vertical-align: middle;
	margin-right: 10px;
}

.notification-placeholder {
	width: 970px;
	margin: auto;
}

.ng-notification {	
	position: fixed;
	left: -9999999px;
	display: block;
}
.ng-notification-button-close {
	display: none;
    position: absolute;
    top: 3px;
    right: 4px;
    width: 13px;
    height: 13px;
    padding: 2px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
    border-radius: 12px;
    background: #ffffff;
    cursor: pointer;
    border: 1px solid transparent;
}
.ng-notification-button-close:hover {
	border: 1px solid #bbbbbb;
	background: #f8f8f8;
}

.ng-notification-modal {	
	width: 100%;
	top: 0;
	position: relative;
	/*position: absolute;*/
	left: 0;
	margin-bottom: 20px;
}

.ng-notification .icon {
	margin-right: 5px;
	vertical-align: baseline;
}

.ng-notification .error {
	color: #f0000a;
	font-weight: 500;
}

.ng-notification .warning {
	color: #C09853;
	font-weight: 500;
}

.ng-notification .info {	
	color: #14c86e;
	font-weight: 500;
}

.ng-notification .fatal {
	background: #f0000a;
	color: #ffffff;
}

.ng-notification .list-itens li {
	display: block;
}
.ng-notification .list-itens li label {
	float: none;
	font-weight: normal;
	font-size: 11px;
}

.clear-all {
	clear: both;
	text-indent: -9999em;
	height: 1px;
}

/* Header Elements */

/*.btn-header, .btn-back-to-portal {*/
.btn-header {
	border: 1px solid #d6d6d6;
	border-bottom: 0;
	border-right: 0;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	-ms-border-radius: 4px;
	-o-border-radius: 4px;
	border-radius: 4px;
	display: block;
	text-decoration: none;
    background: #ffffff;
    padding: 4px 8px 6px 7px;
    color:#666;	
    z-index:1000;
}

.btn-header:hover {
	color: #666666;
	background: #FFFFD9;
}
.btn-back-to-portal {
    width: 17px;
    height: 17px;
    font-family: 'Raleway', Arial;
	font-weight: 700;
    background-color: #666666;
    color: #ffffff !important;
    display: block;
    padding: 10px;
    text-decoration: none;
    text-align: center;
    text-transform: uppercase;
	position: absolute;
	top: 17px;
	right: 305px;
	z-index: 996;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -ms-border-radius: 100px;
    -o-border-radius: 100px;
    border-radius: 100px;
}
.btn-back-to-portal:hover {
	background-color: #414042;
}

.ng-page-header {
	height: 72px;
    background-color: #00263c;
    position: absolute;
    top: 0;
    width: 100%;
}
.ng-page-header .ng-page-header-top-line {
	height: 5px;
	text-indent: -9999em;
	font-size: 0;
}
.ng-page-header .ng-header-content {
	height: 72px; 
}

.ng-page-header .ng-header-watermark {
	background-repeat: no-repeat;
}
.ng-page-header .ng-header-app-logo, .ng-page-header .ng-header-credential-spacer, .ng-page-header .ng-header-credentials, .ng-page-header .btn-open-sso {
	float: left;
}

.ng-page-header .ng-header-app-logo {
	margin-left: 20px;
	margin-top: 17px;
}

.ng-page-header .ng-header-app-logo-container a{
    text-decoration: none;
    min-width: 270px;
    display: block;
}

.ng-page-header .ng-header-app-logo .ng-header-app-name {
	color: #f2f2f2;
    border-left: 2px solid #f0000a;
    padding-left: 6px;
    height: 19px;
    margin-left: 40px;
    font-size: 16px;	
    font-family: 'Raleway', Arial;
    font-weight: 700;
    float: right;
    margin-top: 8px;
}

.ng-page-header .ng-header-app-logo .ng-header-app-name:hover {
    text-decoration: underline;
}

.ng-page-header .ng-header-app-logo .ng-header-app-logo-image {
	
}

.btn-open-sso {
	width: 38px;
	height: 38px;
	margin-top: 14px;
	background-repeat: no-repeat;
	background-position: 0 0;
	cursor: pointer;
	text-indent: -999em;
}
.btn-open-sso.closed {
	background-position: 0 0;
}
.btn-open-sso.closed:hover {
	background-position: 0 -41px;
}
.btn-open-sso.opened {
	background-position: -41px 0;
}
.btn-open-sso.opened:hover {
	background-position: -41px -41px;
}
.ng-header-sso-content {
	position: absolute;
	z-index:101;
	width: 261px;
	height: 240px;
	padding: 15px;
	border-right: 1px solid #969696;
	display: none;
	-webkit-box-shadow: 0 5px 5px -3px black;
	-moz-box-shadow: 0 5px 5px -3px black;
	-ms-box-shadow: 0 5px 5px -3px black;
	-o-box-shadow: 0 5px 5px -3px black;
	box-shadow: 0 5px 5px -3px black;
	-ms-filter: "progid:DXImageTransform.Microsoft.Shadow(Strength=4, Direction=180, Color='#000000')";
	filter: progid:DXImageTransform.Microsoft.Shadow(Strength=4, Direction=180, Color='#000000');
}
.product { 
	background-image: url("../img/sprite-product.png"); 
	background-repeat: no-repeat; 
	width: 266px; 
	height: 66px; 
	margin-bottom: 5px; 
	text-indent: -9999em; 
	display: block; 
}
.product.radarderuptura {
	background-position: 0 -67px;
}
.product.antecipacao {
	background-position: 0 -134px;
}
.product.cobranca {
	background-position: 0 -201px;
}
.product.mercantil {
	background-position: 0 -268px;
}
.product.webedi {
	background-position: 0 -335px;
}
.product.compras {
	background-position: 0 -402px;
}
.product.ngcorp {
	background-position: 0 -469px;
}

.ng-page-header .ng-header-credential-spacer {
	margin: 0 15px;
	width: 1px;
	font-size: 0;
	text-indent: -9999em;
	height: 60px;
	background-position: center bottom;
	background-repeat: no-repeat;
	display: none;
}
.ng-page-header .ng-header-credentials {
	color: #414042;
	width: 255px;
	margin-top: 7px;
}
.ng-page-header .ng-header-credentials .icon-caret-down {
	position: absolute;
	z-index: 99;
	right: 10px;
}
.ng-header-user-information-content {
	background-color: #ffffff;
	border: 1px solid #cccccc;
	font-size: 13px;
	padding: 10px 15px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	-ms-border-radius: 5px;
	-o-border-radius: 5px;
	border-radius: 5px;
	position: absolute;
	width: 255px;
	overflow: hidden;
	z-index: 1;
	cursor: pointer;
}
.ng-header-user-information-btn {
	position: absolute;
	height: 12px;
	width: 12px;
	margin-left: 240px;
	cursor: pointer;
	z-index: 2; 
}
.ng-page-header .ng-header-credentials select {
	width: 255px;
	margin-top: 5px;
}

#ngHeaderUserCompany {
	font-weight:normal;	
}

.ng-page-header .ng-header-company-logo {
    /*background-color: #ededed;*/
    background-image: none;
    background-position: 0 0;
    background-repeat: no-repeat;
    height: 72px;
    width: 148px;
    float: right;
}

/* Menu Navigation */
.ng-header-menu-nav-more, .ng-header-menu-nav-less {
	position: absolute;
	width: 27px;
	height: 27px;
	cursor: pointer;
	visibility: hidden;
	text-indent: -9999em;
	background-repeat: no-repeat;
}
.ng-header-menu-nav-more {
	right: 0;
	margin-right: 190px;
	background-position: 0 -28px;
}
.ng-header-menu-nav-less {
	left: 0;
}
.ng-header-menu-nav-less:hover, .ng-header-menu-nav-more:hover {
	background-repeat: no-repeat;
}
.ng-header-menu-nav-more:hover {
	background-position: 0 -28px;
}

/* Menu CTRL */
.ng-header-actions-menu > *{
    float: left;
    position: relative;
}
.ng-header-actions-menu{
	margin-right: 24px;
	float: left;
    margin-top: 26px;
}
.ng-header-actions-section{
    height: 72px;
    position: absolute;
    right: 0;
}
.lvl-first {
    width: 40px;
    color: #f2f2f2 !important;
    font-family: 'Raleway', Arial;
    font-weight: 700;
    display: block;
    text-decoration: none;
    z-index: 2;
    font-size: 21px;
    text-align: center;
}
.lvl-first .ng-header-ctrl-img{
    height: 21px;
}
.lvl-first .ng-header-ctrl-img:hover{
    opacity: 0.75;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=75)";
    -webkit-transition: 3s;
    transition: 3s;
}
.lvl-first .ico-configuration {
    height: 12px;
    margin: 2px 0 0 5px;
    vertical-align: middle;
    width: 24px;
}
.lvl-first .ico-help {
    height: 12px;
    margin: 2px 0 0 5px;
    vertical-align: middle;
    width: 24px;
}
.menu-help .icon-caret-down {
    display: none;
}
.lvl-second {
    position: absolute;
    display: none;
    z-index: 999;
    min-width: 200px;
    right: -4px;
}
.lvl-second::after{
    content: '';
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    right: 14px;
    top: 15px;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid white;
}
.lvl-second .lvl-second-content {
    overflow: hidden;
    padding: 0 10px 10px 10px;
    background: #ffffff;
    z-index: 1;
    margin-top: 25px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
}
li:hover .lvl-second {
    display: block;
}
.lvl-second-content .option {
    margin: 15px 10px;
}
.lvl-second-content .option a { 
    text-decoration: none;
    display: block;
    width: 100%;
    height: 100%;
}
.lvl-second-content  .option a:hover {
    color: #f0000a;
}
.lvl-second-content  .option .observation {
    display: block;
}
.lvl-second-content  .option .observation, .lvl-second-content  .option .observation a { 
    color: #999999;
    margin-top: 2px;
}
.lvl-second-content select{
    padding: 4px;
}
.lvl-second-content  .option .icon {
    margin-right:4px;
}

.ico-configuration,
.ico-help, 
.ico-settings-black, 
.ico-help-black, 
.ico-logout-black,
.ico-key-black,
.ico-chat-black,
.ico-user-black {
	background: url(../img/icons/sprite-config-menu.png) no-repeat;
	width:12px;
	height:12px;
}
.ico-configuration {
	background-position: 0 0;
}
.ico-help {
	background-position: -101px 0;
}
.ico-settings-black {
	background-position: -51px -1px;
}
.ico-help-black {
	background-position: -38px -1px;
}
.ico-logout-black {
	background-position: -25px -1px;
}
.ico-user-black {
	background-position: -75px -1px;
}
.ico-chat-black {
	background-position: -63px -3px;
}
.ico-key-black {
	background-position: -88px -1px;
}


.ng-page-header .ng-header-ctrl-menu {
	position: absolute;
	right: 0px;
	margin: 0 16px 0 0;
	padding: 5px;
	z-index: 11;
}
.ng-page-header .ng-header-ctrl-menu ul li {
	float: left;
}
.ng-page-header .ng-header-ctrl-menu ul li a {
	color: inherit;
	color: expression(this.parentNode.currentStyle['color']); /* FOR IE7 */
	text-decoration: none;
}
.ng-page-header .ng-header-ctrl-menu ul li a.home, .ng-page-header .ng-header-ctrl-menu ul li a.option, .ng-page-header .ng-header-ctrl-menu ul li a.logout, .ng-page-header .ng-header-ctrl-menu ul li a.help {
	background-repeat: no-repeat;
	padding-left: 18px;
	padding-right:  5px;
}
.ng-page-header .ng-header-ctrl-menu ul li a.home {
	background-position: 0 0;
}
.ng-page-header .ng-header-ctrl-menu ul li a.option {
	background-position: 0 -19px;
}
.ng-page-header .ng-header-ctrl-menu ul li a.logout {
	background-position: 0 -37px;
}
.ng-page-header .ng-header-ctrl-menu ul li a.help {
	background-position: 0 -55px;
}
.ng-page-header .ng-header-ctrl-menu ul li.spacerP {
	margin-right: 5px;
}
.ng-page-header .ng-header-ctrl-menu ul li.has-sub-menu {
	background-repeat: no-repeat;
	background-position: right 4px;
	padding-right: 10px;
}
.ng-page-header .ng-header-ctrl-menu ul li.has-sub-menu li.has-sub-menu {
	background-repeat: no-repeat;
	background-position: right -14px;
	padding-right: 0px;
}
.ng-header-ctrl-menu ul li .ng-header-ctrl-menu-sub {
	position: absolute;
	max-width: 113px;
	margin-left: -7px;
	margin-top: 13px;
	padding-top: 5px;
	display: none;
}
.ng-header-ctrl-menu ul li .ng-header-ctrl-menu-sub li {
	float: none;
}
.ng-header-ctrl-menu ul li .ng-header-ctrl-menu-sub li a {
	display: block;
	padding: 5px;
}
.ng-header-ctrl-menu ul li .ng-header-ctrl-menu-sub li a:hover {
	background: #ffffff;
	color:#000;
}
.ng-header-ctrl-menu ul li .ng-header-ctrl-menu-sub li.spacer {
	display: block;
	padding: 0;
	height: 1px;
	font-size: 0px;
	text-indent: -9999em;
	line-height: 0;
}
.ng-header-ctrl-menu ul li .ng-header-ctrl-menu-sub  .ng-header-ctrl-menu-sub {
	margin: 0;
	padding: 0;
}

/* Assistant template */
.ng-assistant-bread-crumb {
	overflow: hidden; 
	border-top: 1px dotted #B7B7B7; 
	padding: 5px 0;
}
.ng-assistant-bread-crumb .ng-bread-crumb {
	float: left; 
	background: #f2f2f2;
	overflow: hidden;
}
.ng-assistant-bread-crumb .ng-bread-crumb .ng-bread-crumb-corner-left, .ng-assistant-bread-crumb .ng-bread-crumb .ng-bread-crumb-corner-right, .ng-assistant-bread-crumb .ng-bread-crumb .ng-bread-crumb-content {
	float: left;
}
.ng-assistant-bread-crumb .ng-bread-crumb .ng-bread-crumb-corner-left, .ng-assistant-bread-crumb .ng-bread-crumb .ng-bread-crumb-corner-right {
	width: 6px;
	height: 27px;
	text-indent: -9999em;
}
.ng-assistant-bread-crumb .ng-bread-crumb .ng-bread-crumb-corner-right {
	background-position: 0 -28px;
}
.ng-assistant-bread-crumb .ng-bread-crumb .ng-bread-crumb-content {
	padding-top: 6px;
}
.ng-assistant-bread-crumb .ng-bread-crumb .ng-bread-crumb-content a {
	text-decoration: none;
}
.ng-assistant-bread-crumb .ng-bread-crumb .ng-bread-crumb-content a:hover {
	text-decoration: underline;
}
.ng-assistant-bread-crumb .ng-bread-crumb .ng-bread-crumb-content .ng-bread-crumb-step-spacer {
	padding: 0 5px;
}
.ng-assistant-steps {
	overflow: hidden;  
    font-family: 'Raleway', Arial;
	font-weight: 400;
    color: #666666; 
    position: relative;
    padding: 7px 10px 0 0;
    margin-bottom: 10px;
}

.ng-assistant-steps .ng-step {
	width: 28px;
	height: 28px;
	float: left; 
	margin-right: 4px;
	text-align: center;
	line-height: 28px;
	background: #ffffff;
    border: 1px solid #cccccc;   
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    border-radius: 20px;
    padding: 2px;
}

.ng-assistant-steps .ng-step.active {
	font-family: 'Raleway', Arial;
	font-weight: 700;
	background-color: #666666;
	border: 1px solid #666666;
	color: #ffffff;
}

.ng-assistant-steps .ng-step.active a, .ng-assistant-steps .ng-step.active span {
	 cursor: default;
}

/* Group Itens */
.group-item-list .group-item-list-header {
	background-color: #8d8d8d;
	border-bottom: 1px solid #d0d0d0;
	overflow: hidden;
}
.group-item-list .group-item-list-btn {
	float: right;
	margin-right: 5px;
	margin-top: 5px;
}
.group-item-list .group-item-list-nro {
	color: #ffffff;
	font-size: 13px;
	font-weight: bold;
	float: left;
	height: 20px;
	padding: 4px;
	text-align: center;
	text-transform: uppercase;
	width: 20px;
	background-repeat: no-repeat;
}
.group-item-list .group-item-list-label {
	color: #ffffff;
	float: left;
	font-size: 13px;
	font-weight: bold;
	padding: 7px 5px 5px;
}
.group-item-list .group-item-list-content {
	background-color: #ffffff;
	border-color: -moz-use-text-color #e1e1e1 #e1e1e1;
	border-right: 1px solid #e1e1e1;
	border-style: none solid solid;
	border-width: 0 1px 1px;
	padding: 10px;
}
.ng-page-content {
	width: 100%;
    position: absolute;
    top: 103px;
    bottom: 0;
/*    overflow-y: auto;*/
    /*overflow: scroll;*/
    overflow-x: hidden;
    /*z-index: -1;*/
}

.ng-content-wrapper {
	min-height: 100%;	
	height: auto !important;
	height: 100%;
	margin-top: -20px;
	padding-top: 20px;
}

.ng-content-body {
	padding: 0 1.5%;
	padding-bottom: 90px;
}
.ng-page-footer {
	width: 100%;
	background-color: transparent;
	margin: -47px 0 0 0;
	clear: both;
	color: #414042;
	border-bottom: 2px solid #d4171e;
	border-radius: 5px 5px 0 0;
	position: absolute;
}

.ng-page-footer-text {
	padding: 15px 0;
	width: 970px;
	margin: auto;
	text-align: center;
}
.ng-page-footer a {
	color: #414042;
	text-decoration: underline;
}
.ng-crud-header {
	background-color: #ffffff;
	width: auto;
	font-family: 'Raleway', Arial;
	font-weight: 400;
	font-size: 24px;
	display: inline-block;
	margin: 15px 0 0;
	border: 0px;
	padding: 0 20px 0 0;
	box-sizing: border-box;
}
.ng-crud-header:before {
	content: "";
	height: 1px;
	display: block;
	width: 97%;
	margin-top: 20px;
	background: #ededed;
	position: absolute;
	z-index: -5;
	left: 1.5%;
}

.ng-crud-body .rich-table { 
	border-top: 0px;
}

/*.ng-table-list {
	margin-top: 20px;
}*/

.ng-table-edit {
	border-collapse: collapse;
}

.ng-table-edit-header {
	font-family: 'Raleway', Arial;
	font-weight: 700;
	background-color: transparent;
	padding: 0px;
	font-size: 16px;
}

/* Class created to format the editor configurations form on base */
.rich-mpnl-panel .ng-form-grid-container {
	width: 100%;
	background: #ffffff;
	border-left: none;
	padding: 20px 35px;
	box-sizing: border-box;
	display: block;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-ms-border-radius: 10px;
	-o-border-radius: 10px;
	border-radius: 10px;
	border: 1px solid #cccccc;
}
.rich-mpnl-panel .ng-form-container {
	background: #ffffff;
	border-left: none;
	padding: 0;	
	display: block;
	border: none;
}

.ng-form-container {
	background: #ffffff;
	border-left: none;
	padding: 20px 35px;	
	box-sizing: border-box;
	display: block;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-ms-border-radius: 10px;
	-o-border-radius: 10px;
	border-radius: 10px;
	border: 1px solid #cccccc;
}

/* Class created for description text on forms */
.ng-description-text {
	display: block;
	clear: both;
	float: none;
	padding: 10px 0px 22px;
}

/* Class created for warning text */
.ng-warning-container {
	display: table;
	padding: 15px 35px;
	margin: 15px 0;
	background-color: #ffffdd;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-ms-border-radius: 10px;
	-o-border-radius: 10px;
	border-radius: 10px;
	box-sizing: border-box;
}
.ng-warning-container i.icon-warning-sign {
	margin-right: 5px;
	font-size: 14px;
	color: #c09853;
	font-weight: 500;
}

.ng-label, .ng-label-summary {
	white-space: nowrap;
	width: 1%;
}
.ng-label-summary {
	width: auto; 
}
.ng-value-summary {
	text-align: right;
}

.ng-field, .ng-label-summary, .ng-value-summary {
	padding: 5px 5px 5px 0;
}
.ng-filter .ng-label, .ng-filter .ng-field {
	border-bottom: 0px;
	vertical-align: top;
}

.ng-filter .ng-label {
	padding: 13px 15px 0 0;
}
.ng-filter .ng-field {
	padding: 5px 0;
}

.ng-filter-fields {
	background-color: #ffffff;
	border: 1px solid #cccccc;
	overflow:hidden;
	padding: 20px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	-ms-border-radius: 5px;
	-o-border-radius: 5px;
	border-radius: 5px;
	margin-bottom: 10px;
}
.ng-filter .ng-filterButton-area {
	background-color: #ffffff;
	padding: 0 10px 30px 36px; 
	position: relative;
	box-sizing: border-box;
	display: block;
	margin-top: -15px;
	-webkit-border-radius: 0 0 10px 10px;
	-moz-border-radius: 0 0 10px 10px;
	-ms-border-radius: 0 0 10px 10px;
	-o-border-radius: 0 0 10px 10px;
	border-radius: 0 0 10px 10px;
	border: 1px solid #cccccc;
	border-top: none;
}
.ng-action-result .ng-table-list {
	border-top: 0;
}

.ng-icon,.ng-icon-enable,.ng-icon-disable {
	background-repeat: no-repeat;
	/*margin: 2px;*/
	vertical-align: middle;
}

.ng-icon {
	width: 22px;
	height: 20px;
	-webkit-border-radius: 100px;
	-moz-border-radius: 100px;
	-ms-border-radius: 100px;
	-o-border-radius: 100px;
	border-radius: 100px;
	-webkit-box-shadow: none;
 	-moz-box-shadow: none;
 	-ms-box-shadow: none;
 	-o-box-shadow: none;
 	box-shadow: none;
	color: #ffffff;
    font-size: 13px;
    line-height: 21px;
    margin: 2px 7px;
    padding: 2px 2px 4px 2px;
    text-align: center;
    display: inline-block;
    text-decoration: none !important;
}

img.ng-icon {
	padding: 3px 2px;
}
.ng-icon img {
	padding: 3px 2px;
}

.ng-icon-enable {
	color: #cccccc;
	background: none;
}

.ng-icon-enable:hover {
	background: none;
}
.ng-icon-disable {
	color: #ffffff;
}
.ng-icon.ng-icon-disable {
	background: #999999;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	-ms-box-shadow: none;
	-o-box-shadow: none;
	box-shadow: none;
}

/* Hide erase icon */
.icon-clear {
	display: none;
}

div.field > a > span[class*='icon-'] {
	width: 30px;
	height: 25px;
	margin: 0 0 0 5px;
	padding: 5px 0 0;
}

/* Messages Alerts */
.ng-message {
	padding: 3px;
	height: 61px;
	overflow: auto;
}
.ng-message ul li {
	list-style: disc inside none;
	padding: 3px;
}

/* Disclaimer */
.ng-form-grid-item label.ng-disclaimer {
	font-family: 'Raleway', Arial;
	font-weight: 400;
	color: #999999;
}
.ng-disclaimer {
	color: #999999;
}

/*  Bread Crumb Styles */
.ng-crud-header .ng-breadCrumb {
	margin-top: 5px;
	margin-bottom: 10px;
}
.ng-breadCrumb .ng-breadCrumb-item {
	background-position: 0px 0px;
	background-repeat: no-repeat;
	height: 27px;
	padding-left: 6px;
}
.ng-breadCrumb .label {
	font-size: 10px;
	background-position: right -28px;
	background-repeat: no-repeat;
	padding-right: 6px;
	padding: 8px 15px 5px 10px;
	height: 14px;
}

/* Paginator Styles */
.ng-table-container .ng-datascr-div {
	padding: 30px 0;
} 
.ng-datascr-div {
	padding: 5px 0;
}
.ng-datascr-text {
	line-height: 25px;
	font-size: 12px;
	/*float: left;*/
	font-weight: normal;
	padding-left: 10px;
	color: #333333;
}
.ng-emptyList {
	padding: 15px 0;
	text-align: center;
	border: 1px dashed #dddddd;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-ms-border-radius: 10px;
	-o-border-radius: 10px;
	border-radius: 10px;
	margin: 15px 0 5px;
}
.ng-emptyList span {
	font-weight: normal;
}
.ng-emptyList img {
	vertical-align: middle;
}

.ng-attention-message {
    padding: 15px;
    text-align: center;
    border: 1px dashed #dddddd;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    border-radius: 10px;
    margin: 5px 0 20px;
}
.ng-attention-message img {
	vertical-align: middle;
}

.ng-records-found {	
    color: #999999;
    padding: 0;
}

.ng-table-container .ng-records-found {	
	/*position: absolute;
	top: 25px;*/
}

.ng-table-container .ng-emptyList {
	margin-top: -40px;
	padding-bottom: 20px;
	background-color: transparent !important;
}

.ng-table-container .ng-emptyList span {
	font-weight: normal !important;
}

/* List Actions */
.ng-table-actions {
	display: inline-block;
	font-size: 13px;
	cursor: pointer;
}

.ng-table-actions-default {
	font-family: 'Raleway', Arial;
	font-weight: 700;
	background-color: #ffffff;
	position:relative;  
    padding: 10px 20px;
    position: relative;
    border: 1px solid #cccccc;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	-ms-border-radius: 4px;
	-o-border-radius: 4px;
	border-radius: 4px;
	color: #414042;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
}

.ng-table-actions-default:hover {
	background-color: #cccccc;
}

.ng-table-actions-default .icon {
	vertical-align: middle;
	margin-left: 10px;
}

.ng-table-actions-default .icon-caret-down {
	margin-left: 10px;
}

.ng-table-actions-items-container {
	display: none;
	position: absolute;
	top: 38px;
	right: -1px;
	display: none;
	z-index:90;
}

.ng-table-actions-default .ng-table-actions-items {
	font-family: 'Raleway', Arial;
	font-weight: 400;
	background: #ffffff;
    border: 1px solid #cccccc;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-ms-border-radius: 10px;
	-o-border-radius: 10px;
	border-radius: 10px;
	font-size: 13px;
	margin-top: 10px;
	text-transform: capitalize;
}

.ng-table-actions-default:hover .ng-table-actions-items-container {
	display: block;
}

.ng-table-actions-items li:hover {
	background: #ededed;
}

.ng-table-actions-items  li {
	zoom: 1;
	width: 100%;
}

.ng-table-actions-items  li a {
    display: block;
    height: 100%;
    padding: 12px 20px;
    text-decoration: none;
    width: 100%;
    white-space: nowrap;
    color: #666666;
}
.ng-table-actions-items  li a span {
	margin-right: 5px;
}

.ng-table-container {
	padding-top: 45px;
	/*padding-top: 55px;*/
	position: relative;
}

.ng-table-container .ng-table-actions-container {
	position: absolute;
	right: 0;
	top: 17px;
}

/* Fast Help */
.ng-fast-help {
	float: right;
}

.ng-fast-help .ng-fast-help-btn {
	font-size: 9px;
	text-transform: uppercase;
	cursor: help;
	padding-top: 5px;
	z-index: 10;
}
.ng-fast-help .ng-fast-help-content {
	position: absolute;
	right: 10px;
	background: #FFFFFF;
	padding: 10px;
	border: 1px solid #E4E4E4;
	margin-top: 3px;
	font-size: 11px;
	font-weigth: normal;
	display: none;
	line-height: 115%;	
}

/* Buttons */
.ng-button {
	display: inline-block;
	color: #ffffff;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	-ms-border-radius: 4px;
	-o-border-radius: 4px;
	border-radius: 4px;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
 	-ms-box-shadow: none;
 	-o-box-shadow: none;
 	box-shadow: none;
	font-family: 'Raleway', Arial;
	font-weight: 700;
	font-size: 14px;
	text-decoration: none;
	cursor: pointer;
	margin: 5px 5px 5px 0;
	padding: 10px 20px;
	z-index: 99;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
}

/* Floating Navigation */
.ng-top-button-area .ng-button {
	margin: 0 5px 0 0;
	padding: 10px 20px;
	font-size: 14px;
	/*color: #414042;*/
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	-ms-box-shadow: none;
	-o-box-shadow: none;
	box-shadow: none;
	/*border: 1px solid #e0e0e0;*/
}

.ng-top-button-area .ng-button-area {
	height: 0;
}

a.ng-button.headlightButton {
	border: none;
}

.ng-top-button-area .ng-button-area.ng-page-ctrl {
    background-color: #ffffff;
    background-color: rgba(255,255,255,0.8);	
    height: 41px;
    border: none;
    /*margin: 5px 18px 0 0;*/
    margin: 0;
    padding: 0;
    position: fixed;
    top: 144px;
    right: 1.5%;
    z-index: 99;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    border-radius: 4px;
}

.ng-top-button-area .ng-button-area:after {
	content: ".";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
}

.ng-button-area-floating {
	/*margin: 0 18px 0 0 !important;*/
	margin: 0;
	position: fixed;
	top: 115px;
	right: 2.5%;
	background: transparent;
	z-index: 10;	
	height: auto;
}

.ng-button-area-floating .ng-button-area-floating-bg {
	position: fixed;
	height: 0 !important;
}

.ng-button-area-floating .float-right {
	float: none;
}

.ng-button-area-floating .float-left {
	display: none;
}

.ng-button-area-helper {
	height: 0 !important;
}

.ng-command-link {
	font-family: 'Raleway', Arial;
	font-weight: 400;
}

.ng-message {
	text-indent: -9999em;
	display: inline-block;
	width: 10px;
	height: 10px;
	vertical-align: inherit;
}

/* Skin */
.ng-skin-form-grid-container {
	background-color: transparent;
	width: 850px;
	padding-top: 20px;
}
.ng-skin-form-grid-container label {
	font-family: 'Raleway', Arial !important;
	font-weight: 400;
	margin-top: 10px;
}
.bg-skin-app-group {
	padding: 4px;
}
.bg-skin-app-group div {
	width: 70px;
	height: 35px;
}
.bg-skin-app-group tr:first-child div {
	-webkit-border-radius: 80px 80px 0 0;
	-moz-border-radius: 80px 80px 0 0;
	-ms-border-radius: 80px 80px 0 0;
	-o-border-radius: 80px 80px 0 0;
	border-radius: 80px 80px 0 0;
}
.bg-skin-app-group tr:last-child div {
	-webkit-border-radius: 0 0 80px 80px;
	-moz-border-radius: 0 0 80px 80px;
	-ms-border-radius: 0 0 80px 80px;
	-o-border-radius: 0 0 80px 80px;
	border-radius: 0 0 80px 80px;
	margin-top: -2px;
}
.bg-skin-app-group .bg-skin-app {
	width: 90px;
	height: 43px;
	margin-bottom: 4px;
}
.bg-skin-app-item {
	cursor: pointer;
}
.bg-skin-app-item.selected {
	cursor: default;
}
.bg-skin-app-group .skin-app-label {
	color: #000000;
}
.bg-skin-app-group .skin-app-label, .skin-app-label-rgb {
	padding: 1px 5px;
	text-align: center;
}
.skin-app-label-rgb {
	color: #ffffff;
}
.bg-skin-app-item:hover, .bg-skin-app-item.selected {
	background: #cccccc;
	-webkit-border-radius: 80px;
	-moz-border-radius: 80px;
	-ms-border-radius: 80px;
	-o-border-radius: 80px;
	border-radius: 80px;
}
.ng-form-grid .ng-form-grid.ng-skin-form-grid .ng-form-grid-item {
	min-width: 6%;
	text-align: center;
	margin-right: 3%;
}

/* +.+.+.+.+.+.+.
   +.+.+. Ajax Status
   +.+.+.+.+.+.+.+.+.+.+.+.+.+.+.+.+. */
.ng-ajax-status {
	position:absolute; 
	width:100%; 
	height:100%; 
	top:0px; 
	left:0px; 
	z-index:1000; 
	cursor: wait;
}
.ng-ajax-status-content {
	position:absolute; 
	width:300px; 
	height:50px; 
	top:50%; 
	margin-top:-25px; 
	margin-left:-125px; 
	left:50%; 	
	z-index:9999; 	
	padding-top: 15px;
	font-family: 'Raleway', Arial;
	font-weight: 400;
}

.ng-ajax-status-content-title {
	font-size: 18px;
}

.ng-ajax-status-opaque {
	position:absolute; 
	width:100%; 
	height:100%; 
	top:0px; 
	left:0px; 
	z-index:1001; 
	background-color: rgba(255, 255, 255, 0.8); 
}

.rich-panel-body {
	color: #414042;
	font-family: 'Raleway', Arial;
	font-weight: 400;
	font-size: 13px;
}

.ng-portlet .rich-panel-body { 
	background-image: none;
	height: auto;
	padding: 0;
}

.ng-portlet .rich-panel-header {
	float: left;
}
.ng-portlet .rich-panel-body-content {
	padding: 0;
}
.ng-portlet .ng-portlet-controls {
	float: right;
	display: none;
}
.ng-portlet .portlet-control-refresh {
	background-position: 0 -123px;
	width: 14px;
	height: 12px;
	display: block;
	text-indent: -999em;
}
.ng-portlet .ng-table-list-portlet {
	border-top: 0;
	border-left: 0;
}
.ng-portlet .rich-table-cell, .ng-portlet .rich-table-subheadercell {
	border-right: 0;
}
.ng-portlet .rich-table-cell:last-child {
	padding-right: 0;
}

.ng-portlet .rich-panel-container {
	height: auto;
	overflow: auto;
	padding: 15px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	-ms-border-radius: 5px;
	-o-border-radius: 5px;
	border-radius: 5px;
	border: 1px solid #ededed;
}

.ng-portlet-item {
	min-height: 70px;
	padding: 10px;
	background: #ffffff;
}
.ng-portlet-item-content {
	float: left;
	line-height: 125%;
}

.ng-box-message {
	float:left;
	width:40%;
	padding:1%;
	margin:1%;
	background:#FBF7E3;
	border:1px #DFC5A3 solid;
}
.ng-box-support {
	float:left;
	width:51%;
	padding:1%;
	margin:1%;
	background:#FCFCFC;
	border:1px #CFCFCF solid;
}
.ng-box-support-item {
	float:left;
	width:100%;
	padding-bottom:5px;
	border-bottom:1px #cccccc dashed;
	margin-bottom:15px;
}

/* Sub Table Expandable */

.ng-empty-column {
	padding:0;
	padding-left: 135px;
	background-position: left top;
	background-repeat: no-repeat;
}
.ng-empty-row:hover {
	background-color: inherit;
}
.ng-empty-column.ng-hide, .rich-table-cell.ng-hide {
	border-bottom:0;
}
.ng-empty-column .ng-subRow-table-list {
	margin: 5px;
	width: inherit;
	background: transparent;
}
.ng-empty-column .ng-subRow-table-list .rich-table-thead, .ng-empty-column .ng-subRow-table-list .rich-table-subheadercell {
	border: 0;
}
.ng-empty-column .ng-subRow-table-list .rich-table-subheader {
	background: inherit;
}
.ng-empty-column .ng-subRow-table-list .rich-table-cell {
	border: 0;
	padding-left: 8px;
	padding-right: 8px;
	background: inherit;
}

/* Scroll */
.ng-scroll.scroll-pane {
	overflow: auto;
}
.ng-scroll .jspContainer {
	overflow: hidden;
	position: relative;
}
.ng-scroll .jspPane {
	position: absolute;
}
.ng-scroll .jspVerticalBar {
	position: absolute;
	top: 0;
	right: 0;
	width: 10px;
	height: 100%;
}
.ng-scroll .jspHorizontalBar {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 16px;
}
.ng-scroll .jspVerticalBar *, .ng-scroll .jspHorizontalBar * {
	margin: 0;
	padding: 0;
}
.ng-scroll .jspCap {
	display: none;
}
.ng-scroll .jspHorizontalBar .jspCap {
	float: left;
}
.ng-scroll .jspTrack {
	width: 12px;
	background: transparent;
	position: relative;
}
.ng-scroll .jspDrag {
	position: relative;
	top: 0;
	left: 0;
	cursor: pointer;
}
.ng-scroll .jspHorizontalBar .jspTrack, .ng-scroll .jspHorizontalBar .jspDrag {
	float: left;
	height: 100%;
}
.ng-scroll .jspArrow {
	text-indent: -20000px;
	display: block;
	cursor: pointer;
}
.ng-scroll .jspArrow.jspDisabled {
	cursor: default;
}
.ng-scroll .jspVerticalBar .jspArrow {
	height: 16px;
}
.ng-scroll .jspHorizontalBar .jspArrow {
	width: 16px;
	float: left;
	height: 100%;
}
.ng-scroll .jspVerticalBar .jspArrow:focus {
	outline: none;
}
.ng-scroll .jspCorner {
	float: left;
	height: 100%;
}
* html .ng-scroll .jspCorner {
	margin: 0 -3px 0 0;
}
.rich-tool-tip {
	position:fixed;
	z-index: 99;
	background: #ffffff;
	border: 1px solid #999999;
	padding: 8px;
	font-family: 'Raleway', Arial;
    font-weight: 400;
	font-size: 12px;
	color: #414042 !important;
	white-space: pre-wrap;
}

input[type='button'].ng-btn-associate {
	background-image: none;
	width: 120px;
	height: 40px;
	margin: 5px 0 0 0;
}

.ng-table-innerTable {
	padding: 0;
}

.ng-table-innerTable .ng-table-edit{
	border:0;
}
.ng-table-edit-row .ng-label {
	padding: 0;
}

.ng-multiple-select {
	min-height: 25px;
	background-color: #ffffff;
	background-image: none;
	border: 1px solid #999999;
	font-size: 13px;
	font-family: 'Raleway', Arial;
    font-weight: 400;
	color: #414042;
	outline: none;
	padding: 4px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	-ms-border-radius: 5px;
	-o-border-radius: 5px;
	border-radius: 5px;
	width: 400px; 
	overflow: hidden;
}
.ng-multiple-select .ng-multiple-select-item {
	background-color: #ededed;
	cursor: text;
	overflow: hidden;
	position: relative;
	border: 1px solid #999999;
	font-size: 13px;
	font-family: 'Raleway', Arial;
    font-weight: 400;
	color: #414042;
	float: left;
	outline: none;
	padding: 3px 10px 3px 7px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	-ms-border-radius: 5px;
	-o-border-radius: 5px;
	border-radius: 5px;
	margin-right: 2px;
}
.ng-multiple-select .ng-multiple-select-item-remove {
	margin-left: 5px;
}

.ng-generic-error-title {
	color: #414042;
	font-size: 16px;
	text-align: center;
	margin: 0 0 10px 0;
}
.ng-generic-error-content {
	width: 70%;
	text-align: center;
	margin: 0 auto;
}

/* Form Grid styles */
.ng-form-grid-container {
	border-top: none;
	border-bottom: 0; 
	padding: 0;
}
.ng-form-grid-container.titled {
	border: none;
	padding-top: 22px !important;
}
.ng-form-grid-container.titled .legend {
	font-family: 'Raleway', Arial;
    font-weight: 500;
	background: none;
	border: none;
	font-size: 15px;
	padding: 0;
	top: -15px;
	text-transform: uppercase;
}
/*.ng-form-grid-container.titled .legend:before {
	font-family: 'NeoGrid-Font-Icons';
	content: "\f105";
	color: #ed1c24;
	margin-right: 5px;
}*/

.ng-form-grid-item {
	margin-bottom: 10px;
}
.ng-form-grid-item .field {
	white-space: normal;
}
.ng-form-grid-item p span {
	font-family: 'Raleway', Arial !important;
    font-weight: 400;
	line-height: 19px !important;
}
.ng-form-grid-item label {
	font-family: 'Raleway', Arial;
    font-weight: 700;
	font-size: 13px;
	font-weight: normal;
	margin-bottom: 3px;
}
.ng-form-grid-item > span, .ng-form-grid-item > .field {
	display: block;
    min-height: 15px; 
}

/*.rich-tabpanel .ng-form-grid-container.titled .legend {
	font-family: 'Raleway', Arial;
    font-weight: 700;
	background: none;
	border: none;
	left: -20px;
	font-size: 16px;
	color: #414042;
}

.rich-tabpanel .ng-form-grid-container {
	border-top: none;
	border-bottom: 0; 
	padding: 0;
}

.rich-tabpanel .ng-form-grid-container.titled {
	padding-top: 22px;
}*/


.ng-page-ctrl {
	white-space: nowrap;
	margin: 0;
	padding: 0;
}

.ng-modal-has-footer .rich-mpnl-content {
	padding-bottom: 70px;
}

.ng-modal-footer-fixed {
	position: absolute; 
	bottom: -10px;
	left: 0;
	width: 100%;
}

.ng-modal-footer-fixed .ng-page-ctrl {
	border-width: 10px 20px 10px 10px;
	border-style: solid;
	border-color: #ffffff;
	background-color: #ffffff;
	-webkit-border-radius: 0 0 15px 15px;
	-moz-border-radius: 0 0 15px 15px;
	-ms-border-radius: 0 0 15px 15px;
	-o-border-radius: 0 0 15px 15px;
	border-radius: 0 0 15px 15px;
}

/* Icons */
.ng-notification .icon-notification,
.ng-notification .icon-notification-close {
	background-image: url('../img/icons/sprite-notification-icons.png');
	background-repeat: no-repeat;
}

.ng-notification .icon-notification-close {
	width: 12px;
	height: 12px;
	background-position: -51px 0;
}

.ng-notification .icon-notification-info {
	width: 14px;
	height: 13px;
}

.ng-notification .icon-notification-error {
	width: 11px;
	height: 12px;
	background-position: -14px 0;
}

.ng-notification .icon-notification-warning {
	width: 15px;
	height: 12px;
	background-position: -36px 0;
}

.ng-notification .icon-notification-fatal {
	width: 11px;
	height: 12px;
	background-position: -25px 0;
}

.field-helper {
    color: #00263c;
    display: inline-block;
    font-size: 14px; 
    margin-left: 10px;
    text-align: center;
    cursor: pointer;
    padding: 3px 8px;
    vertical-align: middle;
}

/* Class added to customize NGBase help page */
.ng-help {
	line-height: 20px;
}
.ng-help ul {

}
.ng-help ul li {
	width: 150px;
	float: left;
	text-align: center;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	-ms-border-radius: 20px;
	-o-border-radius: 20px;
	border-radius: 20px;
	padding: 30px 20px;
	margin-right: 30px;
	border: 1px solid #cccccc;
}
.ng-help ul li strong {
	font-size: 16px;
}
.ng-help i {
	width: 70px;
	height: 70px;
	font-size: 30px;
	display: block;
	background-color: #f0000a;
	-webkit-border-radius: 70px;
	-moz-border-radius: 70px;
	-ms-border-radius: 70px;
	-o-border-radius: 70px;
	border-radius: 70px;
	text-align: center;
	color: #ffffff;
	line-height: 70px;
	margin: 0 auto 15px;
}

/* IE7 */
*:first-child+html .ng-page-footer {
	position: fixed;
	bottom: 0;
}

*:first-child+html .ng-data-table-container {
	padding-bottom: expression(this.scrollWidth > this.offsetWidth ? 17 : 0);
}

/* Fix IE overlay bug for top-button-area */
.ng-top-button-area {
	*position: relative;
	position: relative\9;
}


/* Datatable toolbar styles */
.ng-datatable-toolbar {
    text-align: right;
    position: absolute;
    top: 17px;
    right: 111px;    
    border: 1px solid #ccc;
    border-radius: 4px;
}
.ng-datatable-toolbar .ng-command-link{
    margin: 0px;
    font-size: 13px;
    color: #00263c;
}
.ng-datatable-toolbar .ng-command-link:hover{
    background-color: #00263c;
    color: #f2f2f2;
    text-decoration: none;
}

/*Util Classes*/

.float-left {
	float: left;
}
.float-right {
	float: right;
}
.w1-center {
	white-space: nowrap;
	width: 1%;
	text-align: center;
}
.ng-hack-ie-area { 
	position: absolute; 
	top: -9999em; 
	left: -9999em; 
}
.w100 {
	width: 100%;
}
.w1 {
	width: 1%;
}
.txt-block {
	display: block;
}
.txt-error {
	font-weight: 500;
}
.txt-justify {
	text-align: justify;
}
.txt-center {
	text-align: center;
}
.txt-right {
	text-align: right;
}
.v-top {
	vertical-align: top;
}
.v-middle {
	vertical-align: middle;
}
.txt-left {
	text-align: left;
}
.bg-selected {
	background-color: #fffedd;
}
.ng-p2 {
    padding: 2px;
}
.ng-p5 {
	padding: 5px;
}
.ng-nowrap {
	white-space: nowrap;
}
.ng-link {
	text-decoration: none;
}
.ng-link:hover {
	text-decoration: underline;
}
.ng-correctHorizontalBar {
	padding-bottom: 15px\9;
}
.ng-lbl-error {
	color: #f0000a;
}
.ng-border-right {
	border-right: 1px solid #D0D0D0;
}
.ng-bg-red {
	color: #f0000a;
	font-weight: normal !important;
}
.ng-bg-green {
	color: #14c86e;
	font-weight: normal !important;
}
.ng-bg-disabled {
	background-color: #D0D0D0;
}
.ng-text-disabled {
	color: #D0D0D0;
}
.ng-textSucess {
	color: #14c86e;
	font-weight: 500;
}
.ng-textError {
	color: #f0000a;
	font-weight: 500;
}
.ng-txtCaption {
	color: #D0D0D0;
}
.ng-initial {
	text-transform: initial !important;
}
.ng-active-row {
	color: #14c86e;
}
.bold {
	font-weight: 700;
}
.status {
	color: #999999;
}

/* Clearfix Correction */
.clearfix:after {
	content: ".";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
}
.clearfix {
	display: inline-block;
}
html[xmlns] .clearfix {
	display: block;
}
* html .clearfix {
	height: 1%;
}

.ng-text-area-limit-status {
	text-align: right;
	padding: 5;
}
.ng-input-date-long {
	width: 82px;
	text-align: center;
}
.ng-input-date-short {
	width: 60px;
	text-align: center;
}
.ng-input-time-medium {
	width: 60px;
	text-align: center;
}
.ng-input-time-short {
	width: 45px;
	text-align: center;
}
.ng-input-timestamp-long {
	/*width: 120px;*/
	text-align: center;
}
.ng-input-timestamp-short {
	width: 90px;
	text-align: center;
}
.ng-th-header-strong {
	text-align: center;
	font-weight: bold;
	padding: 5px;
}
.ng-dynamic-insert-content-arrow {
	position: absolute;
	width: 31px;
	height: 59px;
	background-position: 0px 0px;
	background-repeat: no-repeat;
}
.ng-txt-notice {
	font-weight: bold;
	text-transform: uppercase;
}
.ng-th-header {
	text-align: center;
	font-weight: bold;
	padding: 5px;
}
.ng-half-panel {
	width: 50%;
	vertical-align: top;
}

.ng-selectListOrder{
	border: 1px solid #e1e1e1;
	background: #eeeeee;
	text-align: right;
	padding: 5px;
}
.ng-date-container {
	background: #ffffff; 
	width: 135px; 
	position: absolute;
	top: 15px;
	right: 15px;
	padding: 10px; 
	border: 1px solid #D0D0D0; 
	text-align: center; 
	z-index: 9;
	line-height: 22px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-ms-border-radius: 10px;
	-o-border-radius: 10px;
	border-radius: 10px;
}
.ng-date-container {
	font-family: 'Raleway', Arial;
    font-weight: 400 !important;
}

.ng-date-itemSpacer{
	background:#ededed;
	width: 100%; 
	height:1px; 
	margin: 5px 0;
}
.alpha-90{
	-ms-filter:'progid:DXImageTransform.Microsoft.Alpha(Opacity=90)'; filter: alpha(opacity=90); -moz-opacity:0.9; -khtml-opacity: 0.9; opacity: 0.9;
}
.no-alpha{
	-ms-filter:'progid:DXImageTransform.Microsoft.Alpha(Opacity=100)'; filter: alpha(opacity=100); -moz-opacity:1; -khtml-opacity: 1; opacity: 1;
}
.ng-simple-panel {
	background-image: none; 
	/*border-top: 1px solid #cccccc;*/
}
.ng-transparency-bg {
    height: 1500px;
    opacity: 0.5;
    position: absolute;
    width: 1500px;
}

.ng-table-border thead tr th , .ng-table-border tbody tr td {
	border:1px solid #d0d0d0;
}

.ng-table-overflow {
	overflow-x: auto;
	overflow-y: hidden;
	margin: auto;
}

.no-padding {
	padding:0;
}

.ng-form-grid.no-padding .ng-form-grid-container {
	padding:0;
}

.no-bg {
	background:none;
}

.ng-form-grid.no-bg .ng-form-grid-container {
	background:none;
}

.ng-spacer {
	background-color: #ededed;
	width: 100%;
	height: 1px;
	margin: 15px 0;
}

.badge {
	-webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
   	border-radius: 3px;
	padding-left: 9px;
	padding-right: 9px;
}

.info {
	color: #ffffff;
}

.ng-forcewrap, 
.ng-forcewap {
	white-space: normal !important;
}

.cursor-pointer {
	cursor:pointer;
}

.ng-data-table-container {
	overflow-x: auto;
	overflow-y: hidden;
	margin: auto;
}

/* helper container to datatable horizontal scroll */
.ng-scroll-container {
	overflow-x: auto;
	overflow-y: hidden;
	width:100% !important;
}

/* Highcharts */
.highcharts-container {
	width: 97%;
	margin: 20px auto;
	border-bottom: 2px solid #cccccc;
}

::selection {
	background: #3399FF !important; color:#ffffff;
}
::-moz-selection {
	background: #3399FF !important; color:#ffffff;
}
::-webkit-selection	{
	background: #3399FF !important; color:#ffffff;
}

/* Fix chosen width for firefox */
@-moz-document url-prefix() { 
  .chzn-container { width: 365px !important; }
  .chzn-drop { width: 363px !important; }
}

#portalOnlyModal_body
{
    padding: 0 6px;
}
@media (max-width: 1400px) {
    body.login {
        background-size: auto 730px;
    }
    .ng-home-container ul li {
        min-height: 235px;
    }
    .ng-login-isnt-client {
        padding: 40px 0;
    }
    .ng-login-isnt-client input[type="submit"].big-button {
        margin-top: 10px;
    }
    .ng-login-content .ng-login-col-content {
        padding-bottom: 0;
    }}
@media (max-width: 1300px) {
    .ng-crud-header {
    }
}
/*New Identity (2017) menu bar*/
body.login {
    background-size: auto 730px;
}
.ng-home-container ul li {
    /*min-height: 315px;*/
}
.ng-login-isnt-client {
    padding: 50px 0;
}
.ng-page-header .ng-header-menu {
    width: 100%;
    z-index: auto;
    background-color: #f2f2f2 !important;
    overflow: visible;
    display: block;
    position: absolute;
    top: 72px;
    height: 31px;
    padding-left: 5px;
}
.ng-header-menu .rf-ddm-lbl-dec {
    color:  #00263c;
}
.ng-header-menu .rf-ddm-lbl-sel .rf-ddm-lbl-dec {
    color:  #00263c !important;
}
.ng-header-menu .rf-ddm-lbl-unsel .rf-ddm-lbl-dec {
    color:  #00263c !important;
}
.ng-header-menu .rf-ddm-lbl-dec:hover{
    color:  #00263c !important;
}
.ng-button-area-floating {
    top: 167px;
}

/* class for IE fallback to placeholder behavior */
.iefbPlaceholder {
	margin: 11px 0 0 16px;
	opacity: 0.6;
	position: absolute;
	-ms-user-select: none;
	user-select: none;
}
