/* CombainButton design */
a.CombainButtonA,
a.CombainButtonB,
a.CombainButtonC {
	display:inline-block;
	margin: 0;
	margin-right:0.5em;
	border: 0;
	padding: 0.5em 1em;
	font-size: 1.1em;
	text-align: center;
	text-decoration:none;
	box-sizing:border-box;
	cursor:pointer;
}
div.CombainButtonA,
div.CombainButtonB,
div.CombainButtonC {
	display:inline-block;
	margin: 0;
	margin-right:0.5em;
	border: 0;
	padding: 0.5em 1em;
	font-size: 1.1em;
	text-align: center;
	box-sizing:border-box;
	cursor:pointer;
}
input.CombainButtonA,
input.CombainButtonB,
input.CombainButtonC {
	display:inline-block;
	margin: 0;
	margin-right:0.5em;
	border: 0;
	padding: 0.5em 1em;
	font-size: 1.1em;
	text-align: center;
	box-sizing:border-box;
	cursor:pointer;
	-webkit-appearance: none;
    border-radius: 0;
}
/* CombainButton colors */
a.CombainButtonA,
div.CombainButtonA,
input.CombainButtonA {
	color: #FFF;
	background-color:#488BB6; /* combain blue */
}
a.CombainButtonB,
div.CombainButtonB,
input.CombainButtonB {
	color: #FFF;
	background-color:#F09403; /* combain orange */
}
a.CombainButtonC,
div.CombainButtonC,
input.CombainButtonC {
	color: #FFF;
	background-color:grey;
}

/* CombainTable */
table.CombainTable {
	border-spacing:0;
	color:black;
	background:#f6f6f6;
	margin-bottom:1em;
	box-sizing:border-box;
}
table.CombainTable th {
	padding:0.5em 0.75em;
	white-space:nowrap;
	font-weight:normal;
	font-size:1.1em;
	color:white;
	background-color:#488BB6; /* combain blue */
	text-align:left;
}
table.CombainTable td {
	padding:0.5em 0.75em;
	border-right: 1px solid #FFF;
	border-bottom: 1px solid #FFF;
	color:black;
	background:#e0e0e0;
}
table.CombainTable tr td:last-of-type {
	border-right:0;
}
table.CombainTable tr:last-of-type td {
	border-bottom:0;
}
/* CombainTable zebra */
table.CombainTable tr:nth-child(even) td {
	color:black;
	background:#ebebeb;
}
/* CombainTable .active */
table.CombainTable th.active {
	color:white;
	background:#68A2C9; /* combain light blue */
}
table.CombainTable th a {
	color:white;
}
/*
table.CombainTable td.active,
table.CombainTable tr.active td {
	color:black;
	background:#d6d6d6;
}
*/
/* CombainTable hover */
table.CombainTable tr:hover td {
	color:black;
	background:white;
}
/* CombainTable.tablesorter */
table.CombainTable.tablesorter th.header {
	cursor:pointer;
	position:relative;
}
table.CombainTable.tablesorter th.headerSortUp,
table.CombainTable.tablesorter th.headerSortDown {
	color:white;
	background:#68A2C9; /* combain light blue */
	padding-right:1.9em;
}
table.CombainTable.tablesorter th.headerSortUp::after {
	content: " \25bc";
	position:absolute;
	right:0.5em;
}
table.CombainTable.tablesorter th.headerSortDown::after {
	content: " \25b2";
	position:absolute;
	right:0.5em;
}
