@charset "UTF-8";
body  {
	font-family: Futura, GillSans, Gill Sans, Helvetica, Arial, Verdana, sans-serif;
	background: #CCCCCC;
	margin: 0; /* zero margin and padding of body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* centers container in IE 5* browsers, text then set to left aligned default in #container selector */
	font-size: 12px;
	color: #888888;
}

.global #container {
	width: 900px;  /* create a container nn% of browser width */
	background: #FFFFFF;
	margin: 0 auto; /* auto margins (in conjunction with a width) center the page */
	border: 1px solid #666666;
	text-align: left; /* overrides text-align: center on body element. */
} 

.global #header {
	padding: 0 0 0 210px;  /* matches left alignment of elements in divs that appear beneath */
} 
.global #header h1 {
	font-size: 30px;
	color: #888888;
	letter-spacing: 0.2em;
	margin-top: 10px;
	margin-bottom: 1px
}
.global #header h2 {
	font-size: 16px;
	font-style: italic;
	color: #F1DD16;
	letter-spacing: 0.3em;
	padding-left: 0px;
	padding-bottom: 10px; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	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 */
}

.global #sidebar {
	float: left; 
	width: 180px; /* since this element is floated, a width must be given */
	padding: 0 30px 10px 0px; /* top and bottom padding create visual space within this div  */
}
.global #sidebar h6 {
	margin: 130px 0px 0px 0px; /* left and right margin should be given to every element placed in side column */
}
.global #sidebar p {
	font-size: 12px;
	color: #666666;
	line-height: 16px;
	margin: 0px 20px 10px 20px;
}
.global #sidebar a {
	color: #00C247;
	text-decoration: none;
} 
.global #sidebar a:hover {
	color: #00C247;
	text-decoration: underline;
} 
.global #sidebar img {
	float: left;
	position: relative;
}
.global #sidebar #SideBarText {
	float: left;
	position: relative;
	left: 10px;
	top: 30px;
	bottom: 100px;
}

.global #menubar { 
	width: 690px;
	border-top: 1px solid #00C247;
	margin: 0 0 0px 210px;
	font-size: 14px;
} 

.global #mainContent { 
	width: 690px;
	margin: 0 0 10px 210px /* right margin in percentages or pixels, creates the space down the right side of the page. */
} 
.global #mainContent h1 {
	margin-top: 25px;
	margin-bottom: 21px;
	font-size: 21px;
	font-weight: 400;
	color: #444444;
	line-height: 24px;
	letter-spacing: 0.2em;
} 
.global #mainContent h2 {
	font-size: 18px;
	font-style: italic;
	font-weight: 400;
	color: #444444;
	line-height: 16px;
	letter-spacing: 0.1em;
	margin-top: 12px;
} 
.global #mainContent h3 {
	font-size: 16px;
	color: #444444;
	line-height: 20px;
	letter-spacing: 0.2em;
	font-weight: 500;
} 
.global #mainContent p {
	font-size: 14px;
	color: #888888;
	line-height: 20px;
	margin-right: 20px;
} 
.global #mainContent li {
	font-size: 14px;
	color: #888888;
	line-height: 14px;
	margin-right: 20px;
} 
.global #mainContent a {
	color: #666666;
} 
.global #mainContent a:hover {
	color: #00C247;
	text-decoration: none;
} 
th {
	font-size: 14px;
	color: #888888;
}
td {
	font-size: 14px;
	color: #888888;
}

.global #footer { 
	background:#DDDDDD;
	border-top: 1px solid #F1DD16;
} 
.global #footer p {
	font-style: italic;
	margin: 0; /* when in first element of footer avoids the possibility of margin collapse - a space between divs */
	padding: 5px 10px 10px 210px; /* create space, as margin but without the margin collapse issue */
}
.global #footer a {
	color: #666666;
	text-decoration: none;
} 

/* Miscellaneous classes for reuse */
.fltrt { /* float an element right in your page, must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* placed on a div or break element as final element before close of container that fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}
