@charset "UTF-8";
body {
	font: small Georgia, "Times New Roman", Times, serif;
	background: url(../media/bgFade.jpg) repeat-x #999 fixed;
	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:#000;
}
#container {
	width:840px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	margin:0 auto; /* the auto margins (in conjunction with a width) center the page */
	padding:0;
	text-align:left; /* this overrides the text-align: center on the body element. */
}

/* ----------- Header ----------- */
#header {
	background: url(../media/rbHead_ds.png);
	height:120px; 
	padding:0;
	margin:10px 0;
}
#header p {
	text-align:right;
	font-size: small;
	padding: 24px 24px 0 0;
}
#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 */
}

/* ------------ Main ----------- */
#mainContent {
	padding:20px 40px;; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	margin:0 0 40px 0;
	background:url(../media/mainBG.jpg) repeat-x #FFF;
	min-height:400px;
	-moz-box-shadow: 0px 2px 5px rgba(0,0,0,1);
	-webkit-box-shadow: 0px 2px 5px rgba(0,0,0,.7);
	box-shadow: 0px 1px 5px rgba(0,0,0,.7);
}
#mainContent .copy {
	font-size: 14px;
	padding: 0 20px; 0 20px;
}
#mainContent h2 {
	text-shadow:1px 1px 2px rgba(0,0,0,.4);
}
.contentGraphic {
	float: right;
	padding: 8px;
}

.leftCol { /* 50% width columns for multi-use w/o left sub-nav */
	width:380px;
	float:left;
	padding:0;
}
.rightCol { /* 50% width columns for multi-use w/o left sub-nav */
	width:380px;
	float:left;
	padding:0;
}
table {
	border-collapse: collapse;
}
table th {
	background:#936;
	border:1px solid #936;
	border-bottom:1px solid #000;
	color:#FFF;
	text-shadow:0px -1px 1px rgba(0,0,0,.6);
	padding:2px;
}
table tr {
	padding:0;
	margin:0;	
}
table td {
	padding:6px;
	border:1px dashed #000;
}

/* -------- Photo Stack -------- */
#photoStack2 {
	float:right;
	padding:0 10px 20px 50px;
	margin-top: -70px;
}
#photoStack2 p {
	padding-left:150px;
	margin-top: 0;
}

/* ----------- crumbs ---------- */
#mainContent a, .breadcrumb a {
	color: #936;
	text-decoration:none;
}
#mainContent a:hover, .breadcrumb a:hover {
	text-decoration:underline;
}
#mainContent a:visited, .breadcrumb a:visited {
	color: #603;
}

#subNavCol {
	float:left;
	width: 160px;
	margin: 20px 0 0 0;
}
#eventInfoCol {
	float:right;
	width:594px;
	margin: 20px 0 0 6px;
}
#eventInfoCol ul {
	list-style: circle;
	padding-left:40px;
	margin-left:0;
}
#eventInfoCol ul li {
	padding:6px 0;
	
}

/* -------- BBBT/R&B Nav -------- */
#bigNav, #advNav {
	float:left;
	background:#d3d3d3;
	padding:0;
	margin: 0;
}
#bigNav ul, #advNav ul {
	list-style:none;
	margin:0;
	padding:20px 10px;
}
#bigNav ul li, #advNav ul li {
	text-shadow:1px 1px 1px rgba(255,255,255,.8);
}
#bigNav ul li a, #advNav ul li a {
	text-decoration:none;
	color:#936;
	font-weight:bold;
	display:block;
	padding-bottom:6px;
}
#bigNav ul li a:hover, #advNav ul li a:hover {
	text-decoration:underline;
}
#bigNav ul li a:visited, #advNav ul li a:visited {
	color:#936;
}

/* ------------ Map ---------- */
#map {
	height: 350px;
	width: 700px;
	margin:0 0 10px 0;
	padding: 0;
}
.fltlft {
	float:left;
	margin:10px 20px 10px 10px;
}

/* -------- Clear Floats ---------*/
.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;
}

/* ----------- Footer ----------- */
#footer {
	padding: 0;
	margin:0 auto;
	height:30px;
	background:#936;
	color:#CCC;
	font-size:small;
	border-top:1px solid white;
	position:fixed;
	bottom:0;
	width:100%;
}
#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: 6px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}