@charset "utf-8";
/* CSS Document */

.body_img{
	/* Set rules to fill background */
        min-height: 100%;
        min-width: 2000px;
        /* Set up proportionate scaling */
        width: 100%;
        height: auto;
        /* Set up positioning */
        position: fixed;
        top:0;
        left: 0;
		z-index:1;
}
@media screen and (max-width: 2000px) { /* Specific to this particular image */
	.body_img {
		left: 50%;
		margin-left: -1000px;   /* 50% */
	}
}

.view_link{
	position:absolute;
	bottom:60px;
	right:100px;
	font-family:"Lucida Sans Unicode", "Lucida Grande", sans-serif;
	font-size:14px;
	color:#999;
	z-index:10;
}
.view_link a{
	color:#999;
	text-decoration:none;
}
.view_link a:hover{
	text-decoration:underline;
	color:#FFF;
}