/* - - - - - - - - - - - - - - - - - - - - -

Title : Default CSS for Lightbox Gone Wild
Author : Kevin Hale
URL : http://particletree.com/features/lightbox-gone-wild/

Created : January 13, 2006
Modified : February 1, 2006

- - - - - - - - - - - - - - - - - - - - - */

/* ----- CSS ----- */


*{
	margin:0;
	padding:0;
}
body{
	background-color: #fff;
	height:100%;
	vertical-align:bottom;
	font-family:Arial, Helvetica, sans-serif;
}


img{
	border:none !important;
}

a img{
	border:none !important;
}


#splash {
	position:absolute;
	top: 50%;
	left: 50%;
	width:50em;
	height:16em;
	margin-top: -8em; /*set to a negative number 1/2 of your height*/
	margin-left: -25em; /*set to a negative number 1/2 of your width*/
}
#nav {
	position:absolute;
	top: 50%;
	left: 50%;
	width:50em;
	height:16em;
	margin-top: 8em; /*set to a negative number 1/2 of your height*/
	margin-left: -25em; /*set to a negative number 1/2 of your width*/
}