/* BEGIN GLOBAL CSS */

/* remove default browser styles */
* {
	margin: 0px; /* but 'padding: 0px;' here would prevent 'panel' from cenetering in some browsers */
	border: none; /* that means you, images-with-links!!! */
	outline: none; /* removes the dotted-outline in Firefox */
	line-height: 0px; /* generally tightens things up */
	font-size: 0px; /* generally tightens things up */
	font-size: 18px; /* !!!! development only -- lets us see PHP notices!!!! */
	font-weight: normal;
	font-style: normal; 
	color: #000; /* includes links */
	text-decoration:none;
}
div, p, h1, h2, h3, h4, h5, h6, br {
	padding: 0px;
}
/* stretch content vertically to fit window (!!!! note, dont include td here, as IE mucks up the footer!! !!!!) */
html, body, table {
	height: 100%;
}
html, body {
	background-image: url(../images/bkgnd.jpg);
}
/* END GLOBAL CSS */


/* BEGIN BLOCK-ELEMENT STYLES */
p, h1, h2, h3, h4, h5, h6, br, p *, h1 *, h2 *, h3 *, h4 *, h5 *, h6 * {
	font-family: "Lucida Console", Monaco, monospaced; /* fonts nearest to the storm brand's 'letter gothic' -- note that putting "Letter Gothic Std" or  LetterGothic may produce unexpected results :) */
	font-size: 9pt; /* using 'pt' rather than 'px' leads to more similar-looking text accross platforms */
	line-height: 11pt; /* allows text-background-colours to connect without gaps, and without overlapping text on previous lines */
}

hr {
	border-top: solid 1px #000;
	margin-top: 10px;
}

a {
	text-decoration:underline;
	font-style: italic; 
}
p a:hover { 
	background-color:#f30 !important; 
}

h1 { /* headline */
	display: none; /* hidden by default */
}
h4, h4 * { /* page-sell */
	font-size: 10pt;
	color: #f30;
}
h5 { /* x-head */
	font-size: 10pt;
	color: #f30;
	font-weight: normal;
}
h6, h6 *, h6 * * { /* byline, smallprint */
	font-size: 7pt;
	line-height: 9pt;
}
/* END BLOCK-ELEMENT STYLES */


/* BEGIN INLINE-ELEMENT STYLES */
b, b i, strong, strong i { 
	font-weight: bold;
}
em, em i {
	font-style: italic; 
}

i { /* '<em>' should be used to italicise, while '<i>' is now used to contain individual words (so that each can be given a background-color). Note that this is overriddn in 'ie_fix.css' */
/* 		position: relative; */
/* 	left: -4pt; */
}
/* END INLINE-ELEMENT STYLES */
