/* The stylesheet which applies to all media */

/* remove the inconsistent (among browsers) default ul,ol padding or margin  */
/* the default spacing on headings does not match nor align with 
   normal interline spacing at all, so let's get rid of it. */
/* zero out the spacing around pre, form, body, html, p, blockquote as well */
/* form elements are oddly inconsistent, and not quite CSS emulatable. */
/*  nonetheless strip their margin and padding as well */
* {
	padding:0;
	margin:0;
}

/* centred content */
.contcent {
  max-width: 576px;
  margin: auto; 
} /* mobile screen width? */

/* Alternatively
html, body, div, h1, h3, h3, h4, h5, h6, ul, ol, dl, li, dt, dd, p, blockquote, pre, form, fieldset, table, th, td { margin: 0; padding: 0; } */

body {
	font-family: Arial,Verdana,Tahoma,sans-serif;
	font-size: 83%;
	padding:0; margin:0;
	color: #575757;
	background-color: white;
	position: relative;  /* fixes IE6 resize bug */
	top:0; right:0; bottom:0; left:0;
	width: 100%;
	/* background-image: url(../img/border_02.gif);
	background-repeat: repeat-y;
	background-position: 50% 100%; */
}

/* impose consistent font-sizes and margins on any block level elements */
h1, h2, h3, h4, h5, h6, p, pre, code, blockquote, form, ul, ol, dl, fieldset, address {
	margin: 0.2em 0 0.8em 0;
	font-size: 1em;
	/* background-color:#FFFFFF; */
}

h1 { font-size:167%; padding-left: 7px; }

h2 {
	font-size:130%;
	padding-left: 7px;
}

h3 { font-size:120%; padding-left: 7px;}

h4 { font-size:110%; padding-left: 7px;}

h5 { font-size:105%; padding-left: 7px; }

h6 { font-size:100%; padding-left: 7px;}

li, dd { 
	margin-left:2em;
}
		
dl {padding-left: 7px}
p {
	line-height: 130%;
	padding-right: 7px;
	padding-left: 7px;
}
			
blockquote {
	border: 1px solid silver;
	background: #eee;
	margin: 4px;
	padding: 4px 12px;
}

a:link, a:active, a:visited {
	color: #8c454a;
	text-decoration: none;
	/* border-bottom: 1px solid slateblue; */
	border-bottom: none;
	font-weight: bold;
}
		
a:hover {
	color: #8c454a;
	text-decoration: none;
	border-bottom: 1px dotted;
	font-weight: bold;
}

img { 
	border: none;
	margin: 0;
	padding: 4px 10px 4px 10px; 
}

a img { 
	border: none;
	margin: 0;
	padding: 0;
} /* no borders on linked images */ 


pre {
	border: 1px dashed #036;
	background: #eee;
	padding: 6px;
	font-family: ProFont, Monaco, Courier, "Andale Mono", monotype;
	font-size: 90%;
	white-space: -moz-pre-wrap; /* Mozilla, supported since 1999 */
	white-space: -pre-wrap; /* Opera 4 - 6 */
	white-space: -o-pre-wrap; /* Opera 7 */
	white-space: pre-wrap; /* CSS3 - Text module (Candidate Recommendation) http://www.w3.org/TR/css3-text/#white-space */
	word-wrap: break-word; /* IE 5.5+ */
}
		
input[type="text"], input[type="password"], textarea {
	font-family: ProFont, Monaco, Courier, "Andale Mono", monotype;
	font-size: 90%;
} 
		
/* tables */

table {
	width: 99%; /* less than 100% - space for borders ? IE bug in columns */
	clear: none;
	white-space: normal;
	border-top: 1px solid #ccc;
	border-left: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
	color:#333;
	background-color: #fff;
	padding: 0;
	margin: 0;
}

table th {
	background-color: #e2e2e2;
	border-top: 1px solid #fff;
	border-left: 1px solid #fff;
	border-right: 1px solid #003d4c;
	border-bottom: 1px solid #003d4c;
	/* text-align: center; */
	padding: 1px 4px;
}
	
table tr td {
	border-right: 1px solid #ddd;
	border-bottom: 1px solid #ddd;
	padding: 4px 4px;
	vertical-align: top;
	/* text-align: center; */
	margin: 0;
}
table tr.altRow td {
	background-color: #f4f4f4;
}

