.row {
	display: flex; 
	flex-wrap: wrap;
	margin: 0px 10px;
	justify-content: space-between;
}

.row .row {
	margin: 0px;
	width: 100%;
}

.row .col {
	flex-basis: 100%; max-width: 100%; box-sizing: border-box; 
	display: flex; flex: 1 1 0%; 
	align-items: center; justify-content: center;
}

.col.half {
	flex-basis: 50%; max-width: 50%;
}
.col.third {
	flex-basis: 33%; max-width: 33%;
}
.col.two-thirds {
	flex-basis: 66%; max-width: 66%;
}
.col.fourth,
.col.quarter {
	flex-basis: 25%; max-width: 25%;
}
.col.three-fourths {
	flex-basis: 75%; max-width: 75%;
}

.col.valign-t { align-items: flex-start; }
.col.valign-b { align-items: flex-end; }
.col.align-l { justify-content: flex-start; }
.col.align-r { justify-content: flex-end; }

.col > div {width: 100%;}

.pad {padding: 10px;}
.nopad {padding: 0px;}
.nomarg {margin: 0px;}

@media screen and (max-width: 799px) {
	.col {width: 100%!important; flex-basis:100%!important; max-width: 100%!important;}
}

table {border-spacing: 0px; border-collapse: collapse; border: 1px solid #333; margin-top:5px; background-color: #fff;}
table th, table td {border: 1px dotted #ccc; border-bottom: 1px solid #bbb; padding: 2px 8px;  
	vertical-align: top; text-align: left}
table th {font-weight:600; font-size: 12px; padding: 5px;}
table tr:nth-child(even) {background-color:#F2F4F4;}
