@charset "utf-8";
body  {
	font: 12px Verdana, Arial, Helvetica, sans-serif;
	background: #111;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #8B9298;
}

.cwrite {
	font-size: 10px;
	text-align: center;
	color:#666666;
}

img {border: 0;}

:focus { outline:none; }

a:link {
	color: #5588AA;
	text-decoration: none;
}
a:visited {
	color: #5588AA;
	text-decoration: none;
}
a:hover {
	text-decoration: underline;
	color: #0099FF;
}
a:active {
	text-decoration: none;
	color: #666666;
}

/*LAYOUT*/
.twoColFixRtHdr #container { 
	width: 900px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #000;
	margin: 10px auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #333;
	padding-top: 2px;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
.twoColFixRtHdr #header { 
/*	background: url(images/header.jpg) ;*/
	height: 132px;
	padding: 0px;  
	margin: 0;

} 

.twoColFixRtHdr #header_menu { 
	background: url(images/header.jpg) ;
	height: 132px;
	padding: 0px;  
	margin: 0;
} 

.twoColFixRtHdr #banner {
/*	background: url(images/banner.jpg) no-repeat 90px;*/
	text-align:center;
	/*height: 400px;*/
	padding: 0px;
	margin: 0;
} 


.twoColFixRtHdr #infoDump {
/*	padding: 2em 80px 2em 80px;*/
	padding: 0 0 0 1em;
	text-align:justify;
	line-height: 1.5em;
} 

.twoColFixRtHdr #infoDump em {
	color: #75b3f2;
	font-weight: bold;
} 

.twoColFixRtHdr #menu {
	margin: 0;
	padding: 0;
	}

.twoColFixRtHdr #header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
.twoColFixRtHdr #sidebar1 {
	float: right; /* since this element is floated, a width must be given */
	width: 200px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	background: #000; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px 10px;
}
.twoColFixRtHdr #mainContent { 
	margin: 0 0px 0px 0px; /* the right margin on this div element creates the column down the right side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 0px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background:#000;
/*	float: left;
	width: 620px;*/
	text-align: center;
} 


.twoColFixRtHdr #mainContent ul { 
	text-align:left;
	line-height: 1.5em;
	font-size: 120%;
}

.twoColFixRtHdr #mainContent li { 
	padding: .5em 0 .5em 0;
}


.twoColFixRtHdr #mainContent h1{
	margin: 0 0px 0px 0px;
	text-align:center;
	font-size: 1.25em;
	color:#FFCC33;
} 

.twoColFixRtHdr #mainContent #pagehead h1{
	text-align:center;
	font-size: 1.5em;
	color:#FFCC33;
	padding: 1em 0 1em 0;
} 

/*.twoColFixRtHdr #mainContent h2{
	font-size: 150%;
	text-align: center;
	color: #FFCC33;
	margin: 0px 0px 1em 0px;
	padding: .1em;
	background: #333;
}*/

.twoColFixRtHdr #footer { 
	padding: 10px .5em 10px .5em; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#000;
	margin: 0;
} 
.twoColFixRtHdr #footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	text-align:center;
	color:#FFCC33;
	font-size: 120%;
}


.twoColFixRtHdr #footer a {
	font-weight: bold;
}

.twoColFixRtHdr #footer h2{ 
	text-align:center;
	padding: 0;
	margin: 0;
} 


.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 */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}




/*GAME PANEL SYTLES*/
.stepcarousel{
	position: relative; /*leave this value alone*/
	border: 1px solid #333;
	overflow: scroll; /*leave this value alone*/
	width: 490px; /*Width of Carousel Viewer itself*/
	height: 330px; /*Height should enough to fit largest content's height*/
	background:#000000;
}

.stepcarousel .belt{
	position: absolute; /*leave this value alone*/
	left: 0;
	top: 0;
}

.stepcarousel .panel{
	float: left; /*leave this value alone*/
	overflow: hidden; /*clip content that go outside dimensions of holding panel DIV*/
	margin: 5px; /*margin around each panel*/
	width: 480px; /*Width of each panel holding each content. If removed, widths should be individually defined on each content DIV then. */
}


.stepcarousel .thumb{
	padding: 10px;
}

.stepcarousel_h{
	position: relative; /*leave this value alone*/
	border: 1px solid #333;
	overflow: scroll; /*leave this value alone*/
	width: 330px; /*Width of Carousel Viewer itself*/
	height: 490px; /*Height should enough to fit largest content's height*/
	background:#000000;
}

.stepcarousel_h .belt{
	position: absolute; /*leave this value alone*/
	left: 0;
	top: 0;
}

.stepcarousel_h .panel{
	float: left; /*leave this value alone*/
	overflow: hidden; /*clip content that go outside dimensions of holding panel DIV*/
	margin: 5px; /*margin around each panel*/
	width: 320px; /*Width of each panel holding each content. If removed, widths should be individually defined on each content DIV then. */
}


.stepcarousel_h .thumb{
	padding: 10px;
}


.divider {
	border-top: 1px solid #111;
	padding: 0px;
	margin: 10px 0 10px 0;
	}	

.spacer {
	margin: 60px 1em 15px 1em;
	color: #FFCC33;
	font-size: 120%;
	font-family:Arial, Helvetica, sans-serif;
	font-weight: bold;
	font-style: italic;
	text-transform:uppercase;
	}
	
.spacer a{
	color: #FF3333;
	text-decoration: none;

	}
	
.spacer a:hover {
	color: #FFCC33;

	}
	
.appstore	{
	border-top: 1px solid #333;
	border-bottom: 1px solid #333;
	margin: 0 10px 15px 10px;
	}
	
#reviews	{
	text-align: center;
	}
	
.faq	{
	margin: 1em;
	padding: 1em;
	border:1px solid #222;
	color: #8B9298;
	background-color: #111;
}

.faq h1	{
	font-size: 150%;
	text-align: center;
	color: #FFCC33;
	margin: 0px 0px 1em 0px;
	padding: .1em;
	background: #333;
}

.faq h2	{
	color: #75b3f2;
	margin: 1em 0 .5em 0;
	font-weight: normal;
	font-style:italic;
	font-size: 100%;
	text-align: left;
}

.faq p, ul, ol	{
	line-height: 1.5em;
	font-size: 100%;
}

.faq p	{
	text-align:justify;
	font-size: 100%;
}

.faq blockquote	{
	color:#669933;
	font-family: "Courier New", Courier, monospace;
	font-size: 100%;
}

textarea, input	{
	background-color: #ccc;
	font-family:Arial, Helvetica, sans-serif;
	font-size: 12px;
	color:#333333;
}



option {
	background-color: #ccc;
	color:#333333;
}

select {
	background-color: #ccc;
	color: #0066CC;
}


.moregames	{
	margin: 0;
	font-family: Helvetica, Arial, sans-serif;
	font-size: 10px;
	color:#666666;
	}
	
.game_port	{
	width: 320px;
	height: 100px;
	padding: 0;
	margin: 2px 0 3px 0;
	background:#333333;
	}
	
.game_land	{
	width: 480px;
	}
	

/*
#splash1 a span {
	display: none;
	width: 209px;
	height: 77px;
}

#splash1 a:hover {
	position: relative;
}

#splash1 a:hover span {
	display: block;
   	position: absolute;
}

#splash1 a:hover span {
	top: -122px; left: 115px;
}


#splash2 a span {
	display: none;
	width: 209px;
	height: 77px;
}

#splash2 a:hover {
	position: relative;
}

#splash2 a:hover span {
	display: block;
   	position: absolute;
}

#splash2 a:hover span {
	top: -70px; left: 114px;
}
*/

#nt_blurb {margin: 0; padding: 0;}

#nt_blurb p{
	line-height: 1.5em;
	text-align:justify;
	font-size: 120%;
}

#nt_blurb ul li{
	line-height: 1.5em;
	color:#3C3;
	font-size: 125%;
}

#nt_blurb ul {
	padding: 2em 0 2em 6em;
}


#boh	{
	width:900px;
	height:456px;
	/*background:url(images/doublesplash/va_bohsplash.jpg);*/
}

#boh_info	{
	font-size:12pt;
	margin:0;
	padding: 1em 2em 1em 2em;
	height:750px;
	background-image: url(images/boh_bg_bottom.jpg);
	background-repeat: no-repeat;
	background-position: bottom;
}

#boh_info h1{
	font-family:Georgia, "Times New Roman", Times, serif;
	color:#fffe00;
	font-size:120%;
	font-style:italic;
	padding:0 0 .25em 0;
	text-shadow: 0px 0px 5px #ff4300, 0px 0px 15px #ff4300;
	
}

#boh_info h4{
	font-size:100%;
	padding: 0 8em 0 8em;
	color:#666;
	font-weight:normal;
}

#boh_info ul{
	margin: 1em 175px 0 175px;
	padding: 1em 2em 1em 2em;
	color:#1780FF;
	border-top: 1px solid #9a4d0c;
/*	border-bottom: 1px solid #000;*/
/*	border-left: 1px solid #000;*/ /*seems to be a border bug, left and right are drawing no matter what.  making them black.*/
/*	border-right: 1px solid #000;*/
	-webkit-border-radius: 40px;
	-moz-border-radius: 40px;
	border-radius: 40px;
	background-color: rgba(0,0,0,.8);
	filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#cc000000', endColorstr='#cc000000'); /* IE */

}

#boh_info ul li{
	text-align:justify;
	font-size:75%;
	font-family:Georgia, "Times New Roman", Times, serif;
	font-weight:normal;
	text-shadow: 0px 0px 3px #0072ff;
	line-height:1.35em;
	padding: 0 0 .5em 0;
}

#boh_info ul li em{
	font-style:normal;
	color:#3993ff;
	text-shadow: 0px 0px 3px #0072ff, 0px 0px 10px #0072ff;

}
