@charset "utf-8";
/* CSS Document */
@import url(global.css);
@import url(sidebar.css);

/*
Blue background: 08.58.AA
Games Played: D6.C3.AD
Borders: F6.E8.D6
Calendar background: AB.C1.78
*/
/******************** THIS WHOLE FILE... ********************/
/* ...defines the styles for the main links page when @media = "screen".

   When @media = "screen" AND Javascript is enabled AND the browser is not IE6, we want
	 to display block elements #nyMap and #externalLinks. These contain fancy JavaScript-
	 driven maps. Because we don't want to show them when Javascript is disabled, we have
	 to style them invisible and let Javascript make them visible. These don't work well
	 in IE6, so the script will keep them hidden if it detects IE6.
*/
.hh-only {
	display: none;
	visibility: hidden;
}

#scriptCopy {
	display: block;
}

#nyMap {
	display: none; /* Default. Javascript will change this. */
	margin: 0;
	padding: 0;
	border: none;
	border: 0px solid red;
	/* These values are for IE6 */
	width: 819px;
	height: 657px;
}

body[id="rbs"] #nyMap {
	/* These values are for all but IE6 */
	width: 819px;
	height: 657px;
}

#externalLinks {
	display: none; /* Default. Javascript will change this. */
	margin: 0;
	padding: 0;
	border: none;
	overflow: visible;
	width: 862px; /* This value is for IE6 */
	display: none;
}
body[id="rbs"] #externalLinks {
	width: 864px;
}

/* This block contains a no-nonsense version of our external links. It is meant for
   handheld devices and any computer runing IE6. For all other cases, we hide it and
	 let the two fancy iFrames
   If @media = "screen" and the browser is not IE6, hide this
*/
#noScriptCopy {
	display: block;
	overflow: hidden;
	border: 0px solid red;
	border-bottom: 6px #F6E8D6 solid;
	text-align: left;
}
#noScriptCopy div {
	display: inherit;
	margin: 6px 2% 6px 2%;
	width: 45%;
	float: left;
	background-color: inherit;
	color: black;
	line-height: 1.7em;
}
#noScriptCopy ul {
	list-style-type: none;
}
#noScriptCopy h3 {
	text-align: left;
	position: relative;
	left: +1.5em;
	top: +0.5em;
	color: black;
}
