/* LAYOUT: DECOR: WHITESPACE */
/* Controls whitespace and some other page layout attributes for blocks.  This file is good for both positioned and floated layouts, but you could easily design a version that only worked well for one type. */
/* Also contains some code used in all hi-fi renditions to save some requests to the server.  When new choices are developed, such snippets may become files in their own right. */

/* overall */
.clear {
	clear:both;
	}
.clear, .newlist {
	font-size:1px;  /* makes the clearer and newlist blocks shorter, and is less buggy than height:0; */
	visibility:hidden;
	}
pre {
	overflow:auto;
	}

/* masthead */
#masthead-inner {
	width:100%;
	}
#logo, #sitename {
	float:left;
	padding: 0.35em;
	}
#sitename {
	margin:0 1em;
	}

/* content area */
#content-inner {
	padding:1em;
	}
#content-inner p.sidehead {
	margin:1em 0 0.4em 0;
	}

/* titleblock */
#titleblock {
	margin:0 0 1em 0;
	padding:1em 1em 0 1em;
	}
#titleblock.display, #titleblock.standard {
	padding:1em;
	}
#titleblock .moreactions {
	margin:0 0 1.5em 1em;
	}
#titleblock.standard .moreactions a {
	padding:0.2em;
	}
#titleblock h1.pagetitle {
	margin:0.25em 0 0 0;
	}
#titleblock.display h1.pagetitle {
	margin:0;
	padding:0;
	}
#titleblock .actionlist {
	margin:1.5em -1em 0 -1em;
	padding:1px 0 0 0;
	clear:both;
	}

/* footer */
#footer {
	padding-top: 0.75em;
	text-align:center;
	}
#footer div.actions {
	margin:1em 0;
	}

/* sidebar */
#sidebar-inner {
	margin-top:1em;
	padding:0 1em 1em 2em;
	}
#sidebar p.sidehead, #sidebar h1, #sidebar h2, #sidebar h3, #sidebar h4, #sidebar h5, #sidebar h6 {
	margin:1em 0 0.4em -1em;
	padding-bottom:0.15em;
	}
#sidebar #search form {
	margin:0 0 0 -1.25em;
	}
#sidebar #search form input.searchbox {
	margin-right:0.5em;
	}
#sidebar .viewswitcher p.login {
	margin:2em 0 0 -1.25em;
	text-align:right;
	}

/* editform */
/* using a child selector keeps IE/Win from seeing this value -- necessary because IE6 thinks the textarea should be 99% of the BODY, not of the containing block... */	
#wikiedit>form>textarea {
	width:99%;
	}
body.edit div#e_preview { /* even the background and border rules apply to any colour or decor, so they live here for simplicity's sake */
	background:url(../images/preview.png);
	border:1px solid;
	margin:1em 0;
	padding:0.5em;
	}
