/* SITE HEADER EXTERNAL DIV */
.sitehead { display: table;
            width:100%;
            border-radius: 3px;
          }
/* SITE HEADER INTERNAL DIV */
.logohead { display: table-cell;
            vertical-align: middle;
            padding-left: 50px;
          }
/* SITE FOOTER EXTERNAL DIV */
.sitefooter { display: table;
              width:100%;
              border-radius: 3px;
            }
/* SITE FOOTER INTERNAL DIV */            
.logofooter { display: table-cell;
              vertical-align: middle;
              padding-left: 50px;
            }
/* SITE VERTICAL NAVIGATION BAR */
.navbar { background: #3d94f6;
          border-radius: 3px;
          
        }
/*.cmain {  }*/
.button {
        text-decoration: none;
        background-color: navy;
        color: white;
        }
.right { text-align: right; }
.center { text-align: center; }
.hid { display: none; }
.whitetext { color: white; }
body { 
        font-family: Georgia;
     }
select, input, textarea { border-radius: 3px;
                  -webkit-border-radius: 3px;
                  -moz-border-radius: 3px;
                  border: solid #999999 1px;
                  -webkit-border: solid #999999 1px;
                  -moz-border: solid #999999 1px;
}
table.cards1 td { border: 1pt dashed lightgrey; height: 150px; width: 270px;
             vertical-align: middle; text-align: center;
}

/* CUSTOM BUTTON ****************************************************************************/
.custombutton {
	-moz-box-shadow:inset 0px 1px 0px 0px #97c4fe;
	-webkit-box-shadow:inset 0px 1px 0px 0px #97c4fe;
	box-shadow:inset 0px 1px 0px 0px #97c4fe;
	background-color:#3d94f6;
	-webkit-border-top-left-radius:3px;
	-moz-border-radius-topleft:3px;
	border-top-left-radius:3px;
	-webkit-border-top-right-radius:3px;
	-moz-border-radius-topright:3px;
	border-top-right-radius:3px;
	-webkit-border-bottom-right-radius:3px;
	-moz-border-radius-bottomright:3px;
	border-bottom-right-radius:3px;
	-webkit-border-bottom-left-radius:3px;
	-moz-border-radius-bottomleft:3px;
	border-bottom-left-radius:3px;
text-indent:0;
	border:1px solid #337fed;
	display:inline-block;
	color:#ffffff;
	font-family:Georgia;
	font-size:15px;
	font-weight:bold;
	font-style:normal;
height:40px;
	line-height:40px;
/*width:86px;*/
	text-decoration:none;
	text-align:center;
	text-shadow:1px 0px 0px #1570cd;
padding-left: 20px;
padding-right: 20px;
}.custombutton:hover {
	background-color:#1e62d0;
}.custombutton:active {
	position:relative;
	top:1px;
}
/* CUSTOM BUTTON END */
/* TO-TOP BUTTON */
.cd-top {
  display: inline-block;
  height: 40px;
  width: 40px;
  position: fixed;
  bottom: 40px;
  right: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  /* image replacement properties */
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  background: #3c68f6 url(/img/totopbutton.svg) no-repeat center 50%; /*#3d94f6*/
  border-radius: 3px;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity .3s 0s, visibility 0s .3s;
  -moz-transition: opacity .3s 0s, visibility 0s .3s;
  transition: opacity .3s 0s, visibility 0s .3s;
}
.cd-top.cd-is-visible, .cd-top.cd-fade-out, .no-touch .cd-top:hover {
  -webkit-transition: opacity .3s 0s, visibility 0s 0s;
  -moz-transition: opacity .3s 0s, visibility 0s 0s;
  transition: opacity .3s 0s, visibility 0s 0s;
}
.cd-top.cd-is-visible {
  /* the button becomes visible **********************************************************************/
  visibility: visible;
  opacity: 1;
}
.cd-top.cd-fade-out {
  /* if the user keeps scrolling down, the button is out of focus and becomes less visible */
  opacity: .5;
}
.no-touch .cd-top:hover {
  background-color: #3c68f6; /*#3d94f6*/
  opacity: 1;
}
/* printing table properly - 4 lines */
table { page-break-inside:auto }
tr    { page-break-inside:avoid; page-break-after:auto }
thead { display:table-header-group }
tfoot { display:table-footer-group }

@media only screen and (min-width: 768px) {
  .cd-top {
    right: 20px;
    bottom: 20px;
  }
}
@media only screen and (min-width: 1024px) {
  .cd-top {
    height: 60px;
    width: 60px;
    right: 30px;
    bottom: 30px;
  }
}
/* TO-TOP BUTTON END *******************************************************************************/