@charset "utf-8";
body {
	font: 100%/1.4 Verdana, Arial, Helvetica, sans-serif;
	background-color: #FFFFFF;
	margin: 0;
	color: #000;
	padding-top: 15px;
	padding-right: 0;
	padding-bottom: 0;
	padding-left: 0;
}
/* ~~ 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: 15px;
	padding-left: 15px; /* 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. */
	color: #333;
}
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: #CC0000;
	text-decoration: underline; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
	font-weight: bold;
}
.review-content {
	font-size: 12px;
	color: #009;
}
.yellow {
	font-size: 12px;
	font-weight: bold;
	color: #FF0;
}
.green {
	color: #060;
}
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: underline;
}
/* ~~this fixed width container surrounds the other divs~~ */
.container {
	width: 1000px;
	background-color: #FFFFFF; /* the auto value on the sides, coupled with the width, centers the layout */
	margin-top: 20;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	border-right-width: 2px;
	border-right-style: solid;
	border-right-color: #990000;
	border-left-width: 2px;
	border-left-style: solid;
	border-left-color: #990000;
}
/* ~~ 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-color: #090821;
	border-radius: 5px 5px 0px 0px;
	height: 125px;
	background-image: url(images/header.gif);
	background-repeat: no-repeat;
}
.sidebar1 {
	float: left;
	width: 220px;
	background-color: #FFFFFF;
	padding-bottom: 10px;
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #CCC;
}
.content {
	width: 779px;
	float: right;
	padding-top: 10px;
	padding-right: 0;
	padding-bottom: 10px;
	padding-left: 0;
	font-size: 14px;
	background-color: #FFF;
}
.content ul, .content ol {
	color: #900;
	font-size: 12px;
	font-weight: bold;
	padding-right: 15px;
	padding-bottom: 10px;
	padding-left: 40px;
}
/* ~~ The navigation list styles (can be removed if you choose to use a premade flyout menu like Spry) ~~ */
ul.nav {
	list-style: none; /* this creates the top border for the links - all others are placed using a bottom border on the LI */
	margin-bottom: 15px; /* this creates the space between the navigation on the content below */
	font-size: 12px;
	font-weight: bold;
	color: #FFF;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #FFF;
	line-height: 40px;
}
ul.nav li {
	color: #FFF;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #FFF;
	/* [disabled]padding-left: 15px; */
}
ul.nav a, ul.nav a:visited { /* grouping these selectors makes sure that your links retain their button look even after being visited */
	display: block; /* this gives the link block properties causing it to fill the whole LI containing it. This causes the entire area to react to a mouse click. */
	width: 205px;  /*this width makes the entire button clickable for IE6. If you don't need to support IE6, it can be removed. Calculate the proper width by subtracting the padding on this link from the width of your sidebar container. */
	text-decoration: none;
	color: #C00C01;
	padding-top: 5px;
	padding-bottom: 5px;
	padding-right: 0px;
	padding-left: 15px;
	background-color: #FFF;
	border-bottom-width: thin;
	border-bottom-style: solid;
	border-bottom-color: #CCC;
}
ul.nav a:hover, ul.nav a:active, ul.nav a:focus { /* this changes the background and text color for both mouse and keyboard navigators */
	color: #900;
	background-image: url(/images/news-block-bg.jpg);
	background-repeat: repeat-x;
}/* ~~ The footer ~~ */
.footer {
	padding: 10px 0;
	background-color: #000831;
	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 */
	color: #FFF;
}
/* ~~ miscellaneous float/clear classes ~~ */
.fltrt {  /* this class can be ued 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;
}
.big-green {
	font-size: 18px;
	color: #060;
	font-weight: bold;
}
.content table {
	background-color: #FFFFFF;
	color: #006;
	font-weight: normal;
	border: 1px solid #E6E6FF;
	margin-bottom: 12px;
}
.green-bg {
	background-color: #900;
	font-size: 18px;
	color: #FFF;
    height: 28px;
    text-shadow: 1px 1px #000;
	font-weight: bold;
	background-image: url(/images/menu_bg.gif);
}
.list {
	list-style: none;
	margin-left: 25px;
	font-weight:normal;
}
.big-red {
	font-size: 18px;
	color: #900;
	font-weight: bold;
}
h1 {
	font-size: 24px;
	font-weight: bold;
	color: #900;
	font-family: "Times New Roman", Times, serif;
	text-shadow: 1px 1px 1px #CCC;
	text-align: center;
	margin-bottom: 6px;
}
.footer-content {
	color: #FFF;
}
.short-review {
	background-color: #FFECF0;
	margin: 5px;
	padding: 10px;
}
.rt-box {
	float: right;
	width: 250px;
	border: thin dashed #F3F2FF;
	margin-left: 5px;
}
.grey-box {
    background-repeat: repeat-x;
    height: auto;
    border-radius: 4px;
    border: thin solid #eaeaf9;
    margin-bottom: 8px;
    width: 98%;
    margin-left: 6px;
    font-size: 14px;
    box-shadow: 0px 4px 8px -5px #000;
}
.poker-room-headline {
	line-height: 50px;
	background-image: url(images/featured-site.jpg);
	background-repeat: repeat-x;
	color: #FFF;
	font-size: 14px;
	padding-left: 45px;
	margin-left: 5px;
	margin-right: 5px;
}
.blue-bold {
	font-size: 16px;
	font-weight: bold;
	color: #CCC;
}
.footer-content a {
	color: #FFF;
}
.tcellwhite {
	background-color: #CCC;
}
.container .content table tr td .big-red {
	font-size: 14px;
}
.container .sidebar1 a img {
	margin-top: 8px;
	margin-bottom: 8px;
}
.container .sidebar1 .nav li p {
	color: #FFF;
	margin-bottom: 5px;
	padding-top: 5px;
}
.container .content .grey-box table tr td {
	color: #FFFFFF;
	font-weight: bold;
	font-size: 13px;
	background-color: #FFF;
	line-height: 24px;
}
.container .content table tr .ttop div {
	font-weight: bold;
	color: #FFFFFF;
	text-shadow: 1px 1px 1px #000;
	background-color: #000831;
}
.black {
	font-family: "Comic Sans MS", cursive;
	font-size: 13px;
	color: #000;
	font-weight: bold;
}
.grey-box table tr td .no {
	color: #F00;
	font-size: 12px;
	font-family: Tahoma, Geneva, sans-serif;
}
.grey-box table tr td .yes {
	color: #0F0;
	font-size: 12px;
	font-family: Tahoma, Geneva, sans-serif;
}
.content table tr {
	background-image: url(images/table-bg.gif);
	line-height: 30px;
	border: thin solid #CCC;
	background-position: bottom;
}
.table-title {
	color: #FFF;
	background-color: #000831;
}
.poker-room-headline .big-green {
	color: #FFF;
}.grey-box ul li .big-green {
	line-height: 20px;
	font-style: italic;
}
.grey-box ul li {
	list-style-image: url(images/checkmark.png);
	margin-bottom: 5px;
}.grey-box .poker-list ul li {
	font-family: "Courier New", Courier, monospace;
	font-size: 18px;
	color: #060;
	font-weight: bold;
	letter-spacing: 2px;
	font-style: italic;
	text-indent: 28px;
	background-image: url(/images/chips-holder.jpg);
	background-repeat: no-repeat;
	list-style-image: none;
	list-style-type: none;
	margin-bottom: 0px;
}
.content .grey-box .poker-list {
	display: inline;
}
.grey-box ul li .black {
	font-size: 15px;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	line-height: 20px;
}
.white-writing {
	font-size: 12px;
	font-weight: bold;
	color: #FFF;
}
.white-writing a {
	color: #FFF;
	text-decoration: underline;
}
.top-nav {
	font-size: 12px;
	font-weight: bold;
	color: #FFF;
	line-height: 35px;
	background-color: #CC0000;
}
.top-nav a {
	color: #FFF;
	text-decoration: underline;
}
.top-nav a:hover {
	color: #FF0;
}
#topmenu {
	width: 1000px;
	height: 35px;
	background: url(images/menu_bg.gif) 0 0 repeat-x;
	text-align: center;
}
#topmenu ul li {
	float: left;
	list-style-type: none;
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #CCC;
}
#topmenu ul li a {
	display: block;
	text-shadow: #000 0 -1px 0;
	text-transform: uppercase;
	color: #fff;
	background: url(images/menu_bg.gif) 0 0 repeat-x;
	padding-top: 0;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 10px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	line-height: 35px;
	font-weight: bold;
}
#topmenu ul li a:hover, #topmenu ul li .active {
	background:url(images/menu_bg.gif) 0 -57px repeat-x;
}
.content .grey-box .blue-bold {
	color: #006;
}
.content .author {
	width: 22%;
	margin-left: 12px;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-style: italic;
	font-weight: bold;
	font-size: 13px;
	color: #666;
	float: left;
	display: block;
	height: auto;
	margin-bottom: 3px;
	margin-top: 2px;
}
.content .date {
	width: 22%;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-style: italic;
	font-weight: bold;
	font-size: 12px;
	float: right;
	color: #666;
	text-align: right;
	display: block;
	height: auto;
	margin-bottom: 3px;
	margin-top: 2px;
	margin-right: 12px;
}
.content .story-details {
	width: 96%;
	margin-right: auto;
	margin-left: auto;
	margin-bottom: 12px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #CCC;
	overflow: hidden;
	padding-bottom: 2px;
}
.news-image-right {
	margin-top: 12px;
	margin-bottom: 9px;
	margin-left: 12px;
	float: right;
	border: 2px solid #CCC;
	box-shadow: 5px 5px 5px #333;
	margin-right: 3px;
}
.content .story-details .share {
	width: 50%;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-style: italic;
	font-weight: bold;
	font-size: 13px;
	float: left;
	margin-right: 10px;
	display: block;
	color: #666;
	height: auto;
	text-align: center;
	margin-left: 10px;
	margin-top: 0px;
}
.content .share {
	width: 31%;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-style: italic;
	font-weight: bold;
	font-size: 13px;
	float: right;
	margin-right: 24px;
	color: #666;
	height: auto;
	text-align: center;
	margin-left: 10px;
	display: block;
	margin-top: 3px;
}
.content .news-heading {
	width: 95%;
	margin-right: auto;
	margin-left: auto;
	text-indent: 24px;
	padding-top: 2px;
	padding-bottom: 2px;
	font-size: 20px;
	font-family: "Arial Black", Gadget, sans-serif;
	border: 2px solid #CC0000;
	background-image: url(/images/news-heading-bg.jpg);
	background-repeat: no-repeat;
	font-weight: bold;
	color: #006;
	text-shadow: 1px 1px 1px #FFF;
	font-style: italic;
	border-radius: 3px;
	margin-bottom: 12px;
}
.news-block img {
	border: 2px solid #999;
	box-shadow: 5px 5px 5px #333;
	margin-top: 12px;
	margin-right: 6px;
	margin-bottom: 12px;
	margin-left: 3px;
	display: block;
	float: left;
}

.content .news-block {
	width: 92%;
	margin-right: auto;
	margin-left: auto;
	margin-top: 0px;
	background-image: url(/images/news-block-bg.jpg);
	background-repeat: repeat-x;
	background-position: bottom;
	background-color: #F7F7F7;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-right-color: #CCC;
	border-bottom-color: #CCC;
	border-left-color: #CCC;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #B1B1B1;
	border-radius: 5px;
	display: block;
	overflow: hidden;
	padding-right: 12px;
	padding-left: 12px;
	padding-top: 6px;
	padding-bottom: 6px;
	margin-bottom: 10px;
}
.news-block .news-block-content {
	margin-top: 9px;
	margin-bottom: 6px;
	margin-left: 12px;
	margin-right: 3px;
	float: left;
	width: 71%;
}
.news-block-content p .blue-bold a {
	color: #C00;
	font-size: 14px;
	font-family: Tahoma, Geneva, sans-serif;
}
.news-block .news-block-content p a {
	font-size: 14px;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-weight: normal;
}
.news-block .news-block-content p {
	line-height: 20px;
	font-size: 13px;
	font-family: Tahoma, Geneva, sans-serif;
	padding-right: 0px;
	padding-left: 0px;
}
.news-block .news-block-content .blue-bold {
	margin-bottom: 6px;
}
.news-block .news-block-content .blue-bold a {
	color: #C00;
	line-height: 20px;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 18px;
	font-weight: bold;
}
.news-block .news-block-content .news-block-date {
	line-height: 16px;
	color: #8F8F8F;
	margin-bottom: 4px;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 13px;
	padding-left: 12px;
	display: block;
}
.content .news-heading h1 {
	text-indent: 24px;
	font-size: 20px;
	font-family: "Arial Black", Gadget, sans-serif;
	font-weight: bold;
	color: #006;
	text-shadow: 1px 1px 1px #FFF;
	font-style: italic;
	margin-bottom: 0px;
	margin-top: 0px;
	text-align: left;
}
.news-block-inner img {
	border: 2px solid #999;
	box-shadow: 5px 5px 5px #333;
	margin-top: 12px;
	margin-right: 6px;
	margin-bottom: 12px;
	margin-left: 3px;
	display: block;
	float: right;
}

.content .news-block-inner {
	width: 92%;
	margin-right: auto;
	margin-left: auto;
	margin-top: 0px;
	background-image: url(/images/news-block-bg.jpg);
	background-repeat: repeat-x;
	background-position: bottom;
	background-color: #F7F7F7;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-right-color: #CCC;
	border-bottom-color: #CCC;
	border-left-color: #CCC;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #B1B1B1;
	border-radius: 5px;
	display: block;
	overflow: hidden;
	padding-right: 12px;
	padding-left: 12px;
	padding-top: 6px;
	margin-bottom: 10px;
	padding-bottom: 12px;
}
.news-block-inner .news-block-content {
	margin-top: 9px;
	margin-bottom: 6px;
	margin-left: 3px;
	margin-right: 12px;
	float: left;
	width: 71%;
}
.news-block-inner .archive-block {
	margin-top: 9px;
	margin-left: auto;
	margin-right: auto;
	float: left;
	width: 100%;
}
.news-block-inner .super-bowl-block {
	margin-top: 9px;
	margin-left: auto;
	margin-right: auto;
	float: left;
	width: 100%;
}
.news-block-content p .blue-bold a {
	color: #C00;
	font-size: 14px;
	font-family: Tahoma, Geneva, sans-serif;
}
.news-block-inner .news-block-content p a {
	font-size: 14px;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-weight: normal;
}
.news-block-inner .news-block-content p {
	line-height: 20px;
	font-size: 13px;
	font-family: Tahoma, Geneva, sans-serif;
	padding-right: 0px;
	padding-left: 0px;
}
.news-block-inner .news-block-content .blue-bold {
	margin-bottom: 6px;
}
.news-block-inner .news-block-content .blue-bold a {
	color: #C00;
	line-height: 20px;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 18px;
	font-weight: bold;
}
.news-block-inner .news-block-content .news-block-date {
	line-height: 16px;
	color: #8F8F8F;
	margin-bottom: 4px;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 13px;
	display: block;
	text-align: left;
	padding-left: 12px;
}
.news-block-date .black {
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-weight: normal;
	color: #464646;
	font-style: italic;
}
.news-block-inner .archive-block p {
	font-weight: bold;
	color: #006;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 16px;
	font-style: italic;
	margin-bottom: 0px;
}
.news-block-inner .archive-block p a {
	font-size: 14px;
	color: #DF0000;
}
.news-block-inner .news-heading {
	margin-top: 6px;
	margin-bottom: 6px;
}
.container .sidebar1 .nav .table-title {
	background-color: #C00;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 18px;
	text-indent: 32px;
	text-shadow: 2px 2px 1px #000;
}
.container .content .news {
	font-size: 20px;
}
.container .content .grey-box .poker-room-headline .black {
	color: #FFF;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 20px;
	font-style: italic;
}
.container .sidebar1 div .big-red {
	font-size: 14px;
	color: #FFF;
	font-weight: bold;
	font-family: Tahoma, Geneva, sans-serif;
	font-style: italic;
}
.container .content .news-block-inner .super-bowl-block img {
	float: none;
}
.container .content .news-block-inner .super-bowl-block p a .fltrt {
	float: right;
}
