
.content {
	padding:10px 3% 10px 3%;
}

    .content.thinner {
        padding:6px 2% 6px 2%;
    }

.overlay {
	top:0;
	left:0;
	background-color:rgba(0,0,0,0.3);
	width:100%;
	height:100%;
	position:absolute;
	z-index:199;
	/*charles Zhang 7/24/2017*/
	display:flex;
	justify-content: center;
	align-items: center;
	/* min-height: 60px; */

}

/*.overlay > .overlay-loading {
	margin-top:20%;
	margin-left:46%;
}*/
	
.fixedControls {
	text-align:center;
	z-index: 99; position: fixed; bottom:36px; left: 50%; -webkit-transform: translateX(-50%);-moz-transform: translateX(-50%);-o-transform: translateX(-50%); -ms-transform: translateX(-50%); transform: translateX(-50%);
}

.absoluteControls {
	text-align:center;
	z-index: 19; 
	position: absolute; 
	bottom:36px; 
	left: 50%; 
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-o-transform: translateX(-50%); 
	-ms-transform: translateX(-50%); 
	transform: translateX(-50%);
}

.absoluteControls.easyRead {
	bottom: 0;
	height: 75px;
	padding-top: 5px;
	border-top: #ddd solid 1px;
	background-color:#eeeeeeee;
	width:100%;
}

.vbase {
	vertical-align: baseline;
}

.vbottom {
	vertical-align: bottom;
}

.vcenter {
	vertical-align: middle;
}

.vtop {
	vertical-align: top;
}


.left {
	float:left;
}

.right {
	float:right;
}

.clear {
	clear:both;
}

    div.clear:after {
        content: '';
        clear:both;
        display:block;
    }

    
.hovercontent {
	display:none;
}

.hovercontainer:hover .hovercontent {
	display:inherit !important;
}

.text-left {
	text-align: left;
}

.text-right {
	text-align: right;
}

.text-center {
	text-align: center;
}

.text-xsmall {
	font-size:85%;
}

.text-small {
	font-size:94%;
}

.text-large {
	font-size:110%;
}

.text-xlarge {
	font-size:125%;
}

.text-xxlarge {
	font-size:200%;
}

.pos-absolute {
    position: absolute;
}

.pos-relative {
    position: relative;
}

.display-flex {
	display: flex;
	flex-wrap: wrap;
}


/****************/
.sxx-flag {
	position: relative;
}
.sxx-flag:before {
	position: absolute;
	content: " ";
	border-style: solid;
	border-width: 0px 20px 20px 0;
	border-color: transparent #a7a7a7 transparent transparent;
	top: 0;
	right: 0;
	z-index: 1;
}

.sxx-flag.sxx-flag-warning:before {
	border-color: transparent #feca37 transparent transparent;
}

.sxx-flag.sxx-flag-alert:before {
	border-color: transparent #ff6969 transparent transparent;
}

.sxx-flag.sxx-flag-success:before {
	border-color: transparent #0ba700 transparent transparent;
}

.sxx-flag-content {
	position: absolute;
	right: 0px;
	top: 0px;
	z-index: 2;
	width: 10px;
	height: 10px;
	text-align: center;
	line-height: 10px;
	font-size: 10px;
}

/****************/
.bgdashed {
    position: relative;
}

.bgdashed:before {
    display: block;
    content: "";
    position: absolute;
    top: 50%;
    left: 15%;
    width: 80%;
    border-bottom: 2px dotted #ddd;
}

/*******/
.imagewrapper img {
	max-width: 100%;
}

.imagewrapper.v img {
	max-width:none;
	max-height:100%;
}

.imagewrapper.hv img {
	max-width: 100%;
	max-height:100%;
}

/******/
.padding-x1 {
	padding: 2px 5px;
}

.padding-x2 {
	padding: 4px 8px;
}

.padding-x3 {
	padding: 8px 16px;
}

.padding-e3 {
	padding: 3px;
}

.padding-e5 {
	padding: 5px;
}

.padding-e7 {
	padding: 7px;
}

.padding-e10 {
	padding: 10px;
}

.padding-e12 {
	padding: 12px;
}

.padding-e18 {
	padding: 18px;
}

.padding-e22 {
	padding: 22px;
}

.margin-x0 {
	margin: 2px !important;
}

.margin-x1 {
	margin: 4px !important;
}

.margin-x2 {
	margin: 8px !important;
}

.margin-tb5 {
	margin: 5px 0;
}

.margin-tb12 {
	margin: 12px 0;
}

.margin-t10 {
	margin-top: 10px !important;
}

.nomargin {
	margin:0px !important;
}

.nopadding {
	padding:0px !important;
}

.inline {
	display:inline-block;
}

.noscroll {
    overflow: hidden !important;
}

.hidden {
	display: none !important;
}

/**********/

.banner {
	background-color: #86878C;
	padding: 20px 2%;
	font-weight: bold;
	color: #eee;
}

.banner0 {
	background-color:#86878C;
	padding:20px 2%;
	font-weight: bold;
	color: #fff;
}

.banner1 {
	background-color:#ededed;
	padding:20px 2%;
	font-weight: bold;
	color: #444;

}
.banner2 {
	background-color:#f6f6f6;
	padding:14px 2%;
}

.banner3 {
	background-color:#fcfcfc;
	padding:8px 2%;
}

.banner-controls {
	padding: 16px;
	background-color:#35404F;
}

.hot {
	cursor:pointer;
}
	
.hotter {
	cursor:pointer;
}
	.hotter:hover {
		box-shadow: 0 2px 4px 0 rgba(0,0,0,0.2);
		opacity: 0.9;
	}

.bordered {
    border: 1px solid #eee;
}

.rounded {
	border-radius: 5px;
}

.onhover {
    padding:2px 5px;
    border-radius:3px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
    
    .onhover:hover {
        background-color: #eee !important;
        box-shadow: 0 4px 4px 0 rgba(0,0,0,0.2);
    }

.whitespace-nowrap, .whitespace-nowrap pre{
	white-space: nowrap;
}

.whitespace-normal, .whitespace-normal pre{
    white-space: normal;
}

.wordwrap-anywhere, .wordwrap-anywhere pre, .wordwrap-anywhere > * {
	word-wrap: anywhere;
}

.wordwrap-break, .wordwrap-break pre, .wordwrap-break > * {
	word-wrap: break-word;
}

.noselect {
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -khtml-user-select: none; /* Konqueror HTML */
        -moz-user-select: none; /* Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently
                                supported by Chrome and Opera */
}


hr {
	display: block;
	height: 1px; border: 0; 
	border-top: 1px solid #ccc !important; 
	margin: 0.6em 0 0.4em 0; 
	padding: 0;
	background-color: #ccc;
	box-sizing: border-box;
}

/*
circled numbers
*/
div.circle.number {
	width:16px;
	height:16px;
	display:inline-block;
	border-radius:40px;
	line-height:16px;
	text-align:center;
	font-size:11px;
	border-color:#eee;
}
	div.circle.circle-large {
		width:32px;
		height:32px;
		border-radius:40px;
		line-height:32px;;
	}

div.square.number {
	width:16px;
	height:16px;
	display:inline-block;
	line-height:16px;
	text-align:center;
	font-size:11px;
	border-color:#eee;
}
	
/* Colors */
div.white:not(.bg), h1.white, b.white, p.white, span.white, label.white, .btn.white:before {
	color:white;
}
div.bg.white {
	background-color:white;
}

div.red:not(.bg), b.red, p.red, span.red, label.red, .btn.red:before {
	color:#f94d4d;
}
div.bg.red {
	background-color:#f94d4d;
	color:white !important;
}
div.bg.warn {
	background-color:goldenrod;
	color:white;
}

/*red used in alert*/
div.alertred:not(.bg), h1.alertred, b.alertred, p.alertred, span.alertred, label.alertred, .btn.alertred:before {
	color:#FC434B;
}
div.bg.alertred {
	background-color:#FC434B;
	color:white !important;
}

/*blue used in info*/
div.infoblue:not(.bg), h1.infoblue, b.infoblue, p.infoblue, span.infoblue, label.infoblue, .btn.infoblue:before {
	color:#3DA5F4;
}
div.bg.infoblue {
	background-color:#3DA5F4;
	color:white;
}

/*yellow used in warning*/
div.warningyellow:not(.bg), h1.warningyellow, b.warningyellow, p.warningyellow, span.warningyellow, label.warningyellow, .btn.warningyellow:before {
	color:#FDA006;
}
div.bg.warningyellow {
	background-color:#FDA006;
	color:white;
}


/*blue*/
div.blue:not(.bg), b.blue, p.blue, span.blue, label.blue, .btn.blue:before {
	color:#1a7ada;
}
div.bg.blue {
	background-color:#1a7ada;
	color:white;
}


/*lightgreen*/
div.lightgreen:not(.bg), b.lightgreen, p.lightgreen, span.lightgreen, label.lightgreen, .btn.lightgreen:before {
	color:#00e300;
}
div.bg.lightgreen {
	background-color:#00e300;
	color:white;
}

/*shadowgreen*/
div.shadowgreen:not(.bg), b.shadowgreen, p.shadowgreen, span.shadowgreen, label.shadowgreen, .btn.shadowgreen:before {
	color:#3c763d;
}
div.bg.shadowgreen {
	color: #3c763d;
	background-color: #9cff9e;
}

/*green*/
div.green:not(.bg), b.green, p.green, span.green, label.green, .btn.green:before {
	color:green;
}
div.bg.green {
	background-color:#23b323;
	color:white !important;
}

div.infogreen:not(.bg), b.infogreen, p.infogreen, span.infogreen, label.infogreen, .btn.infogreen:before, div.infogreen:not(.bg):after {
	color:#17a2b8;
}
div.bg.infogreen {
	background-color:#17a2b8;
	color:white;
}

/*gray*/
div.gray:not(.bg), b.gray, p.gray, span.gray, label.gray, .btn.gray:before, div.gray:not(.bg):after {
	color:gray;
}
div.bg.gray {
	background-color:gray;
	color: white;
}

/*light gray*/
div.lightgray:not(.bg), b.lightgray, p.lightgray, span.lightgray, label.lightgray, .btn.lightgray:before, div.lightgray:not(.bg):after {
	color:#f6f6f6;
}
div.bg.lightgray {
	background-color:#f6f6f6;
	color:#444;
}

/*shadow gray*/
div.shadowgray:not(.bg), b.shadowgray, p.shadowgray, span.shadowgray, label.shadowgray, .btn.shadowgray:before, div.shadowgray:not(.bg):after {
	color:#555;
}
div.bg.shadowgray {
	color: #555;
	background-color: #e4e4e4;
}

/*gold*/
div.gold:not(.bg), b.gold, p.gold, span.gold, label.gold, .btn.gold:before, div.gold:not(.bg):after {
	color:gold;
}
div.bg.gold {
	background-color:gold;
}

/*goldenrod*/
div.gold:not(.bg), b.gold, p.gold, span.gold, label.gold, .btn.gold:before, div.gold:not(.bg):after {
	color:goldenrod;
}
div.bg.goldenrod {
	background-color:goldenrod;
	color: white;
}

/*dark blue*/
div.darkblue:not(.bg), b.darkblue, p.darkblue, span.darkblue, .btn.darkblue:before, div.darkblue:not(.bg):after {
	color:#35404f;
}
div.bg.darkblue {
	color: #ddd;
	background-color:#35404f;
}

/* lengends for numbers */
.number-lengend:after {
	content: '';
	display:inline-block;
	width:8px;
	height:8px;
	border-radius:16px;
	background-color:#ccc;
	margin-left: 4px;
	margin-right: 4px;
	/*xvertical-align:middle;*/
}

.number-lengend.green:after {
	background-color:#00CC00;
}

.number-lengend.red:after {
	background-color:#FF474A;
}



/* Text style classes */
.text-fade {
	color:#ccc;
}

.text-ucase {
	text-transform: uppercase;
}

@media only screen and (max-width: 768px) {
    table.mobile-friendly {
		border: none;
	}

	table.mobile-friendly,
	table.mobile-friendly tbody,
	table.mobile-friendly tr:not(.desktoponly),
	table.mobile-friendly td:not(.desktoponly) {
		display: block;
	}

	table.mobile-friendly thead {
		display: none;
	}

	table.mobile-friendly td {
		border: none;
	}

	table.mobile-friendly tr {
		padding: 12px;
		background-color: #fff !important;
		box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
		border-radius: 3px;
		overflow: hidden;
	}

	table.mobile-friendly tr + tr {
		margin-top: 1rem;
	}

	table.mobile-friendly td::before {
		content: attr(data-label)": ";
		font-weight: 800;
    }
}

/* ***************************************************************
	List Box
*/
ul.listbox {
	list-style:none;
	margin:0;
	padding:0;
	display: flex;
	flex-wrap: wrap;
}

/*
ul.listbox.full {
}
*/


ul.listbox:after {
	content: '';
	clear:both;
	display:block;
}

ul.listbox li {
	/*float: left;*/
	width: 32%;
	/*height: 156px;*/
	min-height: 156px;
	background-color:white;
	margin-right:1%;
	margin-bottom:10px;
	position:relative;
	border: 1px solid #eee;
	display:inline;
	word-wrap: break-word;
}

ul.listbox.full li {
	width: 100%;
	height:auto;
	min-height:100px;
}

ul.listbox .listbox-content {
	height:98%;
	overflow:hidden;
	padding:10px 3% 40px 3%;
}

ul.listbox .listbox-footer {
	position:absolute;
	bottom: 0px;
	right:0px;
	width:100%;
	padding:4px;
}

@media only screen and (max-width: 1080px) {
	ul.listbox li {
		width: 48%;
		margin-right:1%;
	}

	.portrait-narrow > .left, .portrait-narrow > .right {
		width: 100% !important;
	}
}

@media only screen and (max-width: 600px) {
	ul.listbox li {
		width: 99%;
		margin-right:1%;
		height:auto;
	}

	.portrait-mobile > .left, .portrait-mobile > .right {
		width: 100% !important;
	}
}

ul.listbox li > .listbox-item-hovermask {
	width: 100%;
	height: 100%;
	position: absolute;
	overflow: hidden;
	top: 0;
	left: 0;

    -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    opacity: 0;
    background-color: rgba(219, 124, 0, 0.7);
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

ul.listbox li:hover > .listbox-item-hovermask {
    -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
    opacity: 1;
}

ul.listbox li > .listbox-item-hovermask p {
	-webkit-transform: translateY(100px);
	-moz-transform: translateY(100px);
	-o-transform: translateY(100px);
	-ms-transform: translateY(100px);
	transform: translateY(100px);
	-ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=0)";
	filter: alpha(opacity=0);
	opacity: 0;
	-webkit-transition: all 0.2s linear;
	-moz-transition: all 0.2s linear;
	-o-transition: all 0.2s linear;
	-ms-transition: all 0.2s linear;
	transition: all 0.2s linear;
	transition-delay: 0s;
	
	font-size:12px;
	padding:30px 20px 20px;
	text-align:center;
	color:white;

}

ul.listbox li:hover > .listbox-item-hovermask p {
    -webkit-transition-delay: 0.1s;
    -moz-transition-delay: 0.1s;
    -o-transition-delay: 0.1s;
    -ms-transition-delay: 0.1s;
    transition-delay: 0.1s;
	
	filter: alpha(opacity=100);
	opacity: 1;
	-webkit-transform: translateY(0px);
	-moz-transform: translateY(0px);
	-o-transform: translateY(0px);
	-ms-transform: translateY(0px);
	transform: translateY(0px);

}

/* ***************************************************************
	Stats Box
*/
ul.statslist {
	list-style:none;
	margin:0;
	padding:0;
}

/*
ul.statslist.full {
}
*/

ul.statslist:after {
	content: '';
	clear:both;
	display:block;
}

ul.statslist li {
	float: left;
	width: 32%;
	margin-right:1%;
	margin-bottom:10px;
	position:relative;
	border-right: 1px solid #eee;
}

ul.statslist li:last-child {
	border-right:none;
}

ul.statslist.full li {
	width: 100%;
	height:auto;
	min-height:100px;
}

ul.statslist .statslist-title {
	font-size: 13px;
	font-weight: 400;	
	text-align:center;
	color:#888;
	text-transform:uppercase;
	padding:8px 0 0 0;
}

ul.statslist .statslist-content {
	font-size: 24px;
	font-weight: 100;
	color:#555;
	text-align:center;
}

@media only screen and (max-width: 1080px) {
	ul.statslist li {
		width: 48%;
		margin-right:1%;
	}
	
	ul.statslist li:nth-child(even) {
		border-right:none;
	}
	
	ul.statslist li:nth-child(odd) {
		border-right:1px solid #eee;
	}
}

@media only screen and (max-width: 600px) {
	ul.statslist li {
		width: 99%;
		margin-right:1%;
		height:auto;
		border-bottom: 1px solid #eee;
	}
	
	ul.statslist li:nth-child(even) {
		border-right:none;
	}
	
	ul.statslist li:nth-child(odd) {
		border-right:none;
	}
}

ul.statslist li > .statslist-item-hovermask {
	width: 100%;
	height: 100%;
	position: absolute;
	overflow: hidden;
	top: 0;
	left: 0;

    -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    opacity: 0;
    background-color: rgba(219, 124, 0, 0.7);
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

ul.statslist li:hover > .statslist-item-hovermask {
    -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
    opacity: 1;
}

ul.statslist li > .statslist-item-hovermask p {
	-webkit-transform: translateY(100px);
	-moz-transform: translateY(100px);
	-o-transform: translateY(100px);
	-ms-transform: translateY(100px);
	transform: translateY(100px);
	-ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=0)";
	filter: alpha(opacity=0);
	opacity: 0;
	-webkit-transition: all 0.2s linear;
	-moz-transition: all 0.2s linear;
	-o-transition: all 0.2s linear;
	-ms-transition: all 0.2s linear;
	transition: all 0.2s linear;
	transition-delay: 0s;
	
	font-size:13px;
	padding:20px 20px 20px;
	text-align:center;
	color:white;

}

ul.statslist li:hover > .statslist-item-hovermask p {
    -webkit-transition-delay: 0.1s;
    -moz-transition-delay: 0.1s;
    -o-transition-delay: 0.1s;
    -ms-transition-delay: 0.1s;
    transition-delay: 0.1s;
	
	filter: alpha(opacity=100);
	opacity: 1;
	-webkit-transform: translateY(0px);
	-moz-transform: translateY(0px);
	-o-transform: translateY(0px);
	-ms-transform: translateY(0px);
	transform: translateY(0px);

}