@charset "utf-8";
/* CSS Document */
html {
    background-color: #210000;
	background-image: url(images/gradback.png);
	background-repeat: repeat-x;	
    /* Height is 100%, so the body can be 100% */
    height: 100%;
}

body {
    background: url(images/innerback.jpg) no-repeat;
    background-position: top center;
    margin: 0;
    padding: 0;
    /* Height is 100%, so the tiled BG will tile all the way down
       the page, not just as far down as the page's content
       (when the content's height is less than the window's height) */
    height: 100%;
}
/*
Hackety-hack-hack...
FF2, with the above code, will only display the repeat-y image for as
    high as the window's viewport is; higher content (upon
    scrolling) will not have the bg.
This "hack" makes the tiled background work properly in FF2.
This type of "advanced selector" is not understood by IE6...dunno
 'bout IE7.
*/
a:link {
	color: #FFC;
	text-decoration: none;
}
a:visited {
	text-decoration: none;
	color: #FFC;
}
a:hover {
	text-decoration: underline;
	color: #FFC;
}
a:active {
	text-decoration: none;
	color: #FFC;
}
html>body {
    min-height: 100%;
    height: auto;
}
body,td,th {
	font-family: Georgia, Times New Roman, Times, serif;
	font-size: 16px;
	color: #000;
	font-weight: bold;
}
#holder { 
width:960px;
margin-left:auto;
margin-right:auto;
position:relative;
}
#header {
	height:120px;
	width:960px;
	position:relative;
}
#logo {
	width:305px;
	height:85px;
	position:absolute;
	top:0px;
	left:10px;
	background-repeat:no-repeat;
	background-image:url(images/log.png)
}
#content {
	width:825px;
	min-height:400px;
	position:relative;
	margin-right:80px;
	margin-left:55px;
}
#nav {
	width:563px;
	height:97px;
	position:absolute;
	top:0px;
	right:20px;
}

.thenews li {
	margin-bottom:12px;
}
#pageflip {
	position: relative;
}
#pageflip img {
	width: 70px; height: 65px;
	z-index: 99;
	position: absolute;
	right: 0; top: 0;
	-ms-interpolation-mode: bicubic;
	border:none;
}
#pageflip .msg_block {
	width: 70px; height: 65px;
	position: absolute;
	z-index: 50;
	right: 0; top: 0;
	background: url(pageear_b.jpg) no-repeat right top;
	text-indent: -9999px;
}

