/**
 * The basic core styles for XHTML elements.  This file gets imported in
 * editor.css to ensure the iCM editor gives an accurate representation
 * of a sites styles.
 *
 * It's important to define padding and margins on core XHTML elements to
 * ensure consistency across browsers.  Also ensure that absolute units are
 * only used where appropriate (i.e. percentage sizes for fonts and em units
 * for margins/padding).
 *
 * Start off by removing padding and margins on ALL elements (by using the
 * asterisk - * - operator).
 */
* {
	padding: 0;
	margin: 0;
}

/**
 * Now add back on a margin by default to all "block" elements
 */
h1, h2, h3, h4, h5, h6, p, blockquote, form, label, ul, ol, dl, fieldset, address {
	margin-top: 0.5em;
	margin-bottom: 0.5em;
}

/**
 * Now start defining specifics such as fonts and sizes.  Everything inherits
 * from the body so only need to specify the font details once.
 */
html {
/**	height: 100; **/
}

body {
	height: 100%;
	background: #ffffff;
	color: #000000;
	font-family: Arial,Verdana,Helvetica,Sans-Serif;
	font-size : 90%;
	margin : 0 7px 0 7px;
	padding : 0;
}

h1 {
	font-size: 2.0em;
	font-weight: normal;
}

h2 {
	font-size: 1.6em;
	font-weight: normal;
}

h3 {
	font-size: 1.4em;
	font-weight: normal;
}

h4 {
	font-size: 1.2em;
	font-weight: normal;
}

h5 {
	background: #eaeaea;
	font-size: 1.2em;
	font-weight: normal;
	line-height: 2.2em;
	margin: 0 0 .8em;
	padding: 0 0 0 10px;
}

h6 {
	font-size: 1.0em;
	font-weight: bold;
}

address {
	font-style: normal;
}

ol, ul, dd {
	padding-left: 2em;
}

a:link, a:visited  {
	color: #000000;
	text-decoration: none;
}

a:hover, a:focus, a:active {
	color: #000000;
	text-decoration: underline;
}

img {
	border: none;
}

/**
 * For 'textarea', 'input', 'select', 'option' and 'table' tags the font
 * family is not inherited from the <body> tag and so has to be re-stated.
 */
textarea, input, select, option{
	font-size: 100%;
	font-family: Arial,Verdana,Helvetica,Sans-Serif
}

fieldset {
	border: none;
	margin: 0;
	padding: 0;
}
