@charset "UTF-8";

/* SpryAccordion.css - version 0.4 - Spry Pre-Release 1.6.1 */

/* Copyright (c) 2006. Adobe Systems Incorporated. All rights reserved. */

/* 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.
 */
#main .Accordion {
	border-left: solid 1px gray;
	border-right: solid 1px black;
	border-bottom: solid 1px gray;
	overflow: hidden;
	margin-top: 40px;
	margin-bottom: 10px;
	position: relative;
}

/* 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;
}
.AccordionPanelTab {
	border-bottom: solid 1px #666;
	margin: 0px;
	padding: 2px;
	cursor: pointer;
	height: 70px;
	-moz-user-select: none;
	-khtml-user-select: none;
	color: #fff;
	background: #093 url(../Images/accordHeading_arrow_down.green.gif) no-repeat;
}
/* 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;
	background: #f8f4dd;
	

}

/* 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 .AccordionPanel {
	background: #FFC;
}
/* 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 {
	background: #ff3939;
}
.AccordionPanelOpen .AccordionPanelTabHover {
	background: #FF3939;
}*/

/* 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: #FF3939;
}
*/
.twoColFixLtHdr .AccordionPanelTabHistory {
	background: #39F url(../Images/accordHeading_history_blue.gif) 	no-repeat left top;
	color: #fff; 
	border-bottom: solid 1px #666;
	margin: 0px;
	padding: 2px;
	cursor: pointer;
	height: 70px;
	-moz-user-select: none;
	-khtml-user-select: none;
}

.twoColFixLtHdr .AccordionPanelTabMembership {
	background: #39F url(../Images/accordHeading_membership_blue.gif);
	color: #fff;
	border-bottom: solid 1px #666;
	margin: 0px;
	padding: 2px;
	cursor: pointer;
	height: 70px;
	-moz-user-select: none;
	-khtml-user-select: none;
	
}
.twoColFixLtHdr .AccordionPanelTabTrips {
	background: #39F url(../Images/accordHeading_trips_blue.gif);
	color: #fff;
	border-bottom: solid 1px #666;
	margin: 0px;
	padding: 2px;
	cursor: pointer;
	height: 70px;
	-moz-user-select: none;
	-khtml-user-select: none;
}
.twoColFixLtHdr .AccordionPanelTabMeetings {
	background: #39F url(../Images/accordHeading_meetings_blue..gif);
	color: #fff;
	border-bottom: solid 1px #666;
	margin: 0px;
	padding: 2px;
	cursor: pointer;
	height: 70px;
	-moz-user-select: none;
	-khtml-user-select: none;
}
.twoColFixLtHdr .AccordionPanelTabSpecial {
	background: #39F url(../Images/accordHeading_special_blue..gif);
	color: #fff;
	border-bottom: solid 1px #666;
	margin: 0px;
	padding: 2px;
	cursor: pointer;
	height: 70px;
	-moz-user-select: none;
	-khtml-user-select: none;
}
.twoColFixLtHdr .AccordionPanelContent {
	overflow: auto;
	margin: 0px;
	padding: 0px;
	height: 300px;
	background: #FFC;
}

.twoColFixLtHdr .AccordionPanelOpen .AccordionPanelTabHistory {
	background: #7A8DA1 url(../Images/accordHeading_history.grey.gif);
}
.twoColFixLtHdr .AccordionPanelOpen .AccordionPanelTabMembership{
	background: #7A8DA1 url(../Images/accordHeading_membership_gray..gif);
}
.twoColFixLtHdr .AccordionPanelOpen .AccordionPanelTabTrips{
	background: #7A8DA1 url(../Images/accordHeading_trips_gray..gif);
}
.twoColFixLtHdr .AccordionPanelOpen .AccordionPanelTabMeetings{
	background: #7A8DA1 url(../Images/accordHeading_meetings_gray..gif);
}
.twoColFixLtHdr .AccordionPanelOpen .AccordionPanelTabSpecial{
	background: #7A8DA1 url(../Images/accordHeading_special_gray..gif);
}
/* 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 {
	background: #39F;
}
.AccordionPanelOpen .AccordionPanelTabHover {
	background: #39F;
}

/*.AccordionFocused .AccordionPanelTab {
	background-color: #3399FF;
}*/


/*.twoColFixLtHdr .AccordionFocused .AccordionPanelOpen .AccordionPanelTabHistory {
	background: #7A8DA1 url(../Images/accordHeading_history.grey.gif);
}*/

.twoColFixLtHdr  #mainContent #main .AccordionPanelContent p {
	margin-top: 20px;
	font-size: 0.9em;
	line-height: 1.4;
	padding: 0px 10px 0px 10px;
}
.twoColFixLtHdr #mainContent #main .AccordionPanelContent img {
	display: inline;
	margin: 0px 10px 0px 0px;
	
}

.AccordionPanelOpen .AccordionPanelTab {	
	background: #FF3939 url(../Images/accordHeading_arrow_up_red.gif) no-repeat;
}
.AccordionPanelContent p {
	margin-top: 20px;
	font-size: .9em;
	line-height: 1.4;
	padding: 0px 10px 0px 10px;
}
.AccordionPanelContent li {
	list-style: square inside;
	text-indent: 30px;
	font-size: 0.9em;
	line-height: 1.4em;
}
.AccordionPanelTab h4 {
	color: #FFF;
	font-size: 1.6em;
	text-align: left;
	padding-left: 80px;
	margin: 0px;
	line-height: 2.2em;
	font-weight: bolder;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-style: italic;
	padding-top: 5px;
}

#mainContent .AccordionPanelContent img {
	display: inline;
	margin: 0px 10px 0px 0px;
}
table#northeastLinks  {
	width: 95%;
	font-family: Verdana, Geneva, sans-serif;
	border-collapse: collapse;
	border: 1px solid #333;
	margin: 20px auto 30px;
}

table#northeastLinks thead {
	font-size: 1.6em;
	font-weight: bold;
	text-align: center;
	background: #093;
	color: #fff;
	line-height: 50px;
}
table#northeastLinks td {
	border: 1px solid #333;
	font-size: 0.8em;
	text-align: center;
	padding: 5px;
}

table#northeastLinks tr:hover {
	background: #FfC;
	border: 1px solid #333;
}
table#northeastLinks thead tr:hover {
	background: transparent;
	border-color: #333;
	color: #fff;
}
table#northeastLinks a:link {
	color: #000;
	text-decoration: none;
	font-weight: normal;
	font-style:normal;
}
table#northeastLinks a:visited{
	text-decoration: none;
	color: #000;
	font-weight: normal;
	font-style:normal;
}
table#northeastLinks a:hover {
	text-decoration: underline;
	color: #ff3939;
	border: none;
	font-weight: normal;
	font-style:normal;
}
table#northeastLinks a:active {
	text-decoration: none;
	border: none;
	font-weight: normal;
	font-style:normal;
}
table#northeastLinks caption {
	font-size: 1.5em;
	font-weight: bold;
	height: 20px;
	padding-bottom: 10px;
	color: #333;
}
	
table#westernLinks  {
	width: 95%;
	font-family: Verdana, Geneva, sans-serif;
	border-collapse: collapse;
	border: 1px solid #333;
	margin: 20px auto 30px;
}

table#westernLinks thead {
	font-size: 1.6em;
	font-weight: bold;
	text-align: center;
	background: #093;
	color: #fff;
	line-height: 50px;
}
table#westernLinks td {
	border: 1px solid #333;
	font-size: 0.8em;
	text-align: center;
	padding: 5px;
}

table#westernLinks tr:hover {
	background: #FfC;
	border: 1px solid #333;
}
table#westernLinks thead tr:hover {
	background: transparent;
	border-color: #333;
	color: #fff;
}
table#westernLinks a:link {
	color: #000;
	text-decoration: none;
	font-weight: normal;
}
table#westernLinks a:visited{
	text-decoration: none;
	color: #000;
	font-weight: normal;
}
table#westernLinks a:hover {
	text-decoration: underline;
	color: #ff3939;
	border: none;
	font-weight: normal;
}
table#westernLinks a:active {
	text-decoration: none;
	border: none;
	font-weight: normal;
}
table#westernLinks caption {
	font-size: 1.5em;
	font-weight: bold;
	height: 20px;
	padding-bottom: 10px;
	color: #333;
}
table#otherLinks  {
	width: 50%;
	font-family: Verdana, Geneva, sans-serif;
	border-collapse: collapse;
	border: 1px solid #333;
	margin: 20px auto 30px;
}

table#otherLinks thead {
	font-size: 1.6em;
	font-weight: bold;
	text-align: center;
	background: #093;
	color: #fff;
	line-height: 50px;
}
table#otherLinks td {
	border: 1px solid #333;
	font-size: 0.8em;
	text-align: center;
	padding: 5px;
}

table#otherLinks tr:hover {
	background: #FfC;
	border: 1px solid #333;
}
table#otherLinks thead tr:hover {
	background: transparent;
	border-color: #333;
	color: #fff;
}
table#otherLinks a:link {
	color: #000;
	text-decoration: none;
	font-weight: normal;
	font-style:normal;
}
table#otherLinks a:visited{
	text-decoration: none;
	color: #000;
	font-weight: normal;
	font-style:normal;
}
table#otherLinks a:hover {
	text-decoration: underline;
	color: #ff3939;
	border: none;
	font-weight: normal;
	font-style:normal;
}
table#otherLinks a:active {
	text-decoration: none;
	border: none;
	font-weight: normal;
	font-style:normal;
}
table#otherLinks caption {
	font-size: 1.5em;
	font-weight: bold;
	height: 20px;
	padding-bottom: 10px;
	color: #333;
}	

table#presidents {
	width: 75%;
	font-family: Verdana, Geneva, sans-serif;
	border-collapse: collapse;
	border: 1px solid #333;
	margin: 20px auto 30px;
}

table#presidents thead {
	font-size: 1.6em;
	font-weight: bold;
	text-align: center;
	background: #093;
	color: #fff;
	line-height: 50px;
}
table#presidents td {
	border: 1px solid #333;
	font-size: 0.8em;
	text-align: center;
	padding: 5px;
	font-weight: bold;
}

/*table#northeastLinks tr:hover {
	background: #FfC;
	border: 1px solid #333;
}
table#northeastLinks thead tr:hover {
	background: transparent;
	border-color: #333;
	color: #fff;
}
table#northeastLinks a:link {
	color: #000;
	text-decoration: none;
	font-weight: normal;
}
table#northeastLinks a:visited{
	text-decoration: none;
	color: #000;
	font-weight: normal;
}
table#northeastLinks a:hover {
	text-decoration: underline;
	color: #ff3939;
	border: none;
	font-weight: normal;
}
table#northeastLinks a:active {
	text-decoration: none;
	border: none;
	font-weight: normal;*/
/*}
table#presidents caption {
	font-size: 1.5em;
	font-weight: bold;
	height: 20px;
	padding-bottom: 10px;
	color: #333;
}*/
	

.bolditaliclarger {
	font-size: 1.2em;
	font-style: italic;
	font-weight: bold;
}
.identh1tab {
	padding: 20px 0px 0px 80px;
}
