/*
-------------------------------------------------------------------------------
	Global reset styles
-------------------------------------------------------------------------------

	Based on Eric Meyer's reset styles
	(http://meyerweb.com/eric/tools/css/reset/)

	- removed all presentational elements, plus
	  some unlikely to use (e.g. applet)
*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
strong, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend, textarea,
table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}

/* remember to define focus styles! */
:focus {
	outline: 0;
}

/* remember to highlight inserts somehow! */
ins {
	text-decoration: none;
}
del {
	text-decoration: line-through;
}

/* tables still need 'cellspacing="0"' in the markup */
table {
	border-collapse: collapse;
	border-spacing: 0;
}


/*
-------------------------------------------------------------------------------
	Base text size
-------------------------------------------------------------------------------

	Based on Richard Rutter's article on ALA:
	http://alistapart.com/articles/howtosizetextincss
*/
body {
	font-size: 14px;
	line-height: 1.125em;
}
body.IE6,
body.IE7 {
	font-size: 87.5%; /* as a percentage of default (16px) ...roughly */
}


/*
-------------------------------------------------------------------------------
	General
-------------------------------------------------------------------------------
*/
* {
	font-family: "Trebuchet MS", "Arial Narrow", Tahoma, sans-serif;
}
p {
	margin: 0.7em 0;
	line-height: 1.5;
	text-align: justify;
}
abbr, acronym {
	border-bottom: 1px dotted;
	cursor: help;
}

:link,
:visited {
	color: #C07300 !important;
/*	background-color: rgb(90%, 90%, 90%);*/
	border-radius: 2px;
	-moz-border-radius: 2px;
	-webkit-border-radius: 2px;
	padding: 2px;
}
:link:hover,
:visited:hover {
	color: white !important;
	background-color: #459E00;
	text-decoration: none;
}
:link:focus,
:visited:focus {
	/* IE 6 & 7 don't support :focus, have to keep separate */
	color: white !important;
	background-color: #459E00;
	text-decoration: none;
}

#container {
	min-width: 800px;
	max-width: 80%;
	margin: 2em auto 4em;
}

h1 {
	font-size: 200%;
	line-height: 1.2;
	margin-bottom: 2em;
}
h1 > * {
	display: block;
	font-size: 65%;
	margin: 0.5em 0 0 1em;
}

h2 {
	font-size: 130%;
	margin: 4em 0 1em;
}

#games-list {
	margin-top: 2em;
	font-size: 100%; /* override .ui-widget font size */
}
#games-list .coming-soon-heading {
	font-size: 80%;
	padding-left: 2em;
	color: red;
	font-style: italic;
	opacity: 0.8;
}
#games-list dt.ui-state-hover .coming-soon-heading {
	color: white;
	opacity: 1;
}
#games-list dt.ui-state-active .coming-soon-heading {
	color: red;
	opacity: 1;
	visibility: hidden;
}
#games-list .coming-soon {
	font-style: italic;
	font-size: 120%;
	display: block;
	text-align: center;
	margin-top: 2em;
}
#games-list dt {
	font-size: 110%;
}

#games-list .header {
	margin-bottom: 1.5em;
}
#games-list .details li {
	margin: 0.5em 0;
}
#games-list .details a {
	font-weight: bold;
	white-space: nowrap;
}

#games-list .footer {
	margin-top: 2em;
}
#games-list .endline {
	font-style: italic;
	font-size: 85%;
	opacity: 0.5;
}

#footer {
	font-size: 80%;
	margin-top: 6em;
}
#footer-subline {
	margin-top: 0.5em;
	font-size: 80%;
	display: block;
}
