/* CSS One True layout */
/* One True Layout techniques used here, Authored by Alex Robinson */

/*======= Standard Layout ================*/
body { 
	/* DESIGN to 10px, then resize. default font size 16pt */
	/*font-size: 62.5%;*/
	font-size: 75%; /*16pt -> 12pt*/
	text-align: center; /* needed to center the container in IE5.x because it doesn't like 'margin: 0 auto' */
	padding: 0 0 0 0;
	margin: 0em;
  	}
#wrapper {
	font-size:1.0em;
	float:left;
	text-align: left; 
	margin: 0 auto;
	}

#group_block_expand, #group_header,#group_menu,#group_submenu,#group_content,#group_subsection,#group_footer,#group_preamble {
	overflow:hidden;
	display:inline-block
}

/* safari and opera need this */
#group_block_expand, #group_header, #group_preamble, #group_content, #group_footer {width:100%}
#group_submenu {width:100%}
#group_block_expand, #group_menu, #group_submenu, #group_subsection {float:left}
#group_menu {width:30%}
#group_subsection {width:70%}
#group_content {clear:both}
#group_footer {clear:both}

p { 
	font-size:1.0em;
	padding: 0;
	margin: 0;
	margin-top: 0em; 
	color:#444;
}

h1 { 
	font-size:1em;  /* design */
	}

h2 { 
	font-size: 1.0em; /* design */
	}
h3 { 
	font-size: 1.0em; /* design */
	}

form p {
	font-size:1.0em /* displayed at 10px */
}
INPUT, SELECT, TH, TD {
	font-size:1em /* mainly to cater for IE/Win */
	}
a {
	font-size:1.1em;
	font-style:normal;
	text-decoration: none; 
	}
a:hover, a:active { 
	text-decoration: underline; 
	}

ul ul, li li, li p, td p, blockquote p, dl p, p code, p pre{
	font-size:1em /*prevent inherited shrinkage or expansion */
	}
span {font-size:1em}
/*
** HTML elements
*/
blockquote {
  font-style: italic;
}
table {
  margin: 0;
  padding: .5em;
  border-collapse: collapse;
}
code, pre {
 font-size: 1.2em;
}
pre {
 padding: 1em;
}
li {
 padding-bottom: .3em;
}

br {
  line-height: 0.6em;
}


/* ===============================

	APPENDIX
	All settings required to variously make the floating blocks in no-compliant browsers,
	Particluarly I.E.
	May not be required, but leave in for the time being.
	This section from Alex Robinson's One TrueLayout: layoutiseverything.com

   =============================== */	

/* we need this for IE 5.01 - otherwise the wrapper does not expand to the
necessary height (unless fixed, this problem becomes even more acute 
weirdness as the method is enhanced */
#wrapper
        {
/* Normally a Holly-style hack height: 1% would suffice but that causes 
IE 5.01 to completely collapse the wrapper - instead we float it */
        float: left;
/* NB. possibly only IE 5.01 needs to get this float value - otherwise 5.5 sometimes 
(I saw it happen many moons ago) makes the width of wrapper too small 
the float: none with the comment is ignored by 5.01,
5.5 and above see it and carry on about their business
It's probably fine to just remove it, but it's left here 
just in case that many moons ago problem rears its head again */
        float/**/: none;
        }
/* easy clearing */
#wrapper:after
        {
        content: '[DO NOT LEAVE IT IS NOT REAL]'; 
        display: block; 
        height: 0; 
        clear: both; 
        visibility: hidden;
        }
#wrapper
        {
        display: inline-block;
        }
/*\*/
#wrapper
        {
        display: block;
        }
/* end easy clearing */


