body {
   padding: 50px 0 20px 0;
   margin:0;
   width:95%;
}

 .blog-write-up{

    clear:both;
    text-align: justify;
    line-height: 150%;
    font-size: 1.2em;
    padding:2px;
}

.zf-green {
    color: #68b604;
}

.btn-success {
  background-color: #57a900;
  background-image: -moz-linear-gradient(top, #70d900, #57a900);
  background-image: -ms-linear-gradient(top, #70d900, #57a900);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#70d900), to(#57a900));
  background-image: -webkit-linear-gradient(top, #70d900, #57a900);
  background-image: -o-linear-gradient(top, #70d900, #57a900);
  background-image: linear-gradient(top, #70d900, #57a900);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#70d900', endColorstr='#57a900', GradientType=0);
}

.btn-success:hover,
.btn-success:active,
.btn-success.active,
.btn-success.disabled,
.btn-success[disabled] {
  background-color: #57a900;
}

.btn-success:active, .btn-success.active {
  background-color: #57a900;
}

.home {

    margin:5px 1px 5px 5px;
    padding:1px;
    float:left;
    border:#ccc thin solid ;
    border-radius:4px;
}

.home ul{

    clear:both;
    width:100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    list-style: none;
    margin-top:5px;
    padding:2px;
    float:left;
}


/*.home ul li{

    display:inline;
    margin:2px 5px;
}*/

.home ul li a{

    text-decoration: none;
    color:black;
    font-size: 0.9em;
    font-weight: bold;
}

.home ul li a img {

    max-width:98%;
    height:auto;
}
 span.more a{

    clear:both;
    float:right;
    color: red;

}

.home .bigtext{

    font-size:1.5em;
    font-weight: bold;
    color:#666;
    float:left;
}

#aboutGFC{

    clear:both;
    margin: 2px;
}

#aboutGFC > p{
  text-align: justify;
  line-height: 150%;
  padding:5px;
}
/* Custom area */

#content{

    margin:90px 0;
    padding:0;
    width:100%;
    display: block;

}
.card-thumb-holder ul{

    clear:both;
    width:100%;
    display: flex;
    justify-content: space-evenly;
    -webkit-flex-flow:wrap;
    -webkit-flex-direction:row;
    list-style: none;
    padding:2px;
    float:left;
    overflow: hidden;
    margin:0 5px 0 0;
    display: flex;
    -webkit-flex-flow:wrap;
    -webkit-flex-direction:row;
  }

.card-thumb-holder ul li{

    margin:2px;
    padding:0;
    text-align: center

}
@media (max-width:1023px){

   .card-thumb-holder ul li {
    width: 40%;
    height: auto;
   }
 }
 @media(min-width:1024px) and (max-width:1400px){

   .card-thumb-holder ul li {
    width: 32.5%;
    height: auto;
   }
 }
 @media(min-width:1401px){

   .card-thumb-holder ul li {
    max-width: 24%;
    height: auto;
    }
 }

 @media (max-width:878px){

   .home {max-width:100%}
   .home > ul > li > a > img {
       /*background-color: yellow;*/
    max-width: 160px;
    height: auto;
}

 }
 @media only screen and (min-width:879px) {

   /*.home {max-width:640px;}*/
   .home > ul > li > a > img {
       /*background-color: blue;*/
           max-width: 200px;
    height: auto;
  }
 }

.card-thumb-holder ul li a img{
    /*max-width: 98%;*/
    height: auto;
}

.card-details {
    display:flex;
    flex-direction: column;
    padding:5px;
}

@media (max-width:1024px) {

  .card-details {
      max-width: 50%;

  }
}

@media (min-width:1024px) {

  .card-details {
      max-width: 30%;

  }
}



.card-details > .card-description{

     color:black;
     padding:2px;
     font-size: 1.15em;
     text-align:justify;
     line-height: 175%;
     margin-top: 5px;
   }

 .card-details > .editor-description{

      color:black;
      padding:2px;
      font-size: 1.15em;
      text-align:justify;
      width:70%;

  }

.home-card{

  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
    /* flex-flow: row; */
  justify-content: space-evenly;

}


 #category {

    /*width: 190px;*/
    height: 0;
    z-index:100;
    margin:0;
    background-color: #fff;
    overflow-y:visible;

}

#category .disclosure-indicator{
   glyphicon glyphicon-triangle-right;
}



.categoryLink > a, .categoryLink > ul > li  {

  border-bottom: thin solid #dcdcdc;
  padding: 0px;
  font-size: 1.0em;
  font-weight: bold;
  text-decoration: none;
  display:inline-block;
  vertical-align : middle;
  line-height:35px;
  width:98%;
}

.categoryLink ul{
    list-style: none;
    list-style-position:inside;
    margin:0;
    padding:0;
}

.categoryLink a,
.categoryLink ul li a{

  text-decoration: none;
    /*text-transform: uppercase;
    font-weight: bold;*/
}

.categoryLink > a{
    margin-left: 5px;
}
.categoryLink > ul > li >a{
    margin-left:25px;
}

.category-btn{
    top:0px;
    margin:10px 0 0 10px;
    padding:15px;
}

#category.slide-in {

    animation: slide-in 0.5s forwards;
    -webkit-animation: slide-in 0.5s forwards;
}

#category.slide-out {
    animation: slide-out 0.5s forwards;
    -webkit-animation: slide-out 0.5s forwards;
}

@keyframes slide-in {
    100% { transform: translateX(0%); }
}

@-webkit-keyframes slide-in {
    100% { -webkit-transform: translateX(0%); }
}

@keyframes slide-out {
    0% { transform: translateX(0%); }
    100% { transform: translateX(-110%); }
}

@-webkit-keyframes slide-out {

    0% { -webkit-transform: translateX(0%); }
    100% { -webkit-transform: translateX(-110%); }
}


 .intrinsic-container{
    width:100%;
    border:#ccc thin solid;
    margin:0 auto;
    position: relative;
    padding:0;
}

@media only screen and (max-width: 768px) {
    .modal-body .intrinsic-container {
        width:320px;
        margin:0 auto;
        overflow: hidden;
    }
}
/*
@media only screen and (min-width: 769px) {
   
}*/

.intrinsic-container .zero-height{

  /* 4:3 ratio 75% padding */
    width:98%;
    margin:0 auto;
    height:100%;
    padding:75% 0 0 0;
    overflow: hidden;

}

.intrinsic-container.text {

    width:100%;
    font-style: italic;
    font-size: 1.5em;
    font-family: cursive,Arial;
    color:blue;
    padding:5px;
}

.intrinsic-container .zero-height iframe,.intrinsic-container  .envelope{

    position: absolute;
    left:0;top:0;
    width:100%;
    height:100%;
    border-style: none;
    padding:0px;
}

#received-card-frame{

    position: relative;
    margin-top:5px;
    margin-bottom: 10px;
    width:100%;
    max-width:640px;
    display:block;
    padding:0;
}

#sendingOptions {

    float:left;
    position: relative;
    margin:15px 0;
    bottom:10px;
    width:100%;
}

.modeButton{

    border:none;
    margin:0 5px 0 0;
    text-align: center;
    width:150px;
    float:left;
}

.modeButton a{

   width:100%;
   color: #fff;
   text-decoration: none;
   background-color: #2b669a;
   display: block;
   padding:5px;
}

#mail-form, #facebook-form{

    position: relative;
    float:left;
    margin-top:2px;
    width:100%;
    border:1px #ccc solid;
    padding: 1em;
    text-align: left;
}

#mail-form label,#facebook-form label
{

    display:table-row;
    margin:5px 0 5px 0;
    padding:1em;
}

#mail-form label span,#facebook-form label span
{
   color:red;
   margin:5px 5px 0 0;
   padding:5px;
   display:table-cell;
}

#contentPanel {
  display: inline-block;

}

@media (min-width:768px) and (max-width:1023px) {

    #contentPanel {
       width: 77%;
       margin: 1px 1px 0 10px;

    }

}

@media (min-width:768px) {

     #right-ad-table {

       position: relative;
       float:right;
       width:13%;
       padding:0px;
       margin:5px 2px 2px 2px;

   }

    #right-ad-table ins{
     width:100%;
   }

   .ad-cell{

        margin:0 0 5px 10px;
        padding:0;
        width:100%;
        display:block;
    }

}

@media (max-width:767px) {

    #contentPanel {
        width:100%;
        float:left;
        margin:0;
        padding:0
   }

   #display-frame{
     width:97%;
     margin:0 auto;
     padding:0;
     float:left;
     display:block;
   }

    #right-ad-table {
       display: none;
    }

    #right-ad-table ins{
     width:0%;
   }
}

@media (max-width:1023px) {

  #category{

       height:auto;
       position: absolute;
       border-right:1px #ccc groove;
       border-bottom:1px #ccc groove;
       transform: translateX(-100%);
       -webkit-transform: translateX(-110%);
       z-index:200;
       margin: 4px 4px 2px 2px;
       padding:5px;
       width:230px;
   }

   .more-links{
    float: right;
    padding:8px;
    margin-top: 10px;
    right:2px;
    text-align:center;
    clear:both;
    background-color:#28a4c9;
    color:#000;
    }

}

 @media (min-width:1024px) {

    #contentPanel {
        width: 69%;
        float:left;
        display: block;
       position: relative;
       margin: 1px 1px 0 5px;

    }

    #category{

        position: relative;
        margin:2px;
        padding:2px;
        height:100%;
        width:15%;
        float:left;
        border-right: 1px #ccc solid;
        animation: slide-in 0.0s forwards;
        -webkit-animation: slide-in 0.0s forwards;
        background-color: white;
   }

}

nav .fb-like{

    float:left;
    left:5px;
    top:10px;
}


.container-fluid,#cardVarieties{

    margin-top:0px;
}

#cardVarieties ul li{

   font-size:1.15em;

}

#cardVarieties ul li a{
    color:#28a4c9;
}

#cardVarieties ul li a.active{

    color:#fff;
}

#cardVarieties ul li a:hover{

    color:#003;

}

.rating{

    position: relative;
    float:left;
    padding:0;
    margin:0 5px 0 2px;
}

.ratingBtn{

    position: relative;
    float:left;
    margin: 0px 1px;
    padding:0;
}
.ratingBtn span{

    position: absolute;
    top:-2px;
    right:2px;

}
.banner,
.reusable-ad
{

    float:left;
    width:100%;
    position: relative;
    display:block;
    margin:10px auto;
}

.bottomLinks{

    width:100%;
    list-style: none;
    text-align: center;
}

.bottomLinks li{

    display:inline;
}

.bottomLinks li a{

    text-decoration: none;
    color:#666;
    font-size:0.9em;
}

.feedback-form{

    margin:0 auto;
    max-width: 500px;
    display:table;
    padding:5px;
    border:thin solid #ccc;

}

.feedback-form label span,
.feedback-form label input{

    display:table-row;
    padding:5px;
    margin:5px;
}

.feedback-form submit{

    margin-top:5px;
}

.privacy {

    float:left;
    margin:10px 0 5px 0;width:100%;
}

.privacy h4 {

    clear:both;
    float:left;
    margin:10px 0;

}

.privacy p{

    clear:both;
    float:left;
    margin:5px 0;
    padding:0px;
    text-align: justify;
    line-height: 200%;
    padding-right:2px;
    font-size:15px;
}

.carousel-control {
  padding-top:5%;
  padding-left:0;
  padding-right:0;
  width:0.02%;
}

.form-holder{

    margin:0 2px 0 0;
    position: relative;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow:wrap;
    -webkit-flex-direction:row;

  }

  .form-group{

    padding:5px;
    float:left;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content:space-between;
    -webkit-flex-direction:column;

  }

.navbar-toggle .category-btn {
  float: left;
  margin-left: 10px;
  padding:0;
  background-color: #fff;
}

/*view received*/

.front, .back {
    position: absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    padding:0;
    z-index: 1;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    }
  .back {
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
    background:#b49976;

  }

  div#postage-stamps {
    background: repeating-linear-gradient(-45deg, #c1ab8e, #c1ab8e 10px, #e74c3c 10px, #e74c3c 20px, #c1ab8e 20px, #c1ab8e 30px, #1e90ff 30px, #1e90ff 40px) 0 0/100% 5px no-repeat,
    repeating-linear-gradient(-45deg, #cebda6, #cebda6 10px, #e74c3c 10px, #e74c3c 20px, #cebda6 20px, #cebda6 30px, #1e90ff 30px, #1e90ff 40px) 0 100%/100% 5px no-repeat, repeating-linear-gradient(-45deg, #cebda6, #cebda6 10px, #e74c3c 10px, #e74c3c 20px, #cebda6 20px, #cebda6 30px, #1e90ff 30px, #1e90ff 40px) 0 100%/5px 100% no-repeat, repeating-linear-gradient(-45deg, #cebda6, #cebda6 10px, #e74c3c 10px, #e74c3c 20px, #cebda6 20px, #cebda6 30px, #1e90ff 30px, #1e90ff 40px) 100% 100%/5px 100% no-repeat, #cebda6;

    text-align: right;
    width:100%;
    height:100%;
    position: relative;
    border-radius: 8px;
    border: 2px solid none;

  }

  .stamp-area{
     position: relative;
     display: block;
     float:right;
     margin: 8px 10px 0 0;
     width:15%;
   }

  .stamp {

    border-image: url(../img/stamp-border.png) 8 round;
    border-width: 8px;
    border-style: solid;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    position:absolute;

  }

  img#postage {
    position: relative;
    display: inline-block;
    margin: 10px 15px 0 0;
    max-width:100%;
  }

  img.postmark {
    max-width:100%;
    position: relative;
    display: inline-block;
    margin: -25px 15px 0 0;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
  }

#card-cover {
  width: 640px;
  height: 480px;
  margin: 10px auto 20px auto;
}

@media only screen and (max-width:640px) {
  #card-cover{
    width: 320px;
    height: 240px;
  }
 }
.envelope {
  width: 100%;
  height: 100%;
  -webkit-perspective: 50px;
  -webkit-transform-style: preserve-3d;
  perspective: 500;
  transform-style: preserve-3d;
  }

 .envelope__check {
  height: 100%;
  width: 100%;
  z-index: 10;
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin: 0;
  cursor: pointer;
}

.envelope__check:checked {
  z-index:0;
}
.envelope__check:checked ~ .envelope {
transition: transform 1.2s 0s, z-index 0s 0.0s;
-webkit-transform: rotateY(-180deg);
  transform: rotateY(-180deg);
  z-index: 10;
}

.envelope__check:checked ~ .envelope .back .envelope__flap {

  transition: transform 1.25s 2.5s, z-index 0s 0.25s, -webkit-transform 1.25s 2.5s,opacity 2s 4s linear;
          transform: rotateX(-180deg);
  z-index: 0;
  opacity:0;
}

.envelope__check:checked ~ .envelope .back{
  transition:  background 2s 4s linear ;
  background:transparent;
}
.envelope__check:checked ~ .envelope .back .envelope__back {
  transition:  opacity 3s 3s linear;
  opacity:0;
}

.envelope__check:checked ~ .envelope .back .envelope__letter {
  /*transform: translateY(-110%);
  transition: all 1.5s 3.0s, z-index 0s 3.5s;
  z-index: 5;*/
  animation: letter-bounce;
  animation-fill-mode: forwards;
   animation-duration: 2s;
    animation-delay: 3.5s;
}
  @keyframes letter-bounce {
  0%   {top:0%}
  70%  {top:-110%;}
  100% {top:0%;z-index:5;}
  }

.envelope__check:checked ~ .envelope .back .envelope__letter .letter__content:nth-child(1),
.envelope__check:checked ~ .envelope .back .envelope__letter .letter__content:nth-child(2) {
 transition: transform 1.0s 3.0s, -webkit-transform 1.0s 3.0s;
  -webkit-transform: rotateX(0deg);
          transform: rotateX(0deg);
}
.envelope__flap {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 75%;
  transition: transform 1.25s 0.5s, z-index 0s 0.5s, -webkit-transform 1.25s 0.5s;
  -webkit-transform-origin: top center;
          transform-origin: top center;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  background: repeating-linear-gradient(-45deg, #c1ab8e, #c1ab8e 10px, #e74c3c 10px, #e74c3c 20px, #c1ab8e 20px, #c1ab8e 30px, #1e90ff 30px, #1e90ff 40px) 0 0/100% 5px no-repeat, #c1ab8e ;
  z-index: 4;
  -webkit-clip-path: polygon(5% 40%, 50% 100%, 95% 40%, 100% 0, 0 0);
          clip-path: polygon(5% 40%, 50% 100%, 95% 40%, 100% 0, 0 0);
}
.envelope-flap-sticker {

  margin-top:20%;
  text-align: center;
  -webkit-clip-path: circle(30px at center);
          clip-path: circle(30px at center);
}

.envelope__flap--inside {
  -webkit-backface-visibility: visible;
          backface-visibility: visible;
}
.envelope__back {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  background: repeating-linear-gradient(-45deg, #cebda6, #cebda6 10px, #e74c3c 10px, #e74c3c 20px, #cebda6 20px, #cebda6 30px, #1e90ff 30px, #1e90ff 40px) 0 100%/100% 5px no-repeat, repeating-linear-gradient(-45deg, #cebda6, #cebda6 10px, #e74c3c 10px, #e74c3c 20px, #cebda6 20px, #cebda6 30px, #1e90ff 30px, #1e90ff 40px) 0 100%/5px 100% no-repeat, repeating-linear-gradient(-45deg, #cebda6, #cebda6 10px, #e74c3c 10px, #e74c3c 20px, #cebda6 20px, #cebda6 30px, #1e90ff 30px, #1e90ff 40px) 100% 100%/5px 100% no-repeat, #cebda6;
  -webkit-clip-path: polygon(80% 40%, 100% 0, 100% 100%, 0 100%, 0 0, 20% 40%);
          clip-path: polygon(80% 40%, 100% 0, 100% 100%, 0 100%, 0 0, 20% 40%);
}
.envelope__back:after {
  height: 100%;
  width: 100%;
  background: repeating-linear-gradient(-45deg, #c7b49a, #c7b49a 10px, #e74c3c 10px, #e74c3c 20px, #c7b49a 20px, #c7b49a 30px, #1e90ff 30px, #1e90ff 40px) 0 100%/100% 5px no-repeat, #c7b49a ;
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  -webkit-clip-path: polygon(70% 10%, 100% 100%, 0 100%, 30% 10%);
          clip-path: polygon(70% 10%, 100% 100%, 0 100%, 30% 10%);
}

.letter__content {
  height: 100%;
  width: 100%;
  background-color: #fff;
  top: 0;
  left: 0;
  position: absolute;
  padding: 0px;
  text-align: justify;
}
.letter__content:nth-child(1),
.letter__content:nth-child(2) {
  transition: transform 0.25s 2.5s;
  top: 100%;

  -webkit-transform: rotateX(180deg);
          transform: rotateX(180deg);
  transform-origin: top center;
  -webkit-backface-visibility: visible;
          backface-visibility: visible;
  z-index: 2;
  border-top: 1px solid #eee;
}
.letter__content:nth-child(2) {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.from,.to {
  font-family: 'Satisfy', cursive;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

 .from {
   position: relative;
   float:left;
   display:block;
   text-align: left;
   margin:15px 2px 2px 15px ;
   font-size:2vw;
 }
 .to {
   clear:both;
   display: block;
   text-align: center;
   position: absolute;
   top: 50%;
   left: 50%;
   margin-right: -50%;
   transform: translate(-50%, -50%)  ;
   font-size: 4vw;
 }
#airmail{
  position:absolute;
  display: block;
  float:left;
  left:8px;
  bottom:10px;
  font-family: 'Special Elite' ;
  font-size: 1vw;
  margin:0;
}
#airmail > #arc {
  clear:both;
  float:left;
  display: block;
  margin:5px 0 0 0;
}

#airmail img{

 float:left;
 transform: rotate(10deg);
 max-width:80%;
 height:auto;
}

 @media  only screen and (max-width:1023px) {

  .success {
    display:flex;
    flex-wrap:wrap;
    flex-direction: column;
    justify-content: space-between;
   }
 }

 @media only screen and (min-width:1024px) {

  .success {
    display:flex;
    flex-direction: row;
    justify-content: space-between;
   }
 }


 /* Container holding the image and the text */
.thumb-container {
  position: relative;
 /* width: 200px;
  height:150px;*/
  margin:0 auto;
  text-align:center;
}

.thumb-container img {
    max-width: 98%;
}

 /* Top left text */
.top-left {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 0;
  height: 0;
  border-top: 70px solid red;
  border-right: 70px solid transparent;
 }

.premium-show{
    display:block;
}
.premium-hide{
    display: none;
}
.top-left>label {

  position: absolute;
  top:-40px;
  left:5px;
  transform: rotate(-45deg);
  color: #fff;
  font-size: 11px;
}

    .login-link{

       margin:0;
       padding:3px;
       float:right;
    }

    .login-link a {
      text-decoration: none;
      color: #00f;
      font-weight: bold;
    }

    #subscriber-zone{
       float:right;
       width:100%;
       background-color: greenyellow;
       margin:0;
       padding:3px;

    }

    /* Popover Body */
.popover {
    width:600px;
}


/*envelope*/
/*
 .envelope {
        position: absolute;
        cursor: pointer;
      }

    .mail {
        position: relative;
        width:100%;
        height: 100%;
        background-color: #998b74;
        transform-style: preserve-3d;

      }

    .mail:before{
      content: "";
      position:absolute;
      box-sizing:border-box;
      border-left: 0px solid transparent;
      border-bottom: 0px solid #998b74;
      border-top: 0px solid transparent;
      border-right: 0px solid #998b74;
      height:50%;
      width:50%;
      top:0px;
      right:0px;
      z-index: 5;
    }

    .mail:after{
      content:"";
      position: absolute;
      /*border-left: 320px solid #c5b292;
      border-bottom: 240px solid  #c5b292;
      border-top: 240px solid transparent;
      border-right: 320px solid  transparent;
      height:0;
      width:0;
      top:0px;
      left:0px;
      z-index: 4;
    }

    .cover:before{

      content:"";
      position: absolute;
      border-top: 240px solid #ccbea6;
      border-bottom: 240px solid transparent;
      border-left: 320px solid transparent;
      border-right:320px solid transparent;
      top:0px;
      transform-origin: top;
      transform: rotateX(0deg);
      transition: all 0.5s 1s ease;
      z-index:6;

    }

    .letter {
      z-index:3;
      position: absolute;
      background-color: #fff;
      width:100%;
      height: 100%;
      top:0px;
      left:0px;
      transition: all 1s 0s ease;
      transform-style: preserve-3d;

  }

  .envelope__check:checked ~.envelope .mail .cover:before {
    z-index:1;
    opacity:0;
    transform: rotateX(180deg);
    transition: all 2s 1.5s ease;
  }

   .envelope__check:checked ~.envelope .mail:before{
    visibility: hidden;
    transition: visibility 1s 3.0s ease;
  }
  .envelope__check:checked ~.envelope .mail:after{
    visibility: hidden;
    transition: visibility 1s 3.0s ease;
  }

  .envelope__check:checked ~.envelope .mail .letter {
       animation: letter-bounce;
    animation-duration: 2s;
    animation-delay: 2.5s;

  }

  @keyframes letter-bounce {
  0%   {top:0%}
  50%  {top:-130%;}
  100% {top:0%;z-index:10;}
  }*/
