/* font face */
@font-face {
    font-family: 'HelveticaNeueUltraLight';
    src: url('../fonts/helveticaneueultralight-webfont.eot?') format('eot'),
         url('../fonts/helveticaneueultralight-webfont.woff') format('woff'),
         url('../fonts/helveticaneueultralight-webfont.ttf') format('truetype'),
         url('../fonts/helveticaneueultralight-webfont.svg#webfontH6JQrKCb') format('svg');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'HelveticaNeueUltraLightItalic';
    src: url('../fonts/helveticaneueultralightitalic-webfont.eot?') format('eot'),
         url('../fonts/helveticaneueultralightitalic-webfont.woff') format('woff'),
         url('../fonts/helveticaneueultralightitalic-webfont.ttf') format('truetype'),
         url('../fonts/helveticaneueultralightitalic-webfont.svg#webfontUDAA1Wss') format('svg');
    font-weight: normal;
    font-style: normal;

}

/* css3 animations */
/* animations webkit */
/* spinning logo */
@-webkit-keyframes load-logo {
    0% {
    -webkit-transform: rotate(190deg);
    margin-top: -100px;
    }
    20% {
    margin-top:0;
    }
    50% {
    -webkit-transform:rotate(0deg);
    }
    75% {
    -webkit-transform:rotate(30deg);
    }
    82% {
    -webkit-transform:rotate(0deg);
    }
}

/* slogan fade-in */
@-webkit-keyframes load-slogan {
    0% {
    opacity: 0;
    }
    30%{
    opacity: 0;
    }
    70% {
    opacity: 1;
    }
}
/* fade-in pageload */
@-webkit-keyframes pageload {
  0% {
  opacity: 0;
  }
  100% {
  opacity: 100%;
  }
}
@-webkit-keyframes welcome {
  0% {
  margin-top: 800px;
  }
  67% {
  margin-top: 800px;
  }
  100% {
  margin-top: -150px;
  }
}

/* animations mozilla */

/* spinning logo */
@-moz-keyframes load-logo {
    0% {
    -moz-transform: rotate(190deg);
    margin-top: -100px;
    }
    20% {
    margin-top:0;
    }
    50% {
    -moz-transform:rotate(0deg);
    }
    75% {
    -moz-transform:rotate(30deg);
    }
    82% {
    -moz-transform:rotate(0deg);
    }
}

/* slogan fade-in */
@-moz-keyframes load-slogan {
    0% {
    opacity: 0;
    }
    30%{
    opacity: 0;
    }
    70% {
    opacity: 1;
    }
}
/* fade-in pageload */
@-moz-keyframes pageload {
  0% {
  opacity: 0;
  }
  100% {
  opacity: 100%;
  }
}
@-moz-keyframes welcome {
  0% {
  margin-top: 800px;
  }
  67% {
  margin-top: 800px;
  }
  100% {
  margin-top: -100px;
  }
}

/* animations webkit */
/* spinning logo */
@keyframes load-logo {
    0% {
    transform: rotate(190deg);
    margin-top: -100px;
    }
    20% {
    margin-top:0;
    }
    50% {
    transform:rotate(0deg);
    }
    75% {
    transform:rotate(30deg);
    }
    82% {
    transform:rotate(0deg);
    }
}

/* slogan fade-in */
@keyframes load-slogan {
    0% {
    opacity: 0;
    }
    30%{
    opacity: 0;
    }
    70% {
    opacity: 1;
    }
}
/* fade-in pageload */
@keyframes pageload {
  0% {
  opacity: 0;
  }
  100% {
  opacity: 100%;
  }
}
@keyframes welcome {
  0% {
  margin-top: 800px;
  }
  67% {
  margin-top: 800px;
  }
  100% {
  margin-top: -150px;
  }
}

article, aside, footer, header, hgroup, nav, section {display: block;}
* {
margin: 0;
padding: 0;
-webkit-animation: pageload 0.2s 1 alternate ease-in-out;
-moz-animation: pageload 0.2s 1 alternate ease-in-out;
border:0;
}

body {
font-family: "Helvetica Neue",HelveticaNeue,"Segoe UI",Helvetica,Tahoma;
font-size: 14px;
text-shadow: rgba(255, 255, 255, 0.496094) 0 1px 0;
background-repeat: repeat-x;
background: url('../images/back.png');
background: -moz-linear-gradient(top, color-stop(0, #d9d9d9),color-stop(0.2, #fff));
background-image: -webkit-gradient(linear,left top,left bottom, color-stop(0, #d9d9d9), color-stop(20%, #fff));

background:linear-gradient(top,#d9d9d9 0%,#fff 20%);
}
/* Link colors */
a {
color: #333;
text-decoration: none;
/* css3 */
-webkit-transition: .2s;
   -moz-transition: .2s;
    transition: .2s;
}
a:hover {
color: black;
}

/* header */
header {
height: 150px;
position: relative;
margin-top: 20px;
padding-top: 1px;
}
header #logo {
position: relative;
/* css3 */
-webkit-user-select: none;
   -moz-user-select: none;
    user-select: none;

-webkit-animation: load-logo 2s 1 alternate ease-in-out;
   -moz-animation: load-logo 2s 1 alternate ease-in-out;
    animation: load-logo 2s 1 alternate ease-in-out;

}


header .slogan {
font-weight: 100;
font-family: 'Helvetica Neue','HelveticaNeue','HelveticaNeueUltraLightItalic';
color: #333;
font-size: 30px;
display: block;
position: absolute;
top: 55px;
left: 150px;
color: #000;
text-shadow: 1px 1px 0 rgba(255,255,255,0.4);
font-style: italic;
padding: 0 10px 5px 10px;
border-bottom: 9px solid #222;
/* css3 */
-webkit-user-select: none;
   -moz-user-select: none;
    user-select: none;

-webkit-user-drag: element;
   -moz-user-drag: element;
    user-drag: element;

-webkit-animation: load-slogan 4s 1 alternate ease-in-out;
   -moz-animation: load-slogan 4s 1 alternate ease-in-out;
    animation: load-slogan 4s 1 alternate ease-in-out;
}
#page {
width: 985px;
margin: 0 auto;
padding-top: 1px;
}
#page:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}
/* only hide overflow on homepage, hide scrollbar while performing animation */
#content {
overflow:hidden;
}
/* content area */
#content {
float: left;
height:710px;
width: 835px;
position: relative;
-webkit-animation: welcome-fixer 3s 1 alternate ease-in-out;

}

.Referenzen #content {
height: auto !important;  
  
}

#content h1 {
font-weight: 100;
margin-bottom: 10px;
}

/* footer */

footer {
overflow: hidden;
}
footer .copyright {
float:right;
margin-right: auto;
color: #333;
font-weight: 300;
}
footer .imprint {
float:right;
margin-right: auto;
color: #333;
font-weight: 300;
}

/* sidebar */

aside {
width: 130px;
float: right;
font-size: 13px;
margin-right: 10px;

/* css3 */
-webkit-animation: pageload 2s 1 alternate ease-in-out;
   -moz-animation: pageload 2s 1 alternate ease-in-out;
    animation: pageload 2s 1 alternate ease-in-out;

}
aside section {
margin-bottom: 20px;
position: relative;
}

aside .csc-bulletlist-2 li {
height: 32px;
margin-bottom: 8px;
}
aside .csc-bulletlist-2 li a {
height: 32px;
display: block;
position: relative;
}
aside .csc-bulletlist-2 li a span {
position: absolute;
top: 9px;
left: 40px;
}
aside .csc-bulletlist-2 li img {
border-radius: 5px;
height: 32px;

/* css3 */
-webkit-transition: .2s;
   -moz-transition: .2s;
    transition: .2s;

}
aside .csc-bulletlist-2 li a:hover img{
/* css3 */
-webkit-box-shadow: 0 0 10px #555;
   -moz-box-shadow: 0 0 10px #555;
    box-shadow: 0 0 10px #555;
}

aside .more {
bottom: -15px;
right: 25px;
position: absolute;
font-size: 12px;
text-decoration: none
}
aside section ul {
list-style-position: inside;
list-style-type: none;
}
aside section h3 {
margin-bottom: 5px;
}
aside .csc-bulletlist-1 {
list-style-type: square;
}
aside .csc-bulletlist-1 li {
margin-bottom: 1px;
}

/* navigation */

nav {
float: right;
margin-top:86px;
}
nav ul{
list-style: none;
}

nav ul li {
height: 20px;
line-height: 20px;
float: left;
position: relative;
margin: 0 2px 0 2px;
}

nav ul li a {
text-decoration: none;
height: 20px;
display:block;
font-size: 14px;
padding:0 6px 0 6px;
font-family: "Lucida Grande",Calibri,'Lucida Sans Unicode';
font-weight: bold;
color: #888;
-webkit-transition: 0.4s;
}

nav ul li a:hover {
background: #ddd;
color:#333;
-webkit-border-radius: 5px;
   -moz-border-radius: 5px;
    border-radius: 5px;
}

nav ul li .active {
background: #ccc;
border: 1px solid #cdcdcd;
color:#444;
-webkit-border-radius: 5px;
   -moz-border-radius: 5px;
    border-radius: 5px;
}

nav ul li .active:hover {
background: #ddd;
color:#333;
-webkit-border-radius: 5px;
   -moz-border-radius: 5px;
    border-radius: 5px;
}

nav ul li > ul {
height: 0;
left: -50px;
position: absolute;
overflow: hidden;
border-top:0;
text-align: center;
padding: 4px 0 4px 0;
-webkit-border-radius: 0 0 4px 4px;
   -moz-border-radius: 0 0 4px 4px;
    border-radius: 0 0 4px 4px;
}
nav ul li > ul li a{
border-radius: 0;
font-weight: normal;
color:#555;
font-size: 13px;
padding: 0 8px 0 8px;

}

nav ul li > ul li a:hover{
background: transparent;
}

nav ul li:hover > ul {
height: auto;
border: 1px solid #ddd;
overflow:visible;
z-index: 2000;
background: #fff;
-webkit-box-shadow: 0 0 10px #333;
   -moz-box-shadow: 0 0 10px #333;
    box-shadow: 0 0 10px #333;
background-image: -webkit-gradient(linear,left top, left bottom, from(#fff), to(#eee));
background-image:            -moz-linear-gradient(top, from(#fff), to(#eee));
background-image:               linear-gradient(top, from(#fff), to(#eee));
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#eeeeee');
-ms-filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#eeeeee');
}
nav ul li.hassub a:hover{
-webkit-border-radius: 4px 4px 0 0;
   -moz-border-radius: 4px 4px 0 0;
    border-radius: 4px 4px 0 0;
}

#myGallery5 {
border: 0;
}

.slideElement {
-webkit-user-drag: element;
   -moz-user-drag: element;
    user-drag: element;
background-color: transparent !important;
}



/* referenzen */

.referenzen {
margin: 0 auto;
width: 512px;
list-style: none;
padding:0 0 20px 0;
margin: 10px 0;
}

.referenzen>li {
overflow:hidden;
border: 1px solid #bbb;
border-bottom: 0;   
}
.referenzen>li:last-child {
border-bottom: 1px solid #bbb;
-webkit-border-bottom-right-radius: 8px;
    -moz-border-radius-bottomright: 8px;
        border-bottom-right-radius: 8px;
}
.referenzen>li:first-child {
    -webkit-border-top-right-radius: 8px;
      -moz-border-radius-topright: 8px;
           border-top-right-radius: 8px;
}
.preview {
position: relative;
height: 130px;
width: 182px;
float: left;
}

.preview img{
height: 130px;
width: 182px;
z-index: 20;
}
.preview a {
height: 130px;
width: 182px;
display: block;

}
.preview a:hover {
-webkit-mask-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0,0,0,0.8)), to(rgba(0,0,0,1)));
   -moz-mask-image: -moz-linear-gradient(top,rgba(0,0,0,0.8),rgba(0,0,0,1));

}
.description {
float:left;
width: 279px;
border-left:0;
padding: 10px 0 0 20px;
height: 120px;
overflow: hidden;
border-left:0;
margin-left:0;
display: block;
}
.description h4 {
margin-bottom: 5px;
}

description > {
overflow:hidden;
}

.description .checkmarks{
list-style: none;
}
.description .checkmarks li:before {
content: '\002714'; /* HEAVY CHECK MARK */ 
margin-right: 5px;
color: #444;
text-shadow: 1px 0 0 black;
}
.description .checkmarks li:before:hover {
cursor: default;
/* css3 */
-webkit-user-drag: element;
   -moz-user-drag: element;
    user-drag: element;
}

/* homepage welcome */
tx-rgsmoothgallery-pi1 {
z-index: 1000;
}
.welcome {
position: absolute;
margin-top: -150px;
z-index: 2000;
background-repeat:repeat-x;
background-image: url('../images/welcome_bg.png');
background-image: -webkit-gradient(linear,left top,left bottom, from(rgba(255,255,255,0.5)),to(#d9d9d9));
background-image: -moz-linear-gradient(top, color-stop(0, #d9d9d9),color-stop(0.2, rgba(255,255,255,0.5)));
background-image:      linear-gradient(top, color-stop(0, #d9d9d9),color-stop(0.2, rgba(255,255,255,0.5)));
height: 187px;
-webkit-animation: welcome 10s 1 alternate ease-in-out;
   -moz-animation: welcome 10s 1 alternate ease-in-out;

}
#content .welcome p{margin:0 50px; padding: 0;}
#content .welcome h1 {
font-weight: 500;
text-align: center;
padding: 5px;
margin-bottom:0;
}



/*   hosting featurelist */

.hosting_container {
border: 1px solid #777;
font-weight: 500;
overflow:hidden;
float: left;
margin: 50px 100px;
padding: 0 20px 0 0;
/* css3 */
background-image: -webkit-gradient(linear,left bottom,left top,from(#c7c7c7), to(#f5f5f5));
background-image: -moz-linear-gradient(top,#f5f5f5,#c7c7c7);
background-image: linear-gradient(top,#f5f5f5,#c7c7c7);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f5f5f5', endColorstr='#c7c7c7');
-ms-filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f5f5f5', endColorstr='#c7c7c7');

text-shadow: rgba(255, 255, 255, 0.496094) 0 1px 0;

-webkit-box-shadow: 0 0 20px #333;
   -moz-box-shadow: 0 0 20px #333;
    box-shadow: 0 0 20px #333;

-webkit-border-radius: 10px;
   -moz-border-radius: 10px;
    border-radius: 10px;

}
.featurelist {
width: 200px;
float: left;
list-style: none inside;
line-height: 35px;
}
.featurelist li {
padding: 0 10px 0 30px;
position: relative;
}
.featurelist .pricetag {
font-size: 26px;
font-weight: 100;
color: #333;
margin: 5px 0 0 30px;
text-align: right;
border-top: 1px solid #888;
padding: 0 0 10px 0;
}
.featurelist .permonth {
font-size: 10px;
font-weight: 300;
position: absolute;
right: 68px;
top:-5px;
}
.featurelist .packheader {
font-size: 26px;
font-weight: 100;
color: #333;
margin: 5px 0 0 30px;
text-align: right;
border-bottom: 1px solid #888;
padding: 10px 0 0 0;
}
.featurelist_footer {
width: 600px;
list-style: none;
margin: 0 auto;
overflow: hidden;
}
.featurelist_footer li {
float:left;
width: 200px;
}
.featurelist_footer h3 {
font-weight: 100;
text-align: center;
font-size: 20px;
padding-bottom: 10px;
}
.featurelist_footer p {
margin-top: 5px;
}
.buythis {
margin-bottom: 20px
}
.buythis button {
height: 25px;
border: 1px solid #073a80;
padding: 0 10px;
line-height: 25px;
font-family: "Helvetica Neue";
color: white;
font-size: 13px;
cursor: pointer;
margin-left: 56px;
text-shadow: rgba(0, 0, 0, 0.496094) 0 1px 0;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#056fff', endColorstr='#031b97');
-ms-filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#056fff', endColorstr='#031b97');
background-image: -webkit-gradient(linear, left top, left bottom, from(#056fff), to(#031b97));
background-image: -moz-linear-gradient(top,#056fff, #031b97);
background-image:      linear-gradient(top,#056fff, #031b97);

-webkit-border-radius: 25px;
   -moz-border-radius: 25px;
       border-radius: 25px;

}
.buythis button:hover {
/* css3 */
-webkit-box-shadow: 0 0 10px #555;
   -moz-box-shadow: 0 0 10px #555;
    box-shadow: 0 0 10px #555;
}
/* ### inline label contact form ### */

#mailform, .csc-mailform {
    width: 500px;
    border: 0;
}
#mailform {
    margin:0 auto;
}
.csc-mailform-field {
    position: relative;
    width: 200px;
    margin-bottom:10px;
}
.csc-mailform-field input{
    font-size: 14px;
    background: none;
    position: relative;
    z-index: 10;
    width: 296px;
    border: 0;
    padding: 6px 5px 0 4px;
    border: 1px solid #ddd;
        font-family: "Helvetica Neue",HelveticaNeue,"Segoe UI",Helvetica,Tahoma;

      /* css3 */

    -webkit-border-radius: 4px;
       -moz-border-radius: 4px;
            border-radius: 4px;
   
}
.csc-mailform-field input:focus{
    -webkit-transition-duration: 0.2s;
       -moz-transition-duration: 0.2s;
        transition-duration: 0.2s;
}
.field-adresse textarea, .field-nachricht textarea {
    background: none;
    border: 1px solid #ddd;
    font-size: 14px;
    padding: 6px 5px 0 4px;
    position: relative;
    resize: none;
    width: 296px;
    z-index: 10;
    margin-top:0;
    font-family: "Helvetica Neue",HelveticaNeue,"Segoe UI",Helvetica,Tahoma;
  overflow: hidden;
    /* css3 */

    -webkit-border-radius: 4px;
       -moz-border-radius: 4px;
            border-radius: 4px;
}
.csc-mailform-field label {
    position: absolute;
    top: 1px;
    left:1px;
    font-size: 14px;
    font-weight: normal;
    max-height: 75px;
    background: #fff;
    z-index: 1;
    line-height: 23px;
    width: 300px;
    padding: 0 0 0 4px;
    color: #aaa;
    border: 0;
  
     /* css3 */
   
    -webkit-border-radius: 4px;
       -moz-border-radius: 4px;
           border-radius: 4px;
             
    background-image: -webkit-gradient(linear,left top,left bottom, from(#efefef), to(#fff));
  background-image: -moz-linear-gradient(top, #efefef,#fff);
  background-image: linear-gradient(top, #efefef, #fff);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#efefef', endColorstr='#ffffff');
-ms-filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#efefef', endColorstr='#ffffff');
  
}
#mailformformtype_mail {
border: #999 1px solid;
font-family: "Helvetica Neue",HelveticaNeue,Helvetica, Segoe UI, Arial;
line-height: 25px;
height: 25px;
padding: 0 20px 0 20px;
border-top: 1px solid #ddd;
width: auto;
   /* css3 */
background-image: -webkit-gradient(linear,left top,left bottom, from(#f5f5f5), to(#b5b1b5));
background-image: -moz-linear-gradient(top,#f5f5f5,#b5b1b5);
background-image:      linear-gradient(top,#f5f5f5,#b5b1b5);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f5f5f5', endColorstr='#b5b1b5');
-ms-filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f5f5f5', endColorstr='#b5b1b5');
  
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
         border-radius: 4px;
}
#mailformformtype_mail:hover {
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#c7c3c7', endColorstr='#ffffff');
-ms-filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#c7c3c7', endColorstr='#ffffff');
background-image: -webkit-gradient(linear,left top,left bottom, from(#fff), to(#c7c3c7));
background-image: -moz-linear-gradient(top, #fff, #c7c3c7);
background-image: linear-gradient(top, #fff, #c7c3c7);
}
#mailformformtype_mail:active {
-webkit-box-shadow:inset 1px 1px 5px #555;
   -moz-box-shadow:inset 1px 1px 5px #555;
    box-shadow:inset 1px 1px 5px #555;
    
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#c7c3c7', endColorstr='#ffffff');
-ms-filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#c7c3c7', endColorstr='#ffffff');
background-image: -webkit-gradient(linear,left top,left bottom, from(#fff), to(#c7c3c7));
background-image: -moz-linear-gradient(top, #fff, #c7c3c7);
background-image: linear-gradient(top, #fff, #c7c3c7);
}

.field-adresse label, .field-nachricht label {
left: 1px;
background-image: -webkit-gradient(linear,left top,left bottom, from(#efefef), to(#fff));
background-image: -moz-linear-gradient(top, #efefef,#fff);
background-image: linear-gradient(top, #efefef, #fff);
height: 80px;
padding-right: 1px;
padding-top: 5px;
top: 0px
}
label.focus { opacity: 0.35; }
label.has-text { opacity: 0.0; -webkit-transition-duration: 0s; }


/* news / blog styling */
.news-list-container {
margin: 20px auto;
width: 700px;
}
.news-list-container h2 {
font-weight: 500;
color: black;
}
.news-list-item p {
margin-right: 170px;
}
.news-single-item {
margin: 20px auto;
width: 700px;
}

#content .news-single-item h1 {
font-weight: 400;
}
.news-single-item p {
margin-right: 170px;
}
.news-list-date {
color: #aaa;
/*text-shadow: -1px -1px 1px #666;*/
font-weight: 100;
font-size: 40px;
letter-spacing: -1px;
border-bottom: 1px solid #bbb;
margin-top: -35px;
}

/* sub pages */

.Web-Design #content p{
margin-right: 220px;
}


.map {
border:0;
overflow:hidden;
height: 350px;
width: 425px;
display: block;
margin: 10px auto;
border: 1px solid #444;
/* css3 */
-webkit-border-radius: 4px;
   -moz-border-radius: 4px;
         border-radius: 4px;
         
-webkit-box-shadow: 0 0 10px #333;
   -moz-box-shadow: 0 0 10px #333;
    box-shadow: 0 0 10px #333;
}
.align-center{
text-align: center;
}
.howtofind {
font-weight: 500;
text-align: center;
margin: 10px 0;
}

.bloglist li {
border-bottom: 1px solid #ddd;

}

.bloglist li a {
padding-bottom: 5px;
border-bottom: 1px solid #777;

display: block;
}


/* jd gallery */

.tx-rgsmoothgallery-pi1{  background:transparent url(img/loading-bar-black.gif) center center no-repeat}.myGallery{    width:460px;    height:345px;    z-index:5;    display:none;    border:1px solid #000}.jdGallery{    overflow:hidden;    position:relative}.jdGallery img{    border:0;    margin:0}.jdGallery .slideElement{    width:100%;    height:100%;    background-color:#000;    background-repeat:no-repeat;    background-position:center center;    position:absolute;    left:0;    right:0;    margin:0;    padding:0;    opacity:0}.jdGallery .loadingElement{    width:100%;    height:100%;    position:absolute;    left:0;    top:0;    background-color:#000;    background-repeat:no-repeat;    background-position:center center;    background-image:url('img/loading-bar-black.gif')}.jdGallery .slideInfoZone{ position:absolute; z-index:10; width:100%; margin:0px; left:0; bottom:0; height:40px; background:#333; color:#fff; text-indent:0; overflow:hidden}* html .jdGallery .slideInfoZone{ bottom:-1px}.jdGallery .slideInfoZone h2{ padding:0; font-size:80%; margin:0; margin:2px 5px; font-weight:bold; color:inherit}.jdGallery .slideInfoZone p{ padding:0; font-size:60%; margin:2px 5px; color:#eee}.jdGallery div.carouselContainer{ position:absolute; height:135px; width:100%; z-index:10; margin:0px; left:0; top:0}.jdGallery a.carouselBtn{ position:absolute; bottom:0; right:60px; height:20px;     text-align:center;    padding:0 10px;    font-size:13px;    background:#333;    color:#fff;    cursor:pointer}.jdGallery a.play{    position:absolute;    bottom:0;    right:30px;    height:20px;    width:20px;    background:url('img/control_play.png') no-repeat center right;    cursor:pointer}.jdGallery a.pause{    background:url('img/control_pause.png') no-repeat center right}.jdGallery .carousel{    position:absolute;    width:100%;    margin:0px;    left:0;    top:0;    height:115px;    background:#333;    color:#fff;    text-indent:0;    overflow:hidden}.jdGallery .carousel .carouselWrapper{    position:absolute;    width:100%;    height:78px;    top:10px;    left:0;    overflow:hidden}.jdGallery .carousel .carouselInner{    position:relative}.jdGallery .carousel .carouselInner .thumbnail{    cursor:pointer;    padding:0;    margin:0;    background:#000;    background-position:center center;    float:left;    border:solid 1px #fff}.jdGallery .carousel .label{    font-size:13px;    position:absolute;    bottom:5px;    left:10px;    padding:0;    margin:0}.jdGallery .carousel .label .number{    color:#b5b5b5}.jdGallery a{    font-size:100%;    text-decoration:none;    color:inherit}.jdGallery a.right,.jdGallery a.left{    position:absolute;    height:99%;    width:25%;    cursor:pointer;    z-index:10;    filter:alpha(opacity=20);    -moz-opacity:0.2;    -khtml-opacity:0.2;    opacity:0.2}* html .jdGallery a.right,* html .jdGallery a.left{    filter:alpha(opacity=50)}.jdGallery a.right:hover,.jdGallery a.left:hover{    filter:alpha(opacity=80);    -moz-opacity:0.8;    -khtml-opacity:0.8;    opacity:0.8}.jdGallery a.left{    left:0;    top:0;    background:url('img/fleche1.png') no-repeat center left}* html .jdGallery a.left{background:url('img/fleche1.gif') no-repeat center left}.jdGallery a.right{    right:0;    top:0;    background:url('img/fleche2.png') no-repeat center right}* html .jdGallery a.right{background:url('img/fleche2.gif') no-repeat center right}.jdGallery a.open{    left:0;    top:0;    width:100%;    height:100%}.jdGallery a.open{    position:absolute;    top:0;    left:25%;    height:99%;    width:50%;    cursor:pointer;    z-index:10;    background:none;    -moz-opacity:0.8;    -khtml-opacity:0.8;    opacity:0.8}.jdGallery a.open:hover{background:url('img/open.png') no-repeat center center}* html .jdGallery a.open:hover{background:url('img/open.gif') no-repeat center center; filter:alpha(opacity=80)} 
/* jd end */

