/*START BELOW CSS FOR CUSTOM SETTINGS*/

 .cssPager td
        {
              padding-left: 4px;     
              padding-right: 5px;    
          }

 .cssPager span
    {
        background-color: #A1DCF2;
        color: #000;
        border: 1px solid #3AC0F2;
        padding: 2px;
    }

/*Name all logo as logo.png and sizing is based on actual size. Save to IMG directory*/

/*Background color of the top logo header section*/
.bg-topheader{
  /*background-color: #dde4e6;*/
  background-color: #F2EEE4;
}


/*Background color of the header bar below logo*/
.bg-welcomeheaderbar{
  background-color: #4389CD;
}

/*Background color of footer thin bar*/
.bg-footerbar{
  height: 5px;
  background-color: #4389CD;
}

/*Background color of the copyright bar*/
.bg-copyright{
  background-color: #dde4e6;
}

/* LINK CLASS
/* White LInk */
.link-white{
margin-left: 20px;
font-weight: 700;
color: #ffffff;
}
.link-white:hover { color: #000000; }
.link-white:active {color: #ffffff;}

/* This is the box background coloring and settings on the Default.aspx page*/
/*.card {
    position: relative;
    display: block;
    text-align: center;
    padding: 30px 0;
    width: 270px;
    height: 280px;
    background-color: #dde4e6;
    border-radius: 10px;
    -webkit-transition: box-shadow .5s ease;
    transition: box-shadow .5s ease;
    margin: 10px;
}
*/

.card {
    position: relative;
    display: block;
    text-align: center;
    padding: 10px 0;
    width: 175px;
    height: 175px;
    background-color: #dde4e6;
    border-radius: 10px;
    -webkit-transition: box-shadow .5s ease;
    transition: box-shadow .5s ease;
}

/* Standard Button */
.button-standard {
  display: inline-block;
  vertical-align: top;
  position: relative;
  overflow: hidden;
  min-width: 96px;
  line-height: 22px;
  padding: 0 10px;
  font-size: 14px;
  color: #000;
  text-align: center;
  text-decoration: none;
  background-color: #e2e3e3;
  background-clip: padding-box;
  border: 1px solid;
  border-color: #e2e3e3 #e2e3e3 #e2e3e3;
  border-radius: 4px;
}
.button-standard:before {
  content: '';
  position: absolute;
  top: -25%;
  bottom: -25%;
  left: -20%;
  right: -20%;
  border-radius: 50%;
  background: transparent;
  -webkit-box-shadow: inset 0 0 38px rgba(255, 255, 255, 0.5);
  box-shadow: inset 0 0 38px rgba(255, 255, 255, 0.5);
}
.button-standard:hover { background-color: #e2e3e3; }
.button-standard:active {
  color: #000;
  background: #e2e3e3;
  border-color: #9ba5a6 #9ba5a6 #9ba5a6;
}
.button-standard:active:before {
  top: -50%;
  bottom: -125%;
  left: -15%;
  right: -15%;
  -webkit-box-shadow: inset 0 0 96px rgba(0, 0, 0, 0.2);
  box-shadow: inset 0 0 96px rgba(0, 0, 0, 0.2);
}

/* Large Button color */
.button-colorLg{
  background-color: #0d73af;
  font-weight: 700;  
  line-height: 36px;
  padding: 0 15px;
  color: #ffffff;
}

/* Regular Button color */
.button-color{
  background-color: #0d73af;
  font-weight: 700; 
  line-height: 36px;
  padding: 0 0px;
  color: #ffffff;
  text-align: center;
  min-width: 56px;
  line-height: 22px;
  padding: 0 10px;
}
.button-color:hover { background-color: #1f8f8c;}
.button-colorLg:hover { background-color: #1f8f8c;}

/* Login Page. Login Button */
.login .button-login {
    width: 100%;
    display: inline-block;
    vertical-align: top;
    position: relative;
    overflow: hidden;
    line-height: 32px;
    padding: 0 10px;
    font-size: 14px;
    font-weight: 700;
    background-color: #0d73af;
    color: #ffffff;
    text-align: center;
    text-decoration: none;
    background-color: #0d73af;
    background-clip: padding-box;
    border: 0px solid;
    border-color: #e2e3e3 #e2e3e3 #e2e3e3;
    border-radius: 4px;
  }
.login .button-login:hover { 
    background-color: #1f8f8c; 
}
.login .button-login:active {
  color: #0d73af;
  background: #0d73af;
}

/* Dashboard Button */
.button-dashboard {
  display: inline-block;
  vertical-align: top;
  position: relative;
  overflow: hidden;
  min-width: 96px;
  line-height: 22px;
  padding: 0 10px;
  font-size: 14px;
  color: #000000;
  text-align: center;
  text-decoration: none;
  background-color: #dde4e6;
  background-clip: padding-box;
  border: 0px solid;
  border-color: #e2e3e3 #e2e3e3 #e2e3e3;
  border-radius: 4px;
}
.button-dashboard:before {
  content: '';
  position: absolute;
  top: -25%;
  bottom: -25%;
  left: -20%;
  right: -20%;
  border-radius: 50%;
  background: transparent;
  -webkit-box-shadow: inset 0 0 38px rgba(255, 255, 255, 0.5);
  box-shadow: inset 0 0 38px rgba(255, 255, 255, 0.5);
}
.button-dashboard:hover { 
  background-color: #dde4e6; 
  color: #000000;
}
.button-dashboard:active {
  color: #000000;
  background: #dde4e6;
  border-color: #e2e3e3 #e2e3e3 #e2e3e3;
}
.button-dashboard:active:before {
  top: -50%;
  bottom: -125%;
  left: -15%;
  right: -15%;
  -webkit-box-shadow: inset 0 0 96px rgba(0, 0, 0, 0.2);
  box-shadow: inset 0 0 96px rgba(0, 0, 0, 0.2);
}

/****************************  Gridview Css *****************************/
.cusGrid th a{color: #000000;}
.cusGrid .pgr a { color: #000000; text-decoration: none; }
.cusGrid .pgr a:hover { color: #000000; text-decoration: none; }

.cusGrid1 { width: 100%; background-color: #fff; margin: 5px 0 10px 0; border: solid 0px #525252; border-collapse:collapse; font-size: 12px; }
.cusGrid1 td { padding: 2px; border: solid 0px #c1c1c1; color: #000000; text-align:left; }
.cusGrid1 th { padding: 4px 2px; color: #fff; background: #ffffff url(../images/grd_head.png) repeat-x top; border-left: solid 0px #525252; font-size: 12px; }
.cusGrid1 th a{color: #000000;}
.cusGrid1 .alt { background: #ffffff url(../images/grd_alt.png) repeat-x top; }
.cusGrid1 .pgr {background: #ffffff url(../images/grd_pgr.png) repeat-x top; }
.cusGrid1 .pgr table { margin: 5px 0; }
.cusGrid1 .pgr td { border-width: 0; padding: 0 6px; border-left: solid 0px #666; font-weight: bold; color: #fff; line-height: 12px; text-align:center; }   
.cusGrid1 .pgr a { color: #666; text-decoration: none; }
.cusGrid1 .pgr a:hover { color: #000; text-decoration: none; }

.cusGrid2 table {};
.cusGrid2 th a{color: #000000; text-align: right;}
.cusGrid2 .pgr a { color: #000000; text-decoration: none; }
.cusGrid3 .pgr a:hover { color: #000000; text-decoration: none; }


/*END CSS FOR CUSTOM SETTINGS*/


.section,
.site-container,
.site-header,
.site-footer,
.blocked,
.blocked-children,
.stack-children > *,
.calendar-wrapper .calendar-week,
.calendar-wrapper .calendar-week .calendar-day .cell,
.checklist-item,
.check-action .holder,
.today-calendar .holder,
.sidebar .site_title,
.aside-nav,
.calendar-widget,
.card,
.card .card-header,
.card .card-body,
.target-list .bubble-box,
.clear {
  *zoom: 1;
}
.section:before,
.site-container:before,
.site-header:before,
.site-footer:before,
.blocked:before,
.blocked-children:before,
.stack-children > :before,
.calendar-wrapper .calendar-week:before,
.calendar-wrapper .calendar-week .calendar-day .cell:before,
.checklist-item:before,
.check-action .holder:before,
.today-calendar .holder:before,
.sidebar .site_title:before,
.aside-nav:before,
.calendar-widget:before,
.card:before,
.card .card-header:before,
.card .card-body:before,
.target-list .bubble-box:before,
.clear:before,
.section:after,
.site-container:after,
.site-header:after,
.site-footer:after,
.blocked:after,
.blocked-children:after,
.stack-children > :after,
.calendar-wrapper .calendar-week:after,
.calendar-wrapper .calendar-week .calendar-day .cell:after,
.checklist-item:after,
.check-action .holder:after,
.today-calendar .holder:after,
.sidebar .site_title:after,
.aside-nav:after,
.calendar-widget:after,
.card:after,
.card .card-header:after,
.card .card-body:after,
.target-list .bubble-box:after,
.clear:after {
  display: table; 
  content: '';
}
.section:after,
.site-container:after,
.site-header:after,
.site-footer:after,
.blocked:after,
.blocked-children:after,
.stack-children > :after,
.calendar-wrapper .calendar-week:after,
.calendar-wrapper .calendar-week .calendar-day .cell:after,
.checklist-item:after,
.check-action .holder:after,
.today-calendar .holder:after,
.sidebar .site_title:after,
.aside-nav:after,
.calendar-widget:after,
.card:after,
.card .card-header:after,
.card .card-body:after,
.target-list .bubble-box:after,
.clear:after {
  clear: both;
}

button,
a,
.btn {
  -webkit-transition: all .3s ease;
          transition: all .3s ease;
}

.section,
.site-container,
.site-header,
.site-footer,
.blocked,
.blocked-children,
.stack-children > * {
  position: relative;
  display: block; 
  width: 100%;
}

body,
html {
  width: 100%;
  height: 100%;
  padding: 0; 
  margin: 0;
}

.site-container {
  height: 100%; 
      filter: alpha(opacity=100);
  opacity: 1;
  -webkit-transition: opacity 3.5s ease;
          transition: opacity 3.5s ease;

  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}



.bg-secondary {
  color: #fff; 
  background-color: #153d70;
}

.text-secondary {
  color: #153d70;
}

.text-dark {
  color: #545f64;
}

.site-wrapper {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display:         flex;
  width: 100%;
  -webkit-transition: all .5s ease;
          transition: all .5s ease; 

  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  -ms-grid-row-align: stretch;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-lines: single;
     -moz-box-lines: single;
          box-lines: single;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
}
.site-wrapper > * {
  box-sizing: border-box;

  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
          flex-shrink: 0;
}
.site-wrapper .site-main {
  width: 0;
  min-width: 0;
  min-height: 100vh;
  padding-bottom: 0px; 
  background-color: #ffffff;

  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
          flex-grow: 1;
}
.site-wrapper .site-main .container-fluid {
  padding-right: 30px; 
  padding-left: 30px;
}


.btn-outline {
  color: #1c9ce5;
  background-color: #f4f8fd; 
  border: 1px solid rgba(28, 156, 229, .3);
}
.btn-outline.-grey {
  color: #545f64;
}
.btn-outline:hover,
.btn-outline:focus,
.btn-outline:active,
.btn-outline.active {
  color: #fff !important;
  background-color: #1c9ce5 !important; 
  border-color: #1c9ce5;
}
.btn-outline:hover span,
.btn-outline:hover i,
.btn-outline:focus span,
.btn-outline:focus i,
.btn-outline:active span,
.btn-outline:active i,
.btn-outline.active span,
.btn-outline.active i {
  color: #fff !important;
}

.btn-secondary {
  color: #fff;
  background-color: #153d70;
  border-color: #153d70;
}
.btn-secondary:focus,
.btn-secondary.focus {
  color: #fff;
  background-color: #0d2645;
  border-color: #010305;
}
.btn-secondary:hover {
  color: #fff;
  background-color: #0d2645;
  border-color: #0b213c;
}
.btn-secondary:active,
.btn-secondary.active,
.open > .btn-secondary.dropdown-toggle {
  color: #fff;
  background-color: #0d2645;
  border-color: #0b213c;
}
.btn-secondary:active:hover,
.btn-secondary:active:focus,
.btn-secondary:active.focus,
.btn-secondary.active:hover,
.btn-secondary.active:focus,
.btn-secondary.active.focus,
.open > .btn-secondary.dropdown-toggle:hover,
.open > .btn-secondary.dropdown-toggle:focus,
.open > .btn-secondary.dropdown-toggle.focus {
  color: #fff;
  background-color: #071527;
  border-color: #010305;
}
.btn-secondary:active,
.btn-secondary.active,
.open > .btn-secondary.dropdown-toggle {
  background-image: none;
}
.btn-secondary.disabled:hover,
.btn-secondary.disabled:focus,
.btn-secondary.disabled.focus,
.btn-secondary[disabled]:hover,
.btn-secondary[disabled]:focus,
.btn-secondary[disabled].focus,
fieldset[disabled] .btn-secondary:hover,
fieldset[disabled] .btn-secondary:focus,
fieldset[disabled] .btn-secondary.focus {
  background-color: #153d70;
  border-color: #153d70;
}
.btn-secondary .badge {
  color: #153d70;
  background-color: #fff;
}

.btn-green {
  color: #fff;
  background-color: #31bc75;
  border-color: #31bc75;
}
.btn-green:focus,
.btn-green.focus {
  color: #fff;
  background-color: #26945c;
  border-color: #175736;
}
.btn-green:hover {
  color: #fff;
  background-color: #26945c;
  border-color: #248b57;
}
.btn-green:active,
.btn-green.active,
.open > .btn-green.dropdown-toggle {
  color: #fff;
  background-color: #26945c;
  border-color: #248b57;
}
.btn-green:active:hover,
.btn-green:active:focus,
.btn-green:active.focus,
.btn-green.active:hover,
.btn-green.active:focus,
.btn-green.active.focus,
.open > .btn-green.dropdown-toggle:hover,
.open > .btn-green.dropdown-toggle:focus,
.open > .btn-green.dropdown-toggle.focus {
  color: #fff;
  background-color: #1f774a;
  border-color: #175736;
}
.btn-green:active,
.btn-green.active,
.open > .btn-green.dropdown-toggle {
  background-image: none;
}
.btn-green.disabled:hover,
.btn-green.disabled:focus,
.btn-green.disabled.focus,
.btn-green[disabled]:hover,
.btn-green[disabled]:focus,
.btn-green[disabled].focus,
fieldset[disabled] .btn-green:hover,
fieldset[disabled] .btn-green:focus,
fieldset[disabled] .btn-green.focus {
  background-color: #31bc75;
  border-color: #31bc75;
}
.btn-green .badge {
  color: #31bc75;
  background-color: #fff;
}

.btn-radius {
  border-radius: 17px;
}

.btn-group.btn-radius .btn:first-child {
  border-top-left-radius: 17px; 
  border-bottom-left-radius: 17px;
}

.btn-group.btn-radius .btn:last-child {
  border-top-right-radius: 17px; 
  border-bottom-right-radius: 17px;
}


/* # Helpers
---------------------------------------------------------------------------------------------------- */
/* # HELPERS: Table of Contents
- Types
  - Font Weight
  - Font Size
  - Font Styles
  - Font colors
- Background
- Structure
  - Positions
  - Display
- Components
  - Links
  - Images
  - Lists
- Shadows
- Misc.
*/
/* # Types
---------------------------------------------------------------------------------------------------- */
/* ## Font Weight
--------------------------------------------- */
.f-500 {
  font-weight: 500;
}

.f-400 {
  font-weight: 400;
}

.f-700 {
  font-weight: 700;
}

/* ## Font Size
--------------------------------------------- */
.h1 {
  font-size: 36px;
  font-size: 3.6rem;
}

.h2 {
  font-size: 30px;
  font-size: 3rem;
}

.h3 {
  font-size: 24px;
  font-size: 2.4rem;
}

.h4 {
  font-size: 20px;
  font-size: 2rem;
}

.h5 {
  font-size: 18px;
  font-size: 1.8rem;
}

.h6 {
  font-size: 16px;
  font-size: 1.6rem;
}
.px12{
  font-size: 12px !important;
}
.px14{
  font-size: 14px !important;
}
.px16 {
  font-size: 16px !important;
}

.px18 {
  font-size: 18px !important;
}

.px20 {
  font-size: 20px !important;
}
.px22 {
  font-size: 22px !important;
}
.px26 {
  font-size: 26px !important;
}
.px32{
  font-size: 32px !important;
}
/* ## Font Styles
--------------------------------------------- */
.caps {
  text-transform: uppercase;
}

.text-underline {
  text-decoration: underline !important;
}

.text-italics {
  font-style: italic;
}

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

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

.text-right {
  text-align: right;
}

.text-long {
  line-height: 1.7;
}

/* ## Font colors
--------------------------------------------- */
.text-black {
  color: #000 !important;
}

.text-red {
  color: #970000 !important;
}

.text-white {
  color: #fff !important;
}

.text-primary {
  color: #1c9ce5;
}
.text-grey{
  color: #7e7f7f;
}

/* # Background
---------------------------------------------------------------------------------------------------- */
.bg-image {
  background-repeat: no-repeat; 
  background-position: center top;
  background-clip: padding-box;
  background-size: cover;
}
.bg-image.bg-size-full {
  background-size: 100%;
}
.bg-image.bg-size-null {
  background-size: auto;
}

.bg-trans {
  background-color: transparent !important;
}










.bg-white {
  background-color: #fff;
}
.bg-black{
  background-color: #000;
}
.bg-green{
  background-color: #36ae5a;
}
.bg-red{
  background-color: #1A5276;
}
.bg-blue{
  background-color: #2670a5;
}
.bg-grey{
  background-color: #dde4e6;
}
/* # Structure
---------------------------------------------------------------------------------------------------- */
/* ## Position
--------------------------------------------- */
.relative {
  position: relative;
}

.absolute {
  position: absolute;
}
.absolute.-fill {
  top: 0;
  right: 0; 
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.absolute.-fill.--bottom {
  top: auto;
  bottom: 0;
}
.absolute.-fill.--top {
  top: 0;
  bottom: auto;
}

/* ## Display
--------------------------------------------- */
.center {
  margin-right: auto; 
  margin-left: auto;
  text-align: center;
}

.block {
  display: block;
}

.auto-width {
  width: auto !important;
}

.full-width {
  width: 100%;
}

.full-height {
  height: 100%;
}

.blocked {
  position: relative;
  display: block;
  width: 100%;

  *zoom: 1;
}
.blocked:before,
.blocked:after {
  display: table; 
  content: '';
}
.blocked:after {
  clear: both;
}

.visuallyhidden {
  position: absolute; 
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip: rect(0, 0, 0, 0);
}

.full-stretch {
  display: block;
  width: 100vw;
  overflow: hidden;
}

.full-screen {
  display: block;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

/* # Components
---------------------------------------------------------------------------------------------------- */
/* ## Links
--------------------------------------------- */
button:focus,
button:hover,
button:active,
a:focus,
a:hover,
a:active,
.btn:focus,
.btn:hover,
.btn:active {
  outline: medium none !important;
}
button:focus::-moz-focus-inner,
button:hover::-moz-focus-inner,
button:active::-moz-focus-inner,
a:focus::-moz-focus-inner,
a:hover::-moz-focus-inner,
a:active::-moz-focus-inner,
.btn:focus::-moz-focus-inner,
.btn:hover::-moz-focus-inner,
.btn:active::-moz-focus-inner {
  border: 0 !important;
  outline: 0 !important;
}

button::-moz-focus-inner,
a::-moz-focus-inner,
.btn::-moz-focus-inner {
  border: 0 !important;
  outline: 0 !important;
}

a:hover {
  text-decoration: none;
}

/* ## Images
--------------------------------------------- */
.responsive-img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

/* ## Lists
--------------------------------------------- */
ul,
ol {
  padding: 0;
  margin: 0;
  list-style: none;
}

li {
  list-style-type: none;
}

.list_slashed {
  padding-left: 0;
  margin-top: 0;
  margin-bottom: 0; 
  list-style-type: none;
}
.list_slashed > li {
  display: inline;
}
.list_slashed > li:not(:last-child):after {
  content: " / ";
}

.list_piped {
  padding-left: 0;
  margin-top: 0;
  margin-bottom: 0; 
  list-style-type: none;
}
.list_piped > li {
  display: inline;
}
.list_piped > li:not(:last-child):after {
  content: " | ";
}

/* # Shadows
---------------------------------------------------------------------------------------------------- */
.z-depth-1 {
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, .16), 0 2px 10px 0 rgba(0, 0, 0, .12);
}

.z-depth-1-half {
  box-shadow: 0 5px 11px 0 rgba(0, 0, 0, .18), 0 4px 15px 0 rgba(0, 0, 0, .15);
}

.z-depth-2 {
  box-shadow: 0 8px 17px 0 rgba(0, 0, 0, .2), 0 6px 20px 0 rgba(0, 0, 0, .19);
}

.z-depth-3 {
  box-shadow: 0 12px 15px 0 rgba(0, 0, 0, .24), 0 17px 50px 0 rgba(0, 0, 0, .19);
}

.z-depth-4 {
  box-shadow: 0 16px 28px 0 rgba(0, 0, 0, .22), 0 25px 55px 0 rgba(0, 0, 0, .21);
}

.z-depth-5 {
  box-shadow: 0 27px 24px 0 rgba(0, 0, 0, .2), 0 40px 77px 0 rgba(0, 0, 0, .22);
}

/* Misc.
---------------------------------------------------------------------------------------------------- */
.no-select {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none; 

  -webkit-touch-callout: none;
}

.radius-no {
  border-radius: 0;
}

::-moz-selection {
  color: #fff; 
  background: #333;
}

::selection {
  color: #fff; 
  background: #333;
}

.ovh {
  overflow: hidden;
}
.no-margin{
  margin: 0 !important;
}
.no-padding{
  padding-left: 0;
  padding-right: 0;
}
.pt5{
  padding-top: 10px;
}
.pt10{
  padding-top: 10px;
}
.pt15{
  padding-top: 15px;
}
.pb15{
  padding-bottom: 15px;
}
.lh22{
  line-height: 22px;
}
.align-bottom{
  vertical-align: bottom;
}
.mb-neg8{
  margin-bottom: -8px;
}
.center1{
  margin-right: auto;
    margin-left: auto;
}
.no-pr{
  padding-right: 0 !important;
}
.padleft-5{
  padding-left: 5px !important;
}
/* ---------------CONTACTS PAGE------------------------- */

table.jambo_table {
    border: 1px solid rgba(221, 221, 221, 0.78)
}
table.jambo_table thead {
    background: rgba(52, 73, 94, 0.94);
    color: #ECF0F1
}
table.jambo_table tbody tr:hover td {
    background: transparent;
    /* border-top: 1px solid rgba(38, 185, 154, 0.11);
    border-bottom: 1px solid rgba(38, 185, 154, 0.11) */
}
table.jambo_table tbody tr.selected {
    background: transparent;
}
table.jambo_table tbody tr.selected td {
    border-top: none;
    border-bottom: none;
    background: #ffffff;
}
.icheckbox_flat-green, .iradio_flat-green {
    width: 36px;
    height: 36px;
}
.icheckbox_flat-green.checked {
    background-position: -36px 0;
}

table.jambo_table thead {
    background: transparent;
    color: #196fa4;
    text-transform: uppercase;
}
.table-striped>tbody>tr:nth-of-type(odd), .table-striped>tbody>tr:nth-of-type(even) {
    background-color: #ffffff;
}
.table-striped>tbody>tr{
    margin-bottom: 10px;
}
table.jambo_table
{
    border-collapse: separate;
    border-spacing: 0 0.5em;
    border: none;
}
.table>thead>tr>th
{
    border-bottom: none;
}
.table>tbody>tr>td
{
    border-top: none;
    vertical-align: middle;
    font-size: 14px;
    line-height: 3.428571;

}
.table > thead > tr > th {
    vertical-align: middle;
}
table.jambo_table{
  width: 80%;
}
table.jambo_table tbody tr:hover td
{
    border-top: none;
    border-bottom: none;
}
body .container.body .right_col {
    background: #f4f8fd;
}


/* START BUTTON STYLE */
/* General Button */
.button-general {
  display: inline-block;
  vertical-align: top;
  position: relative;
  overflow: hidden;
  min-width: 96px;
  line-height: 22px;
  padding: 0 10px;
  font-size: 14px;
  color: #000;
  text-align: center;
  text-decoration: none;
  background-clip: padding-box;
  border: 0px solid;
  border-radius: 4px;
}
.button-general:before {
  content: '';
  position: absolute;
  top: -25%;
  bottom: -25%;
  left: -20%;
  right: -20%;
  border-radius: 50%;
  background: transparent;
}
.button-general:hover { 
  background-color: #e2e3e3; 
}
.button-general:active {
  color: #000;
  background: #e2e3e3;
  border-color: #9ba5a6 #9ba5a6 #9ba5a6;
}
.button-general:active:before {
  top: -50%;
  bottom: -125%;
  left: -15%;
  right: -15%;
}




/* Silver Button */
.button-silver {
  display: inline-block;
  vertical-align: top;
  position: relative;
  overflow: hidden;
  min-width: 96px;
  line-height: 22px;
  padding: 0 10px;
  font-size: 14px;
  color: #000;
  text-align: center;
  text-decoration: none;
  background-color: #e2e3e3;
  background-clip: padding-box;
  border: 1px solid;
  border-color: #e2e3e3 #e2e3e3 #e2e3e3;
  border-radius: 4px;
  /*
  -webkit-box-shadow: inset 0 1px rgba(255, 255, 255, 0.4), 0 1px 2px rgba(0, 0, 0, 0.2);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.4), 0 1px 2px rgba(0, 0, 0, 0.2);
  background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0) 65%, rgba(0, 0, 0, 0.12) 51%, rgba(0, 0, 0, 0.04));
  background-image: -moz-linear-gradient(top, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0) 65%, rgba(0, 0, 0, 0.12) 51%, rgba(0, 0, 0, 0.04));
  background-image: -o-linear-gradient(top, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0) 65%, rgba(0, 0, 0, 0.12) 51%, rgba(0, 0, 0, 0.04));
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0) 65%, rgba(0, 0, 0, 0.12) 51%, rgba(0, 0, 0, 0.04));
*/
}
.button-silver:before {
  content: '';
  position: absolute;
  top: -25%;
  bottom: -25%;
  left: -20%;
  right: -20%;
  border-radius: 50%;
  background: transparent;
  -webkit-box-shadow: inset 0 0 38px rgba(255, 255, 255, 0.5);
  box-shadow: inset 0 0 38px rgba(255, 255, 255, 0.5);
}
.button-silver:hover { background-color: #e2e3e3; }
.button-silver:active {
  color: #000;
  background: #e2e3e3;
  border-color: #9ba5a6 #9ba5a6 #9ba5a6;
  /*
  -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2), 0 1px rgba(255, 255, 255, 0.4);
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2), 0 1px rgba(255, 255, 255, 0.4);
   -webkit-box-shadow: inset 0 1px rgba(255, 255, 255, 0.4), 0 1px 2px rgba(0, 0, 0, 0.2);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.4), 0 1px 2px rgba(0, 0, 0, 0.2);
  background-image: -webkit-linear-gradient(top, #e2e3e3, #9ba5a6);
  background-image: -moz-linear-gradient(top, #e2e3e3, #9ba5a6);
  background-image: -o-linear-gradient(top, #e2e3e3, #9ba5a6);
  background-image: linear-gradient(to bottom, #e2e3e3, #9ba5a6);
*/
}
.button-silver:active:before {
  top: -50%;
  bottom: -125%;
  left: -15%;
  right: -15%;
  -webkit-box-shadow: inset 0 0 96px rgba(0, 0, 0, 0.2);
  box-shadow: inset 0 0 96px rgba(0, 0, 0, 0.2);
}

/* Red Button */
.button-red{
  background-color: #e34444;
  font-weight: 700; 
  line-height: 36px;
  padding: 0 0px;
  color: #ffffff;
  text-align: center;
  min-width: 56px;
  line-height: 22px;
  padding: 0 10px;
}
.button-red:hover { 
 background-color: #b31616; 
}
.button-red:active {
  color: #660000;
  background: #b31616;
  }

/* Green Button */
.button-green{
  background-color: #37a051;
  font-weight: 700;
  line-height: 36px;
  padding: 0 15px;
  color: #03601a;
}

/* Large Blue Button */
.button-blueLg{
  background-color: #0d73af;
  font-weight: 700;  
  line-height: 36px;
  padding: 0 15px;
  color: #ffffff;
}

/* Regular Blue Button */
.button-blue{
  background-color: #0d73af;
  font-weight: 700; 
  line-height: 36px;
  padding: 0 0px;
  color: #ffffff;
  text-align: center;
  min-width: 56px;
  line-height: 22px;
  padding: 0 10px;
}
.button-blue:hover { background-color: #1f8f8c;}
.button-blueLg:hover { background-color: #1f8f8c;}




/* END BUTTON STYLE */


/* Card home */


.img-width{
    /*height: 150px;*/
    height: 100px;
  }

.black-border{
  height: 5px;
  background-color: #000;
}
.red-border{
  height: 5px;
  background-color: #aa0d0d;
}
.green-border{
  height: 5px;
  background-color: #37a051;
}
/* 5 columns */
.col-xs-15,
.col-sm-15,
.col-md-15,
.col-lg-15 {
    position: relative;
    min-height: 1px;
    padding-right: 10px;
    padding-left: 10px;
}
.col-xs-15 {
    width: 20%;
    float: left;
}

@media (min-width: 768px) {
.col-sm-15 {
        width: 20%;
        float: left;
    }
}

@media (min-width: 992px) {
    .col-md-15 {
        width: 20%;
        float: left;
    }
}

@media (min-width: 1200px) {
    .col-lg-15 {
        width: 20%;
        float: left;
    }
}
/* Card Innerpage */

.card1 {
    position: relative;
    display: block;
    text-align: center;
    padding: 27px 10px;
    width: 226px;
    height: 114px;
    background-color: #dde4e6;
    border-radius: 5px;
    -webkit-transition: box-shadow .5s ease;
    transition: box-shadow .5s ease;
    margin: 10px;
}
.card-inner{
  height: 43px;
}
.div-inner{
    position: relative;
    display: inline-block;
    padding-top: 2px;
    padding-left: 30px;
}
.img-inner1{
    height: 30px;
    position: absolute;
    overflow: hidden;
  }

.card2 {
    position: relative;
    display: block;
    text-align: center;
    padding: 27px 10px;
    width: 285px;
    height: 114px;
    background-color: #dde4e6;
    border-radius: 5px;
    -webkit-transition: box-shadow .5s ease;
    transition: box-shadow .5s ease;
    margin: 10px;
}
.card-inner{
  height: 43px;
}
.px181{
  font-size: 18px;
}
.px321{
    font-size: 32px;
  }


.align-icon {
    text-align: center;
    width: 100%;
    margin: 0 auto;
    position: relative;
    margin-top: 50px;
}
.align-icon-xs{
  margin-top: 50px;
  margin-bottom: 20px;
}
.left-separator {
    width: 44%;
    border-style: solid;
    border-color: #dde4e6;
    border-width: 0;
    border-bottom-width: 1px;
    position: absolute;
    right: 0;
    top: 20px;
}
.right-separator {
    width: 44%;
    border-style: solid;
    border-color: #dde4e6;
    border-width: 0;
    border-bottom-width: 1px;
    position: absolute;
    left: 0;
    top: 20px;
}
.aio-icon.none {
    display: inline-block;
    font-size: 32px;
    height: 1em;
    text-align: center;
    line-height: 0em;
}
.table>tbody>tr>td {
    border-top: none;
    vertical-align: middle;
    font-size: 12px;
    line-height: 1.428571;
    color: #7e7f7f;
    font-weight: 700;
    border-bottom: 1px solid #dde4e6;
    padding: 5px;
}
.table>tbody>tr>td:first-child{
  width: 120px;
}
.target-table{
  margin-top: 20px;
}
.table > thead > tr > th{
  text-align: center;
  color: #7e7f7f;
  font-size: 14px;
  border-bottom: 4px solid #dde4e6;
}
.pace{
  display: none;
}
.list-icon{
  height: 24px;
}
.login{
  width: 30%;
  margin-top: 80px;
  margin-bottom: 200px;
}
.nicescroll-cursors{
    width: 2px !important;
    background-color: #000 !important;
}
.holder {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
}
.menu-link{
  padding: 20px;
}
.menu-options {
    position: absolute;
    top: 147%;
    right: 0;
    left: auto;
    width: 381px;
    padding: 0;
}
.form-column{
  background-color: #f4f4f4;
  padding: 14px 35px;
}
.form-column label{
  margin-bottom: 1px;
}
.form-column .form-group{
  margin-bottom: 5px;
}
.form-column .checkbox input[type="checkbox"]{
  margin-left: 0px;
  position: inherit;
}
.form-head{
    background-color: #000;
    padding: 14px 35px;
}
.search-text{
  background-color: #dde4e6;
}

select {
    border: 1px solid #ccc;
    height: 26px;
    line-height: 18px;
    margin: 0;
    padding: 3px;
    background-repeat: no-repeat;
    cursor: pointer;
}
@media screen and (min-width: 0){
  select {
      border-radius: 4px;
      background-image: url(../img/down-arrow1.png) !important;
      background-position: -50px -50px;
  }
  .select1 {
      border-radius: 4px;
      background-image: url(../img/down-arrow2.png) !important;
      background-position: -50px -50px;
      background-repeat: no-repeat;
  }
}
@media screen and (-webkit-min-device-pixel-ratio: 0){
  select {
      -webkit-appearance: none;
      background-position: 97% center;;
      padding: 3px 32px 3px 5px;
  }
  .select1 {
      -webkit-appearance: none;
      background-position: right center;
      padding: 3px 50px 3px 5px;
      background-color: #dde4e6;
  }
}
@media (max-width: 1199px) and (min-width: 768px){
  .card1 {
    width: 189px;
    height: 114px;
  }
  .card2 {
    width: 230px;
    height: 114px;
  }
  .card2 .img-inner1 {
    height: 25px;
  }
  .px181{
    font-size: 14px;
  }
  .card2 .px181{
    font-size: 15px;
  }
  .card2 .div-inner{
    padding-left: 20px;
  }
  .px321{
    font-size: 28px;
  }
}
@media (max-width: 992px)
{
  .card {
    padding: 20px 0;
    width: 200px;
    height: 190px;
  }
  .img-width{
    height: 100px;
  }
  .px18 {
    font-size: 12px !important;
  }
  .px32 {
    font-size: 16px !important;
  }
  .left-separator {
    width: 42%;
  }
  .right-separator {
    width: 42%;
  }
  .login{
    width: 50%;
  }
  .menu-options {
    top: 100%;
    left: 0;
    width: 100%;
  }
}

@media (max-width: 768px){
  .px22 {
    font-size: 18px !important;
  }
  .px26 {
      font-size: 20px !important;
  }
  .card2 {
    width: 238px;
    height: 114px;
  }
  .card2 .px181{
    font-size: 15px;
  }
  .card2 .div-inner{
    padding-left: 20px;
  }
  .card2 .img-inner1 {
    height: 25px;
  }
  .px321{
    font-size: 28px;
  }
}
@media (max-width: 425px){
  .img-width{
    height: 50px;
  }
  .card {
    padding: 20px 0;
    width: 140px;
    height: 130px;
  }
  .px18 {
    font-size: 10px !important;
  }
  .px32 {
    font-size: 14px !important;
  }
}
@media (max-width: 500px){
  .img-width{
    height: 50px;
  }
  .card {
    padding: 20px 0;
    width: 140px;
    height: 130px;
  }
  .px18 {
    font-size: 10px !important;
  }
  .px32 {
    font-size: 14px !important;
  }
  .card2 {
    padding: 10px 5px;
    width: 145px;
    height: 77px;
  }
  .card2 .px181 {
    font-size: 10px !important;
  }
  .card2 .px321 {
    font-size: 14px !important;
  }
  .card2 .div-inner {
    padding-left: 11px;
  }
  .card2 .img-inner1 {
    height: 15px;
  }
  .card2 .card-inner {
    height: 36px;
  }
  .card1 {
    padding: 10px 5px;
    width: 145px;
    height: 77px;
  }
  .card1 .px181 {
    font-size: 10px !important;
  }
  .card1 .px321 {
    font-size: 14px !important;
  }
  .card1 .div-inner {
    padding-left: 11px;
  }
  .card1 .img-inner1, .list-icon {
    height: 15px;
  }
  .card1 .card-inner {
    height: 36px;
  }
  .login{
    width: 80%;
  }
  .button-silver{
    margin-bottom: 10px;
    width: 60%;
  }
  .button-red{
    margin-bottom: 10px;
    width: 100%;
  }
}
@media (max-width: 1200px){
  .padleft-5{
  padding-left: 10px !important;
    }
}



.text-right{
     text-align: right;
}
.text-left{
    text-align: left;
}
.text-center{
    text-align: center;
}

.small {
    width:350px;
    min-width:350px;
    max-width:350px;

}

.medium {
    width:450px;
    min-width:450px;
    max-width:450px;
}

.wide {
    width:550px;
    min-width:550px;
    max-width:550px;
}

/*Set Gridview overflow options*/
@media (max-width: 425px) {
    .GridviewOverflow {
        overflow-x: scroll;
    }
}

@media (max-width: 500px) {
    .GridviewOverflow {
        overflow-x: scroll;
    }
}

@media (max-width: 1200px) {
    .GridviewOverflow {
    }
}


/*Dashboard card spacing*/
.dashboard-padding {
    padding-bottom: 30px;
}