/* This rule resets a core set of elements so that they will appear consistent across browsers. Without this rule, content styled with an h1 tag, for example, would appear in different places in Firefox and Internet Explorer because each browser has a different top margin default value. By resetting these values to 0, the elements will initially be rendered in an identical fashion and their properties can be easily defined by the designer in any subsequent rule. */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
}
/* The body is the outermost layout component and contains the visible page content. Setting properties for the body element will help to create consistent styling of the page content and more manageable CSS. Besides using the body element to set global properties, it is common to use the body element to set the background color of the page and create a centered container for the page content to display. */
body {
  background-color: #FFFFFF;
  color: #000;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: normal;
  margin: 0 0 0 0; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  padding: 0 0 0 0; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  text-align: center; /* Centers the page content container in IE 5 browsers. */
}
p {
	margin: 0 0 7px 0;
}
/* Commonly used to style page titles. */
h1 {
	color: #a3a2a2;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 25px;
	font-weight: bold;
	padding-bottom: 15px;
}
/* Commonly used to style section titles. */
h2 {
	color: #2f2f2f;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 20px;
	font-weight: bold;
	padding-bottom: 12px;
}
/* Commonly used to style section titles. */
h3 {
	color: #2f2f2f;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 15px;
	font-weight: bold;
	padding-bottom: 8px;
}
/* Sets the style for unvisited links. */
a,  a:link {
  color: #639c55;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: normal;
  text-decoration: underline;
}
/* Sets the style for visited links. */
a:visited {
  color: #639c55;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: normal;
  text-decoration: underline;
}
/* Sets the style for links on mouseover. */
a:hover {
  color: #639c55;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: normal;
  text-decoration: underline;
}
/* Sets the style for a link that has focus. */
a:focus {
  color: #639c55;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: normal;
  text-decoration: underline;
}
/* Sets the style for a link that is being activated/clicked. */
a:active {
  color: #639c55;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: normal;
  text-decoration: underline;
}
#topDiv {
  background-color: #FFFFFF;
  background-image: url(images/mainHeaderBG.gif);
  background-repeat: repeat-x;
  height: 185px;
  text-align: left;
}
#header {
	height: 185px;
	text-align: left;
	margin: 0 auto 0 auto;
	width: 900px;
	background-image: url(images/headerBG.jpg);
	background-repeat: no-repeat;
	background-position: center top;
}
/* This is a container for the page content. It is common to use the container to constrain the width of the page content and allow for browser chrome to avoid the need for horizontal scrolling. For fixed layouts you may specify a container width and use auto for the left and right margin to center the container on the page. IE 5 browser require the use of text-align: center defined by the body element to center the container. For liquid layouts you may simply set the left and right margins to center the container on the page. */
#outerWrapper {
  background-color: #fff;
  margin: 0 auto 0 auto; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  text-align: left; /* Redefines the text alignment defined by the body element. */
  width: 860px;
}
/* Contains the main page content. When using a mutliple column layout the margins will be set to account for the floated columns' width, margins, and padding. */
#outerWrapper #contentWrapper #content {
	height: auto;
	width: 860px;
	padding-bottom: 40px;
	margin-bottom: 30px;
	padding-top: 40px;
}
#outerWrapper #contentWrapper .clearFloat {
  clear: left;
  display: block;
}
#loginformPop {
	background-color:#000000;
	width: 100%;
}
.loginformInner {
	height:160px;
	width:306px;
	margin:0 0 10px 10px;
	color:#FFFFFF;
}
#topLoginForm div{
	height:25px;
}
.navBtn {
	height: 24px;
	background-image: url(images/mainNavBG.gif);
	background-repeat:repeat-x;	
	background-position: left;
	float: left;
	padding-top: 9px;
}
.navBtnOver {
	height: 24px;
	background-image: url(images/mainNavBGOver.gif);
	background-repeat:repeat-x;	
	background-position: left;
	float: left;
	padding-top: 9px;
}
.navBtnHome {
	height: 33px;
	background-image: url(images/mainNavBGHome.png);
	background-repeat:no-repeat;	
	float: left;
}
.navBtnHomeOver {
	height: 33px;
	background-image: url(images/mainNavBGHomeOver.png);
	background-repeat:no-repeat;	
	float: left;
}
.navBtnContact {
	height: 33px;
	background-image: url(images/mainNavBGContact.png);
	background-repeat:no-repeat;	
	float: left;
}
.navBtnContactOver {
	height: 33px;
	background-image: url(images/mainNavBGContactOver.png);
	background-repeat:no-repeat;	
	float: left;
}
.navBtnAbout {
	height: 33px;
	background-image: url(images/mainNavBGAbout.png);
	background-repeat:no-repeat;
}
.navBtnAbout a:link {
	height: 33px;
	background-image: url(images/mainNavBGAbout.png);
	background-repeat:no-repeat;
}
.navBtnAbout a:hover {
	height: 33px;
	background-image: url(images/mainNavBGAboutOver.png);
	background-repeat:no-repeat;
}
.navBtnAboutOver {
	height: 33px;
	background-image: url(images/mainNavBGAboutOver.png);
	background-repeat:no-repeat;	
	float: left;
}
.navBtnTraining {
	height: 33px;
	background-image: url(images/mainNavBGTraining.png);
	background-repeat:no-repeat;	
	float: left;
}
.navBtnTrainingOver {
	height: 33px;
	background-image: url(images/mainNavBGTrainingOver.png);
	background-repeat:no-repeat;	
	float: left;
}
.navBtnMedia {
	height: 33px;
	background-image: url(images/mainNavBGMedia.png);
	background-repeat:no-repeat;	
	float: left;
}
.navBtnMediaOver {
	height: 33px;
	background-image: url(images/mainNavBGMediaOver.png);
	background-repeat:no-repeat;	
	float: left;
}
.navBtnResources {
	height: 33px;
	background-image: url(images/mainNavBGResources.png);
	background-repeat:no-repeat;	
	float: left;
}
.navBtnResourcesOver {
	height: 33px;
	background-image: url(images/mainNavBGResourcesOver.png);
	background-repeat:no-repeat;	
	float: left;
}
.navTabText {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 15px;
	font-weight: normal;
	color: #FFFFFF;
	text-decoration: none;
}
.navTabText a:link {
	font-size: 15px;
	font-weight: bold;
	color: #FFFFFF;
	text-decoration: none;
}
.navTabText a:visited {
	font-size: 15px;
	font-weight: bold;
	color: #FFFFFF;
	text-decoration: none;
}
.navTabText a:hover {
	font-size: 15px;
	font-weight: bold;
	color: #FFFFFF;
	text-decoration: none;
}
.navTabText a:active {
	font-size: 15px;
	font-weight: bold;
	color: #FFFFFF;
	text-decoration: none;
}
.horizontalcssmenu{
	margin: 0px;
	padding: 128px 0 0 263px;
	width: auto;
}
.horizontalcssmenu ul{
	margin: 0 0 0 0;
	list-style-type: none;
	padding: 0 0 0 0;
}

/*Top level list items*/
.horizontalcssmenu ul li{
	position: relative;
	display: inline;
	float: left;
}

/*Top level menu link items style*/
.horizontalcssmenu ul li a{
	margin: 0 0 0 0;
	padding: 0 0 0 0;
	display: block;
}
.horizontalcssmenu ul li a:hover{
}	
/*Sub level menu*/
.horizontalcssmenu ul li ul{
	left: 0px;
	top: 0px;
	position: absolute;
	display: block;
	visibility: hidden;
	z-index: 100;
	margin: 0px;
	padding: 0px;
	border: 1px solid #333333;
}

/*Sub level menu list items*/
.horizontalcssmenu ul li ul li{
	display: inline;
}
/* Sub level menu links style */
.horizontalcssmenu ul li ul li a{
	width: 165px;
	color: #868686;
	font-size: 13px;
	font-weight: normal;
	text-align: left;
	font-family: Arial, Helvetica, sans-serif;
	text-decoration: none;
	height: 18px;
	padding-top: 2px;
	padding-bottom: 2px;
	display: block;
	background-color: #FFFFFF;
	padding-left: 5px;
	margin: 0px;
}
.horizontalcssmenu ul li ul li a:hover{
	color: #113706;
	font-weight: normal;
	font-size: 13px;
	text-decoration: none;
	background-color: #FFFFFF;
}

/* Holly Hack for IE \*/
* html .horizontalcssmenu ul li { float: left; height: 1%; }
* html .horizontalcssmenu ul li a { height: 1%;}


dl, dt, dd, ul, li {
margin: 0;
padding: 0;
list-style-type: none;
}
#menu {
	position: relative;
	left: 0px;
	width: 250px;
}
dl#menu {
}
dl#menu dt {
	height: 25px;
	text-align: left;
	vertical-align: middle;
	line-height: 25px;
}
dl#menu dd {
}
dl#menu li {
	text-align: left;
}
dl#menu dt a {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 18px;
	font-weight: normal;
	color: #868686;
	text-decoration: none;
	display: block;
	padding-left: 13px;
}
dl#menu dt a:hover {
	color: #639c55;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 18px;
	text-decoration: none;
	font-weight: normal;
}
.formText {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #8D8D8D;
	padding-right: 5px;
}
.formInput {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: normal;
	color: #666666;
	border: 1px solid #CCCCCC;
	padding: 2px;
}
.profileName {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 18px;
	font-weight: bold;
	color: #FFFFFF;
	padding-bottom: 5px;
}
.profileNav {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: normal;
	color: #FFFFFF;
}
.profileNav a:link{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: normal;
	color: #FFFFFF;
	text-decoration: none;
}
.profileNav a:visited{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: normal;
	color: #FFFFFF;
	text-decoration: none;
}
.profileNav a:hover{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: normal;
	color: #b1eca3;
	text-decoration: none;
}
.profileNav a:active{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: normal;
	color: #FFFFFF;
	text-decoration: none;
}
.profileText {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: normal;
	color: #666666;
	text-decoration: none;
}
.profileText a:link {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: normal;
	color: #b1eca3;
	text-decoration: none;
}
.profileText a:visited {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: normal;
	color: #b1eca3;
	text-decoration: none;
}
.profileText a:hover {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: normal;
	color: #b1eca3;
	text-decoration: underline;
}
.profileText a:active {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: normal;
	color: #b1eca3;
	text-decoration: none;
}
.videoText, .smalltext {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-weight: normal;
	color: #4a403d;
	text-decoration: none;
}
#botDiv {
	background-color: #e5e5e5;
	height: 200px;
}
#footer {
	background-color: #e5e5e5;
	height: 150px;
	width: 850px;
	margin: 0 auto 0 auto;
}
.footerLinks {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: normal;
	color: #000000;
}
.footerLinks a:link {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: normal;
	color: #000000;
	text-decoration: none;
}
.footerLinks a:visited {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: normal;
	color: #000000;
	text-decoration: none;
}
.footerLinks a:hover {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: normal;
	color: #639c55;
	text-decoration: none;
}
.footerLinks a:active {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: normal;
	color: #000000;
	text-decoration: none;
}
.copyright {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	font-weight: normal;
	color: #535252;
}
.copyright a:link {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	font-weight: normal;
	color: #639c55;
}
.copyright a:visited {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	font-weight: normal;
	color: #639c55;
}
.copyright a:hover {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	font-weight: normal;
	color: #639c55;
}
.copyright a:active {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	font-weight: normal;
	color: #639c55;
}
.alert_box {
	width:270px;
	height:20px;
	background:#639c55;
	border:1px dashed #A30505;
	color:#FFFFFF;
	padding:15px;
	text-align:center;
	font-size:12px;
}
.messageName {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #639c55;
}
.messageBody {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #a3a2a2;
	margin: 0 10px;
}
.messageReply {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 9px;
	color: #a3a2a2;
	padding:0 0 0 5px;
}
.messageBox {
	border: 1px solid #E0DEDF;
	background-color: #EEEEEE;
}
.messageCell {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-weight: bold;
	color: #FFFFFF;
	background:#221e1f;
}
