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

body {
	background-color: #949393;
	margin: 0px;
	padding: 0px;
	background-image: url(/bg.jpg);
	background-repeat: repeat-y;
	background-attachment: fixed;
	background-position: center;
	font-family:Arial, Helvetica, sans-serif;
	color: #d8d8d8;
}

/* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
a:link {
	color: #d8d8d8;
	text-decoration: none; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
}

a:visited {color: #d8d8d8;}
a:hover {color: #ffffff; background-color: #0000fe}

a img { /* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */
	border: none;
}

.gallery{
	text-align: center;
}

/* ~~this fixed width container surrounds the other divs~~ */
.container {
	width: 960px;
	background: #000000;
    margin: 20px auto 0px; /* the auto value on the sides, coupled with the width, centers the layout */
}

.divcenter{
	text-align: center;
}

.header {
	background: #000000;
	width: 960px;
	text-align: center;
}

.nav {
	background: #000000;
	width: 960px;
	text-align: center;
}

/* ~~ The footer ~~ */
.footer {
	text-align: center;
	padding: 20px auto 0px;
	position: relative;/* this gives IE6 hasLayout to properly clear */
	clear: both; /* this clear property forces the .container to understand where the columns end and contain them */
}

.clearfloat { /* this class can be placed on a <br /> or empty div as the final element following the last floated div (within the #container) if the #footer is removed or taken out of the #container */
	clear:both;
	height: 0px;
	font-size: 1px;
	line-height: 0px;
}