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

body  {
	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: ##333333;
	background-image:url(/Images/GLO_pattern.gif)
}
#container { 
	width: 800px;  /* 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 */
	text-align: left; /* this overrides the text-align: center on the body element. */
	padding: 0 10px 0 10px;
} 
#header { 
	background: #ffffff; 
} 
.twoColFixLtHdr #header h1 {
	margin: 0 0 20px 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 */
}
#headerleft { 
	background: #333333; 
	  /* 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. */
	float: left;
	width: 400px;
} 
#headerright { 
	background: #ffffff; 
	  /* 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. */
	float: right;
	width: 400px;
} 
#sidebar1 {
	float: left;
	width: 200px; /* 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 */	
	margin: 10px 0 0 0;
}
#nav {
	float: left; /* since this element is floated, a width must be given */
	width: 180px; /* 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: #efefef; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 10px 10px 10px 10px;
	margin: 15px 0 5px 0;
	font-family: Helvetica, sans-serif;
	font-size: 10pt;	
        border: thin solid #D9D9D9;
}
#focus {
	float: left; /* since this element is floated, a width must be given */
	width: 180px; /* 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: #efefef; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 10px 10px 10px 10px;
	margin: 0 0 5px 0;
	font-family: Helvetica, sans-serif;
	font-size: 10pt;
        border: thin solid #D9D9D9;
}
#mainContent {
	float: right;
	margin: 25px 0 0 0;
	width: 570px;
	padding: 0 10px 10px 10px;
	font-family: Helvetica, Arial, sans-serif;
	font-size: 12px;
	line-height: 18px;
	background-color:#fffff;
	color: #333333;
} 
h1 {
	font-family: Helvetica, Arial, sans-serif;
	font-size: 18px;
	color:#200D80;
}
h2 {
	font-family: Helvetica, Arial, sans-serif;
	font-size: 15px;
	color:#200D80;
}
h3 {
	font-family: Helvetica, Arial, sans-serif;
	font-size: 12px;
	color:#200D80;
}

#contentbox {
	float: right;
	width: 250px;
	padding: 10px 10px 10px 10px;
	margin: 0 0 10px 10px;
	background-color:#efefef;
	border: thin solid #D9D9D9;
}
#footer {
	padding: 5px 20px 5px 0; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#ffffff];
	font-family:Arial, Helvetica, sans-serif;
	font-size: x-small;
	clear:both;
	border-top-width: thin;
	border-top-style: solid;
	border-top-color: #CCCCCC;
} 
#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: 2px 0 0 10px; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	line-height: 14px;
	color:#666666
}
#focus p {
	font-family:Helvetica, Arial, sans-serif;
	font-size: 11px;
	color:#333333;
	line-height: 14px;
}
a {
	color: #1E5CA2;
	text-decoration: none;
}
a:hover {
	color: #200D80;
	text-decoration: underline;
}
.pictureheading {
	background: blue url(http://globalimmersions.com/images/button_gradient.jpg) repeat-x;
	color: #FFF;
	padding: 4px 4px 4px 10px;
	border-left: 1px solid #FFF;
	border-top: 1px solid #FFF;
	text-transform: uppercase;
	font-size: 11px;
}
.pictureheading a {
	color: #FFF !important;
	text-decoration: none;
}
.noborder {
	border-left: none !important;
}
