@charset "UTF-8";
/* CSS Document */

@import url("base-tables.css"); /* Using a url */
/* standard no media queries*/
#colonies {
	font-size: 12px;
}
#colonies td {
	text-align: center;
}
#colonies td:first-of-type {
	text-align: left;
}
#colonies tr:last-of-type {
	border-bottom: solid 1px #ccc
}
#colonies th:first-of-type {
	text-align: left
}
#colonies th {
	text-align: center;
}
#colonies thead > tr > th {
	vertical-align: bottom;
	border-bottom: none;
}

/*small screen*/
@media (max-width: 480px) {
td {
	/* Behave  like a "row" */
	border: none;
	border-bottom: thin solid #eee;
	position: relative;
	padding-left: 58% !important;
	padding-right: 0px;
	padding-top: 2px !important;
	padding-bottom: 5px !important;
	font-size: 8px;
}
td:before {
	/* Now like a table header */
	position: absolute;
	left: 6px;
	max-width: 40% !important;
	padding-right: 10px;
	white-space: nowrap;
}
}

@media (max-width: 960px) {
/* Label the data*/
#colonies td:nth-of-type(2):before {
	content: "Catalog No.:";
	font-weight: bold;
}
#colonies td:nth-of-type(1):before {
	content: "Assay:";
	font-weight: bold;
}
#colonies td:nth-of-type(3):before {
	content: "Enumeration:";
	text-align: left !important;
	font-weight: bold;
}
#colonies td:nth-of-type(4):before {
	content: "Format:";
	font-weight: bold;
}
#colonies td:nth-of-type(5):before {
	content: "Species:";
	font-weight: bold;
}
#colonies td:nth-of-type(6):before {
	content: "# of Samples:";
	font-weight: bold;
}
#colonies td {
	text-align: left !important;
}
#colonies br {
	display: none;
}
td:first-of-type {
	color: rgba(21,41,152,1.00);
	border-collapse: collapse;
	border-width: 0px;
	font-weight:bold;
}

}
