/*
IAMA website
Print CSS

Author: Matthew Pennell

Date created: 04/08/07
Last modified: 04/08/07
*/

/* Show print only items */

.print-only {
	display: block !important;
}

/* Hide unnecessary stuff */

#header, #navigation, #sidebar, button, #footer, .noprint {
	display: none !important;
}

/* Fix layout of remaining content */

body {
	margin: 1em 0;
}

#wrapper {
	float: none;
}

#content {
	margin: 0;
	max-width: none;
}

#content * {
	max-width: none !important;
}

#footer {
	padding: 0;
}

#footer p {
	max-width: none;
	text-align: left;
}

/* Make forms look better offline */

#content fieldset, #content form div {
	width: 50%;
	float: left;
	margin: 0 0 1.5em;
}

fieldset.pagebreak {
	page-break-before: always;
}

#content label {
	width: 25%;
}

#content label.check {
	margin: 0 0 0 25%;
	width: 75%;
}

#content input {
	border: 0;
	border-bottom: 1px dashed #000;
	width: 200%;
	left: 100%;
}

#content textarea {
	color: #fff;
	height: 100px;
	width: 200%;
	left: 100%;
}

#content label span {
	position: static;
	width: auto;
}
