/* CSS Document */


@media all {
    .page-break { display: none; }
}
@media print {
    .page-break { display: block; page-break-after: always; }
} 

html,body{
       width: 100%;
	   height: 100%;
}

/* Used for Hover over navigation menu 
.navbar-nav li:hover .dropdown-menu {
    display: block;
}
*/

/* Enable round toggle switch */
.toggle.ios, .toggle-on.ios, .toggle-off.ios { border-radius: 20px; }
.toggle.ios .toggle-handle { border-radius: 20px; }

.mon1 {
	background-color: #007bff;
	color: #fff;
}
.mon2 {
	background-color: #6610f2;
	color: #fff;
}
.mon3 {
	background-color: #6f42c1;
	color: #fff;
}
.mon4 {
	background-color: #e83e8c;
	color: #fff;
}
.mon5 {
	background-color: #dc3545;
	color: #fff;
}
.mon6 {
	background-color: #fd7e14;
	color: #000;
}
.mon7 {
	background-color: #ffc107;
	color: #000;
}
.mon8 {
	background-color: #28a745;
	color: #fff;
}
.mon9 {
	background-color: #20c997;
	color: #000;
}
.mon10 {
	background-color: #17a2b8;
	color: #fff;
}
.mon11 {
	background-color: #92C6FF;
	color: #000;
}
.mon12 {
	background-color: #B8F3E2;
	color: #000;
}


/* Used for Spinning loader */

#loader {
 position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  width: 150px;
  height: 150px;
  margin: -75px 0 0 -75px;
  border: 16px solid #f3f3f3;
  border-radius: 50%;
  border-top: 16px solid blue;
  border-right: 16px solid green;
  border-bottom: 16px solid red;
  border-left: 16px solid yellow;
 width: 120px;
  height: 120px;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
}

#loader2 {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  width: 150px;
  height: 150px;
  margin: -75px 0 0 -75px;
  border: 16px solid #f3f3f3;
  border-radius: 50%;
  border-top: 16px solid blue;
  width: 120px;
  height: 120px;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
}



#loader3 {
 position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  width: 150px;
  height: 150px;
  margin: -75px 0 0 -75px;
  border: 16px solid #f3f3f3;
  border-radius: 50%;
  border-top: 16px solid green;
 width: 120px;
  height: 120px;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
}

@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Add animation to "page content" */
.animate-bottom {
  position: relative;
  -webkit-animation-name: animatebottom;
  -webkit-animation-duration: 1s;
  animation-name: animatebottom;
  animation-duration: 1s
}

@-webkit-keyframes animatebottom {
  from { bottom:-100px; opacity:0 } 
  to { bottom:0px; opacity:1 }
}

@keyframes animatebottom { 
  from{ bottom:-100px; opacity:0 } 
  to{ bottom:0; opacity:1 }
}

#top_of_page {
    background-position: top;
    padding: 0px 10px 20px 0px;
    position: fixed;
    bottom: 0px;
    right: 0px;
    float: right;
}

#left_of_page {
    background-position: top;
	padding: 0px 0px 20px 10px;
    position: fixed;
    bottom: 0px;
    left: 0px;
    float: left;
}

.cal-header {
  background-image: -webkit-linear-gradient(top, #337ab7 0%, #265a88 100%);
  background-image: -o-linear-gradient(top, #337ab7 0%, #265a88 100%);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#337ab7), to(#265a88));
  background-image: linear-gradient(to bottom, #337ab7 0%, #265a88 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff265a88', GradientType=0);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  background-repeat: repeat-x;
  border-color: #245580;
  color: whitesmoke;
}

.cal-days {
  background-image: -webkit-linear-gradient(top, #d9edf7 0%, #b9def0 100%);
  background-image: -o-linear-gradient(top, #d9edf7 0%, #b9def0 100%);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#d9edf7), to(#b9def0));
  background-image: linear-gradient(to bottom, #d9edf7 0%, #b9def0 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7', endColorstr='#ffb9def0', GradientType=0);
  border-color: #9acfea;
 color:black;
}

.navheader-g {
    margin-top: 0px;
    background-image: repeating-linear-gradient(135deg, #172C70, #205194, #B9BBBE );
    color: white;
    font-weight: bolder;
}

.shadow {
	/* 		float: right; */
	margin: 0 auto;
	width: 100%;
	background-color: #FFFFFF;
	border-radius: 6px;
	/*box-shadow: 0 2px 4px #C3C3C3;*/
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}


body {
	padding-top: 70px;
	min-height: 510px
}
.tab-content p {
	padding: 10px 0;
}
.noborder {
	border: none;
}

@media all {
a[href]:after {
	content: "" !important
}
.page-break {
	display: none;
}
.page-break {
	display: block;
	page-break-after: always;
}
.marginBottom-0 {
	margin-bottom: 0;
}
}
.loader {
	border: 8px solid #f3f3f3;
	border-top: 8px solid #3498db;
	border-radius: 50%;
	width: 45px;
	height: 45px;
	animation: spin 2s linear infinite;
}
 @-webkit-keyframes spin {
 0% {
-webkit-transform: rotate(0deg);
}
 100% {
-webkit-transform: rotate(360deg);
}
}
 @keyframes spin {
 0% {
transform: rotate(0deg);
}
 100% {
transform: rotate(360deg);
}
}
#slidecontainer {
	width: 100%;
}
.slider {
	-webkit-appearance: none;
	width: 100%;
	height: 15px;
	border-radius: 5px;
	background: #d3d3d3;
	outline: none;
	opacity: 0.7;
	-webkit-transition: .2s;
	transition: opacity .2s;
}
.slider:hover {
	opacity: 1;
}
 .slider::-webkit-slider-thumb {
 -webkit-appearance: none;
 appearance: none;
 width: 25px;
 height: 25px;
 border-radius: 50%;
 background: #0A3AF0;
 cursor: pointer;
}
 .slider::-moz-range-thumb {
 width: 25px;
 height: 25px;
 border-radius: 50%;
 background: #4CAF50;
 cursor: pointer;
}
.modal {
}
.modal-header-success {
	color: #fff;
	padding: 9px 15px;
	border-bottom: 1px solid #eee;
	background-color: #5cb85c;
	-webkit-border-top-left-radius: 5px;
	-webkit-border-top-right-radius: 5px;
	-moz-border-radius-topleft: 5px;
	-moz-border-radius-topright: 5px;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
}
.modal-header-warning {
	color: #fff;
	padding: 9px 15px;
	border-bottom: 1px solid #eee;
	background-color: #f0ad4e;
	-webkit-border-top-left-radius: 5px;
	-webkit-border-top-right-radius: 5px;
	-moz-border-radius-topleft: 5px;
	-moz-border-radius-topright: 5px;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
}
.modal-header-danger {
	color: #fff;
	padding: 9px 15px;
	border-bottom: 1px solid #eee;
	background-color: #d9534f;
	-webkit-border-top-left-radius: 5px;
	-webkit-border-top-right-radius: 5px;
	-moz-border-radius-topleft: 5px;
	-moz-border-radius-topright: 5px;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
}
.modal-header-info {
	color: #fff;
	padding: 9px 15px;
	border-bottom: 1px solid #eee;
	background-color: #5bc0de;
	-webkit-border-top-left-radius: 5px;
	-webkit-border-top-right-radius: 5px;
	-moz-border-radius-topleft: 5px;
	-moz-border-radius-topright: 5px;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
}
.modal-header-primary {
	color: #fff;
	padding: 9px 15px;
	border-bottom: 1px solid #eee;
	background-color: #428bca;
	-webkit-border-top-left-radius: 5px;
	-webkit-border-top-right-radius: 5px;
	-moz-border-radius-topleft: 5px;
	-moz-border-radius-topright: 5px;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
}
.vertical-alignment-helper {
	display: table;
	height: 100%;
	width: 100%;
}
.vertical-align-center {
	/* To center vertically */
	display: table-cell;
	vertical-align: middle;
}
.modal-content {
	/* Bootstrap sets the size of the modal in the modal-dialog class, we need to inherit it */
	width: inherit;
	height: inherit;/* To center horizontally */
}
.mainNav .navbar-brand {
	display: flex;
	align-items: center;
}
.mainNav .navbar-brand>img {
	padding: 7px 14px;
}
.daynumber {
	border: 1px solid #666666;
	border-left: 1px solid #CCCCCC;
	border-top: 1px solid #CCCCCC;
	display: block;
	height: 18px;
	line-height: 15px;
	margin-bottom: 0px;
	text-align: center;
	text-decoration: none;
	top: 0px;
	width: 26px;
}
.daynumberfull {
	border: 1px solid #666666;
	border-left: 1px solid #CCCCCC;
	border-top: 1px solid #CCCCCC;
	display: block;
	height: 18px;
	line-height: 15px;
	margin-bottom: 0px;
	text-align: center;
	text-decoration: none;
	top: 0px;
	width: auto;
}
.eventheader {
	border: 1px solid #666666;
	border-left: 1px solid #CCCCCC;
	border-top: 1px solid #CCCCCC;
	display: block;
	height: 18px;
	line-height: 15px;
	margin-bottom: 0px;
	text-align: center;
	top: 3px;
	width: auto;
	height: auto;
	background-color: #FFF;
}
.eventheader_dis {
	border: 1px solid #666666;
	border-left: 1px solid #CCCCCC;
	border-top: 1px solid #CCCCCC;
	display: block;
	height: 18px;
	line-height: 15px;
	margin-bottom: 0px;
	text-align: center;
	top: 3px;
	width: auto;
	height: auto;
	background-color: #CCC;
}
.membersignup {
	font-size: 10pt;
}
.thin-border {
	border: 1px solid #CCCCCC;
}
.sitetitle {
	color: #F90;
	font: bold;
}
.sitetitle_dis {
	color: #666;
	font: bold;
}
.shadow-text {
	font-family: Impact, Haettenschweiler, "Franklin Gothic Bold", "Arial Black", sans-serif;
	font-weight: bold;
	font-size: 32px;
	
	text-transform: uppercase;
	/*color: #146BD1;*/
	text-shadow: 0 1px 0 rgba(154,151,151,1.00), 0 2px 1px rgba(0,0,0,0.7);
}
.shadow-text-head {
	font-family: Impact, Haettenschweiler, "Franklin Gothic Bold", "Arial Black", sans-serif;
	font-weight: bold;
	font-size: 26px;
	
	text-transform: uppercase;
	color: #325EC4;
	text-shadow: 0 1px 0 rgba(154,151,151,1.00), 0 2px 1px rgba(0,0,0,0.7);
}
.count-second {
	right: 60px !important;
}
.count-third {
	right: 120px !important;
}
.count-fourth {
	right: 180px !important;
}
.count-fifth {
	right: 240px !important;
}
.count-sixt {
	right: 300px !important;
}
.ui-required-shadow {
	-webkit-box-shadow: 0 0 8px rgba(255, 0, 0, 1);
	-moz-box-shadow: 0 0 8px rgba(255, 0, 0, 1);
	box-shadow: 0 0 8px rgba(255, 0, 0, 1);
}
.ui-required-shadowl {
	-webkit-box-shadow: 0 0 8px rgba(255,204,0,1);
	-moz-box-shadow: 0 0 8px rgba(255,204,0,1);
	box-shadow: 0 0 8px rgba(255,204,0,1);
}
.ui-selectmenu.ui-popup .ui-input-search {
	margin-left: .5em;
	margin-right: .5em;
}
.ui-selectmenu.ui-dialog .ui-content {
	padding-top: 0;
}
.ui-selectmenu.ui-dialog .ui-selectmenu-list {
	margin-top: 0;
}
.ui-selectmenu.ui-popup .ui-selectmenu-list li.ui-first-child .ui-btn {
	border-top-width: 1px;
	-webkit-border-radius: 0;
	border-radius: 0;
}
.ui-selectmenu.ui-dialog .ui-header {
	border-bottom-width: 1px;
}
.body {
	color: #000000;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12pt;
}
.regulars {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 8pt;
	color: #000000;
}
.small {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 6pt;
	color: #000000;
}
.regularswap {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 9pt;
	color: black;
	background-color : #E7E7E7;
}
.regularswaps {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 8pt;
	color: black;
	background-color : #E7E7E7;
}
.regularwhite {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 9pt;
	color: black;
	background-color : white;
}
.regularwhites {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 8pt;
	color: black;
	background-color : white;
}
.regular {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10pt;
	color: black;
}
.regularb {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10pt;
	color: #000000;
	font : bold;
}
.regularbred {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 9pt;
	color: red;
	font : bold;
}
.header {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 9pt;
	color: black;
	background-color : #A7A7A7;
	font : bold;
}
.headers {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 8pt;
	color: black;
	background-color : #A7A7A7;
	font : bold;
}
.headerlarge {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 14pt;
	color: black;
	background-color : #A7A7A7;
	font : bold;
}
.title {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 14pt;
	color: #000000;
	font : bold;
}
.highlightred {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 9pt;
	color: white;
	background-color : red;
	font : bold;
}
.highlightyellow {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 9pt;
	color: black;
	background-color : #FFA;
	font : bold;
}
.highlightorange {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 9pt;
	color: black;
	background-color : #ffcc00;
	font : bold;
}
.highlightpurp {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 9pt;
	color: white;
	background-color : #8000FF;
	font : bold;
}
.highlightblue {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 9pt;
	color: white;
	background-color : #3399FF;
	font : bold;
}
.highlighthlack {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 9pt;
	color: white;
	background-color : black;
	font : bold;
}
.highlightgreen {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 9pt;
	color: white;
	background-color : green;
	font : bold;
}
.highlightblacklarge {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 14pt;
	color: white;
	background-color : black;
	font : bold;
}
.regularswap_s {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 8pt;
	color: black;
	background-color : #E7E7E7;
}
.regular_s {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 8pt;
	color: black;
	background-color : White;
}
