/* -------------------------------- 

Primary style

-------------------------------- */
html * {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

body {
  font-size: 100%;
  font-family: "Titillium Web", sans-serif;
  color: #666666;
  background-color: #fff;
	margin:0;
	padding:0;
	height:100%;
}

a {
  color: #aac748;
  text-decoration: none;
}

a:hover {
  color: #59a073;
  text-decoration: underline;
}

/* -------------------------------- 

Modules - reusable parts of our design

-------------------------------- */
.cd-img-replace {
  /* replace text with a background-image */
  display: inline-block;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
}

.overflow-hidden {
  overflow: hidden;
}

/* -------------------------------- 

Main components 

-------------------------------- */
.cd-main-content {
  /* set a min-height and a z-index to be sure that the main element completely covers the lateral menu */
  min-height: 100%;
  max-width: 1300px;
  position: relative;
  background-color: #f4f4f4;
  z-index: 2;
  padding-top: 50px;
  margin: 0 auto;
  /* Force Hardware Acceleration in WebKit */
  -webkit-transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  -webkit-transition-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
  transition-property: transform;
  -webkit-transition-duration: 0.4s;
  -moz-transition-duration: 0.4s;
  transition-duration: 0.4s;
}
.cd-main-content.lateral-menu-is-open {
  /* translate to show the lateral menu - all content needs to be put in the .cd-main-content to translate*/
  -webkit-transform: translateX(-260px);
  -moz-transform: translateX(-260px);
  -ms-transform: translateX(-260px);
  -o-transform: translateX(-260px);
  transform: translateX(-260px);
}
@media only screen and (min-width: 768px) {
  .cd-main-content {
    padding-top: 70px;
  }
}

header {
  position: absolute;
  top: 0;
  left: 0;
  height: 50px;
  width: 100%;
  background: #1d70b2;
  z-index: 100;
  /* Force Hardware Acceleration in WebKit */
  -webkit-transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  -webkit-transition-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
  transition-property: transform;
  -webkit-transition-duration: 0.4s;
  -moz-transition-duration: 0.4s;
  transition-duration: 0.4s;
}
header.lateral-menu-is-open {
  /* translate to show the lateral menu */
  -webkit-transform: translateX(-260px);
  -moz-transform: translateX(-260px);
  -ms-transform: translateX(-260px);
  -o-transform: translateX(-260px);
  transform: translateX(-260px);
}
header.is-fixed {
  position: fixed;
}
@media only screen and (min-width: 768px) {
  header {
    height: 70px;
  }
}

#cd-logo {
  display: block;
  float: left;
  margin: 12px 0 0 20px;
}
#cd-logo img {
  display: block;
}
@media only screen and (min-width: 768px) {
  #cd-logo {
    margin: 22px 0 0 30px;
  }
}

#cd-top-nav {
  position: absolute;
  top: 0;
  right: 120px;
  height: 100%;
  display: none;
}
#cd-top-nav ul {
  height: 100%;
  padding-top: 18px;
}
#cd-top-nav li {
  display: inline-block;
  margin-right: 1em;
}
#cd-top-nav a {
  display: inline-block;
  padding: .5em;
  color: #FFF;
  text-transform: uppercase;
  font-weight: 600;
}
#cd-top-nav a.current {
  background-color: #003857;
}
.no-touch #cd-top-nav a:hover {
  color: rgba(255, 255, 255, 0.7);
}
@media only screen and (min-width: 768px) {
  #cd-top-nav {
    display: block;
  }
}

#cd-menu-trigger {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 50px;
  background-color: #aac748;
}
#cd-menu-trigger .cd-menu-text {
  height: 100%;
  text-transform: uppercase;
  color: #FFF;
  font-weight: 600;
  display: none;
}
#cd-menu-trigger .cd-menu-icon {
  /* this span is the central line in the menu menu */
  display: inline-block;
  position: absolute;
  left: 50%;
  top: 50%;
  bottom: auto;
  right: auto;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  width: 18px;
  height: 2px;
  background-color: #FFF;
  /* these are the upper and lower lines in the menu menu */
}
#cd-menu-trigger .cd-menu-icon::before, #cd-menu-trigger .cd-menu-icon:after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: inherit;
  left: 0;
}
#cd-menu-trigger .cd-menu-icon::before {
  bottom: 5px;
}
#cd-menu-trigger .cd-menu-icon::after {
  top: 5px;
}
#cd-menu-trigger.is-clicked .cd-menu-icon {
  background-color: rgba(255, 255, 255, 0);
}
#cd-menu-trigger.is-clicked .cd-menu-icon::before, #cd-menu-trigger.is-clicked .cd-menu-icon::after {
  background-color: white;
}
#cd-menu-trigger.is-clicked .cd-menu-icon::before {
  bottom: 0;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
#cd-menu-trigger.is-clicked .cd-menu-icon::after {
  top: 0;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
@media only screen and (min-width: 768px) {
  #cd-menu-trigger {
    width: 110px;
    padding-left: 1.25em;
  }
  #cd-menu-trigger .cd-menu-text {
    display: inline-block;
    line-height: 70px;
  }
  #cd-menu-trigger .cd-menu-icon {
    left: auto;
    right: 1.25em;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }
}

#cd-lateral-nav {
  position: fixed;
  height: 100%;
  right: 0;
  top: 0;
  visibility: hidden;
  /* the secondary navigation is covered by the main element */
  z-index: 1;
  width: 260px;
  background-color: #003857;
  overflow-y: auto;
  /* Force Hardware Acceleration in WebKit */
  -webkit-transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  -webkit-transition: -webkit-transform .4s 0s, visibility 0s .4s;
  -moz-transition: -moz-transform .4s 0s, visibility 0s .4s;
  transition: transform .4s 0s, visibility 0s .4s;
  /* this creates the subtle slide in animation of the navigation */
  -webkit-transform: translateX(80px);
  -moz-transform: translateX(80px);
  -ms-transform: translateX(80px);
  -o-transform: translateX(80px);
  transform: translateX(80px);
}
#cd-lateral-nav .cd-navigation {
  margin: 10px 0 16px;
}
#cd-lateral-nav .sub-menu {
  padding: 0 10px 20px 15px;
  display: none;
}
#cd-lateral-nav a {
  display: block;
  line-height: 2em;
  padding: 0 16px 0 32px;
  color: #e6e6e6;
}
#cd-lateral-nav a.current {
  background-color: #2c4d6e;
  color: #FFF;
}
.no-touch #cd-lateral-nav a:hover {
  color: #b3ddff;
}
@media only screen and (min-width: 768px) {
  #cd-lateral-nav .cd-navigation {
    margin: 20px 0;
  }
}
#cd-lateral-nav.lateral-menu-is-open {
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
  visibility: visible;
  -webkit-transition: -webkit-transform .4s 0s, visibility 0s 0s;
  -moz-transition: -moz-transform .4s 0s, visibility 0s 0s;
  transition: transform .4s 0s, visibility 0s 0s;
  /* smooth the scrolling on touch devices - webkit browsers */
  -webkit-overflow-scrolling: touch;
}

/* style menu items which have a submenu  */
#cd-lateral-nav .item-has-children > a {
  position: relative;
  text-transform: uppercase;
  font-weight: 600;
  /* this is the right arrow to show that the item has a submenu  */
}
#cd-lateral-nav .item-has-children > a::after {
  content: '';
  display: block;
  height: 11px;
  width: 8px;
  position: absolute;
  top: 50%;
  bottom: auto;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 1em;
  background: url("../img/cd-arrow.svg") no-repeat center center;
  background-size: 8px 11px;
  -webkit-transition-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
  transition-property: transform;
  -webkit-transition-duration: 0.2s;
  -moz-transition-duration: 0.2s;
  transition-duration: 0.2s;
}
#cd-lateral-nav .item-has-children > a.submenu-open::after {
  -webkit-transform: translateY(-50%) rotate(90deg);
  -moz-transform: translateY(-50%) rotate(90deg);
  -ms-transform: translateY(-50%) rotate(90deg);
  -o-transform: translateY(-50%) rotate(90deg);
  transform: translateY(-50%) rotate(90deg);
}

#cd-lateral-nav .socials {
  padding: 0 32px;
}
#cd-lateral-nav .socials:after {
  content: "";
  display: table;
  clear: both;
}
#cd-lateral-nav .socials a {
  height: 32px;
  width: 32px;
  float: left;
  padding: 0;
  background-image: url("https://www.wardenbiomedia.com/img/cd-socials.png");
  background-repeat: no-repeat;
  background-size: 160px 64px;
  background-color: #FFF;
  margin-right: .25em;
  border-radius: 0.25em;
}
#cd-lateral-nav .socials a.cd-twitter {
  background-position: 7px 2px;
}
#cd-lateral-nav .socials a.cd-github {
  background-position: -28px 2px;
}
#cd-lateral-nav .socials a.cd-facebook {
  background-position: -64px 2px;
}
#cd-lateral-nav .socials a.cd-google {
  background-position: -100px 2px;
}
#cd-lateral-nav .socials a.cd-youtube {
  background-position: -133px 2px;
}
.no-touch #cd-lateral-nav .socials a:hover {
  background-color: #aac748;
}
.no-touch #cd-lateral-nav .socials a:hover.cd-twitter {
  background-position: 7px -34px;
}
.no-touch #cd-lateral-nav .socials a:hover.cd-github {
  background-position: -28px -34px;
}
.no-touch #cd-lateral-nav .socials a:hover.cd-facebook {
  background-position: -64px -34px;
}
.no-touch #cd-lateral-nav .socials a:hover.cd-google {
  background-position: -100px -34px;
}
.no-touch #cd-lateral-nav .socials a:hover.cd-youtube {
  background-position: -133px -34px;
}

/* ----------------------------------PAGE LAYOUT---------------------------------- */


/* Main page container DIV */
.primaryContainer {
    height: 100%;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    min-width: 320px;
    z-index: 1;
	position:relative;
}

/* Centered white main page container DIV */
#White_Container {
    float: left;
    height: 100%;
    margin: 0px auto;
    clear: none;
    width: 100%;
    position: relative;
    z-index: 1;
}

#wrapper {
	position:relative;
    clear: none;
    float: left;
}

#content {
    background-image: url("../img/bg_top.jpg");
    background-repeat: no-repeat;
    background-color: rgb(255, 255, 255);
	padding-bottom: 100px; /* Height of the footer element */
    float: left;
    clear: none;
    width: 100%;
}

#footer {
    float: left;
    height: 100px;
    margin: 0px auto;
    clear: none;
    width: 100%;
    position: relative;
    z-index: 1;
    color: #fff;
    visibility: visible;
    display: block;
}

#mobile_video {
    visibility: hidden;
    display: none;
}

#flash {
    visibility: visible;
    display: block;
}

.google-maps {
    position: relative;
    padding-bottom: 75%; // This is the aspect ratio
    height: 0;
    overflow: hidden;
}
.google-maps iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
}

#title {
    float: left;
    clear: none;
    width: 65%;
    height:153px;
    position: relative;
    background-image: url("../img/title_corner.png");
    background-repeat: no-repeat;
    background-color: #aac748;
    font-family: Arial, sans-serif;
    font-size:3em;
    color:#fff;
    padding-left: 32px;
    padding-top: 25px;
}

#title2 {
    float: left;
    clear: none;
    width: 65%;
    height:153px;
    position: relative;
    background-image: url("../img/title_corner.png");
    background-repeat: no-repeat;
    background-color: #a6c44b;
    font-family: Arial, sans-serif;
    font-size:3em;
    color:#fff;
    padding-left: 32px;
    padding-top: 25px;
}

#title3 {
    float: left;
    clear: none;
    width: 65%;
    height:153px;
    position: relative;
    background-image: url("../img/title_corner.png");
    background-repeat: no-repeat;
    background-color: #95ba58;
    font-family: Arial, sans-serif;
    font-size:3em;
    color:#fff;
    padding-left: 32px;
    padding-top: 25px;
}

#title4 {
    float: left;
    clear: none;
    width: 65%;
    height:153px;
    position: relative;
    background-image: url("../img/title_corner.png");
    background-repeat: no-repeat;
    background-color: #7cab6a;
    font-family: Arial, sans-serif;
    font-size:3em;
    color:#fff;
    padding-left: 32px;
    padding-top: 25px;
}

#title5 {
    float: left;
    clear: none;
    width: 65%;
    height:153px;
    position: relative;
    background-image: url("../img/title_corner.png");
    background-repeat: no-repeat;
    background-color: #639b7d;
    font-family: Arial, sans-serif;
    font-size:3em;
    color:#fff;
    padding-left: 32px;
    padding-top: 25px;
}

#title6 {
    float: left;
    clear: none;
    width: 65%;
    height:153px;
    position: relative;
    background-image: url("../img/title_corner.png");
    background-repeat: no-repeat;
    background-color: #478a92;
    font-family: Arial, sans-serif;
    font-size:3em;
    color:#fff;
    padding-left: 32px;
    padding-top: 25px;
}

#title7 {
    float: left;
    clear: none;
    width: 65%;
    height:153px;
    position: relative;
    background-image: url("../img/title_corner.png");
    background-repeat: no-repeat;
    background-color: #327da2;
    font-family: Arial, sans-serif;
    font-size:3em;
    color:#fff;
    padding-left: 32px;
    padding-top: 25px;
}

#title8 {
    float: left;
    clear: none;
    width: 65%;
    height:153px;
    position: relative;
    background-image: url("../img/title_corner.png");
    background-repeat: no-repeat;
    background-color: #1f72b0;
    font-family: Arial, sans-serif;
    font-size:3em;
    color:#fff;
    padding-left: 32px;
    padding-top: 25px;
}

#title9 {
    float: left;
    clear: none;
    width: 65%;
    height:153px;
    position: relative;
    background-image: url("../img/title_corner.png");
    background-repeat: no-repeat;
    background-color: #1d70b2;
    font-family: Arial, sans-serif;
    font-size:3em;
    color:#fff;
    padding-left: 32px;
    padding-top: 25px;
}

#col2 {
    float: left;
    clear: none;
    width: 45%;
    height:auto;
    position: relative;
    font-family: Arial, sans-serif;
    font-size:1em;
    color:#666;
    padding-left: 32px;
    visibility: visible;
    display: block;
}

#col3 {
    float: right;
    clear: none;
	width:400px;
    height:auto;
    position: relative;
    font-family: Arial, sans-serif;
    font-size:1em;
    color:#666;
    padding: 32px;
    visibility: visible;
    display: block;
}

#col2b {
    float: left;
    clear: none;
    width: 65%;
    height:100%;
    position: relative;
    font-family: Arial, sans-serif;
    font-size:1em;
    color:#666;
    padding-top: 32px;
    padding-left: 32px;
    visibility: visible;
    display: block;
}

#animation_big {
    margin-bottom:3px;
    margin-top:10px;
    float:left;
    clear:none;
    width:100%;
    height:auto;
    visibility: visible;
    display: block;
}

#animation_small {
    visibility: hidden;
    display: none;
}

#affiliates1 {
    background-color:#ffffff;
    width:100%;
    padding:0px;
    visibility: visible;
    display: block;
}

#affiliates2 {
    visibility: hidden;
    display: none;
}

IMG.displayed {
    display: block;
    margin-left: auto;
    margin-right: auto
}

ul#myList {
    list-style-type:disc;
    padding-left: 30px;
    line-height: 1.3;
}

.videoWrapper {
	position: relative;
	padding-bottom: 56.25%; /* 16:9 */
	padding-top: 25px;
	height: 0;
	margin-top: 40px;
}
.videoWrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 95%;
}

#subtitle {
    font-family: Arial, sans-serif;
    font-size:1.2em;
    color:#1d70b2;
    margin-top: 40px;
    margin-bottom: 15px;
    line-height: 1.3;
    background-color: #e6e6e6;
    padding: 5px 0px 5px 10px;
    border: 1px solid #d2d2d2;
}

#text {
    font-family: Arial, sans-serif;
    font-size:1em;
    color:#666;
    margin-top: 15px;
    margin-bottom: 15px;
    line-height: 1.3;
}

.image_article {
    float: left;
    height: auto;
    margin-right: 25px;
    margin-bottom: 30px;
    clear: none;
    display: block;
}

.image_product {
    visibility: hidden;
    display: none;
}

#top-para {
    font-family: Arial, sans-serif;
    font-size:1.8em;
    color:#1d70b2;
    margin-bottom: 15px;
    line-height: 1.1;
}

#side-nav1 a {
	float:left;
	background-color: #aac748;
	margin-top: 8px;
	margin-bottom: 1px;
	color:#fff;
	padding:8px;
	width:244px;
	font-family: Arial, sans-serif;
	font-size:1.2em
}

#side-nav1 a:hover {
	background-color: #003857;
	text-decoration: underline;
	color:#b2dcfe;
}

#side-nav2 a {
	float:left;
	background-color: #a6c44b;
	margin-bottom: 1px;
	color:#fff;
	padding:8px;
	width:244px;
	font-family: Arial, sans-serif;
	font-size:1.2em
}

#side-nav2 a:hover {
	background-color: #003857;
	text-decoration: underline;
	color:#b2dcfe;
}

#side-nav3 a {
	float:left;
	background-color: #95ba58;
	margin-bottom: 1px;
	color:#fff;
	padding:8px;
	width:244px;
	font-family: Arial, sans-serif;
	font-size:1.2em
}

#side-nav3 a:hover {
	background-color: #003857;
	text-decoration: underline;
	color:#b2dcfe;
}

#side-nav4 a {
	float:left;
	background-color: #7cab6a;
	margin-bottom: 1px;
	color:#fff;
	padding:8px;
	width:244px;
	font-family: Arial, sans-serif;
	font-size:1.2em
}

#side-nav4 a:hover {
	background-color: #003857;
	text-decoration: underline;
	color:#b2dcfe;
}

#side-nav5 a {
	float:left;
	background-color: #639b7d;
	margin-bottom: 1px;
	color:#fff;
	padding:8px;
	width:244px;
	font-family: Arial, sans-serif;
	font-size:1.2em
}

#side-nav5 a:hover {
	background-color: #003857;
	text-decoration: underline;
	color:#b2dcfe;
}

#side-nav6 a {
	float:left;
	background-color: #478a92;
	margin-bottom: 1px;
	color:#fff;
	padding:8px;
	width:244px;
	font-family: Arial, sans-serif;
	font-size:1.2em
}

#side-nav6 a:hover {
	background-color: #003857;
	text-decoration: underline;
	color:#b2dcfe;
}

#side-nav7 a {
	float:left;
	background-color: #327da2;
	margin-bottom: 1px;
	color:#fff;
	padding:8px;
	width:244px;
	font-family: Arial, sans-serif;
	font-size:1.2em
}

#side-nav7 a:hover {
	background-color: #003857;
	text-decoration: underline;
	color:#b2dcfe;
}

#side-nav8 a {
	float:left;
	background-color: #1f72b0;
	margin-bottom: 1px;
	color:#fff;
	padding:8px;
	width:244px;
	font-family: Arial, sans-serif;
	font-size:1.2em
}

#side-nav8 a:hover {
	background-color: #003857;
	text-decoration: underline;
	color:#b2dcfe;
}

#side-nav9 a {
	float:left;
	background-color: #1d70b2;
	margin-bottom: 40px;
	color:#fff;
	padding:8px;
	width:244px;
	font-family: Arial, sans-serif;
	font-size:1.2em
}

#side-nav9 a:hover {
	background-color: #003857;
	text-decoration: underline;
	color:#b2dcfe;
}

#side-nav10 {
	float:left;
	background-color: #e6e6e6;
	margin-bottom: 40px;
	color:#fff;
	padding:8px;
	width:244px;
	font-family: Arial, sans-serif;
	font-size:1.2em
}

/* ----------------------------------GAL.COM BITS TO CHANGE---------------------------------- */


#RE_feature_container_box {
    float: none;
    height: auto;
    margin: 0px auto 20px;
    clear: none;
    width: 100%;
    background-color: rgb(234, 230, 212);
    border: 1px solid rgb(209, 209, 209);
    min-height: 0px;
    padding-bottom: 5px;
}

#Member_Logo {
    float: left;
    width: 100%;
    height: 152px;
    margin: 0px 0% 10px;
    clear: none;
    background-color: rgb(255, 255, 255);
    display: block;
}

#RE_Col_1 {
    float: left;
    height: auto;
    margin: 10px 0px 0px 10px;
    clear: none;
    width: 208px;
    min-width: 208px;
    opacity: 1;
    border-style: solid;
    border-width: 1px;
    border-color: #000;
}

#RE_Col_2 {
    float: left;
    height: auto;
    margin: 31px 0px 15px 15px;
    clear: none;
    width: 220px;
    min-width: 200px;
    display: block;
    min-height: 0px;
    border-style: solid;
    border-width: 1px;
    border-color: #333;
}

#RE_Col_3 {
    float: left;
    height: auto;
    margin-left: 15px;
    margin-top: 36px;
    clear: none;
    width: 30%;
    display: block;
    visibility: visible;
    padding-bottom: 15px;
    border-style: solid;
    border-width: 1px;
    border-color: #666;
}

#RE_Col_4 {
    float: right;
    height: auto;
    clear: none;
    width: 190px;
    margin-top: 36px;
    margin-right: 15px;
    padding-top: -14px;
    border-style: solid;
    border-width: 1px;
    border-color: #999;
}

.TechnicalContainer {
    height: auto;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    background-color:#e6e6e6;
    margin-top:30px;
    margin-bottom:30px;
}

#TechnicalBox {
    float: left;
    margin-left: 0%;
    margin-top: 0px;
    clear: none;
    width: 100%;
    background-color:#e6e6e6;
    padding: 8px;
    border-bottom: 1px solid #FFF;
}

#copy1 {
    float: left;
    font-size: 1em;
    width: 50%;
    height: auto;
    text-align: left;
    font-weight: normal;
    margin-left: 0%;
    margin-top: 0px;
    clear: none;
    font-family: Arial, sans-serif;
    color:#666;
    line-height: 1.3;
}

#copy2 {
    float: left;
    font-size: 1em;
    width: 50%;
    height: auto;
    text-align: left;
    font-weight: normal;
    margin-left: 0%;
    margin-top: 0px;
    clear: none;
    font-family: Arial, sans-serif;
    color:#666;
    line-height: 1.3;
}

#copy3 {
    float: left;
    font-size: 1.3em;
    width: 100%;
    height: auto;
    text-align: left;
    font-weight: normal;
    margin-left: 0%;
    margin-top: 0px;
    clear: none;
    font-family: Arial, sans-serif;
    color:#fff;
    line-height: 1.3;
}

#Home_of {
    float:left;
    width:65%;
    padding-top:25px;
    clear:right;
    visibility: visible;
    display: block;
}

#Home_of_text {
	float:left;
    width:70%;
    font-family: Arial, sans-serif;
    font-size:1em;
    color:#b0b0b0;
    letter-spacing: 3px;
    text-align:center
}

#Languages {
	float:right;
    width:25%;
    text-align:right;
    visibility: visible;
    display: block;
}

#Logo {
	float:left;
	width:390px;
	height:112px;
	padding-top:25px;
	padding-left:120px
}

#Breadcrumbs_Container {
	float:left;
    height: auto;
	width:100%;
	clear: none;
    visibility: visible;
    display: block;
}

#Breadcrumbs_Left {
	float:left;
	width:68px;
	margin-right:32px;
	height:35px;
    visibility: visible;
    display: block;
}

#left_grey_block {
	float:left;
	width:19px;
	height:153px;
	margin-right:32px;
	margin-left:49px;
	background-color:#e6e6e6;
    visibility: visible;
    display: block;
}

#product_image {
	float:left;
	width:244px;
	margin-right:30px;
	margin-top:-40px;
    visibility: visible;
    display: block;
}

#page_content {
	position: relative;
	float:left;
	width:100%;
	height:100%;
	clear: both;
	margin-top:20px;
    visibility: visible;
    display: block;
}

#page_content_left {
	float:left;
	width:68px;
	margin-right:32px;
	height:30px;
    visibility: visible;
    display: block;
	clear: none;
    border: 1px solid #006600;
}

#page_content_left_col {
	float:left;
	width:244px;
	margin-left:100px;
	margin-right:30px;
	font-family: Arial, sans-serif;
	font-size:0.8em;
    visibility: visible;
    display: block;
	margin-top:0px;
}

#page_content_left_home {
	float:left;
	width:244px;
	margin-left:30px;
	margin-right:30px;
	font-family: Arial, sans-serif;
	font-size:0.8em;
    visibility: visible;
    display: block;
	margin-top:0px;
}
	
	#page_content_right_home {
        visibility: hidden;
    	display: none;
	}

	#TechnicalContainer2 {
        visibility: hidden;
    	display: none;
	}

	#sharethis {
        visibility: hidden;
    	display: none;
	}





/* ----------------------------------1300px---------------------------------- */

@media only screen and (max-width: 1300px) {
#col2 {
    width: 35%;
}


/* ----------------------------------1200px---------------------------------- */

@media only screen and (max-width: 1200px) {
#col2 {
    width: 30%;
}



/* ----------------------------------1140px---------------------------------- */

@media only screen and (max-width: 1140px) {
	#Home_of {
    	float:left;
    	width:55%;
    	padding-top:25px;
    	clear:right;
	}
	
	#flash {
        visibility: hidden;
    	display: none;
	}

	#col2 {
    	width:55%;
	}

	#col2b {
    	width:55%;
	}

	#title {
	    width: 55%;
	}

	#title2 {
	    width: 55%;
	}

	#title3 {
	    width: 55%;
	}

	#title4 {
	    width: 55%;
	}

	#title5 {
	    width: 55%;
	}

	#title6 {
	    width: 55%;
	}

	#title7 {
	    width: 55%;
	}

	#title8 {
	    width: 55%;
	}

	#title9 {
	    width: 55%;
	}

	#Home_of_text {
    	width:100%;
	}

	#Languages {
        visibility: hidden;
    	display: none;
	}
	
	#page_content_left_home {
        visibility: hidden;
    	display: none;
	}

	#page_content_right_home {
		float:left;
		width:244px;
		font-family: Arial, sans-serif;
		font-size:0.8em;
    	visibility: visible;
    	display: block;
		margin-top:0px;
	}

/* ----------------------------------1000px---------------------------------- */

@media only screen and (max-width: 1000px) {
	#anim_1300 {
        visibility: hidden;
    	display: none;
	}
	
	#anim_1000 {
    	visibility: visible;
    	display: block;
	}

/* ----------------------------------900px---------------------------------- */

@media only screen and (max-width: 900px) {
#col2 {
    width: 40%;
}



/* ----------------------------------885px---------------------------------- */

@media only screen and (max-width: 885px) {
	#Home_of {
    	float:left;
    	width:45%;
    	padding-top:25px;
    	clear:right;
	}

	#Home_of_text {
    	font-family: Arial, sans-serif;
    	font-size:0.9em;
    	color:#b0b0b0;
    	letter-spacing: 2px;
    	text-align:center
	}

#page_content_left {
        visibility: hidden;
    	display: none;
}

.image_product {
    float: left;
    height: auto;
    margin-right: 25px;
    margin-bottom: 30px;
    clear: none;
    display: block;
    visibility: visible;
}

	#col2 {
    	width:45%;
	}

	#col2b {
    	width:45%;
	}

	#title {
	    width: 95%;
	    margin-left: 20px;
	    height: 120px;
	    margin-top: 10px;
    	font-size:2em;
	}

	#title2 {
	    width: 95%;
	    margin-left: 20px;
	    height: 120px;
	    margin-top: 10px;
	}

	#title3 {
	    width: 95%;
	    margin-left: 20px;
	    height: 120px;
	    margin-top: 10px;
    	font-size:2em;
	}

	#title4 {
	    width: 95%;
	    margin-left: 20px;
	    height: 120px;
	    margin-top: 10px;
    	font-size:2em;
	}

	#title5 {
	    width: 95%;
	    margin-left: 20px;
	    height: 120px;
	    margin-top: 10px;
    	font-size:2em;
	}

	#title6 {
	    width: 95%;
	    margin-left: 20px;
	    height: 120px;
	    margin-top: 10px;
    	font-size:2em;
	}

	#title7 {
	    width: 95%;
	    margin-left: 20px;
	    height: 120px;
	    margin-top: 10px;
    	font-size:2em;
	}

	#title8 {
	    width: 95%;
	    margin-left: 20px;
	    height: 120px;
	    margin-top: 10px;
    	font-size:2em;
	}

	#title9 {
	    width: 95%;
	    margin-left: 20px;
	    height: 120px;
	    margin-top: 10px;
    	font-size:2em;
	}
	
	#Breadcrumbs_Container {
        visibility: hidden;
    	display: none;
	}

	#page_content_left_col {
        visibility: hidden;
    	display: none;
	}

	#product_image {
        visibility: hidden;
    	display: none;
	}

	#left_grey_block {
        visibility: hidden;
    	display: none;
	}
	
	#col2b {
    	width: 100%;
    	padding-left: 20px;
    	padding-right: 20px;
	}

	#sharethis {
    	visibility: visible;
    	display: block;
	}


/* ----------------------------------766px---------------------------------- */

@media only screen and (max-width: 766px) {
	#col2 {
    	width: 90%;
	}

#col3 {
        visibility: hidden;
    	display: none;
}
	
	#mobile_video {
    	width: 100%;
    	visibility: visible;
    	display: block;
	}

#page_content_left {
	margin-top:-150px;
}
	
	#Home_of {
        visibility: hidden;
    	display: none;
	}

	#title {
	    width: 92%;
	}

	#title2 {
	    width: 92%;
	}

	#title3 {
	    width: 92%;
	}

	#title4 {
	    width: 92%;
	}

	#title5 {
	    width: 92%;
	}

	#title6 {
	    width: 92%;
	}

	#title7 {
	    width: 92%;
	}

	#title8 {
	    width: 92%;
	}

	#title9 {
	    width: 92%;
	}

	#TechnicalContainer2 {
    	visibility: visible;
    	display: block;
	}

	#affiliates1 {
        visibility: hidden;
    	display: none;
	}

	#affiliates2 {
    	background-color:#ffffff;
    	width:100%;
    	padding:0px;
    	margin-bottom:0px;
    	visibility: visible;
    	display: block;
	}

/* ----------------------------------700px---------------------------------- */

@media only screen and (max-width: 700px) {	
#animation_big {
    visibility: hidden;
    display: none;
}

#animation_small {
    margin-bottom:3px;
    margin-top:10px;
    float:left;
    clear:none;
    width:100%;
    height:auto;
    visibility: visible;
    display: block;
}

/* ----------------------------------618px---------------------------------- */

@media only screen and (max-width: 618px) {
	#title {
    	width: 90%;
    	height:100px;
    	font-size:2em;
        margin-left: 20px;
    	margin-right: 20px;
    	padding-left: 22px;
    	padding-top: 15px;
	}
	
	#title2 {
    	width: 90%;
    	height:100px;
        margin-left: 20px;
    	margin-right: 20px;
    	font-size:2em;
    	padding-left: 22px;
    	padding-top: 15px;
	}
	
	#title3 {
    	width: 90%;
    	height:100px;
        margin-left: 20px;
    	margin-right: 20px;
    	font-size:2em;
    	padding-left: 22px;
    	padding-top: 15px;
	}
	
	#title4 {
    	width: 90%;
    	height:100px;
        margin-left: 20px;
    	margin-right: 20px;
    	font-size:2em;
    	padding-left: 22px;
    	padding-top: 15px;
	}
	
	#title5 {
    	width: 90%;
    	height:100px;
        margin-left: 20px;
    	margin-right: 20px;
    	font-size:2em;
    	padding-left: 22px;
    	padding-top: 15px;
	}
	
	#title6 {
    	width: 90%;
    	height:100px;
        margin-left: 20px;
    	margin-right: 20px;
    	font-size:2em;
    	padding-left: 22px;
    	padding-top: 15px;
	}
	
	#title7 {
    	width: 90%;
    	height:100px;
        margin-left: 20px;
    	margin-right: 20px;
    	font-size:2em;
    	padding-left: 22px;
    	padding-top: 15px;
	}
	
	#title8 {
    	width: 90%;
    	height:100px;
        margin-left: 20px;
    	margin-right: 20px;
    	font-size:2em;
    	padding-left: 22px;
    	padding-top: 15px;
	}
	
	#title9 {
    	width: 90%;
    	height:100px;
        margin-left: 20px;
    	margin-right: 20px;
    	font-size:2em;
    	padding-left: 22px;
    	padding-top: 15px;
	}

	#top-para {
    	font-size:1.4em;
    	color:#1d70b2;
    	margin-bottom: 15px;
    	line-height: 1.1;
	}
	
	#col2 {
    	width: 90%;
    	padding-left: 20px;
    	margin-top: -20px;
	}
	
	#col2b {
    	width: 100%;
    	padding-left: 20px;
    	padding-right: 20px;
    	margin-top: 10px;
	}

/* ----------------------------------400px---------------------------------- */

@media only screen and (max-width: 400px) {
	#Logo {
		padding-top:25px;
		padding-left:100px
	}

.image_article {
    float: left;
    width: 100%;
    height: auto;
    margin-left:-2px;
    margin-bottom: 10px;
    clear: both;
}

.image_product {
    float: left;
    width: 100%;
    height: auto;
    margin-left:-2px;
    margin-top: -30px;
    margin-bottom: 30px;
    clear: both;
}