.centroHeader a.ham {
  background: url("/uploads/comun/images/ham.png") no-repeat scroll 0 0 rgba(0, 0, 0, 0);
  display: block;
  height: 35px;
  position: absolute;
  text-indent: -9000px;
  top: 9px;
  width: 40px;
	left: 20px;
}



.cd-panel {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  visibility: hidden;
  -webkit-transition: visibility 0s 0.6s;
  -moz-transition: visibility 0s 0.6s;
  transition: visibility 0s 0.6s;
	z-index: 15000;
}
.cd-panel::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  cursor: pointer;
  -webkit-transition: background 0.3s 0.3s;
  -moz-transition: background 0.3s 0.3s;
  transition: background 0.3s 0.3s;
}
.cd-panel.is-visible {
  visibility: visible;
  -webkit-transition: visibility 0s 0s;
  -moz-transition: visibility 0s 0s;
  transition: visibility 0s 0s;
}
.cd-panel.is-visible::after {
  /*background: rgba(0, 0, 0, 0.6);*/
  -webkit-transition: background 0.3s 0s;
  -moz-transition: background 0.3s 0s;
  transition: background 0.3s 0s;
}


.cd-panel-header {
  position: fixed;
  width: 100%;
  height: 60px;
  line-height: 50px;
  background: #666;
  z-index: 2;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.08);
  -webkit-transition: top 0.3s 0s;
  -moz-transition: top 0.3s 0s;
  transition: top 0.3s 0s;
   top: -50px;
    left: 0;
}

.cd-panel-header p {
	text-align: center;
	font-weight: 700;
	height: 60px;
	padding-top: 8px;
	font-size: 20px;
	color: white;
}



.is-visible .cd-panel-header {
  top: 0;
  -webkit-transition: top 0.3s 0.3s;
  -moz-transition: top 0.3s 0.3s;
  transition: top 0.3s 0.3s;
}

.cd-panel-container {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  /*background: rgba(0,0,0,0.4);*/
  z-index: 1;
  -webkit-transition-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-delay: 0.3s;
  -moz-transition-delay: 0.3s;
  transition-delay: 0.3s;
	padding-top: 60px;
  left: 0;
  -webkit-transform: translate3d(-100%, 0, 0);
  -moz-transform: translate3d(-100%, 0, 0);
  -ms-transform: translate3d(-100%, 0, 0);
  -o-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
	background-color: #e5e6e6;
}



.is-visible .cd-panel-container {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-transition-delay: 0s;
  -moz-transition-delay: 0s;
  transition-delay: 0s;
}

.cd-panel-close {
  position: absolute;
  top: 17px;
  right: 5%;
  height: 26px;
  width: 26px;
	border-radius: 13px;
  display: inline-block;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
	background: rgba(255,255,255,0.25) url(/images/closeb.png) no-repeat center center;
}

@media only screen and (max-width: 420px) {
 .cd-panel-close {
	right: 7%;
}
}