@charset "UTF-8";

body  {
	font: 95% Verdana, Arial, Helvetica, sans-serif;
	line-height: 1.3em;
	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 */
	background-color: #999;  /* grey */
	color# 333333;  /* text is dark grey */ 
}

#container { 
	width: 960px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	/*  background: #c9c699;   */ 
	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... */
	background-color: #FFF;
} 

#header { 
	background: #FFFFFF; 
	margin: 0;  /* 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. */
	height: 150px;   /*  graphic 130px +  25px graphic  */
} 

#navigation {
	font-size: 90%;
	background-color: #000C9E;
	text-align: center;
}

#navigation ul {
	list-style: none;
	margin: 0;
	padding: 0;
	width: 100%;
}

#navigation li {
	display: inline;
}

#navigation a:link, #navigation a:visited {
	padding: 0 20px;
	line-height: 35px;
	color: #FFFFFF;
	text-decoration: none;
	text-transform:uppercase;
}

#navigation a:hover {
	color: #99CCFF;    /* light blue  */
}

#navigation a.active {
       color: #000C9E;   /*  regular blue */
	   font-weight: bold;
       background: #FFFFFF;
	   padding: 10px 20px;
}

#columnsholder {
	margin:0;
	padding:0;
	width: 685px;
	float: left;
}

#sidebar-events {
	float: left; /* since this element is floated, a width must be given */
	width: 310px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	margin:0;
	padding:0;
}

#sidebar-events h1 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1.5em;
	font-weight: bold;
	padding: 0 10px 0 15px;
	margin-bottom: 0;
	color: #EB5E2C;  /* orange */
}

#sidebar-events h2 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1.2em;
	font-weight: bold;
	font-style:italic;
	padding: 0 10px 0 15px;
	margin-bottom: 0;
	color: #EB5E2C;  /* orange */
}

#sidebar-events p {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 0.9em;
	padding: 5px 10px 0 15px;
	margin: 0;
	margin-bottom: 5px;
	color: #333333;
	line-height: 1.3em;
}

#sidebar-events.small {
	font-size: .7em;
}

#mainContent {
	width: 375px;
	float: right;
	margin: 0; /* the right and left margins on this div element creates the two outer columns on the sides of the page. No matter how much content the sidebar divs contain, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the sidebar spaces when the content in each sidebar ends. */
	padding: 0; /* remember that padding is the space inside the div box and margin is the space outside the div box */
} 


#mainContent h1 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1.5em;
	font-weight: bold;
	padding: 0 15px 0 10px;
	margin-bottom: 0;
	color: #EB5E2C;  /* orange */
}

#mainContent h2 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1.2em;
	font-weight: bold;
	font-style:italic;
	padding: 0 15px 0 10px;
	margin-bottom: 0;
	color: #EB5E2C;  /* orange */
}

#mainContent h3 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1.0em;
	font-weight: bold;
	padding: 0 15px 0 10px;
	margin-bottom: 0;
	color: #EB5E2C;  /* orange */
}

#mainContent p {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 0.9em;
	padding: 7px 15px 5px 15px; 
	margin: 0;
	margin-bottom: 5px;
	color: #333;
	line-height: 1.4em;
}

#mainContent.small {
	font-size: .7em;
}

#sidebar {
	float: right; /* since this element is floated, a width must be given */
	width: 250px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	padding: 0; /* padding keeps the content of the div away from the edges */
	margin:0;
}


#sidebar h1 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1.5em;
	font-weight: bold;
	padding: 5px 15px 5px 0px; 
	margin-bottom: 0;
	color: #EB5E2C;  /* orange */
}

#sidebar h2 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1.2em;
	font-weight: bold;
	font-style:italic;
	padding: 5px 15px 5px 0px; 
	margin-bottom: 0;
	color: #EB5E2C;  /* orange */
}


p {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 0.9em;
	padding: 5px 15px 5px 0px; 
	margin: 0;
	margin-bottom: 5px;
	color: #333;
	line-height: 1.3em;
}

.orange { color: #EB5E2C; }


/* all links in the website but navigation & footer */
a:link { color: #000C9E; text-decoration: none; }
a:visited { color: #000C9E; text-decoration: none; }
a:active { color: #000C9E; text-decoration: none; }
a:hover { color: #FF6600; text-decoration: none; }  /* orange */ 
a { text-decoration: none;}


#footer { 
	padding: 0; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background-color: #CCCCCC;   /* grey */
} 

#footer p {
	font-size: 85%;
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	color: #333333;  /* grey */
}

#footer a:link { color: #000C9E; text-decoration: none; }
#footer a:visited { color: #000C9E; text-decoration: none; }
#footer a:active { color: #000C9E; text-decoration: none; }
#footer a:hover { color: #FF6600; text-decoration: none; }  /* orange */ 
#footer a { text-decoration: none;}

.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 */
	float: left;
	margin-right: 8px;
	margin-top: 1px;
}
.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;
}

