#slider-outer {
	position: absolute;
	width: 740px;
	height: 250px;
}

@media (max-width: 800px) {
	#slider-outer {
		width: calc(100vw - 55px) !important;
		height: 32vw !important;
	}
	#container.inicio {
		width: 100% !important;
		height: 32vw !important;
	}
	#container.inicio > .btn {
		top: calc(16vw - 16px) !important;
	}
	#container > img {
		width: 100% !important;
		height: 32vw !important;
	}
}

#container {
	border: 0;
	position: relative;
}

#container.inicio {
	width: 100%;
	height: 100%;
}

#container.blog {
	width: 740px;
	height: 296px;
}

#container > div {
	width: 100%;
	height: 100%;
	position: absolute;
	overflow: hidden;
    /*Styles for the fade-in fade-out effect */
    -webkit-transition: opacity 1s ease-in;
    -moz-transition: opacity 1s ease-in;
    -o-transition: opacity 1s ease-in;
    opacity: 0;
}
#container > div.fade-out {
    opacity: 0;
}
#container > div.fade-in {
    opacity: 1;
}
#container > div > a > img {
    width: 100%;
    height: 100%;
}

#container > .btn {
    text-align: center;
    position: relative;
	/*top: 100px;*/
    color: #ffffff;
    background: rgba(59, 59, 59, 0.9) none repeat scroll 0% 0%;
    width: 32px;
    height: 32px;
    border-radius: 32px;
    border: 0px none;
    cursor: pointer;
    margin: 0px 5px;
    font-size: 60px;
    font-family: "Arial";
    font-weight: bold;
    line-height: 30px;
    color: #ffffff;
    opacity: 0.5;
    display: inline-block;
    padding: 0 0 0 3px;
    z-index: 1400;
}
#container.inicio > .btn {
	top: 100px;
}
#container.blog > .btn {
	top: 130px;
}
#container > .btn:hover {
	background:#666666;
	color: #000000;
}
#container > .btn:first-of-type {
	/* Turn bullet-arrow (&#8227;) horizontally */
	-webkit-transform: scale(-1,1);
	-ms-transform: scale(-1,1);
	transform: scale(-1,1);
}
#container > .btn:last-of-type {
	float: right;
}
/* SECCION PUBLICACIONES */
#pubcontainer {
    width: 563px;
    height: 380px;
    border: 0;
    position: relative;
}
#pubcontainer > img {
    width: 100%;
    height: 100%;
    position: absolute;
    overflow: hidden;
    /*Styles for the fade-in fade-out effect */
    -webkit-transition: opacity 1s ease-in;
    -moz-transition: opacity 1s ease-in;
    -o-transition: opacity 1s ease-in;
    opacity: 0;
}
#pubcontainer > img.fade-out {
    opacity: 0;
}
#pubcontainer > img.fade-in {
    opacity: 1;
}
#pubcontainer > .btn {
    text-align: center;
    position: relative;
    top: 174px;
    color: #FFF;
    background: rgba(0,0,0, 0.9) none repeat scroll 0% 0%;
    width: 32px;
    border-radius: 32px;
    border: 0px none;
    cursor: pointer;
    margin: 0px 5px;
    font-size: 60px;
    font-family: "Arial";
    font-weight: bold;
    line-height: 30px;
    color: #FFF;
    opacity: 0.5;
    display: inline-block;
    padding: 0 0 0 3px;
}
#pubcontainer > .btn:hover {
    background:#666666;
    color: #000000;
}
#pubcontainer > .btn:first-of-type {
    /* Turn bullet-arrow (&#8227;) horizontally */
    -webkit-transform: scale(-1,1);
    -ms-transform: scale(-1,1);
    transform: scale(-1,1);
}
#pubcontainer > .btn:last-of-type {
    float: right;
}