@charset "utf-8";
/* CSS Document */

body  {
	font: 12px 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(../images/bg.gif);
	background-repeat:repeat-x;
	background-color: #9B9980;
}
img {
	border: 0;
}
.container { 
	width: 887px;  /* this will create a container 80% of the browser width */
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
	overflow: hidden;
}
.header { 
	
} 
.topnav {
	background-image: url(../images/mainnavbg.gif);
	background-repeat: no-repeat;
	width: 890px;
	height: 32px;
	color: #FFFFFF;
}
.menu {
	padding-top: 7px;
	margin: 0;
}
.menu ul {
	padding: 0;
	margin: 0;
}
.menu li {
	padding-left: 15px;
	list-style-type: none;
	display: inline;
	margin: 0;
}
.menu a:link {
	color: #FFFFFF;
	text-decoration: none;
}
.menu a:hover {
	text-decoration: underline;
}
.menu a:visited {
	color: #CCCCCC;
	text-decoration: none;
}

.mainbg {
	background-image: url(../images/main-bg.gif);
	background-repeat: repeat-y;
	overflow: hidden;	
}

.sidebar1 {
	float: left; /* this element must precede in the source order any element you would like it be positioned next to */
	width: 19.2%; /* since this element is floated, a width must be given */
	background-color: #D4EFF6;
}
.mainmenu {
	
}
.mainmenu ul {
	padding: 0;
	margin: 0;
}
.mainmenu li {
	list-style-type: none;
	margin-left: 15px;
}
.mainmenu a:link {
	color: #000000;
	text-decoration: none;
}
.mainmenu a:hover {
	text-decoration: underline;
}
.mainmenu a:visited {
	color: #999999;
}

.sidebar2 {
	float: right; /* this element must precede in the source order any element you would like it be positioned next to */
	width: 23%; /* since this element is floated, a width must be given */
}

.mainContent {
	margin-left: 22%;
}
h2 {
	font-size: 20px;
	color: #09B9E6;
}

.footer { 
	font-size: 10px;
	color: #FFFFFF;
} 
.copyright {
	float: left;
	width: 420px;
}
.byline {
	float: right;
	width: 300px;
}
.byline a:link {
	color: #FFFFFF;
	font-weight: bold;
	text-decoration: none;
}
.byline a:hover {
	text-decoration: underline;
}
.byline a:visited {
	color: #FFFFFF;
	text-decoration: none;
}
.showdates {
	font-size: 16px;
	font-weight: bold;
}
.celebrating {
	font-size: 16px;
	font-weight: bold;
	color: #00B7E8;
}

/* Miscellaneous classes for reuse */
.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page The floated element must precede the element it should be next to on the page. */
	float: left;
	margin-right: 8px;
}
.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 its child floats */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}