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

/* colors at a glance:   ------------------------------------------------------------------------------------  */
/*
logo blue: #223e99
logo green: #9dc9ba     light logo green: #bfded3     palest logo green: #f2f8f6
logo purple: #7e0c6e
*/

body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	color: #000000;
	background-color: #bfded3;
	margin: 0; /* zeroing the margin and padding of 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 */
	}
p#jump {
	font-size: 60%;
	text-align: right;
	margin: -1px 10px 0 0;
	}
img {
	border-style: none;
	}
p, li {
	font-size: 80%;
	margin-bottom: 0.7em;
	}	
h3 {
	color: #7e0c6e;
	background-color: inherit;
	font-size: 1.0em;
	margin-bottom: -0.5em;
	}	
h4 {
	color: #7e0c6e;
	background-color: inherit;
	text-align: center;
	margin: 15px 0 -10px 0;
	}
p#participant {
	font-style: italic;
	font-size: 75%;
	}
p.date {
	font-style: italic;
	font-size: 70%;
	}
#container h2 {
	margin: 25px 0 -7px 0;
	color: #7e0c6e;
	background-color: inherit;
	}
#container { 
	width: 100%;
	color: inherit;
	background-color: #ffffff;
	/*margin: 0 auto;  the auto margins (in conjunction with a width) center the page if needed */
	text-align: left; /* this overrides the text-align: center on the body element. */
	}  
div#header { 
	color: #000000;
	background-color: #ffffff;
	margin-top: 3px;
	padding: 0px 10px;
	background-image: url(assets/mindstylz_header.jpg);
	background-repeat: no-repeat;
	background-position: 280px 0px;
} 
#header p { 
	font-size: 80%;
	text-align: right;
	padding: 0px 20px;
	margin-bottom: -22px;
	} 
#dividerTop {
	width: 100%;
	background-color: #7e0c6e;
	color: inherit;
	}  
#header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	}

/* links: tabbing uses active for IE and focus for Mozilla */
a {
	background-color: transparent;
	color: #223e99;
	border: none;
	}
a:visited {
	background-color: transparent;
	color: #7e0c6e;
	border: none;
	}
a:hover, a:active, a:focus, a.cursorfocus:hover, a.cursorfocus:active, a.cursorfocus:focus {
	background-color: #7e0c6e;
	color: #ffffff;
	border: none;
	}
a:hover img, a:active img, a:focus img, a.cursorfocus:hover img, a.cursorfocus:active img, a.cursorfocus:focus img {
	background-color: #ffffff;
	color: inherit;
	border: none;
	}

/* sidebar: */
#sidebar1 {
	float: left; 
	width: 11em; /* since this element is floated, a width must be given */
	padding: 5px 5px 5px 10px;
	}
#sidebar1 li {
	list-style-type: none;
	margin: 2px 0px 2px -30px;
	font-weight: bold;
	}
#sidebar1 a {
	display: block; 
	text-decoration: none;
	border: none;
	color: black;
	background: #bfded3;
	padding: 5px;
	}
#sidebar1 a:hover {
	background-color: #7e0c6e; 
	color: #ffffff; 
	}
#sidebar1 a:active {
	background-color: #7e0c6e; 
	color: #9dc9ba; 
	}

#sidebar2 {
	float: right; 
	width: 11em; /* since this element is floated, a width must be given */
	color: inherit;
	background-color: #ffffff; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px 15px 5px 5px;
	}	
#sidebar1 h3, #sidebar1 p, #sidebar2 p, #sidebar2 h3:first-child {
	margin: 10px;
	}
#sidebar2 h3 {
	margin: 40px 10px 10px;
	}
	
/* Main Content: */
#mainContent {
 	margin: 0 12.3em; /* the right margin creates the space down the right side of the page. */ 
	padding: 2em 3em; /* padding here creates white space "inside the box." */
	color: #000000;
	background-color: #f2f8f6;
	} 
#mainContent h1 {
	color: #83A99C;
	background-color: inherit;
	font-size: 1.5em;
 	}

ul.eventlist {
	list-style: none;
	}
li.when {
	font-weight: bold;
	padding-top: 1em;
	}
ul.eventlist li {
	margin-top: -0.7em;
	}

p.box {
	color: #000000;
	background-color: #bfded3;
	padding: 1em;
	margin: 1em 5em;
}

/* Footer: */
#footer { 
	font-size: 80%;
	padding: 40px 10px 0px;
	color: inherit;
	background-color: #ffffff;
	} 
#footer p {
	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 */
	}
#footer a {
	color: inherit;
	background-color: #ffffff;
	}
	
/* 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 */
	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 a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
	}
