@charset "utf-8";
/* CSS Document */
body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	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: #000000;
	background-image:url('../../assets/images/grad.png');
	background-repeat:repeat-x;
}
img {
	border: 1px;
}
#background {
	background-image:url('../../assets/images/background.png');
	background-repeat: repeat;
}

#container {
	width: 800px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
				   /* the auto margins (in conjunction with a width) center the page */
	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;
} 
#header {
   /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
	padding-top: 0;
	padding-bottom: 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: 0 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
#background {
	padding: 10px;
}
#border {
	background-color:#900;
	margin: 2px;
	padding: 2px;
}
#mainContent {
	background-color: #fff;
	margin: 5px;
	padding: 12px;
	border: 5px solid #60a7e9;
}
#mainContent .home {
	font-size: 11pt;
}
#mainContent p {
	font-size: 10pt;
}
#mainContent ul {
	font-size: 10pt;
}
#mainContent img {
	border:1px solid #021a40;	
}
#mainContent table {
	width: 755px;
	text-align:center;
}
#mainContent #tickets img {
	border:0;	
}
#navigation {
	text-align: center;	
	width: 600px;
	margin-left: auto;
	margin-right: auto;
}
#sponsors {
	font-size: 9pt;
}
#sponsors img {
	border: 0;
}
#sponsors #text {
	margin: 10 10 10 10;
	text-align: left;
}
#footer { 
	padding: 0 145px 0; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	font-size: 7pt;
	color: #606060;
}
#footer img { 
	border: 0;	
} 
#footer i { 
	display: inline-block;
	vertical-align: middle;
} 
#footer a { 
	color: #606060;
	text-decoration: none;
} 
.leftFloat {
	float: left;
	padding-top: 10px;
	padding-left: 10px;
	padding-right: 20px;
	padding-bottom: 10px;
	font-size: 7pt;
}
.rightFloat {
	float: right;
	padding-top: 10px;
	padding-left: 20px;
	padding-right: 10px;
	padding-bottom: 10px;
	font-size: 7pt;
}
.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;
}
.spacer {
	margin-top: 4px;
}
.curvyCorners {
  -webkit-border-radius:20px;
  -moz-border-radius:20px;
} 

