/* ####### START :: WAT Framework Style */

/* START :- ROBOTO FONT */
 
/**
 * Include Roboto  font in your project
 * 
 * Download Roboto  ttf files from Google Fonts and place it in the same directory of this CSS file
 * You can then use this font in your project by setting
 * font-face: "Roboto ", Helvetica, Arial, sans-serif;
 *
 * @author Mattia Migliorini (deshack)
 * @license MIT
 */

/* Light */
@font-face {
	font-family: "Roboto";
	font-style: normal;
	font-weight: 400;
	src: local('Roboto Light'), local('Roboto-Light'), url("roboto/Roboto-Light.ttf") format('truetype');
}
@font-face {
	font-family: "Roboto";
	font-style: italic;
	font-weight: 400;
	src: local('Roboto Light Italic'), local('Roboto-LightItalic'), url("roboto/Roboto-LightItalic.ttf") format('truetype');
}

/* Normal */
@font-face {
	font-family: "Roboto";
	font-style: normal;
	font-weight: 400;
	src: local('Roboto Regular'), local('Roboto-Regular'), url("roboto/Roboto-Regular.ttf") format('truetype');
}
@font-face {
	font-family: "Roboto";
	font-style: italic;
	font-weight: 400;
	src: local('Roboto Italic'), local('Roboto-Italic'), url("roboto/Roboto-Italic.ttf") format('truetype');
}

/* Bold */
@font-face {
	font-family: "Roboto";
	font-style: normal;
	font-weight: 700;
	src: local('Roboto Bold'), local('Roboto-Bold'), url("roboto/Roboto-Bold.ttf") format('truetype');
}
@font-face {
	font-family: "Roboto";
	font-style: italic;
	font-weight: 700;
	src: local('Roboto Bold Italic'), local('Roboto-BoldItalic'), url("roboto/Roboto-BoldItalic.ttf") format('truetype');
}

/* @group global reset */
html, body {
    padding:0;
    margin:0;
    height:100%; 
    width:100%;
    letter-spacing: 0.4px;
}

body {
    background-repeat:repeat-x;
}

.h2, h2 {
	font-size: 1.875rem;
}

.h3, h3 {
	font-size: 1.5rem;
}

sup {
	vertical-align: top;
	line-height: 1;
}

fieldset, dd, button, form {
    margin:0;
    padding:0;
    border:none;
}
fieldset
{
	padding:5px;
	
}
ul, ul li, ol, ol li, dl, p, input {
    margin:0rem;
    padding:0rem;
}

ul li,ol li {
	list-style-type: none;
}
img,a img {
	border: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
	width: 100%;
}
input, button, label, td {
    margin:0;
    padding:0;
}
label
{
 font-weight: normal;
}
/* @end */
/* @group Default Element Styles */
body {
    font-family:arial, "trebuchet ms" ;
    /* font-size:12px; */
    font-size: 0.875rem;
    /* font-size: calc(100% + -0.1vw + -0.1vh); */
	color: #333;
}

p {
    /* font-size:13px; */
    font-size:0.9375rem;
    /* font-size: calc(100% + -0.05vw + -0.05vh); */
    color:#333;
    margin-bottom:10px;
}
legend
{
	margin-bottom: 0px;
	/* font-size: 12px; */
	font-size: 0.875rem;
	/* font-size: calc(100% + -0.1vw + -0.1vh); */
	border:none;
	font-weight: bold;
}

input[type=text] , input[type=password], select {
	margin-bottom:0.4rem;
	float:left;
	height: calc(1.5em + .5rem + 2px);
    padding: .25rem .5rem;
    font-size: .875rem;
    line-height: 1.5;    
	display: block;
    width: 100%;
    font-weight: 400;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;	
}

input:focus,select:focus,button.ms-choice:focus {
	border-color: #66afe9;
	outline: 0 none;
   box-shadow: 0;
}
 
textarea {
   font-family:inherit;
    border:1px solid   #BBC9E0 /* #bcbcbc */;
    padding:5px;
    margin-right:6px;
	margin-top: 3px;
	resize: none;
	width: 100%;
}

select:multiple {
	height:auto;
}

input[readonly], .readOnly {  
    background-color: #eef1f5;
    opacity: 1;  
    border-color: #bcbcbc;
}
textarea.readOnly {
	background-color: #eef1f5;
	opacity: 1;
}

input.smallInput {
	width: 40px;
}

select.smallInput {
	width: 46px;
}

select.monthField {
    width:62px;
}


::-webkit-input-placeholder {
    color:    #acb6c0 !important;
}
:-moz-placeholder {
    color:   #acb6c0 !important;
}
::-moz-placeholder {
    color:   #acb6c0 !important;
}
:-ms-input-placeholder {
    color:    #acb6c0 !important;
}


input.readOnly::-webkit-input-placeholder { /* WebKit browsers */
    color:    transparent;
}

input.readOnly:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
	color: transparent;
}

input.readOnly::-moz-placeholder { /* Mozilla Firefox 19+ */
	color: transparent;
}

input.readOnly:-ms-input-placeholder { /* Internet Explorer 10+ */
    color:    transparent;
}

.autoWidth {
	width:auto;
}

a {
    text-decoration:none;
    color: #337ab7;
}

table.buttons {
	white-space: normal;
	padding: 0;
	margin: 0;
}
/* @end */
/* @group Patterns */
.fRt {
	float: right;
}

.fLt {
	float: left;
}

.displayBlock {
	display: block;
}

.txtCenter {
	text-align: center;
}

.txtLeft {
	text-align: left;
}

.txtRight {
	text-align: right;
}

.clearfix:after {
	content: ".";
	display: block;
	height: 0;
	visibility: hidden;
	clear: both;
}

.clearfix {
	zoom: 1;
}
/* Clearfix for IE 7 */
.rPos {
	position: relative;
}

.aPos {
	position: absolute;
}

.marB0 {
	margin-bottom: 0px;
}

.marB5 {
	margin-bottom: 5px;
}

.marB10 {
	margin-bottom: 10px;
}

.marB15 {
	margin-bottom: 15px;
}

.marB20 {
	margin-bottom: 20px;
}

.marB25 {
	margin-bottom: 25px;
}

.marB30 {
	margin-bottom: 30px;
}

.marT10 {
	margin-top: 10px;
}

.marT5 {
	margin-top: 5px;
}

.padT20 {
	padding-top: 20px;
}

.padT5 {
	padding-top: 5px;
}

.marR10 {
	margin-right: 10px;
}

.marR5 {
	margin-right: 5px;
}

.marL5 {
	margin-left: 5px;
}

.padLR5 {
	padding-left: 5px;
	padding-right: 5px;
}

.w100 {
	width: 100px;
}
/* @end */
/* @group Framework */
.mainWrapper {
	min-height: 100%;
}

.wrapper {
	margin: 0 auto;
	width: 1200px;
	padding: 0;
}

#container {
	padding-bottom: 55px;
}

.overflowScroll {
	overflow: auto;
	padding: 10px;
	padding-bottom: 16px;
}

.overflowScrollTable {
	overflow: auto;
	padding-bottom: 16px;
}
/* @end */
/* @group Header */
.headerImg {
	padding-right: 10px;
}

.header table.blue2,.header table.blue2 td,.header table.blue2 th {
	background: none;
	border: none;
}

.MBSLogo {
	float: left;
	margin-top: -30px;
}

.airlineLogo {
	position: absolute;
	right: 13px;
    text-align:right;
    top:0;
    width:185px;
}
.branding {
    background:url(../images/header-top-bg.gif) repeat-x left top transparent;
    height:62px;
    overflow:hidden;
    position:relative;
    width:100%;
}
.headerLinks {
	clear: left;
	float: left;
	height: 23px;
	left: 50%;
	list-style: none outside none;
	margin: 0;
	padding: 0;
	position: relative;
	text-align: center;
}

.headerLinks li {
	display: block;
	float: left;
	list-style: none outside none;
	margin: 0;
	padding: 0;
	position: relative;
	right: 50%;
}
.headerLinks .welcome {
    background:url(../images/welcome-bg.gif) no-repeat left top transparent;
    color:#666666;
    font-size:11px;
    font-weight:bold;
    padding-left:8px;
}
.username {
    margin-left:5px;
}
.headerLinks .logout, .headerLinks .password {
    background:url(../images/logout-bg.gif) repeat-x 0 0 transparent;
    border:medium none;
    padding:0 10px 0 0;
}
.headerLinks .logout a, .headerLinks .password a, .headerLinks .userGuide a {
    background-image:url(../images/sprite/top-icons.png);
    background-repeat:no-repeat;
    color:#155EC2;
    display:block;
    font-size:11px;
    text-decoration:none;
}

.headerLinks .logout a {
	background-position: 2px 5px;
	border-left: medium none;
	display: block;
	padding-left: 19px;
}

.headerLinks .password a {
    background-position:0 -76px;
    padding-left:19px;
}
.headerLinks .userGuide {
    background:url(../images/userguide-bg.gif) no-repeat right top transparent;
    padding-right:8px;
}
.headerLinks .userGuide a {
    background-position:0 -35px;
    padding-left:19px;
}
/* @end */
/* @group navigation */
.navigation {
    float:right;
    width:1000px;
   	margin-top:5px;
    
}
.secNav {
float:right;
	font-size: 12px;
}

.secNav .welcomeTxt {
	float: none;
	font-size: 12px;
	padding-bottom: 4px;
}

.secNav .welcomeTxt h6 {
	color: #6d8000;
}

.secNav li {
	float: left;
	margin-right: 5px;
	font-size: 10px;
	color: #333333;
	padding-top: 4px;
}

.secNav .preference,.secNav .logout {
	padding: 0;
}

.secNav span {
	color: #FFFFFF;
	line-height: 22px;
	padding: 0 0 0 10px;
}

.secNav a {
	color: #FFFFFF;
	padding-right: 10px;
}

.preference a {
	background-position: right -280px;
}

.preference span {
	background-position: left -240px;
}

.secNav .logout {
	margin-right: 0;
}

.logout a {
	background-position: right -361px;
}

.logout span {
	background-position: left -321px;
}

.secNav a,.secNav span,.navFirst li,.navFirst a,.navFirst span {
	display: block;
	background-image: url(../images/menuBackground.png) repeat-x left bottom;
}

.secNav a {
	color: #fff;
	padding-right: 10px;
}
.secNav span {
    color:#fff;
    padding:0 0 0 10px;
    line-height:22px;
}

.navFirst li {
	float: left;
	position: relative;
	margin-right: 1px;
	color: #fff;
	padding-right: 6px;
	background-image: url(../images/top_menu_strip.png);
}

.navFirst li.navActiveFirst {
	background-image: url(../images/top_menu_active.png);
}

.firstMenuItem {
	-moz-border-radius: 8px 0px 0px 8px;
	border-radius: 8px 0px 0px 8px;
	-webkit-border-radius: 8px 0px 0px 8px;
	-khtml-border-radius: 8px 0px 0px 8px;
}

.lastMenuItem {
	-moz-border-radius: 0px 8px 8px 0px;
	-webkit-border-radius: 0px 8px 8px 0px;
	-khtml-border-radius: 0px 8px 8px 0px;
	border-radius: 0px 8px 8px 0px;
}

.navFirst a {
	float: left;
	color: #fff;
	padding: 0 0 0 6px;
	font-weight: bold;
cursor:pointer;
    white-space:nowrap;
    outline:none;
}
.navFirst span {
text-align:center;
    min-width:50px;
}
.navFirst ul {
	position: absolute;
	left: -9999px;
	border: 1px solid #9da502;
	border-top: none;
	background-color: #fff;
	display: none;
	z-index: 999;
}

.navFirst li:hover,.navFirst li.active {
	background-position: right -160px;
}

.navFirst li:hover a,.navFirst li.active a {
	background-position: left -120px;
}

.navFirst li:hover ul a {
	padding: 0;
	margin: 0;
}

.navFirst li:hover ul {
	left: 0;
	top: 30px;
	display: block;
}

.navFirst ul li {
	float: none;
	display: block;
	background: none;
	margin: 0;
	padding: 0;
	border-bottom: 1px solid #e9e9e9;
	position: static;
}

.navFirst ul a {
	float: none;
	display: block;
	padding: 0;
	margin: 0;
	background: none;
}

.navFirst ul li:hover {
	background-color: #eff1e5;
}

.navFirst li:hover ul ul {
	left: -9999px;
	border-top: 1px solid #9da502;
}
.navFirst li:hover li:hover ul {
    left:150px;
    top:-1px;
}
.navFirst .zeroLevelChild span {
 padding-right:3px;
    text-align:center;
}

.navFirst li:hover a.navChild span,.navFirst li.active a.navChild span {
	background-position: right -396px;
	padding-right: 20px;
}

.navFirst li:hover ul span {
	display: block;
	padding: 0 10px;
	background-position: -500px 500px;
	line-height: auto;
}
/* @end */
/* @group converTab Style */
.converTab {
	float: right;
	margin: 7px 10px 0 0;
	position: relative;
}

.converBtn {
	background-position: right -40px;
	float: right;
	padding-right: 10px;
}

.converBtn a {
	display: block;
	padding: 4px 0 4px 10px;
	font-size: 11px;
	color: #fff;
}

.converBtn span {
	background-position: right -3395px;
	padding-right: 10px;
}

.openConver span {
	background-position: right -3595px;
}

.converBox {
	position: absolute;
	right: 0;
	top: 23px;
	width: 270px;
	border: 1px solid #000;
	background-color: #fff;
}

.converBox li {
	display: block;
	padding: 5px 8px;
}

.converBox .converTitle {
	color: #000000;
	float: left;
    font-size:11px;
	padding-left: 25px;
	width: 215px;
	background-position: -500px 500px;
}

.converBox .closeConver {
	float: right;
	width: 11px;
	height: 11px;
	background-position: left -2050px;
}

.converBox li:hover {
	background-color: #f7f9ec;
}

.converBox li:hover .converTitle {
	color: #758501;
}

.converBox li:hover .closeConver {
	background-position: left -2000px;
}

.converBox li:hover .closeConver:hover {
	background-position: left -2100px;
}

.converBox li.active {
	background-color: #f7f9ec;
}

.converBox li.active .converTitle {
	background-position: left -897px;
	font-weight: bold;
	color: #758501;
}

.converBox li.active .closeConver {
	background-position: left -2000px;
}
/* @end */
/* @group Page Title */
.pageTitle {
   display: inline-block;
    line-height: 1.42;
    margin-top: 5px;
    font-size:16px;
    font-weight:600;
    /* margin-left:-30px; */
   float:right;
    margin-right:35px;
}
.pageTitle h1 {
    font-size:16px;
    color:#8b9a3d;
    margin:5px 0;
}
#breadcrumb {
    padding:5px 0 5px 0;
	color: black;
	font-size: 14px;
	padding-left: 25px;
}

#breadcrumb a {
	color: #8b9a3d;
	font-size: 14px;
}

#breadcrumb a:hover {
	text-decoration: underline;
}
/* @end */
/*@group Buttons*/
/* OPTIONAL BUTTON STYLES for applying custom look and feel:*/
button {
	border:0;
    padding:0;
    cursor:pointer;
    background:none;
    overflow:visible;
   font-family:inherit;
   
}
button::-moz-focus-inner {
  border: 0;
}
.btn-normal:focus {
   	color:#FFFFFF;
	background-color:#F06F1C;
  	outline: none;  	
    background-image:none;
    box-shadow:none;
}
.resetBtn:focus,.resetBtn:hover {
	color: #F06F1C;
	outline: none;
	background-image: none;
	text-decoration: underline;
}

button span {
	white-space: nowrap;
}
    
.btnSub {
    background-position:right -398px;
}

.btnSub span {
	background-position: left -298px;
}

.btnSub:hover {
	background-position: right -439px;
}
.btnSub:hover span {
    background-position:left -348px;
}
.resetBtn, .ui-widget .resetBtn {
    font-size:11px;
    color:#155EC2;
margin-right:5px;
    background:none;
	border: none;
	cursor: pointer;
}

.btn-normal {
	-moz-user-select: none;
	background-image: none;
	border: 1px solid transparent;
	cursor: pointer;
	display: inline-block;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.42857;
	margin-bottom: 0;
	padding: 6px 12px;
	text-align: center;
	vertical-align: middle;
	white-space: nowrap;
	background-color: #337ab7;
	border-color: #2e6da4;
	color: #fff;
}

.btnDownArrow span {
    background-position:right -3394px;
    display:block;
	padding-right: 10px;
}

.btnUpArrow span {
	background-position: right -3595px;
	display: block;
	padding-right: 10px;
}

.buttonBox .btn-normal {
	margin-top: 3px;
	border: none;
}
.buttonBox .resetBtn {
    margin-top:6px;
}
.buttonBox td.padLR10 {
 padding:5px;
}
.btnfRight {
	float: right;
	margin: 0 0 0 5px;
}
.btn-black {
    background:#000 url(../images/btn_black_n.png) repeat-x left top;
    border:1px solid #000000;
    color:#FFFFFF;
    float:left;
    font-size:10px;
    margin-right:10px;
    padding:2px 5px;
    text-transform:uppercase;
    cursor:pointer;
}
.btn-black:hover {
	background: #6b6b6b url(../images/btn_black_r.png) repeat-x left top;
}
.cancelLink,.clearLink {
	float: left;
	margin: 6px 0 0 0;
	font-size: 11px;
	text-decoration: underline;
	background: none;
	border: none;
	text-transform: capitalize;
	color: #155ec2;
	cursor: pointer;
}

.addMoreBtn {
	background-position: left -4066px;
	border: none;
	cursor: pointer;
	height: 18px;
	width: 18px;
}

.addMoreBtn:hover {
    background-position:left -4108px;
}
.grayBtn {
    float:left;
    font-size:11px;
    color:#555;
    border:1px solid #bdbcbd;
    height:21px;
    cursor:pointer;
    background:#dfdfdf url(../images/greayBtn.png) repeat-x left bottom;
    padding:0 4px;
	margin-right: 10px;
}
.grayBtn:hover {
    background:#dfdfdf url(../images/greayBtnHover.png) repeat-x left top;
}
.buttons
{
	padding:5px;
}
.defaultForm td.buttonBox, .buttonBox {
    padding:5px 0 5px 178px;
	border: none;
}

td.buttonBox {
    background-color:#eef1e0;
    border:none;
    padding:4px 0 3px 178px;
}
/* @end */
/* @group dataTable Styles */
div.dataTable
{
	margin-left:0px;
	margin-right:0px;
	width:100%; 
}

table.dataTable {
    border-collapse:collapse;
	border-spacing: 0;
	width: 100%;
	border-top: 1px solid #cbcbcb;
    margin-bottom:0px;
	-moz-border-radius-bottomleft: 10px;
}
.dataTable th {
    font-weight:bold;
    font-weight:normal;
    text-align:center;
    vertical-align:bottom;
    padding:0.5em 0.6em 0.4em;
    border:1px solid #cbcbcb;
    background-image: none, linear-gradient(to bottom, rgba(0, 0, 0, 0.01) 0px, rgba(0, 0, 0, 0.08) 100%);
}
.dataTable paginator {
    border-left:none;
    border-right:none;
    border-top:1px solid #cbcbcb;
}

.dataTable th.firstTd {
	background: url(../images/dataThLeft.png) no-repeat left top;
}

.dataTable th.lastTd {
	background: url(../images/dataThRight.png) no-repeat right top;
}

.dataTable td {
	padding: 3px 10px;
	vertical-align: top;
	border: 1px solid #cbcbcb;
   /*  white-space:nowrap; */
}
.defaultForm .dataTable td {
    padding:3px 10px;
    border-right:1px solid #cbcbcb;
    color:#333;
    font-size:11px;/*normal 11px/15px "trebuchet ms","trebuchet ms",arial;*/
	font-weight:normal;
    vertical-align:top;
    width:auto;
    background-color:#fff;
}
.dataTable td.firstTd {
	background: url(../images/dataBodyLeft.png) repeat-y left top;
}

.dataTable td.lastTd {
	background: url(../images/dataBodyRight.png) repeat-y right top;
}

.dataTable .odd td {
	background-color: #FFFFFF;
}

.dataTable .even td {
	background-color: #f5f5f5;
}

.dataTable .select td {
	background-color: #fffee4;
}

.dataTable .actionSelect td {
	background-color: #EEF1E0;
}
.dataTable .rowEven td.rowSelected, .resultsTbl td.rowSelected {
    background-color:#FFD700;
}
.dataTable .rich-table-row:hover .colCenter,.dataTable .rich-table-row:hover .colRight,.dataTable .rich-table-row:hover .colLeft,.dataTable .rich-table-row:hover .rich-table-cell {
    background-color:#fffee4;
}
.dataTable .actions-1 {
    width:40px;
}

.dataTable .actions-2 {
	width: 60px;
}

.dataTable .actions-3 {
	width: 95px;
}

.dataTable .actions-4 {
	width: 135px;
}

.dataTable .actions-5 {
	width: 175px;
}

.dataTable .actions-6 {
	width: 210px;
}

.dataTable .actions-7 {
	width: 245px;
}

.dataTable .actions-8 {
	width: 285px;
}

.dataTable .actions-9 {
	width: 320px;
}

.dataTable .actions-10 {
	width: 360px;
}
.dataTable .actions-11 {
    width:395px;
}
.dataTable th a, .dataTable td a {
    font-weight:normal;
    text-decoration:none;
}
containNoBorder.dataTable a:hover {
    color:#626262;
	text-decoration: none;
}

.gridFooter {
	background: url( ../images/dataFooterMiddle.png) repeat-x left bottom;
}

.gridFooter td.firstTd {
	width: 50px;
	background: url(../ images/dataFooterLeft.png) repeat-y left bottom;
}

.gridFooter td.lastTd {
	width: 50px;
	background: url( ../images/dataFooterRight.png) repeat-y right bottom;
}

.dataTable .colLeft {
	text-align: left;
}
.dataTable .colRight {
	text-align: right;
}

.dataTable .colCenter {
	text-align: center;
}

.dataTable th.sortable a {
	display: inline !important;
	width: auto;
	color: inherit;
}

.dataTable th.ascending a {
	display: inline !important;
	width: auto;
	color: inherit;
}

.dataTable th.descending a {
	display: inline !important;
	width: auto;
	color: inherit;
}

div.tableDiv {
	border: 1px solid #86CCEF;
	width: 99%;
	padding: 0px;
	padding-right: 0px;
	display: block;
	margin-left: 0px;
	margin-right: 0px;
	overflow: auto;
	position: relative;
}

.resultsTitle {
	color: #444444;
	float: right;
	font: 12px/19px arial;
	padding-left: 10px;
	padding-right: 10px;
}

.resultsTitle span {
	float: left;
}

.resultsTitle .records {
	color: #333333;
    font-weight: normal;
    margin-top:4px;
   
}
.resultsTitle .moreRecords {
    background:url("../images/tdRightBorder.gif") no-repeat scroll left center transparent;
    color:#901010;
    font-size:12px;
    margin-left:10px;
    padding-left:10px;
    margin-top:4px;
}

.errorMsg {
	background-color: #ffe5e5;
	background-position: 5px -1596px;
	border: 1px solid #c50a0a;
	color: #c50a0a;
    font-size:14px;
	padding: 5px 5px 5px 35px;
}

.noDataFound {
	background-color: #ffe5e5;
	background-position: 5px -1596px;
	border: 1px solid #c50a0a;
	color: #c50a0a;
   font-size:14px;
	padding: 5px 5px 5px 35px;
}

.successMsg {
	background-color: #effbcd;
	background-position: 5px -1190px;
	border: 1px solid #aab87a;
	color: #566401;
    font-size:14px;
	padding: 5px 5px 5px 35px;
}

.confirmationMsgPop {
	background-color: #effbcd;
	border: 1px solid #aab87a;
	background-position: 10px -5590px;
	padding: 10px 10px 10px 45px;
}

.confirmationMsgPop p {
	font-size:12px;
	color: #566401;
}

.alertMsgPop {
	background-color: #ffe5e5;
	border: 1px solid #c50a0a;
	background-position: 10px -5490px;
	padding: 10px 10px 10px 45px;
}

.alertMsgPop p {
	font-size: 12px;
	color: #C50A0A;
}

.warningMsgPop {
	background-color: #ffe5e5;
	border: 1px solid #c50a0a;
	background-position: 10px -5490px;
	padding: 10px 10px 10px 45px;
	;
}

.warningMsgPop p {
	font-size: 12px;
	color: #C50A0A;
}
/* @end */
/* @group collapse PAnnel Styles */
.collapseDefault {
	background: url(../images/greyBg.png) repeat-x;
	border: 1px solid #cbcbcb;
	color: #5a5a5a;
	font-size: 12px;
	font-weight: bold;
	cursor: pointer;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	/* Safari, Chrome */
	-khtml-border-radius: 5px;
	/* KHTML */
	border-radius: 5px;
}

.collapseGreen {
	background: url(../images/blueBg.png) repeat-x;
	height: auto;
	border: 1px solid #CBCBCB;
	color: #FFFFFF;
	font-size: 12px;
	font-weight: bold;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	/* Safari, Chrome */
	-khtml-border-radius: 5px;
	/* KHTML */
	border-radius: 5px;
}

.fixedLiteral {
	background: url(../images/greyBg.png) repeat-x;
	height: 18px;
    border:1px solid #000000;
    color:#5a5a5a;
    font-size:12px;
    font-weight:bold;
}
.collapseContainer {
     -moz-border-radius:0 0 5px 5px;
     -webkit-border-radius:0 0 5px 5px;
	-khtml-border-radius:0 0 5px 5px;
	border-radius:0 0 5px 5px;
    font-weight:normal;
	color: #333;
	padding: 5px 5px 10px;
}

.collapseDisable {
	background-color: #fff;
	border: 1px solid #cbcbcb;
	color: #cecece;
	font-size: 12px;
	font-weight: bold;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	/* Safari, Chrome */
	-khtml-border-radius: 5px;
	/* KHTML */
	border-radius: 5px;
}

.collapseDisable span {
	display: block;
	margin: 5px;
}
/* @end */
/* @group element Group Styles */

.elementGroup h4 {
	background: url(../images/greyBg.png) repeat-x;
	border: 1px solid #8a8a8a;
	color: #5a5a5a;
	font-size: 12px;
	font-weight: bold;
	padding: 5px 10px;
}

.elementGroupBody {
	padding: 10px;
	border: 1px solid #9da502;
	border-top: none;
}
/* @end */
/* @group Main Box Styles */
.mainBox {
 padding:5px 0px 10px 10px;
 margin-top:40px;
}

.expandHead {
	border-bottom: 1px dashed #B9B9B9;
	padding: 5px 0 3px 5px;
	text-align: left;
	margin-right: 10px;
}

.expandHead a {
	color: #155EC2;
	display: block;
	font-size: 11px;
	text-align: left;
	width: 400px;
}

.groupExpandHead {
	margin: 0 0 15px 0;
}

.groupExpandHead a {
	text-align: left;
	padding-left: 5px;
	width: auto;
}

.groupExpandTable {
	border-bottom: 1px dashed #B9B9B9;
	margin-bottom: 15px;
	padding-bottom: 10px;
}
/* @end */
/* @group Pagination */
.paginationBox {
	background: url(../images/paginationBg.png) no-repeat;
	border: medium none;
	font-size: 11px;
	margin: 5px auto;
	text-align: center;
	width: 270px;
    /* align:center; */
}

.paginationBox strong {
	background: url(../images/pageActBg.png) no-repeat center center #F6F6F6;
	color: #666666;
	display: inline-block;
	height: 29px;
	width: 17px;
}

.paginationBox {
	color: #155ec2;
	overflow: hidden;
}

.paginationBox a {
	color: #155ec2;
}

tr.paging-inline td,.defaultForm tr.paging-inline td {
	font-size: 11px;
	font-weight: bold;
	color: #626262;
	font-weight: bold;
	text-align: center;
	vertical-align: bottom;
	padding: 3px 10px;
	border-top: 1px solid #CBCBCB;
	text-align: left;
}

.scrollTable {
	border: 1px solid #cbcbcb;
}

.scrollTable .paging-inline td {
	border: none;
}
/* @end */
/* @group Footer */
.footer {
	margin-top: 50px;
}

.footer p {
    float: left;
    font-size: 10px;
    margin-left: 50px;
}
.kaleImg {
    background:url("../images/accelyaFooter.png") no-repeat right bottom transparent;
    float:right;
    padding:10px 63px 4px 0;
}
.accelyaImg {
    background:url("../images/accelya.png") no-repeat 0 0 transparent;
    height:12px;
    width:52px;
}
/* @end */
/* @group Sprite Styles */
.loginBtn, .loginBtn span, .tolFree, .email, .arrowRed, .arrowGreen, .plusIcon, .minusIcon,  .greyDown {
    background-image:url(../images/icons.png);
    background-repeat:no-repeat;
}
.actionExtrasIcon a, .actionExtrasIcon input, .collapseButton, .expandButton, .greenUp, 
.inlineError, .noDataFound, .errorMsg, .successMsg, .tab a.tabClose, .tooltipHead .tooltipClose, .toolTipIcon a, 
.closeButton, .btnDownArrow span, .btnUpArrow span, .addMoreBtn, .warningMsgPop, .alertMsgPop, .confirmationMsgPop, .converBtn span, .converBox a {
    background-image:url(../images/icon_sprite.png);
    _background-image:url(../images/icon_sprite_ie6.png);
    background-repeat:no-repeat;
}

.actionExtrasIcon {
	display: inline-block;
}
.dataTable a.actionExtrasIcon , .dataTable .actionExtrasIcon input {
	display: inline-block;
	height: 20px;
	width: 20px;
	cursor: pointer;
	border: none !important;
	padding: 0;
	margin: 0;
	background-color: transparent;
}

.simple-clickable-table a.actionExtrasIcon , .simple-clickable-table .actionExtrasIcon input {
	cursor:pointer;
    border:none !important;
    padding:0;
    margin:0;
    background-color:transparent;
}

.actionExtrasIcon a.disable,.actionExtrasIcon input.disable {
	cursor: default;
}

.htmlIcon a {
	background-position: 3px -4598px;
}

.xmlIcon a {
	background-position: 3px -4698px;
}

.rtfIcon a {
	background-position: 3px -4798px;
}

.pdfIcon a {
	background-position: 3px -4898px;
}

.excelIcon a,.excelIcon {
	background-position: 2px -4998px;
}

.jpgIcon a {
	background-position: 2px -5098px;
}

.tifIcon a {
	background-position: 2px -5198px;
}

.iconRborder {
	background: url(../images/iconRightBorder.gif) no-repeat right top;
	margin-right: 5px;
	padding-right: 9px;
	height: 20px;
}

.plusIcon {
	background-position: left -583px;
}

.minusIcon {
	background-position: left -534px;
}

.greenUp {
	background-position: left -1285px;
	display: block;
	margin: 5px;
	padding: 0 15px;
	cursor: pointer;
}

.greyDown {
    background-position:left -720px;
    display:block;
    margin:5px;
    padding:0 15px;
}
/* @end */
.headerFields {
    color:#155EC2;  
    padding-right:0px;
    text-align:left;
    font-weight:bold;
   
}

.listDiv {
	overflow-x: auto;
	width: 970px;
	overflow-y: hidden;
}

.attachmentListDiv {
	overflow-x: auto;
	width: auto;
	overflow-y: auto;
	height: 100px;
}

.billinglistDiv {
	overflow-x: auto;
	width: 1177px;
	overflow-y: hidden;
}

.chartDiv {
	overflow-x: auto;
	width: 800px;
	overflow-y: hidden;
}

.periodlistDiv {
	overflow-x: auto;
	width: 970px;
	overflow-y: hidden;
}

.listDivNoBorder {
	overflow-x: auto;
	overflow-y: hidden;
}

.tabListDiv {
	overflow: auto;
	width: 1200px;
}

.searchListDiv {
     border: 1px solid #CBCBCB;
	padding:5px;
	 -moz-border-radius:6px;
    -webkit-border-radius:6px;
    -khtml-border-radius:6px;
    border-radius:6px;
}
.searchCriteriaDiv{
	padding:5px;
	-moz-border-radius:6px;
    -webkit-border-radius:6px;
    -khtml-border-radius:6px;
    border-radius:6px;	
    cursor:pointer;
}
.intChartDiv {
overflow:auto;
    width:1200px;
}

.tableListDiv {
	overflow: auto;
	width: auto;
}
.multiSelectAll {
    text-align:left;
    width:200px;
}

.listGrid {
    border:1px solid #cbcbcb;
 margin-left:1.5px;
    width:99%;
}

.rightpadding {
    padding-right:5px;
}

.groupLabel {
	display: block;
	font-size: 13px;
	font-weight: bold;
	color: #333;
	padding-left: 5px;
}
/* @group Fly Out Style */
.flyout {
    position:relative;
}
.defaultFlyoutWidth
{
	width:250px;
	right:0px;
}
.flyoutBox {
    position:absolute;
	border: 2px solid #343F4F;
	padding: 5px;
	background-color: #fff;
	z-index: 10;
}
.leftDirec .flyoutBox {
    left:0px;
    top:23px;
}
.rightDirec .flyoutBox {
    top:23px;
}
.flyoutBox .dataTable td {
    border-right:1px solid #CBCBCB;
    border-bottom:1px solid #CBCBCB;
	background-color: transparent;
}

.flyoutBtnBox textarea {
	font-size: 11px;
	padding: 2px 5px;
	color: #333;
	border: 1px solid #CBCBCB;
	float: left;
	height: 56px;
	margin-right: 5px;
	width: 210px;
}

.flyoutBtnBox .btn-normal {
	float: left;
	margin-top: 42px;
}
/* @end */
/* @group popUp */
   
.popUpBox .ui-dialog-titlebar-close {
    background:none;
    width:18px;
    height:18px;
    padding:0;
    color: red;
    
}
.ui-dialog .ui-dialog-titlebar-close span
{
	background-image:none;
}
.ui-dialog .ui-dialog-titlebar-close button
{
	color:red;
}

.popUpBox .scroll-pane {
    height:325px;
    overflow:auto;
}
/* @end */
/* @group defaultForm */
.mandatoryMsg {
    background:url("../images/asteriskMark.png") no-repeat scroll left 2px transparent;
    padding-left:10px;
}
th .btn-normal span
{
	background:none;
}
.mandatory,  .mandatory a, th.mandatory a ,th.mandatory > span {
    background:url("../images/asteriskMark.png") no-repeat scroll left top transparent;
    padding-left:10px;
}
.defaultForm {
    width:100%;
}

.defaultForm td {
	font-size: 11px;
	font-weight: normal;
	color: #333;
}

.defaultForm td.spacer {
	padding: 0;
	height: 4px;
	line-height: 4px;
}

.defaultForm .sparater {
	padding: 15px 0 5px 0;
	height: 1px;
	line-height: 1px;
}

.defaultForm .sparater span {
	display: block;
	border-bottom: 1px dotted #B9B9B9;
}

.defaultForm .formLabelHead label {
	display: block;
	font-size: 13px;
	font-weight: bold;
	color: #333;
	border-bottom: 1px dotted #b9b9b9;
	padding-left: 5px;
}

.defaultForm td.formLabel,.formLabel {
	font-size: 11px;
	font-weight: bold;
	color: #333;
	text-align: right;
    vertical-align:top;
    padding:7px 5px 3px 0;
}
.topFormLabel
 {
 margin-top:3px;
 text-align: left;
 margin-left: 3px;
 display: grid;
}

.defaultForm td.checkBoxLabel {
	padding-top: 3px;
}

.defaultForm td.checkBoxField {
	padding: 8px 0 5px 0;
}

.defaultForm .fieldGroup {
    background-color:#f9f9f9;
}
.defaultForm .fieldGroupSpacer {
    background:#f9f9f9 url(../images/fieldGroupSpacerBg.png) repeat-y right top;
    padding-right:4px;
}
.formLabelTo {
	font-size:11px;
	font-weight:bold;
	color: #333;
	float: left;
	margin: 2px 5px 0 0;
}

.iconCalender {
    margin-top:1px;
}

input.errorInput {
	border: 1px solid #c50a0a;
}

.inlineError {
	background-position: left -1120px;
	color: #ca0303;
	display: inline-block;
	font-size: 11px;
	font-weight: bold;
	padding-left: 20px;
	margin-top: 2px;
}

textarea.hilitedGroup,.hilitedGroup {
	background-color: #f7f9ec;
	border: 1px solid #e0e2b1;
}
#message_box {
    position:fixed;
    _position:absolute;
    left:0px;
    z-index:1000;
    bottom:0;
    width:100%;
    zoom:1;
    display:block;
}
.message_boxPad {
    border-bottom:none;
    background-color:#fff;
    border-radius: 0rem;
}
.messageTitleBox {
    background-color:#ffe5e5;
	font-size: 13px;
	font-weight: bold;
	color: #c50a0a;
	border-bottom: 1px solid #c50a0a;
	padding: 3px 5px;
}
.messageAction {
	float: right;
	margin: 10px 5px 0 0;
}

.collapseButton {
	background-position: left -1436px;
	height: 16px;
	width: 16px;
	display: block;
}

.closeButton {
	background-position: left -362px;
	height: 16px;
	width: 16px;
	display: block;
}

.expandButton {
	background-position: left -1486px;
	height: 16px;
	width: 16px;
	display: block;
}

#message_box .errorContainer {
	padding: 0;
	margin: 0;
	border: none;
	background: none;
	padding: 10px 33px;
	font-size: 11px;
    color:#c50a0a;
    min-height:75px;
    max-height:192px;
    height:auto !important;
    height:192px;
    overflow:auto;
}
#message_box .errorContainer li {
    display:block;
    margin-bottom:5px;
}

#message_box .errorContainer a {
	color: #c50a0a;
}

#message_box a.error {
	color: #c50a0a;
	;
}

#message_box a.informatrion {
	color: #669900;
}

#message_box a.warning {
	color: orange;
}

#message_box .errorContainer a {
	font-size:14px;
}

#message_box .errorContainer a:hover {
	text-decoration: underline;
}
/* @end */
/* @group normalTab */
.tabBox {
    z-index:999;
    padding-left:10px;
}
.arrowSep{
	background:url("../images/conversationArrow.png");
	height:30px;
	width:20px;
}

.tab {
 background:url("../images/conversationBg.png") ;
 background-repeat:repeat-x;
 border:1px solid #343f4f;	
 -moz-border-radius:8px;
  -webkit-border-radius:4px;
    -khtml-border-radius:4px;
    border-radius:4px;
}
.tabBox  ul {
	    margin-bottom: 0px;
	    font-size:14px;
}
.tab li {
    float:left;   
	position:relative;   
}

.tab a, .tab span {
    float:left;
    display:block;
}
.tab .active a.tabClose {
    top:8px;
    right:8px;
    display:block;
    width:11px;
    height:11px;
    background-position:left -2000px;
    padding:0px;
	margin-top: -2px;
	margin-right: 3px;
}

.tab .active a.tabClose:hover {
	background-position: left -2100px;
}

.tab a {
	padding-right: 10px;
	background-position: right -36px;
}

.tab span {
	font-size: 12px;
	font-weight:bold;
    color:#2a2a2a;
    padding:5px 0px 5px 10px;
    height:28px;
}

.tab .active span {
    font-weight:bold;
    color:#000000;
}
/* @end */
/* @group normalTab */
td.tf_tab {
	border: 1px solid #cbcbcb;
	border-bottom: 1px solid #b2c551;
	background: url(../images/normalTabBg.png) repeat-x left top;
	padding: 4px 10px;
	white-space: nowrap;
}

td.tf_tab .tb_label {
	font-size: 11px;
	color: #666;
}

td.tf_tab_active {
	border: 1px solid #b2c551;
	border-bottom: none;
	background: url(../images/normalTabActiveBg.png) repeat-x left top;
}

td.tf_tab_active .tb_label {
	font-size: 11px;
	font-weight: bold;
	color: #2a2a2a;
}

td.tf_separator {
	border-bottom: 1px solid #b2c551;
}
td.tf_sheet {
    border:none;
    padding:0;
    vertical-align:top;
}
div.tf_sheet {
	border-width: medium 1px 1px;
	padding: 10px;
}
/* @end */
/* @group tree */
.treeWrap {
	border: 1px solid #cbcbcb;
}

.treeTd {
	width: 17%;
	border-right: 1px solid #cbcbcb;
}

.treeBtn {
	background-color: #f5f5f5;
	display: block;
	padding: 5px;
    margin:0px;
}

#treeDiv {
	padding: 2px;
}

.tree-default {
	padding: 10px 5px;
}

#treeDiv .tree ul {
    margin:0px;
}

#Root {
	display: block;
}

#response {
	padding: 10px;
}
/* LOCKED */
.tree-default .locked li a {
    color:gray;
}
/* DOTS */
.tree-default ul {
   background-position:6px 1px; 
   background-repeat:repeat-y;
    background-image:url(data:image/gif;base64,R0lGODlhAgACAIAAAB4dGf///yH5BAEAAAEALAAAAAACAAIAAAICRF4AOw==);
     _background-image:url("dot_for_ie.gif"); 
     *background-image:url("dot_for_ie.gif"); 
}
.tree-default li {
    background-position:-59px -16px;
    background-repeat:no-repeat;
    background-image:url("../images/treeIcons.png");
}
/* NO DOTS */
.tree-default .no_dots,.tree-default .no_dots ul {
	background: transparent;
}

.tree-default .no_dots li.leaf {
    background-image:none;
    background-color:transparent;
}
/* OPEN or CLOSED */
.tree-default li.open {
    background:url("../images/appIcons.png") -29px -46px no-repeat;
}
.tree-default li.closed, #jstree-dragged.tree-default li li.open {
    background:url("../images/appIcons.png") -47px -33px no-repeat;
}
#jstree-marker {
    background-image:url("../images/appIcons.png");
}
/* DEFAULT, HOVER, CLICKED, LOADING STATES */
.tree-default li a, .tree-default li span {
    border-radius:3px;
    -moz-border-radius:3px;
    -webkit-border-radius:3px;
}
.tree-default li a:hover, .tree-default li a.hover, .tree-default li span {
    background:#e7f4f9;
    border:1px solid #d8f0fa;
    padding:0px 3px 0px 3px;
}
.tree-default li a.clicked, .tree-default li a.clicked:hover, .tree-default li span.clicked {
    background:#beebff;
    border:1px solid #99defd;
    padding:1px 3px 1px 3px;
}
/*Tree ICONS */
.tree-default ins {
    background-image:url("../images/appCustomIcon.png");
  background-position: 0px -624px;
    background-repeat:no-repeat;
}
.tree-default ul li a.loading ins {
    background-image:url("throbber.gif") !important;
    background-position:0 0 !important;
}
/* UL is added to make selector stronger */
.tree-default li a ins.forbidden {
	background-position: -16px -16px;
}

.tree-default .locked li a ins {
    background-position:0px -48px;
}
.tree-default li span ins {
    background-position:-16px 0px;
}
#jstree-dragged.tree-default ins {
    background:url("../images/appIcons.png") -16px -32px no-repeat;
}
#jstree-dragged.tree-default ins.forbidden {
    background:url("../images/appIcons.png") -16px -16px no-repeat;
}
/* CONTEXT MENU */
.tree-default-context a ins {
    background-image:url("../images/appIcons.png");
    background-repeat:no-repeat;
    background-position:-64px -64px;
}
a ins.create {
    background-position: 0px -52px;
}

.tree-default-context a ins.create {
	background-position: 0px -52px;
}

.tree-default-context a ins.rename {
	background-image: url("../images/appCustomIcon.png");
	background-repeat: no-repeat;
	background-position: 0px -338px;
}

.tree-default-context a ins.remove {
	background-position: 0px -234px;
}

.tree-default-context a ins.permission {
	background-position: 0px -156px;
}

.tree-default-context a ins.uploadfile {
	background-position: 0px -468px;
}

/* @end Tree Icons */
/* @group tooltipBox */
.toolTipIcon {
	position: relative;
}

.toolTipIcon a {
	background-position: left -2300px;
	display: inline-block;
	height: 15px;
	margin-top: 2px;
	width: 15px;
}

.tooltipBox {
	position: absolute;
	left: 10px;
	top: -5px;
	background: url(../images/toolTipBg.png) no-repeat 6px 6px;
	padding-left: 13px;
}

.tooltipPad {
	border: 1px solid #9ca402;
	background-color: #fff;
}

.tooltipHead {
	border-bottom: 1px dashed #9ca402;
	padding: 5px 8px;
}

.tooltipPad h4 {
	font-size: 11px;
	font-weight: bold;
	color: #667a00;
	border-bottom: 1px dashed #9ca402;
	padding: 5px 5px;
}

.toolTipIcon a.tooltipClose {
	position: absolute;
	right: 5px;
	top: 5px;
	display: block;
	width: 11px;
	height: 11px;
	background-position: left -2000px;
	margin-top: 2px;
}

.toolTipIcon a.tooltipClose:hover {
	background-position: left -2100px;
}

.tooltipBody {
	background-color: #fff;
	padding: 5px 15px 5px 5px;
	font-size: 11px;
	color: #333;
}
/* @end */
/* @group preloader */
.preloaderOvelay {
	position: absolute;
    left:0px;
    top:0px;
	width: 100%;
	height: 100%;
	background-color: #000;
	filter: alpha(opacity = 80);
	/* internet explorer */
	-khtml-opacity: 0.8;
	/* khtml, old safari */
	-moz-opacity: 0.8;
	/* mozilla, netscape */
	opacity: 0.8;
	/* fx, safari, opera */
}

.preloader {
	position: absolute;
	top: 40%;
	left: 43%;
	border: 7px solid #85892B;
}

.loaderTxt {
	padding: 10px 20px;
	background-color: #fff;
}

.loaderTxt p {
	color: #424605;
	font-size: 10px;
	font-weight: bold;
    margin:0px 0px 5px 6px;
}

.loaderTxt img {
	display: block;
	margin-bottom: 5px;
}

.loaderTxt span {
    color:#686e08;
    display:block;
    margin-left:6px;
}
.roundAll5 {
    -moz-border-radius:5px;
    -webkit-border-radius:5px;
    -khtml-border-radius:5px;
    border-radius:5px;
}
/* @end */
.upperCase {
    text-transform:uppercase;
}
.lowerCase {
    text-transform:lowercase;
}

.ui-datepicker {
    z-index:1050 !important;
    border:1px solid #6B6B6B;
    width: 19em;
}

table.gridTable {
	border-collapse: collapse;
	border-spacing: 0;
	width: 100%;
}
.gridTable td {
	padding: 5px 10px;
	color: #333;
	font-size: 11px;
	vertical-align: top;
}

.taxVatGrid {
	overflow: auto;
	width: 600px;
	height: 100px;
}

.btnDisable {
	filter: alpha(opacity = 0.2);
	/* internet explorer */
	-khtml-opacity: 0.2;
	/* khtml, old safari */
	-moz-opacity: 0.2;
	/* mozilla, netscape */
	opacity: 0.2;
	/* fx, safari, opera */
	cursor: default;
}

.warningTitle {
	color: #CA0303;
	font-size: 12px;
	font-weight: bold;
	/* font:bold 12px "trebuchet ms",arial;*/
	margin-top: 2px;
	padding-left: 5px;
}

table.jqplot-legend {
    width:130px;
}
.dataTable td.error {
    color:red;
}
   
.dashletClose {
    height:16px;
    padding:0pt;
    width:16px;
    background:url(../images/popUpClose.png) no-repeat scroll left top transparent;
    float:right;
}
.dashletContainer {
	display:inline-block;
    padding:5px;
    border-top:1px solid #B1C64F;
    font-weight:normal;
    color:#333;
}
.trBottom {
	border-bottom: 1px solid #cbcbcb;
}

.linkDetail a.tableColumnLink {
	color: #155EC2;
	font-size: 11px;
}

.dataTable a.tableColumnLink {
	color: #155EC2;
}
.linkDetail {
    width:100%;
    border:none;
    display:inline-block;
}
.linkDetail td {
    padding:0px;
	color: #333;
	font-size: 11px;
	vertical-align: top;
	border-top: 1px solid #bcbcbc;
}

.linkDetail .even td {
	background-color: #f7f7f7;
}

.linkDetail .select td {
	background-color: #fffee4;
}

.linkDetail a {
	color: #626262;
	font-size: 11px;
	font-weight: bold;
	text-decoration: none;
}

.linkDetail a:hover {
	color: #626262;
	text-decoration: none;
}
.inlineDataCapture input.error {
    background:white;
    border:1px solid #BCBCBC;
}

.collapseGreenIDC {
	background: white;
	height: auto;
	color: #808080;
	font-size: 12px;
	font-weight: bold;
}

.warningTitle {
	color: #CA0303;
	font-size: 12px;
	font-weight: bold;
	margin-top: 2px;
	padding-left: 5px;
}

.refDivScroll {
    width:100%;
	overflow-x: auto;
	overflow-y: hidden;
}

.dialofDefaultWidth {
    width:570px;
}
.dialofTwoColsWidth {
	width: 850px;
}

.dialofThreeColsWidth {
	width: 1000px;
}

.newIDCStyleLargeWidth {
	width: 1170px;
}
.newIDCStyleSmallWidth {
    width:1043px;
}
.defaultCustDialogListSection {
    width:445px;
    border:1px;
}
.twoCustDialogListSection {
    width:800px;
    border:1px;
}
.threeCustDialogListSection {
   /*  width:950px; */
    border: 1px solid #bcbcbc;
    padding: 5px;
}
/* Start:-from control.css*/
a.error {
    color:red;
}

a:visited.error {
	color: red;
}

input.disabled {
	background: #d3d3d3;
}

input.error {
	background: white;
	border: 1px solid #c50a0a;
}

label.error {
	color: black;
}

select.error {
	background: white;
	border: 1px solid #c50a0a;
}

span.disabled {
	color: #808080;
}

span.error {
	color: red;
	font-size: 13px;
}

span.required {
	color: red;
	padding: 2px;
}

textarea.error {
	background: white;
	border: 1px solid red;
}

table.form {
	border-width: 0;
	margin: 0px;
	padding: 0px;
	width: 100%;
}

table.fields {
	border-width: 0px;
	margin-top: 0px;
	padding: 0px;
	vertical-align: baseline;
	width: 100%;
}

table.errors {
    border-width:0px;
    margin:0px;
    padding:0px;
    vertical-align:baseline;
}
table.buttons {
width:100%;
}

label {
	white-space: nowrap;
}

.fieldLabel {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
    font-size: 0.9rem;
    margin-top: 0.4rem;
    display: block;
    max-width: 11.55rem;
}
/*End Control.css */
.progressBar {
	background: url(../images/loading.gif) center;
	padding-bottom: 1px;
	height: auto;
	background-repeat: no-repeat;
}

.floatPaginator {
	position: absolute;
}

.paginatorTable td {
	border: none;
}

.paginatorNumber {
    width:20%;
	float: right;
}

.paginatorMsg {
    width:20%;
}
.paging-inline-td {
    border:1px solid;
}
.tableBody {
height:auto;
}
.filterDiv
{	
    border-radius:8px;
    width:auto;
}
.filterContainer {
	float: right;
	padding: 0.5em 0.4em 0.4em;
	position: relative;
	margin: -0.5em -0.9em -0.4em;
}
.filterField{
     
    margin-bottom:10px;
    
}

.filterHeader {
	border: 1px solid #b1c64f;
	padding: 5px 10px;
}

.containNoBorder input {
	border: none;
	color: #626262;
	font-size: 11px;
	font-weight: bold;
	text-decoration: none;
	background-color: transparent;
}
.containNoBorder th {
	padding: 5px 4px;
}
.selectPageSize {
	float: right;
	padding-right: 5px;
	margin-top: 1px;
}
.selectPageSize select {
	width: 40px;
	margin-top: 2px;
}
   
.languageSelect {
	width: 80px;
}

.headerForm {
	float: right;
}

.verticalTextDiv {
	border: 1px solid #333;
	float: left;
	margin-top: 70px;
	padding-bottom: 2px;
	padding-right: 1px;
	padding-top: 4px;
	background-color: #DCE5E4;
	position: fixed;
    left:0px;
    top:0px;
	-moz-border-radius: 0px 6px 6px 0px;
	border-radius: 0px 6px 6px 0px;
	width: 32px;
	z-index: 1000;
}

/*Start Widgets */
.fixPortlet {
	background: url("../images/greenBg.png") repeat-x scroll 0 0 transparent;
	border: 1px solid #B1C64F;
    margin:0px 0px 10px;
	width: auto;
}

.widgetHeader {
	cursor: move;
	font-weight: bold;
	padding-bottom: 25px;
}
.widgetHeader a {
    color:#444433;
    font-weight:bold;
}
.widgetContent {
 padding:5px;
}
.widgetLink {
    float:right;
}

.widgetContent p {
	line-height: 150%;
	text-align: justify;
}

.portlet_bottom {
	background: none repeat scroll 0 0 #CCCCCC;
	font-size: 1px;
	height: 5px;
	line-height: 1px;
	overflow: hidden;
}
.sort_placeholder {
    background:none repeat scroll 0 0 #BBBBAA;
}

.widgetsContainerCell {
    vertical-align:top;
    padding:10px;
}
/*End Widgets */
/*Start fixed header */
.searchDiv {
	width: 1190px;
	height: 100px;
	overflow: auto;
}
/*End fixed header */
/*verticalFlipRight */
.verticalFlip {
	border-collapse: collapse;
    border-spacing:0px;
	width: auto;
	margin-top: -5px;
	margin-left: 5px;
	float: left;
}

.verticalFlipLeft {
	background: url(../images/vf_left.png);
	width: 17px;
}

.verticalFlipMiddle {
	background: url(../images/vf_middle.png) repeat-x left bottom;
	color: #ffffff;
	height: 28px;
}

.verticalFlipRight {
	background: url(../images/vf_right.png);
    width:16px;
}
.dialogFlipLeft {
    background:url(../images/vf_left.png);
    width:17px;
    float:left;
    height:28px;
}
.dialogFlipMiddle {
    background:url(../images/vf_middle.png) repeat-x left bottom;
    color:#ffffff;
    height:28px;
    margin:0px; 
    line-height:30px; 
    padding:0px 10px;
}
.dialogFlipRight {
    background:url(../images/vf_right.png);
    width:17px;
    float:left;
    height:28px;
}

.tabImg {
	background: url('../images/control.png') no-repeat top left;
}

.tabSection {
	border-collapse: collapse;
    border-spacing:0px;
	width: auto;
	font-size: 12px;
}

.activeTabFirstLft {
	background: url(../images/tab/left_active_tab.png);
	width: 13px;
	height: 30px;
}

.activeTabEnd {
	background: url(../images/tab/tab_active_end.png);
	width: 37px;
	height: 30px;
}

.tabFirstLft {
	background: url(../images/tab/tab_end.png);
	width: 24px;
	height: 30px;
}

.tabActiveFirstJoint {
	background: url(../images/tab/tab_active_left.png);
	width: 38px;
	height: 30px;
}

.activeTabMid {
	background: url(../images/tab/tab_active_middle.png);
	background-repeat: repeat-x;
	height: 30px;
	padding-left: 5px;
	color: #FFFFFF;
}
.activeTabMid span a {
	color:#ffffff;
}
.tabMid span a {
	color:#000000;
}	
.activeTabJoint {
    background:url(../images/tab/tab_active_right.png);
    width:38px;
	height: 30px;
}

.tabMid {
	background: url(../images/tab/tab_inner.png);
	height: 30px;
	padding-left: 5px;
	color: black;
	cursor: pointer;
}

.tabJoint {
	background: url(../images/tab/tab_joint.png);
	width: 19px;
	height: 30px;
}

.tabRghtEnd {
	background: url(../images/tab/tab_end_left.png);
	width: 24px;
	height: 30px;
}

.tabBase {
	background: url(../images/tab/bottom_strip.jpg);
	margin-top: -5px;
	height: 5px;
	width: 100%;
}

.tabSheet {
	height: 180px;
	background-color: #F0F0F0;
	border: 1px solid #CBCBCB;
	padding: 0px 5px 2px 10px;
}
/*START Submenu*/
.msgPad {
	-moz-border-radius: 8px 8px 8px 8px;
	border-radius: 8px 8px 8px 8px;
	border: 2px solid #343F4F;
	background-color: #FFFFFF;
	height: 100%;
	min-height: 100%;
}
.msgBox {
    position:absolute;
    left:30px;
    top:-1px;
    padding-left:13px;
       z-index: 1000;
 }
.msgBody {   
	color: #333333;    
    overflow: auto;
    overflow-y: auto;
    padding: 5px 5px 5px 5px; 
}
.subMenuHeader {
   width:auto;
    border-collapse: separate;
    border-spacing: 2px;
}
.subMenuHeader td{   
	padding: 2px;
}

.subMenuHeader td span {
	color: #343f4f;
	font-size: 12px;
}

.subMenuHeader th span {
   color:#ffffff;
   font-size: 12px;
   
}
.subMenuHeader td.subMenuActive {
    background:url(../images/smalltabhide.bmp) repeat-x scroll left top transparent;
    color:#383E4C;
    border-right: 1px solid;
}
.subMenuHeader th.subMenu {
    padding:4px;
	white-space: nowrap;
	/*  background:url("../images/blueBg.png") repeat scroll 0 0 transparent;*/
	background-color: #0099da;
	color: #ef7e03;
	text-align: left;
	height: 20px;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	-khtml-border-radius: 4px;
	border-radius: 4px;
	/*    border-right:1px solid #343F4F;*/
}

td.subMenu .tb_label {
	color: #FFFFFF;
	font-size: 11px;
	font-weight: bold;
	/* font:bold 11px/15px "trebuchet ms",arial; */
	outline: medium none;
}

td.subMenuActive .tb_label {
    color:#383E4C;
    font-size:11px;
	font-weight:bold;
    /* font:bold 11px/15px "trebuchet ms",arial; */
}
.activeSubMenuTd
{
	 background-color:#ef7e03;
    -moz-border-radius:4px;
    -webkit-border-radius:4px;
    -khtml-border-radius:4px;
    border-radius:4px;
    color: #fff;
}

.subMenuTable td {
	color: #333333;
	font-weight: bold;
	padding: 3px 10px;
	vertical-align: top;
	cursor: pointer;
}
.subMenuTable tr {
    border-bottom:1px solid #CBCBCB;
}

.subMenuHeader td:hover span {
	color: #fff;
	}
.subMenuTable td a {
    color:#333333;
}
.mainSubmenu 
{
	width:auto;
}
.mainSubmenu td
{
	white-space:nowrap;
	padding:5px;
	color:red;
}

.mainMenuHeader {
	padding: 0px 10px 10px;
}
.mainMenuHeader span
{
	font-size:14px;
	font-weight: bold;
}
.tabDiv {
    -moz-border-radius:0px 0px 8px 8px;
	border-radius: 0px 0px 8px 8px;
	height: auto;
	/* background-color:#F9F9F9;*/
}
.mainSubmenu {
 text-align: left;
}

.subMenuFilterDiv
{
	display: block;
    margin-right: 30px;
    margin-top: -20px;
    position: absolute;
    right: 10px;
}

.subMenuHeader td .activeSubMenu span
{
	
    color: #FFF;
    font-weight:bold;
    font-size:13px;
}
/*END Submenu*/
.containerBackground {
    /* border: 1px solid #e7ecf1;
    margin-bottom: 5px; */
    /* border: 1px solid #cbcbcb; */
    border: 1px solid #ddd;
    margin-bottom: 1rem;
    padding: 5px;
}
.searchTableDiv {   
  	padding-left:15px;
  	padding-right:15px;
  	height:auto;
}

.ui-datepicker select.ui-datepicker-month, .ui-datepicker select.ui-datepicker-year
{
	width:auto;
	margin-left: 8px;
    margin-right: 5px;
}
.ui-datepicker td .ui-state-active {
    background-color: #2c3e50;
    border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
	border-radius: 4px;
	color: #fff;
	margin-bottom: 0;
}

.ui-datepicker .ui-state-active {
	background-image: none;
	background-color: #0099da;
	font-size: 11px;
	font-weight: bold;
	color: #ffffff;
}

.ui-datepicker .ui-state-highlight {
	background-image: none;
	background-color: #343F4F;
	font-size: 11px;
	font-weight: bold;
	color: #FFFFFF;
}

.dataTable input.deleteStatus {
	display: block;
	background: #EA2651;
	width: 35px;
	color: #EA2651;
}

.dataTable input.addStatus {
	display: block;
	background: #33AB17;
	width: 35px;
	color: #33AB17;
}

.dataTable input.amendStatus {
	display: block;
	background: #F7B515;
	width: 35px;
	color: #F7B515;
}

.dataTable input.noChangeStatus {
	color: transparent;
	background: none;
}

table.menuTable {
	border-collapse: separate;
	/*border-spacing:2px 0px;*/
	background: url("../images/top_menu_strip.png");
	-moz-border-radius: 8px;
	-webkit-border-radius: 8px;
	-khtml-border-radius: 8px;
	border-radius: 8px;
	border-top: 3px solid #FFFFFF;
	border-left: 3px solid #FFFFFF;
	border-right: 2px solid #FFFFFF;
	border-bottom: 3px solid #FFFFFF;
	width: auto;
}

.menuTable td {
	height: 50px;
	color: #ffffff;
	vertical-align: bottom;
	padding-left: 2px;
	border-right: 1px solid #ffffff;
    /* vertical-text-align:bottom; */
	padding-bottom: 3px;
	text-align: center;
	font-size: 12px;
    border-radius: 4px 0px 0px 4px;
    -moz-border-radius:4px 0px 0px 4px;
    -webkit-border-radius:4px 0px 0px 4px;
    -khtml-border-radius:4px 0px 0px 4px;
}

.menuTable td.lastMenuItem {
	border-right: none;
}
.menuTable td.navActiveFirst {
    background-image:url(../images/top_menu_active.png);
}

.menuTabLeft {
	 background:url(../images/menu/menuHeaderLeft.png);
    background-repeat:repeat-x;
    width:30px;
    padding-left:5px;
    color:#FFFFFF;
}	
.menuTabMid {
	 background:url(../images/menu/menuHeader.jpg);
    background-repeat:repeat-x;
    height:30px;
    padding-left:5px;
    color:#FFFFFF;
    cursor:pointer;
    font-size:12px;
    letter-spacing: 1px;
}
.menuTabRight {
	 background:url(../images/menu/menuHeaderRight.png);
    background-repeat:repeat-x;
    width:30px;
    padding-left:5px;
    color:#FFFFFF;
}

/* Start:- Group Access Master */
.groupAccesTableDiv {
	width: 100%;
	/*height:320px;
	overflow:auto;*/
}
/*End:- Group Access Master */


/*Start:: Table Group Action*/
.actionIconBox{
	display:none ;
	border: 1px solid #343f4f;
    left:0px;
    top: 0px;
    margin-left:15px;
    border-radius:6px;
	padding:5px; 
	background-color:#f1f1f1;
    position: absolute;	
}	
/*End:: Table Group Action*/


.alertsDashboardDataTable{
	overflow:auto;
	height:245px;
}

.refresh20
{
	background: url('../images/refresh20.png') no-repeat top left;
	height:20px;
	width:20px;
}
.refresh25
{
	background: url('../images/refresh25.png') no-repeat top left;
}

/* START : WAT Icons*/
.watIcons a, .messageTitle, .importantIcon, .subMenuIcon, .recentIcon, .refreshBtn
{
	background: url('../images/watIcons.png') no-repeat top left;
display:inline-block;
} 
a.watIcons::after {
    content: "T";
  }
  
.watIcons a.disable {
	background:none; 
	cursor:default;
}

a.lookUpIcon { 
	background-position: 0px -560px; 
	width: 14px; 
	height: 14px;
	 float: left;    
    margin-left: -24px;
    margin-top: 5px;
    display: inline-block;
    font-size:15px;
	  } 
.addLookup a{ background-position: 0px 0px; width: 16px; height: 16px;  } 
.addToFavorite a{ background-position: 0px -26px; width: 16px; height: 16px;  } 
.arrowDown a{ background-position: 0px -52px; width: 16px; height: 16px;  } 
.arrowLeft a{ background-position: 0px -78px; width: 16px; height: 16px;  } 
.arrowRight a{ background-position: 0px -104px; width: 16px; height: 16px;  } 
.arrowUp a{ background-position: 0px -130px; width: 16px; height: 16px;  } 
.calculator a{ background-position: 0px -156px; width: 16px; height: 16px;  } 
.cancel a{ background-position: 0px -182px; width: 16px; height: 16px;  } 
.importantIcon { background-position: 0px -208px; width: 30px; height: 30px;  } 
.filter a{ background-position: 0px -248px; width: 16px; height: 16px;  } 
.filter_active a{ background-position: 0px -274px; width: 16px; height: 16px;  } 
.help a{ background-position: 0px -300px; width: 30px; height: 30px;  } 
.homeIcon a{ background-position: 0px -340px; width: 30px; height: 30px;  } 
.messageTitle { background-position: 0px -380px; width: auto; height: 20px;  float:left;
    line-height:22px;
    padding-left:28px; } 
.helpIcon a{ background-position: 0px -410px; width: 30px; height: 30px;  } 
.information a{ background-position: 0px -450px; width: 30px; height: 30px;  } 
.informationSmall a{ background-position: 0px -490px; width: 20px; height: 20px;  } 
.lock a{ background-position: 0px -520px; width: 30px; height: 30px;  } 
.logoutIcon a{ background-position: 0px -584px; width: 30px; height: 30px;  } 
.recentIcon { background-position: 0px -624px; width: 30px; height: 30px;  } 
.refresh a, .refreshBtn{ background-position: 0px -664px; width: 16px; height: 16px;  }
 .refreshIcon a
{
	background-position: 0px -664px; 
	width: 16px; 
	height: 16px;	
	float:right;
} 
.settings a{ background-position: 0px -690px; width: 16px; height: 16px;  } 
.settingsLarge a{ background-position: 0px -716px; width: 25px; height: 20px;  } 
.setupIcon a{ background-position: 0px -746px; width: 20px; height: 20px;  } 
.subMenuIcon { background-position: 0px -776px; width: 25px; height: 25px;  } 
.trash a{ background-position: 0px -811px; width: 16px; height: 16px;  } 
.unlock a{ background-position: 0px -837px; width: 20px; height: 20px;  } 
.unlockLarge a{ background-position: 0px -867px; width: 30px; height: 30px;  } 
.setupSmall a{ background-position: 0px -907px; width: 16px; height: 16px;  } 

/* END : WAT Icons*/

/* START :Icons */


a.actionIcon
{
	font-size:22px;
	padding:0px 3px;
}
@media (min-width: 1366px)
{
	a.actionIcon, a.actionIconExtras
	{
		font-size:22px;
		padding:0px 3px;
	}
	
	
}
@media (min-width: 1440px)
{
	a.actionIcon
	{
		font-size:22px;
		padding:0px 3px;
	}
}
@media (min-width: 1920px)
{
	a.actionIcon
	{
		font-size:26px;
		padding:0px 3px;
	}
}
@media (min-width: 2560px)
{
	a.actionIcon
	{
		font-size:28px;
		padding:0px 3px;
	}
}

 .actionIcon a , .greenUp, .greyDown ,.starGreen,.starOrange,.starRed,.redIcon,.greenIcon,.orangeIcon, .cancelIcon,.flagRed,.flagOrange,.flagGreen{  
	background: url('../images/appIcons.png');
	 background-repeat:no-repeat; 
	 display:inline-block; 
	 margin-left:5px; 
	 width: 16px; 
	 height: 16px;  
}
	 
a.actionIcon::after {
    content: "T";
	 }
.attachIcon a{ background-position: 0px 0px;  } 
.bachSelect a{ background-position: 0px -26px;  } 
.batchAdd a{ background-position: 0px -52px;  } 
.closeReturn a{ background-position: 0px -78px;  } 
.batchDelete a{ background-position: 0px -104px;  } 
.batchLink a{ background-position: 0px -130px;  } 
.batchLock a{ background-position: 0px -156px;  } 
.openReturn a{ background-position: 0px -182px;  } 
.batchRefresh a{ background-position: 0px -208px;  } 
.batchRemove a{ background-position: 0px -234px;  } 
.batchSearch a{ background-position: 0px -260px;  } 
.batchTransfer a{ background-position: 0px -286px;  } 
.batchUnlock a{ background-position: 0px -312px;  } 
.cancelIcon,.cancelIcon a{ background-position: 0px -338px;  } 
.copyIcon a{ background-position: 0px -364px;  } 
.cutIcon a{ background-position: 0px -390px;  } 
.delink a{ background-position: 0px -416px;  } 
.docAccept a{ background-position: 0px -442px;  } 
.addIcon a{ background-position: 0px -468px;  } 
.deleteIcon a{ background-position: 0px -494px;  } 
.docDetach a{ background-position: 0px -520px;  } 
.docDownload a{ background-position: 0px -546px;  } 
.editIcon a{ background-position: 0px -572px;  } 
.exceptionIcon a{ background-position: 0px -598px;  } 
.fireJobsIcon a{ background-position: 0px -624px;  } 
.docHelp a{ background-position: 0px -650px;  } 
.docLink a{ background-position: 0px -676px;  } 
.docLock a{ background-position: 0px -702px;  } 
.unProcessIcon a{ background-position: 0px -728px;  } 
.docSave a{ background-position: 0px -754px;  } 
.viewIcon a{ background-position: 0px -780px;  } 
.docTransfer a{ background-position: 0px -806px;  } 
.undoDeleteIcon a{ background-position: 0px -832px;  } 
.docView a{ background-position: 0px -858px;  } 
.greenIcon,.greenIcon a{ background-position: 0px -884px;  } 
.orangeIcon,.orangeIcon a{ background-position: 0px -910px; title: abctest; } 
.redIcon, .redIcon a{ background-position: 0px -936px;  } 
.down { background-position: 0px -962px;
	cursor: pointer;
    display: block;
    margin: 5px;
    padding: 0 15px;
} 
.greyDown {
	background-position: 0px -988px;
	display: block;
	margin: 5px;
    padding: 0px 15px;
    outline:0;
    color: #5A5A5A;
    	width:auto;
    } 
.downloadIcon a{ background-position: 0px -1014px;  } 
.editChild a{ background-position: 0px -1040px;  } 
.editMain a{ background-position: 0px -1066px;  } 
.editMain_1 a{ background-position: 0px -1092px;  } 
.fileDiscontinue a{ background-position: 0px -1118px;  } 
.fireJob a{ background-position: 0px -1144px;  } 
.flagGreen,.flagGreen a{ background-position: 0px -1170px;  } 
.flagOrange,.flagOrange a{ background-position: 0px -1196px;  } 
.flagRed,.flagRed a{ background-position: 0px -1222px;  } 
.folderOpen a{ background-position: 0px -1248px;  } 
.linked a{ background-position: 0px -1274px;  } 
.linkIcon a{ background-position: 0px -1300px;  } 
.lock a{ background-position: 0px -1326px;  } 
.lookupIcon a{
	 background-position: 0px -1352px;
	  float: left;    
    margin-left: -24px;
    margin-top: 4px;
    display: inline-block;  
	 } 
.openTicket a{ background-position: 0px -1378px;  } 
.pin a{ background-position: 0px -1404px;  } 
.remark a{ background-position: 0px -1430px;  } 
.save a{ background-position: 0px -1456px;  } 
.settings a{ background-position: 0px -1482px;  } 
.setup a{ background-position: 0px -1508px;  } 
.starGreen, .starGreen a { background-position: 0px -1534px;  } 
.refresh a{ background-position: 0px -1560px;  } 
.starOrange, .starOrange a{ background-position: 0px -1586px;  } 
.starRed, .starRed a{ background-position: 0px -1612px;  } 
.transfer a{ background-position: 0px -1638px;  } 
.unlock a{ background-position: 0px -1664px;  } 
.greenUp { background-position: 0px -1690px;
 	cursor: pointer;
    display: block;
    margin: 5px;
    padding: 0px 15px;
height:inherit;
	width:inherit;
    outline:0;
    color:#fff;
    } 
.upDisable { background-position: 0px -1716px;
 	cursor: pointer;
    display: block;
    margin: 5px;
    padding: 0 15px;
} 
.viewReport a{ background-position: 0px -1742px;  } 
.viewSummary a{ background-position: 0px -1768px;  }
.viewControls a{ background-position: 0px -1794px;  } 


/* END : Icons*/
/*START : Extras Icons */


.actionIconExtras a, .plusIcon,.minusIcon,.minusIconSmall, .plusIconSmall, .docFlagLarge, .docHelpLarge, .docReviewReqLarge,.viewDocLarge, .transferLarge, .docAcceptLarge,.smileyRed,.smileyOrange,
.holidaySun,.holidaySunSmall,.viewTicketLarge,.smileyGreen,.happySmiley,.sadSmiley,.normalSmiley{
	 background: url('../images/appIconsExtra.png') no-repeat top left; 
	 display:inline-block; 
	 margin-left:5px; 
	  } 
a.actionIconExtras::after {
    content: "T";
  } 
  	  
.actionIconExtras a.disable { background:none;  cursor:default;} 
.docAcceptLarge,.docAcceptLarge a{ background-position: 0px 0px; width: 20px; height: 20px;  } 
.docFlagLarge,.docFlagLarge a{ background-position: 0px -30px; width: 20px; height: 20px;  } 
.docHelpLarge,.docHelpLarge a{ background-position: 0px -60px; width: 20px; height: 20px;  }
.docReviewReqLarge,.docReviewReqLarge a{ background-position: 0px -60px; width: 20px; height: 20px;  }
.happySmiley,.happySmiley a{ background-position: 0px -90px; width: 16px; height: 16px;  } 
.docFlag a{ background-position: 0px -116px; width: 16px; height: 16px;  } 
.docPieChart a{ background-position: 0px -142px; width: 16px; height: 16px;  } 
.holidaySunSmall,.holidaySunSmall a{ background-position: 0px -168px; width: 16px; height: 16px;  } 
.holidaySun,.holidaySun a{ background-position: 0px -194px; width: 20px; height: 20px;  } 
.holidayTreeOrange a{ background-position: 0px -224px; width: 20px; height: 20px;  } 
.htmlDownload a{ background-position: 0px -254px; width: 20px; height: 20px;  } 
.htmlDownloadSmall a{ background-position: 0px -284px; width: 16px; height: 16px;  } 
.inserBefore a{ background-position: 0px -310px; width: 16px; height: 16px;  } 
.inserAfter a{ background-position: 0px -336px; width: 16px; height: 16px;  } 
.minusIcon,.minusIcon a{ background-position: 0px -362px; width: 20px; height: 20px;  } 
.minusIconSmall,.minusIconSmall a{ background-position: 0px -392px; width: 16px; height: 16px;  } 
.normalSmiley,.normalSmiley a{ background-position: 0px -418px; width: 16px; height: 16px;  } 
.plusIcon,.plusIcon a{ background-position: 0px -444px; width: 20px; height: 20px;  } 
.plusIconSmall,.plusIconSmall a{ background-position: 0px -474px; width: 16px; height: 16px;  } 
.holidayTree a{ background-position: 0px -500px; width: 20px; height: 20px;  } 
.sadSmiley,.sadSmiley a{ background-position: 0px -530px; width: 16px; height: 16px;  } 
.smileyGreen,.smileyGreen a{ background-position: 0px -556px; width: 20px; height: 20px;  } 
.smileyOrange,.smileyOrange a{ background-position: 0px -586px; width: 20px; height: 20px;  } 
.smileyRed,.smileyRed a{ background-position: 0px -616px; width: 20px; height: 20px;  } 
.statusMatchIcon a{ background-position: 0px -646px; width: 20px; height: 20px;  } 
.statusMatchIconSmall a{ background-position: 0px -676px; width: 16px; height: 16px;  } 
.transferLarge,.transferLarge a{ background-position: 0px -702px; width: 20px; height: 20px;  } 
.viewTicketLarge,.viewTicketLarge a{ background-position: 0px -732px; width: 20px; height: 20px;  } 
.viewTicket a{ background-position: 0px -762px; width: 16px; height: 16px;  } 
.viewDocReport a{background-position: 0px -1738px; width: 20px; height: 20px; }
.viewDocLarge ,.viewDocLarge a{ background-position: 0px -788px; width: 20px; height: 20px;  } 
.htmlSmall a{ background-position: 0px -818px; width: 16px; height: 16px;  } 
.htmlIcon a{ background-position: 0px -844px; width: 20px; height: 20px;  } 
.xmlDownload a{ background-position: 0px -874px; width: 20px; height: 20px;  } 
.xmlIcon a{ background-position: 0px -904px; width: 20px; height: 20px;  } 
.xmlDownloadSmall a{ background-position: 0px -934px; width: 16px; height: 16px;  }


/*END : Extras Icons */

/*START : App Custom Icon*/

.appCustomIcon a, .folderSetting, .folder{
	background: url('../images/appCustomIcon.png') no-repeat top left;
	width: 16px;
	height: 16px;
	margin-right: 3px;
	display: inline-block;
	  } 
a.appCustomIcon::after {
    content: "T";
  } 	  
.addDataCustom a{ background-position: 0px 0px;  } 
.addfolder a{ background-position: 0px -26px;  } 
.alaram a{ background-position: 0px -52px;  } 
.analogData a{ background-position: 0px -78px;  } 
.barChart a{ background-position: 0px -104px;  } 
.break a{ background-position: 0px -130px;  } 
.childLock a{ background-position: 0px -156px;  } 
.childTree a{ background-position: 0px -182px;  } 
.copyFolder a{ background-position: 0px -208px;  } 
.custoFolder a{ background-position: 0px -234px;  } 
.customData a{ background-position: 0px -260px;  } 
.customDataCarry a{ background-position: 0px -286px;  } 
.customInfo a{ background-position: 0px -312px;  } 
.datafolder a{ background-position: 0px -338px;  } 
.dataInfo a{ background-position: 0px -364px;  } 
.docImage a{ background-position: 0px -390px;  } 
.docInfo a{ background-position: 0px -416px;  } 
.email a{ background-position: 0px -442px;  } 
.favouritefolder a{ background-position: 0px -468px;  } 
.fireWall a{ background-position: 0px -494px;  } 
.fireWallAdd a{ background-position: 0px -520px;  } 
.fireWallLock a{ background-position: 0px -546px;  } 
.fireWallSearch a{ background-position: 0px -572px;  } 
.fireWallSecurity a{ background-position: 0px -598px;  } 
.folder a,.folder{ background-position: 0px -624px;  } 
.folderAdd a{ background-position: 0px -650px;  } 
.folderSetting a, .folderSetting{ background-position: 0px -676px;  } 
.group a{ background-position: 0px -702px;  } 
.helpInfo a{ background-position: 0px -728px;  } 
.homeLink a{ background-position: 0px -754px;  } 
.infoDiary a{ background-position: 0px -780px;  } 
.linked a{ background-position: 0px -806px;  } 
.linkedfolder a{ background-position: 0px -832px;  } 
.message a{ background-position: 0px -858px;  } 
.messageAdd a{ background-position: 0px -884px;  } 
.messageBlock a{ background-position: 0px -910px;  } 
.messageBox a{ background-position: 0px -936px;  } 
.messageContact a{ background-position: 0px -962px;  } 
.messageCopy a{ background-position: 0px -988px;  } 
.messageDelete a{ background-position: 0px -1014px;  } 
.messageDownload a{ background-position: 0px -1040px;  } 
.messageEdit a{ background-position: 0px -1066px;  } 
.messageEmailContacts a{ background-position: 0px -1092px;  } 
.messagefolder a{ background-position: 0px -1118px;  } 
.messageInfo a{ background-position: 0px -1144px;  } 
.messageLabel a{ background-position: 0px -1170px;  } 
.messageMove a{ background-position: 0px -1196px;  } 
.messageOpen a{ background-position: 0px -1222px;  } 
.messages a{ background-position: 0px -1248px;  } 
.messagesDelete a{ background-position: 0px -1274px;  } 
.messageSearch a{ background-position: 0px -1300px;  } 
.messageUpload a{ background-position: 0px -1326px;  } 
.messagesUnread a{ background-position: 0px -1352px;  } 
.messageTransfer a{ background-position: 0px -1378px;  } 
.messdaeAddLabel a{ background-position: 0px -1404px;  } 
.moveChild a{ background-position: 0px -1430px;  } 
.multiRecord a{ background-position: 0px -1456px;  } 
.newsPaper a{ background-position: 0px -1482px;  } 
.parentChild a{ background-position: 0px -1508px;  } 
.parentChildTerminals a{ background-position: 0px -1534px;  } 
.printDoc a{ background-position: 0px -1560px;  } 
.printFile a{ background-position: 0px -1586px;  } 
.printMail a{ background-position: 0px -1612px;  } 
.refreshChild a{ background-position: 0px -1638px;  } 
.refreshData a{ background-position: 0px -1664px;  } 
.reportfolder a{ background-position: 0px -1690px;  } 
.requestAdd a{ background-position: 0px -1716px;  } 
.requestReview a{ background-position: 0px -1742px;  } 
.requests a{ background-position: 0px -1768px;  } 
.searchData a{ background-position: 0px -1794px;  } 
.sendMail a{ background-position: 0px -1820px;  } 
.starfolder a{ background-position: 0px -1846px;  } 
.telephoneContacts a{ background-position: 0px -1872px;  } 
.terminal a{ background-position: 0px -1898px;  } 
.terminals a{ background-position: 0px -1924px;  } 
.transfer a{ background-position: 0px -1950px;  } 
.transferUp a{ background-position: 0px -1976px;  } 
.transmitData a{ background-position: 0px -2002px;  } 
.uploadDoc a{ background-position: 0px -2028px;  } 
.viewfolder a{ background-position: 0px -2054px;  } 
.webDataTranfer a{ background-position: 0px -2080px;  } 
.webLoading a{ background-position: 0px -2106px;  } 
.wififolder a{ background-position: 0px -2132px;  }

/*END :- App Custom Icon*/
.supervisorInfo
{
	height:300px;
	overflow:auto;
}
.groupActionActionTable
{
	height:300px;
	overflow:auto;
}
.dataTable th.selectColumn 
{
	width:10px;
	margin:0px;
	
}
.dataTable th.selectColumn input[type="checkbox"], .selectAllTd input[type="checkbox"], 
.dataTable th input[type="checkbox"]
{
	height:auto;
	margin:0px;
	margin-right:5px;
}
.dataTable td.selectColumn  
{
	width:12px;
	padding:3px 5px;
	text-align:center;
}
.dataTable .booleanColumn  
{	
	text-align:center;
}

.mainMenuAction:parent
{
	background:none;
}

.navFocusMenu, .mainMenuAction:focus, .subChildMenu:focus
{
	color: #ef7e03;
	font-weight:bold;
}

.collapseBtn span
{
	
	display:block;
	font-size:12px ;
   	font-family:inherit;
   	color:#155EC2;
	
}

.collapseBtn:focus {

	color:#F06F1C;	 	
    background-image:none;  
 
}

.logiFame
{
	width:100%;
	border:none;
}


/*START :- SPLITTER*/

.splitter {
	height: 400px;
}

.ui-state-default { background-color: #aca }
.ui-state-hover { background-color: #bdb }
.ui-state-highlight { background-color: #add }
.ui-state-error { background-color: #eaa }

.splitter-pane {	
	overflow: hidden;
}

.moveLeftSPV
{
	display:block;
	width: 9px;
	/*background-image: url(../images/splitter/vgrabber.gif);*/
	background-image: url(../images/splitter/toggle-splitter.png);
	background-repeat: no-repeat;
	/*background-position: center;*/
	top: 10%;
	cursor: pointer;
	position: relative;
	height:24px;
	left:-7px;
	background-position: 0px 0px;
}

.moveRightSPV
{
	display:block;
	width: 9px;
	/*background-image: url(../images/splitter/vgrabber.gif);*/
	background-image: url(../images/splitter/toggle-splitter.png);
	background-repeat: no-repeat;
	background-position: center;
	top: 80%;
	cursor: pointer;
	position: relative;
	height:24px;
	left:5px;
	background-position: 0px -23px;
}

.moveLeftSPH
{
	display:block;
	width: 24px;
	/*background-image: url(../images/splitter/vgrabberH.gif);*/
	background-image: url(../images/splitter/toggle-splitter-H.png);
	background-repeat: no-repeat;
	background-position: center;
	left: 10%;
	cursor: pointer;
	position: relative;
	float: left;
	/*margin-top:2px;*/
	height:8px;
	background-position: -23px center;
	top:-7px;
}

.moveRightSPH
{
	display:block;
	width: 24px;
	/*background-image: url(../images/splitter/vgrabberH.gif);*/
	background-image: url(../images/splitter/toggle-splitter-H.png);
	background-repeat: no-repeat;
	background-position: center;
	left: 85%;
	cursor: pointer;
	position: relative;
	float: left;
	/*margin-top:2px;*/
	height:8px;
	background-position: 0px 0px;
	top:6px;
}

.splitbuttonV
{
	background: url(../images/splitter/panevc.gif) repeat scroll 10px 50% transparent;
    height: 83px;
    margin-left: -4px;
    margin-top: -41px;
    position: relative;
    top: 40%;
    width: 10px;
	cursor: pointer;
}

.splitbuttonH {
    background: url(../images/splitter/panehc.gif) repeat scroll 50% 0 transparent;
    height: 10px !important;
    left: 50%;
    margin-left: -41px;
    position: relative;
    width: 83px;
	height:6px;
}

.splitter-bar
{
	background:#9CBDFF
}

.splitter-bar-vertical {
	width: 6px;
	/*	background-image: url(../images/splitter/vgrabber.gif);		*/
	background-repeat: no-repeat;
	background-position: center;
}

.splitter-bar-vertical a {
	width: 6px;
	background-image: url(../images/splitter/panevc.gif);
	background-repeat: no-repeat;
	background-position: center;
}

.splitter-bar-horizontal {
	height: 6px;
	background-repeat: no-repeat;
	background-position: center;
}

.splitter-bar-horizontal a {
	height: 6px;
	background-image: url(../images/splitter/panehc.gif);
	background-repeat: no-repeat;
	background-position: center;
}

.splitter-bar-horizontal-docked {
	height: 8px;
	background-image: url(../images/splitter/hdockbar-trans.gif);
	background-repeat: no-repeat;
	background-position: center;
}

.splitter-bar.ui-state-highlight {
	opacity: 0.7;
}

.splitter-iframe-hide {
	visibility: hidden;
}


/*END :- SPLITTER*/

table.fixedheader
{
	border:none;
}
/* USER Specs */
.userProfile
{
	background: url('../images/userProfile.png');
	 background-repeat:no-repeat; 
	 display:inline-block; 
	 margin-right:3px;
	 margin-top: 4px; 
	 width: 25px; 
	 height: 25px;
}

.userProfileDiv
{
	border: 2px solid #e75802/*FF3823*/;
    height: 600px;
    margin-left: 30px;
    width: 410px;
    padding:5px;
    position: relative;
}
.myZone
{
	float:right;	
	font-size:15px;
}
.myZone a
{
	color:#00c8f8;
	font-size:15px;
}

.userProfNav td
{
	/*float:left;*/ 
	padding:10px;
	color:#000;
	text-align: center;
	width:100%;
}
.activeTask
{
 background-color: #cccccc;
}
.userProfNav a
{
	color:#000;
	font-size:14px;
	outline:0;
}
.messageBoard
{
	float:left;
	color:#fff;
	padding: 5px;
    position: absolute;
    font-size:14px;
    bottom:0px;
    width:90%;
}

.msgBoardContainer 
{
	float:left;
	color:red;
	border: 1px solid #fff;
	display:block;
	height:150px;
	font-size:14px;
	padding: 5px;
	-moz-border-radius: 8px;
	-webkit-border-radius: 8px;
	-khtml-border-radius: 8px;
	border-radius: 8px;
    background-color:#d6d6d6;
    margin-top:5px;
    width:100%;
    overflow:auto;
}
.taskAction_userProfileDiv
{
	display:table;
	margin-top:5px;
}
.userSpecTileContainer
{
	width:400px;
	border-top: 2px solid #000;
	padding-top:0px;
}
.userSpecTileContainer .tile.tileDoubleGrid  
{
	display:block;
	width:400px;
}
.msgBordSubject
{
	padding-left:25px;
	width:90%;	
	cursor:pointer;
}
.msgBoardSubDetails
{
	padding-bottom:5px;
	padding-top:5px;
	border-bottom:1px dotted #000;
}
.msgBordDetails
{
	margin-left: 20px;
    padding-top: 5px;
}
#tileContainer
{
	  overflow-x: auto;
    overflow-y: hidden;
    height:100%;
}

.menuSearchResult
{
  	border: 1px solid #bcbcbc;
    min-height: 200px;
   	margin-top: -5px; 
    height: 400px;
    overflow: auto;
    position: absolute; 
   /*  right: 0; */   
    width: 410px;
    background-color: #fff;
    display:none;
    padding:5px;
    z-index: 10000;
   
}

.menuSearchResult > a
{
	font-size:14px !important;
}	

.menuSearchResult > a:focus
{
	text-decoration: underline;
}

.menuSearchResult span
{
	 display:block;
    padding:5px;
    border-bottom: 1px dotted gray;
    font-weight: normal;
}
/* USER Specs */

.scrollAction td, .scrollLeft td, .scrollRight td
{
	text-align:center;
}
.hideVerticalScroll
{
	overflow-y:hidden;
	overflow-x:auto;
	outline: 0px none;
}
.hideHorizontalScroll
{
	overflow-x:hidden;
	overflow-y:auto;
	outline: 0px none;
	
}
.hideBothScroll
{
	overflow:hidden;
	float:left;
}

/*Table row Column */
.dataTable td.tableRowNumCol, .dataTable th.tableRowNumCol
{
	width:10px;
	background:#eeeeee url(../images/tableBg.gif) repeat-x left top;
	text-align:right;
}

.refreshLink
{
	background: url('../images/watIcons.png') no-repeat top left;
	display:inline-block;
	background-position: 0px -664px;
	width: 16px;
	height: 16px;
}

.dataTable a.actionExtrasIcon 
{   background-image:url(../images/icon_sprite.png);
    background-repeat:no-repeat;
}
.dataTable a.excelIcon {	
    background-position:2px -4998px;
}
.dataTable a.xlsxIcon 
    {
        background-image: url("../images/xlsx.png");
        background-repeat: no-repeat;
        background-position: center;
        display: inline-block;
        height: 20px;
        margin-left: 5px;
	width: 20px;
    }
    
input::-ms-clear {
  display: none;
}


.nav-tabs > li.active > a
{
    margin-top: 0;   
}

.table-responsive
{
	padding:0px 1px 0px 0px;
	width: unset;
}

.bottomPaginatorBar
{
	border:1px solid #bcbcbc;
	  border-left: 1px solid #bcbcbc;
    border-right: 1px solid #bcbcbc;
    border-bottom: 1px solid #bcbcbc;
	margin-left: 0px;
    margin-right: 0px;
    padding:5px;
}
.topPaginatorBar
{
	   border-left: 1px solid #bcbcbc;
    border-right: 1px solid #bcbcbc;
    border-top: 1px solid #bcbcbc;
	margin-left: 0px;
    margin-right: 0px;
    padding:5px;
    
}	
div.removeExtraMargin 
{
    margin-right: 0px;
    margin-left: 0px;
}
.tableWrapper
{
	border-left:1px solid #bcbcbc;
	border-right:1px solid #bcbcbc;
	display: block;
}


.dataTable tr th:first-child, .dataTable tr td:first-child
 {
    border-left:none;
}

.dataTable tr th:last-child, .dataTable tr td:last-child {
    border-right:none;
    
}

.dataTable .even td, .dataTable .odd td, .dataTable .select td
{
	 line-height: 1.2;
	padding: 0.45em 0.6em 0.3em;
	 vertical-align: inherit;
	 height:25px;
}
.navBarCustom
{
	background-color: transparent;
    border-color: transparent;
     margin-bottom: 5px;
}
.navBarToggle
{
	margin-top:-5px;
}

.paginatorSpan
{
	margin:0px;
	margin-top: 1px;
	float:right;
	line-height: 1;
	display:inline-flex;
}
.paginatorSpan ul
{
	margin:0px;
	
}
.dbPageNumber
{
	display: inline-block;
    margin-left: 10px;
    margin-right: 5px;
    margin-top: 5px;
}
div.removeRowExtraPadding
{
	padding:0px;
}
input::-ms-clear {
  display: none;
}

.buttonSection
{
	margin-top:5px;
	padding-bottom:5px;
}

.pageContainer
{
	margin-top:-15px;
}

div select.tableSelectPageNo, div input.gotoPageField, div button.gotoPageButton
{
	padding: 3px 5px;
	line-height: 1.2;
	width:40px;
	height:23px;
	margin:0px;
}

 div input.gotoPageField, div button.gotoPageButton
 {
  	border-radius: 0px;
    height: 23px;
    margin-bottom: 0px;  
    padding-top: 2px;
 }
 
 .emptyField
 {
    height: 20px;
    margin: 3px;
    padding: 5px;
    width: 100%;
 }
 
 div.card
 {
 margin-top:5px;
 margin-bottom: 5px;
 }
 
  @-moz-document url-prefix() {
         fieldset
		 {
			width:100%;
			display:table-cell;
		 }
    }
                    

.labelClass
{
	text-align:left;	
}

.hasD
{
	min-width:70px;	
}
a.calendarIcon
{
	font-size:16px;
}

.headerTool
{
	display: inline-block;
    float: right;
    padding: 2px 0px 8px;
}

.panel-primary > .card-header a
{
	color:#fff;
}

.buttonBox
{
	border-top: 1px solid #cbcbcb;
    margin-top: 5px;
    padding: 5px;
    padding-top: 5px;
}

div.ui-dialog input.gotoPageField
{
	width:auto;;
}





.ui-dialog .ui-dialog-title
{
	font-weight:normal;
}



.dataTable .input-group
{
	width:inherit;
}
input.focusEdit, input.readOnly.focusEdit
{
	
	border :1px solid transparent;
	background:none;
}
input.focusEdit:focus/* , select.focusEdit:focus */
{
	border :1px solid #66afe9;
	width:auto;
}
input.readOnly.focusEdit:focus, select.readOnly.focusEdit:focus
{
	border :none;
}

.dataTable a.refEditSelect
{
	margin-left:-16px;
}

input.focusEdit/* , select.focusEdit */
{
	width:auto;
	margin:0px;
}

select.focusEdit
{
	width:131px;
	margin:0px;
}
td input[type="checkbox"].focusEdit
{
	margin:0px;
}

td select.focusEdit
{
	margin:0px;
}

.refGroupField
{
	width:100%;
}
div.inputWatGroup
{
	display:table-cell;
}
div.groupMainField
{
	padding-left:0px;
}
div.groupField
{
	padding-left:3px;
}
.convClose
{
	font-size:12px;
	
}

.fa.fa-exchange.fa-rotate-90 
{
	color:#bcbcbc;
}

td.selectColumn input[type="checkbox"]
{
	margin:0px;
}

.dataTable th, .dataTable .topPaginatorBar, .dataTable .bottomPaginatorBar, .dataTable .bottomEmptyPaginatorBar
{  
    background-image: none, linear-gradient(to bottom, rgba(0, 0, 0, 0.01) 0px, rgba(0, 0, 0, 0.08) 100%); 
    /* background-image: none, linear-gradient(to bottom, rgba(255, 255, 255, 0.45) 0px, rgba(255, 255, 255, 0) 100%); */
    background-position: 50% 50%;
}

.emptyRow
{
	border-bottom:1px solid #bcbcbc;
}
.bottomEmptyPaginatorBar
{	
	border:1px solid #bcbcbc;
	border-top: none;
	margin-left: 0px;
    margin-right: 0px;
    padding:5px;
	
}
.colmnFilter
{
	cursor: pointer;
}
.filterAction
{
	color:#bcbcbc;
}

.popupFilter
{
  display: none;
  position: absolute;
  width: auto;
  padding: 10px 0px;
  background: #eeeeee;
  color: #000000;
  border: 1px solid #1a1a1a;
  z-index:1080;
}

.popupFilter .row {
	display: table-row-group;
}

.popupFilter .col-12 {
	padding: 0px 10px;
}

.contentHeader
{
 	border-bottom: 1px solid #e7ecf1;
    margin-top: -4px;
    margin-bottom: 5px;
   /*  position: fixed; */ /*UX DESIGN*/
    width: 100%;
    background-color:#ecf0f1;
    z-index:20;
    margin-left:-10px; 
}

.importButtonGroup
{
	float:left;
}

.rowStatusHeader
{
	width:auto;
	padding:5px;
}
.rowStatusCell
{
	padding: 0px 5px;
}
.rowStatusCell input
{
	margin:0px;
}

.gotoPage
{
	float:right;
	margin-left: 5px;
	margin-top:1px;
}

.btn-link {
   
    margin-top: 6px;
    padding: 6px 10px;
    color: #23527c;
    border-color: transparent;
	background-color: transparent;
}

.picklist td
{
	padding:5px;
}


.editInputAmend {
	
	border-color: #f00 transparent transparent #f00;
    border-style: solid;
    border-width: 3px;
	float: left;
    height: 0px;
	margin: -0.2em 0 0 -0.8em;
	overflow: hidden;
    padding: 0;
    vertical-align: top;
    width: 0;
   }
   
   .yamm-content li
   {
   	border:none;
   }
   input[type="checkbox"].selectAllColumnCHK
   {
   margin-right:5px;
   }
   
   
   .focusEditLB
   {
   	font-weight:normal;
   	 cursor: pointer;
    height: 20px;
    width: 131px;
    overflow: hidden;
    text-overflow: ellipsis;
    float:left;
   }
 
 i.dialogWarning
 {
 	color: #f39c12;
    float: left;
    margin-right: 5px;
    margin-top: 3px;
    font-size:20px;
 }     
span.loginWarning
{
	font-size:28px;
	color:#f39c12;
}

ul.errorMsgUL
{
	float:left;
	border-bottom:none;
	 padding: 5px 5px 0px;
}

div.messageTitleBox
{
	   padding: 0px 5px 0px;
}
ul.errorMsgUL li a
{
	padding:5px;
	color:#fff;
}
ul.errorMsgUL li a:hover
{
	color:#000;
}
ul.errorMsgUL li a.active
{
	color:#000;
}
.errorMessageTitle a
{
	color:#fff;
	margin-right:20px;
} 

i.errormsgIcon,   i.warningmsgIcon,  i.infomsgIcon
{
	font-size:18px;	
	margin-right:2px;
}
li.active  i.infomsgIcon
{
	color:#3498db
}
li.active  i.warningmsgIcon
{
	color:#f39c12
}
li.active  i.errormsgIcon
{
	color:#e74c3c;
}

button.errorMsgLink
{
	font-size:18px;
	margin-right: 5px;
	color: #ffffff;
}

input.refField
{
	padding-right:25px;
}

.tabClose span
{
	color: #e74c3c;
    margin-left: 0.5em;
    position: relative;
    vertical-align: middle;
}
.tile-group div.active
{
	background-color: #e74c3c;
    border-color: #e74c3c;
     border-radius: 0;
}

select.appTypeSelect
{
	width:auto;
}

span a.disable
{
   background-color: #fff;
    border-color: #ddd;
    color: #777;
    cursor: not-allowed;
}

a.fa::after
{
	content:"";
}
.custom-bullet li:after
{
    content: "\e080";
    font-family: 'Glyphicons Halflings';
    font-size: 9px;
    float: left;
    margin-top: 4px;
    margin-left: -17px;
    color: #CCCCCC;
}

table.gridPanelTable
{
	border-left:1px solid #bcbcbc;
	border-right:1px solid #bcbcbc;
	border-top:none;
	margin:5px 0px 10px 0px; 
	display: inline-table;
}

table.gridPanelTable input
{
	margin-bottom:0px;
}

div.paginatorContainer
{

	margin-left:0px;
	margin-right:0px;
	padding-left:0px;
	padding-right:0px;
}

div input[type="checkbox"]
{
	margin:10px 0px 6px 6px;
	transform: scale(1.3);
}

a.mainIcon
{
	/* margin-top:-4px; */
	margin-bottom:-4px;
}

a.mainIcon.disable
{
	display:none;
}
i.outterIcon 
{
	margin-top:-2px;
	font-size: 1.8em;
}
i.innerIcon 
{
	margin-top:-1px;
}
a.linkIcon 
{
    padding-right: 3px;	
}

.importDailogForm
{
	padding-bottom:80px;
}
.input-group
{
	width:100%;
	display: table;
}

fieldset legend
{
	border: medium none;
    font-size: 1.2em;
    margin-bottom: 0px;
    padding: 0px 5px;
    width: auto;
    color: #2c3e50;
}

 .scrollAction table,  .scrollLeft table, .scrollRight table, .scrollMain table
{
margin:0px;
	display: table;
}
.scrollAction,  .scrollLeft 
{
	float:left;
}
	
.scrollLeft tr th:first-child, .scrollLeft tr td:first-child
{
	border-left:1px solid #bcbcbc;
}
.scrollLeft tr th:last-child, .scrollLeft tr td:last-child/* , .scrollMain  tr td:last-child, .scrollMain  tr th:last-child */
{
	border-right:1px solid #bcbcbc;
}
.scrollRight tr th:first-child, .scrollRight tr td:first-child
{
	border-left:none;
}

div.tableMainWrapper
{
	padding-left:0px;
	padding-right:0px; 
}

span select.tableSelectPageNo
{
	width:auto;
}
.ui-datepicker-trigger
{
	margin-left: -26px;
	cursor: pointer;
	position: relative;
	right: 4px;
	top: 3px;
}

td.editableTableCell .ui-datepicker-trigger
{
	margin-top:3px;
}
span.disabledLabel
{
	color:#2c3e50;
}
.tablePagination 
{
	margin-top:2px;
}
.tableButtonBox button
{
	margin-bottom:0px;
	margin-top:0px;
}
.paginationExtra
{
	   display: block;
    margin-top: 0.23em;
}
div.headerFields h5
{
	margin-bottom:5px 0px;
}

.dataTable .tableExport 
{
	float:right;
	line-height:0.8em;
	margin-top:3px;
}

@media (max-width: 768px) {
	.simple-clickable-table .tableExport {
		margin-top: 1px;
	}
}

@media only screen and (min-device-width: 768px) {
	.simple-clickable-table .tableExport {
		margin-top: 1px;
	}
}

.simple-clickable-table .tableExport 
{
	float:right;
	margin-left: 10px;
    border: 1px solid;
    border-color: #01a3df;
}

.pagination-sm .page-item:first-child .page-link {
    border-top-left-radius: 0rem;
    border-bottom-left-radius: 0rem;
}

.pagination-sm .page-item:last-child .page-link {
    border-top-right-radius: 0rem;
    border-bottom-right-radius: 0rem;
}


span.paginatorSpan .pagination-sm > li:first-child > a, span.paginatorSpan .pagination-sm > li:first-child > span {
    border-bottom-left-radius: 0px;
    border-top-left-radius: 0px;
}

span.paginatorSpan .pagination-sm > li:last-child > a, span.paginatorSpan .pagination-sm > li:last-child > span {
    border-bottom-right-radius: 0px;
    border-top-right-radius: 0px;
}

#submitDateButton
{
 display: inline-block;
    margin-left: -1em;
    margin-top: 0.38em;
}

li.multiple span
{
	padding-left:0.8em;
}
li.ms-select-all span
{
	padding-left:0.4em;
}
ul.errorMsgUL li
{
	margin-right:20px;
}

span.ui-icon-circle-triangle-w, ui-icon-circle-triangle-e
{
	line-height:1.4em;
}

div.card
{
	border-radius: 0px;
}

div.card .card-header {
    border-top-left-radius:0px;
    border-top-right-radius: 0px;
}

.c-select {
    -moz-appearance: none;
 background: #fff url("../images/multiple-select.png") no-repeat scroll right 0.75rem center / 8px 10px; 
 border: 1px solid #ccc;
 color: #55595c;
 display: inline-block;
 max-width: 100%;
 padding: 0.375rem 1.75rem 0.375rem 0.75rem;
 vertical-align: middle;
}

.icon-color-red
{
	color:red;
}

.icon-color-green
{
	color:green;
}

.icon-color-orange
{
	color:orange;
}

.icon-color-yellow
{
	color:yellow;
}

.simpleTileTable td {
	padding: 5px;
} 
.simpleTileTable th {
	padding: 5px;
	font-weight: bold;
}

.appsLink 
{
	  float: left;
    font-size: 1.2rem;
    margin-bottom: 0.1rem;
    padding: 5px;
    width: 100%;
}

.appsLink:hover {
	text-decoration: none;
	color: #337ab7;
}

.loginBoxFooter {
	border-top: 1px dashed #cbcbcb;
	padding-top: 10px;
	background: url(../images/poweredBy.png) no-repeat right 10px;
}

.LOVHelp
{
	margin-left:3px;
	color:#2c3e50;
}

.ediableCheckBox
{
	width:100% !important;
}

.productLogo
{
	background:url(../images/air_india.png) repeat-x left bottom;
	width:200px;
	margin-top:1px;
}



/* NEW UI Changes Start */
  body {

	  background-color: #f2f2f2 ;
    position: relative;
    font-family: "Roboto";
  }

a.searchMenuLabel
{
	background: #ffffff;
	width: 100%;
	color: #65727f !important ;
}

a.searchMenuLabel:hover{
  background-color : #ffffff !important;
  background : #ffffff !important;
}

li.user_icon_menu a
{
	padding-right : 10px !important;
}

.userDropMenuIcon i
{
	font-size: 18px;
	margin-right: 10px;
}
.user_icon_menu
{
	font-size: 22px !important;
}
li.user_info_menu a
{
	padding-left : 5px !important;
}

.navbar-brand {

    height: 40px;
    padding: 8px 15px;
	font-size: 1.5rem;
}

.navbar
{
	/* min-height : 2.5rem; */
	padding: 0rem 0rem;
}

 .navbar-inverse .navbar-toggle
  {
  	border-color: #FFFFFF;
  }
  .navbar-inverse .navbar-toggle .icon-bar {
    background-color: #667380;
}
  .navbar-inverse .navbar-toggle:focus, .navbar-inverse .navbar-toggle:hover
  {
  	background-color: #FFFFFF !important;
  }
  .navbar-preheader .navbar-toggle:hover .icon-bar {
    background-color: #fff;
}
span.userNotification {
    position: absolute;
    top: 3px;
    left: 24px;
    font-size: 11px;
	padding: 2px 5px;
}

.navbar-inverse {
    background-color:  #FFFFFF /* #667380 */;
    border-color: #FFFFFF /* #667380 */;
    box-shadow: 0px 1.1px rgba(0, 0, 0, 0.16);
}

.navbar-inverse .navbar-brand {
    color: #01A3DF; padding: 5px;
}

.navbar-inverse .navbar-brand:focus, .navbar-inverse .navbar-brand:hover, 
.navbar-light .navbar-brand:focus, .navbar-light .navbar-brand:hover {
    color: #01A3DF;
    background-color: transparent;
}

.navbar-inverse .navbar-nav > li > a, .navbar-light .navbar-nav .nav-link {
    color: #01A3DF;
}

.navbar-light .navbar-nav .nav-link:focus, .navbar-light .navbar-nav .nav-link:hover {
    color: #01A3DF;
}

.navbar-inverse .navbar-nav>li>a:focus, /* .navbar-inverse .navbar-nav>li>a:hover,  */
.navbar-light .navbar-nav>li>a:focus/* , .navbar-light .navbar-nav>li>a:hover */{
    color: #01A3DF;
    background: #FFFFFF !important;
}

li > a:focus, .navbar-inverse .navbar-nav > li > a:hover {
    color: #01A3DF ;
   
}

#mainMenu.navbar-inverse .navbar-nav > .show > a, #mainMenu.navbar-inverse .navbar-nav > .show > a:focus, #mainMenu.navbar-inverse .navbar-nav > .show > a:hover, 
#mainMenu.navbar-light .navbar-nav > .show > a, #mainMenu.navbar-light .navbar-nav > .show > a:focus, #mainMenu.navbar-light .navbar-nav > .show > a:hover {
    color: #FFFFFF !important;
    background-color: #01a3df !important;
}

.buttonSection
{
 margin-top :18px;
}
.clearButton
{
   background-color: transparent !important;
}
.btn-outline-primary
{
  color : #01a3df;
}
.btn
{
  margin-right: 10px;
  float:left;
}

.tileNavBar-default
{
    background-color: #fff;
    border-color: #fff;
	/* box-shadow: 0px 1.3px rgba(0, 0, 0, 0.16); */
	border-radius: 0px;
	border-bottom: 0px;
	padding: 0rem 0rem;
}

 .tab-content
{
	border-bottom: 1px solid #ddd;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
    padding: 5px;
} 

#pageTabContent.tab-content
{
	background-color: #ffffff !important;
	padding-bottom:40px;
	border-bottom:0px;
	border-left:0px;
	border-right:0px;
}
.tab-pane
{
  padding:10px;
}

/* .nav-tabs > li > a:hover
{
  color: #FFFFFF;
  background-color : #667380;
border:1px solid #667380;	
  border-color: #e9ecef #e9ecef #dee2e6 !important;
} */

.nav-tabs > li > a.deletPageConversation {
	border: 0px solid #ddd !important;
}

.nav-tabs {
    border-bottom: 1px solid #ddd;
}
   
.nav-tabs > li > a
{
	background-color:  #667380; /* #0071BC; */
	color : #FFFFFF;
	font-size:14px;
	padding:5px 15px;
	border-radius: 0;
    border-color: #e9ecef #e9ecef #dee2e6 !important;
    border: 1px solid #ddd !important;
}

.nav-tabs > .nav-item > .nav-link:focus, .nav-tabs > .nav-item > .nav-link:hover {
    text-decoration: none !important;
    color: #FFFFFF;
	background: #667380 !important;
	border-color: transparent !important;
	isolation: unset !important;
}

.nav-tabs > .nav-item > .nav-link.active:focus, .nav-tabs > .nav-item > .nav-link.active:hover {
	cursor: default;
	color: #495057 !important;
	background: #FFFFFF !important;
	border: 1px solid #ddd !important;
	border-bottom: 1px solid #ffffff !important;
}

.nav-tabs > li:hover {
	cursor: default;
}

.nav-tabs > li > a.active {
    border-radius: 0;
    border: 1px solid #ddd !important;
    border-bottom-color: transparent !important;
    border-bottom: 1px solid #ffffff !important;
    text-decoration: none;
}

.navbar-inverse .navbar-nav > li > a.active, .navbar-inverse .navbar-nav > li > a.active:focus, .navbar-inverse .navbar-nav > li > a.active:hover {
    color: #FFFFFF;
    background-color: #01a3df;
}
.tileNavBar-default .navbar-nav > li > a.active + span
{
	color: #425563; display:inline-block !important;
}

.tileNavBar-default .navbar-nav > li > a + span
{
	position: relative; left: 45%; top: -6px;font-size: 15px;color: #425563; display:none;
}

.tileNavBar-default .navbar-nav > li > a.active, .tileNavBar-default .navbar-nav > li > a.active:focus, .tileNavBar-default .navbar-nav > li > a.active:hover {
	color: #FFFFFF !important;
	background-color: #425563 !important;
	border: 1px solid #425563;
}
	
.tileNavBar-default .navbar-nav > li > a:hover {
	color: #4D4D4D !important;
	background-color: #FFFFFF !important;
}
	
.navbar-expand .navbar-nav .nav-link {
    padding-right: 0.75rem;
    padding-left: 0.75rem;
}

.tileNavBar-default .navbar-nav > li > a
{
	padding-top:0.5rem;
	padding-bottom:0.625rem;
	font-size:0.875rem;
	color: #4D4D4D !important;
	padding-left: 1rem !important;
    padding-right: 1rem !important;
}

.navbar-default .navbar-nav > li > a
{
  color : /* #6B6B6B */ #4D4D4D  ;
}

.navbar li > a {  
	letter-spacing: 0.4px;  
	font-size: 1rem; 
}

#conversationTab  li  a {
	padding: 5px 15px;
}

#conversationTab  li  a.active {
	border: 0px solid #ffffff !important;
	border-bottom: 1px solid  #ffffff !important;
	background-color: #ffffff;
}

#conversationTab.nav-tabs
{
  border-bottom: 0px solid #FAFAFA;
}

#conversationTab  li  a.active:hover {
	background-color: #FAFAFA !important;
}


.userDropMenuIcon > li > a
{
	font-size :0.875rem;
	text-decoration: none;	
	color: #333; /* BootStrap 4 Change */
}
.yamm-content .list-group li a { font-size: 14px; color:#01A3DF;}

.yamm-content .list-group-item
{
	background-color : transparent;
}
.yamm-content .list-group-item.active 
{
	background-color : transparent; color:#01A3DF; font-weight: 600;
}
.card-title > .small, .card-title > .small > a, .card-title > a, .card-title > small, .card-title > small > a {
    color : #4D4D4D; /* #0078ae; */
    text-decoration: none;
}

.dropdown-menu
{
  padding:0.625rem;
  left : auto;
  background-color: #F4F5F7;
  box-shadow: 0 0.375rem 0.75rem rgba(0,0,0,.175);
}


li.rightGridMenu a
{
	font-size:25px !important;
	letter-spacing : 0px !important;
}

li.rightGridMenu a
{
	padding-top: 12px !important;
	color : #2E3192;
}
li.rightGridMenu  ul.appDropMenuIcon   a 
{
	font-size : 16px !important;
	padding-top: 5px !important;
}

#horizontal li.hideshow div{
position:absolute;
background: #f3f3f3;
display:none;
left:0px;
}

#horizontal li.hideshow
{
position:relative;
}


    

.boxScroll{
  height:500px;
  overflow:hidden;

}

.yamm .nav,
.yamm .collapse,
.yamm .dropup,
.yamm .dropdown {
  position: static;
}
.yamm .container {
  position: relative;
}
.yamm .dropdown-menu.yamm-fw {
  left: 0px;
  width:100%;
  border-bottom:1px dotted  #cbcbcb;
  margin: 0rem 0rem 0rem;
}

.yamm-content {
	  padding: 0px 20px;
	   /* height:450px; */
	}

.yamm .dropdown.yamm-fw .dropdown-menu {
  left: 0px;
  right: 10px;
}

.watMenu
{
	margin-left: 5px;
}
.menuSearchResult .subChildMenu span
{
	padding:3px;
	border-bottom:1px solid  #cbcbcb;
}


ul.submenuTab
{
	background-color : #FFFFFF;
	padding-right: 0px;
	min-height:400px;
	height:auto;
} 

div.submenuTab
{
	background-color : #FFFFFF;
	padding-right: 0px;
	min-height:400px;
	height:auto;
	padding-left: 0rem; 
}

div.submenuTab > a.nav-link.active
{
	background-color: #F4F5F7; 
	color :#01A3DF !important;  
	border-left: 10px solid #01A3DF; 
	border-radius: 0rem; 
	padding-left: 0.5rem !important;
	font-size: 0.875rem;
}

div.submenuTab > .nav-link {
	padding: .2rem 1rem !important;
	color :#01A3DF;
	font-size: 0.875rem;
}

ul.menuLink
{
	 display: inline-block;
}
ul.menuLink > li
{
	display: inline-block;
	width: 300px;
	float:left;
	padding:5px 15px;
}
	
ul.menuLink > li > a > span
{
	text-overflow: ellipsis;
    width: 250px;
    overflow: hidden;
    white-space: nowrap;
    float: left;
}
ul.submenuTab > li > a
{
	color :#01A3DF; border:0px; border-radius :0px; padding:5px; font-size: 14px; border-left: 10px solid #FFFFFF;
}

/* bootstrap 4 change */

.nav-pills .nav-link.active, .nav-pills .show > .nav-link, .nav-link.active:focus, .nav-link:hover
{
	color: #01A3DF;
	background-color: #F4F5F7;
}

.submenuTab > li > a.nav-link.active
{
	background-color: #F4F5F7; color :#01A3DF;  border-left: 10px solid #01A3DF; 
}

/* bootstrap 4 changes end */

div.subMenuTabContent
{
	border : 0px;
}
.list-group-item
{
	padding: 4px 15px;
}
.list-group-item.active
{
	z-index:0;
	width:auto;
}

.list-group-item:first-child {
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
}

button.btn, input.btn {  padding:5px 10px; border-radius :0px; }

ul.converation
{
	padding:0px 5px 10px;
	background-color : transparent;
}

.deletPageConversation
{
	float: right;
	padding: 0px !important;
	font-size: 16px !important;
	border: 0px !important;
	border-radius: none;
	right: 0px;
	position: inherit;
	top: 8px !important;
	margin-right:5px;
	margin-top: -25px;
}
.pageTabSectionTitle
{
	margin-right:10px;
}

.pagination 
{
margin: 0px ;
}
.pagination-sm > li > a, .pagination-sm > li > span {
    font-size: 12px;
}

label
{
	width:auto;
	 margin-bottom: 0px;
}

select[multiple]
{
	height:auto;
}

.list-group-item {
    border: 1px solid #ddd;
}
.list-group-item.active,
.list-group-item.active:hover,
.list-group-item.active:focus {
  background-color: #3498db;
  border-color: #3498db;
}

.panel-primary {
  border-color: #667380;
}
.panel-primary > .card-header {
  color: #fff;
  background-color: #667380;
  border-color: #667380/* #337ab7 */;
  padding: 0.625rem 0.938rem;
}

.panel-primary > .card-header > .card-title {
	margin-top: 0rem;
	margin-bottom: 0rem;
	font-size: 16px;
	color: inherit;
}

.panel-primary > .card-header + .panel-collapse > .panel-body {
  border-top-color: #667380;
}
.panel-primary > .card-header .badge {
  color: #667380;
  background-color: #fff;
}
.panel-primary > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #667380;
}

.panel-info > .card-header {
   background-color: #3498db;
    border-color: #3498db;
    color: #ffffff;
    border-radius: 0rem;
}

.panel-danger {
  border-color: #e74c3c;
}
.panel-danger > .card-header {
  color: #fff;
  background-color: #e74c3c;
  border-color: #e74c3c;
}

.panel-danger > .card-header + .panel-collapse > .panel-body {
  border-top-color: #e74c3c;
}

.btn-primary.disabled, .btn-primary:disabled {
    background-color: #2C3E50;
    border-color: #2C3E50;
    color: #FFFFFF;
}

.btn-primary {
	background-color: #2C3E50;
	border-color: #2C3E50;
	color: #FFFFFF;
	margin-top: 10px;
	font-size: 0.875rem;
}

.btn-link{
	margin-top: 10px;
	font-size: 0.875rem;
}

float-none { 
	float:inherit !important ;
}

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


.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary.active,
.open .dropdown-toggle.btn-primary {
	color: #FFFFFF;
	background-color: #1E2A36;
	border-color: #161F29; 
}

.btn-success {
	background-color: #18BC9C;
	border-color: #18BC9C;
	color: #FFFFFF;
}

.btn-success:hover,
.btn-success:focus,
.btn-success:active,
.btn-success.active,
.open .dropdown-toggle.btn-success {
	color: #FFFFFF;
	background-color: #13987E;
	border-color: #13987E; 
}

.btn-default {
	background-color: #95A5A6;
	border-color: #95A5A6;
	color: #FFFFFF;
}

.btn-default:hover,
.btn-default:focus,
.btn-default:active,
.btn-default.active,
.open .dropdown-toggle.btn-success {
	color: #FFFFFF;
	background-color: #7F9293;
	border-color: #74898A;
}


.ms-choice
{
	border : 1px solid #BBC9E0;
	height: calc(1.5em + .5rem + 2px);
}

.ms-choice > span {
	font-size: .875rem;
	padding-top: 5px;
}

.ms-choice > div {
	height: calc(1.5em + .5rem + 2px);
	top: 2px;
}

span.loginUserName
{
	float: right;
	margin-left: 5px;
	max-width: 100px;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}

.tileGenericLegendContainer
{
	width:100%; 
	color :#717171; 
	display: inline-block; 
	margin-top: -10px; 
	font-size: 14px; 
	margin-bottom: 2px;
}

.tileGenericLegend
{
	float : right;
}

div.warningMsgContentDiv > span
{
	display:inline-block;
	float:left;
	width: 100%;
}

.priority_column
{
	font-size: 20px !important;
}


/* START REVERA ICON */

@font-face {
  font-family: 'accelya';
  src:  url('accelya_fonts/accelya.eot?tm65m8');
  src:  url('accelya_fonts/accelya.eot?tm65m8#iefix') format('embedded-opentype'),
    url('accelya_fonts/accelya.woff2?tm65m8') format('woff2'),
    url('accelya_fonts/accelya.ttf?tm65m8') format('truetype'),
    url('accelya_fonts/accelya.woff?tm65m8') format('woff'),
    url('accelya_fonts/accelya.svg?tm65m8#accelya') format('svg');
  font-weight: normal;
  font-style: normal;
}

[class^="acf_"], [class*=" acf_"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'accelya' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.acf_icon_cargo:before {
  content: "\e94b";
}
.acf_icon_delete_2 .path1:before {
  content: "\e94c";
  color: rgb(29, 29, 27);
}
.acf_icon_delete_2 .path2:before {
  content: "\e94d";
  margin-left: -1em;
  color: rgb(29, 29, 27);
}
.acf_icon_delete_2 .path3:before {
  content: "\e94e";
  margin-left: -1em;
  color: rgb(255, 255, 255);
}
.acf_icon_delete_2 .path4:before {
  content: "\e94f";
  margin-left: -1em;
  color: rgb(255, 255, 255);
}
.acf_icon_delete_2 .path5:before {
  content: "\e950";
  margin-left: -1em;
  color: rgb(255, 255, 255);
}
.acf_icon_delete:before {
  content: "\e951";
}
.acf_offer_sort_1:before {
  content: "\e952";
}
.acf_icon_sort_1a:before {
  content: "\e953";
}
.acf_offer_sort_2:before {
  content: "\e954";
}
.acf_icon_sort_2a:before {
  content: "\e955";
}
.acf_icon_sort_a:before {
  content: "\e956";
}
.acf_icon_accelya_footer:before {
  content: "\e900";
}
.acf_icon_accelya_header_icon:before {
  content: "\e901";
}
.acf_icon_advance_search:before {
  content: "\e902";
}
.acf_icon_app_center .path1:before {
  content: "\e903";
 /*  color: rgb(255, 255, 255); */
}
.acf_icon_app_center .path2:before {
  content: "\e904";
  margin-left: -1em;
  color: rgb(0, 163, 224);
}
.acf_icon_app_center .path3:before {
  content: "\e905";
  margin-left: -1em;
  color: rgb(0, 163, 224);
}
.acf_icon_app_center .path4:before {
  content: "\e906";
  margin-left: -1em;
  /* color: rgb(255, 255, 255); */
}
.acf_icon_avatar:before {
  content: "\e907";
}
.acf_icon_barcode:before {
  content: "\e908";
}
.acf_icon_bluetooth:before {
  content: "\e909";
}
.acf_icon_cart:before {
  content: "\e90a";
}
.acf_icon_close_1:before {
  content: "\e90b";
}
.acf_icon_close_2:before {
  content: "\e90c";
}
.acf_icon_close_3:before {
  content: "\e90d";
}
.acf_icon_copy:before {
  content: "\e90e";
}
.acf_icon_create_new:before {
  content: "\e90f";
}
.acf_icon_Create_new2:before {
  content: "\e910";
}
.acf_icon_date_picker:before {
  content: "\e911";
}
.acf_icon_description:before {
  content: "\e912";
}
.acf_icon_destination:before {
  content: "\e913";
}
.acf_icon_dotted_line:before {
  content: "\e914";
}
.acf_icon_down_2:before {
  content: "\e915";
}
.acf_icon_down:before {
  content: "\e916";
}
.acf_icon_edit:before {
  content: "\e917";
}
.acf_icon_ellipsis_horizontal:before {
  content: "\e918";
}
.acf_icon_ellipsis_vertical:before {
  content: "\e919";
}
.acf_icon_email:before {
  content: "\e91a";
}
.acf_icon_export:before {
  content: "\e91b";
}
.acf_icon_filter:before {
  content: "\e91c";
}
.acf_icon_flight_arrival:before {
  content: "\e91d";
}
.acf_icon_flight_depart:before {
  content: "\e91e";
}
.acf_icon_flight_tail:before {
  content: "\e91f";
}
.acf_icon_flight:before {
  content: "\e920";
}
.acf_icon_goods_description:before {
  content: "\e921";
}
.acf_icon_Hamburger_menu:before {
  content: "\e922";
}
.acf_icon_help .path1:before {
  content: "\e923";
  color: rgb(0, 0, 0);
}
.acf_icon_help .path2:before {
  content: "\e924";
  margin-left: -1em;
  color: rgb(255, 255, 255);
}
.acf_icon_help .path3:before {
  content: "\e925";
  margin-left: -1em;
  color: rgb(255, 255, 255);
}
.acf_icon_home:before {
  content: "\e926";
}
.acf_icon_left_2:before {
  content: "\e927";
}
.acf_icon_left:before {
  content: "\e928";
}
.acf_icon_lock:before {
  content: "\e929";
}
.acf_icon_origin:before {
  content: "\e92a";
}
.acf_icon_pieces:before {
  content: "\e92b";
}
.acf_icon_Pin:before {
  content: "\e92c";
}
.acf_icon_pop_out:before {
  content: "\e92d";
}
.acf_icon_preview:before {
  content: "\e92e";
}
.acf_icon_print:before {
  content: "\e92f";
}
.acf_icon_product_code:before {
  content: "\e930";
}
.acf_icon_rate_search:before {
  content: "\e931";
}
.acf_icon_refresh:before {
  content: "\e932";
}
.acf_icon_right_2:before {
  content: "\e933";
}
.acf_icon_right:before {
  content: "\e934";
}
.acf_icon_Save:before {
  content: "\e935";
}
.acf_icon_search:before {
  content: "\e936";
}
.acf_icon_setings:before {
  content: "\e937";
}
.acf_icon_SHC:before {
  content: "\e938";
}
.acf_icon_show_more:before {
  content: "\e939";
}
.acf_icon_show_offer_arrow:before {
  content: "\e93a";
}
.acf_icon_show_password:before {
  content: "\e93b";
}
.acf_icon_sort_1:before {
  content: "\e93c";
}
.acf_icon_sort_2:before {
  content: "\e93d";
}
.acf_icon_sort:before {
  content: "\e93e";
}
.acf_icon_tick_2:before {
  content: "\e93f";
}
.acf_icon_tick:before {
  content: "\e940";
}
.acf_icon_truck_2:before {
  content: "\e941";
}
.acf_icon_ULD:before {
  content: "\e942";
}
.acf_icon_unlock:before {
  content: "\e943";
}
.acf_icon_up_2:before {
  content: "\e944";
}
.acf_icon_up:before {
  content: "\e945";
}
.acf_icon_valuable:before {
  content: "\e946";
}
.acf_icon_van:before {
  content: "\e947";
}
.acf_icon_volume:before {
  content: "\e948";
}
.acf_icon_wand:before {
  content: "\e949";
}
.acf_icon_weight:before {
  content: "\e94a";
}

/* END  linear-gradient(#6d94bf, #446E9B 50%, #3e648d) */
 

i.fa-sitemap,i.printDoc,i.calculator {
	margin-top: 1px;
	font-size: 1.4em;
}


/* vrushalic */
.dataTable .rowExpand td { /*#BFBC8E #f5e1d3 #E5E4CD*/
	background-color:#FFE4B5 ;
}
/* vrushalic */
.dataTable input.amendStatus {
    background: #f7b515 none repeat scroll 0 0;
    color: #f7b515;
    display: block;
    width: 35px;
}

.hideTableInDialog{
	display:none;
}

textarea {
    text-transform: uppercase;
}

/* Swapnil added for Multilingual */
.tableDivClass
{
	overflow:auto;
}

/* Swapnil added for ExportBilling Worklist */
.tableDivSummaryClass
{
	overflow:auto;

}


/* Swapnil added for ExportBilling Worklist */
.tableDivTransactionClass
{
	overflow:auto;

}

/* Swapnil added for  Airmail Bag Query */
.tableDivMailBagDetails
{
	overflow:auto;

}

/* Swapnil added for  Airmail Bag Query */
.tableDivSectorTab
{
	overflow:auto;

}

/* Swapnil added for  Airmail Bag Query */
.tableDivGPABillingTab
{
	overflow:auto;

}

/* Swapnil added for  Airmail Bag Query */
.tableDivInwardBillingTab
{
	overflow:auto;

}


/* Swapnil added for  Airmail Bag Query */
.tableDivAuditDetails
{
	overflow:auto;

}
 
.genericDetailSectionLabel {
  	font-size: 15px;
	/* font-weight: 600; */
    float:left;
    padding-left: 4px;
    width:100%;
    color: #777;
} 
.detailListsectionDivClass{
	/* padding:0px 4px 8px 4px; */
	/* float:left; */
		 display:inline-block;
	
}

#add_detailTable:first
{
	display:none;
}

.topPaginatorBar div.paginatorContainer span.tableButtonBox
{ 
    display : none;
}
 .genericDetailSectionLabel {
    font-size: 15px;
    float:left;
    padding-left: 4px;
    width:100%;
    color: #777;
} 
.detailListsectionDivClass{
	/* padding:   0px 4px 70px 4px; */
	/*float:none; 
	 width:100%; */
	 display:inline-block;
}

.footer_application_version
{
	font-size:11px; 
	padding-top:2px;
	align-content: center;
	left: 45%;
	position: absolute;
}

a.editSquareIcon
{
	font-size: 1.24em;
	margin-top: 0.2em;
}

div.dt-buttons
{
	float:left;
}

.dataTable a.pdfIcon 
{
    color: #F00;
    font-size: 1.29em;
    margin-right: 5px;
    margin-top: 0.1em;
    float: left;
}
    
button.pdfIcon 
{
    color: #F00;
    font-size: 1.4em;
    margin-right: 5px;
    margin-top: 0.1em;
    float: left;
}

.tableauImageClass {
	width: 100%;
}

.reportServerErrorDiv {
	border: none;
	background: none;
	padding: 15px 30px;
	font-size: 11px;
	/* font: normal 11px/15px "trebuchet ms","trebuchet ms",arial; */
	color: #c50a0a;
	min-height: 55px;
	max-height: 55px;
	height: auto !important;
	height: 55px;
	/* overflow: auto; */
	background-color: #c50a0a;
	border-color: #3498db;
	color: #ffffff;
}

.reportServerErrorSpan {
	margin-left: 20px;
	position: relative;
	float: left;
	font-size: 1.8rem;
}
.errorImageSpan {
	float: left;
    font-size: 2.0rem !important;
}

/* Alert Message START */

.alert.alert-danger {
    border-left: 4px solid #fd397a;
}

.alert.alert-success {
	border-left: 4px solid #0abb87;
}

.alert.alert-warning {
    border-left: 4px solid #ffb822;
}

.alert.alert-info {
	border-left: 4px solid #5d78ff;
}

.alert .alert-text {
	flex-grow: 1;
    color: #282a3c;
}

.alert .alert-close {
    padding: 0rem 0rem;
}

.closebutton {
	font-size: 1rem !important;
    position: absolute;
}

.alert {
    display: flex;
    padding: 0.625rem 1.25rem;    
    border-radius: 4px;
}

/* Alert Message END */
.fileContainerIframe{
height: 100%;
width: 100%;
}
iframe{
border : 0;
}

/* Group Column Start */
span+span.columnSeparatorClass::before {
	content: " | ";
	background-color: yellow;
	color: red;
	font-weight: bold;
}

span:empty+span:empty.columnSeparatorClass::before {
    content: " ";
}

.groupColumnClass {
	color: black;
	text-align: center;
}

.groupColumnRedClass {
	color: red;
}

.groupColumnGreenClass {
	color: green;
}

.groupColumnOrangeClass {
	color: orange;
}

/* Group Column End */

/* Progress Column or Progress Bar Start */
.progress {
	height: 1.25rem;
	margin-bottom: 1.25rem;
}

td div.progress {
	margin-bottom: 0px;
}

.progressLabel {
	color: #595d6e;
    font-size: 0.875rem;
}

.progressSpanLabel {
	color: #595d6e;
    font-size: 0.875rem;
    text-align: right;
    float: right;
}

.progressSpanValue {
	color: #595d6e;
    font-size: 0.875rem;
    text-align: left;
    font-weight: 600;
}

.progress-bar-info {
    background-color: #5bc0de;
}
.progress-bar-success {
    background-color: #5cb85c;
}
.progress-bar-warning {
    background-color: #f0ad4e;
}
.progress-bar-danger {
    background-color: #d9534f;
}

/* Progress Column or Progress Bar End */

/* List Group Start */
.card-list-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-left: 0rem;
    margin-bottom: 0rem;
}

.card-header + .card-list-group .card-list-group-item:first-child {
  border-top: 0rem;
}

.card > .card-list-group:first-child .card-list-group-item:first-child {
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}

.card > .card-list-group:last-child .card-list-group-item:last-child {
  border-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}

.card-list-group-flush .card-list-group-item {
    border-right: 0rem;
    border-left: 0rem;
    border-radius: 0rem;
}

.card-list-group-item:first-child {
    border-top-left-radius: .25rem;
    border-top-right-radius: .25rem;
}

.card-list-group-item {
    position: relative;
    display: block;
    padding: 3px 5px;
    background-color: #fff;
	margin-bottom: -1px;
	border: 0px solid rgba(0,0,0,.125) !important;
	/* font-size: 14px; */	
}

.card-list-group-item > i {
	margin-right : 15px;
	/* font-size: 18px; */
}

.card-list-group .divider {
    height: 1px;
    margin: 3px 0;
    overflow: hidden;
    background-color: #e5e5e5;
}

.vcenter {
    display: inline-block;
    vertical-align: middle;
    float: none !important;
}

.item-details {
	padding-left: 25px;
    font-size: 0.813rem;
}

.listFlightTake {
	font-size: 1.5rem;
    color: #366cf3;
}

.fa-calendar {
	content: "\f073";
	font-family: FontAwesome;
	color: #1dc9b7;
}

.fa-hotel{
	content: "\f236";
	font-family: FontAwesome;
	color: #fd397a;
}

.gears {
	content: "\f085";
	font-family: FontAwesome;
}

.gears:before {
	content: "\f085";
	color: #ffb822;
}

/* List Group End */

/* Data Style Column Start */
.btn.btn-label-brand {
    background-color: rgba(54,108,243,.1);
    color: #366cf3;
    cursor: text!important;
}

.btn.btn-label-danger {
    background-color: rgba(253,57,122,.1);
    color: #fd397a;
    cursor: text!important;
}


.btn.btn-label-warning {
    background-color: rgba(255,184,34,.1);
    color: #ffb822;
    cursor: text!important;
}

.btn.btn-label-success {
    background-color: rgba(29,201,183,.1);
    color: #1dc9b7;
    cursor: text!important;
}

.btn-label-success a {
	color: #1dc9b7;
	text-decoration: none;
}

.btn-label-danger a {
	color: #fd397a;
	text-decoration: none;
}

.btn.btn-font-sm {
    font-size: .85rem;
    float: none;
    margin-right: 0px;
}

.btn.btn-bold {
    font-weight: 600;
}

/* Data Style Column Start */

/*Start -MultiFactor Auth CSS*/

.otpRefSpanLabel {
	margin-left: 20px;
	font-size: 14px;
	padding-top: 10px;
}

.otpRefSpan {
	font-size: 14px;
	padding-top: 10px;
	float: left;
}

.otpSpan {
	font-size: 14px;
	background-position: right;
	padding-right: 10px;
	padding-left: 0px;
		
}

#controlGridmultiFactorAuth > div:nth-child(1) > div:nth-child(1){
	padding-top: 10px;
}

.clockSpanClass {
	font-weight: bold;
	font-size: 14px;
	position: relative;
	color: green;
	padding-top: 20px;
	float: left;
}

/*End -MultiFactor Auth CSS*/

.activate-reset-wrapper {
    width: 350px !important;    
}

.passwdPolicyListDiv {
	/* margin: 20px 50px; */
	margin: 10px 30px;
}

.passwdPolicyHeader {
	font-size: 16px;
	margin-left: -20px;
	margin-bottom: 15px;
	padding-top: 15px;
	padding-bottom: 15px;
}

/* JS Tree Start */

.jstree a {
	white-space:normal !important;
	height: auto !important;
}

.jstree-proton .jstree-themeicon-custom {
	font-size: 1rem !important;
}

.jstree-clicked, .jstree-hovered {
	color:#FFFFFF;
}

.fa-fighter-jet{
	content: "\f0fb";
	font-family: FontAwesome;
}

.fa-file {
  content: "\f15b";
  font-family: FontAwesome;
}

.fa-folder {
  content: "\f07b";
  font-family: FontAwesome;
}
.fa-folder-open {
  content: "\f07c";
  font-family: FontAwesome;
}

/* JS Tree End */

/* BOOTSTRAP 4 CHANGES START */
.caret {
	display: inline-block;
	width: 0px;
	height: 0px;
	margin-left: 2px;
	vertical-align: middle;
	border-top: 4px dashed;
	border-top: 4px solid\9;
	border-right: 4px solid transparent;
	border-left: 4px solid transparent;
}

.navbar .container-fluid {
	display: block;
}

.tab-pane .list-group {
	display: contents;
}
 
.dropdown-toggle:after {
	content: none;
}

.fade.in {
	opacity: 0px;
}

.tilesNavBar {
	width: 100%;
	height: 2.46rem;
}
  
.h4, h4, .h4, h4 {
	color: inherit;
} 

.table>caption+thead>tr:first-child>td, .table>caption+thead>tr:first-child>th, .table>colgroup+thead>tr:first-child>td, .table>colgroup+thead>tr:first-child>th, .table>thead:first-child>tr:first-child>td, .table>thead:first-child>tr:first-child>th {
    border-top: 0;
}

.page-item.active .page-link {
	background-color: #337ab7;
    border-color: #337ab7;
}

.pagination-sm .page-link {
	color: #337ab7;
	font-size: 12px;
	padding: .125rem .625rem;
}

.page-link:focus {
  box-shadow: 0 0 0 0rem rgba(0, 123, 255, 0.25);
}

.dataTable th a.page-link {
	background-color: inherit;
	border: 0rem;
	padding: 0rem;
}

.scrtabs-tab-scroll-arrow {
	height: 35px !important;
	padding-top: 8px !important;
}

.tableCollapseSpan {
	font-size: 16px;
}

div.tilePanel{
	border-radius: 0rem;
} 
 	
/* BOOTSTRAP 4 CHANGES END */


/* SELECT Picklist Start */

select.unselected_picklist, select.selected_picklist {
	padding: 0 !important;
}

select.unselected_picklist > option, select.selected_picklist > option {
	border-bottom: 1px solid #ebedf2;
	padding: .75rem .75rem;
}

select.unselected_picklist > option:last-child, select.selected_picklist > option:last-child{
	border-bottom: 0px;
}

select.unselected_picklist:not() {
	background-color : #ffffff;
	color:#333333;
}

/* SELECT picklist end */

/* Dropdown link  start */

.flaticon-more-1::before {
    content: "\f141";
    font-family: FontAwesome;
}

.flaticon-more-1 {
	font-size: 1.2em;
	font-style: normal;
	font-weight: 400;
	font-variant: normal;
	line-height: 1;
	text-decoration: inherit;
	text-rendering: optimizeLegibility;
	text-transform: none;
}

.actionGroupIcon {
	position: inherit;
}

.actionGroupIconBox {
	float: right;
}

.actionGroupIconBox > .dropdown-menu {
	padding: 0px;
	border: 1px solid rgba(0,0,0,.15);
}

.dropdown-menu_nav {
    display: block;
    padding: 0.2rem 0;
    margin: 0;
    list-style: none;
    border: 0;
}

.dropdown-menu_nav .dropdown-menu_nav_item {
    display: block;
    padding: 0.2rem 0;
}

.actionGroupIconBox > .dropdown-menu > .dropdown-menu_nav .dropdown-menu_nav_item {
	overflow: hidden;
	text-overflow: ellipsis;
}

.actionGroupIconBox > .displayIconsOnly {
	min-width: 0.3rem;
}

.actionGroupIconBox .displayIconsOnly .dropdown-menu_nav_item {
	display: inline-block !important;
	padding: 0rem 0rem !important;
}

.actionGroupIconBox .displayIconsOnly .dropdown-menu_nav_item  .mainIcon{
	padding-left: 0rem !important;
}

.dropdown-menu_nav .dropdown-menu_nav_item > .mainIcon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    /* padding: .55rem; */
    padding-left: 3rem;
    cursor: pointer;
    -webkit-transition: all .3s;
    transition: all .3s;
}

.dropdown-menu_nav .dropdown-menu_nav_item > .mainIcon > .outterIcon {
	font-size: 1.6em;
}

.divider {
    height: 1px;
    margin: 3px 0;
    overflow: hidden;
    background-color: #e5e5e5;
}

/* dropdown link end */

.date-refresh {
	font-family: FontAwesome;
	content: "\f021";
}

.date-refresh:before {
	content: "\f021";
}

.nav-tabs .nav-link {
	border: 1px solid transparent;
	border-top-left-radius: 0rem;
    border-top-right-radius: 0rem;
    background-color: #667380;
}

.form-control:focus {
    color: #495057;
    background-color: #fff;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(0,123,255,.25);
    border-radius: 0rem;
}

.form-control {
    transition: none;
}
.form-control {
    display: block;
    width: 100%;
    height: calc(1.5em + .75rem + 2px);
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

.card-default>.card-header {
    color: #333;
    background-color: #f5f5f5;
    border-color: #ddd;
}

.tilePanel > .card-header > .card-title {
	margin-bottom: 0rem;
	font-size: 1rem;
}

.navbar li > a.mainMenuAction, #mainMenu.navbar li.hideshow > a.nav-link {
    padding: 0.8rem 0.9375rem !important;
}

.form-control-feedback {
    position: absolute;
    right: 0;
    z-index: 2;
    display: block;
    width: 34px;
    height: 34px;
    line-height: 34px;
    text-align: center;
    pointer-events: none;
}

.btn-link:hover {
    text-decoration: none;
}

.btn-group-sm > .btn, .btn-sm {
	font-size: 0.75rem;
}


.navbar-inverse .nav-pills > li > a.active, .navbar-inverse .nav-pills > li > a.active:focus, .navbar-inverse .nav-pills > li > a.active:hover {
    color: #FFFFFF;
    background-color: #01a3df;
}
.tileNavBar-default .nav-pills > li > a.active + span
{
	color: #425563; display:inline-block !important;
}

.tileNavBar-default .nav-pills > li > a + span
{
	position: relative; left: 45%; top: -4px;font-size: 15px;color: #425563; display:none;
}

.tileNavBar-default .nav-pills > li > a.active, .tileNavBar-default .nav-pills > li > a.active:focus, .tileNavBar-default .nav-pills > li > a.active:hover {
	color: #FFFFFF !important;
	background-color: #425563;
}

.tileNavBar-default .nav-pills > li > a
{
	padding-top:0.5rem;
	padding-bottom:0.625rem;
	font-size:0.875rem;
}

.navbar-default .nav-pills > li > a
{
  color : /* #6B6B6B */ #4D4D4D;
}

.nav-pills .nav-link {
    border-radius: 0rem;
}

.container-fluid {
    padding-right: 0.938rem !important;
    padding-left: 0.938rem;
    margin-right: auto;
    margin-left: auto;
}

.nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus {
  border-color: transparent !important;
  background-color: transparent !important;
}

.tileDateControlDiv {
	width: 9%;
}

button, input, optgroup, select, textarea {
	color: #333;
}

.simple-clickable-table .filterAction
{
	color:#bcbcbc !important;
}
	
.simple-clickable-table .dataTables_scrollHead
{
	border-top: 1px solid #cbcbcb !important;
}

.simple-clickable-table .dataTables_scrollHead table.dataTable
{
	border-top: 0px solid #cbcbcb;
    border-left: 0px solid #cbcbcb;
    border-bottom: 0px solid #cbcbcb;
}

.simple-clickable-table .dataTables_scrollBody table.dataTable
{
    border-left: 0px solid #cbcbcb;
    border-bottom: 0px solid #cbcbcb;
}

.simple-clickable-table .dataTables_scrollBody, .simple-clickable-table div.scrollHeader
{
	scrollbar-width: thin;
}

.simple-clickable-table .dataTables_scrollBody::-webkit-scrollbar-thumb:active, .simple-clickable-table div.scrollHeader::-webkit-scrollbar-thumb:active {
	background: linear-gradient(left, #22ADD4, #1E98BA);
}

.simple-clickable-table .dataTables_scrollBody::-webkit-scrollbar, .simple-clickable-table div.scrollHeader::-webkit-scrollbar {
  width: 7px;               /* width of the entire scrollbar */
	height: 7px;
}

.simple-clickable-table .dataTables_scrollBody::-webkit-scrollbar-track, .simple-clickable-table div.scrollHeader::-webkit-scrollbar-track {
  background:  #f2f2f2;       /* color of the tracking area */
}

.simple-clickable-table .dataTables_scrollBody::-webkit-scrollbar-thumb, .simple-clickable-table div.scrollHeader::-webkit-scrollbar-thumb {
  background-color: #d4d4d4;    /* color of the scroll thumb */
  border-radius: 0px;       /* roundness of the scroll thumb */
  border: 3px solid #d4d4d4;  /* creates padding around scroll thumb */
}

 div.simple-clickable-table .dataTable>thead>tr>th {
    border-bottom-width: 0px; 
    background-image: none;
}

div.simple-clickable-table .dataTable .even td, div.simple-clickable-table .dataTable .odd td, div.simple-clickable-table .dataTable .select td {
   line-height: inherit;
    padding: 8px;
    vertical-align: inherit;
    height: inherit;
}

div.simple-clickable-table .dataTable .even td {
    background-color: #FFFFFF;
}

div.simple-clickable-table .tableWrapper {
    border-left: 1px solid #bcbcbc;
    border-right: 1px solid #bcbcbc;
}

table.simple-table th a {
	text-decoration: none;
	color: rgb(51, 51, 51);
	font-weight: 400;
}

table.simple-table th span {
	color: rgb(51, 51, 51);
	font-weight: 400;
}

table.simple-table {
	margin-bottom: 0px
}

div.simple-clickable-table {
	margin-bottom: 20px
}

.simple-clickable-table .tableExport .dropdown .dropdown-menu, .simple-clickable-table .tableExport .dropup .dropdown-menu {
	background-color: #FFF;
	top: 25px;
	min-width: 80px;
	padding: 5px
}

.tableexportbutton {
	font-size: 14px;
	margin-right: 0px;
	border: none;
}

.dataTable .btn-outline-primary, .simple-clickable-table .btn-outline-primary {
	color: #333;
}

.dataTable .btn-outline-primary.focus, .dataTable .btn-outline-primary:focus, .dataTable .btn-outline-primary:hover {
	background-color: transparent !important;
}

.simple-clickable-table .btn-outline-primary.focus, .simple-clickable-table .btn-outline-primary:focus, .simple-clickable-table .btn-outline-primary:hover {
    color: #333 !important;
    text-decoration: none !important;
    background-color: transparent !important;
}

.simple-clickable-table .tableExport .dropdown .dropdown-menu > li > a, .simple-clickable-table .tableExport .dropup .dropdown-menu > li > a {
	padding: 3px 10px;
	font-size: 14px;
}
.simple-clickable-table .tableExport .dropdown .dropdown-menu a::before, .simple-clickable-table .tableExport .dropup .dropdown-menu a::before {
	padding-right: 10px;
}

.simple-table  tr>td:first-child {
	border-left : 0px !important;
}

.simple-table  tr>td:last-child {
	border-right     : 0px !important;
}

.simple-clickable-table table[id$="_no_data"] th span {
	color: rgb(51, 51, 51);
	font-weight: 400;
}

.simple-clickable-table table[id$="_no_data"] th {
	color: rgb(51, 51, 51);
	font-weight: 400;
	border: 1px solid #ddd;
	/* padding: 0.5em 0.6em 0.4em; */
	padding: 0.75rem;
}

.center_column {
	text-align: center;
}

.dropdown .btn .acf_icon_down {
	font-size: 12px;
}

.btn-primary:not(:disabled):not(.disabled).active, .btn-primary:not(:disabled):not(.disabled):active, .show > .btn-primary.dropdown-toggle {
    color: #FFFFFF;
    background-color: #2C3E50;
    border-color: #2C3E50;
}

.form-control {	
	height: calc(1.5em + .5rem + 2px);
    padding: .25rem .5rem;
    font-size: .875rem;
    line-height: 1.5;
	display: block;
    width: 100%;
    font-weight: 400;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;	
}	

.dropdown-menu .dropdown-item:focus {
	background-color: transparent !important;
}

/* Card Changes start */
	
#cardsDialogDiv .cardContainer {
	position: relative;
}

#cardsDialogDiv {
	height: 650px;
	overflow: auto;
}

.ui-dialog .cardcontainerparent {
	overflow: auto;
	height: auto;
}


/* Card Changes end */		

.navbar-toggler {
	padding-top: 0.5rem;
	padding-left: 0.25rem;
	padding-right: 0rem;
	border: 0px solid transparent;
}

#mainMenu.navbar-light .navbar-header .navbar-nav {
	flex-flow: row nowrap;
}

#mainMenu.navbar-light .userDropMenuIcon {
	position: absolute;
}

#mainMenu.navbar-light .navbar-collapse {
	padding-right: 15px;
	padding-left: 15px;
}

#mainMenu.navbar-light .navbar-collapse.show {
	overflow-y: auto;
}

.yamm .search_info_menu .dropdown-menu.yamm-fw, .yamm .appDropMenuIcon {
	position: absolute;
}

.pagination-sm .page-item .page-link {
    border-color: #ced4da;
}

.table thead th {
    border-bottom: 2px solid #cbcbcb;
}

.table-bordered {
    border: 1px solid #cbcbcb;
    border-left: 0px solid #cbcbcb;
	border-right: 0px solid #cbcbcb;
}

.table-bordered td, .table-bordered th {
    border: 1px solid #cbcbcb;
}

.simple-clickable-table .table-bordered > thead:first-child > tr:first-child > th {
    border-left: 0px solid #cbcbcb;
}

.simple-clickable-table .table-bordered > thead:first-child > tr:last-child > th:last-child {
    border-right: 0px solid #cbcbcb;
} 

.simple-clickable-table .dataTables_scrollHead .table-bordered > thead:first-child > tr:last-child > th:last-child {
    border-right: 1px solid #cbcbcb;
}

.dataTables_scrollHead table.dataTable, .dataTables_scrollHead .table thead th
{
    border-bottom: 0px solid #cbcbcb;
}

.simple-clickable-table .dataTables_scrollHead table.dataTable, .simple-clickable-table .dataTables_scrollHead .table thead th
{
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.highcharts-radial-axis-labels, .highcharts-radial-axis-grid {
	opacity: 0;
}

/* Alerts DashBoard changes starts */

.alertDashBoardSummaryWidget {
  width: 500px;
}

.alertDashBoardDetailWidget {
  width: 1100px;
}

.alertDashBoardSummaryWidget .card-header, .alertDashBoardDetailWidget .card-header {
  padding-bottom: 0rem;
}

.alertDashBoardSummaryWidget .card-body, .alertDashBoardDetailWidget .card-body {
  padding-left: 0rem;
  padding-right: 0rem;
}

/* Alerts DashBoard changes ends */

