@charset "UTF-8";

/***rounded border gadgets***/
#id_z7uu1Q2 {
    border-radius: 16px;
    overflow: hidden; /* keeps content inside shape */
	border: 1px solid #004B80  /* optional */
}
#id_jCROpZ8 {
    border-radius: 16px;
    overflow: hidden; /* keeps content inside shape */
	border: 1px solid #004B80  /* optional */
}
#id_czZNBXi {
    border-radius: 16px;
    overflow: hidden; /* keeps content inside shape */
	border: 1px solid #004B80  /* optional */
}
#id_67J5Hrf {
    border-radius: 16px;
    overflow: hidden; /* keeps content inside shape */
	border: 1px solid #004B80  /* optional */
}


/***rounded board photos***/
#id_67J5Hrf img {
    border-radius: 50%;
    object-fit: cover;
	width: 100px;
    height: 100px;
	border: 5px solid #004B80  /* optional */
}

/*** event list ***/
div.WaGadgetEvents ul.boxesList [id^="idUpcomingEvent_"] {
	padding: 0px !important;
	margin: 0px !important;
	border-radius: 2px;
}  
.boxFooterContainer {
	padding: 0;
	text-align: left;
	visibility: hidden;
}
.WaGadgetEvents.WaGadgetEventsStateList h3.sectionTitle { /* list header */
	font-family: Arial;
	margin:  0 0 1em 0;
	padding: 0;
	color: #000066;
	font-size: 1.8em;
	font-weight: bold;
	text-transform: capitalize;
}
.WaGadgetEvents .boxOuterContainer .boxHeaderOuterContainer .boxHeaderContainer h4.boxHeaderTitle a { /* list item header */
	font-family: Arial;
	color: #000;
	font-size: 1em;
	text-decoration: none;
}


.WaGadgetMenuHorizontal .menuInner ul.firstLevel > li > .item > a:hover {
	text-decoration: underline;
}


.WaGadgetMenuHorizontal .menuInner ul.firstLevel > li > .item > a {
	text-decoration: underline;
}


/*** menu gadget ***/
.WaGadgetMenuHorizontal .menuInner ul.firstLevel > li > .item > a {
	text-transform: capitalize;
}

h1, h2, h3, h4, h5, h6 {
	font-weight: normal;
	font-family:Helvetica, Arial, sans-serif;
	font-style:normal;
	font-variant:normal;
	hyphens:none; -webkit-hyphens:none; -ms-hyphens:none;
	line-height: 130%;
	color: #000066;
}
h1 {
	font-size: 1.8em;
	font-weight: bold;
	padding-top: 1em;
	margin-top: 1em;
	margin-right: 0px;
	margin-bottom: 0.5em;
	margin-left: 0px;
}
h2 {
	font-size: 1.47em;
	margin-top: 1em;
	margin-right: 0px;
	margin-left: 0px;
	padding: 0px;
	margin-bottom:0.5em;
}
h3 {
	font-size: 1.2em;
	margin-top: 1em;
	margin-right: 0px;
	margin-bottom: 0.5em;
	margin-left: 0px;
}
h4 {
	font-size: 1em;
}
body {
	max-width: 900px;
	margin-left: 30pt;
	text-indent: 00px;
	font-family: Georgia, Times, "Times New Roman", serif;
	font-size: 1em;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	line-height: 1.2em;
	hyphens:auto; -webkit-hyphens:auto; -ms-hyphens:auto;
}

table {
	font-family: Helvetica, sans-serif, Arial;
}

ul  {
	font-family: Helvetica, sans-serif, Arial;
}
li {
	font-family: Helvetica, sans-serif, Arial;
	font-size: 1em;
	line-height: 130%;
	margin-top: 1em;
	margin-bottom: 1em;
}

ol  {
	font-family: Helvetica, sans-serif, Arial;
}

p {
	font-family: Helvetica, Arial, sans-serif;
	font-size: 1em;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	line-height: 1.3em;
    margin-top: 1.5em;
	margin: 0.5em 0px 0px 0px;
	padding: 3px 0px 3px 0px;
	text-decoration: none;
	white-space: normal;
}

.float_right {
	float: right;	padding: 3px;	margin: 3px;
}
.float_left {
	float: left;	padding: 3px;	margin: 3px;
}
	
table {
	border:thick #CCC;
	}
table.table1, td.table1 {
	border-color: #CCC;
	border-width: 1px;
   	vertical-align: top;
}


/*!
Pure v1.0.0
Copyright 2013 Yahoo!
Licensed under the BSD License.
https://github.com/yahoo/pure/blob/master/LICENSE.md
https://purecss.io
*/
.pure-table {
    /* Remove spacing between table cells (from Normalize.css) */
    border-collapse: collapse;
    border-spacing: 0;
    empty-cells: show;
    border: 1px solid #cbcbcb;
}

.pure-table caption {
    color: #000;
    font: italic 85%/1 arial, sans-serif;
    padding: 1em 0;
    text-align: center;
}

.pure-table td,
.pure-table th {
    border-left: 1px solid #cbcbcb;/*  inner column border */
    border-width: 0 0 0 1px;
    font-size: inherit;
    margin: 0;
    overflow: visible; /*to make ths where the title is really long work*/
    padding: 0.5em 1em; /* cell padding */
    vertical-align: text-top; /* added 2018-10-21 by mb */
}

/* Consider removing this next declaration block, as it causes problems when
there's a rowspan on the first cell. Case added to the tests. issue#432 */
.pure-table td:first-child,
.pure-table th:first-child {
    border-left-width: 0;
}

.pure-table thead {
    background-color: #e0e0e0;
    color: #000;
    text-align: left;
    vertical-align: bottom;
}

/*
striping:
   even - #fff (white)
   odd  - #f2f2f2 (light gray)
*/
.pure-table td {
    background-color: transparent;
}
.pure-table-odd td {
    background-color: #f2f2f2;
}

/* nth-child selector for modern browsers */
.pure-table-striped tr:nth-child(2n-1) td {
    background-color: #f2f2f2;
}

/* BORDERED TABLES */
.pure-table-bordered td {
    border-bottom: 1px solid #cbcbcb;
}
.pure-table-bordered tbody > tr:last-child > td {
    border-bottom-width: 0;
}


/* HORIZONTAL BORDERED TABLES */

.pure-table-horizontal td,
.pure-table-horizontal th {
    border-width: 0 0 1px 0;
    border-bottom: 1px solid #cbcbcb;
}
.pure-table-horizontal tbody > tr:last-child > td {
    border-bottom-width: 0;
}

