@charset "utf-8";
/* CSS Document */
	


body {
	color: #222;
    font-family: "Open Sans", Arial, sans-serif;
	font-size: 100%;
	line-height: 1.4;
	background: #fff;
}


div.container {
	width: 85%;
	margin: 0 auto;
	background: #fff;
}

header, footer {
	padding: 1em;
	color: #333;
	clear: left;
	text-align: center;
	
	border-bottom-width: 1px;
	border-bottom-style: dotted;
}

nav {
    float: left;
    max-width: 160px;
    margin: 0;
    padding: 1em;
	text-align: left;
}

nav ul {
	margin-bottom: 1.4em;
	padding-left: 0;
}

nav ul li {
	margin-bottom: 1.4em;
	list-style: none inside;
	text-decoration: none;
}

   
nav ul a {
	text-decoration: none;
}

	
	/* unvisited link */
a:link {
    color: #00549F;
}

/* visited link */
a:visited {
    color: #00549F;
}

/* mouse over link */
a:hover {
    color: #00A1DE;
}

/* selected link */
a:active {
    color: #C3C8C8;
}
	
article {
	margin-left: 250px;
	margin-right: 10%;
	padding: 1.2em;
	overflow: hidden;
}
.intro {
	margin: 0em .5em;
	padding: 0em 1.5em 1em;
	border: .5px solid #CCC;
}
h1 {
	font-weight: bold;
	font-size:40px;
	color: #0C124B;
}
h2 {
	font-weight: bold;
	color: #0C124B;
}
ul.spacing > li {
    margin-bottom: 20px;
	margin-top: 10px;
}
ol.spacing > li {
    margin-bottom: 10px;
	margin-top: 10px;
}
.imageCenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.imageRight {
  display: block;
  float: right;
  margin: 0 0 25px 25px;
  border: 2px solid #000;
}
.imageLeftIndent {
  display: block;
  margin: 5px 0 15px 25px;
}
/* Icon Down */
@-webkit-keyframes hvr-icon-down {
  0%,
  50%,
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  25%,
  75% {
    -webkit-transform: translateY(6px);
    transform: translateY(6px);
  }
}


/* Icon Down */
.hvr-icon-down {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  padding-right: 2.2em;
}
.hvr-icon-down:before {
  content: "\f01a"; font-size:1.5em;
  position: absolute;
  right: 1em;
  padding: 0 1px;
  font-family: FontAwesome;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.hvr-icon-down:hover:before, .hvr-icon-down:focus:before, .hvr-icon-down:active:before {
  -webkit-animation-name: hvr-icon-down;
  animation-name: hvr-icon-down;
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

/*Acoordion Section modified from w3schools*/
/* Style the buttons that are used to open and close the accordion panel */
button.accordion {
	background-color: #eee;
	font-size: .95em;
	color: #0C124B;
	font-weight: bold;
	cursor: pointer;
	padding: 1em;
	width: 100%;
	text-align: left;
	outline: none;
	transition: 0.4s;
	border-top: 3px solid #FFF;
	border-right: 3px solid #FFF;
	border-bottom: 3px solid #FFF;
	border-left: 3px solid #FFF;
}

/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
button.accordion.active, button.accordion:hover {
    background-color: #ddd;
}

/* Style the accordion panel. Note: hidden by default */
div.panel {
    padding: 0 18px;
    background-color: white;
    display: none;
}

/* The "show" class is added to the accordion panel when the user clicks on one of the buttons. This will show the panel content */
div.panel.show {
	display: block;
	font-size: 16px;
}

/* Accordion Ends here*/

/* Circled numbers */
span.step {
  background: #8e8e8e;
  border-radius: 0.8em;
  -moz-border-radius: 0.8em;
  -webkit-border-radius: 0.8em;
  color: #ffffff;
  display: inline-block;
  font-weight: bold;
  line-height: 1.6em;
  margin-right: 5px;
  text-align: center;
  width: 1.6em; 
}

/* Top Arrow */
span.top {
  background: #00A1DE;
  border-radius: 0.8em;
  -moz-border-radius: 0.8em;
  -webkit-border-radius: 0.8em;
  color: #ffffff;
  display: inline-block;
  font-weight: bold;
  line-height: 1.2em;
  margin-left: 10px;
  text-align: center;
  width: 1.2em; 
  
}

/* Accordionlink  www.realcombiz.com/2014/01/how-to-expand-collapse-toggle-div-layer.html */

.toggle-box {
  display: none;
}

.toggle-box + label {
  cursor: pointer;
  display: block;
  color: #00549F;
  text-decoration:underline;
}

.toggle-box + label + div {
  display: none;
  
}

.toggle-box:checked + label + div {
  display: block;
}



/* Accordionlink Ends here*/

dt {
	color: #00A1DE;
	font-size: 1.3em;
	line-height: normal;
	font-variant: normal;
	font-weight: bold;
	margin-bottom: .8em;
}

dd { 
  margin-bottom: 2.5em;
}

.browsers {
	text-align: center;
}

