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

img.center {
    display: block;
    margin-left: auto;
    margin-right: auto
}

iframe.center {
	display: block;
    margin-left: auto;
    margin-right: auto
}

.container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
}

.video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.label_blue {
	border-radius: 0px;
	background: #3b6895;
	padding: 0px;
	width: 100%;
	height: auto;
}

.label_blue_long {
	border-radius: 0px;
	background: #3b6895;
	padding: 0px;
	width: 99%;
	height: auto;
	margin-left: auto;
    margin-right: auto
}

.label_greyblue {
	border-radius: 5px;
	background: #939da8;
	padding: 5px;
	width: 96%;
	height: auto;
}

.label_greyblue_long {
	border-radius: 5px;
	background: #939da8;
	padding: 5px;
	width: 99%;
	height: auto;
	margin-left: auto;
    margin-right: auto
}

.label_red {
	border-radius: 5px;
	background: red;
	padding: 5px;
	width: 96%;
	height: auto;
	text-align: justified;
	color: #ffffff;
}

.btn {
  background: #74c936;
  background-image: -webkit-linear-gradient(top, #74c936, #67b131);
  background-image: -moz-linear-gradient(top, #74c936, #67b131);
  background-image: -ms-linear-gradient(top, #74c936, #67b131);
  background-image: -o-linear-gradient(top, #74c936, #67b131);
  background-image: linear-gradient(to bottom, #74c936, #67b131);
  -webkit-border-radius: 2;
  -moz-border-radius: 2;
  border-radius: 2px;
  text-shadow: 0px -1px 0px #56952a;
  font-family: Arial;
  color: #ffffff;
  font-size: 15px;
  padding: 6px 11px 5px 11px;
  border: solid #67b131 1px;
  text-decoration: none;
  text-align: center;
}

.btn:hover {
  box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19);
}

.btn_big {
  background: #74c936;
  background-image: -webkit-linear-gradient(top, #74c936, #67b131);
  background-image: -moz-linear-gradient(top, #74c936, #67b131);
  background-image: -ms-linear-gradient(top, #74c936, #67b131);
  background-image: -o-linear-gradient(top, #74c936, #67b131);
  background-image: linear-gradient(to bottom, #74c936, #67b131);
  -webkit-border-radius: 2;
  -moz-border-radius: 2;
  border-radius: 2px;
  text-shadow: 0px -1px 0px #56952a;
  font-family: Arial;
  color: #ffffff;
  font-size: 18px;
  padding: 6px 11px 5px 11px;
  border: solid #67b131 1px;
  text-decoration: none;
  text-align: center;
  height: 40px;
}

.btn_big:hover {
  box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19);
}

pre {
  background: #ffffcc;
  margin-top: 40px;
  margin-bottom: 40px;
  margin-left: 40px;
  margin-right: 40px;
  padding: 1em;
}

blockquote { 
  display: block;
  margin-top: 1em;
  margin-bottom: 0.5em;
  margin-left: 40px;
  margin-right: 40px;
  background: #f9f9f9;
  border-left: 5px solid #ccc;
  padding: 0.5em 10px;
}

/* Overall list spacing (space after the entire list finishes) */
ul, ol {
  margin-bottom: 0.5em; 
}

/* ----------------------------- */
/* Unordered List (Bullets)      */
/* ----------------------------- */

ul li { 
  margin: 0 0 0.5em 0; /* 0.5em space between items */
  background: #f9f9f9; 
  padding: 0.5em; 
}

/* ----------------------------- */
/* Ordered List (Numbers)        */
/* ----------------------------- */

ol { 
  margin: 0 0.5em 1.5em; 
  padding: 0; 
  counter-reset: item; 
}

ol > li { 
  margin: 0 0 0.5em 0; /* 0.5em space between items */
  padding: 0.5em 0 0.5em 2em; 
  text-indent: -2em; 
  list-style-type: none; 
  counter-increment: item; 
  line-height: 1.5em; /* Allows text to wrap naturally without overlapping */
  background: #f9f9f9; 
}

ol > li:before { 
  display: inline-block; 
  width: 1.5em; 
  padding-right: 0.5em; 
  font-weight: bold; 
  text-align: right; 
  content: counter(item) ". "; 
}

/* ----------------------------- */
/* The "Extra Gap" Fix           */
/* ----------------------------- */

/* Removes the bottom margin ONLY from the final item in the lists */
ul li:last-child, 
ol > li:last-child {
  margin-bottom: 0;
}

.div_hover {
  text-decoration: none;
}

.div_hover:hover {
  text-decoration: underline;
}