@charset "utf-8";

/* This rule resets a core set of elements so that they will appear consistent across browsers. Without this rule, content styled with an h1 tag, for example, would appear in different places in Firefox and Internet Explorer because each browser has a different top margin default value. By resetting these values to 0, the elements will initially be rendered in an identical fashion and their properties can be easily defined by the designer in any subsequent rule. */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
}
/* The body is the outermost layout component and contains the visible page content. Setting properties for the body element will help to create consistent styling of the page content and more manageable CSS. Besides using the body element to set global properties, it is common to use the body element to set the background color of the page and create a centered container for the page content to display. */
body {
	background-color: #FFFFFF;
	background-position: top left;
	color: #000;
	font-family: Arial, Helvetica, sans-serif;
	margin: 0 0 0 0; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	padding: 0 0 0 0; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	text-align: center; /* Centers the page content container in IE 5 browsers. */
}
/* Commonly used to style page titles. */
h1 {
  color: #000;
  font-size: 14px;
  font-weight: bold;
  line-height: 14px;
}
/* Commonly used to style section titles. */
h2 {
  color: #000;
  font-size: 12px;
  font-weight: bold;
  line-height: 14px;
}
/* Sets the style for unvisited links. */
a,  a:link {
	color: #EB222A;
	font-weight: bold;
	text-decoration: none;
}
/* Sets the style for visited links. */
a:visited {
  color: #000;
  font-weight: bold;
  text-decoration: none;
}
/* Sets the style for links on mouseover. */
a:hover {
  color: #000;
  text-decoration: underline;
}
/* Sets the style for a link that has focus. */
a:focus {
  color: #000;
}
/* Sets the style for a link that is being activated/clicked. */
a:active {
  color: #000;
}
/* This is a container for the page content. It is common to use the container to constrain the width of the page content and allow for browser chrome to avoid the need for horizontal scrolling. For fixed layouts you may specify a container width and use auto for the left and right margin to center the container on the page. IE 5 browser require the use of text-align: center defined by the body element to center the container. For liquid layouts you may simply set the left and right margins to center the container on the page. */
#outerWrapper {
	background-color: #fff;
	margin: 0 auto 35px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	text-align: left; /* Redefines the text alignment defined by the body element. */
	width: 753px;
}
#outerWrapper #header {
	font-size: 18px;
	font-weight: bold;
	line-height: 15px;
	padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
}
#outerWrapper #topNavigation {
	background-color: #F36A22;
	background-image: url(siteimages/navback.jpg);
	background-position: center left;
	background-repeat: no-repeat;
	height: 20px;
	padding: 7px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
}
#outerWrapper #innerwrapper {
	background-image: url(siteimages/wrapperback.jpg);
	background-repeat: repeat-y;
	overflow: hidden;
	margin: 0px;
	padding: 0px;
}
#outerWrapper #innerwrapper #rightColumn1 {
	border-style: none; /* Sets the border style properties for an element using shorthand notation */
	float: right;
	margin-left: 10px;
	margin-right: 10px;
	margin-top: 20px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 180px;
	padding-right: 22px;
	padding-left: 22px;
}
#outerWrapper #innerwrapper #content {
	background-image: url(siteimages/contentbottom.png);
	background-position: right bottom;
	background-repeat: no-repeat;
	margin-left: 26px;
	margin-right: 236px;
	padding-top: 20px;
	padding-bottom: 33px;
}
#outerWrapper #innerwrapper #content #innercontent {
	background-image: url(siteimages/contentback.png);
	background-position: left top;
	background-repeat: repeat-y;
	padding: 20px 20px 35px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	font-size: 13px;
	min-height: 300px;
}
#outerWrapper #innerwrapper #gallerycontent {
	background-image: url(siteimages/contentback.png);
	background-position: left top;
	background-repeat: repeat;
	padding: 10px 10px 35px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	font-size: 13px;
	min-height: 300px;
}
#outerWrapper #footer {
	background-image: url(siteimages/footerback.png);
	background-position: bottom;
	background-repeat: no-repeat;
	clear: both;
	margin-top: 20px;
	padding-top: 45px;
}
img {
	border-style: none;
}
#outerWrapper #innerwrapper #content #innercontent h2, #outerWrapper #gallerycontent h2 {
	color: #F6961D;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 29px;
	line-height: normal;
	font-weight: normal;
	margin-bottom: 12px;
}
#outerWrapper #innerwrapper #content #innercontent h3 {
	font-size: 14px;
	color: #EB1E25;
}
#outerWrapper #innerwrapper #rightColumn1 .pinkbox {
	background: url(siteimages/pinkbottom.gif) no-repeat right bottom;
	padding-bottom: 12px;
	width: 180px;
	margin-bottom: 20px;
	padding-top: 12px;
}
#outerWrapper #innerwrapper #rightColumn1 .pinkbox .pinkcontent {
	margin: 0px 0px 10px;
	padding: 10px;
	background: url(siteimages/pinkback.gif) repeat-y right;
	color: #FFF;
}
#outerWrapper #innerwrapper #rightColumn1 .pinkbox .pinkcontent p {
	margin-top: 0px;
	padding-top: 0px;
}
#outerWrapper #innerwrapper #rightColumn1 .pinkbox .pinkcontent h3 {
	font-size: 14px;
}
#outerWrapper #innerwrapper #rightColumn1 .pinkbox .pinkcontent ul {
	list-style: none;
	margin: 0px 0px 20px;
	padding: 0px;
}
#outerWrapper #innerwrapper #rightColumn1 .pinkbox .pinkcontent ul li {
	font-size: 14px;
	font-weight: bold;
	display: block;
	padding-top: 6px;
	padding-bottom: 3px;
	border-bottom: 1px dashed #FFF;
	line-height: normal;
}
#outerWrapper #innerwrapper #rightColumn1 .pinkbox .pinkcontent ul li a {
	color: #FFF;
}/*end pink box*/
#outerWrapper #innerwrapper #rightColumn1 .redbox {
	background: url(siteimages/redbottom.gif) no-repeat right bottom;
	padding-bottom: 12px;
	width: 180px;
	margin-bottom: 20px;
	padding-top: 12px;
}
#outerWrapper #innerwrapper #rightColumn1 .redbox .redcontent {
	margin: 0px 0px 10px;
	padding: 10px;
	background: url(siteimages/redback.gif) repeat-y right;
	color: #FFF;
}
#outerWrapper #innerwrapper #rightColumn1 .pinkbox .pinkcontent p {
	margin-top: 0px;
	padding-top: 0px;
}
#outerWrapper #innerwrapper #rightColumn1 .redbox .redcontent h3 {
	font-size: 18px;
	color:#FFF;
	font-family: Georgia, "Times New Roman", Times, serif;
	margin-bottom: 15px;
}
#outerWrapper #innerwrapper #rightColumn1 .redbox .redcontent ul {
	list-style: none;
	margin: 0px 0px 20px;
	padding: 0px;
}
#outerWrapper #innerwrapper #rightColumn1 .redbox .redcontent ul li {
	font-size: 14px;
	font-weight: bold;
	display: block;
	padding-top: 6px;
	padding-bottom: 3px;
	border-bottom: 1px dashed #FFF;
	line-height: normal;
}
#outerWrapper #innerwrapper #rightColumn1 .redbox .redcontent ul li a {
	color: #FFF;
}
/*end red box*/
#outerWrapper #innerwrapper #rightColumn1 .orangebox {
	background: url(siteimages/orangeback.gif) no-repeat center bottom;
	padding-bottom: 13px;
	width: 180px;
	margin-bottom: 20px;
	padding-top: 12px;
}
#outerWrapper #innerwrapper #rightColumn1 .orangebox .orangecontent {
	margin: 0px 0px 10px;
	padding: 10px;
	background: url(siteimages/orangecontent.gif) repeat-y right;
	color: #FFF;
}
#outerWrapper #innerwrapper #rightColumn1 .orangebox .orangecontent p {
	margin-top: 0px;
	padding-top: 0px;
}
#outerWrapper #innerwrapper #rightColumn1 .orangebox .orangecontent h3 {
	font-size: 14px;
}
#outerWrapper #innerwrapper #rightColumn1 .orangebox .orangecontent ul {
	list-style: none;
	margin: 0px 0px 20px;
	padding: 0px;
}
#outerWrapper #innerwrapper #rightColumn1 .orangebox .orangecontent ul li {
	font-size: 14px;
	font-weight: bold;
	display: block;
	padding-top: 6px;
	padding-bottom: 3px;
	border-bottom: 1px dashed #FFF;
	line-height: normal;
}
#outerWrapper #innerwrapper #rightColumn1 .orangebox .orangecontent ul li a {
	color: #FFF;
}#content #innercontent label {
	width: 160px;
	display: block;
	float: left;
	height: 20px;
	clear: both;
	margin-bottom: 3px;
	font-size: 12px;
}
#content #innercontent input {
	margin-bottom: 6px;
	color: #EB1E25;
	font-size: 11px;
	border: 1px solid #EE4B91;
	background: #FFF;
}#outerWrapper #innerwrapper #lowercontent .venuebottom .venuebox .venuebox #ticketinfo tr .concs {
	border-left: 1px dotted #F32626;
}

#content #innercontent fieldset {
	padding: 8px;
	background: url(siteimages/contentback.png);
	border: 1px solid #DBD4C4;
	margin-bottom: 25px;
}
#innercontent fieldset legend {
	font-weight: bold;
	font-size: 14px;
	color: #EB1E25;
	border: 1px solid #D7CFC2;
}
.errors {
	color: #EB1E25;
	font-weight: bold;
}

#outerWrapper #innerwrapper #content #innercontent a {
	color: #ED2025;
}
.larger {
	font-size: 125%;
	line-height: normal;
}
#outerWrapper #innerwrapper #footer p {
	color: #562B3B;
	margin: 0px;
	padding: 0px 0px 0px 30px;
	font-size: 11px;
}
#outerWrapper #innerwrapper #content #innercontent ul li {
	padding-bottom: 8px;
}
#footer2 {
	background: url(siteimages/footer2aback.png) repeat-x right bottom;
	height: 150px;
	position: fixed;
	bottom: 0px;
	margin: 0px;
	padding: 0px;
	clear: both;
}
#footer2 p {
	margin-left: auto;
	color: #EE2126;
	padding: 130px 0px 0px 20px;
	margin-top: 0px;
	font-size: 10px;
	text-align: left;
	margin-right: auto;
	width: 753px;
}
	.venuebox {
	margin-top: 10px;
	font-family: Verdana, Geneva, sans-serif;
	letter-spacing: normal;
	font-size: 11px;
	color: #000000;
	background-image: url(siteimages/contentback.png);
	background-repeat: repeat-y;
	padding-bottom: 12px;
}
.venuebox h2 {
	margin: 0 0 0.5em;
	padding: 6px 4px;
	font-size: 14px;
	color: #FFFFFF;
	font-family: Arial, Helvetica, sans-serif;
	font-weight: bold;
	background-color: #F89C1A;
	background-image: url(siteimages/H2back.jpg);
}
	.venuebox a {
	display: inline;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	margin: 0px;
	padding: 0px;
	color: #EE2626;
	}#outerWrapper #innerwrapper #rightColumn1 .venuebox p {
	padding-right: 6px;
	padding-left: 6px;
}
#outerWrapper #innerwrapper #content #innercontent div .venuebox h2 {
	color: #FFF;
	background: #F15F23 url(siteimages/H2back.jpg) left;
	font-size: 14px;
	font-weight: bold;
	margin: 0px;
}
#innerwrapper #content #innercontent th {
	color: #FFF;
	background: url(siteimages/navback.jpg) no-repeat right bottom;
	font-size: 14px;
	font-weight: bold;
	padding-bottom: 8px;
	margin-top: 16px;
	text-align: left;
	padding-left: 10px;
}
#outerWrapper #innerwrapper #content #innercontent .venuebox {
	margin-bottom: 12px;
	padding: 0px;
}
#outerWrapper #innerwrapper #content #innercontent div .venuebox p {
	padding-right: 8px;
	padding-left: 8px;
}
#outerWrapper #innerwrapper #content #innercontent table {
	margin-top: 12px;
	margin-bottom: 12px;
}
#outerWrapper #topNavigation ul {
	color: #FFF;
	margin: 0px;
	padding: 0px;
	list-style: none;
}
#outerWrapper #topNavigation ul li {
	float: left;
	border-right: 1px solid #FFF;
	padding: 0px;
	margin-top: 3px;
}
#outerWrapper #topNavigation ul li a {
	color: #FFF;
	font-family: Arial, Helvetica, sans-serif;
	font-weight: bold;
	font-size: 14px;
	text-decoration: none;
	width: 100px;
	display: block;
	padding-right: 12px;
	padding-left: 12px;
}
#outerWrapper #topNavigation ul .navend {
	border-style: none;
}
#outerWrapper #innerwrapper #content #innercontent td img {
	float: right;
}
#outerWrapper #innerwrapper .venuebottom {
	background: url(siteimages/contentbottom.png) no-repeat right bottom;
	padding-bottom: 32px;
}
#outerWrapper #innerwrapper #lowercontent {
	margin-left: 26px;
	margin-right: 236px;
	padding-top: 20px;
	padding-bottom: 33px;
}
#outerWrapper #innerwrapper #rightColumn1 .pinkbox .pinkcontent h2 {
	color: #FFF;
	font-size: 18px;
	padding-bottom: 8px;
	font-family: Georgia, "Times New Roman", Times, serif;
}
#outerWrapper #innerwrapper #lowercontent .venuebottom .venuebox .venuebox p {
	padding-right: 20px;
	padding-left: 20px;
}
.notice {
	color: #900;
	background: #FFC;
	border: 1px solid #ED2025;
	padding: 6px;
	font-weight: bold;
}
.smaller {
	font-size: 90%;
}
#innerwrapper #content #innercontent #logoholder img {
	padding: 0px;
	margin-top: 0px;
	margin-right: 15px;
	margin-bottom: 0px;
	margin-left: 0px;
}
#outerWrapper #innerwrapper #content #innercontent .venuebottom .venuebox .homeimageholder {
	min-height: 170px;
}
#outerWrapper #innerwrapper #content #innercontent #peoplelist {
	margin: 12px 0px;
	padding: 0px;
	list-style: none;
}
#outerWrapper #innerwrapper #content #innercontent #peoplelist li {
	background: url(siteimages/bullet.png) no-repeat left 3px;
	padding-left: 20px;
	padding-bottom: 12px;
}
#ticketinfo {
	margin-top: 12px;
	border: 1px solid #F78D1F;
	margin-left: 15px;
}
#outerWrapper #innerwrapper #lowercontent h3 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	color: #F32626;
}
#ticketinfo tr td {
	border-style: none;
}
#outerWrapper #innerwrapper #rightColumn1 .orangebox .orangecontent h2 {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 16px;
	color: #FFF;
	margin-bottom: 12px;
}
#outerWrapper #innerwrapper #rightColumn1 .orangebox .orangecontent #fundersbox {
	background: #FFF;
	padding: 4px;
	border: 1px solid #EE3733;
	text-align: center;
	margin-top: 12px;
	margin-bottom: 12px;
}
#outerWrapper #innerwrapper #gallerycontent #galleryinner {

}
#outerWrapper #innerwrapper #gallerycontent #galleryinner .winnerbox {
	padding-right: 15px;
	padding-left: 15px;
	width: 245px;
	text-align: center;
	color: #333;
	font-size: 11px;
	float: left;
	margin: 12px;
}
#outerWrapper #innerwrapper #content #innercontent .quote {
	margin-left: 20px;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 12px;
	padding: 8px 8px 12px;
	margin-bottom: 10px;
	border-bottom: 1px solid #F2EEEA;
	margin-right: 12px;
}
#outerWrapper #innerwrapper #gallerycontent #galleryinner p {
	margin-bottom: 12px;
}
