/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

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, 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,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-tap-highlight-color:  rgba(255, 255, 255, 0);
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}



/* custom reset */

input, button, select, textarea {
	margin: 0;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	font-family: inherit;
	font-size: inherit;
}

input[type="text"],
input[type="password"],
textarea, 
button {
	padding: 3px 10px 3px 10px;
	border: 0px;
	border-radius: 4px;
}

label {
	display:block;
	margin-bottom: 0.5em;
}

a {
	color: black;
}

i, em {
	font-style: italic;
}

b, strong {
	font-weight: 900;
}

h1,
h2,
h3,
p,
blockquote {
	margin-bottom: 1em;
}

body,
html {
	width: 100%;
	height: 100%;
}

html {
	overflow-y: scroll;
	-webkit-text-size-adjust: 100%; /* Prevent font scaling in landscape while allowing user zoom */
}

:focus {outline:none;}
::-moz-focus-inner {border:0;}


.hidden {
	display:none;
}

.onlyVisibleAsInput {
	display:none;
}


/* login stuff */

.loginDiv {
	max-height: 0;
	overflow:hidden;
	position: relative;
	top: 0;
	left: 0;
	width: 100%;
	font-size: 14px;
	transition: max-height 0.3s ease;
	z-index: 20;
	background-color: black;
}

.loginDiv.open {
	max-height: 50px;
}

.showLoginButton {
	position: fixed;
	z-index: 20;
	display:block;
	width: 20px;
	height: 20px;
	cursor: pointer;
}

.loginDiv input,
.loginDiv button {
	background-color: black;
	color: white;
	margin: 0;
	padding: 6px 12px 8px 12px;
	border-radius: 0;
	width: 105px;
}

.loginDiv input {
	background-color: #333;
}

.passwordInput {
	outline:none;
}

.loginButton {
	cursor:pointer;
}

.loginButton:hover {
	background-color: #444;
}

.notices {
	display:inline-block;
}

.adminNotice {
	padding-left: 10px;
	opacity: 0;
	color: white;
	transition: opacity 0.3s ease;
}

.adminNotice.active {
	opacity: 1;	
}
