/*
INTRO STYLE TAGS
*/

body {
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #FFFFFF;
	font-family: Helvetica, Arial, Helvetica, sans-serif;
	font-size: 100%;
	background-color: #000000;
}

#container {
	background: #000000;
	margin: 0 auto;
	text-align: left; /* this overrides the text-align: center on the body element. */
	width: 720px;
	height: 480px;
	z-index: 1;
}
p {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #FFFFFF;
}

#needflash {
	margin: 0 auto;
	text-align: left; /* this overrides the text-align: center on the body element. */
	width: 720px;
	height: 60px;
	z-index: 10;
	overflow: hidden;
}

#skipcontainer {
	width: 90px;
	height: 50px;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	float: none;
	position: relative;
	left: 300px;
}

#skip
{
	width: 72px;
	height: 41px;
	background-image: url(../for_intro/SKIP_btn.gif);
	background-repeat: no-repeat;
	background-position: 0 0;
	position: relative;
	display:block;
	top: 5px;
}

#skip:hover
{
	background-position: 0 -41px;
}

#skip span
{ 
display: none;
 
}

