* {
margin: 0em; 
padding: 0em; 
}
body {
font-family: "trebuchet ms", arial, sans-serif; 
min-width: 1200px;
background-color:#030303;
background-repeat: no repeat;
background-image:url('');
background-image:width="41" height="41" border="0":

background-position:;
}
#main-container {
margin: 1em auto; 
width: 920px;
text-align:center;
}
h1 {
font-size: 0.9em; 
color: #FF0000; 
font-weight: normal; 
letter-spacing: 0.1em; 
text-align: center; 
margin-bottom: 1em; 
}
h2{
color:red;
}
p{
color:#F8F8FF;
}
p.one 
{
background-image:url('http://cnyparty.com/CNY-Party-LightShowAnimation.gif');
text-indent:30px;
text-style:"Time New Roman";
}
p.new {text-decoration:blink;
}
p.bro {text-decoration:blink;
}
p.tt {text-decoration:blink;
}
li {
list-style-type: none; 
display: inline; 
}
a {color: #F4F4F4; 
font-size: 1em; 
letter-spacing: 0.1em;}

a:link {color:#BBFFFF;}
a:visited {color:#8B2500;}
a:hover{color:#fff;}
}
#nav {
width: 70px; 
margin: 2em auto; 
}
div#footer {
margin-top:1em;
font-size: 70%; 
color: #777; 
letter-spacing: 0.3em; 
text-align:center; 
padding: 1em; 
background-image: url('');
background-position:20% 0%;
background-repeat: no-repeat;
}
.banner {
padding-top: 6px;
padding-bottom: 6px;

}
table,td,th
{
border-style:solid;
border-width:1px;
font-weight: normal; 
letter-spacing: 0.1em; 
text-align: center; 
margin-bottom: 0em; 
background-color:#282828;
}
table
{
width:100%;
}
th
{
height:50px;
}

#tuneBar {
  width : 160px;
  margin-right: 5px;
  margin-left: 5px;
  padding-top : 4px;
  padding-right : 4px;
  padding-left : 4px;
  padding-bottom : 0px;
}
#pageflip {
	position: relative;
}
#pageflip img {
	width: 50px; height: 52px;
	z-index: 99;
	position: absolute;
	right: 0; top: 0;
	-ms-interpolation-mode: bicubic;
}
#pageflip .msg_block {
	width: 50px; height: 50px;
	position: absolute;
	z-index: 50;
	right: 0; top: 0;
	background: url(subscribe.png) no-repeat right top;
	text-indent: -9999px;
}
$("#pageflip").hover(function() { //On hover...
	$("#pageflip img , .msg_block").stop()
		.animate({ //Animate and expand the image and the msg_block (Width + height)
			width: '307px',
			height: '319px'
		}, 500);
	} , function() {
	$("#pageflip img").stop() //On hover out, go back to original size 50x52
		.animate({
			width: '50px',
			height: '52px'
		}, 220);
	$(".msg_block").stop() //On hover out, go back to original size 50x50
		.animate({
			width: '50px',
			height: '50px'
		}, 200); //Note this one retracts a bit faster (to prevent glitching in IE)
});