/* General
----------------------------------------------------------------------------------------------------*/

a:focus, a:active {
    outline: none;
}

h1, h2, h3 {
    color:666666;
}
h1 {
     font-size: 36px;
 }

button, a.btn {
    text-transform: capitalize;
}




/* Custom Globals
----------------------------------------------------------------------------------------------------*/
.margin-bottom {
    margin-bottom: 15px;
}

.form-seperator {
    border-top: 1px solid #DDDDDD;
    margin-bottom: 18px;
    margin-top:10px;
    padding-top: 6px;
    color: #DDDDDD;
    font-weight: bold;
    text-transform: uppercase;
}

.nice_justnow, .nice_today, .nice_yesterday, .nice_tomorrow {
    background: #ffff99;

}

/* Local and dev reminders!
----------------------------------------------------------------------------------------------------*/
.server_reminder {
    display: block;
    background-color: #DDF4FB;

    border-color: #C6EDF9;
    border-radius: 4px 4px 4px 4px;
    border-style: solid;
    border-width: 1px;

    color: #404040;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
    margin-left: 15px;
    margin-right: 15px;
    padding: 6px;
    margin-bottom: 20px;
}
.server_reminder p {
    text-align: center;
    font-weight: bold;
    font-size: 12px;
    text-transform: uppercase;
    margin: 0;
}


/* super admin role reminder
----------------------------------------------------------------------------------------------------*/
.rbss-staff-msg {

    margin-left: 15px;
    margin-right: 15px;
    margin-bottom: 20px;
}


/* Main Navigation
----------------------------------------------------------------------------------------------------*/
.navbar-inner {
    background-color: #A00C04;
    background-image: -moz-linear-gradient(top, #A00C04, #DF190F);
    background-image: -ms-linear-gradient(top, #A00C04, #DF190F);
    background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#A00C04), to(#DF190F));
    background-image: -webkit-linear-gradient(top, #A00C04, #DF190F);
    background-image: -o-linear-gradient(top, #A00C04, #DF190F);
    background-image: linear-gradient(top, #A00C04, #DF190F);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#A00C04', endColorstr='#DF190F', GradientType=0);
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
}

.navbar .navbar-text, .navbar .navbar-text a {
    color: #ffffff;
    font-family: 'Cuprum', sans-serif;

}
.navbar .nav > li > a {
    color:#fff;
}

.navbar .nav > li > a:hover {
    color: #000;
}

.navbar .divider-vertical {
    background-color: #A00C04;
    border-right: 1px solid #A00C04;

}

ul.help-dropdown{
    list-style: none;
    margin-left: 10px;
    font-size: 11px;

}
/* Icons
----------------------------------------------------------------------------------------------------
.icon {
    height: 32px;
    margin-bottom: 8px;

}

.appointments {
    background: url("../img/rbss_icons/book.png") no-repeat;
}

.invoices {
    background: url("../img/rbss_icons/calculator.png") no-repeat;
    padding-left: 50px;
}


.contacts {
    background: url("../img/rbss_icons/group.png") no-repeat;
    padding-left: 50px;
}

.messages {
    background: url("../img/rbss_icons/email_open.png") no-repeat;
}
*/

/* Payments
----------------------------------------------------------------------------------------------------*/
span.payment-out {
    color:#c04027;
}
span.transaction-in {
    color:#64bc47;
}


/* Calendar
----------------------------------------------------------------------------------------------------*/

table.calendar {
    margin: auto; border-collapse: collapse;
}
.calendar .days td {
    width: 80px;
    height:80px;
    padding-top: 4px;
    padding-bottom: 4px;
    border: 1px solid #DDDDDD;
    vertical-align: top;
    background-color: #F5F5F5;
}
.calendar .days td:hover {
    background-color: #FFF;
}


.day_holder {
    cursor: pointer;
    min-height: 80px;
}
.day_num {
    padding-left: 4px;
}
.day_num.today {
    color: #A00C04;
}
.day_num.highlight {
    color:#0088CC;
}

table.calendar div.event {
    display: block;
    color: #000;
    background: #DDDDDD;
    font-size: 11px;
    margin-top: 4px;
    padding: 1px;
}
div.event.single {
    border: 1px solid #999999;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;

    margin-left:4px;
    margin-right: 4px;
}
div.event.start {
    border-top: 1px solid #999999;
    border-bottom: 1px solid #999999;
    border-left: 1px solid #999999;
    -moz-border-radius-topleft: 6px;
    -moz-border-radius-topright: 0px;
    -moz-border-radius-bottomright: 0px;
    -moz-border-radius-bottomleft: 6px;
    -webkit-border-radius: 6px 0px 0px 6px;
    border-radius: 6px 0px 0px 6px;

    margin-left: 4px;
}
div.event.middle {
    border-top: 1px solid #999999;
    border-bottom: 1px solid #999999;
}
div.event.end {
    border-top: 1px solid #999999;
    border-bottom: 1px solid #999999;
    border-right: 1px solid #999999;
    -moz-border-radius-topleft: 0px;
    -moz-border-radius-topright: 6px;
    -moz-border-radius-bottomright: 6px;
    -moz-border-radius-bottomleft: 0px;
    -webkit-border-radius: 0px 6px 6px 0px;
    border-radius: 0px 6px 6px 0px;

    margin-right: 4px;
}

/* Calendar day view
----------------------------------------------------------------------------------------------------*/
tr.out-of-hours {
    background: #F5F5F5;
}

.day-hour-event {
    border: 1px solid #999999;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    border: 1px solid #999999;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    background: #DDDDDD;
    font-size: 11px;
    width:120px;
    padding: 4px;
    margin-right: 2px;
    margin-bottom: 2px;
    display: block;
    float: left;
}

/* css for timepicker */
.ui-timepicker-div .ui-widget-header { margin-bottom: 8px; }
.ui-timepicker-div dl { text-align: left; }
.ui-timepicker-div dl dt { height: 25px; margin-bottom: -25px; }
.ui-timepicker-div dl dd { margin: 0 10px 10px 65px; }
.ui-timepicker-div td { font-size: 90%; }
.ui-tpicker-grid-label { background: none; border: none; margin: 0; padding: 0; }


/* Login form?
----------------------------------------------------------------------------------------------------*/

.admin_login {
    margin: 0 auto;
    width: 600px;
}

.admin_login h1 {
    padding-bottom: 10px;
}


/* Page footer
----------------------------------------------------------------------------------------------------*/
.page-footer {
    border-top: 1px solid #EEEEEE;
    margin: 18px 0;
    padding-top: 17px;
    color: #cccccc;
}
.topgap {
   margin-top:70px;
   }

.ui-widget.ui-widget-content {
    /*border: 1px solid var(--widget-border)!important;*/
    background: var(--widget-background)!important; 
}

.nt-contentpanel {
   /* float: left;*/
    width: 80%;
	margin-top:3px;
}
.nt-leftpanel {
	float: none !important; 
}
._subMenus {
	background-color: #7c7e8133;
	height: 2em;
	width: 108%;
	/* float: right; */
	white-space: nowrap;
	margin-right: 0.1em !important;
	display: flex;
	align-items: center;
	color: #b21e23;
	font-weight: bold;
	padding-left:0.5em;
}
.nt-block {
	align-items:flex-start;
}
.ui-tabs .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor, .ui-tabs .ui-tabs-nav li.ui-state-disabled .ui-tabs-anchor, .ui-tabs .ui-tabs-nav li.ui-tabs-loading .ui-tabs-anchor {
	color: #004276;
}
._subMenus img{margin-left: 5px;}
.fa-nt-dash {
	font-size: 20px;
	color: #b21e23;
	padding-right: 10px;
}
.nt-menu-accordion h3{
	border-width: 1px;
    border-color: #d4d2d2;
}

.ui-accordion-header-icon, .ui-icon .ui-widget-content .ui-icon {
	background-image: url("/icons/nt-icons-red.svg") !important;
}
.ui-state-active .ui-icon, .ui-button:active .ui-icon {
	background-image: url("/icons/nt-icons-red.svg")!important;
}  
.tp-ui-accordion-content {
	max-height: 1500px;
}
.menulevel2 {
	justify-content: flex-start !important;
}
.Contentleft {
	   padding-left: 10px;
}
.tp-ui-accordion-content > .nt-menu-taskpanel .ui-accordion-header {
	justify-content: flex-start !important;
}
.r1 {
	float: left;
	width: 128px;
	height: 128px;
	/* background-image: url(/images/r_image1.jpg); */
	-moz-border-radius: 170px;
	-webkit-border-radius: 170px;
	border-radius: 170px;
	border: 5px solid #cc0000;
	margin-left: 0px;
}
.nt-browse-table-cell {
    min-height: 1em !important;
    font-weight: normal;
}
.nt-menu-accordion h3 {
	height: 2.5em;
}
.custom-display-button {
	font-size: 30px;
	color: #b7494e;
	cursor: pointer;
}


/* mobile support starts here */

.abtWid
{
float:left;
width:200px;
}
.abtwiddesc
{
width:900px;
margin-left:20px;
float:left;
}
p
{
line-height:23px;
}
h4
{
font-size:23px;
}
.indivTag
{
background-color:#F5F5F5;
border:1px solid #A00C04;
}
.indivTag img
{
margin-top:20px;
margin-bottom:20px;
}
.findoutmore
{
padding:5px 14px 6px;
background-color:#b31e24;
color:#ffffff;
}
.findoutmorediv
{
margin-top:20px;
margin-bottom:20px;
}
.findoutmorediv a
{
text-decoration:none;
}
/*
.footer
{
width:100%;
background-color: #A00C04;
background-image: -moz-linear-gradient(top, #A00C04, #DF190F);
background-image: -ms-linear-gradient(top, #A00C04, #DF190F);
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#A00C04), to(#DF190F));
background-image: -webkit-linear-gradient(top, #A00C04, #DF190F);
background-image: -o-linear-gradient(top, #A00C04, #DF190F);
background-image: linear-gradient(top, #A00C04, #DF190F);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#A00C04', endColorstr='#DF190F', GradientType=0);
-webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
-moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
height:35px;
bottom:0px;
position: relative;
    min-width: 1366px;
    max-width: 2048px;
    margin: 0px auto; 
    width: 100%;
}
.footer .footerContent
{
position: relative;
    min-width: 1366px;
    max-width: 2048px;
    margin: 0px auto; 
    width: 100%;
}
.footer ul
{
margin-left:470px;
padding:0;
margin-top:-15px;
}
.footer ul li
{
list-style:none;
color:#ffffff;
font-size:14px;
float:left;
padding:10px;
}
.footer ul li a
{
color:#ffffff;
}
*/
.hrdiv
{
color: #b31e24;
background-color: #b31e24;
height: 0px;
border:1px solid;
margin-top:20px;
margin-bottom:20px;
}
.htag
{
color:#A00C04;
font-weight:bold;
}
.date {
height: 30px;
width: 145px;
   }
.date > .nt-lookup {
height: 30px;
width: 145px;
   }   
.ra_Textbox {
  width:90%;
   }
.subhead_height {
   height: 30px;
   }
.s_Textbox {
  width:110px;
   }
.label.danger{
     background-color: #f20e16;
     }
 /*  
.nt-browse-header{
    font-size:1.2em;
    line-height:2em;
      }
.browsepageclass{
 color:#b2252b;
 font-weight:bold;
} */
.blink_text {

    animation:3s blinker linear infinite;
    -webkit-animation:3s blinker linear infinite;
    -moz-animation:3s blinker linear infinite;

    }

    @-moz-keyframes blinker {  
     0% { opacity: 1.0; }
     50% { opacity: 0.0; }
     100% { opacity: 1.0; }
     }

    @-webkit-keyframes blinker {  
     0% { opacity: 1.0; }
     50% { opacity: 0.0; }
     100% { opacity: 1.0; }
     }

    @keyframes blinker {  
     0% { opacity: 1.0; }
     50% { opacity: 0.0; }
     100% { opacity: 1.0; }
     }
.nlogin{
        min-height: 100%;
	padding: 19px;
	margin-bottom: 20px;
	background-color: #fff;
	border: 1px solid #eee;
	border: 1px solid rgba(0, 0, 0, 0.05);
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
	-moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
	width: 95%;
	font-size: 50px;
     }
/*	 
.r1 {
	float: left;
	width: 128px;
	height: 128px;
	-moz-border-radius: 170px;
	-webkit-border-radius: 170px;
	border-radius: 170px;
	border: 5px solid #cc0000;
	margin-left: 0px;
}
input, textarea, select, .uneditable-input{
        height:auto;
        } */
.nt-browse-table th {
		font-weight: normal;
}
a:hover {
	text-decoration: none;
}
.wsd {
   padding:1px 3px 2px;
   background: #67c843;
   color: #ffffff;
   min-width: 120px;
   text-align: center;
   display: block;
  }
  .wse {
     padding:1px 3px 2px;
     background: #de3131;
     color: #ffffff;
     min-width: 120px;
     text-align: center;
     display: block;
  }
  .customer-note > tbody {
  	border: 0px #DDDFEA solid !important;
}
.tc > div {
	border: 0px #DDDFEA solid !important;
	border-top: 0px;
}
.tc.nt-browse-table {
        border: 0px #DDDFEA solid !important;
           }
.minwidth100 {
   min-width: 100px !important;
   }
.minwidth110 {
      min-width: 110px !important;
   }
.note-scroll {
          height:48em;    
          overflow-y:scroll;
     }
.btnT {
   	width: 220px;
   	height: 60px;
   	margin: 3px;
}
/*
.ui-tabs .ui-tabs-panel {
	display: block;
	border-width: 0;
	padding: 1em 0em;
	background: none;
} */
.bred {
   background-color: #b31e24;
   color:#fff;
}
.bgreen {
   background-color: #46a546;
   color:#fff;
} 
/*
.Contentleft{
  justify-content:left;
   }  
 .ui-accordion-content {
	max-height: 38em !important;
}  */ 
.olegend legend {
	display: block;
	width: auto;
	margin-bottom: 27px;
	font-size: 19.5px;
	line-height: 36px;
	color: #333333;
	border: 0;
	padding-bottom: 0px;
	margin-left: 15px;  
	background-color: #2bbdd5;
      padding: 0.3em;
      color: #fff;
}
.mEbutton{
    color: #fff;
    background-color: #165578;
    border: 0;
    width: 100%;
    height: 2.5em;  
    font-size: 1.5em !important;
	padding: 0.5em !important;
	justify-content: flex-start;
} 
.mNbutton {
	color: #fff;
	background-color: #5c935d;
	border: 0;
	width: 100%;
	height: 2.5em;  
	font-size: 1.5em !important;
	padding: 0.5em !important;
	justify-content: flex-start;
} 
.mGbutton {
	color: #fff;
	background-color: #6eb1e1;
	border: 0;
	width: 100%;
	height: 2.5em;  
	font-size: 1.5em !important;
	padding: 0.5em !important;
	justify-content: flex-start;
} 
.mIbutton {
	color: #fff;
	background-color: #741c35;
	border: 0;
	width: 100%;
	height: 2.5em;   
	font-size: 1.5em !important;
	padding: 0.5em !important;
	justify-content: flex-start;
}
.mHbutton {
	color: #fff;
	background-color: #b31e24;
	border: 0;
	/* width: 100%; */
	height: 2.5em;   
	font-size: 1.5em !important;
	padding: 0.5em !important;
	justify-content: flex-start;
}
.mAbutton {
	color: #fff;
	background-color: #1eb34a;
	border: 0;
	width: 100%; 
	height: 2.5em;   
	font-size: 1.5em !important;
	padding: 0.5em !important;
	justify-content: flex-start;
}
.mCbutton {
	color: #fff;
	background-color: #1e89b3;
	border: 0;
	width: 100%; 
	height: 2.5em;   
	font-size: 1.5em !important;
	padding: 0.5em !important;
	justify-content: flex-start;
}
.mDbutton {
	color: #fff;
	background-color: #e62323;
	border: 0;
	width: 100%; 
	height: 2.5em;   
	font-size: 1.5em !important;
	padding: 0.5em !important;
	justify-content: flex-start;
}
.mHTbutton {
	color: #fff;
	background-color: #b31e4f;
	border: 0;
	width: 100%; 
	height: 2.5em;   
	font-size: 1.5em !important;
	padding: 0.5em !important;
	justify-content: flex-start;
}
.mMbutton {
	color: #fff;
	background-color: #51504f;
	border: 0;
	width: 100%; 
	height: 2.5em;   
	font-size: 1.5em !important;
	padding: 0.5em !important;
	justify-content: flex-start;
}
.mWbutton {
	color: #fff;
	background-color: #b09954;
	border: 0;
	width: 100%; 
	height: 2.5em;   
	font-size: 1.5em !important;
	padding: 0.5em !important;
	justify-content: flex-start;
}
.smHbutton {
	color: #fff;
	background-color: #b31e24;
	border: 0;
	width: 3.3em;
	height: 3em;
	font-size: 1.5em !important;
	/*padding: 0.5em !important;*/
}
.mbtnHtab legend {
    display: block;
    width: auto;
    margin-bottom: 27px;
    font-size: 22px;
    line-height: 36px;
    /* color: #333333; */
    /* border: 0; */
    /* padding-bottom: 0px; */
    /* margin-left: 5px; */
    background-color: #fff;
    /* padding: 0.3em; */
    color: #000;
    width: 100%;
    margin-right: 5px;
    background-image: url(/images/nlogo.png);
    background-repeat: no-repeat;
    background-position: left center;
    padding-left: 1.8em;
    background-origin: padding-box;
    border: 0;
    background-size: 15%;
    text-align: center;
}
.mbtnDtab legend {
	display: block;
	/* width: auto; */
	margin-bottom: 27px;
	font-size: 22px;
	line-height: 36px;
	/* color: #333333; */
	/* border: 0; */
	padding-bottom: 0px;
	/* margin-left: 5px; */
	background-color: #b31e24;
	/* padding: 0.3em; */
	color: #fff;
	/* width: auto; */
	/* margin-right: 5px; */
	background-image: url('/images/nhome.png');
	background-repeat: no-repeat;
	background-position: left center;
	padding-left: 1.8em;
	background-origin: padding-box;
	border: 10px dotted #b31e24;
} 
.mbtnNtab legend {
	display: block;
	/* width: auto; */
	margin-bottom: 27px;
	font-size: 22px;
	line-height: 36px;
	/* color: #333333; */
	/* border: 0; */
	padding-bottom: 0px;
	/* margin-left: 5px; */
	background-color: #5c935d;
	/* padding: 0.3em; */
	color: #fff;
	/* width: auto; */
	/* margin-right: 5px; */
	background-image: url('/images/nnotes.png');   
	background-size: 32px;
	background-repeat: no-repeat;
	background-position: left center;
	padding-left: 1.8em;
	background-origin: padding-box;
	border: 10px dotted #5c935d;
}
.mbtnEtab legend {
	display: block;
	/* width: auto; */
	margin-bottom: 27px;
	font-size: 22px;
	line-height: 36px;
	/* color: #333333; */
	/* border: 0; */
	padding-bottom: 0px;
	/* margin-left: 5px; */
	background-color: #165578;
	/* padding: 0.3em; */
	color: #fff;
	/* width: auto; */
	/* margin-right: 5px; */
	background-image: url('/images/nengagement.png');      
	background-size: 32px;
	background-repeat: no-repeat;
	background-position: left center;
	padding-left: 1.8em;
	background-origin: padding-box;
	border: 10px dotted #165578;
}  
.mbtnItab legend {
	display: block;
	/* width: auto; */
	margin-bottom: 27px;
	font-size: 22px;
	line-height: 36px;
	/* color: #333333; */
	/* border: 0; */
	padding-bottom: 0px;
	/* margin-left: 5px; */
	background-color: #741c35;
	/* padding: 0.3em; */
	color: #fff;
	/* width: auto; */
	/* margin-right: 5px; */
	background-image: url('/images/nincident.png');   
	background-size: 32px;
	background-repeat: no-repeat;
	background-position: left center;
	padding-left: 1.8em;
	background-origin: padding-box;
	border: 10px dotted #741c35;
}
.mbtnAtab legend {
	display: block;
	/* width: auto; */
	margin-bottom: 27px;
	font-size: 22px;
	line-height: 36px;
	/* color: #333333; */
	/* border: 0; */
	padding-bottom: 0px;
	/* margin-left: 5px; */
	background-color: #1eb34a;
	/* padding: 0.3em; */
	color: #fff;
	/* width: auto; */
	/* margin-right: 5px; */
	background-image: url('/images/maptlog.png');   
	background-size: 32px;
	background-repeat: no-repeat;
	background-position: left center;
	padding-left: 1.8em;
	background-origin: padding-box;
	border: 10px dotted #1eb34a;
}
.mbtnCtab legend {
	display: block;
	/* width: auto; */
	margin-bottom: 27px;
	font-size: 22px;
	line-height: 36px;
	/* color: #333333; */
	/* border: 0; */
	padding-bottom: 0px;
	/* margin-left: 5px; */
	background-color: #1e89b3;
	/* padding: 0.3em; */
	color: #fff;
	/* width: auto; */
	/* margin-right: 5px; */
	background-image: url('/images/mcomplaint.png');   
	background-size: 32px;
	background-repeat: no-repeat;
	background-position: left center;
	padding-left: 1.8em;
	background-origin: padding-box;
	border: 10px dotted #1e89b3;
}
.mbtnDGtab legend {
	display: block;
	/* width: auto; */
	margin-bottom: 27px;
	font-size: 22px;
	line-height: 36px;
	/* color: #333333; */
	/* border: 0; */
	padding-bottom: 0px;
	/* margin-left: 5px; */
	background-color: #e62323;
	/* padding: 0.3em; */
	color: #fff;
	/* width: auto; */
	/* margin-right: 5px; */
	background-image: url('/images/mdamage.png');   
	background-size: 32px;
	background-repeat: no-repeat;
	background-position: left center;
	padding-left: 1.8em;
	background-origin: padding-box;
	border: 10px dotted #e62323;
}
.mbtnHTtab legend {
	display: block;
	/* width: auto; */
	margin-bottom: 27px;
	font-size: 22px;
	line-height: 36px;
	/* color: #333333; */
	/* border: 0; */
	padding-bottom: 0px;
	/* margin-left: 5px; */
	background-color: #b31e4f;
	/* padding: 0.3em; */
	color: #fff;
	/* width: auto; */
	/* margin-right: 5px; */
	background-image: url('/images/mapt.png');   
	background-size: 32px;
	background-repeat: no-repeat;
	background-position: left center;
	padding-left: 1.8em;
	background-origin: padding-box;
	border: 10px dotted #b31e4f;
}
.mbtnMtab legend {
	display: block;
	/* width: auto; */
	margin-bottom: 27px;
	font-size: 22px;
	line-height: 36px;
	/* color: #333333; */
	/* border: 0; */
	padding-bottom: 0px;
	/* margin-left: 5px; */
	background-color: #51504f;
	/* padding: 0.3em; */
	color: #fff;
	/* width: auto; */
	/* margin-right: 5px; */
	background-image: url('/images/mmeeting.png');   
	background-size: 32px;
	background-repeat: no-repeat;
	background-position: left center;
	padding-left: 1.8em;
	background-origin: padding-box;
	border: 10px dotted #51504f;
}
.mbtnWtab legend {
	display: block;
	/* width: auto; */
	margin-bottom: 27px;
	font-size: 22px;
	line-height: 36px;
	/* color: #333333; */
	/* border: 0; */
	padding-bottom: 0px;
	/* margin-left: 5px; */
	background-color: #b09954;
	/* padding: 0.3em; */
	color: #fff;
	/* width: auto; */
	/* margin-right: 5px; */
	background-image: url('/images/mweekly.png');   
	background-size: 32px;
	background-repeat: no-repeat;
	background-position: left center;
	padding-left: 1.8em;
	background-origin: padding-box;
	border: 10px dotted #b09954;
}
.moveLeft {
   float:left;
      }  
.moveRight {
   float:right;
      }
.mbtnHtab, .nt-form-div.wauto {
    width:auto !important;
      }	
.lone {
    height:3em;
}	
.mbtnHtab, .smHbutton {
	      display:grid;
     }
.btn-text {
          clear: both;
		  font-size: 10px;
     }	
.blkd {
	width: 2.85em;
    text-align: center;
	font-weight:bold;
     }
.mc {
	text-align:center !important;
	color:green;
	}	
	.1c_image-cell {
	margin: 0.3em;
	min-width: 12.5em;
	max-width: 12.5em;
	height: 18em;
	background: #fff;
	color: #000;
	margin-top: 0em;
	margin-bottom: 0.5em;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
	padding-left: 0px !important;
	padding-right: 0px !important;
}
.1c_image-content {
	justify-content: center;
	width: 100%;
	background-color: #fff;
	height: 10em;
} 
/* .umcGridTile .umcGridTileItem { 
.umcGridTileItem {
	position: relative;
	outline: none;
	padding: 16px;
	background-color: #fff;
	box-sizing: content-box;
	transition: box-shadow 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms;
	box-shadow: 0 1px 6px rgba(1,0,0,0.118), 0 1px 4px rgba(0,1,0,0.118);
	border-radius: 2px;
	height: 100px;
	overflow: hidden;
	width:30%;
} */
.umcGridTileItem {
	position: relative;
	outline: none;
	padding: 5px;
	background-color: #e7e7e7;
	box-sizing: content-box;
	transition: box-shadow 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms;
	/* box-shadow: 0 1px 6px rgba(1,0,0,0.118), 0 1px 4px rgba(0,1,0,0.118); */
	border-radius: 2px;
	height: 200px;
	overflow: hidden;
	width: 29%;
}
.umcGridTileItem .umcGridTileContextIcon {
	background: url("images/icons.svg") 0px -40px no-repeat;
	background-size: 320px 260px;
	width: 20px;
	height: 20px;
	position: absolute;
	top: 11px;
	left: auto;
	right: 8px;
}
.umcGridTileItem .umcGridTileIcon {
	height: 70px;
	width: 70px;
	/* left: 11px; */
	top: 50%;
	margin-top: -35px;
	position: absolute;
	border-radius: 35px;
	overflow: hidden;
	line-height: 70px;
	text-align: center;
	color: #fff;
	font-size: 24px;
	font-weight: 500;
	background: #ffdb87;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}
.umcGridTileItem .umcGridTileName {
	font-size: 16px;
	color: #5a5a5a;
	font-weight: 500;
	word-break: break-word;
	margin-right: 24px;
	margin-left: 75px;
}
.umcGridTileItem .umcGridTileDescription {
	color: #787878;
	padding-top: 5px;
	min-height: 70px;
	margin-left: 75px;
}

.umcGridTileItem .nt-browse-grid-cell, .nbrw {
	padding-left: 5px; 
      padding-right: 5px; 
	border-left: 0px solid #eee !important; 
	border-right: 0px solid #EEE !important; 
	border-bottom: 0px solid #eee !important; 
	border-top: 0px solid #EEE !important; 
}
/*
 .nt-browse-grid-cell {
	padding-left: 5px;
	padding-right: 5px;
	border-left: 0px solid #AAA!important; 
	border-right: 0px solid #EEE!important; 
	border-bottom: 0px solid #CCC!important; 
	border-top: 0px solid #EEE!important; 
}
*/
.c_prompts {
    font-size:0.8em;
    width:160px;
}
.umcGridTileItem .nt-browse-grid-row {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	border: 2px solid #fff;
	align-items: center;
	padding: 5px !important;
	background-color: #e3e3e3 !important;
}
.nt-width-10px{width:10px!important;}
.nt-width-20px{width:20px!important;}
.nt-width-30px{width:30px!important;}
.nt-width-40px{width:40px!important;}
.nt-lookup-entry{width:100!important;}
.ui-tabs .ui-tabs-nav li {
	height: 5%; 
}



li {
	list-style: none;
}

.containers {
	width: 80%;
	margin: auto;

}


.header {
	position: fixed;
	top: 0px;
	left: 0px;
	right: 0px;
}

.header .logo {
	width: 20%;
	background-color: #fff;
	float: left;
	padding-left: 45px;
	box-sizing: border-box;
	position: relative;
}

.header .logo:after {
	content:'';
	display: block;
	width: 0px;
	height: 0px;
	border-bottom: 145px solid transparent;
	border-left: 100px solid #FFF;
	border-right: 0px solid #FFF;
	position: absolute;
	left: 100%;
	bottom: 0px;
}


.header .menu {
	width: 80%;
	background-color: #b21e23;
	float: left;
	margin-top: 25px;
	padding: 10px 0px;
}

.header .menu ul {
	text-align: right;
	margin-right: 50px;
}

.header .menu ul li {
	display: inline-block;
	padding: 10px 30px;
}

.header .menu ul li a {
	color: #FFF;
}

.header .menu ul li a img {
	display: block;
	margin: auto;
}
.header-dash {
	position: relative;
	top: -3px;
	left: 0px;
	right: 0px;
}
.header-dash .logo {
	width: 20%;
	background-color: #fff;
	float: left;
	padding-left: 5px;
	box-sizing: border-box;
	position: relative;
}

.header-dash .logo:after {
	content:'';
	display: block;
	width: 0px;
	height: 0px;
	border-bottom: 145px solid transparent;
	border-left: 100px solid #FFF;
	border-right: 0px solid #FFF;
	position: absolute;
	left: 100%;
	bottom: 0px;
}


.header-dash .menu {
	width: 80%;
	background-color: #b21e23;
	float: left;
	margin-top: 20px !important;
	padding: 5px 0px;
	margin-left: 0px;
}
.pageshead {
	font-size:40px;
	font-weight:bold;
}
.header-dash .menu ul {
	text-align: right;
	margin-right: 50px;
}

.header-dash .menu ul li {
	display: inline-block;
	padding: 10px 30px;
	float:right;
	color:#ffffff;
}

.header-dash .menu ul li a {
	color: #FFF;
}

.header-dash .menu ul li a img {
	display: block;
	margin: auto;
}
#LogoutForm_container {
	justify-content: center !important;
	display: flex;
}
.nt-padding-left10{padding-left:10px;}
.nt-padding-left20{padding-left:20px;}
.nt-padding-left30{padding-left:30px;}
.nt-padding-left40{padding-left:40px;}
.nt-padding-left50{padding-left:50px;}
.ui-accordion-content {
	max-height: max-content !important;
}
.nt-accordion-menu-body {
	border-width: 1px !important;
	border-style: solid !important;
	border-color: #d4d2d2 !important;
}
.nt-cursor{
	cursor:pointer !important;
	color: #bf5054;
}
#logincheck_container {
	padding-left: 5%;
	float: left;
}
.label {
	padding: 1px 3px 2px;
	background-color: #bfbfbf;
	font-size: 12px;
	font-weight: bold;
	color: #ffffff;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	margin: auto;
	align-self: center;
	min-width: 8em;
	justify-content: space-evenly;
}
.label.important {
  background-color: #c43c35;
}
.label.warning {
  background-color: #f89406;
}
.label.success {
  background-color: #46a546;
}
.label.notice {
  background-color: #62cffc;
}
.label.draft {
	background-color: #333333;
}
.label.proof {
	background-color: #0000FF;
}
.label.storage {
	background-color: #0EA1FF;
}
.t94 {
	min-width:94px;
}