@charset "utf-8";
/* CSS Document */

body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	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;
	background-repeat: no-repeat;
	background-position: center top;
}

/* Tips for Elastic layouts 
1. Since the elastic layouts overall sizing is based on the user's default fonts size, they are more unpredictable. Used correctly, they are also more accessible for those that need larger fonts size since the line length remains proportionate.
2. Sizing of divs in this layout are based on the 100% font size in the body element. If you decrease the text size overall by using a font-size: 80% on the body element or the #container, remember that the entire layout will downsize proportionately. You may want to increase the widths of the various divs to compensate for this.
3. If font sizing is changed in differing amounts on each div instead of on the overall design (ie: #sidebar1 is given a 70% font size and #mainContent is given an 85% font size), this will proportionately change each of the divs overall size. You may want to adjust based on your final font sizing.
*/
.siteH {
  width: 960px; /* the auto margins (in conjunction with a width) center the page */
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
}
.thrColElsHdr #container {

	
	border: 0px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */

} 
#login_s {
	background-image: url(../images/login_box.jpg);
	background-repeat: no-repeat;
}


.thrColElsHdr #header {
	height: 105px;
	padding: 0;
	background-image: url(../images/FSGC_01.jpg);
	z-index: 1;
} 
.thrColElsHdr #header_i {
	height: 105px;
	padding: 0;
	background-image: url(../images/fsgc2_01.jpg);
	z-index: 1;
} 
.thrColElsHdr #header2 {
	height: 138px;
	padding: 0;
} 
.thrColElsHdr #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;
}

/* Tips for sidebar1:
1. Be aware that if you set a font-size value on this div, the overall width of the div will be adjusted accordingly.
2. Since we are working in ems, it's best not to use padding on the sidebar itself. It will be added to the width for standards compliant browsers creating an unknown actual width. 
3. Space between the side of the div and the elements within it can be created by placing a left and right margin on those elements as seen in the ".thrColElsHdr #sidebar1 p" rule.
*/
.thrColElsHdr #sidebar1 {
	float: left;
	width: 13.186em; /* top and bottom padding create visual space within this div */
	background-image: url(../images/FSGC_07.jpg);
	background-repeat: no-repeat;
	background-position: top;
	padding-top: 0;
	padding-right: 0;
	padding-bottom: 15px;
	padding-left: 10;
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
}

.news {
	font-size: 10px;
	font-weight: normal;
	color: #FFFFFF;
}
.news_p {
	height: 120px;
}


.thrColElsHdr #sidebar1b {
	float: left;
	width: 13.186em; /* top and bottom padding create visual space within this div */
	background-repeat: no-repeat;
	background-position: top;
	padding-top: 0;
	padding-right: 0;
	padding-bottom: 0;
	padding-left: 10;
	background-color: #FFFFFF;
	z-index: 0;
	vertical-align: text-top;
}
.thrColElsHdr #sidebar2  {
	float: right;
	width: 13.186em;
	padding-top: 0;

	padding-bottom: 0;
	padding-left: 0;
	margin-top: 0;

	margin-bottom: 0;
	margin-left: 0;
}
.thrColElsHdr #sidebar2i {
	width: 170px;
	background-color: #99FF99;
}
.thrColElsHdr #sidebar1 h3, .thrColElsHdr #sidebar1 p, .thrColElsHdr #sidebar2 p, .thrColElsHdr #sidebar2 h3 {
	margin-left: 10px; /* the left and right margin should be given to every element that will be placed in the side columns */
	margin-right: 10px;
}


/* Tips for mainContent:
1. If you give this #mainContent div a font-size value different than the #sidebar1 div, the margins of the #mainContent div will be based on its font-size and the width of the #sidebar1 div will be based on its font-size. You may wish to adjust the values of these divs.
2. The space between the mainContent and sidebar1 is created with the left margin on the mainContent div.  No matter how much content the sidebar1 div contains, the column space will remain. You can remove this left margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends.
3. To avoid float drop, you may need to test to determine the approximate maximum image/element size since this layout is based on the user's font sizing combined with the values you set. However, if the user has their browser font size set lower than normal, less space will be available in the #mainContent div than you may see on testing.
4. In the Internet Explorer Conditional Comment below, the zoom property is used to give the mainContent "hasLayout." This avoids several IE-specific bugs that may occur.
*/
.thrColElsHdr #mainContent {
	margin-top: 0;
	margin-right: 211px;
	margin-bottom: 0;
	margin-left: 211px;
	background-image: url(images/FSGC_10.jpg);
	padding-right: 10px;
	padding-left: 10px;
	font-size: 0.75em;
	color: #333333;
	height: 100%;
} 
#menu {
	left: 0.8em;
	top: 47px;
	right: 20px;
	position: relative;
	width: 935px;
	height: 20px;
	z-index: 999;
}
#search {
	color: #FFFFFF;
	font-size: 10px;
	vertical-align: middle;
	left: 0.8em;
	top: 47px;
	right: 40px;
	position: relative;
	width: 925px;
	height: 20px;
	text-align: right;
}
#search A:link {
	text-decoration: none;
	color: #FFFFFF;
}
#search A:visited  {
	text-decoration: none;
	color: #FFFFFF;
}
#search A:active  {
	text-decoration: none;
	color: #FFFFFF;
}
#search A:hover  {
	text-decoration: none;
	color: #CCCCCC;
}
.head_n {
	background-image: url(../images/news-home.jpg);
	background-repeat: no-repeat;
	padding-top: 53px;
}
.head_page {
	background-image: url(../images/hd-pages.jpg);
	background-repeat: no-repeat;
	padding-top: 1px;
}
.head_fellow {
	background-image: url(../images/hd-fellow.jpg);
	background-repeat: no-repeat;
}
.head_fact {
	background-image: url(../images/hd-fact.jpg);
	background-repeat: no-repeat;
}
.head_research {
	background-image: url(../images/hd-research.jpg);
	background-repeat: no-repeat;
}
.head_a {
	background-image: url(../images/about-home.jpg);
	background-repeat: no-repeat;
	padding-top: 53px;
}
.head_p {
	background-image: url(../images/programs-home.jpg);
	background-repeat: no-repeat;
	padding-top: 53px;
}

.thrColElsHdr #footer {
	background-image: url(../images/FSGC_12.jpg);
	background-repeat: no-repeat;
	height: 31px;
	padding-top: 0;
	padding-right: 0;
	padding-bottom: 0;
	padding-left: 0;
	width: 960px;
	color: #FFFFFF;
	margin-top:30px;
} 

A:link {
	text-decoration: underline;
	color: #333333;
}
A:visited  {
	text-decoration: underline;
	color: #333333;
}
A:active  {
	text-decoration: underline;
	color: #333333;
}
A:hover  {
	text-decoration: underline;
	color: #CCCCCC;
}

#footer A:link {
	text-decoration: none;
	color: #FFFFFF;
}
#footer A:visited  {
	text-decoration: none;
	color: #FFFFFF;
}
#footer A:active  {
	text-decoration: none;
	color: #FFFFFF;
}
#footer A:hover  {
	text-decoration: none;
	color: #CCCCCC;
}

#h_info A:link {
	text-decoration: none;
	color: #FFFFFF;
}
#h_info A:visited  {
	text-decoration: none;
	color: #FFFFFF;
}
#h_info A:active  {
	text-decoration: none;
	color: #FFFFFF;
}
#h_info A:hover  {
	text-decoration: none;
	color: #CCCCCC;
}

#h_info2 A:link {
	text-decoration: none;
	color: #FFFFFF;
}
#h_info2 A:visited  {
	text-decoration: none;
	color: #FFFFFF;
}
#h_info2 A:active  {
	text-decoration: none;
	color: #FFFFFF;
}
#h_info2 A:hover  {
	text-decoration: none;
	color: #CCCCCC;
}

.thrColElsHdr #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 */
	font-size: 10px;
	text-align: center;
}

/* Miscellaneous classes for reuse */
.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;
}
#h2_image {

	margin: 0px;
	width:489px;
	height:138px;
	padding: 0px;
    float: left;
}
#news1 {
	padding: 0px;
	margin: 0px;
	width:220px;
	height:138px;
	float: left;
	background-image: url(../images/FSGC_03.jpg);
}
#current1 {
	padding: 0px;
	margin: 0px;
	width:251px;
	height:138px;
	float: left;
	background-image: url(../images/FSGC_04.jpg);
}
#h_info {
	left:10px;
	top:25px;
	width:200px;
	height:63px;
	z-index:1;
	position: relative;
	right: 10px;
	bottom: 10px;
	font-size: 0.7em;
	line-height: 1.75em;
}
#h_info2 {
	left:10px;
	top:25px;
	width:220px;
	height:63px;
	z-index:1;
	position: relative;

	bottom: 10px;
	font-size: 0.7em;
	line-height: 1.75em;
}

/* Basic code - don't modify */
 
 #nav { display: block; margin: 0; padding: 0; position: relative; }
  #nav li { display: block; list-style: none; margin: 0; padding: 0; float: left; position: relative; }
  #nav a { display: block; }
  #nav ul { display: none; position: absolute; left: 0; margin: 0; padding: 0; }
  * html #nav ul { line-height: 0; } /* IE6 "fix" */
  	#nav ul a { zoom: 1; } /* IE6/7 fix */
    #nav ul li { float: none; }
    #nav ul ul { top: 0; }
    
/* Essentials - configure this */

#nav ul { width: 187px; }
#nav ul ul { left: 187px; }

/* Everything else is theming */
 
#nav { background-color: #30A8C3; height: 20px; }
#nav *:hover { background-color: none; }
#nav a { border-right: 0px solid white; color: white; font-size: 14px; padding: 4px; line-height: 1; }
  #nav li.hover a { background-color: #5E5A5A; }
  #nav ul { top: 25px; }
    #nav ul li a { background-color: #5E5A5A; }
      #nav ul li.hover > a { background-color: #30A8C3; }
   #nav ul a { border-bottom: 0px solid white; border-right: none; opacity: 0.7; filter: alpha(opacity=70); }
/* #nav ul a { border-bottom: none; } - I also needed this for IE6/7 */


 


/*** adding the class sf-navbar in addition to sf-menu creates an all-horizontal nav-bar menu ***/
.sf-navbar {
	background:		#BDD2FF;
	height:			2.em;
	padding-bottom:	2.5em;
	position:		relative;
	color: #FFFFFF;
}
.sf-navbar li {
	background:		#AABDE6;
	position:		static;
	color: #FFFFFF;
}
.sf-navbar a {
	border-top:		none;
	color: #FFFFFF;
}
.sf-navbar li ul {
	width:			44em; /*IE6 soils itself without this*/
}
.sf-navbar li li {
	background:		#BDD2FF;
	position:		relative;
	color: #FFFFFF;
}

.sf-navbar li li a:linked {
	background:		#BDD2FF;
	position:		relative;
	color: #FFFFFF;
}

.sf-navbar li li ul {
	width:			13em;
}
.sf-navbar li li li {
	width:			100%;
}
.sf-navbar ul li {
	width:			auto;
	float:			left;
}
.sf-navbar a, .sf-navbar a:visited {
	border:			none;
	color: #FFFFFF;
}
.sf-navbar li.current {
	background-image: url(../images/fsgc_menu1.jpg);
}
.sf-navbar li:hover,
.sf-navbar li.sfHover,
.sf-navbar li li.current,
.sf-navbar a:focus, .sf-navbar a:hover, .sf-navbar a:active {
	background-image: url(../images/fsgc_menu2.jpg);
	color: #FFFFFF;
	width: 187px;
}
.sf-navbar ul li:hover,
.sf-navbar ul li.sfHover,
ul.sf-navbar ul li:hover li,
ul.sf-navbar ul li.sfHover li,
.sf-navbar ul a:focus, .sf-navbar ul a:hover, .sf-navbar ul a:active {
	background-image: url(../images/fsgc_menu1.jpg);
}
ul.sf-navbar li li li:hover,
ul.sf-navbar li li li.sfHover,
.sf-navbar li li.current li.current,
.sf-navbar ul li li a:focus, .sf-navbar ul li li a:hover, .sf-navbar ul li li a:active {
	background-image: url(../images/fsgc_menu1.jpg);
	color: #FFFFFF;
}
ul.sf-navbar .current ul,
ul.sf-navbar ul li:hover ul,
ul.sf-navbar ul li.sfHover ul {
	left:			0;
	top:			2.5em; /* match top ul list item height */
}
ul.sf-navbar .current ul ul {
	top: 			-999em;
}

.sf-navbar li li.current > a {
	font-weight:	bold;
	color: #FFFFFF;
}

/*** point all arrows down ***/
/* point right for anchors in subs */
.sf-navbar ul .sf-sub-indicator { background-position: -10px -100px; }
.sf-navbar ul a > .sf-sub-indicator {
	background-position: 0 -100px;
	color: #FFFFFF;
}
#menu_d {
	color: #FFFFFF;
}

/* apply hovers to modern browsers */
.sf-navbar ul a:focus > .sf-sub-indicator,
.sf-navbar ul a:hover > .sf-sub-indicator,
.sf-navbar ul a:active > .sf-sub-indicator,
.sf-navbar ul li:hover > a > .sf-sub-indicator,
.sf-navbar ul li.sfHover > a > .sf-sub-indicator {
	background-position: -10px -100px; /* arrow hovers for modern browsers*/
}

/*** remove shadow on first submenu ***/
.sf-navbar > li > ul {
	background: transparent;
	padding: 0;
	-moz-border-radius-bottomleft: 0;
	-moz-border-radius-topright: 0;
	-webkit-border-top-right-radius: 0;
	-webkit-border-bottom-left-radius: 0;
}


/*** ESSENTIAL STYLES ***/
.sf-menu, .sf-menu * {
	margin:			0;
	padding:		0;
	list-style:		none;
}
.sf-menu {
	line-height:	1;
	color: #FFFFFF;
}
.sf-menu2 {

	color: #FFFFFF;
}
.sf-menu-b {
	line-height:	1;
	color: #FFFFFF;
	padding-top: 10px;
	margin-top: 2px;
}
.sf-menu ul {
	position:		absolute;
	top:			-999em;
	width:			15em; /* left offset of submenus need to match (see below) */
}
.sf-menu ul li {
	width:			100%;
}
.sf-menu li:hover {
	visibility:		inherit; /* fixes IE7 'sticky bug' */
}
.sf-menu li {
	float:			left;
	position:		relative;
}
.sf-menu a {
	display:		block;
	position:		relative;
}
.sf-menu li:hover ul,
.sf-menu li.sfHover ul {
	left:			0;
	top:			2.5em; /* match top ul list item height */
	z-index:		99;
}
ul.sf-menu li:hover li ul,
ul.sf-menu li.sfHover li ul {
	top:			-999em;
}
ul.sf-menu li li:hover ul,
ul.sf-menu li li.sfHover ul {
	left:			15em; /* match ul width */
	top:			0;
}
ul.sf-menu li li:hover li ul,
ul.sf-menu li li.sfHover li ul {
	top:			-999em;
}
ul.sf-menu li li li:hover ul,
ul.sf-menu li li li.sfHover ul {
	left:			15em; /* match ul width */
	top:			0;
}

/*** DEMO SKIN ***/
.sf-menu {
	float:			left;
	margin-bottom:	1em;
	font-size: 10px;
}
.sf-menu a {
	border-left:	0px solid #fff;
	border-top:		0px solid #CFDEFF;
	padding: 		.5em 0;  
	text-decoration:none;
}
.sf-menu a, .sf-menu a:visited  { /* visited pseudo selector so IE6 applies text colour*/
	color:			#13a;
}
.sf-menu li {
	background-image: url(../images/fsgc_menu1t.png);
}
.sf-menu li li {
	background-image: url(../images/fsgc_menu1t.png);
	width: 187px;
	color: #CCCCCC;
	text-align: center;
}
.sf-menu li li li {
	background-image: url(../images/fsgc_menu1t.png);
}
.sf-menu li:hover, .sf-menu li.sfHover,
.sf-menu a:focus, .sf-menu a:hover, .sf-menu a:active {
	outline:		0;
	width: 187px;
	background-image: url(../images/fsgc_menu2t.png);
}

#menutop a {
	background-color: transparent;
	background-image: url(../images/fsgc_menu1.jpg);
	background-repeat: no-repeat;
	background-position: 0 0;
	color: #FFFFFF;
	width: 187px;
	text-align: center;
}
#menutop:hover a, #menutop.sfHover a {
	background-image:
url(../images/fsgc_menu2.jpg);
}


/*** arrows **/
.sf-menu a.sf-with-ul {
	padding-right: 	2.25em;
	min-width:		1px; /* trigger IE7 hasLayout so spans position accurately */
}
.sf-sub-indicator {
	position:		absolute;
	display:		block;
	right:			.75em;
	top:			1.05em; /* IE6 only */
	width:			10px;
	height:			10px;
	text-indent: 	-999em;
	overflow:		hidden;
	background:		url('../images/arrows-ffffff.png') no-repeat -10px -100px; /* 8-bit indexed alpha png. IE6 gets solid image only */
}
a > .sf-sub-indicator {  /* give all except IE6 the correct values */
	top:			.8em;
	background-position: 0 -100px; /* use translucent arrow for modern browsers*/
}
/* apply hovers to modern browsers */
a:focus > .sf-sub-indicator,
a:hover > .sf-sub-indicator,
a:active > .sf-sub-indicator,
li:hover > a > .sf-sub-indicator,
li.sfHover > a > .sf-sub-indicator {
	background-position: -10px -100px; /* arrow hovers for modern browsers*/
}

/* point right for anchors in subs */
.sf-menu ul .sf-sub-indicator { background-position:  -10px 0; }
.sf-menu ul a > .sf-sub-indicator { background-position:  0 0; }
/* apply hovers to modern browsers */
.sf-menu ul a:focus > .sf-sub-indicator,
.sf-menu ul a:hover > .sf-sub-indicator,
.sf-menu ul a:active > .sf-sub-indicator,
.sf-menu ul li:hover > a > .sf-sub-indicator,
.sf-menu ul li.sfHover > a > .sf-sub-indicator {
	background-position: -10px 0; /* arrow hovers for modern browsers*/
}

/*** shadows for all but IE6 ***/
.sf-shadow ul {
	background:	url('../images/shadow.png') no-repeat bottom right;
	padding: 0 2px 9px 0;
	-moz-border-radius-bottomleft: 17px;
	-moz-border-radius-topright: 17px;
	-webkit-border-top-right-radius: 17px;
	-webkit-border-bottom-left-radius: 17px;
}
.sf-shadow ul.sf-shadow-off {
	background: transparent;
}

#acc6{
	margin:0;
	width:191px;
	list-style-type:none;
	background-color:#FFFFFF;
	color:#000000;
	line-height:120%;
	height:300px;
	padding-top: 0;
	padding-right: 0;
	padding-bottom: 0;
	padding-left: 0;
}
#acc6 A:link {
	text-decoration: none;
	color: #000066;

}
#acc6 A:visited  {
	text-decoration: none;
	color: #000066;
}
#acc6 A:active  {
	text-decoration: none;
	color: #000066;
}
#acc6 A:hover  {
	text-decoration: none;
	color: #CCCCCC;
}
#acc6 a{
display:block;
font-weight:normal;
text-decoration:none;
}
#acc6 ul{
overflow: hidden;
margin:0;
padding:0;
}
#acc6 li{
	margin:0;
	padding:0;
	list-style-type:none;
	font-size: 12px;
	font-weight: bold;

}
#acc6 li a{
width:184px;
padding:5px 0 0 7px;

color:#000000;


}
#acc6 li a.closed{
	color:#FFFFFF !important;
	background-image:url(../images/ha-header.jpg) !important;
	font-weight: bold;
}
#acc6 li.firstitem a.closed{
color:#FFFFFF !important;
background-image:url(../images/ha-header-first.jpg) !important;
	font-weight: bold;
}
#acc6 li.lastitem a.closed{
color:#FFFFFF !important;
background-image:url(../images/ha-header-last.jpg) !important;
	font-weight: bold;
}
#acc6 li li{
	border-left:1px solid #E5E5E5;
	border-right:1px solid #E5E5E5;
	height:100%;
	font-size: 10px;
	line-height: 12px;
	height:300px;

}
#acc6 li a.opened{
background-image:url(../images/ha-header-active.jpg);
color:#000000;
	font-weight: bold;
}
#acc6 li.firstitem a.opened{
	background-image:url(../images/ha-header-first-active.jpg);
	color:#000000;
	font-weight: bold;
}

#acc6 li.lastitem li{
margin-bottom:-4px;
}
#acc6 li.lastitem ul{
background-image:url(../images/ha-footer.jpg);
background-repeat:no-repeat;
background-position:bottom;
padding-bottom:4px;
}

#acc1{
	margin:0;
	width:191px;
	list-style-type:none;
	background-color:#FFFFFF;
	color:#000000;
	line-height:120%;
	height:300px;
	padding-top: 0;
	padding-right: 0;
	padding-bottom: 0;
	padding-left: 0;
}
#acc1 A:link {
	text-decoration: none;
	color: #000066;

}
#acc1 A:visited  {
	text-decoration: none;
	color: #000066;
}
#acc1 A:active  {
	text-decoration: none;
	color: #000066;
}
#acc1 A:hover  {
	text-decoration: none;
	color: #FFFFFF;
	background-color: #8bc6ff;
	display: block;
}
#acc1 a{
display:block;
font-weight:normal;
text-decoration:none;
}
#acc1 ul{
overflow: hidden;
margin:0;
padding:0;
}
#acc1 li{
	margin:0;
	padding:0;
	list-style-type:none;
	font-size: 12px;
	font-weight: bold;

}
#acc1 li a{
width:184px;
padding:5px 0 0 7px;

color:#000000;


}
#acc1 li a.closed{
	color:#FFFFFF !important;
	background-image:url(../images/ha-header.jpg) !important;
	font-weight: bold;
}
#acc1 li.firstitem a.closed{
color:#FFFFFF !important;
background-image:url(../images/ha-header-first.jpg) !important;
	font-weight: bold;
}
#acc1 li.lastitem a.closed{
color:#FFFFFF !important;
background-image:url(../images/ha-header-last.jpg) !important;
	font-weight: bold;
}
#acc1 li li{
	border-left:1px solid #E5E5E5;
	border-right:1px solid #E5E5E5;
	height:100%;
	font-size: 10px;
	line-height: 12px;

}
#acc1 li a.opened{
background-image:url(../images/ha-header-active.jpg);
color:#000000;
	font-weight: bold;
}
#acc1 li.firstitem a.opened{
	background-image:url(../images/ha-header-first-active.jpg);
	color:#000000;
	font-weight: bold;
}
#acc1 li.lastitem li{
margin-bottom:-4px;
}
#acc1 li.lastitem ul{
background-image:url(../images/ha-footer.jpg);
background-repeat:no-repeat;
background-position:bottom;
padding-bottom:4px;
}

#acc2{
margin:0;
padding:0;
width:518px;
height:31px;
list-style-type:none;
background-color:#FFFFFF;
color:#OOOOOO;
line-height:120%;
height:150px;
}
#acc2 a{
display:block;
font-weight:normal;
text-decoration:none;
}
#acc2 ul{
overflow: hidden;
margin:0;
padding:0;
}
#acc2 li{
	margin:0;
	padding:0;
	list-style-type:none;
	font-size: 12px;
	font-weight: bold;
}
#acc2 li a{
width:518px;
padding:5px 0 0 0;
height:31px;
color:#OOOOOO;


}
#acc2 li a.closed{
	color:#FFFFFF !important;
	background-image:url(../images/staffbar.jpg) !important;
	background-repeat: no-repeat;
}
#acc2 li.firstitem a.closed{
color:#FFFFFF !important;
background-image:url(../images/staffbar.jpg) !important;
	background-repeat: no-repeat;
}
#acc2 li.lastitem a.closed{
color:#FFFFFF !important;
background-image:url(../images/staffbar.jpg) !important;
	background-repeat: no-repeat;
}
#acc2 li li{
	border-left:1px solid #E5E5E5;
	border-right:1px solid #E5E5E5;
	padding:0 15px 0 15px;
	height:100%;
	font-size: 10px;
}
#acc2 li a.opened{
background-image:url(../images/staffbar2.jpg);
color:#FFFFFF;
	background-repeat: no-repeat;
}
#acc2 li.firstitem a.opened{
	background-image:url(../images/staffbar2.jpg);
	color:#FFFFFF;
	background-repeat: no-repeat;
}
#acc2 li.lastitem li{
margin-bottom:-4px;
}
#acc2 li.lastitem ul{
background-image:url(../images/staffbar3.jpg);
background-repeat:no-repeat;
background-position:bottom;

}

#acc3{
margin:0;
padding:0;
width:191px;
list-style-type:none;
background-color:#FFFFFF;
color:#000000;
line-height:120%;
height:300px;
}
#acc3 a{
display:block;
font-weight:normal;
text-decoration:none;
}
#acc3 ul{
overflow: hidden;
margin:0;
padding:0;
}
#acc3 li{
	margin:0;
	padding:0;
	list-style-type:none;
	font-size: 12px;
	font-weight: bold;
}
#acc3 li a{
width:184px;
padding:5px 0 0 7px;

color:#000000;


}
#acc3 li a.closed{
	color:#FFFFFF !important;
	background-image:url(../images/ha-header.jpg) !important;
	font-weight: bold;
}
#acc3 li.firstitem a.closed{
color:#FFFFFF !important;
background-image:url(../images/ha-header-first.jpg) !important;
	font-weight: bold;
}
#acc3 li.lastitem a.closed{
color:#FFFFFF !important;
background-image:url(../images/ha-header-last.jpg) !important;
	font-weight: bold;
}
#acc3 li li{
	border-left:1px solid #E5E5E5;
	border-right:1px solid #E5E5E5;
	padding:0 15px 0 15px;
	font-size: 10px;
	list-style-type: circle;
}
#acc3 li a.opened{
background-image:url(../images/ha-header-active.jpg);
color:#000000;
	font-weight: bold;
}
#acc3 li.firstitem a.opened{
	background-image:url(../images/ha-header-first-active.jpg);
	color:#000000;
	font-weight: bold;
}
#acc3 li.lastitem li{
margin-bottom:-4px;
}
#acc3 li.lastitem ul{
background-image:url(../images/ha-footer.jpg);
background-repeat:no-repeat;
background-position:bottom;
padding-bottom:4px;
}


#acc4{
margin:0;
padding:0;
width:191px;
list-style-type:none;
background-color:#FFFFFF;
color:#000000;
line-height:120%;
height:300px;
}
#acc4 a{
display:block;
font-weight:normal;
text-decoration:none;
}
#acc4 ul{
overflow: hidden;
margin:0;
padding:0;
}
#acc4 li{
	margin:0;
	padding:0;
	list-style-type:none;
	font-size: 12px;
	font-weight: bold;
	
}
#acc4 li a{
width:184px;
padding:5px 0 0 7px;

color:#000000;


}
#acc4 li a.closed{
	color:#FFFFFF !important;
	background-image:url(../images/ha-header.jpg) !important;
	font-weight: bold;
}
#acc4 li.firstitem a.closed{
color:#FFFFFF !important;
background-image:url(../images/ha-header-first.jpg) !important;
	font-weight: bold;
}
#acc4 li.lastitem a.closed{
color:#FFFFFF !important;
background-image:url(../images/ha-header-last.jpg) !important;
	font-weight: bold;
}
#acc4 li li{
	border-left:1px solid #E5E5E5;
	border-right:1px solid #E5E5E5;

	padding:0 15px 0 15px;
	font-size: 10px;
	list-style-type: circle;
}
#acc4 li a.opened{
background-image:url(../images/ha-header-active.jpg);
color:#000000;
	font-weight: bold;
}
#acc4 li.firstitem a.opened{
	background-image:url(../images/ha-header-first-active.jpg);
	color:#000000;
	font-weight: bold;
}
#acc4 li.lastitem li{
margin-bottom:-4px;
}
#acc4 li.lastitem ul{
background-image:url(../images/ha-footer.jpg);
background-repeat:no-repeat;
background-position:bottom;
padding-bottom:4px;
}
#acc4last li{

border-bottom:1px solid #E5E5E5;
}
.acc4a {
	background-image:url(../images/ha-header-first-active.jpg);
}
.acc4a li A{
	color:#FFFFFF;
	font-weight: bold;
}
.acc4a li A:visited{
	color:#FFFFFF;
	font-weight: bold;
}
.acc4a li A:active{
	color:#FFFFFF;
	font-weight: bold;
}
.acc4a li A:hover{
	color:#FFFFFF;
	font-weight: bold;
}

.acc4b {
    background-image:url(../images/ha-header-active.jpg);
}
.acc4c {
border-bottom:1px solid #E5E5E5;
}

.title2{
	font-size: 10px;
}

.t1 {
	font-size: 24px;
	font-weight: bold;
	color: #000000;
	text-align: center;
}
.t2 {
	font-size: 16px;
	font-weight: bold;
	color: #000000;
	text-align: center;
}
.t3 {
	font-size: 14px;
	font-weight: bold;
	color: #000000;
	text-align: center;
}
.t4 {
	font-size: 12px;
	font-weight: bold;
	color: #000000;
	text-align: center;
}
.t5 {
	font-size: 10px;
	font-weight: bold;
	color: #000000;
	text-align: center;
}
.m1 {
	text-align: justify;
}
#nasa {
	bottom: 0px;
	position: absolute;
	top: 500px;
	width: 500px;
}
.m_title {
	font-size: 16px;
	font-weight: bold;
	color: #000033;
}
.s_title {
	font-size: 14px;
	font-weight: bold;
	color: #000033;
}

.hoverlink{
	text-align: center;
	text-decoration: none;
	font-size: 12px;
	color: #22229C;

}
.hoverlink:hover{
	color: #0066FF;
	cursor: pointer;
}

.side2m{
   background-image:url(../images/ha-header-first.jpg);
}  

#login {
	left: 50px;
}
.formtext_white  {
	background-image: url(../images/textback.jpg);
	background-repeat:repeat-x;
	font-size: 10px;
	font-weight: bold;
	color: #FFFFFF;
	padding-left: 10px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	height: 20px;
}
.formtext_black  {
	font-family: Verdana, Arial, Helvetica, sans-serif
	font-size: 10px;
	font-weight: bold;
	color: #000000;
	height: 30px;
}
#reg {
	background-image: url(../images/register_box2.jpg);
	background-repeat: no-repeat;
	margin: 0px;
	padding: 0px;
	height: 350px;
	width: 450px;
}

#acc1a{
	margin:0;
	width:191px;
	list-style-type:none;
	background-color:#FFFFFF;
	color:#000000;
	line-height:120%;
	height:300px;
	padding-top: 0;
	padding-right: 0;
	padding-bottom: 0;
	padding-left: 0;
}
#acc1a A:link {
	text-decoration: none;
	color: #000066;

}
#acc1a A:visited  {
	text-decoration: none;
	color: #000066;
}
#acc1a A:active  {
	text-decoration: none;
	color: #000066;
}
#acc1a A:hover  {
	text-decoration: none;
	color: #FFFFFF;
	background-color: #8bc6ff;
	display: block;
}
#acc1a a{
display:block;
font-weight:normal;
text-decoration:none;
}
#acc1a ul{
overflow: hidden;
margin:0;
padding:0;
}
#acc1a li{
	margin:0;
	padding:0;
	list-style-type:none;
	font-size: 12px;
	font-weight: bold;

}
#acc1a li a{
width:184px;
padding:5px 0 0 7px;

color:#000000;


}
#acc1aC{
	color:#FFFFFF !important;
	background-image:url(../images/ha-header.jpg) !important;
	font-weight: bold;
}
#acc1aFC{
color:#FFFFFF !important;
background-image:url(../images/ha-header-first.jpg) !important;
	font-weight: bold;
}
#acc1aLC{
color:#FFFFFF !important;
background-image:url(../images/ha-header-last.jpg) !important;
	font-weight: bold;
}
#acc1a li li{
	border-left:1px solid #E5E5E5;
	border-right:1px solid #E5E5E5;
	height:100%;
	font-size: 10px;
	line-height: 12px;

}
#acc1a li a.opened{
background-image:url(../images/ha-header-active.jpg);
color:#000000;
	font-weight: bold;
}
#acc1a li.firstitem a.opened{
	background-image:url(../images/ha-header-first-active.jpg);
	color:#000000;
	font-weight: bold;
}
#acc1a li.lastitem li{
margin-bottom:-4px;
}
#acc1a li.lastitem ul{
background-image:url(../images/ha-footer.jpg);
background-repeat:no-repeat;
background-position:bottom;
padding-bottom:4px;
}


/*!!!!!!!!!!! Menu Core CSS [Do Not Modify!] !!!!!!!!!!!!!*/
.qmmc .qmdivider{display:block;font-size:1px;border-width:0px;border-style:solid;position:relative;z-index:1;}.qmmc .qmdividery{float:left;width:0px;}.qmmc .qmtitle{display:block;cursor:default;white-space:nowrap;position:relative;z-index:1;}.qmclear {font-size:1px;height:0px;width:0px;clear:left;line-height:0px;display:block;float:none !important;}.qmmc {position:relative;zoom:1;z-index:10;}.qmmc a, .qmmc li {float:left;display:block;white-space:nowrap;position:relative;z-index:1;}.qmmc div a, .qmmc ul a, .qmmc ul li {float:none;}.qmsh div a {float:left;}.qmmc div{visibility:hidden;position:absolute;}.qmmc .qmcbox{cursor:default;display:block;position:relative;z-index:1;}.qmmc .qmcbox a{display:inline;}.qmmc .qmcbox div{float:none;position:static;visibility:inherit;left:auto;}.qmmc li {z-index:auto;}.qmmc ul {left:-10000px;position:absolute;z-index:10;}.qmmc, .qmmc ul {list-style:none;padding:0px;margin:0px;}.qmmc li a {float:none;}.qmmc li:hover>ul{left:auto;}#qm0 ul {top:100%;}#qm0 ul li:hover>ul{top:0px;left:100%;}


/*!!!!!!!!!!! Menu Styles [Please Modify!] !!!!!!!!!!!*/


	/* Menu 0 */

	/*"""""""" (MAIN) Container""""""""*/	
	#qm0	
	{	
		padding:0px 0px 0px 55px;
		background-color:transparent;
	}


	/*"""""""" (MAIN) Items""""""""*/	
	#qm0 a	
	{	
		padding:5px 15px 5px 20px;
		margin:0px 20px 0px 20px;
		color:#FFFFFF;
		font-family:Arial;
		font-size:12px;
		text-decoration:none;
		font-weight:bold;
	}


	/*"""""""" (MAIN) Hover State""""""""*/	
	#qm0 a:hover	
	{	
		text-decoration:underline;
	}


	/*"""""""" (MAIN) Hover State - (duplicated for pure CSS)""""""""*/	
	#qm0 li:hover>a	
	{	
		text-decoration:underline;
	}


	/*"""""""" (MAIN) Parent Items""""""""*/	
	#qm0 .qmparent	
	{	
		background-image:url(qmimages/qthoverfill_plus_main.gif);
		background-repeat:no-repeat;
		background-position:9px 10px;
	}


	/*"""""""" (MAIN) Active State""""""""*/	
	body #qm0 .qmactive, body #qm0 .qmactive:hover	
	{	
		color:#FFFFFF;
		text-decoration:none;
	}


	/*"""""""" (SUB) Container""""""""*/	
	#qm0 div, #qm0 ul	
	{	
		padding:5px;
		margin:-2px 0px 0px -6px;
		background-color:transparent;
		border-width:1px;
		border-style:none;
		border-color:#1a4a85;
	}


	/*"""""""" (SUB) Items""""""""*/	
	#qm0 div a, #qm0 ul a	
	{	
		padding:5px 50px 5px 20px;
		background-color:transparent;
		color:#F5F5F5;
		font-size:12px;
		font-weight:bold;
		border-width:0px;
		border-style:none;
		border-color:#000000;
	}


	/*"""""""" (SUB) Hover State""""""""*/	
	#qm0 div a:hover	
	{	
		color:#FFFFFF;
	}


	/*"""""""" (SUB) Hover State - (duplicated for pure CSS)""""""""*/	
	#qm0 ul li:hover>a	
	{	
		color:#FFFFFF;
	}


	/*"""""""" (SUB) Parent Items""""""""*/	
	#qm0 div .qmparent, #qm0 ul .qmparent	
	{	
		background-image:url(qmimages/qthoverfill_plus_sub.gif);
	}


	/*"""""""" (SUB) Parent Hover State""""""""*/	
	#qm0 div .qmparent:hover	
	{	
		background-image:url(qmimages/qthoverfill_plus_sub_hover.gif);
	}


	/*"""""""" (SUB) Active State""""""""*/	
	body #qm0 div .qmactive, body #qm0 div .qmactive:hover	
	{	
		background-color:#747A86;
		background-image:url(qmimages/qthoverfill_minus_sub.gif);
		color:#FFFFFF;
	}


	/*"""""""" Individual Titles""""""""*/	
	#qm0 .qmtitle	
	{	
		font-size:11px;
	}


	/*"""""""" (main) Rounded Items""""""""*/	
	#qm0 .qmritem span	
	{	
		border-color:#1a4a85;
		background-color:#1F5799;
		background-image:url(qmimages/qthoverfill_minus_main.gif);
		background-repeat:no-repeat;
		background-position:9px 5px;
	}


	/*"""""""" (main) Rounded Items Content""""""""*/	
	#qm0 .qmritemcontent	
	{	
		padding:0px 0px 0px 4px;
	}


	/*"""""""" (sub) Rounded Items""""""""*/	
	#qm0 div .qmritem span	
	{	
		border-color:#666666;
		background-color:#EEEEEE;
	}


	/*"""""""" (sub) Rounded Items Content""""""""*/	
	#qm0 div .qmritemcontent	
	{	
		padding:0px 0px 0px 4px;
	}


	/*"""""""" Sub Hover Fill Items [Static]""""""""*/	
	#qm0 div .qmhoverfill	
	{	
		background-color:#4D84B7;
	}


	/*"""""""" Custom Rule""""""""*/	
	ul#qm0 ul li:hover > a	
	{	
		color:#FFFFFF;
	}


	/*"""""""" Custom Rule""""""""*/	
	ul#qm0 ul	
	{	
		background-color:#1F5799;
	}


	/*"""""""" Custom Rule""""""""*/	
	ul#qm0 li:hover > a	
	{	
		background-color:#1F5799;
	}


	/*"""""""" Custom Rule""""""""*/	
	div#qm0 div div	
	{	
		margin:0px 0px 0px -6px;
	}
	
	/*"""""""" Custom Rule""""""""*/
	#qm0 .qmritemcontent
	{
		text-align:center;
		padding-left:5px;
	}
 /* @group newsletter-signup */
#newsletter-signup {
	margin: -215px 0 0 0;

}
#newsletter-signup span {
	text-align: center;
	display: block;
}
#newsletter-signup lable {
	font-size: 0.75em;
	color: #333333;
}
 #newsletter-signup input[type=text] {
	width: 115px;
}
 /* @end newsletter-signup */
