* {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, main {
	display: block;
}

/*html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	background: transparent;
	border: 0;
	margin: 0;
	padding: 0;
	vertical-align: baseline;
	border: none;
}*/

h1, h2, h3, h4, h5, h6 {
	clear: both;
	font-weight: normal;
}

ol, ul {
	list-style: none;
}

blockquote {
	quotes: none;
}

blockquote:before, blockquote:after {
	content: '';
	content: none;
}

del {
	text-decoration: line-through;
}

/* tables still need 'cellspacing="0"' in the markup */
table {
	border-collapse: collapse;
	border-spacing: 0;
}

html {
	box-sizing: border-box;
}
*,
*:before,
*:after {
	box-sizing: inherit;
}

html,
body {
	height: 100%;
}

body {
	color: #fff;
	font-family: "alternate-gothic-no-3-d", "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-weight: 400;
	letter-spacing: 0.02em;
	word-spacing: 0.20em;
	font-size: 10px;
	line-height: 1.0;
	text-transform: uppercase;
	background: radial-gradient(circle at top, #00629f 0%,#002558 90%);
	background-attachment: fixed;
}

a {
	color: #fff;
	text-decoration: none;
	outline: none;
}


header {
	text-align: center;
	padding: 40px 40px 20px 40px;
}

header h1 {
	font-size: 30px;
	line-height: 0.90;
	padding-bottom: 0.2em;
}
.no-breaker {
	white-space: nowrap;
}

header h2,
section h1 {
	font-size: 16px;
}

header h2 {
	color: rgba(255,255,255,0.5);
}




.container {
	position: relative;
	margin-right: auto;
	margin-left: auto;
	max-width: 420px;
	width: 98%;
	padding-bottom: 80px;
}
.container::before,
.container::after {
	content: "";
	display: table;
}
.container::after {
	clear: both;
}

section {
	margin-bottom: 30px;
}

section h1 {
	display: block;
	padding-top: 1.2em;
	padding-bottom: 0.4em;
	margin: 0 16px 0.5em 16px;
	border-bottom: 1px solid rgba(255,255,255,0.2);
}


article {
	display: table;
	width: 100%;
}

article a {
	display: table-row;
	transition: all 0.1s ease-out;
}
article a.no-blog {
	background-color: #86f32e;
	background-color: rgba(134,243,46,0.6);
}
article a:hover {
	background-color: rgba(0,121,191,0.8);
}

article a div {
	display: table-cell;
	vertical-align: middle;
	font-size: 22px;
	padding-top: 0.15em;
}

article a div.cell-numerator,
article a div.cell-class,
article a span.last-name {
	color: rgba(255,255,255,0.6);
	transition: color 0.1s ease-out;
}
article a:hover div.cell-numerator,
article a:hover div.cell-class,
article a:hover span.last-name {
	color: rgba(255,255,255,0.75);
}

article a div.cell-numerator {
	width: 44px;
	padding-left: 16px;
}


article a div.cell-img {
	width: 64px;
	padding-top: 4px;
	padding-bottom: 4px;
	font-size: 0px;
}

article a img {
	display: block;
	width: 48px;
	height: 48px;
	border-radius: 400px;
	border: 3px solid rgba(255,255,255,0.25);
	transition: border 0.1s ease-out;
}
article a:hover img,
article a.my-row img {		border-color: rgba(255,255,255,0.5);}


article a div.cell-name {
}

article a div.cell-class {
	width: 50px;
	text-align: right;
	padding-right: 16px;
	padding-left: 8px;
}
article a div.cell-class::after {
	display: inline;
	position: relative;
	content: 'r.';
}
article a div.cell-class span {
	display: none;
}
article a div.cell-class.class-junior {
	color: #fff;
}


@media only screen and (min-width: 441px) {	
	.container {
		width: 94%;
	}
	
	article a div.cell-class {
		width: 80px;
	}
	article a div.cell-class::after {
		display: none;
	}
	article a div.cell-class span {
		display: inline;
	}
}


@media only screen and (min-width: 961px) {
	.container {
		max-width: 1000px;
	}
	
	section {
		float: left;
		width: 50%;
		padding-right: 5%;
		padding-left: 5%;
	}
}



