body {
	background: #edeef8;
	color: #25408f;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 100%;
	margin: 0;
	padding-top: 2.3em;
	text-align: center;
}
.clear {
	clear: both;
}
.container {
	margin: 0 auto;
	max-width: 900px;
	width: 94%;
}
a, a:visited {
	color: inherit;
}
button {
	background: #fff;
	border: 0;
	border-radius: 50%;
	cursor: pointer;
	font-size: 70%;
	font-weight: bold;
	margin-left: 5px;
	padding: 3px 5px;
	vertical-align: text-bottom;
}
a:hover, input:hover, button:hover {
	opacity: 0.9;
}
#msg {
	color: #fff;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
}
#msg p {
	background: #25408f;
	margin: 0;
	padding: 0.6em 3%;
}
#msg p.success {
	background: green;
}
.success button {
	color: green;
}
#msg p.error {
	background: red;
}
.error button {
	color: red;
}
#msg p.error,
#msg p.success {
	overflow: hidden;
	animation: fadein 1s;
}
@keyframes fadein {
	from {
		height: 0;
		opacity: 0;
		padding-bottom: 0;
		padding-top: 0;
	}
	to {
		height: auto;
		opacity: 1;
		padding-bottom: 10px;
		padding-top: 10px;
	}
}
h1 {
	margin: 40px 0 20px;
	}
h2 {
	margin: 10px 0 20px;
}
input, select, textarea {
	background: #fff;
	border: 0;
	box-sizing: border-box;
	cursor: pointer;
	font-family: inherit;
	margin: 0 0 20px;
	padding: 0.7em;
	width: 100%;
}
input[type="checkbox"] {
	width: auto;
}
input[type="submit"] {
	background: #25408f;
	color: #fff;
}
input:disabled {
	opacity: 0.4;
}

#submit-msg {
    position: relative;
}

#submit-msg:after {
	content: 'Please confirm you have the necessary copyright permissions to upload these.';
	height: 0;
	overflow: hidden;
	display: block;
	transition: height 0.3s;
	position: absolute;
	top: 0;
	margin-top: 2.3em;
	left: 0;
	right: 0;
	text-align: center;
	color: red;
	padding: 0.2em;
 }

#submitted.error #submit-msg:after {
    height: 1.4em;
}

.error input[type="submit"] {
    z-index: -1;
    position: relative;
}

.smallprint {
	font-size: small;
}
#example {
	text-align: center;
}
#landscape, #portrait {
	background: #fff;
	box-shadow: 1px 2px 10px rgba(0,0,0,0.5);
	display: inline-block;
	margin: 30px 10px 0;
	padding: 40px 20px;
	font-weight: bold;
}
#landscape {
	width: 158px;
	height: 60px;
	color: green;
}
#portrait {
	width: 100px;
	height: 118px;
	color: red;
}
.right {
	border-top: solid 1px;
	padding-top: 30px;
	margin-top: 30px;
}
@media (min-width: 688px) {
	.half {
		float: left;
		margin-right: 6%;
		width: 47%;
	}
	.last {
		margin-right: 0;
	}
	.left, .right {
		text-align: left;
		float: left;
		width: 65%;
	}
	.right {
		border-top: none;
		margin: 0 0 0 5%;
		padding: 0;
		width: 30%;
	}
}