*,
*:after,
*:before {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}
* {
  margin: 0px;
  padding: 0px;
  font-family: Arial, Helvetica, sans-serif;
}
html {
      overflow-y: scroll;
}
body {
  /*background: #6699CC */
  background: rgb(102, 153, 204);
}


.SwitchContainer {
    display: block;
    position: fixed;
    width: 100%;
    border: 0px solid #f00;
    /* top: 0px;
    left: 0px;        */
    padding: 5px;
    z-index: 1000;
    background-color: rgba(102, 153, 204, 1);
    height: 147px;  /*     */
}
.BDVDContainer, .BrandContainer, .DiscContainer {
  display: table;
  table-layout: fixed;
  width: 100%;
  /*    text-align: center;
  overflow:hidden;
  white-space:nowrap; */
  /* height: 60px; without this no space/padding bewtween labelbottom and switch in Chrome
  border: 5px solid #fff;                                                                  */

}
.switch {
  display: table-cell;
  /*height: 70px; without this no space/padding bewtween labelbottom and switch
  border: 2px solid rgba(0,0,0,0.0);                                             */
  padding: 2px
}
.switch input {
    /* First, we make it as wide as the container */
    position: absolute;
    /* Last, we make it invisible */
    /* display: none if set, position: not necessary */
    /* Then, we put it on top of everything else */
    opacity: 0.0;
    /* This one is just for ergonomy
    cursor: pointer;                  */
}
label {
    color: rgba(0,0,0, 0.6);
    text-align: center;
    text-shadow: 2px 2px 1px rgba(255,255,255, 0.3);
    /*text-transform: uppercase;*/
    font: bold 20px/24px Arial, sans-serif;
}
.switch label {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    cursor: pointer;
    border-radius: 5px;
border: 2px solid rgba(0,0,0,0.5);
box-shadow: 10px 10px 10px 2px rgba(0,0,0,0.2);
/*    z-index: 100;                                 */
padding-top: 5px;
padding-bottom: 5px; /*/*looks like it's padding switch iso label if height is previously set*/
background: #25d025;
background: linear-gradient(#25d025, #50ff50);
background: -webkit-linear-gradient(#25d025, #50ff50);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#25d025', endColorstr='#ff50ff50',GradientType=0 ); /* IE6-9 */
/* transition: all 1.2s cubic-bezier(.32,-0.31,.78,1.12);   geen effect
-webkit-transition: all 1.2s cubic-bezier(.32,-0.31,.78,1.12);
-moz-transition: all 0.2s cubic-bezier(.32,-0.31,.78,1.12); */
    z-index: 1100;
margin-left: auto;
margin-right: auto;
user-select: none;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select:none;
}

.switch input:checked ~ label { /* button pressed, not selected color: red*/
width: 95%;
height: 95%;
/*transition: all 0.4s cubic-bezier(.65,-0.4,.53,1.48);*/
/*transition: all 0.4s cubic-bezier(.49,.59,0,1.31);*/
transition: all 0.5s cubic-bezier(.49,.59,.27,1.82);
-webkit-transition: all 0.5s cubic-bezier(.49,.59,.27,1.82);
-ms-transition: all 0.5s cubic-bezier(.49,.59,.27,1.82);
transform:translate(0px, 10px);
-webkit-transform:translate(0px, 10px);
-ms-transform:translate(10px, 10px);
box-shadow: 5px 5px 5px rgba(0,0,0,0.5);
background: #ff1111;
background: linear-gradient(#ff1111, #ff5555);
background: -webkit-linear-gradient(#ff1111, #ff5555);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff1111', endColorstr='#ffff5555',GradientType=0 ); /* IE6-9 */
transition-delay: 100ms;
-webkit-transition-delay: 100ms;
}
.switch input[type="checkbox"]:not(:checked) ~ label {
transition: all 0.5s cubic-bezier(.32,-0.31,.78,1.12);
-webkit-transition: all 0.5s cubic-bezier(.32,-0.31,.78,1.12);
-ms-transition: all 0.5s cubic-bezier(.32,-0.31,.78,1.12);
}
label:hover {
border: 2px solid rgba(0,0,0,0.9);
/*    border: 1px 1px 1px rgba(0,0,0,.29), inset 0px 0px 2px rgba(0,0,0, .5);*/
color: rgba(0,0,0, 0.8);
background: linear-gradient(#35e035, #60ff60);
background: -webkit-linear-gradient(#35e035, #60ff60);
}
.switch input:checked ~ label:hover {
background: linear-gradient(#ff2222, #ff6666);
background: -webkit-linear-gradient(#ff2222, #ff6666);
}

#diffuse {
  display: block;
  height: 40px;
    border: 0px dotted #000000;
  /*background-image: url(http://www.lellodvd.nl/images/diffuse.gif); */
/* mozilla example - FF3.6+ */

background: -moz-linear-gradient(top,  rgba(102,153,204,1) 0%, rgba(102,153,204,0) 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(102,153,204,1)), color-stop(100%,rgba(125,185,232,0))); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top,  rgba(102,153,204,1) 0%,rgba(102,153,204,0) 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top,  rgba(102,153,204,1) 0%,rgba(102,153,204,0) 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top,  rgba(102,153,204,1) 0%,rgba(102,153,204,0) 100%); /* IE10+ */
background: linear-gradient(to bottom,  rgba(102,153,204,1) 0%,rgba(102,153,204,0) 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#6699cc', endColorstr='#006699cc',GradientType=0 ); /* IE6-9 */
  position: fixed;
  top: 147px;
  width: 100%;
  z-index: 1000;
}

div#CaseContainer {
  display: block;
  position: relative;
  top: 170px;
    width: 99%;
    border: 0px solid #f00;
    margin-left: auto;
    margin-right: auto;
}
.b4case {
  font-size: 30px;
  text-align: center;
  font-style: italic;
  text-shadow: -1px 0px 0px #000C6B;
  color: #ABC7E3;
  font-weight: bold;
border: 1px solid #00147A;
padding-bottom: 2px;
padding-top: 1px;

background: rgb(208,228,247); /* Old browsers */
/* IE9 SVG, needs conditional override of 'filter' to 'none' */
background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIxMDAlIiB5Mj0iMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2QwZTRmNyIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjI0JSIgc3RvcC1jb2xvcj0iIzczYjFlNyIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjQwJSIgc3RvcC1jb2xvcj0iIzBhNzdkNSIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjYwJSIgc3RvcC1jb2xvcj0iIzBhNzdkNSIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9Ijc5JSIgc3RvcC1jb2xvcj0iIzUzOWZlMSIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiM4N2JjZWEiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
background: -moz-linear-gradient(left, rgba(208,228,247,1) 0%, rgba(115,177,231,1) 24%, rgba(10,119,213,1) 40%, rgba(10,119,213,1) 60%, rgba(83,159,225,1) 79%, rgba(135,188,234,1) 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, right top, color-stop(0%,rgba(208,228,247,1)), color-stop(24%,rgba(115,177,231,1)), color-stop(40%,rgba(10,119,213,1)), color-stop(60%,rgba(10,119,213,1)), color-stop(79%,rgba(83,159,225,1)), color-stop(100%,rgba(135,188,234,1))); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(left, rgba(208,228,247,1) 0%,rgba(115,177,231,1) 24%,rgba(10,119,213,1) 40%,rgba(10,119,213,1) 60%,rgba(83,159,225,1) 79%,rgba(135,188,234,1) 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(left, rgba(208,228,247,1) 0%,rgba(115,177,231,1) 24%,rgba(10,119,213,1) 40%,rgba(10,119,213,1) 60%,rgba(83,159,225,1) 79%,rgba(135,188,234,1) 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(left, rgba(208,228,247,1) 0%,rgba(115,177,231,1) 24%,rgba(10,119,213,1) 40%,rgba(10,119,213,1) 60%,rgba(83,159,225,1) 79%,rgba(135,188,234,1) 100%); /* IE10+ */
background: linear-gradient(to right, rgba(208,228,247,1) 0%,rgba(115,177,231,1) 24%,rgba(10,119,213,1) 40%,rgba(10,119,213,1) 60%,rgba(83,159,225,1) 79%,rgba(135,188,234,1) 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d0e4f7', endColorstr='#87bcea',GradientType=1 ); /* IE6-8 */
}
.bdcase {
  font-size: 30px;
  text-align: center;
  font-style: italic;
  text-shadow: -1px 0px 0px #000C6B;
  color: #ABC7E3;
  font-weight: bold;
border: 1px solid #00147A;
padding-bottom: 2px;
padding-top: 1px;

background: rgb(208,228,247); /* Old browsers */
/* IE9 SVG, needs conditional override of 'filter' to 'none' */
background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIxMDAlIiB5Mj0iMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2QwZTRmNyIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjI0JSIgc3RvcC1jb2xvcj0iIzczYjFlNyIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjQwJSIgc3RvcC1jb2xvcj0iIzBhNzdkNSIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjYwJSIgc3RvcC1jb2xvcj0iIzBhNzdkNSIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9Ijc5JSIgc3RvcC1jb2xvcj0iIzUzOWZlMSIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiM4N2JjZWEiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
background: -moz-linear-gradient(left, rgba(208,228,247,1) 0%, rgba(115,177,231,1) 24%, rgba(10,119,213,1) 40%, rgba(10,119,213,1) 60%, rgba(83,159,225,1) 79%, rgba(135,188,234,1) 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, right top, color-stop(0%,rgba(208,228,247,1)), color-stop(24%,rgba(115,177,231,1)), color-stop(40%,rgba(10,119,213,1)), color-stop(60%,rgba(10,119,213,1)), color-stop(79%,rgba(83,159,225,1)), color-stop(100%,rgba(135,188,234,1))); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(left, rgba(208,228,247,1) 0%,rgba(115,177,231,1) 24%,rgba(10,119,213,1) 40%,rgba(10,119,213,1) 60%,rgba(83,159,225,1) 79%,rgba(135,188,234,1) 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(left, rgba(208,228,247,1) 0%,rgba(115,177,231,1) 24%,rgba(10,119,213,1) 40%,rgba(10,119,213,1) 60%,rgba(83,159,225,1) 79%,rgba(135,188,234,1) 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(left, rgba(208,228,247,1) 0%,rgba(115,177,231,1) 24%,rgba(10,119,213,1) 40%,rgba(10,119,213,1) 60%,rgba(83,159,225,1) 79%,rgba(135,188,234,1) 100%); /* IE10+ */
background: linear-gradient(to right, rgba(208,228,247,1) 0%,rgba(115,177,231,1) 24%,rgba(10,119,213,1) 40%,rgba(10,119,213,1) 60%,rgba(83,159,225,1) 79%,rgba(135,188,234,1) 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d0e4f7', endColorstr='#87bcea',GradientType=1 ); /* IE6-8 */
}
.dvdcase {
  font-size: 30px;
  text-align: center;
  font-style: italic;
  text-shadow: -1px 0px 2px #1A1A1A;
  color: #C2C2C2;
  font-weight: bold;
border: 1px solid #000000;
padding-bottom: 2px;
padding-top: 1px;

background: rgb(0, 0, 0); /* Old browsers */
/* IE9 SVG, needs conditional override of 'filter' to 'none' */
background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIxMDAlIiB5Mj0iMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2Y1ZjZmNiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjIxJSIgc3RvcC1jb2xvcj0iI2RiZGNlMiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjQwJSIgc3RvcC1jb2xvcj0iIzYzNjQ2YiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjYwJSIgc3RvcC1jb2xvcj0iIzYzNjQ2YiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjgwJSIgc3RvcC1jb2xvcj0iI2RkZGZlMyIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNmNWY2ZjYiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
background: -moz-linear-gradient(left, rgba(245,246,246,1) 0%, rgba(219,220,226,1) 21%, rgba(99,100,107,1) 40%, rgba(99,100,107,1) 60%, rgba(221,223,227,1) 80%, rgba(245,246,246,1) 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, right top, color-stop(0%,rgba(245,246,246,1)), color-stop(21%,rgba(219,220,226,1)), color-stop(40%,rgba(99,100,107,1)), color-stop(60%,rgba(99,100,107,1)), color-stop(80%,rgba(221,223,227,1)), color-stop(100%,rgba(245,246,246,1))); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(left, rgba(245,246,246,1) 0%,rgba(219,220,226,1) 21%,rgba(99,100,107,1) 40%,rgba(99,100,107,1) 60%,rgba(221,223,227,1) 80%,rgba(245,246,246,1) 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(left, rgba(245,246,246,1) 0%,rgba(219,220,226,1) 21%,rgba(99,100,107,1) 40%,rgba(99,100,107,1) 60%,rgba(221,223,227,1) 80%,rgba(245,246,246,1) 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(left, rgba(245,246,246,1) 0%,rgba(219,220,226,1) 21%,rgba(99,100,107,1) 40%,rgba(99,100,107,1) 60%,rgba(221,223,227,1) 80%,rgba(245,246,246,1) 100%); /* IE10+ */
background: linear-gradient(to right, rgba(245,246,246,1) 0%,rgba(219,220,226,1) 21%,rgba(99,100,107,1) 40%,rgba(99,100,107,1) 60%,rgba(221,223,227,1) 80%,rgba(245,246,246,1) 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f5f6f6', endColorstr='#f5f6f6',GradientType=1 ); /* IE6-8 */
}
.dnl {
  font-size: 25px;
  display: block;
  text-align: center;
  margin-top: 10px
}
.den {
  font-size: 18px;
  display: block;
  text-align: center;
  margin-bottom: 10px
}
.instrContainer {
  border: thin solid #050552;
  background: #E4EDF6;
  border-radius: 10px;
  padding: 5px
}
.minis {
  font-size: 13px;
  border: thin solid rgba(0,0,0,1);
  background: #25d025;
  border-radius: 3px;
  display: inline-block;
  height: 20px;
  overflow: visible;
  position: relative;
  padding: 1px 3px;
  color: #000000;
  vertical-align: middle
}

p {
  display: block;
  position: relative;
  border: 0px solid #000000;
  height: 160px; /* needed for transition, not wanted for img:hover */
  overflow: hidden;

background: rgb(179,220,237); /* Old browsers */
/* IE9 SVG, needs conditional override of 'filter' to 'none' */
background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2IzZGNlZCIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjklIiBzdG9wLWNvbG9yPSIjNjY5OWNjIiBzdG9wLW9wYWNpdHk9IjEiLz4KICAgIDxzdG9wIG9mZnNldD0iOTElIiBzdG9wLWNvbG9yPSIjNjY5OWNjIiBzdG9wLW9wYWNpdHk9IjEiLz4KICAgIDxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2JjZTBlZSIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgPC9saW5lYXJHcmFkaWVudD4KICA8cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMSIgaGVpZ2h0PSIxIiBmaWxsPSJ1cmwoI2dyYWQtdWNnZy1nZW5lcmF0ZWQpIiAvPgo8L3N2Zz4=);
background: -moz-linear-gradient(top, rgba(179,220,237,1) 0%, rgba(102,153,204,1) 9%, rgba(102,153,204,1) 91%, rgba(188,224,238,1) 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(179,220,237,1)), color-stop(9%,rgba(102,153,204,1)), color-stop(91%,rgba(102,153,204,1)), color-stop(100%,rgba(188,224,238,1))); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, rgba(179,220,237,1) 0%,rgba(102,153,204,1) 9%,rgba(102,153,204,1) 91%,rgba(188,224,238,1) 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, rgba(179,220,237,1) 0%,rgba(102,153,204,1) 9%,rgba(102,153,204,1) 91%,rgba(188,224,238,1) 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top, rgba(179,220,237,1) 0%,rgba(102,153,204,1) 9%,rgba(102,153,204,1) 91%,rgba(188,224,238,1) 100%); /* IE10+ */
background: linear-gradient(to bottom, rgba(179,220,237,1) 0%,rgba(102,153,204,1) 9%,rgba(102,153,204,1) 91%,rgba(188,224,238,1) 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b3dced', endColorstr='#bce0ee',GradientType=0 ); /* IE6-8 */
width: 98%;
    margin-left: auto;
    margin-right: auto;
}
p:hover {
  overflow: visible;
}
p:hover img {
  overflow: visible;
  z-index: 100;
}
img {
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    /*float: right;
  margin: 5px;        */
  position: absolute;
  right: 102px;
  height: 130px; /* initial on-screen size */
  top: 15px;
}
img:hover {
  height: 300px;
  z-index: 100;
  top: 1px;
}
/*.pic {
  display: inline-block;
}  */

.kcType {
  display: block;
  padding: 11px;
  font-size: 25px;

}
.kcFeat {
  display: block;
  font-size: 15px;
  padding-left: 20px;
}
.A2Cscontainer {
  display: block;       /* lijkt geen effect te hebben*/
  position: absolute;     /* lijkt geen effect te hebben*/
  width: 100%;
    text-align: center;
  bottom: 0px;
  height: 50px;
}
.A2Cs {
  display: inline;       /* lijkt geen effect te hebben*/
  color: #000000;
  border: 1px solid #000000;
background: #aaaaaa;
background: linear-gradient(#aaa, #fff);
background: -webkit-linear-gradient(#aaa, #fff);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#aaaaaa', endColorstr='#ffffffff',GradientType=0 ); /* IE6-9 */
    border-radius: 5px;
  text-align: center;
  box-shadow: 4px 4px 5px rgba(0,0,0,0.5);
transition: all 0.3s cubic-bezier(.49,.59,.27,1.82);
-webkit-transition: all 0.2s cubic-bezier(.49,.59,.27,1.82);
padding: 5px;
    cursor: pointer;
}
.A2Cspushed {
transition: all 0.3s cubic-bezier(.49,.59,.27,1.82);
-webkit-transition: all 0.3s cubic-bezier(.49,.59,.27,1.82);
transform:translate(0px, 3px);
-webkit-transform:translate(0px, 3px);
box-shadow: 2px 2px 2px rgba(0,0,0,0.5);
}
.A2C2container {
  display: block;       /* lijkt geen effect te hebben*/
  position: relative;     /* lijkt geen effect te hebben*/
  height: 46px;
  border: 0px solid #0000ff;
  float: right;
  clear: both;
}
.A2C {
  display: block;
  position: relative;
  right: 6px;
  width: 90px;
  height: 41px;
  color: #000000;
  border: 2px solid rgba(0,0,0,0.5);
background: #aaaaaa;
background: linear-gradient(#aaa, #fff);
background: -webkit-linear-gradient(#aaa, #fff);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#aaaaaa', endColorstr='#ffffffff',GradientType=0 ); /* IE6-9 */
    border-radius: 5px;
  float: right;
  clear: both;
  top: 12px;
  margin: 0px;
  text-align: center;
  box-shadow: 4px 4px 5px rgba(0,0,0,0.5);
transition: all 0.3s cubic-bezier(.49,.59,.27,1.82);
-webkit-transition: all 0.3s cubic-bezier(.49,.59,.27,1.82);
    font: bolder 15px/normal Arial, Helvetica, sans-serif;
    cursor: pointer;
  z-index: 900;
}
.A2Cpushed {
transition: all 0.3s cubic-bezier(.49,.59,.27,1.82);
-webkit-transition: all 0.3s cubic-bezier(.49,.59,.27,1.82);
transform:translate(-3px, 3px);
-webkit-transform:translate(-3px, 3px);
box-shadow: 2px 2px 2px rgba(0,0,0,0.5);
width: 84px;
height: 38px;
}
.A2CinCart {
background: rgba(0,255,0,0.51);
background: linear-gradient(rgba(0,255,0,0.51));
background: -webkit-linear-gradient(rgba(0,255,0,0.51));
background: -webkit-linear-gradient(top,  rgba(81,255,93,0.9) 0%,rgba(200,255,200,0.9) 100%);  /*Chrome10+,Safari5.1+ */
}
.A2Cna {
background: #f99;
background: linear-gradient(#f55, #fbb);
background: -webkit-linear-gradient(#f55, #fbb);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff5555', endColorstr='#ffffbbbb',GradientType=0 ); /* IE6-9 */

}
.A2Cna2 {
background: #f99;
background: linear-gradient(#f00, #f66);
background: -webkit-linear-gradient(#f00, #f66);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff0000', endColorstr='#ffff6666',GradientType=0 ); /* IE6-9 */

}
.A2C:hover {
  border: 2px solid #000000;
}
.A2Cs:hover {
  border: 2px solid #000000;
}
/*.A2C:not(:active):before {
	transition: width .4s step-end;
}     */
.casesize {
  font-size: 12px;
  font-weight: bold;
}
.b4 {
transition: height 4.5s;
-webkit-transition: height 1s;
-ms-transition: height 1s;
}
.bd {
transition: height 0.5s;
-webkit-transition: height 1s;
-ms-transition: height 1s;
}
.dvd {
transition: height 1.5s;
-webkit-transition: height 1s;
}
.a {
transition: height 1s;
-webkit-transition: height 1s;
}
.b {
transition: height 1s;
-webkit-transition: height 1s;
}
.c {
transition: height 1s;
-webkit-transition: height 1s;
}
.d {
transition: height 1s;
-webkit-transition: height 1s;
}
.e {
transition: height 1s;
-webkit-transition: height 1s;
}
.d1 {
transition: height 1s;
-webkit-transition: height 1s;
}
.d2 {
transition: height 1s;
-webkit-transition: height 1s;
}
.d3 {
transition: height 1s;
-webkit-transition: height 1s;
}
.d4 {
transition: height 1s;
-webkit-transition: height 1s;
}
.d5 {
transition: height 1s;
-webkit-transition: height 1s;
}
.d6 {
transition: height 1s;
-webkit-transition: height 1s;
}
.d7 {
transition: height 1s;
-webkit-transition: height 1s;
}
.d8 {
transition: height 1s;
-webkit-transition: height 1s;
}
a {
    display: block;
    position: relative;
    top: 150px;
}