@charset "utf-8";
body  {
	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;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10pt;
}
a {
	color: #1ABCFD;
	text-decoration: none;
}
a:hover {
	color: #1ABCFD;
	text-decoration: underline;
}
#container {
	width: 100%; /* the auto margins (in conjunction with a width) center the page */
	min-width: 900px;
	text-align: left; /* this overrides the text-align: center on the body element. */
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
} 
#menubar {
	font-size: small;
	height: 32px;
	color: #FFFFFF;
	background-color: #695645;
	text-align: right;
	vertical-align: middle;
	border-bottom-width: 2px;
	border-bottom-style: solid;
	border-bottom-color: #996600;
	padding-right: 22px;
} 
#menubar h1 {
	font-size: small;
	margin: 0px;
	padding-top: 16px;
	padding-right: 20px;
}
#menubar ul {
	display: block;
	height: 32px;
	list-style-type: none;
	text-align: right;
	clear: right;
	float: right;
	border-top-width: 0;
	border-right-width: 0;
	border-bottom-width: 0;
	border-left-width: 0;
	margin: 0;
	padding: 0;
}
#menubar ul li {
	display:block;
	float: left;
	text-align: left;
	padding: 0;
	margin: 0;
}
#menubar ul li a {
	display: block;
	background: #695645;
	width: 80px;
	height: 32px;
	padding: 0;
	margin: 0 0 0 0;
	color: #FFFFFF;
	text-decoration: none;
	text-align: center;
	font-weight: normal;
	letter-spacing: 1px;
	line-height: 32px;
	font-size:    x-small;
	border-bottom-width: 2px;
	border-bottom-style: solid;
	border-bottom-color: #996600;
}
html>#menubar ul li a {
	font-size: x-small;   
} 
#menubar a:hover, #menubar .active a {
	text-decoration: none;
	font-weight: bold;
	color: #695645;
	background-color: #FFFFFF;
	border-bottom-width: 2px;
	border-bottom-style: solid;
	border-bottom-color: #FFFFFF;
	background-image: url(i/dogear.gif);
	background-repeat: no-repeat;
	background-position: left top;
}
#header { 
	height: 120px; 
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	top: 0px;
	left: 0px;
	z-index: 1;
	background-image: url(i/w2_logo.gif);
	background-repeat: no-repeat;
} 
#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 */
	font-family: 'Helvetica'; 
	padding-top: 63px;
	padding-right: 0;
	padding-bottom: 0;
	padding-left: 96px;
	font-size: 12px;
	color: #FFFFFF;
}
#header h2 {
	font-size: 16px;
	height: 60px;
	width: 468px;
	float: right;
	margin-right: 10px;

}
#header a {
	color: #FFFFFF;
	text-decoration: none;
}
#header a:hover {
	color: #FFFFFF;
	text-decoration: underline;
}
/* Tips for sidebars:
1. Since we are working in percentages, it's best not to use side padding on the sidebars. It will be added to the width for standards compliant browsers creating an unknown actual width. 
2. Space between the side of the div and the elements within it can be created by placing a left and right margin on those elements as seen in the ".thrColLiqHdr #sidebar1 p" rule.
3. Since Explorer calculates widths after the parent element is rendered, you may occasionally run into unexplained bugs with percentage-based columns. If you need more predictable results, you may choose to change to pixel sized columns.
*/
#sidebar1 {
	float: left; /* this element must precede in the source order any element you would like it be positioned next to */
	width: 250px; /* top and bottom padding create visual space within this div  */
	background-color: #1ABCFD;
	background-image: url(i/side1_back.gif);
	background-repeat: repeat-y;
	background-position: left top;
	padding: 0px;
}
#sidebar2 {
	float: right; /* this element must precede in the source order any element you would like it be positioned next to */
	width: 250px; /* top and bottom padding create visual space within this div */
	padding-top: 15px;
	padding-right: 0;
	padding-bottom: 15px;
	padding-left: 0;
}
#sidebar1 p, #sidebar1 h3, #sidebar2 p, #sidebar2 h3 {
	margin-left: 10px; /* the left and right margin should be given to every element that will be placed in the side columns */
	margin-right: 10px;
	font-size: 10pt;
}

/* Tips for mainContent:
1. the space between the mainContent and sidebars is created with the left and right margins on the mainContent div.
2. to avoid float drop at a supported minimum 800 x 600 resolution, elements within the mainContent div should be 300px or smaller (this includes images).
3. in the Internet Explorer Conditional Comment below, the zoom property is used to give the mainContent "hasLayout." This avoids several IE-specific bugs.
*/

#feedback {
	padding-right: 20px;
	padding-left: 20px;
}
#feedback textarea {
	height: 50px;
	width: 60%;
	float: left;
}
#feedback input {
	height: 40px;
	width: 180px;
	font-size: 14px;
	border: 2px solid #b1b1b1;
	padding: 10px;
	margin: 10px;
	background-color: #f2f2f2; 
}
input.hidden_field {
	border: 0px solid #000000;
	padding: 0px;
}
#footer {
	font-size: small;
	height: 32px;
	color: #FFFFFF;
	background-color: #1ABCFD;
	text-align: right;
	vertical-align: middle;
	border-top-width: 2px;
	border-top-style: solid;
	border-top-color: #006699;
} 
#footer h1 {
	font-size: small;
	margin: 0px;
}
#footer ul {
	display: block;
	height: 32px;
	border: 0;
	margin: 0;
	padding: 0;
	list-style-type: none;
	text-align: right;
	clear: right;
	float: right;
}
#footer ul li {
	display:block;
	float: left;
	text-align: left;
	padding: 0;
	margin: 0;
}
#footer ul li a {
	display: block;
	background: #1ABCFD;
	width: 80px;
	height: 30px;
	padding: 0;
	margin: 0 0 0 0;
	color: #FFFFFF;
	text-decoration: none;
	text-align: center;
	font-weight: normal;
	letter-spacing: 1px;
	line-height: 32px;
	font-size:    x-small;
}
html>#footer ul li a {
	font-size: x-small;   
} 
#footer a:hover, #footer .active a {
	text-decoration: none;
	font-weight: bold;
	color: #695645;
	background-color: #FFFFFF;
	border-top-width: 2px;
	border-top-style: solid;
	border-top-color: #FFFFFF;
}
#copyright {
	background-color: #1ABCFD;
	color: #FFFFFF;
	text-align: right;
	height:20px;
	padding-right: 20px;
	padding-top: 20px;
}

#copyright a {
	margin: 0;
	border: 0;
	color:#C2EC62;
}

#copyright a:active, #copyright a:hover {
	color:#685545;
	margin: 0;
}

/* Miscellaneous classes for reuse */
.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 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 its child floats */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}
.small {
	font-size: x-small;
}
.heading {
	font-family: 'Helvetica'; 
	font-size: 16pt;
	color: #695645;
}
.color1 {
	color: #FFFFFF;
	background-color: #1ABCFD;
}
.color2 {
	color: #FFFFFF;
	background-color: #695645;
}
.shop {
	color: #FFFFFF;
	background-color: #695645;
}
.commentheading {
	font-family: 'Helvetica'; 
	font-size: medium;
	color: #CC0000;
	border-bottom-width: thin;
	border-bottom-style: dotted;
	border-bottom-color: #CC0000;
}
.commentnav {
	font-family: 'Helvetica'; 
	font-size: medium;
	color: #CC0000;
	border-bottom-width: thin;
	border-bottom-style: dotted;
	border-bottom-color: #CC0000;
}
.comment {
	font-size: x-small;
	padding: 8px;
	margin: 4px;
	width: 100%;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #FCFCDF;
}
.commentsform {
	margin: 3px;
	padding: 8px;
	background-color: #EEEEEE;
	border: 1px dotted #666666;
	color: #333333;
}
.commentdate {
	color: #333333;
	background-color: #FCFCDF;
	text-align: center;
	border: 1px solid #999999;
	width: 50px;
	padding: 6px;
	margin: 3px;
}
.commentday {
	font-family: 'Helvetica'; 
	font-size: 24px;
}
.commentmonth {
	font-size: 16px;
}
.commenttime {
	font-size: 9px;
}
.commentbutton {
	BORDER-RIGHT: #999999 thin solid; 
	BORDER-TOP: #DDDDDD thin solid; 
	MARGIN-TOP: 2px; 
	FONT-WEIGHT: bold; 
	FONT-SIZE: 10px; 
	BORDER-LEFT: #DDDDDD thin solid; 
	COLOR: #000000; 
	BORDER-BOTTOM: #999999 thin solid; 
	FONT-FAMILY: Verdana, Arial, Helvetica, sans-serif; 
	BACKGROUND-COLOR: #ffffff;
}
.inputbox {
	BORDER-RIGHT: #ccc 1px solid; 
	PADDING-RIGHT: 3px; 
	BORDER-TOP: #ccc 1px solid; 
	PADDING-LEFT: 3px; 
	BACKGROUND: #fff; 
	MARGIN-BOTTOM: 10px; 
	PADDING-BOTTOM: 3px; 
	FONT: 11px monaco, verdana, sans-serif; 
	BORDER-LEFT: #ccc 1px solid; 
	PADDING-TOP: 3px; 
	BORDER-BOTTOM: #ccc 1px solid; outline: none;
}
.large {
	font-family: 'Helvetica'; 
	font-size: large;
	margin: 0px;
	padding-top: 12px;
	padding-bottom: 6px;
	color: #695645;
}
.link_name {
	font-family: 'Helvetica'; 
	font-size: small;
	color: #1ABCFD;
}
.link_grey {
	font-size: x-small;
	color: #999999;
}
.link_darkgrey {
	font-size: small;
	color: #666666;
}

.darkgrey {
	font-size: x-small;
	color: #999999;
}
.row2 {
}
.link {
	display: inline;
	float: left;
	padding: 4px;
}
.games {
	float: left;
	margin: 8px;
	padding: 8px;
	width: 100%;
}
.game {
	float: left;
	margin: 8px;
	padding: 8px;
}
.games_name {
	font-family: 'Helvetica'; 
	font-size: medium;
	color: #1ABCFD;
}
.games_grey {
	font-size: x-small;
	color: #999999;
}
.games_darkgrey {
	font-size: small;
	color: #666666;
}
.exclaim {
	font-family: 'Helvetica'; 
	font-size: small;
	font-style: italic;
	font-weight:bold;
	color: #CC0000;
	background-image: url(pi/exclaim.gif);
	background-repeat: no-repeat;
	background-position: left center;
	padding-left: 15px;
}
#ad_form {
	font-size: medium;
	font-style: italic;
	color: #CC0000;
	font-weight: bold;
}
.redbox {
	background-color: #FED;
	border: thin solid #CC0000;
	color: #333;
}
.needed {
	background-color: #FFFFFF;
	background-image: url(i/blank.gif);
	background-repeat: repeat-y;
}
.disc_bullet {
	list-style-type: disc;
	margin-top: 10px;
	font-weight: bold;
	margin-left: 20px;
}
.circle_bullet {
	list-style-type: circle;
	margin-top: 12px;
	margin-bottom: 12px;
	margin-left: 50px;
}
.report {
	font-size: x-small;
	color: #CCCCCC;
	padding-left: 20px;
	background-image: url(i/pointer.gif);
	background-repeat: no-repeat;
	background-position: left center;
}
.report_links { text-align: right; }
.breadcrumbs {
	width: auto;
	background-image: url(i/pointers.gif);
	background-repeat: no-repeat;
	background-position: left top;
	padding-left: 20px;
}

.Post {	padding: 0px; position: relative; width: 100%; margin-bottom: 30px; margin-top: 30px;}
.Post h1 { font-size: 25px; letter-spacing: -1px; font-weight: normal; font-family: 'Helvetica'; padding: 2px 0px; margin: 0px; display: block; text-transform: uppercase;}
.Post h1 a { color: #e1f15d; text-decoration: italic;}
.Post h1 a:visited { color: #e1f15d; text-decoration: italic;}
.Post h1 a:hover { color: #ff9999; text-decoration: italic;}

.PostHeadSimple {}
.PostHead { padding-left: 70px; }

.PostInfo { padding: 2px 0px; margin-left: 70px; font-size: 9px; color: #7fa1a9; border-top: dashed 1px #637f89; }
.PostInfo ul { padding: 0px; margin: 0px;}
.PostInfo li { padding: 0px; margin: 0px; list-style-type: none; display: inline;}
.PostInfo a { color:#7fa1a9; text-decoration: underline;}
.PostInfo a:visited { color:#7fa1a9; text-decoration: underline; }
.PostInfo a:hover { color:#7fa1a9; text-decoration: underline; }

.PostContent {
	margin-left: 80px;
	padding-top: 10px;
	padding-right: 0px;
	padding-bottom: 10px;
	padding-left: 0px;
}
.PostContent h1 { font-size: 22px; letter-spacing: -1px; font-weight: normal; padding: 2px 0px; margin: 0px;}
.PostContent h2 { font-size: 19px; letter-spacing: -1px; font-weight: normal; padding: 2px 0px; margin: 0px;}
.PostContent h3 { font-size: 17px; font-weight: normal; padding: 2px 0px; margin: 0px;}
.PostContent ul { font-size: 11px;}
.PostContent ol { font-size: 11px;}
.PostContent p { font-size: 11px; line-height: 16px; color: #9ec5c4; padding: 6px 0px; margin: 6px 0px;}
.PostContent img { float: left; padding: 1px; border: solid 1px #f0f0f0; margin: 0px 15px 15px 0px;}
.PostContent blockquote { padding: 5px 0px; margin: 5px 0px; color:#bee6e9;}
.PostContent blockquote p { font-size: 10px; padding: 3px 0px; margin: 3px 0px; line-height: 12px; color: #bee6e9;}

.PostDetails { padding: 10px 0px; margin: 0px; font-size: 10px;}
.PostDetails a { text-decoration: underline;}
.PostDetails a:visited { text-decoration: underline; }
.PostDetails a:hover { text-decoration: underline; }

.PostDate {
	position: absolute;
	top: 0.5em;
	left: 0;
	text-align: center;
	margin: 0;
	list-style: none;
	width: 64px;
	color: #333333;
	background-image: url(i/calendar.png);
	background-repeat: no-repeat;
	background-position: center center;
	height: 56px;
	padding-top: 10px;
	padding-right: 5px;
	padding-bottom: 5px;
	padding-left: 5px;
}
.PostDate .month {
	display: block;
	font-size: 14px;
	letter-spacing: -1px;
	text-transform: lowercase;
	line-height: 18px;
	color: #000;
	padding-top: 2px;
}
.PostDate .day {
	display: block;
	font-size: 24px;
	font-family: Arial;
	font-weight: normal;
	line-height: 24px;
	color: #000;
	padding-top: 4px;
}
.PostDate .year {
	display: block;
	font-size: 24px;
	letter-spacing: -1px;
	text-transform: lowercase;
	line-height: 16px;
	color: #FFF;
	font-weight: normal;
	padding: 2px;
}
.PostComments {	padding: 0px; position: relative; width: 588px; margin-bottom: 30px; margin-top: 30px;}
.feedback blockquote {
	display: block;
	font-style: italic;
	font-weight: bold;
	color: #0066CC;
	font-size: 0.84em;
	padding-top: 0;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 10px;
}
.feedback blockquote:before, .feedback blockquote:after {
	color: #ccc;
	display: block;
	font-size: 300%;
	width: 10px;
	font-style: normal;
	font-family: Georgia, "Times New Roman", Times, serif;
}
.feedback blockquote:before {
	content: open-quote;
	height: 0;
	margin-left: -0.55em;
}
.feedback blockquote:after {
	content: close-quote;
	height: 10px;
	margin-top: -10px;
	margin-left: 96%;
}
.feedback p {
	font-size: 1.1em;
	color: #990000;
	font-style: italic;
	font-weight: bold;
}
#imgcode {
	font-size: 1.5em;
	margin-left: 8px;
}
.warning {
	font-size: 1.1em;
	font-style: italic;
	font-weight: bold;
	color: #C00;
}
#imgcode {
	font-size: 1.9em;
	font-weight: bold;
}
#ad_form .tabbed{
	margin-left: 200px;
	position: relative;
}
#ad_form label {
	font-weight: bold;
	width: 200px;
	float: left;
	text-align: right;
	padding: 0px;
	margin: 0px;
}
#ad_form p {
	margin: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 10px;
	padding-left: 220px;
}
#ad_form {
	padding-left: 80px;
	border: 1px dotted #E8E8E8;
	margin: 22px;
}
#ad_form label {
	margin: 0px;
	padding: 0px;
	color: #333;
	font-size: .9em;
}
#ad_form p {
	margin: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 22px;
	padding-left: 0px;
	color: #333;
	font-size: 0.9em;
	font-weight: normal;
}
#ad_form fieldset {
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	padding: 6px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: -60px;
	color: #666;
}
#ad_form #the-ad-price {
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: -50px;
	font-size: 1.3em;
	color: #09C;
	font-weight: bold;
	border-top-width: 1px;
	border-bottom-width: 1px;
	border-top-style: dotted;
	border-bottom-style: dotted;
	border-top-color: #E8E8E8;
	border-bottom-color: #E8E8E8;
	padding: 12px;
}
/* mailing list fields */
.fields  fieldset {
	border: 1px solid #CCCCCC;
	padding-left: 12px;
	font-size: 1.2em;
	color: #333333;
	display: block;
	margin: 12px;
}
.fields li {
	list-style-type: none;
	padding-bottom: 6px;
}
.fields span {
	display: block;
	font-size: .9em;
	font-weight: bold;
}
.fields input {
	width: 90%;
	border: 1px solid #CCCCCC;
}
.fields  .required  {
	border: 1px solid #FF6600;
}
.fields .req {
	font-size: .64em;
	font-weight: normal;
}
.fields select {
	width: 90%;
}
.fields textarea {
	width: 90%;
	border: 1px solid #CCCCCC;
}
.fields #imgcode {
	width: 6em;
	border: 1px solid #FF6600;
	font-size: 1.2em;
}
.fields ol {
	list-style-type: none;
}
