html {
	font-size: 1.2em;
	line-height: 1.4;
	font-family: "Oxygen", sans-serif;
	background-color: #FFFFFF;
}
html.debug {
    background-color: #fcc;
}
.logo {
    float: right;
    width: 100px;
    margin-top: 5px;
    height: 100px;
    background-image: url("https://vcesummertutoring.au/colourlogo2.png");
    background-size: contain;
}
h1,h2,h3,h4,h5,h6 {
	font-weight: normal;
	font-family: "Arvo", sans-serif;
}
body {
	margin: auto;
	justify-content: space-between;
	width: 75%;
	background-color: #fff;
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}
h2 {
	font-size: 1.4em;
	top: 0em;
}
fieldset.noheading {
	padding-top: 0em;
}
fieldset {
	background-color: #fff;
	background-repeat: no-repeat;
	background-position: 130% 0%;
	background-attachment: fixed;
	position: relative;
	/*padding-top: 2.5em;*/
	margin-top: 1em;
	/*border: 1px solid #ccc;*/
	border: none;
}
.fauxlabel, label {
	font-weight: bold;
	display: block;
	margin-bottom: 1.2em;
}
.fauxlabel span.instruction, label span.instruction {
	font-size: 0.8em;
	font-weight: normal;
	color: #555;
	display: block;
}
.fauxlabel input {
	display: inline;
}
.fauxlabel label {
	font-size: 0.9em;
	font-weight: normal;
	margin: 0;
}
.fauxlabel label.other {
	font-size: 0.9em;
	font-weight: normal;
	margin: 0;
	display: inline;
}
label.inline input[type=text], label.inline input[type=password] {
	margin-top: -0.8em;
	display: inline;
	width: 30%;
}
.fauxlabel table thead {
	font-size: 0.8em;
	text-align: center;
}
.fauxlabel table td.input {
	width: 80%;
}
.fauxlabel table td.input input {
	width: 95%;
}
textarea {
	width: 95%;
}
label input[type=text], label input[type=password], label textarea {
	display: block;
	width: 50%;
	font-family: "Oxygen", sans-serif;
}
.head {
	font-family: "Arvo", serif;
	font-size: 0.8em;
	text-transform: uppercase;
}
h1 {
	margin-top: 0; padding-top: 0;
}
table.grid {
	width: 100%;
	text-align: center;
}
table.bordered thead th {
	border-bottom: 1px solid #111111;
}
table.bordered {
	border-collapse: collapse;
}
table.bordered td, table.bordered th {
	border: 1px solid #999999;
}
table.info td, table.info th {
	border-bottom: 1px solid #cccccc;
}
table.info {
	width: 100%;
}
table.info th {
	text-align: left;
}
div.collapsible {
	margin: 4px;
	border: 1px solid #ddf;
	margin-bottom: 1em;
}
div.collapsible div.collapsible { 
	border: 1px solid #fdd;
	margin-top: 1em;
}
div.collapsible div.collapsible h3 {
	margin-top: 0;
	width: 100%;
	background-color: #fee;
	border-top: 3px solid #fdd;
	border-bottom: 1px solid #fdd;
}
div.collapsible h2 {
	margin-top: 0;
	width: 100%;
	background-color: #eef;
	border-top: 3px solid #ddf;
	border-bottom: 1px solid #ddf;
}
span.collapser {
	margin-right: 1em;
	border: 1px solid #999;
	cursor: pointer;
}
div.collapsible div.collapsible span.collapser:hover {
	background-color: #ecc;
}
div.collapsible span.collapser:hover {
	background-color: #cce;
}
table.interviewtimes {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 1em;
}
table.interviewtimes td, table.interviewtimes th {
	border: 1px solid #000000;
	width: 14.28%;
}
.interviewblock {
	background-color: #88cccc;
}
.smallannot {
	font-variant: small-caps;
	text-transform: lowercase;
}
p.warning {
	margin: 1em;
	font-weight: bold;
	color: #533;
}
.abs_complete {
	background-color: #dfd;
}
.abs_incomplete {
	background-color: #fdd;
}
nav {
	border-top: 2px #ffcf56 solid;
	background-color: rgba(255, 255, 47, 0.4);
	margin-right: -2px; /* -1 * padding on body */
	padding: 0.5em;
}
nav :link, nav :visited {
	color: #000;
	text-decoration: none;
}
nav a:hover {
	padding-bottom: 4px;
	border-bottom: 1px solid black;
}
nav ul {
	position: relative;
}
nav ul, nav li {
	list-style-type: none;
	padding: 0;
	margin: 0;
}
nav>ul>li {
	display: inline;
	margin-left: 1em;
	font-size: 1em;
	font-weight: bold;
}
nav ul ul {
	margin-top: 0.5em;
	position: absolute;
	width: 100%;
	padding: 1em 0 5em 0.5em;
	font-weight: normal;
	background-color: #ffc;
}
nav ul ul:target {
	display: block;
}
nav>ul>li>ul.hidden_when_wide {
	/* for js*/
	display: none;
}
nav>ul>li>ul:target.hidden_when_wide {
	display: block;
}
nav .rhs-link {
	float: right;
	margin-right: 15px;
}
@media (max-width:801px) {
	body {
		width: 100%;
		box-sizing: border-box;
		border: none;
		padding: 6px;
	}
	nav {
		background-color: inherit;
		margin-right: 0;
		padding: 0.5em;
	}
	nav>ul>li {
		display: block;
		margin: 0;
	}
	nav ul ul {
		position: relative;
		background-color: inherit;
		display: block;
		padding: 0em 0 0.2em 1em;
		margin: 0;
		box-sizing: border-box;
	}
	nav>ul>li>ul.hidden_when_wide {
		/* for js*/
		display: block;
	}
	.suppress_small {
		display: none;
	}
	nav :link, nav :visited {
		color: #008;
	}
	nav .rhs-link {
		float: none;
		margin-right: 0;
	}
}
hr {
	width: 95%;
	background: black;
	border: 0;
	height: 1px;
	-webkit-box-shadow: 0 1px 1px #777;
	-moz-box-shadow: 0 1px 1px #777;
	box-shadow: 0 1px 1px #777;
}
.public-annotation {
	font-size: 80%;
}
footer {
    margin-top: 100px;
    color: #222;
    border-top: 1px solid #999;
	font-size: 80%;
}
.container {
	margin-top: 1em;
}
.boxed {
	width: 90%;
	margin: 0 auto;
}
.boxed h2 {
	margin: 0 0 1em 0;
	padding: 0;
}
.boxed>* {
	margin-left: 10px;
	margin-right: 10px;
}
.boxed.unavailable {
	border: 2px solid #ccc;
}
.boxed.unavailable h2 {
	background-color: #ccc;
}
.boxed.available {
	border: 2px solid #cfc;
}
.boxed.available h2 {
	background-color: #cfc;
}
#zine-edit-individual-zis>.z-item {
	display: none;
}
#zine-edit-individual-zis>.z-item:target {
	display: block;
}
.zine-slot {
	font-size: 80%;
	font-style: italic;
	border: 1px solid #aaa;
	border-radius: 3px;
	background-color: #eee;
}
