/*
+----------------------------------------------+
|                                              |
|          ULTIMATE IMAGE REPLACEMENT          |
|          Harry Roberts                       |
|          http://csswizardry.com              |
|                                              |
+----------------------------------------------+


For image replacement styles, see the end of the file
*/



/*YAHOO! RESET*/
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,textarea,p,blockquote,th,td {  
	margin:0; 
	padding:0; 
} 
table { 
	border-collapse:collapse; 
	border-spacing:0; 
} 
fieldset,img {  
	border:0; 
} 
address,caption,cite,code,dfn,em,strong,th,var { 
	font-style:normal; 
	font-weight:normal; 
} 
ol,ul { 
	list-style:none; 
} 
caption,th { 
	text-align:left; 
} 
h1,h2,h3,h4,h5,h6 { 
	font-size:100%; 
	font-weight:normal; 
} 
q:before,q:after { 
	content:''; 
} 
abbr,acronym {
	border:0; 
}
/*---------- END RESET ----------*/


/*MAIN STYLES
-------------------------------------------------------------------------------------------------*/
html{
	font-size:16px;
}
body{
	font-size:62.5%;
	font-family:Georgia, "Times New Roman", Times, serif;
	background:#fff;
}
#wrapper{
	width:95%;
	padding:1em;
	margin:0 auto;
}
#footer{
	clear:both;
}
/*TYPOGRAPHICAL STYLES
-------------------------------------------------------------------------------------------------*/
h1,h2,h3,h4,h5,h6{
	font-family:Helvetica, Arial, Verdana, sans-serif;
}
h1{
	font-size:2.4em;
	line-height:1.5em;
	margin-bottom:0.75em;
}
h2{
	font-size:2em;
	line-height:1.8em;
	margin-bottom:0.9em;
}
h3{
	font-size:1.8em;
	line-height:1em;
	margin-bottom:1em;
}
h4{
	font-size:1.5em;
	line-height:1.2em;
	margin-bottom:1.2em;
	font-weight:bold;
}
p{
	font-size:1.6em;
	line-height:1.5em;
	margin-bottom:1.125em;
}
a{
	color:#ed1c24;
}
a:hover{
	text-decoration:none;
}
a:visited{
	color:#ff6a70;
}
abbr{
	color:#ed1c24;
	border-bottom:1px dotted #ed1c24;
	cursor:help;
}
pre{
	background:#F5F5F5;
	border:1px solid #e4e4e4;
	font-size:1.2em;
	padding:0.83333333333333333333333333333333em;
	overflow:auto;
	margin-bottom:1.5em;
}
code{
	line-height:1em;
}
a[href^="http://"]:after{
	content:" (" attr(href) ")";
	font-size:90%;
}
/*IMAGE STYLES
-------------------------------------------------------------------------------------------------*/
/*--- Gilder Levin Method ---*/
h2.gilder-levin-replaced{
	font-size:10px;
}
h2.gilder-levin-replaced a{
	position:relative;
	width:25em;
	height:15em;
	display:block;
}
h2.gilder-levin-replaced a span{
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	background:url(images/image.gif) top left no-repeat;
	cursor:pointer;
}


/*--- My Method (the good stuff) ---*/
h2.my-replaced{
	font-size:10px;
}
h2.my-replaced a{
	position:relative;
	width:25em;
	height:15em;
	display:block;
}
h2.my-replaced a span{
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	background:url(images/image.gif) top left no-repeat;
	cursor:pointer;
}
h2.my-replaced a span img{
	display:block;
}