@charset "utf-8";
body  {
	background: #ffffff;
	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: #000000;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 9pt;
}

a:link {
	color: #56bb64;
}
a:hover {
	color: #FFFFFF;
}
a:visited {
	color: #56bb64;
}

.gemT2 #container {
	width: 684px;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
	background-image: url(images/leftColumn_BG.jpg);
	background-repeat: repeat-y;
	background-position: 18px;
} 
.gemT2 #header {

}
.gemT2 #menu {
	color:#000000;
	background-image: url(images/secondary_menu.jpg);
	height: 45px;
	text-align: center;
	padding-top: 38px;
	font-size: 9pt;
	font-weight: bold;
}

.gemT2 #menu a:link{
	color:#BE4A26;
	text-decoration: none;
}
.gemT2 #menu a:hover {
	color:#CC0000;
	text-decoration: none;
}
.gemT2 #menu a:visited{
	color:#BE4A26;
	text-decoration: none;
}

#menu a.CURRENT:link {
	color:#BE4A26;
	text-decoration: underline;
}
.gemT2 #menu a.CURRENT:hover {
	color:#CC0000;
	text-decoration: underline;
}
.gemT2 #menu a.CURRENT:visited {
	color:#BE4A26;
	text-decoration: underline;
}

.gemT2 #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 147px;
	padding-top: 15px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 18px;
	margin-left: 10px;
	letter-spacing: -1px;
	color: #000000;
}

.gemT2 #sidebar1 a:link {
	color:#000000;
	font-weight:bold;
	font-size:11pt;
	font-family: Arial, Helvetica, sans-serif;
	text-decoration: none;
}
.gemT2 #sidebar1 a:hover {
	color:#ffffff;
	font-weight:bold;
	font-size:11pt;
	font-family: Arial, Helvetica, sans-serif;
	text-decoration: underline;
}
.gemT2 #sidebar1 a:visited {
	color:#000000;
	font-weight:bold;
	font-size:11pt;
	font-family: Arial, Helvetica, sans-serif;
	text-decoration: none;
}

.gemT2 #mainContent {
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 10px;
	margin-left: 195px;
	padding-top: 5px;
	padding-right: 20px;
	padding-bottom: 10px;
	padding-left: 20px;
} 
.gemT2 #copyright {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 8pt;
	color: #FFFFFF;
	text-align: center;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #fd5958;
	padding-top: 0px;
	padding-bottom: 25px;
	background-color: #000000;
	margin: 0px;
}

.smallTitle {
	font-weight:bold;
	color:#449DEE;
}

.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;
}
