/* -----------------------------------------------
Standardise browser rendering styles
STEEL http://www.steellondon.com/
----------------------------------------------- */

html { min-height: 100%; margin-bottom: 1px; } /* forces a vertical scrollbar so page won't shift in firefox etc */
body, form, fieldset, div, p, h1, h2, h3, h4, h5, h6, dl, dd, dt, ul, ul li, table, th, td, img, a
{ margin: 0px; padding: 0px; border: 0px; font-size: 100%; }
body { font-size: 100.1%; } /* resolve some font size issues in some layouts for some browsers. */
input, select, textarea { font-size: 100%; font-weight: normal; }
ol { margin-top: 0px; margin-bottom: 0px; /*padding: 0px;*/ font-size: 100%; }
a {cursor:pointer; }
table { font-size: 100%; }
td, th { vertical-align: top; }
h1, h2, h3, h4, h5, h6 { margin:0; padding:0; }
address { font-style:normal; }

ul, ul li 		{ list-style: none; list-style-type: none; }
img				{ border:0; }
.capitalize		{ text-transform: capitalize; }
.uppercase		{ text-transform: uppercase; }
.lowercase		{ text-transform: lowercase; }
.normal			{ font-weight: normal !important; }
.error			{ color:#f00; font-weight:bold; }
.hide			{ display: none !important; }
.show			{ display:block; }
.inline			{ display:inline !important; }
.nowrap			{ white-space:nowrap; }
.auto			{ width:auto !important; }
.bullet, .bullet li			{ list-style: disc; list-style-type: disc; margin-left:7px;}
.test			{ border:1px solid red;}
.clearBoth		{ clear:both;}
/* CSS SuperScript lineheight adjustment 
- http://www.soxiam.com/Code/CSSSuperscriptLineheightAdjustment */

sup {
    font-size: smaller;
    vertical-align: baseline;
    position: relative;
    bottom: 0.33em;
}
sub {
    font-size: smaller;
    vertical-align: baseline;
    position: relative;
    bottom: -0.25em;
}

#standardsinfo	{ display: none; }

/* PIE's "How To Clear Floats Without Structural Markup"
http://www.positioniseverything.net/easyclearing.html */

.clearfix:after {
    content : "."; 
    display : block; 
    height : 0; 
    clear : both; 
    visibility : hidden;
}

.clearfix {display : inline-block;}

/* Hides from IE-mac \*/
.clearfix {display : block;}
/* End hide from IE-mac */


/* PIE's hack to stop IE adding 3px to width when using italics
http://www.positioniseverything.net/explorer/italicbug-ie.html */
/* \*/
* html .clearfix {
 overflow: hidden;
 o\verflow: visible;
 width: 100%;
 w\idth: auto;
 he\ight: 1%;
}
* html .contentbox{
 overflow: hidden;
 o\verflow: visible;
 width: 100%;
 w\idth: auto;
 he\ight: 1%;
}
/* */


/* Gilder Levin Ryznar Jacoubsen Image Replacement Version 1 */
/* http://www.ryznardesign.com/web_coding/image_replacement/ */

/* General IR statements */

	.replace { 
		position: relative;
		overflow: hidden;
		margin: 0;
		padding: 0;
		font-size: 1.2em; 	/* Choose a 
         font-size here that will keep 
         the headline small enough to fit
						   completely under the span. */
		}
		
	.replace em {
		display: block;
		position: absolute;
		top: 0; 
/*
left: 0;
*/
		z-index: 1; 		/* for opera5 (?) and o6/mac */
		}


/* General IR statements for IE5.x mac only */

* html>body	.replace { 
		position: static;
		overflow: visible;
		font-size: 10px;
         /* Since overflow: hidden doesn't
						   work with ie5.x/mac, we choose a
						   font-size here that will keep
						   the headline small enough to fit
						   completely under the span.*/
  }
* html>body	.replace em  { 
		position: static;
  }
* html>body	.replace a {
		text-decoration: none; /* ie5.0-5.1.x/mac 
         must have this value or the underline
						   shows through the image. */
  }
