*:before, *:after {
    box-sizing: border-box;
}

body {
	font-family: 'Source Sans Pro', Arial, sans-serif;
	font-size: 14px;
	font-weight: 300;
	line-height: 1.2em;
	background-color: #f9f9f9;
}
.clear-fix:after {
    clear: both;
    content: ".";
    display: block;
    height: 0;
    visibility: hidden;
}
#header {
	width: 100%;
	height: auto;
}

#header img {width: 100%; height: auto; vertical-align: middle;}

#container {
	margin: 0px auto;
	width: 100%;
}
#page {
	/*min-height: 884px;*/ /* 1024 - 140 */
	background: #FFFFFF url() repeat-y;
	background-size: contain;
	width: 100%;
}

#page div {border-bottom: 2px dotted #888888; padding: 18px 15px;}


#page div:last-child {
	border-bottom: none;
}

#page div.layout-1-1 div {
	float: left;
	border-bottom: none;
}
#page div.column-1 {
    float: left;
    margin-right: 4%;
    padding: 0;
    width: 48%;
}
#page div.column-2 {
    float: left;
    padding: 0;
    width: 48%;
}
#page div.blue {
	color: #00519E;
	text-align: justify;
}
#page div.location {
	padding: 5px 44px 5px 13%;
}
#page div.headline {
	background: url() 23px center no-repeat;

}
#page div.no-border {
	border-bottom: none;
}
#page h1 {
	font-family: 'Source Sans Pro', Arial, sans-serif;
	font-size: 21px;
	font-weight: 600;
	line-height: 1.0em;
	margin: 12px 0px 5px 0px;
}
#page h2 {
	color: #00519E;
	text-transform: uppercase;
	margin-bottom: 3px;
	font-family: 'Source Sans Pro', Arial, sans-serif;
	font-size: 18px;
	font-weight: 600;
	letter-spacing: 1px;
}
#page b {
	font-family: 'Source Sans Pro', Arial, sans-serif;
	font-weight: 600;
}
#page ul { list-style-type: disc; }
#page ol { list-style-type: decimal; }
#page dl { list-style-type: none; }
#page ul, #page ol {
	margin: 0px 0px 10px 24px;
}
#page li {
	margin: 3px 0px;
}
#page a {
	font-family: 'Source Sans Pro', Arial, sans-serif;
	font-weight: 600;
	color: #000000;
	text-decoration: none;	
}
#page a:hover {
	text-decoration: underline;
}

.apply {background: none repeat scroll 0 0 #fff; border-top: 2px dotted #888; padding: 18px 44px 18px 63px;}

.applynow {text-align: center;}

.applynow a {
    background: none repeat scroll 0 0 #00519e;
   /* border-color: #888;
    border-style: solid;
    border-width: 1px 1px 2px;*/
    color: #fff !important;
    display: block;
    margin: 25px 0;
    padding: 12px 0;
    text-decoration: none;
	text-transform: uppercase;
    transition: all 0.2s ease 0s;
    width: 100%;
	font-weight: 600;
}

.applynow a:hover {background: #525e6a;
text-decoration: none !important;}

.lbtn {
    color: #fff !important;
    font-size: 24px;
    height: 48px;
    line-height: 48px;
    position: fixed;
    left: 0;
    text-align: center;
    width: 48px;
    z-index: 200;
}

.lbtn a {
    color: #fff;
    display: block;
    height: 48px;
	transition: all 0.2s ease;
}
.lbtn a:hover, .lbtn a:active, .lbtn a:focus {
    color: #fff !important;
	cursor: pointer;
	background: #00519e;
}

.btn-share {bottom: 59px; background: #525e6a;}

.btn-print {bottom: 10px; background: #525e6a;}

.tooltip {
  position: absolute;
  z-index: 1030;
  display: block;
  font-size: 14px;
  line-height: 1.4;
  visibility: visible;
  filter: alpha(opacity=0);
  opacity: 0;
}
.tooltip.in {
  filter: alpha(opacity=90);
  opacity: .9;
}
.tooltip.top {
  padding: 5px 0;
  margin-top: -3px;
}
.tooltip.right {
  padding: 0 5px;
  margin-left: 3px;
}
.tooltip.bottom {
  padding: 5px 0;
  margin-top: 3px;
}
.tooltip.left {
  padding: 0 5px;
  margin-left: -3px;
}
.tooltip-inner {
  max-width: 200px;
  padding: 3px 8px;
  color: #fff;
  text-align: center;
  text-decoration: none;
  background-color: #000;
  border-radius: 4px;
}
.tooltip-arrow {
  position: absolute;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}
.tooltip.top .tooltip-arrow {
  bottom: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000;
}
.tooltip.top-left .tooltip-arrow {
  bottom: 0;
  left: 5px;
  border-width: 5px 5px 0;
  border-top-color: #000;
}
.tooltip.top-right .tooltip-arrow {
  right: 5px;
  bottom: 0;
  border-width: 5px 5px 0;
  border-top-color: #000;
}
.tooltip.right .tooltip-arrow {
  top: 50%;
  left: 0;
  margin-top: -5px;
  border-width: 5px 5px 5px 0;
  border-right-color: #000;
}
.tooltip.left .tooltip-arrow {
  top: 50%;
  right: 0;
  margin-top: -5px;
  border-width: 5px 0 5px 5px;
  border-left-color: #000;
}
.tooltip.bottom .tooltip-arrow {
  top: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}
.tooltip.bottom-left .tooltip-arrow {
  top: 0;
  left: 5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}
.tooltip.bottom-right .tooltip-arrow {
  top: 0;
  right: 5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}


/* #Media Querries
================================================== */
@media (max-width: 800px) {
	#page div.column-1 {
    float: left;
    margin-right: 0%;
    padding: 0;
    width: 100%;
	margin-bottom: 25px;
}
#page div.column-2 {
    float: left;
    padding: 0;
    width: 100%;
}
}

/* Extra small devices (phones, less than 768px) */
/* No media query since this is the default in Bootstrap */


/* Small devices (tablets, 768px and up) */
@media (min-width: 768px) {
	body {font-size: 18px;}
	
	#page {background: url("") repeat-y scroll -15% 0 / contain #ffffff; width: 100%;}
	
	#page div {padding: 18px 44px 18px 13%;}
	
	#container {width: 100%;}
	
	#page h1 {font-size: 57px;} 
	
	.apply {padding: 18px 44px 18px 13%; background: #fff; border-top: 2px dotted #888;}
	
}

/* Medium devices (desktops, 992px and up) */
@media (min-width: 970px) {
	#container {width: 100%;}
}

/* Large devices (large desktops, 1200px and up) */
@media (min-width: 1140px) { 
	#container {width: 100%;}
}

@media print {
	body {font-size: 14px;}
	#page h1 {font-size: 36px;}
	.tooltip, .tooltip-inner, .tooltip-arrow, .apply, .lbtn {display: none;}

}
