@import url(http://fonts.googleapis.com/css?family=Open+Sans);
#cssmenu1,
#cssmenu1 ul,
#cssmenu1 ul li,
#cssmenu1 ul li a,
#cssmenu1 #menu-button {
  margin: 0;
  padding: 0;
  border: 0;
  list-style: none;
  line-height: 1;
  display: block;
  position: relative;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
#cssmenu1:after,
#cssmenu1 > ul:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
#cssmenu1 #menu-button {
  display: none;
}
#cssmenu1 {
  font-family: 'Open Sans', sans-serif;
  line-height: 1;
  background: #14337e;
  width: auto;
}
#menu-line {
  position: absolute;
  top: 0;
  left: 0;
  height: 3px;
  background: #009ae1;
  -webkit-transition: all 0.25s ease-out;
  -moz-transition: all 0.25s ease-out;
  -ms-transition: all 0.25s ease-out;
  -o-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
}
#cssmenu1 > ul > li {
  float: left;
}
#cssmenu1.align-center > ul {
  font-size: 0;
  text-align: center;
}
#cssmenu1.align-center > ul > li {
  display: inline-block;
  float: none;
}
#cssmenu1.align-center ul ul {
  text-align: left;
}
#cssmenu1.align-right > ul > li {
  float: right;
}
#cssmenu1.align-right ul ul {
  text-align: right;
}
#cssmenu1 > ul > li > a {
  padding: 20px;
  font-size: 14px;
  text-decoration: none;
  text-transform: uppercase;
  color: #fff;
  -webkit-transition: color .2s ease;
  -moz-transition: color .2s ease;
  -ms-transition: color .2s ease;
  -o-transition: color .2s ease;
  transition: color .2s ease;
}
#cssmenu1 > ul > li:hover > a,
#cssmenu1 > ul > li.active > a {
  color: #009ae1;
}
#cssmenu1 > ul > li.has-sub > a {
  padding-right: 25px;
}
#cssmenu1 > ul > li.has-sub > a::after {
  position: absolute;
  top: 22px;
  right: 10px;
  width: 4px;
  height: 4px;
  border-bottom: 1px solid #000000;
  border-right: 1px solid #000000;
  content: "";
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: border-color 0.2s ease;
  -moz-transition: border-color 0.2s ease;
  -ms-transition: border-color 0.2s ease;
  -o-transition: border-color 0.2s ease;
  transition: border-color 0.2s ease;
}
#cssmenu1 > ul > li.has-sub:hover > a::after {
  border-color: #009ae1;
}
#cssmenu1 ul ul {
  position: absolute;
  left: -9999px;
}
#cssmenu1 li:hover > ul {
  left: auto;
}
#cssmenu1.align-right li:hover > ul {
  right: 0;
}
#cssmenu1 ul ul ul {
  margin-left: 100%;
  top: 0;
}
#cssmenu1.align-right ul ul ul {
  margin-left: 0;
  margin-right: 100%;
}
#cssmenu1 ul ul li {
  height: 0;
  -webkit-transition: height .2s ease;
  -moz-transition: height .2s ease;
  -ms-transition: height .2s ease;
  -o-transition: height .2s ease;
  transition: height .2s ease;
}
#cssmenu1 ul li:hover > ul > li {
  height: 33px;
}
#cssmenu1 ul ul li a {
  padding: 10px 20px;
  width: 180px;
  font-size: 12px;
  background: #333333;
  text-decoration: none;
  color: #dddddd;
  -webkit-transition: color .2s ease;
  -moz-transition: color .2s ease;
  -ms-transition: color .2s ease;
  -o-transition: color .2s ease;
  transition: color .2s ease;
}
#cssmenu1 ul ul li:hover > a,
#cssmenu1 ul ul li a:hover {
  color: #ffffff;
}
#cssmenu1 ul ul li.has-sub > a::after {
  position: absolute;
  top: 13.5px;
  right: 10px;
  width: 4px;
  height: 4px;
  border-bottom: 1px solid #dddddd;
  border-right: 1px solid #dddddd;
  content: "";
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: border-color 0.2s ease;
  -moz-transition: border-color 0.2s ease;
  -ms-transition: border-color 0.2s ease;
  -o-transition: border-color 0.2s ease;
  transition: border-color 0.2s ease;
}
#cssmenu1.align-right ul ul li.has-sub > a::after {
  right: auto;
  left: 10px;
  border-bottom: 0;
  border-right: 0;
  border-top: 1px solid #dddddd;
  border-left: 1px solid #dddddd;
}
#cssmenu1 ul ul li.has-sub:hover > a::after {
  border-color: #ffffff;
}
#cssmenu1.small-screen {
  width: 100%;
}
#cssmenu1.small-screen ul {
  width: 100%;
  display: none;
}
#cssmenu1.small-screen.align-center > ul,
#cssmenu1.small-screen.align-right ul ul {
  text-align: left;
}
#cssmenu1.small-screen ul li,
#cssmenu1.small-screen ul ul li,
#cssmenu1.small-screen ul li:hover > ul > li {
  width: 100%;
  height: auto;
  border-top: 1px solid rgba(120, 120, 120, 0.15);
}
#cssmenu1.small-screen ul li a,
#cssmenu1.small-screen ul ul li a {
  width: 100%;
}
#cssmenu1.small-screen > ul > li,
#cssmenu1.small-screen.align-center > ul > li,
#cssmenu1.small-screen.align-right > ul > li {
  float: none;
  display: block;
}
#cssmenu1.small-screen ul ul li a {
  padding: 20px 20px 20px 30px;
  font-size: 14px;
  color: #000000;
  background: none;
}
#cssmenu1.small-screen ul ul li:hover > a,
#cssmenu1.small-screen ul ul li a:hover {
  color: #000000;
}
#cssmenu1.small-screen ul ul ul li a {
  padding-left: 40px;
}
#cssmenu1.small-screen ul ul,
#cssmenu1.small-screen ul ul ul {
  position: relative;
  left: 0;
  right: auto;
  width: 100%;
  margin: 0;
}
#cssmenu1.small-screen > ul > li.has-sub > a::after,
#cssmenu1.small-screen ul ul li.has-sub > a::after {
  display: none;
}
#cssmenu1.small-screen #menu-line {
  display: none;
}
#cssmenu1.small-screen #menu-button {
  display: block;
  padding: 20px;
  color: #000000;
  cursor: pointer;
  font-size: 12px;
  text-transform: uppercase;
}
#cssmenu1.small-screen #menu-button::after {
  content: '';
  position: absolute;
  top: 21px;
  right: 20px;
  display: block;
  width: 15px;
  height: 2px;
  background: #000000;
}
#cssmenu1.small-screen #menu-button::before {
  content: '';
  position: absolute;
  top: 26px;
  right: 20px;
  display: block;
  width: 15px;
  height: 3px;
  border-top: 2px solid #000000;
  border-bottom: 2px solid #000000;
}
#cssmenu1.small-screen .submenu-button {
  position: absolute;
  z-index: 9999;
  right: 0;
  top: 0;
  display: block;
  border-left: 1px solid rgba(120, 120, 120, 0.15);
  height: 54px;
  width: 54px;
  cursor: pointer;
}
#cssmenu1.small-screen .submenu-button::after {
  content: '';
  position: absolute;
  top: 22px;
  left: 27px;
  display: block;
  width: 1px;
  height: 11px;
  background: #000000;
  z-index: 9999;
}
#cssmenu1.small-screen .submenu-button::before {
  content: '';
  position: absolute;
  left: 22px;
  top: 27px;
  display: block;
  width: 11px;
  height: 1px;
  background: #000000;
  z-index: 9999;
}
#cssmenu1.small-screen .submenu-button.submenu-opened:after {
  display: none;
}
#cssmenu1.small-screen.select-list {
  padding: 5px;
}
}

@import url(http://fonts.googleapis.com/css?family=Open+Sans:400,700);
#cssmenu {
  margin: 0;
  position: relative;
   font-family: 'Open Sans', Helvetica, sans-serif;
  line-height: 1;
  width: 230px;
}
.align-right {
  float: right;
}
#cssmenu ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: block;
}
#cssmenu ul li {
  position: relative;
  margin: 0;
  padding: 0;
}
#cssmenu ul li a {
  text-decoration: none;
  cursor: pointer;
}
#cssmenu > ul > li > a {
  color: #000;
  text-transform: uppercase;
  display: block;
  padding: 13px;
  border-top: 1px solid #000000;
  border-left: 1px solid #000000;
  border-right: 1px solid #000000;
  background: #8FA4D6;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  letter-spacing: 1px;
  font-size: 12px;
  font-weight: 300;
  -webkit-transition: all 0.25s ease-in;
  -moz-transition: all 0.25s ease-in;
  -ms-transition: all 0.25s ease-in;
  -o-transition: all 0.25s ease-in;
  transition: all 0.25s ease-in;
  position: relative;
}
#cssmenu > ul > li:first-child > a {
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}
#cssmenu > ul > li:last-child > a {
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
  border-bottom: 1px solid #000000;
}
#cssmenu > ul > li:hover > a,
#cssmenu > ul > li.open > a,
#cssmenu > ul > li.active > a {
  background: #14337e;
  color: #ffffff;
}
#cssmenu ul > li.has-sub > a::after {
  content: "";
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-top: 13px solid #000000;
  border-botom: 13px solid transparent;
  border-left: 125px solid transparent;
  border-right: 125px solid transparent;
  left: 0;
  bottom: -13px;
  bottom: 0px;
  z-index: 1;
  opacity: 0;
  -webkit-transition: all .2s ease;
  -moz-transition: all .2s ease;
  -ms-transition: all .2s ease;
  -o-transition: all .2s ease;
  transition: all .2s ease;
}
#cssmenu ul > li.has-sub > a::before {
  content: "";
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-top: 13px solid #14337e;
  border-botom: 13px solid transparent;
  border-left: 125px solid transparent;
  border-right: 125px solid transparent;
  left: 0;
  bottom: -12px;
  bottom: -1px;
  z-index: 3;
  opacity: 0;
  -webkit-transition: all .2s ease;
  -moz-transition: all .2s ease;
  -ms-transition: all .2s ease;
  -o-transition: all .2s ease;
  transition: all .2s ease;
}
#cssmenu ul > li.has-sub::after {
  content: "";
  display: block;
  position: absolute;
  width: 0;
  height: 0;
  border: 7px solid transparent;
  border-top-color: #dddddd;
  z-index: 2;
  right: 20px;
  top: 23.5px;
  pointer-events: none;
}
#cssmenu ul > li:hover::after,
#cssmenu ul > li.active::after,
#cssmenu ul > li.open::after {
  border-top-color: #ffffff;
}
#cssmenu ul > li.has-sub.open > a::after {
  opacity: 1;
  bottom: -13px;
}
#cssmenu ul > li.has-sub.open > a::before {
  opacity: 1;
  bottom: -12px;
}
#cssmenu ul ul {
  display: none;
}
#cssmenu > ul > li.active > ul {
  display: block;
}
#cssmenu ul ul li {
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
}
#cssmenu ul ul li a {
  background: #f1f1f1;
  display: block;
  position: relative;
  font-size: 15px;
  padding: 14px 20px;
  border-bottom: 1px solid #dddddd;
  color: #777777;
  font-weight: 300;
  -webkit-transition: all 0.25s ease-in;
  -moz-transition: all 0.25s ease-in;
  -ms-transition: all 0.25s ease-in;
  -o-transition: all 0.25s ease-in;
  transition: all 0.25s ease-in;
}
#cssmenu ul ul li:first-child > a {
  padding-top: 18px;
}
#cssmenu ul ul ul li {
  border: 0;
}
#cssmenu ul ul li:hover > a,
#cssmenu ul ul li.open > a,
#cssmenu ul ul li.active > a {
  background: #14337e;
  color: #666666;
}
#cssmenu ul ul > li.has-sub > a::after {
  border-top: 13px solid #dddddd;
}
#cssmenu ul ul > li.has-sub > a::before {
  border-top: 13px solid #e4e4e4;
}
#cssmenu ul ul ul li a {
  padding-left: 30px;
}
#cssmenu ul ul > li.has-sub::after {
  top: 18.5px;
  border-width: 6px;
  border-top-color: #777777;
}
#cssmenu ul ul > li:hover::after,
#cssmenu ul ul > li.active::after,
#cssmenu ul ul > li.open::after {
  border-top-color: #666666;
}



#cssmenu2,
#cssmenu2 ul,
#cssmenu2 ul li,
#cssmenu2 ul li a {
  margin: 0;
  padding: 0;
  border: 0;
  list-style: none;
  line-height: 1;
  display: block;
  position: relative;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
#cssmenu2 {
  width: 220px;
  z-index: 10;
}
#cssmenu2 ul {
  border: 1px solid #cccccc;
  border-radius: 5px;
  background: #ffffff;
  background: -moz-linear-gradient(bottom, #f0f0f0, #ffffff);
  background: -webkit-linear-gradient(bottom, #f0f0f0, #ffffff);
  background: -o-linear-gradient(bottom, #f0f0f0, #ffffff);
  background: -ms-linear-gradient(bottom, #f0f0f0, #ffffff);
  background: linear-gradient(to top, #f0f0f0, #ffffff);
}
#cssmenu2 ul li {
  display: block;
  border-bottom: 1px solid #cccccc;
}
#cssmenu2 ul li.active {
  border-bottom: 0;
}
#cssmenu2 ul li:last-child {
  border-bottom: 0;
}
#cssmenu2 ul li a {
  display: block;
  padding: 14px 12px;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: bold;
  text-decoration: underline;
  color: #444444;
}
#cssmenu2 ul li.active {
  left: -8px;
  width: 234px;
  padding: 2px;
  background: #cd0067;
  background: -moz-linear-gradient(bottom, #ae0058, #ec0076);
  background: -webkit-linear-gradient(bottom, #ae0058, #ec0076);
  background: -o-linear-gradient(bottom, #ae0058, #ec0076);
  background: -ms-linear-gradient(bottom, #ae0058, #ec0076);
  background: linear-gradient(to top, #ae0058, #ec0076);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.25);
}
#cssmenu2 ul li.active > a {
  padding: 12px 12px 12px 16px;
  border-left: 1px dashed #ff1b8d;
  border-top: 1px dashed #ff1b8d;
  border-bottom: 1px dashed #ff1b8d;
  color: #ffffff;
  text-shadow: 0 1px 1px #670034;
}
#cssmenu2 ul li.active:after {
  position: absolute;
  right: -16px;
  top: 7px;
  width: 31.526911934581186px;
  height: 31.526911934581186px;
  background: #cd0067;
  background: -moz-linear-gradient(-45deg, #ae0058, #ec0076);
  background: -webkit-linear-gradient(-45deg, #ae0058, #ec0076);
  background: -o-linear-gradient(-45deg, #ae0058, #ec0076);
  background: -ms-linear-gradient(-45deg, #ae0058, #ec0076);
  background: linear-gradient(-45deg, #ae0058, #ec0076);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  content: "";
}
#cssmenu2 ul li.active:before {
  position: absolute;
  right: -12px;
  top: 9px;
  z-index: 10;
  width: 28.526911934581186px;
  height: 28.526911934581186px;
  border-right: 1px dashed #ff4ea7;
  border-top: 1px dashed #ff4ea7;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  content: "";
}
#cssmenu2 ul li.active a:after {
  position: absolute;
  bottom: -7px;
  left: -11px;
  z-index: -1;
  width: 0;
  height: 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 8px solid transparent;
  border-right: 8px solid #76003b;
  content: "";
}

.overflow {
    z-index: 10;
   
width: 100%;
		height: auto;
	text-align:  center;
border-top-left-radius: 5px;
border-top-right-radius: 5px;
border-bottom-left-radius: 5px;
border-bottom-right-radius: 5px;
}

.wrapper         {width:100%;height:100%;margin:0 auto;}
.h_iframe        {position:relative;}
.h_iframe .ratio {display:block;width:100%;height:100%;}
.h_iframe iframe {position:absolute;top:0;left:0;width:100%; height:100%;}

.h_iframe .ratio1 {display:block;width:100%;height:97%;}
.h_iframe .ratio2 {display:block;width:100%;height:100%;}
.h_iframe .ratio3 {display:block;width:82%;height:100%;}
.h_iframe .ratio4 {display:block;width:74%;height:97%;}
.h_iframe .ratio5 {display:block;width:75%;height:97%;}

.readmore {
    position: center;
    bottom: 0px;
    right: 0px;
    width: 80%;
border-bottom-left-radius: 5px;
border-bottom-right-radius: 5px;
    text-align: center;
    padding: 7px 0px;
    background: none repeat scroll 0% 0% #b4005a;
}

.readmore a{
	font-family:"Roboto Condensed",sans-serif;
	font-size:13px;
	letter-spacing:1px;
	text-transform:uppercase;
	font-weight:500;
	color:#FFFFFF;
	text-decoration:none;
	position:right;
	right:10px;
	top:5px;
	}

@import url(http://fonts.googleapis.com/css?family=Open+Sans:400,700);
#cssmenu5 {
  margin: 0;
  position: relative;
   font-family: 'Open Sans', Helvetica, sans-serif;
  line-height: 1;
  width: 230px;
}
.align-right {
  float: right;
}
#cssmenu5 ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: block;
}
#cssmenu5 ul li {
  position: relative;
  margin: 0;
  padding: 0;
}
#cssmenu5 ul li a {
  text-decoration: none;
  cursor: pointer;
}
#cssmenu5 > ul > li > a {
  color: #194f27;
  text-transform: uppercase;
  display: block;
  padding: 20px;
  border-top: 1px solid #000000;
  border-left: 1px solid #000000;
  border-right: 1px solid #000000;
  background: #f2e430;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  letter-spacing: 1px;
  font-size: 14px;
  font-weight: 300;
  -webkit-transition: all 0.25s ease-in;
  -moz-transition: all 0.25s ease-in;
  -ms-transition: all 0.25s ease-in;
  -o-transition: all 0.25s ease-in;
  transition: all 0.25s ease-in;
  position: relative;
}
#cssmenu5 > ul > li:first-child > a {
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}
#cssmenu5 > ul > li:last-child > a {
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
  border-bottom: 1px solid #000000;
}
#cssmenu5 > ul > li:hover > a,
#cssmenu5 > ul > li.open > a,
#cssmenu5 > ul > li.active > a {
  background: #f0e118;
  color: #194f27;
}
#cssmenu5 ul > li.has-sub > a::after {
  content: "";
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-top: 13px solid #000000;
  border-botom: 13px solid transparent;
  border-left: 115px solid transparent;
  border-right: 115px solid transparent;
  left: 0;
  bottom: -13px;
  bottom: 0px;
  z-index: 1;
  opacity: 0;
  -webkit-transition: all .2s ease;
  -moz-transition: all .2s ease;
  -ms-transition: all .2s ease;
  -o-transition: all .2s ease;
  transition: all .2s ease;
}
#cssmenu5 ul > li.has-sub > a::before {
  content: "";
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-top: 13px solid #f0e118;
  border-botom: 13px solid transparent;
  border-left: 115px solid transparent;
  border-right: 115px solid transparent;
  left: 0;
  bottom: -12px;
  bottom: -1px;
  z-index: 3;
  opacity: 0;
  -webkit-transition: all .2s ease;
  -moz-transition: all .2s ease;
  -ms-transition: all .2s ease;
  -o-transition: all .2s ease;
  transition: all .2s ease;
}
#cssmenu5 ul > li.has-sub::after {
  content: "";
  display: block;
  position: absolute;
  width: 0;
  height: 0;
  border: 7px solid transparent;
  border-top-color: #194f27;
  z-index: 2;
  right: 20px;
  top: 23.5px;
  pointer-events: none;
}
#cssmenu5 ul > li:hover::after,
#cssmenu5 ul > li.active::after,
#cssmenu5 ul > li.open::after {
  border-top-color: #194f27;
}
#cssmenu5 ul > li.has-sub.open > a::after {
  opacity: 1;
  bottom: -13px;
}
#cssmenu5 ul > li.has-sub.open > a::before {
  opacity: 1;
  bottom: -12px;
}
#cssmenu5 ul ul {
  display: none;
}
#cssmenu5 > ul > li.active > ul {
  display: block;
}
#cssmenu5 ul ul li {
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
}
#cssmenu5 ul ul li a {
  background: #000000;
  display: block;
  position: relative;
  font-size: 15px;
  padding: 14px 20px;
  border-bottom: 1px solid #dddddd;
  color: #194f27;
  font-weight: 300;
  -webkit-transition: all 0.25s ease-in;
  -moz-transition: all 0.25s ease-in;
  -ms-transition: all 0.25s ease-in;
  -o-transition: all 0.25s ease-in;
  transition: all 0.25s ease-in;
}
#cssmenu5 ul ul li:first-child > a {
  padding-top: 18px;
}
#cssmenu5 ul ul ul li {
  border: 0;
}
#cssmenu5 ul ul li:hover > a,
#cssmenu5 ul ul li.open > a,
#cssmenu5 ul ul li.active > a {
  background: #000000;
  color: #666666;
}
#cssmenu5 ul ul > li.has-sub > a::after {
  border-top: 13px solid #dddddd;
}
#cssmenu5 ul ul > li.has-sub > a::before {
  border-top: 13px solid #000000;
}
#cssmenu5 ul ul ul li a {
  padding-left: 30px;
}
#cssmenu5 ul ul > li.has-sub::after {
  top: 18.5px;
  border-width: 6px;
  border-top-color: #194f27;
}
#cssmenu5 ul ul > li:hover::after,
#cssmenu5 ul ul > li.active::after,
#cssmenu5 ul ul > li.open::after {
  border-top-color: #666666;
}


@import url(http://fonts.googleapis.com/css?family=Open+Sans:400,700);
#cssmenu7 {
  margin: 0;
  position: relative;
   font-family: 'Open Sans', Helvetica, sans-serif;
  line-height: 1;
width: 300px;

  
}
.align-right {
  float: right;
}
#cssmenu7 ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: block;
}
#cssmenu7 ul li {
  position: relative;
  margin: 0;
  padding: 0;
}
#cssmenu7 ul li a {
  text-decoration: none;
  cursor: pointer;
}
#cssmenu7 > ul > li > a {
  color: #000;
  text-transform: uppercase;
  display: block;
  padding: 15px;

  background: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  letter-spacing: 1px;
  font-size: 10px;
  font-weight: 300;
  -webkit-transition: all 0.25s ease-in;
  -moz-transition: all 0.25s ease-in;
  -ms-transition: all 0.25s ease-in;
  -o-transition: all 0.25s ease-in;
  transition: all 0.25s ease-in;
  position: relative;
}
#cssmenu7 > ul > li:first-child > a {
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}
#cssmenu7 > ul > li:last-child > a {
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
  border-bottom: 1px solid #000000;
}
#cssmenu7 > ul > li:hover > a,
#cssmenu7 > ul > li.open > a {
  background: #fff;
  color: #000;
}

#cssmenu7 > ul > li.active > a {
  background:  linear-gradient(to bottom, #E7DF00 0%, #FCC500 100%) repeat scroll 0% 0%;
  color: #fff;
}

#cssmenu7 ul > li.has-sub > a::after {
  content: "";
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-top: 13px solid #000000;
  border-botom: 13px solid transparent;
  border-left: 125px solid transparent;
  border-right: 125px solid transparent;
  left: 0;
  bottom: -13px;
  bottom: 0px;
  z-index: 1;
  opacity: 0;
  -webkit-transition: all .2s ease;
  -moz-transition: all .2s ease;
  -ms-transition: all .2s ease;
  -o-transition: all .2s ease;
  transition: all .2s ease;
}
#cssmenu7 ul > li.has-sub > a::before {
  content: "";
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-top: 13px solid #14337e;
  border-botom: 13px solid transparent;
  border-left: 125px solid transparent;
  border-right: 125px solid transparent;
  left: 0;
  bottom: -12px;
  bottom: -1px;
  z-index: 3;
  opacity: 0;
  -webkit-transition: all .2s ease;
  -moz-transition: all .2s ease;
  -ms-transition: all .2s ease;
  -o-transition: all .2s ease;
  transition: all .2s ease;
}
#cssmenu7 ul > li.has-sub::after {
  content: "";
  display: block;
  position: absolute;
  width: 0;
  height: 0;
  border: 7px solid transparent;
  border-top-color: #dddddd;
  z-index: 2;
  right: 20px;
  top: 23.5px;
  pointer-events: none;
}
#cssmenu7 ul > li:hover::after,
#cssmenu7 ul > li.active::after,
#cssmenu7 ul > li.open::after {
  border-top-color: #ffffff;
}
#cssmenu7 ul > li.has-sub.open > a::after {
  opacity: 1;
  bottom: -13px;
}
#cssmenu7 ul > li.has-sub.open > a::before {
  opacity: 1;
  bottom: -12px;
}
#cssmenu7 ul ul {
  display: none;
}
#cssmenu7 > ul > li.active > ul {
  display: block;
}
#cssmenu7 ul ul li {
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
}
#cssmenu7 ul ul li a {
  background: #f1f1f1;
  display: block;
  position: relative;
  font-size: 15px;
  padding: 14px 20px;
  border-bottom: 1px solid #dddddd;
  color: #777777;
  font-weight: 300;
  -webkit-transition: all 0.25s ease-in;
  -moz-transition: all 0.25s ease-in;
  -ms-transition: all 0.25s ease-in;
  -o-transition: all 0.25s ease-in;
  transition: all 0.25s ease-in;
}
#cssmenu7 ul ul li:first-child > a {
  padding-top: 18px;
}
#cssmenu7 ul ul ul li {
  border: 0;
}
#cssmenu7 ul ul li:hover > a,
#cssmenu7 ul ul li.open > a,
#cssmenu7 ul ul li.active > a {
  background: #14337e;
  color: #666666;
}
#cssmenu7 ul ul > li.has-sub > a::after {
  border-top: 13px solid #dddddd;
}
#cssmenu7 ul ul > li.has-sub > a::before {
  border-top: 13px solid #e4e4e4;
}
#cssmenu7 ul ul ul li a {
  padding-left: 30px;
}
#cssmenu7 ul ul > li.has-sub::after {
  top: 18.5px;
  border-width: 6px;
  border-top-color: #777777;
}
#cssmenu7 ul ul > li:hover::after,
#cssmenu7 ul ul > li.active::after,
#cssmenu7 ul ul > li.open::after {
  border-top-color: #666666;
}



@import url(http://fonts.googleapis.com/css?family=Open+Sans:400,700);
#cssmenu8 {
  margin: 0;
  position: relative;
   font-family: 'Open Sans', Helvetica, sans-serif;
  line-height: 1;
  width: 300px;
}
.align-right {
  float: right;
}
#cssmenu8 ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: block;
}
#cssmenu8 ul li {
  position: relative;
  margin: 0;
  padding: 0;
}
#cssmenu8 ul li a {
  text-decoration: none;
  cursor: pointer;
}
#cssmenu8 > ul > li > a {
  color: #000;
  text-transform: uppercase;
  display: block;
  padding: 15px;

  background: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  letter-spacing: 1px;
  font-size: 13px;
  font-weight: 300;
  -webkit-transition: all 0.25s ease-in;
  -moz-transition: all 0.25s ease-in;
  -ms-transition: all 0.25s ease-in;
  -o-transition: all 0.25s ease-in;
  transition: all 0.25s ease-in;
  position: relative;
}
#cssmenu8 > ul > li:first-child > a {
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}
#cssmenu8 > ul > li:last-child > a {
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
  border-bottom: 1px solid #000000;
}
#cssmenu8 > ul > li:hover > a,
#cssmenu8 > ul > li.open > a {
  background: #fff;
  color: #000;
}

#cssmenu8 > ul > li.active > a {
  background:  linear-gradient(to bottom, #E7DF00 0%, #FCC500 100%) repeat scroll 0% 0%;
  color: #fff;
}

#cssmenu8 ul > li.has-sub > a::after {
  content: "";
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-top: 13px solid #000000;
  border-botom: 13px solid transparent;
  border-left: 125px solid transparent;
  border-right: 125px solid transparent;
  left: 0;
  bottom: -13px;
  bottom: 0px;
  z-index: 1;
  opacity: 0;
  -webkit-transition: all .2s ease;
  -moz-transition: all .2s ease;
  -ms-transition: all .2s ease;
  -o-transition: all .2s ease;
  transition: all .2s ease;
}
#cssmenu8 ul > li.has-sub > a::before {
  content: "";
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-top: 13px solid #14337e;
  border-botom: 13px solid transparent;
  border-left: 125px solid transparent;
  border-right: 125px solid transparent;
  left: 0;
  bottom: -12px;
  bottom: -1px;
  z-index: 3;
  opacity: 0;
  -webkit-transition: all .2s ease;
  -moz-transition: all .2s ease;
  -ms-transition: all .2s ease;
  -o-transition: all .2s ease;
  transition: all .2s ease;
}
#cssmenu8 ul > li.has-sub::after {
  content: "";
  display: block;
  position: absolute;
  width: 0;
  height: 0;
  border: 7px solid transparent;
  border-top-color: #dddddd;
  z-index: 2;
  right: 20px;
  top: 23.5px;
  pointer-events: none;
}
#cssmenu8 ul > li:hover::after,
#cssmenu8 ul > li.active::after,
#cssmenu8 ul > li.open::after {
  border-top-color: #ffffff;
}
#cssmenu8 ul > li.has-sub.open > a::after {
  opacity: 1;
  bottom: -13px;
}
#cssmenu8 ul > li.has-sub.open > a::before {
  opacity: 1;
  bottom: -12px;
}
#cssmenu8 ul ul {
  display: none;
}
#cssmenu8 > ul > li.active > ul {
  display: block;
}
#cssmenu8 ul ul li {
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
}
#cssmenu8 ul ul li a {
  background: #f1f1f1;
  display: block;
  position: relative;
  font-size: 15px;
  padding: 14px 20px;
  border-bottom: 1px solid #dddddd;
  color: #777777;
  font-weight: 300;
  -webkit-transition: all 0.25s ease-in;
  -moz-transition: all 0.25s ease-in;
  -ms-transition: all 0.25s ease-in;
  -o-transition: all 0.25s ease-in;
  transition: all 0.25s ease-in;
}
#cssmenu8 ul ul li:first-child > a {
  padding-top: 18px;
}
#cssmenu8 ul ul ul li {
  border: 0;
}
#cssmenu8 ul ul li:hover > a,
#cssmenu8 ul ul li.open > a,
#cssmenu8 ul ul li.active > a {
  background: #14337e;
  color: #666666;
}
#cssmenu8 ul ul > li.has-sub > a::after {
  border-top: 13px solid #dddddd;
}
#cssmenu8 ul ul > li.has-sub > a::before {
  border-top: 13px solid #e4e4e4;
}
#cssmenu8 ul ul ul li a {
  padding-left: 30px;
}
#cssmenu8 ul ul > li.has-sub::after {
  top: 18.5px;
  border-width: 6px;
  border-top-color: #777777;
}
#cssmenu8 ul ul > li:hover::after,
#cssmenu8 ul ul > li.active::after,
#cssmenu8 ul ul > li.open::after {
  border-top-color: #666666;
}


.wrapper         {width:100%;height:100%;margin:0 auto;}
.h_iframe        {position:relative;}
.h_iframe .ratio {display:block;width:100%;height:100%;}
.h_iframe iframe {position:absolute;top:0;left:0;width:100%; height:100%;}

.h_iframe .ratio1 {display:block;width:100%;height:100%;}
.h_iframe .ratio2 {display:block;width:62%;height:100%;}
.h_iframe .ratio3 {display:block;width:82%;height:100%;}
.h_iframe .ratio4 {display:block;width:74%;height:97%;}
.h_iframe .ratio5 {display:block;width:75%;height:97%;}

.readmore {
    position: center;
    bottom: 0px;
    right: 0px;
    width: 100%;
border-bottom-left-radius: 5px;
border-bottom-right-radius: 5px;
    text-align: center;
    padding: 7px 0px;
    background: none repeat scroll 0% 0% #8FA4D6;
}

.readmore a{
	font-family:"Roboto Condensed",sans-serif;
	font-size:13px;
	letter-spacing:1px;
	text-transform:uppercase;
	font-weight:500;
	color:#FFFFFF;
	text-decoration:none;
	position:right;
	right:10px;
	top:5px;
	}

.img-responsive1 {
    width: 100%;
    height: auto;
    text-align: left;
    border-radius: 0px;
}

.img-responsive19 {
margin-top: 50px;
    width: 640px;
    height: 480px;


}
img {
    vertical-align: middle;
}
img {
    border: 0px none;
}


div#appienietjatten ul.doenounietjongen {
    margin-bottom: 10px;
    background: transparent url("images/appienietstelen.png") repeat-x scroll 0% 0%;
    width: auto;
    height: 30px;
}
div#appienietjatten .doenounietjongen {
    font-size: 12px;
    line-height: 29px;
}
div#appienietjatten .doenounietjongen {
    font-size: 12px;
    line-height: 29px;
    font-family: "Arial",verdana,sans-serif;
}

div#appienietjatten ul.doenounietjongen li.current_item {
    padding-left: 15px;
    color: #969696;
font-weight: bold;
}
div#appienietjatten ul.doenounietjongen li {
    float: left;
    display: block;
    height: 20px;
}

div#appienietjatten ul.doenounietjongen li a {
    color: #8FA4D6;
    padding: 0px 30px 0px 10px;
    display: block;
    height: 30px;
    background: transparent url("images/blijfnouafappie.png") no-repeat scroll right top;
}


* {margin: 0; padding: 0;}



.container1 {
	padding: 200px;
	text-align: center;
}

.timer {
	padding: 10px;
	background: linear-gradient(top, #222, #444);
	overflow: hidden;
	display: inline-block;
	border: 7px solid #14337E;
	border-radius: 5px;
	position: relative;
	
	box-shadow: 
		inset 0 -2px 10px 1px rgba(0, 0, 0, 0.75), 
		0 5px 20px -10px rgba(0, 0, 0, 1);
}

.cell {
	/*Should only display 1 digit. Hence height = line height of .numbers
	and width = width of .numbers*/
	width: 0.75em;
	height: 30px;
	font-size: 20px;
	overflow: hidden;
	position: relative;
	float: left;
margin-top: -10px;
}

.numbers {
	width: 0.6em;
	line-height: 40px;
	font-family: digital, arial, verdana;
	text-align: center;
	color: #ffd700;
	
	position: absolute;
	top: 0;
	left: 0;
	
	/*Glow to the text*/
	text-shadow: 0 0 5px rgba(255, 255, 255, 1);
}

/*Styles for the controls*/
#timer_controls {
	margin-top: -5px;
}
#timer_controls label {
	cursor: pointer;
	padding: 5px 10px;
margin-right: 13px;

	background: #8FA4D6;
	font-family: arial, verdana, tahoma;
	font-size: 11px;
	border-radius: 0 0 3px 3px;
}
input[name="controls"] {display: none;}

/*Control code*/
#stop:checked~.timer .numbers {animation-play-state: paused;}
#start:checked~.timer .numbers {animation-play-state: running;}
#reset:checked~.timer .numbers {animation: none;}

.moveten {
	/*The digits move but dont look good. We will use steps now
	10 digits = 10 steps. You can now see the digits swapping instead of 
	moving pixel-by-pixel*/
	animation: moveten 1s steps(10, end) infinite;
	/*By default animation should be paused*/
	animation-play-state: paused;
}
.movesix {
	animation: movesix 1s steps(6, end) infinite;
	animation-play-state: paused;
}

/*Now we need to sync the animation speed with time speed*/
/*One second per digit. 10 digits. Hence 10s*/
.second {animation-duration: 10s;}
.tensecond {animation-duration: 60s;} /*60 times .second*/

.milisecond {animation-duration: 1s;} /*1/10th of .second*/
.tenmilisecond {animation-duration: 0.1s;}
.hundredmilisecond {animation-duration: 0.01s;}

.minute {animation-duration: 600s;} /*60 times .second*/
.tenminute {animation-duration: 3600s;} /*60 times .minute*/

.hour {animation-duration: 36000s;} /*60 times .minute*/
.tenhour {animation-duration: 360000s;} /*10 times .hour*/

/*The stopwatch looks good now. Lets add some styles*/

/*Lets animate the digit now - the main part of this tutorial*/
/*We are using prefixfree, so no need of vendor prefixes*/
/*The logic of the animation is to alter the 'top' value of the absolutely
positioned .numbers*/
/*Minutes and Seconds should be limited to only '60' and not '100'
Hence we need to create 2 animations. One with 10 steps and 10 digits and
the other one with 6 steps and 6 digits*/
@keyframes moveten {
	0% {top: 0;}
	100% {top: -400px;} 
	/*height = 40. digits = 10. hence -400 to move it completely to the top*/
}

@keyframes movesix {
	0% {top: 0;}
	100% {top: -240px;} 
	/*height = 40. digits = 6. hence -240 to move it completely to the top*/
}


/*Lets use a better font for the numbers*/
@font-face {
	font-family: 'digital';
	src: url("fonts/DS-DIGI.TTF");
	
}
/* --- injected clearfix (WaybackScraper) --- */
.clearfix::after{content:"";display:table;clear:both}
