@charset "UTF-8";
body  {
	font: 80% Verdana, Arial, Helvetica, sans-serif;
	background: #676767;
	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;
	line-height: 1.3;
}
.twoColFixLtHdr #container { 
	width: 998px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	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. */
	
} 
.twoColFixLtHdr #header { 
	background: #FFFFFF; 
	padding: 0 0px 0 0px;  /* 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. */
} 
.twoColFixLtHdr #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; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
.twoColFixLtHdr #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 521px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	background: #FFFFFF; /* the background color will be displayed for the length of the content in the column, but no further */
	/*padding: 0px 0px 0px 0px;*/
	border-right-style: solid;
	border-width: 1px;
	border-color: #1773b5;
	font-family: Verdana, Arial, Helvetica, sans-serif;
}

.twoColFixLtHdr #sidebar2 {
	float: right; /* since this element is floated, a width must be given */
	width: 467px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	background: #FFFFFF; /* the background color will be displayed for the length of the content in the column, but no further */
	/*padding: 0px 0px 0px 0px;*/
}


.twoColFixLtHdr #sidebar1_a {
	float: left; /* since this element is floated, a width must be given */
	width: 600px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	background: #FFFFFF; /* the background color will be displayed for the length of the content in the column, but no further */
	/*padding: 0px 0px 0px 0px;*/
	border-right-style: solid;
	border-width: 1px;
	border-color: #1773b5;
	font-family: Verdana, Arial, Helvetica, sans-serif;
}

.twoColFixLtHdr #sidebar1_a_redoutline {
	float: left; /* since this element is floated, a width must be given */
	width: 600px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	background: #FFFFFF; /* the background color will be displayed for the length of the content in the column, but no further */
	/*padding: 0px 0px 0px 0px;*/
	font-family: Verdana, Arial, Helvetica, sans-serif;
}

.twoColFixLtHdr #sidebar2_a {
	float: right; /* since this element is floated, a width must be given */
	width: 390px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	background: #FFFFFF; /* the background color will be displayed for the length of the content in the column, but no further */
	/*padding: 0px 0px 0px 0px;*/
}



.twoColFixLtHdr #footer { 
	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background: #FFFFFF; 
	/*border-top-style:solid;
	border-width:3px;
	border-color:#1773b5;*/
}

.twoColFixLtHdr #menu { 
	padding: 0 0px 0 0px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background: #FFFFFF; 
} 

.twoColFixLtHdr #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 */
}
.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;
}

h3 {
	color: #004990;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 16px;
}

.new_head3 {
	color: #676767;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 16px;
	font-weight: bold;
}

h1 {
	color: #004990;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 14px;
}


hr {
  color: #CADCEB; 
  width: 99%;
  border-width: 1px 0 0 0;
}

 hr.dashed {
  color: #676767; 
  width: 99%;
  border-width: 1px 0 0 0;
}

a {
	font-size: 12px;
	color: #66666;
}
a:visited {
	color: #666666;
}
a:hover {
	color: #004990;
}
a:active {
	color: #666666;
}

.s {
	font-size: 12px;
	color: #666666;
	text-decoration: none;
}
.s:visited {
	color: #666666;
}
.s:hover {
	color: #004990;
}
.s:active {
	color: #666666;
}

.s_u {
	font-size: 10px;
	color: #666666;
	font-weight: bold;
	text-decoration: none;
}
.s_u:visited {
	color: #666666;
}
.s_u:hover {
	color: #004990;
}
.s_u:active {
	color: #666666;
}


.b {
	font-size: 10px;
	color: #666666;
	text-decoration: none;
}
.b:visited {
	color: #666666;
}
.b:hover {
	color: #666666;
}
.b:active {
	color: #666666;
}

.bbig {
	font-size: 12px;
	color: #666666;
	text-decoration: none;
}
.bbig:visited {
	color: #666666;
}
.bbig:hover {
	color: #004990;
}
.bbig:active {
	color: #666666;
}



.b_u {
	font-size: 10px;
	color: #666666;
	text-decoration: none;
}
.b_u:visited {
	color: #666666;
}
.b_u:hover {
	color: #004990;
}
.b_u:active {
	color: #666666;
}

.asso {
	font-size: 12px;
	color: #666666;
	text-decoration: none;
}


.mainhead {
	font-family: Verdana, Geneva, sans-serif;
	color: #1773B5;
	font-size: 12px;
	font-weight: bold;
}

.bcopy {
	font-weight: bold;
	font-size: 10px;
}

.bcopy_big {
	font-weight: bold;
	font-size: 12px;
}



.bcopy_lg {
	font-weight: bold;
	font-size: 12px;
}

.linktext_nolinkgrey {	
font-size: 10px;
color: #666666;	
}

.linktext {	
font-size: 12px;
color: #666666;
text-decoration: none;
}

.linktext:hover {	
color: #004990;
}

.bullet {
	font-size: 12px;
	color: #666666;
	text-decoration: none;
}


.Main_Headline {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 20px;
	color: #004990;
	line-height: 50px;
	
}

.Main_Headline_lead {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 20px;
	color: #004990;
	line-height: 25px;
}

.Main_Headline_lead_small {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 16px;
	color: #004990;
	line-height: 22px;
}


.Main_Headline_lead_small_green {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 16px;
	color: #66913e;
	line-height: 22px;
}

.Main_Headline_grey_small {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 16px;
	color: #222;
	line-height: 22px;
}

.Main_Headline_lead_small_red {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 16px;
	color: #e0272a;
	line-height: 22px;
}

.Main_Headline_grey {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 20px;
	color: #222;
	line-height: 50px;
}



.Main_Headline_red {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 20px;
	color: #FF0000;
	line-height: 50px;
}

.Main_Headline_black_callout {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 18px;
	color: #000000;
	line-height: 18px;
	padding: 4px 0px 4px 0px;
}


.Main_Headline_black {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 14px;
	color: #000000;
	line-height: 20px;
}

.bodycopy_main {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 12px;
}

.bodycopy_bullets {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 12px;
	color: #000000;
	text-decoration: none;
}

.bodycopy_bullets_lead {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 12px;
	line-height: 28px;
}

.bodycopy_bullets_open {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 12px;
	line-height: 16px;
}

.bodycopy_bullets_rbar {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 11px;
}

.bodycopy_bullets_leadgrey {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 14px;
	line-height: 25px;
	color: #222;
}


.bodycopy_bullets_basegrey {
	font-family:Georgia, "Times New Roman", Times, serif;
	font-size: 16px;
	line-height: 18x;
	color: #222;
}

.link_basegrey {
	font-family:Georgia, "Times New Roman", Times, serif;
	font-size: 16px;
	line-height: 18x;
	color: #666;
	text-decoration: none;
}

.link_basegrey:hover {
	color: #004990;
}


.basegrey {
	font-family:Georgia, "Times New Roman", Times, serif;
	font-size: 16px;
	line-height: 18x;
	color: #666;
	text-decoration: none;
}

.bodycopy_bullets_baseblue {
	font-family:Georgia, "Times New Roman", Times, serif;
	font-size: 16px;
	line-height: 18x;
	color: #004990;
}


.bodycopy_consultants_baseblue {
	font-family:Georgia, "Times New Roman", Times, serif;
	font-size: 14px;
	line-height: 16px;
	color: #004990;
}

.textform {
	font-family: Verdana, Geneva, sans-serif;
	color: #666666;
	font-size: 11px;

}


ul{
list-style: disc;
padding: 0;
margin-left: 2em;
margin-top: 1em;
}

li {
margin-left: 0;
margin-right: 10%;
margin-top: .1em;
margin-bottom: .1em;

}

.box_red {
	BORDER-RIGHT: #e0272a 1px solid; 
	PADDING-RIGHT: 0px; 
	BORDER-TOP: #e0272a 1px solid; 
	PADDING-LEFT: 0px; 
	PADDING-BOTTOM: 0px; 
	BORDER-LEFT: #e0272a 1px solid; 
	PADDING-TOP: 0px; 
	BORDER-BOTTOM: #e0272a 1px solid
}

.box_blue {
	BORDER-RIGHT: #5293c1 1px solid;
	PADDING-RIGHT: 0px;
	BORDER-TOP: #5293c1 1px solid;
	PADDING-LEFT: 0px;
	PADDING-BOTTOM: 0px;
	BORDER-LEFT: #5293c1 1px solid;
	PADDING-TOP: 0px;
	BORDER-BOTTOM: #5293c1 1px solid;
	text-align: center;
}

/*gmp training page menu items*/

.mainhead_submenu_frame {
	font-family: Verdana, Geneva, sans-serif;
	font-weight: bold;
	color: #666666;
	font-size: 10px;
	text-decoration: none;
}


.mainhead_submenu_frame:a {
	color: #666666;
}

.mainhead_submenu_frame:visited {
	color: #666666;
}

.mainhead_submenu_frame:hover {
	color: #004990;
}


.mainhead_submenu_train{
	font-family: Verdana, Geneva, sans-serif;
	color: #000000;
	font-size: 10px;
	text-decoration: none;
}


.mainhead_submenu_train:a {
	color: #000000;
}

.mainhead_submenu_train:visited {
	color: #000000;
}

.mainhead_submenu_train:hover {
	color: #004990;
}


#mainhead_submenu {
	font-family: Verdana, Geneva, sans-serif;
	color: #1773B5;
	font-weight: bold;
	font-size: 11px;
	text-decoration: none;
}


#mainhead_submenu:a {
	color: #1773B5;
}

#mainhead_submenu:visited {
	color: #1773B5;
}

#mainhead_submenu:hover {
	color: #666666;
}


p#course_title {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 11px;
	color: #FFF;
	text-align: left;
	margin-bottom: inherit;
	background-color: #004990;
	padding: 4px 0px 4px 0px;
}


p#nhp_course_title {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 11px;
	color: #FFF;
	text-align: left;
	margin-bottom: inherit;
	background-color: #690;
	padding: 4px 0px 4px 0px;
}
	

p#course {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 11px;
	color: #000;
	margin-left: 8px; 
	margin-right: 8px;
	padding-top: 2px;
}

p#course a:hover {
	color: #004990;
	font-size: 11px;
}

p#course a {
	text-decoration: none;
	color: #000;
	font-size: 11px;
}