body{
	margin: 0;
	padding: 0;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background:url(css-images/b1.jpg);
	background-size: cover;
	background-attachment: fixed;
}

.backbody {
	background-color: rgba(255, 255, 255, 0.7);
	width:930px;
	margin:0 auto 0 auto;
	height: 100%;
	overflow:hidden;
	box-shadow: 0px 0px 10px #000;
}
.main-wrapper {
	width: 900px;
	margin: 15px;
	margin-right: auto;
}

header {
	background: #ffffff; 
	background: -moz-linear-gradient(top, #ffffff 0%, #e5e5e5 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(100%,#e5e5e5)); 
	background: -webkit-linear-gradient(top, #ffffff 0%,#e5e5e5 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, #ffffff 0%,#e5e5e5 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top, #ffffff 0%,#e5e5e5 100%); /* IE10+ */
	background: linear-gradient(to bottom, #ffffff 0%,#e5e5e5 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#e5e5e5',GradientType=0 ); 
	height: 95px;
	padding: 0;
	margin: auto;
	width: 870px;
	box-shadow: 0px 5px 5px #848484;
}
.logo {
	background:url(css-images/logo.png) no-repeat;
	position: relative;
	top: 20px;
	left: 20px;
	float: left;
	height:100%;
	width:250px;
}
.titulos {
	position: relative;
	top: 3px;
	left: 20px;
	float: left;
	height:50%;
	width:500px;
}
h1 {
	color: DimGray;
	-webkit-text-stroke: 1.5px White;
	text-shadow: 0.1em 0.1em 0.2em black;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 35px;
	position: relative;
	padding-left: 0px;
	word-spacing: 7px;
	line-height: normal;
	font-weight: bold;
	margin:0 0 5px 0;
	padding:0px;
	}
h2 {
	text-shadow: 1px 2px 3px #666;
	color: #00786c;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 20px;
	position: relative;
	padding-left: 0px;
	word-spacing: 10px;
	line-height: normal;
	font-weight: bold;
	margin:0px;
	padding:0px;
	}
	
/**************************************************************************************************/
/*MENU*/
/**************************************************************************************************/

/* MENU */

.mi-menu  {
	width:850px;
    -webkit-border-bottom-right-radius: 5px;
	-webkit-border-bottom-left-radius: 5px;
	-moz-border-radius-bottomright: 5px;
	-moz-border-radius-bottomleft: 5px;
	border-bottom-right-radius: 5px;
	border-bottom-left-radius: 5px;
    list-style-type: none;
    margin: 0 auto; /* si queremos centrarlo */
    padding: 0;
    /* la altura y su ancho dependerán de los textos */
    height: 40px; 
    background: #00726d; /* Old browsers */
background: -moz-linear-gradient(top,  #00726d 0%, #00a068 49%, #008d6b 51%, #58a084 99%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#00726d), color-stop(49%,#00a068), color-stop(51%,#008d6b), color-stop(99%,#58a084)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top,  #00726d 0%,#00a068 49%,#008d6b 51%,#58a084 99%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top,  #00726d 0%,#00a068 49%,#008d6b 51%,#58a084 99%); /* Opera 11.10+ */
background: -ms-linear-gradient(top,  #00726d 0%,#00a068 49%,#008d6b 51%,#58a084 99%); /* IE10+ */
background: linear-gradient(to bottom,  #00726d 0%,#00a068 49%,#008d6b 51%,#58a084 99%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00726d', endColorstr='#58a084',GradientType=0 ); /* IE6-9 */
  }

  /* si es necesario, evitamos que Blogger de problemas con los saltos de línea cuando escribimos el HTML */
  .mi-menu  br { display:none; }

  /* cada item del menu */
  .mi-menu  li {
    display: block;
    float: left; /* la lista se ve horizontal */
    height: 40px;
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
  }
  .mi-menu li a {
	border-left: 1px solid #fff;
	border-right: 1px solid #8e5203;
	color: #FFF;
	display: block;
	font-family: Tahoma;
	font-size: 13px;
	font-weight: bold;
	line-height: 28px;
	padding: 0 14px;
	margin: 6px 0;
	text-decoration: none;
	/* animamos el cambio de color de los textos */
	-webkit-transition: color .2s ease-in-out;
	-moz-transition: color .2s ease-in-out;
	-o-transition: color .2s ease-in-out;
	-ms-transition: color .2s ease-in-out;
	transition: color .2s ease-in-out;
  }
  /* eliminamos los bordes del primer y el último */
  .mi-menu li:first-child a { border-left: none; }
  .mi-menu li:last-child a{ border-right: none; }
  /* efecto hover cambia el color */
  .mi-menu li:hover > a {
	color: #CCC;
}

  /* los submenús */
  .mi-menu ul {
    border-radius: 0 0 5px 5px;
    left: 0;
    margin: 0;
    opacity: 0; /* no son visibles */
    position: absolute;
    top: 40px; /* se ubican debajo del enlace principal */
    /* el color de fondo */
    background: #222;
    background: -moz-linear-gradient(#222,#555);
    background: -webkit-linear-gradient(#22,#555);
    background: -o-linear-gradient(#222,#555);
    background: -ms-linear-gradient(#222,#555);
    background: linear-gradient(#222,#555);
    /* animamos su visibildiad */
    -moz-transition: opacity .25s ease .1s;
    -webkit-transition: opacity .25s ease .1s;
    -o-transition: opacity .25s ease .1s;
    -ms-transition: opacity .25s ease .1s;
    transition: opacity .25s ease .1s;
  }
  /* son visibes al poner el cursor encima */
  .mi-menu li:hover > ul { opacity: 1; }

   /* cada un ode los items de los submenús */
  .mi-menu ul li {
    height: 0; /* no son visibles */
    overflow: hidden;
    padding: 0;
    /* animamos su visibildiad */
    -moz-transition: height .25s ease .1s;
    -webkit-transition: height .25s ease .1s;
    -o-transition: height .25s ease .1s;
    -ms-transition: height .25s ease .1s;
    transition: height .25s ease .1s;
  }
  .mi-menu li:hover > ul li {
    height: 36px; /* los mostramos */
    overflow: visible;
    padding: 0;
  }
  .mi-menu ul li a {
	border: none;
	border-bottom: 1px solid #111;
	margin: 0;
	width: 395px;
	padding-top: 5px;
	padding-right: 1px;
	padding-bottom: 5px;
	padding-left: 1px;
  }
  /* el último n otiene un borde */
  .mi-menu ul li:last-child a { border: none; }
  
/**************************************************************************************************/
/*CONTENIDOS*/
/**************************************************************************************************/
.content-wrapper {
	margin: 0 auto;
	padding: 0;
	width:870px;
	
}
.content {
	border-radius: 10px;
	height: 100%;
	text-align: justify;
	padding-top: 10px;
	background-image: url(css-images/back_content.png);
	background-repeat:repeat-y;
	margin-top: 10px;
	border: 1px solid #CCC;
	box-shadow: 0px 0px 10px #888888;
	z-index:1;
}

/*************************BARRA CARGA SLIDES***************************************/

/* CSS Document */
.cargador{float:right;margin:25px 12px 10px 10px;padding:0;width:210px; }/*Cambio*/
.cargador span{font-size:12px;margin:0 0 0 5px;padding:0; width:200px;}
div#precargador {
  /*border: 1px solid #0099CC;*/
	margin-left: 10px; 
   /* margin: 0 auto;*/
    /*width: 120px;*/
}
p#progressnum {
color: #ccc;
    font-size: 14px;
    height: 12px;
    margin: 5px;    
}
#progressbar{
	border: 2px solid #00736d;
    /*padding: 4px;*/
    background-color: #ffffff;
    border-radius: 8px;
    /*box-shadow: inset 0 1px 2px #333, 0 1px 0 #777;*/
    margin: 6px 0 0 0;
    width: 170px;
	height: 5px;
	float: right;
}
div#precargador input {
    background: #eee;
    border: none;
    border-radius: 8px;
    background: #444;
    box-shadow: 0 1px 1px #222 inset, 0 1px 0 #999;
    color: #777;
    cursor: pointer;
}
div#precargador input:hover {
    background: #666;
    color: #333;
}
#indicador{
	box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5) inset, 0 -1px 0 rgba(0, 0, 0, 0.8) inset, 0 0 2px black;
	/*border: 1px solid rgba(0, 0, 0, 0.5);*/
	border-radius: 4px;
	box-shadow: 0 1px 0 rgba(255, 255, 255, 0.2);
	color: #009969;
	height: 5px;
	margin-right: 10px;
	width: 170px;
	background-color: #009969;
	background-image: repeating-linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.5) 0px,
      rgba(255, 255, 255, 0.5) 0px,
      rgba(255, 255, 255, 0) 7px,
      rgba(255, 255, 255, 0) 14px),
      linear-gradient(
      rgba(255, 255, 255, 0.1) 50%,
      rgba(255, 255, 255, 0) 60%),
      none;
	/*------ PARA CHROME Y SAFARI -----*/
	background: -webkit-repeating-linear-gradient(
      135deg,
      rgba(255,255,255,.5) 0,
      rgba(255,255,255,.5) 7px,
      rgba(255,255,255,0) 7px,
      rgba(255,255,255,0) 14px
    ),
    -webkit-linear-gradient(
      rgba(255,255,255,.1) 50%,
      rgba(255,255,255,0) 60%
    ),
    #009969;
	/*------ PARA FIREFOX----*/
	background: -moz-repeating-linear-gradient(
      135deg,
      rgba(255,255,255,.5) 0,
      rgba(255,255,255,.5) 7px,
      rgba(255,255,255,0) 7px,
      rgba(255,255,255,0) 14px
    ),
    -moz-linear-gradient(
      rgba(255,255,255,.1) 50%,
      rgba(255,255,255,0) 60%
    ),
    #009969;
	/*------ PARA OPERA----*/
	background: -o-repeating-linear-gradient(
      135deg,
      rgba(255,255,255,.5) 0,
      rgba(255,255,255,.5) 7px,
      rgba(255,255,255,0) 7px,
      rgba(255,255,255,0) 14px
    ),
    -o-linear-gradient(
      rgba(255,255,255,.1) 50%,
      rgba(255,255,255,0) 60%
    ),  #009969;
}
- See more at: http://www.tutosytips.com/barra-de-progreso-con-css3-animado-con-un-poco-de-javascript/#sthash.Ow5L1lxQ.dpuf


/***************************************SHADOWBOX********************************************/
#sb-title-inner,#sb-info-inner,#sb-loading-inner,div.sb-message{font-family:"HelveticaNeue-Light","Helvetica Neue",Helvetica,Arial,sans-serif;font-weight:200;color:#fff;}
#sb-container{position:fixed;margin:0;padding:0;top:0;left:0;z-index:999;text-align:left;visibility:hidden;display:none;}
#sb-overlay{position:relative;height:100%;width:100%;}
#sb-wrapper{position:absolute;visibility:hidden;width:100px;}
#sb-wrapper-inner{position:relative;border:1px solid #303030;overflow:hidden;height:100px;}
#sb-body{position:relative;height:100%;}
#sb-body-inner{position:absolute;height:100%;width:100%;}
#sb-player.html{height:100%;overflow:auto;}
#sb-body img{border:none;}
#sb-loading{position:relative;height:100%;}
#sb-loading-inner{position:absolute;font-size:14px;line-height:24px;height:24px;top:50%;margin-top:-12px;width:100%;text-align:center;}
#sb-loading-inner span{background:url(loading.gif) no-repeat;padding-left:34px;display:inline-block;}
#sb-body,#sb-loading{background-color:#060606;}
#sb-title,#sb-info{position:relative;margin:0;padding:0;overflow:hidden;}
#sb-title,#sb-title-inner{height:26px;line-height:26px;}
#sb-title-inner{font-size:16px;}
#sb-info,#sb-info-inner{height:20px;line-height:20px;}
#sb-info-inner{font-size:12px;}
#sb-nav{float:right;height:16px;padding:2px 0;width:45%;}
#sb-nav a{display:block;float:right;height:16px;width:16px;margin-left:3px;cursor:pointer;background-repeat:no-repeat;}
#sb-nav-close{background-image:url(close.png);}
#sb-nav-next{background-image:url(next.png);}
#sb-nav-previous{background-image:url(previous.png);}
#sb-nav-play{background-image:url(play.png);}
#sb-nav-pause{background-image:url(pause.png);}
#sb-counter{float:left;width:45%;}
#sb-counter a{padding:0 4px 0 0;text-decoration:none;cursor:pointer;color:#fff;}
#sb-counter a.sb-counter-current{text-decoration:underline;}
div.sb-message{font-size:12px;padding:10px;text-align:center;}
div.sb-message a:link,div.sb-message a:visited{color:#fff;text-decoration:underline;}

/**************************************ESTILO BARRA NAV***********************************************/
#nav-anterior{
background-image: url('css-images/prev.png');
position:relative;
cursor: pointer;
height: 77px;
width: 144px;
left:-122px;

}
#nav-anterior_vacio{
background-image: url('css-images/prev_vacio.png');
position:relative;
height: 77px;
width: 144px;
left:-122px;

}
.navegacion{
background: url("css-images/back_nav.png");
background-repeat:no-repeat;
	bottom:0px;
	margin: 0px auto;
	/*position: absolute;*/
	position:relative;
	float:left;
	height: 77px;
	width: 870px;	
}

#nav-siguiente{
background-image: url('css-images/next.png');
position:relative;
cursor: pointer;
height: 77px;
width: 144px;
top:-78px;
right:-602px;
}
#nav-siguiente_vacio{
background-image: url('css-images/next_vacio.png');
position:relative;
height: 77px;
width: 144px;
top:-78px;
right:-602px;
}
.nav-int{
height: 90px;
}
.paginanum{
	color:#533503;
font-weight: bold;
display: inline-block;
font-size: 17px;
font-weight: bold;
position:relative;
left: 285px;
bottom: 35px;
float:left;
}


