@charset "UTF-8";
body {
	font: 100%/1.4 Verdana, Arial, Helvetica, sans-serif;
	background-color: #000;
	margin: 0;
	padding: 0;
	color: #fff;
	/* background-image: url(img/background.png); */
	background-repeat: repeat;	
}

/* ~~ Element/tag selectors ~~ */
ul, ol, dl { /* Due to variations between browsers, it's best practices to zero padding and margin on lists. For consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain. Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */
	padding: 0;
	margin: 0;
}
h1, h2, h3, h4, h5, h6, p {
	margin-top: 0;	 /* removing the top margin gets around an issue where margins can escape from their containing div. The remaining bottom margin will hold it away from any elements that follow. */
	padding-right: 20px;
	padding-left: 25px; /* adding the padding to the sides of the elements within the divs, instead of the divs themselves, gets rid of any box model math. A nested div with side padding can also be used as an alternate method. */
}
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;
}

/* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
a:link {
	color: #42413C;
	text-decoration: underline; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
}
a:visited {
	color: #6E6C64;
	text-decoration: underline;
}
a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
	text-decoration: none;
}

/* ~~ This fixed width container surrounds all other divs ~~ */
.background-container {
	width: 1272px;
	background-image: url(img/1272-background.jpg);
	background-position: left -7px;
	background-repeat: no-repeat;
	min-height: 1023px;
	margin: 0px auto;
}

.container {
	width: 1200px;
	/*background-color: rgba(0,0,0,.5); */
	
	margin: 0px auto; /* the auto value on the sides, coupled with the width, centers the layout */
}

/* ~~ The header is not given a width. It will extend the full width of your layout. It contains an image placeholder that should be replaced with your own linked logo. ~~ */
.header {

	background-image: url(img/top-1200.png);
	background-repeat: no-repeat;
	min-height: 336px;
	background-size: contain;
	text-align:center;
}

#logo {
	margin: 0 auto;
	margin-Left: 70px;
	margin-top: 20px;
}

.sidebar1 {
	float: left;
	width: 250px;
	height: 482px;
	background-image: url(img/left-250.png);
	background-repeat: no-repeat;
}
.content {
	padding: 0px 0px;
	width: 700px;
	float: left;
	overflow: hidden;
	height: 482px;
	background-image: url(img/home-background.jpg);
	background-repeat: no-repeat;
	background-position: -5px -10px;
}


.cc-scroll {
	overflow-y: scroll;
	overflow-x: hidden;
}

.content-inner {
	padding-top: 10px;
	padding-left: 25px;	
	padding-right: 15px;
}

.home {
	background-image: url(img/back-enemies.png);
	width: 700px;
	height: 483px;
	float: left;
	overflow: hidden;
	background-repeat: no-repeat;
	background-position: 0px 10px;
}

.content-inner p, .content-inner h1, .content-inner h2 {
	margin-left: 0;
	padding-left: 0;	
}

.sidebar2 {
	float: left;
	width: 239px;
	height: 482px;
	background-image: url(img/right-239.png);
	background-repeat: no-repeat;
}

/* ~~ This grouped selector gives the lists in the .content area space ~~ */
.content ul, .content ol { 
	padding: 0 15px 15px 40px; /* this padding mirrors the right padding in the headings and paragraph rule above. Padding was placed on the bottom for space between other elements on the lists and on the left to create the indention. These may be adjusted as you wish. */
}

/* ~~ The navigation list styles (can be removed if you choose to use a premade flyout menu like Spry) ~~ */
ul.credits {
	list-style: none; /* this removes the list marker */
	position: relative;
 	left: 385px;
 	top: -460px;
 	z-index: 9996;
    margin: 0px 0px 0px 0;
	
}

ul.credits li {
	margin-bottom:15px;	
}

ul.homeButtons {
	list-style: none; /* this removes the list marker */
	position: relative;
 	margin: 20px auto 0px;
	
}

ul.homeButtons li {
	float:left;
	margin-right: 5px;
	margin-left: 0px;
}


.paypal {
	position: relative;
 	left: 560px;
 	top: -52px;
 	z-index: 9996;
	float:left;
}

ul.partner-buttons {
   	list-style:none; 
	margin: 0; 
	padding: 0;
	
}

ul.partner-buttons li {
   	margin-bottom: 35px;
}

ul.social {
	list-style: none; /* this removes the list marker */
	position: relative;
 	right: 65px;
 	top: -20px;
 	z-index: 9996;
    margin: 0px 0px 0px 0;
  	opacity: .9;
	
}

ul.buttons-left {
	list-style: none; /* this removes the list marker */
	margin: 0;
	padding: 0;
	position: absolute;
	left: 240px;
	top: -2px;
	
}

ul.buttons-left li a {
	margin-right: 5px;
	float: left;
}

ul.buttons-right {
	list-style: none; /* this removes the list marker */
	margin: 0;
	padding: 0;
	position: absolute;
	right: 230px;
	top: -2px;
	
}

ul.buttons-right li a {
	margin-right: 5px;
	float: left;
}

ul.buttons-left li.pink, ul.buttons-right li.pink  {
	width: 90px;
	height: 53px;
	background-image: url(img/button-pink.png);
	background-repeat: no-repeat;
	background-position: left top;
	float: left;
}

ul.buttons-left li.purple, ul.buttons-right li.purple  {
	width: 90px;
	height: 53px;
	background-image: url(img/button-purple.png);
	background-repeat: no-repeat;
	background-position: left top;
	float: left;
}

ul.buttons-left li.pink:hover, ul.buttons-right li.pink:hover {
	width: 90px;
	height: 53px;
	background-image: url(img/button-pink-down.png);
	background-repeat: no-repeat;
	background-position: left top;
}

ul.buttons-left li.purple:hover, ul.buttons-right li.purple:hover {
	width: 90px;
	height: 53px;
	background-image: url(img/button-pink-down.png);
	background-repeat: no-repeat;
	background-position: left top;
}

ul.social li {
	margin: 220px 10px 0px 0px;
	float: right;
}
ul.social a, ul.social a:visited { /* grouping these selectors makes sure that your links retain their button look even after being visited */
	padding: 0;
	float: right;
	text-decoration: none;
	
	/* border: 1px dashed #333; */
}

ul.social a:hover, ul.social a:active, ul.social a:focus { /* this changes the background and text color for both mouse and keyboard navigators */
	opacity: .8;
}


/* ~~ The footer styles ~~ */
.footer {
	padding: 10px 0 5px 0;
	background-color: rgb(0,0,0);
	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 */
	/* [disabled]background-image: url(img/background.png); */
	/* background-image: url(img/back-bottom-1200.png); */
	background-image: url(img/back-bottom-btn2-1200.png);
	background-repeat: no-repeat;
	min-height: 199px;
	background-size: contain;
	text-align: center;
}

.footer p {
	color: #fff;
	font-size: 14px;
}

/* ~~ Miscellaneous float/clear classes ~~ */
.fltrt {  /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page. The floated element must precede the element it should be next to on the page. */
	float: left;
	margin-right: 8px;
}
.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:0;
	font-size: 1px;
	line-height: 0px;
}