/*
Default browser styles reset + common css rules
Don't forget to set a foreground and background color on the 'html' or 'body' element!
*/

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, /*sub, sup, */tt,var, dd, dl, dt, li, ol, ul, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
	font-weight: inherit;
	font-style: inherit;
	font-size: 100%;
	line-height: 1em;	/*yes, em, not unitless*/
	font-family: inherit;
	text-align: left;
	vertical-align: baseline;
}
a img,
:link img,
:visited img {
	border: 0;
}
:link,
:visited {
	text-decoration: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
caption,
th { 
	text-align: left; 
}
ol,
ul {
	list-style: none;
}
q:before,
q:after,
blockquote:before,
blockquote:after {
	content: "";
}
h1, h2, h3, h4, h5, h6 {
	margin-bottom: 0;
}
h1, h2, h3, h4, h5, h6, p {
	position: relative;
}
p {
	margin: 0 0 1em;
}
legend,
hr,
.hideit {
	display: none;
}
.clearit {
	clear: both;
	height: 1px;
	overflow: hidden;
}
.centerit {
	text-align: center;
}

/*clearfix
----------------------------------------------------*/

.clearfix:after {
    content: "."; 
    display: block; 
    height: 0; 
    clear: both; 
    visibility: hidden;
}
.clearfix {display: inline-block;}
/* Hides from IE-mac \*/
* html .clearfix {height: 1%;}
.clearfix {display: block;}
/* End hide from IE-mac */

/*Generic Levin image replacement -  http://levin.grundeis.net/files/20030809/alternatefir.html
----------------------------------------------------*/

.replace { 
	position:relative; 
	margin:0px; 
	padding:0px; 
	/* hide overflow:hidden from IE5/Mac */ 
	/* \*/ overflow: hidden; /* */ 
} 
.replace span {
	display:block; 
	position:absolute; 
	top:0px; 
	left:0px; 
	z-index:1; /*for Opera 5 and 6*/ 
}

/*Example HTML - all elements that require replacement use the .replace class then set the rule for the specific image and dimensions and associate with the elements ID.

<h1 id="myh1" class="replace" >Headline<span></span></h1> 

the add the CSS:
#myh1, #myh1 span { 
	height:100px; 
	width:300px; 
	background-image: url(head.png); 
} 
----------------------------------------------------*/