body {
	margin: 0;
	font-family: verdana, arial, helvetica, sans-serif;
	background-color: #FFFFFF;
}

/* Has a background image to create the patterned panel down the left side of the page. */

#container {
	padding: 0;
	margin: 0;
	background-image: url(images/container_bg.jpg);
	background-repeat: repeat-y;
	background-position: left top;
}

/* Banner near top of page that says the name of the whole site - also has crane background image. */

#main-title {
	margin-bottom: 0;
	margin-left: 0;
	margin-right: 0;
	padding-right: 30px;
	font-size: 10pt;
	letter-spacing: 5px;
	text-align: right;
	background-image: url(images/header_main.jpg);
	background-repeat: no-repeat;
	background-position: left top;
	background-color: #669999;
	height: 100px;
	color: #003366;
	padding-top: 0px;
	font-weight: bold;
}
#main-title a:link, #main-title a:visited {
	color: #660000;
}

#main-title a:hover {
	color: #660000;
	border-bottom: 3px solid #660000;
}


/* Not contained in the main-text element. Has background image to create effect of continuation of crane image. */

h1 {
	font-size: 16px;
	padding-bottom: 0px;
	padding-top: 0px;
	padding-left: 160px;
	padding-right: 0;
	font-weight: bold;
	background-image: url(images/header_mid.jpg);
	background-repeat: no-repeat;
	background-position: left top;
	border-top: 1px solid #660000;
	border-bottom: 5px solid #660000;
	color: #FFFFFF;
	background-color: #669999;
	margin: 0;
}

/* Styles for the main text on the page. */

#main-text {
	margin-top: 0;
	margin-bottom: 0;
	margin-left: 160px;
	margin-right: 220px;
	padding-right: 10px;
	background-color: #f3f3f3;
	padding-top: 20px;
	padding-left: 10px;
	border-left: 1px solid #660000;
	border-right: 5px solid #660000;
	height: 100%;
}

p, ul, ol, table {
margin: 0;
padding-top: 5px;
padding-bottom: 5px;
text-align: justify;
font-size: .8em;
line-height: 140%;
}

ol, ul {
margin-left: 25px;
}

h2 {
font-size: .9em;
font-weight: bold;
margin: 0;
padding-top: 5px;
padding-bottom: 5px;
}
h3 {
font-size: .8em;
font-weight: bold;
margin: 0;
padding-top: 5px;
padding-bottom: 5px;
}
a:link, a:visited {
	text-decoration: none;
	font-weight: bold;
	color: #B36E11;
}

a:hover {
	text-decoration: none;
	font-weight: bold;
	border-bottom: 3px solid #660000;
}

/* Styles for the navbar on the left side. */

#left-menu {
	position: absolute;
	top: 140px;
	left: 0;
	width: 160px;
	font-size: 12px;
	height: 400px;
	padding-top: 25px;
	padding-bottom: 25px;
	font-weight: bold;
	border-top: 1px solid #003366;
	border-bottom: 1px solid #003366;
	background-color: #003366;
}

#left-menu a:link, #left-menu a:visited {
	display: block;
	color: #CCCCCC;
	text-align: right;
	padding-right: 7px;
	padding-bottom: 8px;
	padding-top: 8px;
	border-bottom: 1px transparent solid;
}

#left-menu a:hover, #left-menu a.current {
	color: #B36E11;
	border-bottom: 1px solid #669999;
}

/* Styles for the pullquote on the right side. */

#right-column {
	position: absolute;
	top: 160px;
	right: 0;
	width: 220px;
	color: #003366;
	background-image: url(images/right_bg.jpg);
	background-repeat: no-repeat;
	background-position: center 100%;
	background-color: #FFFFFF;
}


#right-column p {
	font-style: italic;

	padding-left: 10px;
	padding-right: 5px;
	padding-top: 50px;
	line-height: 1.5em;
	text-align: left;
}

#right-column strong {
font-style: italic;
font-size: 1.1em;
}

#footer {
	text-align: left;
	margin-bottom: 0;
	padding-top: 6px;
	padding-bottom: 6px;
	font-size: .8em;
	margin-top: 0;
	background-image: url(images/footer_bg.jpg);
	background-repeat: repeat-y;
	background-color: #669999;
	border-top: 5px solid #660000;
	padding-left: 50%;
}

#footer a:link, #footer a:visited {
	color: #660000;
}

#footer a:hover {
	color: #660000;
	border-bottom: 3px solid #660000;
}
.floatleft {
	float: left;
	margin: 0 10px 10px 0px;
	padding: 10px;
}
.floatright {
	float: right;
	margin: 0 10px 10px 0px;
	padding: 10px;
}
/* This is the selector for the main Accordion container. For our default style,
 * we draw borders on the left, right, and bottom. The top border of the Accordion
 * will be rendered by the first AccordionPanelTab which never moves.
 *
 * If you want to constrain the width of the Accordion widget, set a width on
 * the Accordion container. By default, our accordion expands horizontally to fill
 * up available space.
 *
 * The name of the class ("Accordion") used in this selector is not necessary
 * to make the widget function. You can use any class name you want to style the
 * Accordion container.
 */
.Accordion {
	border-left: 1px solid #660000;
	border-right: 1px solid #660000;
	border-bottom: 1px solid #660000;
	overflow: hidden;
}

/* This is the selector for the AccordionPanel container which houses the
 * panel tab and a panel content area. It doesn't render visually, but we
 * make sure that it has zero margin and padding.
 *
 * The name of the class ("AccordionPanel") used in this selector is not necessary
 * to make the widget function. You can use any class name you want to style an
 * accordion panel container.
*/
.AccordionPanel {
	margin: 0px;
	padding: 0px;
}

/* This is the selector for the AccordionPanelTab. This container houses
 * the title for the panel. This is also the container that the user clicks
 * on to open a specific panel.
 *
 * The name of the class ("AccordionPanelTab") used in this selector is not necessary
 * to make the widget function. You can use any class name you want to style an
 * accordion panel tab container.
 *
 * NOTE:
 * This rule uses -moz-user-select and -khtml-user-select properties to prevent the
 * user from selecting the text in the AccordionPanelTab. These are proprietary browser
 * properties that only work in Mozilla based browsers (like FireFox) and KHTML based
 * browsers (like Safari), so they will not pass W3C validation. If you want your documents to
 * validate, and don't care if the user can select the text within an AccordionPanelTab,
 * you can safely remove those properties without affecting the functionality of the widget.
 */
.AccordionPanelTab {
	background-color: #FFFFFF;
	border-top: 1px solid #660000;
	border-bottom: 1px solid #295F7D;
	margin: 0px;
	padding: 2px;
	cursor: pointer;
	-moz-user-select: none;
	-khtml-user-select: none;
	font-size: 80%;
	font-weight: bold;
	color: #B36E11;
}

/* This is the selector for a Panel's Content area. It's important to note that
 * you should never put any padding on the panel's content area if you plan to
 * use the Accordions panel animations. Placing a non-zero padding on the content
 * area can cause the accordion to abruptly grow in height while the panels animate.
 *
 * Anyone who styles an Accordion *MUST* specify a height on the Accordion Panel
 * Content container.
 *
 * The name of the class ("AccordionPanelContent") used in this selector is not necessary
 * to make the widget function. You can use any class name you want to style an
 * accordion panel content container.
 */
.AccordionPanelContent {
	overflow: auto;
	margin: 0px;
	padding: 0px;
	height: 300px;
}
.AccordionPanelContent p {
	margin-right: 5px;
	margin-left: 5px;
}

/* This is an example of how to change the appearance of the panel tab that is
 * currently open. The class "AccordionPanelOpen" is programatically added and removed
 * from panels as the user clicks on the tabs within the Accordion.
 */
.AccordionPanelOpen .AccordionPanelTab {
	background-color: #EEEEEE;
	color: #660000;
}

/* This is an example of how to change the appearance of the panel tab as the
 * mouse hovers over it. The class "AccordionPanelTabHover" is programatically added
 * and removed from panel tab containers as the mouse enters and exits the tab container.
 */
.AccordionPanelTabHover {
	color: #660000;
}
.AccordionPanelOpen .AccordionPanelTabHover {
	color: #660000;
}

/* This is an example of how to change the appearance of all the panel tabs when the
 * Accordion has focus. The "AccordionFocused" class is programatically added and removed
 * whenever the Accordion gains or loses keyboard focus.
 */
.AccordionFocused .AccordionPanelTab {
	background-color: #FFFFFF;
}

/* This is an example of how to change the appearance of the panel tab that is
 * currently open when the Accordion has focus.
 */
.AccordionFocused .AccordionPanelOpen .AccordionPanelTab {
	background-color: #FFFFFF;
}
#calendar {
}
#calendar h3 {
	font-family: "Times New Roman", Times, serif;
	font-size: 1.1em;
	font-weight: bold;
	text-transform: uppercase;
	background-color: #003366;
	background-position: center top;
	text-align: center;
	color: #FFFF99;
}#calendar p {
	font-size: 10px;
	font-weight: bold;
	line-height: 12px;
	text-align: left;
	color: #CC0000;
}
#calendar .black {
	color: #000000;
}
