/* 
Basic layout derived from http://www.positioniseverything.net/articles/pie-maker/pagemaker_form.php.
I've changed many so things that I won't put a full copyright notice. However all hacks (and comments!) are far beyond my knowledge and this deserves full credits:

Original copyright notice:
Parts of these notes are
(c) Big John @ www.positioniseverything.net and (c) Paul O'Brien @ www.pmob.co.uk, all of whom contributed significantly to the design of
the css and html code.

Reworked and simplified for Foswiki: (c) Arthur Clemens @ visiblearea.com
*/

html, body {
	margin:0; /*** Do NOT set anything other than a left margin for the page
as this will break the design ***/
	padding:0;
	border:0;
	height:100%;
}
body {

}
/* http://perishablepress.com/press/2008/02/05/lessons-learned-concerning-the-clearfix-css-hack */
.clear:after,
.clearfix:after {
  clear: both;
  content: ' ';
  display: block;
  font-size: 0;
  line-height: 0;
  visibility: hidden;
  width: 0;
  height: 0;
}
.clear,
.clearfix {
  *zoom:1; /* IE7 hack */
}
* html .clear,
* html .clearfix {
  height: 1%;
}
#patternPage {
	position:relative;
	width:100%;
}
#patternOuter {
	height:100%;
}
#patternFloatWrap {
	width:100%;
	float:left;
	display:inline;
}
#patternSideBar {
	float:left;
	display:inline;
	overflow:hidden;
}
#patternSideBarContents {
	position:relative;
}
#patternMain {
	width:100%;
	float:right;
	display:inline;
}
#patternBottomBar {
	clear:both;
	width:100%;
}
.foswikiContentFooter {
	clear:both;
}
#patternTopBar {
	height:75px; 
	overflow:hidden;
}
#patternTopBarContents {
	padding-top:12px;
}

.patternMetaMenu {
  vertical-align:middle;
}

@media (max-width:870px) {
  .patternRevInfo,
  .patternMetaMenu form[name="changeLanguage"] {
        display:none;
  }
}
