/* groups = The collection of group titles at the top */
/* group = The table used to show each group when one group name is clicked */

#groups {
	width: 90%;
	margin: auto;
	box-shadow: inset 0 0 12px rgba(0,0,0,0.5);
	border: 1px solid #777777;
	border-radius: 24px;
	background-color: #0088FF44;
	text-align: center;
}

#groups span {
  display: inline-block;
	width: 15%;
	box-shadow: inset 0 0 12px rgba(0,0,0,0.5);
	border: 1px solid #777777;
	border-radius: 24px;
	background-color: #FFFFFF66;
	padding-top: 10px;
	margin: 4px;
	font-size: 25px;
	height: 38px;
}

#groups span:hover {
	background-color: #FFFFFF99;
}

#filter {
	width: 50%;
	margin: auto;
	text-align: center;
    margin-top: 10px;
}

#filter span {
	display: inline-block;
	cursor: pointer;
	width: 22%;
	box-shadow: inset 0 0 12px rgba(0,0,0,0.5);
	border: 1px solid #777777;
	border-radius: 24px;
	background-color: #0088FF44;
	padding-top: 11px;
	margin: 4px;
}

#filter span:hover {
	background-color: #FFFFFF99;
}

#group {
	width: 90%;
	margin: auto;
	min-width: 700px;
}

#group caption {
	box-shadow: inset 0 0 12px rgba(0,0,0,0.5);
	border: 1px solid #777777;
	border-radius: 24px;
	background-color: #0088FF22;
	width: 300px;
	height: 31px;
	font-size: 20px;
	padding-top: 8px;
	margin: 10px;
}

#group thead {
	box-shadow: inset 0 0 20px rgba(0,0,0,0.7);
	border-radius: 24px;
	color: #004db9;
}

#group th {
	text-align: left;
	padding: 15px 15px 0px 15px;
	font-size: 20px;
	line-height: 25px;
	background-color: #FFFFFF66;
}

#group th:first-child {
	border-top-left-radius: 24px;
	border-bottom-left-radius: 24px;
}

#group th:last-child {
	border-top-right-radius: 24px;
	border-bottom-right-radius: 24px;
}

#group td span {
	display: block;
	box-shadow: inset 0 0 7px rgba(0,0,0,0.4);
	border: 1px solid #777777;
	border-radius: 24px;
    font-family: 'roboto', sans-serif;
	background: #FFFFFF66;
	margin: 6px 6px 0 0;
	line-height: 27px;
	padding: 5px 5px 5px 15px;
	color: #333
}

#group td span.alternate {
    background-color: #0088FF11;
}

#group td:last-child span {
    padding-right: 15px;
    max-width: 175px;
}

#group_container {
	width: 100%;
	height: 300px;
	margin-bottom: 100px;
}

#nocmds {
    width: 40%;
	margin: auto;
	box-shadow: inset 0 0 12px rgba(0,0,0,0.5);
	border: 1px solid #777777;
	border-radius: 24px;
	background-color: #0088FF44;
	text-align: center;
    padding-top: 15px;
    margin-top: 20px;
    font-size: 20px;
}