@charset "utf-8";
/*this is to keep page from shifting to left on load in safari and firefox*/
html { min-height: 100%; margin-bottom: 1px; }
html { overflow: -moz-scrollbars-vertical !important; }

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;
	background-color: #FFFFFF;
	height: 70px;
}

.thrColFixHdr #container {
	width: 860px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #02128b;
	text-align: left;
	margin-right: auto;
	margin-left: auto;
	margin-top: 15px;
	margin-bottom: 15px;
} 

.thrColFixHdr #header {
	padding-left: 20px;
	background-color: #FFFFFF;
	height: 80px;
	margin-top: 15px;
} 

h1 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 110%;
	color: #02128b;
	padding-top: 20px;
}

.heading_no_img {
	font-size: 110%;
	font-weight: bold;
	color: #02128b;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	padding-top: 20px;
}

.thrColFixHdr #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 */
	color: #02128b;
}

.names {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	color: #02128b;
	font-weight: bold;
}

.thrColFixHdr #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 180px; /* padding keeps the content of the div away from the edges */
	background-color: #FFFFFF;
	padding-top: 15px;
	padding-right: 10px;
	padding-bottom: 15px;
	padding-left: 20px;
}
.thrColFixHdr #sidebar2 {
	float: right; /* since this element is floated, a width must be given */
	width: 190px; /* padding keeps the content of the div away from the edges */
	background-color: #FFFFFF;
	padding-top: 110px;
}
.thrColFixHdr #sidebar2_about {
	float: right; /* since this element is floated, a width must be given */
	width: 190px; /* padding keeps the content of the div away from the edges */
	background-color: #FFFFFF;
	padding-top: 330px;
}
.thrColFixHdr #sidebar2_offer{
	float: right; /* since this element is floated, a width must be given */
	width: 190px; /* padding keeps the content of the div away from the edges */
	background-color: #FFFFFF;
	padding-top: 210px;
}
.thrColFixHdr #sidebar2_globe_out {
	float: right; /* since this element is floated, a width must be given */
	width: 190px; /* padding keeps the content of the div away from the edges */
	background-color: #FFFFFF;
	margin-top: 172px;
}
.thrColFixHdr #sidebar2_globe_res {
	float: right; /* since this element is floated, a width must be given */
	width: 190px; /* padding keeps the content of the div away from the edges */
	background-color: #FFFFFF;
	margin-top: 172px;
}
.thrColFixHdr #sidebar2_globe_recruit {
	float: right; /* since this element is floated, a width must be given */
	width: 190px; /* padding keeps the content of the div away from the edges */
	background-color: #FFFFFF;
	margin-top: 172px;
}

.thrColFixHdr #mainContent {
	margin-top: 0;
	margin-right: 195px;
	margin-bottom: 0;
	margin-left: 225px;
	padding-top: 0;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 10px;
} 

.thrColFixHdr #container #mainContent_no_image_right {
	margin-top: 0;
	margin-right: 25px;
	margin-bottom: 0;
	margin-left: 225px;
	padding-top: 0;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 10px;
}

.thrColFixHdr #footer {
	background-color: #02128b;
	border-top-width: 3px;
	border-top-style: solid;
	border-top-color: #666666;
	padding-top: 0;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 20px;
	clear: both;
} 
#footername {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	color: #FFFFFF;
	float: left;
	padding-top: 3px;
	padding-right: 5px;
	padding-bottom: 3px;
	padding-left: 5px;
	margin: 3px;
	font-size: 70%;
}
#footercontact {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	color: #FFFFFF;
	float: right;
	padding-top: 3px;
	padding-right: 5px;
	padding-bottom: 3px;
	padding-left: 5px;
	margin-top: 3px;
	font-size: 90%;
}

.thrColFixHdr #footer p {
	margin: 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	padding-top: 5px;
	padding-right: 0;
	padding-bottom: 5px;
	padding-left: 0;
}
.footerp {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 75%;
	font-weight: normal;
	color: #FFFFFF;
}

.boldfooter {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-weight: bold;
	color: #FFFFFF;
	font-size: 80%;
}
.orangeboldfooter {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-weight: bold;
	color: #02128b;
	font-size: 85%;
}

.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;
}

#navcontainer {
	width: 190px;
}

#navcontainer ul
{
	margin-left: 0;
	padding-left: 0;
	list-style-type: none;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 90%;
	color: #B36B00;
}
#navcontainer a
{
	display: block;
	width: 180px;
	background-color: #02128b;
	height: 30px;
	padding-right: 3px;
	padding-left: 6px;
	font-weight: bold;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #999999;
	vertical-align: middle;
	padding-top: 12px;
	padding-bottom: 3px;
}

#navcontainer a:link, #navlist a:visited
{
	color: #FFFFFF;
	text-decoration: none;
	font-size: 90%;
}

#navcontainer a:hover
{
	background-color: #CCCCCC;
	color: #02128b;
	font-size: 90%;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #666666;
	}

p {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 80%;
	font-weight: normal;
	color: #666666;
	line-height: 120%;
}

#logo {
	float: left;
}

#bullets ul {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	list-style-type: none;
}

#bullets li {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 80%;
	color: #666666;
	list-style-type: none;
	list-style-position: outside;
	list-style-image: url(images/bullet.png);
	line-height: 120%;
	display: list-item;
	margin-left: 0px;
	text-align: left;
}

#bullet_container {
	background-color: #e2e0eb;
	width: 340px;
	border-top-width: 2px;
	border-bottom-width: 2px;
	border-top-style: solid;
	border-bottom-style: solid;
	border-top-color: #02128b;
	border-bottom-color: #02128b;
	padding-top: 5px;
	padding-right: 5px;
	padding-left: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	padding-bottom: 0px;
}

.thrColFixHdr #container #mainContent #bullet_container li {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 70%;
	color: #333333;
	line-height: 130%;
	padding-bottom: 7px;
	padding-top: 7px;
	padding-right: 10px;
	background-image: url(images/bullet.png);
	background-repeat: no-repeat;
	background-position: left 13px;
	list-style-type:none;
	padding-left: 10px;
	margin: 0px;
}

.recruit_list {
	background-image: url(images/bullet.png);
	list-style-type: none;
	background-repeat: no-repeat;
	background-position: left 7px;
	list-style-type:none;
	padding-left: 10px;
}

a:link {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 100%;
	color: #02128b;
	text-decoration: underline;
	line-height: 100%;
}

a:visited {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 100%;
	color: #02128b;
	text-decoration: underline;
	line-height: 100%;
}

a:hover {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 100%;
	color: #02128b;
	text-decoration: underline;
	line-height: 100%;
}

a:active {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 95%;
	color: #02128b;
	text-decoration: underline;
}

#got {
	float: left;
}

a img {
border: none;
}

.contactbox {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 70%;
	padding-left: 10px;
}

.contactinfo {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	color: #02128b;
	font-size: 70%;
	line-height: 175%;
}

#teaser {
	float: right;
	width: 215px;
}

h2 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 90%;
	color: #02128b;
	line-height: normal;
}

.brownbold {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 100%;
	line-height: 120%;
	color: #B38F00;
	font-weight: bold;
}

.orangebold {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 100%;
	line-height: 120%;
	font-weight: bold;
	color: #FF9900;
}

.porange {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	color: #FF9900;
	font-weight: bold;
}

.thrColFixHdr #container #footer #footername a {
	font-weight: bold;
	color: #FFFFFF;
}

.thrColFixHdr #container #footer #footercontact .boldfooter a {
	font-weight: bold;
	color: #FFFFFF;	
}

.test {
	color: #990000;
}

.thrColFixHdr #container #no_image {
	float: right;
	height: 10px;
	width: 10px;
}

.thrColFixHdr #container #contact_sidebar2 {
	width: 130px;
	float: right;
	height: 0px;
}

.subheading {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 100%;
	font-weight: bold;
	color: #02128b;
}

#fsb {
}

.individual_image {
	margin-left: 35px;
}

#list_container {
	margin: 0px;
	padding: 0px;
}

#list_container ul {
	margin: 0px;
	padding: 0px;
	color: #666666;
}

#list_container li {
	display: list-item;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 80%;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 20px;
	padding: 0px;
	list-style-position: outside;
	list-style-image: url(images/bullet2.png);
	color: #666666;
}
#offer {
	margin-top: 30px;
}
