@charset "UTF-8";


body {
	font: 100% Arial, Helvetica, sans-serif;
	background: #000;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	color:#FFFFFF; /* sets default text color if any text falls outside the container div */
	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 */
	color: #000000;
}

/* ------------------------ BEGIN global Hyperlink Styles -------------------- */
body a {
	color:#FFFF33; /* set a global hyperlink default color */
}
body a:hover {
	color: magenta;
	text-decoration:underline;
}
body a:link {
	text-decoration: none;
}
body a:visited {
	text-decoration: none;
}
body a:active {
	text-decoration: none;
}

#container {
	width: 800px;
	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. */
	color:#FFFFFF; /* globally sets default text color */
}

/* ------------------------ BEGIN Top Header Styles -------------------- */
#header {
	background: #DDDDDD; 
	padding: 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. */
}
#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;
	font-size:large; /* this text setting should not be needed - only nav links planned in header div */
}

/* ---------------------------- BEGIN Navigation Styles -------------------- */
#nav {
	background-image:url(images/template101b.jpg);
	background-repeat:no-repeat;
	background-position:top left;
	margin:0px;
	padding:5px;
	list-style:none;
	clear:both;
	width:790px;
}
#nav ul {
	margin: 0, auto;
	font-size:12px;
	color:white; /* makes the dividers white*/
	display:inline-block;
	list-style:none;
}
#nav li{
	display:block;
	float:left;
	width:auto;	
}
#nav li:first-child {
	margin-left:-35px; /* used to help center the nav, this pseudo-class not recognized in IE 6 */
}
#nav a{
	margin-left:5px;
	margin-right:5px;
}
#nav a:hover{
	color:#FFF;
}
/* ------------------------ BEGIN Main Content Styles -------------------- */
#mainContent {
	padding: 5px; 
	background:#000;
}
#mainContent h1{
	font-size:large;
	color:#FFFF66;
	margin-top:10px;
	margin-bottom:2px;
}
#mainContent h2, #mainContent table caption { 
	font-size:medium;
	margin-top:20px;
	margin-bottom:4px;
	text-align:left;
	font-weight:bold;  /* I tried to match table captions as close as possible to h2s */
}
 #mainContent table caption {
 	margin-bottom:15px;
 	/* table captions needed an extra space after */
 }
#mainContent h3{
	font-size:medium;
	margin-top:16px;
	margin-bottom:2px;	
}
#mainContent h4{
	font-size:medium;
	margin-top:12px;
	margin-bottom:2px;
}
#mainContent h5{
	font-size:medium;
	margin-top:12px;
	margin-bottom:2px;
}
#mainContent h6{
	font-size:medium;
	margin-top:12px;
	margin-bottom:2px;
}
#mainContent p, #mainContent address{
	font-size:small;
	margin-top:12px;
	margin-bottom:2px;
}
#mainContent ul{
	font-size:smaller;
	margin-top:3px;
	margin-left:6px;
	margin-bottom:2px;
	list-style-position:inside;
}
#mainContent img{
	margin:12px;
}
/* ------------------------ BEGIN Main Content Table Styles -------------------- */
#mainContent table {
	font-size:smaller;
	background-color:#303;
	border-collapse:collapse;	
}
#mainContent th{
	font-size:small;
	background-color:#902bc3;	/* 902bc3 is a purple color in Header */
}
#mainContent th, td{
	border:1px #000 solid;
	padding:6px;
}
#mainContent tr.even td {
	background-color:#4a004b;
}

/* ------------------------ BEGIN Sidebar Styles -------------------- */
#sidebarLeft {
	padding: 5px;
	padding-left:10px;	
	margin-top: 20px;
	margin-right: 15px;
	margin-bottom: 5px;
	margin-left: 0px;
	background: #003333;
	width:175px;
	float:left;
}
#sidebarRight {
	padding: 5px;
	margin-top: 20px;
	margin-right: 0px;
	margin-bottom: 5px;
	margin-left: 10px;
	width:250px;
	float:right;
}
#sidebarLeft h1, #sidebarRight h1{
	font-size:medium;
	text-align:center;
}
#sidebarLeft h2, #sidebarRight h2{
	font-size:small;
	text-align:center;
}
#sidebarLeft h3, #sidebarRight h3{
	font-size:small;
	text-align:center;
	margin-bottom: 0px;
}
#sidebarLeft p, #sidebarRight p{
	font-size:small;
}
#sidebarLeft ul, #sidebarRight ul{
	font-size:x-small;
}
#sidebarLeft hr, #sidebarRight hr{
	color:#FFFF66;/* IE uses the color */
	background-color:#FFFF66; /* Firefox/Safari uses background-color */
	height:1px;
	width:150px;
}
#sidebarLeft p.time {
	text-align:center;
	margin-top:0px;
}

/* ------------------------ BEGIN Miscellaneous Styles -------------------- */
.bio {
	font-weight:bolder;
	font-stretch:semi-expanded;
	font-size:larger; 
	color: #FFFF33; /* use this to distinguish a proper name at paragraph start */
} 
.clearFloats {
	clear:both; /* use this class on an element that needs to clear a float */
}
.centeredImage {
	text-align:center;
	margin-top:0px;
	margin-bottom:0px;
	padding:0px;
}

.Q {
	font-weight: bold;
	color: #CC66FF; /* color the letter Q in the FAQ page */
} 
.A {
	font-weight: bold;
	color: #FFFF33; /* color the letter A in the FAQ page */
}
.question {
	font-weight:bold;
	font-family:Arial, Helvetica, sans-serif;
}
.workshopLevel, .directions {
	color: #FFFF33;
	margin-top:0;
	margin-bottom:0;
}
.reg_problems{
	font-size: large;
	font-weight: bold;
	text-align: center;
	color: #FFFF33
}
/* ------------------------ BEGIN Bottom Footer Styles -------------------- */
#footer {
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#000;
}
#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 */
	font-size:xx-small;
	color:#CCCCCC;
	text-align:center;
}
