@charset "UTF-8";
body  {
	margin: 0; /* it's good practice to zero the margin and padding of the 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 */
	color: #333;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 80%;
	background-image: url(i/main_bg.jpg);
}
#top {
	background-image: url(i/menu_bg.jpg);
	background-repeat: repeat-x;
	background-position: center top;
	height: 170px;
}
#header {
	height: 170px;
	width: 900px;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
	background-image: url(i/menubar.jpg);
	background-repeat: no-repeat;
	background-position: left top;
	padding: 0;
} 
#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: 0px; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	text-align: left;
	height: 140px;
	width: 280px;
	float: left;
	position: relative;
}
#header #menu {
	float: right;
	width: 600px;
	position: relative;
	text-align: right;
	vertical-align: middle;
	padding-top: 40px;
}
#header #menu ul{
	display: block;
	margin: 0px;
	padding: 0px;
	list-style-image: none;
	list-style-type: none;
	position: relative;
	overflow: hidden;
	float: right;
}
#header #menu ul li{
	background-image: url(i/sticks.jpg);
	background-repeat: no-repeat;
	background-position: right center;
	float: left;
	font-size: 0.8em;
	height: 66px;
	min-height: 66px;
	width: 70px;
	text-align: center;
	vertical-align: middle;
	color: #FFF;
	display: block;
	overflow: hidden;
}
#header #menu ul li.last {
	float: left;
	height: 66px;
	min-height: 66px;
	width: 70px;
	text-align: center;
	vertical-align: middle;
	color: #FFF;
	display: block;
	background-image: none;
}
#header #menu ul li a  {
	color: #FFF;
	text-decoration: none;
	display: table;
	text-align: center;
	width: 70px;
	height: 66px;
	*display: block;
	*position: relative;
	font-weight: bold;
}
#header #menu ul li a:hover  {
	color: #000;
	text-decoration: none;
}

#header #menu ul li a span {
	display: table-cell;
	vertical-align: middle;
	*display: block;
	*position: absolute;
	*text-align: center;
	*left: 0px;
	*width: 100%;
	*cursor: pointer;
	*top: expression(this.parentElement.clientHeight / 2 - this.clientHeight / 2);
}
#header #menu ul li .active {
	color: #000;
	font-weight: bold;
}
#header #menu ul .active   {
	background-image: url(i/active.jpg);
	background-repeat: no-repeat;
	background-position: center center;
}

#container {
	width: 900px;
	text-align: left;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	background-color: #FFF;
	padding: 0px;
} 
#sidebar1 {
	float: right; /* since this element is floated, a width must be given */
	width: 300px;
	position: relative;
	vertical-align: top;
	display: block;
	background-color: #CAD1FD;
	padding: 0px;
	margin-top: 0px;
	margin-right: 11px;
	margin-bottom: 0px;
	margin-left: 0px;
}
#sidebar1 p a {
	color: #2C2FA4;
	text-decoration: none;
}
#sidebar1 p a:hover {
	color: #2C2FA4;
	text-decoration: underline;
}
#sidebar1 h1 {
	color: #FFF;
	margin: 0px;
	text-indent: 42px;
	font-size: 1.2em;
	background-image: url(i/header_bg.gif);
	background-repeat: no-repeat;
	background-position: left center;
	padding-top: 6px;
	padding-right: 0px;
	padding-bottom: 8px;
	padding-left: 0px;
	background-color: #4B59E5;
}
#sidebar1 h2 {
	font-size: 1em;
	color: #333;
	border-bottom-width: 1px;
	border-bottom-style: dotted;
	border-bottom-color: #E8E8E8;
}
#sidebar1 ul  {
	list-style-image: none;
	list-style-type: none;
}
#sidebar1 ul li  {
	list-style-image: url(i/mini_arrow.gif);
}
#sidebar1 ul li a {
	color: #282B9B;
	text-decoration: none;
}

#sidebar1 .sidetop {
	background-image: none;
	margin: 0px;
	padding-top: 6px;
	padding-right: 0px;
	padding-bottom: 6px;
	padding-left: 6px;
	background-color: #C9D1FE;
}
#sidebar1 .sidetop a {
	color: #272A96;
	text-decoration: none;
}
#sidebar1 .sidelow a:hover {
	color: #900;
	text-decoration: underline;
}
#sidebar1 .sidetop p {
	margin: 0px;
	padding-top: 4px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
#sidebar1 .sidetop h1 {
	color: #FFF;
	margin: 0px;
	text-indent: 42px;
	font-size: 1.2em;
	background-image: url(i/topheader_bg.gif);
	background-repeat: no-repeat;
	background-position: left center;
	padding-top: 6px;
	padding-right: 0px;
	padding-bottom: 8px;
	padding-left: 0px;
	background-color: #C9D1FE;
	line-height: 50px;
}
#sidebar1 .sidetop h2 {
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #F5DB8E;
}
#sidebar1 .sidetop h3 {
	padding: 0px;
	margin: 0px;
	font-size: 2em;
	color: #900;
}
#sidebar1 .sidetop ul li a {
	color: #900;
	text-decoration: none;
}
#sidebar1 .sidetop ul li {
	list-style-image: none;
	list-style-type: square;
}

#sidebar1 .sidelow {
	background-image: none;
	background-color: #FAEBC4;
	padding-top: 6px;
	padding-right: 0px;
	padding-bottom: 6px;
	padding-left: 6px;
}
#sidebar1 .sidelow a {
	color: #900;
	text-decoration: none;
}
#sidebar1 .sidetop a:hover {
	color: #272A96;
	text-decoration: underline;
}
#sidebar1 .sidelow p {
	margin: 0px;
	padding-top: 4px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
#sidebar1 .sidelow h1 {
	color: #FFF;
	margin: 0px;
	text-indent: 42px;
	font-size: 1.2em;
	background-image: url(i/lowheader_bg.gif);
	background-repeat: no-repeat;
	background-position: left center;
	padding-top: 6px;
	padding-right: 0px;
	padding-bottom: 8px;
	padding-left: 0px;
	background-color: #FAEBC4;
	line-height: 50px;
}
#sidebar1 .sidelow h2 {
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #F5DB8E;
}
#sidebar1 .sidelow h3 {
	padding: 0px;
	margin: 0px;
	font-size: 2em;
	color: #900;
}
#sidebar1 .sidelow ul li a {
	color: #900;
	text-decoration: none;
}
#sidebar1 .sidelow ul li {
	list-style-image: url(i/mini_arrow.gif);
	list-style-type: none;
}

#mainContent {
	padding: 0;
	line-height: 140%;
	margin: 0;
	width: 580px;
} 
#mainContent a {
	color: #282B9B;
	text-decoration: none;
}
#mainContent a:hover {
	color: #282B9B;
	text-decoration: underline;
}
#mainContent ul  {
	list-style-image: none;
	list-style-type: none;
}
#mainContent ul li  {
	list-style-image: url(i/mini_arrow.gif);
	list-style-type: none;
}
#mainContent ul li a {
	color: #282B9B;
	text-decoration: none;
}
#mainContent p {
	padding-left: 42px;
}
#mainContent .front {
	background-image: url(i/frontheader_bg.gif);
	line-height: 50px;
}
#mainContent h1 {
	color: #FFF;
	margin: 0px;
	text-indent: 42px;
	font-size: 1.2em;
	background-image: url(i/header_bg.gif);
	background-repeat: no-repeat;
	background-position: left center;
	padding-top: 8px;
	padding-right: 0px;
	padding-bottom: 8px;
	padding-left: 0px;
}
#mainContent h2 {
	color: #5A5DE4;
	margin: 0px;
	padding-top: 6px;
	padding-right: 0px;
	padding-bottom: 6px;
	padding-left: 22px;
	font-size: 1.2em;
}
#mainContent h3 {
	color: #5A5DE4;
	margin: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 6px;
	padding-left: 0px;
}
#mainContent .boxed {
	margin: 0px;
	padding: 4px;
	float: left;
	width: 48%;
	height: 160px;
	overflow: hidden;
	display: block;
}
#mainContent .boxed ul {
	left: 12px;
	display: block;
	margin-left: 86px;
}
#mainContent .boxed ul li {
}
#mainContent .boxed h2 {
	font-size: 1em;
	color: #333;
	border-bottom-width: 1px;
	border-bottom-style: dotted;
	border-bottom-color: #E8E8E8;
}
#mainContent .boxed .image {
	border: 1px solid #E8E8E8;
	float: left;
	padding: 2px;
	margin-top: 8px;
	margin-right: 8px;
	margin-bottom: 8px;
	margin-left: 8px;
}
#mainContent .link span {
	padding-left: 22px;
	font-size: 0.7em;
	color: #666;
	letter-spacing: .3em;
	background-image: url(i/external.gif);
	background-repeat: no-repeat;
	background-position: right center;
	line-height: 12px;
	margin-left: 12px;
	padding-left: 16px;
	padding-right: 16px;
	margin-right: 12px;
	font-weight: normal;
}
#mainContent .link span a {
	text-decoration: none;
	color: #666;
	font-weight: normal;
}
#mainContent p.link {
	font-size: .9em;
}
.instructors {
	float: left;
	width: 270px;
	margin: 2px;
	padding-top: 20px;
	padding-right: 2px;
	padding-bottom: 2px;
	padding-left: 2px;
	border-top-width: 1px;
	border-right-width: 2px;
	border-bottom-width: 2px;
	border-left-width: 1px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #E8E8E8;
	border-right-color: #CCC;
	border-bottom-color: #CCC;
	border-left-color: #E8E8E8;
}
.instructors .name {
	font-size: 1.4em;
	font-weight: bold;
}
.instructors .photo {
	margin: 5px;
	padding: 5px;
	float: left;
	height: 110px;
	width: 110px;
	border: 1px solid #E8E8E8;
	overflow: hidden;
}
.instructors .details {
	margin-left: 135px;
	font-size: 0.9em;
	color: #333;
}
.instructors .keys {
	clear: left;
	height: 24px;
}
#bottom {
	background-color: #E5F2FF;
	margin: 0px;
	padding: 0px;
	border-top-width: 4px;
	border-top-style: solid;
	border-top-color: #282B9B;
	background-image: url(i/bg_footer.jpg);
	background-repeat: repeat-x;
	background-position: center top;
}
#footer {
	padding: 0;
	text-align: left;
	width: 900px;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
	font-size: 0.9em;
	color: #292C9D;
} 
#footer h1 {
	background-color: #555DE7;
	margin: 4px;
	padding: 4px;
	color: #FFF;
	font-size: 1.2em;
	background-image: url(i/header_bg.gif);
	background-repeat: no-repeat;
	background-position: right center;
}
#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: 2px; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}
#footer p a {
	color: #292C9D;
	text-decoration: none;
}
#footer p a:hover {
	color: #000;
	text-decoration: none;
}
#footer .underlined {
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #B9C7F4;
	margin-top: 12px;
	margin-right: 0px;
	margin-bottom: 12px;
	margin-left: 0px;
}
#footer .first {
	float: left;
	width: 30%;
	display: block;
	position: relative;
}
#footer .first ul li {
	list-style-image: none;
	list-style-type: none;
}
#footer .first ul li a {
	color: #282B9B;
	text-decoration: none;
}
#footer .second {
	width: 38%;
	position: relative;
	display: block;
	padding: 2px;
	margin-left: 278px;
}
#footer .second ul li {
	list-style-image: none;
	list-style-type: none;
	padding-top: 2px;
}
#footer .second ul li a {
	color: #282B9B;
	text-decoration: none;
}
#footer .second h3 {
	margin: 0px;
	padding-top: 2px;
	padding-right: 0px;
	padding-bottom: 2px;
	padding-left: 0px;
}
#footer .third {
	float: right;
	width: 30%;
	display: block;
	position: relative;
	margin: 0px;
	padding: 0px;
}
#footer .third h3 {
	margin: 0px;
	padding-top: 2px;
	padding-right: 0px;
	padding-bottom: 2px;
	padding-left: 0px;
}
#footer .third ul li {
	list-style-image: none;
	list-style-type: none;
	padding-top: 2px;
}
#footer .third ul li a {
	color: #282B9B;
	text-decoration: none;
}
#lowbar {
	background-color: #000;
	font-size: .8em;
	margin: 0px;
	padding-top: 4px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
#footermenu {
	text-align: left;
	margin-right: auto;
	margin-left: auto;
	width: 900px;
}
#footermenu p {
	margin: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 12px;
	padding-left: 0px;
}
#footermenu p a {
	color: #E5F2FF;
	text-decoration: none;
}

#copyright {
	text-align: right;
	color: #E8E8E8;
	width: 900px;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
	padding: 8px;
}

#copyright a {
	margin: 0;
	border: 0;
	color:#CE5100;
	text-decoration: none;
}

#copyright a:active, #copyright a:hover {
	color:#621E16;
	margin: 0;
}

.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;
}
.clearleft { /* 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:left;
    height:0;
    font-size: 1px;
    line-height: 0px;
}
.clearright { /* 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:right;
    height:0;
    font-size: 1px;
    line-height: 0px;
}
#fullContent form .fields fieldset .fields li {
	background-image: none;
	list-style-type: none;
}
.fields ol {
	list-style-type: none;
}
.fields li {
	list-style-type: none;
	padding-bottom: 6px;
}

.fields  fieldset {
	border: 1px solid #CCCCCC;
	padding-left: 12px;
	font-size: 1.2em;
	color: #333333;
	display: block;
	margin: 12px;
}
.fields .highlight {
	display: block;
	background-color: #C00;
	height: 40px;
	line-height: 40px;
	width: 90%;
	color: #FFF;
}
.fields  .required  {
	border: 1px solid #FF6600;
}
.fields .req {
	font-size: .64em;
	font-weight: normal;
}
.fields select {
	width: 90%;
}
.fields textarea {
	width: 90%;
	border: 1px solid #CCCCCC;
}
.fields #imgcode {
	width: 6em;
	border: 1px solid #FF6600;
	font-size: 1.2em;
}
.fields span {
	display: block;
	font-size: .9em;
	font-weight: bold;
}
.fields input {
	border: 1px solid #CCCCCC;
}
.wide {
	width: 90%;
}
.none {
	width: auto;
	border: none;
	margin: 0px;
	padding: 0px;
	display: inline;
}

.options ul {
	list-style-type: none;
}
.options  li {
	list-style-type: none;
	width: 33%;
	float: left;
	display: block;
	padding-bottom: 10px;
}
.options span {
	display: block;
	font-size: 0.8em;
	font-weight: normal;
}
.fields .submit {
	width: 120px;
	height: 30px;
	float: right;
	margin-right: 60px;
}
.advert   {
	padding: 4px;
	text-align: center;
	margin: 4px;
}
#table {
	padding: 8px;
	width: 400px;
	margin-top: 8px;
	margin-right: auto;
	margin-bottom: 8px;
	margin-left: auto;
}
.row0 {
	background-color: #424FCA;
	color: #FFF;
}
.row1 {
	background-color: #E8E8E8;
}
.row2 {
	background-color: #E5F2FF;
}
.right  {
	text-align: right;
}
/* Pull Quote */
.pull_quote blockquote {
	display: block;
	font-style: italic;
	font-weight: normal;
	color: #666;
	font-size: .9em;
	padding-top: 0;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 10px;
}
.pull_quote blockquote:before, .pull_quote blockquote:after {
	color: #E8E8E8;
	display: block;
	font-size: 500%;
	width: 10px;
	font-style: normal;
	font-family: Georgia, "Times New Roman", Times, serif;
}
.pull_quote blockquote:before {
	content: open-quote;
	height: 0;
	margin-left: -0.55em;
}
.pull_quote blockquote:after {
	content: close-quote;
	height: 10px;
	margin-top: -0.55em;
	margin-left: 101%;
	margin-bottom: .55em;
}
.imagel {
	float: left;
	margin: 4px;
	padding: 4px;
	border: 1px solid #E8E8E8;
}
.imager {
	float: right;
	margin: 4px;
	padding: 4px;
	border: 1px solid #E8E8E8;
}
.imagec {
	margin-right: auto;
	margin-left: auto;
}
