
/* GLOBALS */

*,
*:after,
*:before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

.clearfix:after {
    content: "";
    display: table;
    clear: both;
}

.form-1 {
    /* Size & position */
    width: 300px;
    margin: 60px auto 10px;
    padding: 10px;
    position: relative; /* For the submit button positioning */

    /* Styles */
    box-shadow: 
        0 0 1px rgba(0, 0, 0, 0.3), 
        0 3px 7px rgba(0, 0, 0, 0.3), 
        inset 0 1px rgba(255,255,255,1),
        inset 0 -3px 2px rgba(0,0,0,0.25);
    border-radius: 5px;
    background: white; /* Fallback */
    background: -moz-linear-gradient(#eeefef, #ffffff 10%);
    background: -ms-linear-gradient(#eeefef, #ffffff 10%);
    background: -o-linear-gradient(#eeefef, #ffffff 10%);
    background: -webkit-gradient(linear, 0 0, 0 100%, from(#eeefef), color-stop(0.1, #ffffff));
    background: -webkit-linear-gradient(#eeefef, #ffffff 10%);
    background: linear-gradient(#eeefef, #ffffff 10%);
}

.form-1 .field {
    position: relative; /* For the icon positioning */
}

.form-1 .field i {
    /* Size and position */
    left: 0px;
    top: 0px;
    position: absolute;
    height: 36px;
    width: 36px;

    /* Line */
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 1px 0 0 rgba(255, 255, 255, 0.7);

    /* Styles */
    color: #777777;
    text-align: center;
    line-height: 42px;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    pointer-events: none;
}

.form-1 input[type=text],
.form-1 input[type=password] {
    font-family: 'Lato', Calibri, Arial, sans-serif;
    font-size: 1em;
    font-weight: 400;
    text-shadow: 0 1px 0 rgba(255,255,255,0.8);
    /* Size and position */
    width: 100%;
    padding: 10px 18px 10px 45px;

    /* Styles */
    border: none; /* Remove the default border */
    box-shadow: 
        inset 0 0 5px rgba(0,0,0,0.1),
        inset 0 3px 2px rgba(0,0,0,0.1);
    border-radius: 3px;
    background: #f9f9f9;
    color: #777;
    -webkit-transition: color 0.3s ease-out;
    -moz-transition: color 0.3s ease-out;
    -ms-transition: color 0.3s ease-out;
    -o-transition: color 0.3s ease-out;
    transition: color 0.3s ease-out;
}

.form-1 input[type=text] {
    margin-bottom: 10px;
}

.form-1 input[type=text]:hover ~ i,
.form-1 input[type=password]:hover ~ i {
    color: #52cfeb;
}

.form-1 input[type=text]:focus ~ i,
.form-1 input[type=password]:focus ~ i {
    color: #42A2BC;
}

.form-1 input[type=text]:focus,
.form-1 input[type=password]:focus,
.form-1 button[type=submit]:focus {
    outline: none;
}

.form-1 .submit {
    /* Size and position */
    width: 65px;
    height: 65px;
    position: absolute;
    top: 17px;
    right: -25px;
    padding: 10px;
    z-index: 2;

    /* Styles */
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 
        0 0 2px rgba(0,0,0,0.1),
        0 3px 2px rgba(0,0,0,0.1),
        inset 0 -3px 2px rgba(0,0,0,0.2);
}

.form-1 .submit:after {
    /* Size and position */
    content: "";
    width: 10px;
    height: 10px;
    position: absolute;
    top: -2px;
    left: 30px;

    /* Styles */
    background: #ffffff;
    
    /* Other masks trick */
    box-shadow: 0 62px white, -32px 31px white;
}

.form-1 button {
    /* Size and position */
    width: 100%;
    height: 100%;
    margin-top: -1px;

    /* Icon styles */
    font-size: 1.4em;
    line-height: 1.75;
    color: white;

    /* Styles */
    border: none; /* Remove the default border */
    border-radius: inherit;
    background: #52cfeb; /* Fallback */
    background: -moz-linear-gradient(#52cfeb, #42A2BC);
    background: -ms-linear-gradient(#52cfeb, #42A2BC);
    background: -o-linear-gradient(#52cfeb, #42A2BC);
    background: -webkit-gradient(linear, 0 0, 0 100%, from(#52cfeb), to(#42A2BC));
    background: -webkit-linear-gradient(#52cfeb, #42A2BC);
    background: linear-gradient(#52cfeb, #42A2BC);
    box-shadow: 
        inset 0 1px 0 rgba(255,255,255,0.3),
        0 1px 2px rgba(0,0,0,0.35),
        inset 0 3px 2px rgba(255,255,255,0.2),
        inset 0 -3px 2px rgba(0,0,0,0.1);

    cursor: pointer;
}

.form-1 button:hover,
.form-1 button[type=submit]:focus {
    background: #52cfeb;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.form-1 button:active {
    background: #42A2BC;
    box-shadow: 
        inset 0 0 5px rgba(0,0,0,0.3),
        inset 0 3px 4px rgba(0,0,0,0.3);
}


/* Demo 2 */

.form-2 {
    /* Size and position */
	min-width:300px;
    width: 30%;
    margin: 40px auto 10px;
    padding: 15px;
    position: relative;

    /* Styles */
    background: #fffaf6;
    border-radius: 4px;
    color: #7e7975;
    box-shadow:
        0 2px 2px rgba(0,0,0,0.2),        
        0 1px 5px rgba(0,0,0,0.2),        
        0 0 0 12px rgba(255,255,255,0.4); 
}



.form-2 h1 {
    font-size: 1.2em;
    font-weight: bold;
    color: #bdb5aa;
    padding-bottom: 8px;
    border-bottom: 1px solid #EBE6E2;
    text-shadow: 0 2px 0 rgba(255,255,255,0.8);
    box-shadow: 0 1px 0 rgba(255,255,255,0.8);
}

.form-2 h1 .log-in,
.form-2 h1 .sign-up {
    display: inline-block;
    text-transform: uppercase;
}

.form-2 h1 .log-in {
    color: #6c6763;
    padding-right: 2px;
}

.form-2 h1 .sign-up {
    color: #ffb347;
    padding-left: 2px;
}

.form-2 .float {
    width: 50%;
    float: left;
    padding-top: 15px;
    border-top: 1px solid rgba(255,255,255,1);
}

.form-2 .float:first-of-type {
    padding-right: 5px;
}

.form-2 .float:last-of-type {
    padding-left: 5px;
}

.form-2 label {
    display: block;
    padding: 0 0 5px 2px;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: 100;
    text-shadow: 0 1px 0 rgba(255,255,255,0.8);
    font-size: .6em;
}

.form-2 label i {
    margin-right: 5px; /* Gap between icon and text */
    display: inline-block;
    width: 10px;
}

.form-2 input[type=text],
.form-2 input[type=password] {
    font-family: 'Lato', Calibri, Arial, sans-serif;
    font-size: .6em;
    font-weight: 400;
    display: block;
    width: 100%;
    padding: 5px;
    margin-bottom: 5px;
    border: 3px solid #ebe6e2;
    border-radius: 5px;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.form-2 input[type=text]:hover,
.form-2 input[type=password]:hover {
    border-color: #CCC;
}

.form-2 label:hover ~ input {
    border-color: #CCC;
}

.form-2 input[type=text]:focus,
.form-2 input[type=password]:focus {
    border-color: #BBB;
    outline: none; /* Remove Chrome's outline */
}

.form-2 input[type=submit],
.form-2 .olvide {
    /* Size and position */
    width: 100%;
    height: 38px;
    float: left;
    position: relative;

    /* Styles */
    box-shadow: inset 0 1px rgba(255,255,255,0.3);
    border-radius: 3px;
    cursor: pointer;

    /* Font styles */
    font-family: 'Lato', Calibri, Arial, sans-serif;
    font-size: 1em;
    line-height: 38px; /* Same as height */
    text-align: center;
    font-weight: bold;
}

.form-2 input[type=submit] {
    margin-top: 2%;
    background: #fbd568; /* Fallback */
    background: -moz-linear-gradient(#fbd568, #ffb347);
    background: -ms-linear-gradient(#fbd568, #ffb347);
    background: -o-linear-gradient(#fbd568, #ffb347);
    background: -webkit-gradient(linear, 0 0, 0 100%, from(#fbd568), to(#ffb347));
    background: -webkit-linear-gradient(#fbd568, #ffb347);
    background: linear-gradient(#fbd568, #ffb347);
    border: 1px solid #f4ab4c;
    color: #996319;
    text-shadow: 0 1px rgba(255,255,255,0.3);
}

.form-2 .olvide {
    margin-right: 1%;
    background: #34a5cf; /* Fallback */
    background: -moz-linear-gradient(#34a5cf, #2a8ac4);
    background: -ms-linear-gradient(#34a5cf, #2a8ac4);
    background: -o-linear-gradient(#34a5cf, #2a8ac4);
    background: -webkit-gradient(linear, 0 0, 0 100%, from(#34a5cf), to(#2a8ac4));
    background: -webkit-linear-gradient(#34a5cf, #2a8ac4);
    background: linear-gradient(#34a5cf, #2a8ac4);
    border: 1px solid #2b8bc7;
    color: #ffffff;
    text-shadow: 0 -1px rgba(0,0,0,0.3);
    text-decoration: none;
}

.form-2 input[type=submit]:hover,
.form-2 .olvide:hover {
    box-shadow: 
        inset 0 1px rgba(255,255,255,0.3), 
        inset 0 20px 40px rgba(255,255,255,0.15);
}

.form-2 input[type=submit]:active,
.form-2 .olvide:active{
    top: 1px;
}

.form-3 {
    /* Size and position */
	min-width:300px;
    width: 30%;
    margin: 80px auto 10px;
    padding: 15px;
    position: relative;

    /* Styles */
    background: #fffaf6;
    border-radius: 4px;
    color: #7e7975;
    box-shadow:
        0 2px 2px rgba(0,0,0,0.2),        
        0 1px 5px rgba(0,0,0,0.2),        
        0 0 0 12px rgba(255,255,255,0.4); 
}

/* Fallback fro broswers that don't support box shadows */
.no-boxshadow .form-2 input[type=submit]:hover {
    background: #ffb347;
}

.no-boxshadow .form-2 .olvide:hover {
    background: #2a8ac4;
}

.form-2 p:last-of-type {
    clear: both;    
}

.form-2 .opt {
    text-align: right;
    margin-right: 3px;
}

.form-2 label[for=showPassword] {
    display: inline-block;
    margin-bottom: 10px;
    font-size: .8em;
    font-weight: 400;
    text-transform: capitalize;
}

.form-2 input[type=checkbox] {
    vertical-align: middle;
    margin: -1px 5px 0 1px;
}



/* Demo 2a */

.form-2a {
    /* Size and position */
    width: 300px;
    margin: 60px auto 10px;
    padding: 20px;
    position: relative;

    /* Styles */
	background: #89d7eb;
    border-radius: 4px;
    color: #7e7975;
    box-shadow:
        0 2px 2px rgba(0,0,0,0.2),        
        0 1px 5px rgba(0,0,0,0.2),        
        0 0 0 12px rgba(255,255,255,0.4); 
	background-color: #e3e3e3;
 background: -moz-linear-gradient(top, #65b6cf , #2c2c2c);
 background: -webkit-gradient(linear, 0 0, 0 100%, from(#65b6cf),  to(#2c2c2c));
}

.form-2a h1 {
    font-size: 1.2em;
    font-weight: bold;
    
}

.form-2a h1 .log-in,
.form-2a h1 .sign-up {
    display: inline-block;
    text-transform: uppercase;
}

.form-2a h1 .log-in {
    color: #6c6763;
    padding-right: 2px;
}

.form-2a h1 .sign-up {
    color: #ffb347;
    padding-left: 2px;
}

.form-2a .float {
    width: 50%;
    float: left;
    padding-top: 15px;
    border-top: 1px solid rgba(255,255,255,1);
}

.form-2a .float:first-of-type {
    padding-right: 5px;
}

.form-2a .float:last-of-type {
    padding-left: 5px;
}

.form-2a label {
    display: block;
    padding: 0 0 5px 2px;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: 100;
    
    font-size: .8em;
}

.form-2a label i {
    margin-right: 5px; /* Gap between icon and text */
    display: inline-block;
    width: 10px;
}

.form-2a input[type=text],
.form-2a input[type=password] {
    font-family: 'Lato', Calibri, Arial, sans-serif;
    font-size: .6em;
    font-weight: 400;
    display: block;
    width: 100%;
    padding: 5px;
    margin-bottom: 5px;
    border: 3px solid #ebe6e2;
    border-radius: 5px;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.form-2a input[type=text]:hover,
.form-2a input[type=password]:hover {
    border-color: #CCC;
}

.form-2a label:hover ~ input {
    border-color: #CCC;
}

.form-2a input[type=text]:focus,
.form-2a input[type=password]:focus {
    border-color: #BBB;
    outline: none; /* Remove Chrome's outline */
}

.form-2a input[type=submit],
.form-2a .olvide {
    /* Size and position */
    width: 49%;
    height: 38px;
    float: left;
    position: relative;

    /* Styles */
    box-shadow: inset 0 1px rgba(255,255,255,0.3);
    border-radius: 3px;
    cursor: pointer;

    /* Font styles */
    font-family: 'Lato', Calibri, Arial, sans-serif;
    font-size: .9em;
    line-height: 38px; /* Same as height */
    text-align: center;
    font-weight: bold;
}

.form-2a input[type=submit] {
    margin-left: 1%;
    background: #fbd568; /* Fallback */
    background: -moz-linear-gradient(#fbd568, #ffb347);
    background: -ms-linear-gradient(#fbd568, #ffb347);
    background: -o-linear-gradient(#fbd568, #ffb347);
    background: -webkit-gradient(linear, 0 0, 0 100%, from(#fbd568), to(#ffb347));
    background: -webkit-linear-gradient(#fbd568, #ffb347);
    background: linear-gradient(#fbd568, #ffb347);
    border: 1px solid #f4ab4c;
    color: #996319;
    text-shadow: 0 1px rgba(255,255,255,0.3);
}

.form-2a .olvide {
    margin-right: 1%;
    background: #34a5cf; /* Fallback */
    background: -moz-linear-gradient(#34a5cf, #2a8ac4);
    background: -ms-linear-gradient(#34a5cf, #2a8ac4);
    background: -o-linear-gradient(#34a5cf, #2a8ac4);
    background: -webkit-gradient(linear, 0 0, 0 100%, from(#34a5cf), to(#2a8ac4));
    background: -webkit-linear-gradient(#34a5cf, #2a8ac4);
    background: linear-gradient(#34a5cf, #2a8ac4);
    border: 1px solid #2b8bc7;
    color: #ffffff;
    text-shadow: 0 -1px rgba(0,0,0,0.3);
    text-decoration: none;
}

.form-2a input[type=submit]:hover,
.form-2a .olvide:hover {
    box-shadow: 
        inset 0 1px rgba(255,255,255,0.3), 
        inset 0 20px 40px rgba(255,255,255,0.15);
}

.form-2a input[type=submit]:active,
.form-2a .olvide:active{
    top: 1px;
}

/* Fallback fro broswers that don't support box shadows */
.no-boxshadow .form-2a input[type=submit]:hover {
    background: #ffb347;
}

.no-boxshadow .form-2a .olvide:hover {
    background: #2a8ac4;
}

.form-2a p:last-of-type {
    clear: both;    
}

.form-2a .opt {
    text-align: right;
    margin-right: 3px;
}

.form-2a label[for=showPassword] {
    display: inline-block;
    margin-bottom: 10px;
    font-size: .7em;
    font-weight: 400;
    text-transform: capitalize;
}

.form-2a input[type=checkbox] {
    vertical-align: middle;
    margin: -1px 5px 0 1px;
}

/*tab galeria styles*/

/* Tabs container */
.r-tabs {
	position: relative;
	background-color: #5e84f5;
	padding: 20px 0px 0px;
	overflow: hidden;
}

/* Tab anchor no active*/
.r-tabs .r-tabs-nav .r-tabs-anchor {
	display: inline-block;
	padding: 10px 12px;
	text-decoration: none;
	text-shadow: 0 1px rgba(0, 0, 0, 0.4);
	font-family: Arial, Helvetica, Verdana, sans-serif;
	font-size: 16px;
	font-weight: bold;
	color: #5e84f5;
	background-color: #fff;
}


/*tap Active state tab anchor */
.r-tabs .r-tabs-nav .r-tabs-state-active .r-tabs-anchor {
	color: #fff;
	background-color: #2a59e7;
	text-shadow: none;	
	border: 50px;
}

/* Accordion anchor */
.r-tabs .r-tabs-accordion-title .r-tabs-anchor {
	display: block;
	padding: 10px;
	background-color: #00c5ad;
	color: #fff;
	font-weight: bold;
	text-decoration: none;
	text-shadow: 0 1px rgba(0, 0, 0, 0.4);
	font-size: 14px;
	border-top-right-radius: 4px;
	border-top-left-radius: 4px;
}
.cnt-like{
	z-index: 100; 
	position: absolute;  
	bottom: 20px;
	height: 65px;
    overflow: hidden; 
}
.contador{
	/*
	position: absolute; 
	top:50%;*/ 
	margin-top: 18px;
	float:left;	
	height: 50%;
	background-image: url(../imagenes/pagina6/cuadro_ama.png); 
	background-repeat: no-repeat; 
	text-align: center;
    color: white;
    font-weight: bold;
    text-shadow: 1px 1px 1px #cf6c02;
}
.margen-img{
	margin: 15px auto;
	background-image: url("../imagenes/pagina5/pleca_hrz.png");
    background-position: center center;
    background-size: cover;
}

@media (max-width: 770px){
	.vista-m{
		width:100%;
	}
	#tab-1{
		overflow: hidden;
	}
	.cnt-like {
	    bottom: -9px;
	    height: 65px;
	    overflow: unset;
	    position: absolute;
	    z-index: 100;
	}
	.contador{
		width: 58px;
	}
	.cnt-like {
	    bottom: -10px;
	    height: 65px;
	    overflow: unset;
	    position: absolute;
	    z-index: 100;
	}
}

.ctn-suenos{
	z-index: 50; 
	position: unset;
	overflow: hidden; 
	widht:100%;
}
/*vista 2
.colum-ctn2{
	position: relative; 
	top: 15px; 
	z-index: 60;
}
.colum2{
	background-size: cover;
	background-repeat: no-repeat;
	height: 360px;
    margin: 0px 1%;
    width: 48% !important;
}*/

@media(min-height: 1100px){
	.scroll{
	    height: 700px !important;
	    overflow-y: scroll;
	    position: relative;
	    top: 170px !important;
	    z-index: 70;
	}
	.medida{
		height: 630px !important;
		top: 200px !important;
	}
	/*.colum{
		background-repeat: no-repeat;
	    background-size: cover;
	    height: 100px !important;
	    margin: 0 5px;
	    width: 31.9%;	
	}*/
	.ctn-pleca{
		background-image: url(../imagenes/pagina5/pleca_hrz.png); 
		background-size: cover; 
		background-repeat: round;
		margin: 5px 0px; 
		overflow:hidden;
		padding: 0 0 0 15%;
		font-size: 35px;
	}
	.ctn{
		padding: 0 8% 0 10% !important; 
	}
	.tabAlto{
		height: 1000px !important;
	}
	/*.colum2{
	    height: 850px !important;
	    margin: 10px 1%;
	    width: 48% !important;
	}*/
}
@media(min-height: 1300px){
	.scroll{
	    height: 800px !important;
	    overflow-y: scroll;
	    position: relative;
	    top: 200px !important;
	    z-index: 70;
	}
	.medida{
		height: 670px !important;
		top: 270px !important;
	}
	/*.colum{
		background-repeat: no-repeat;
	    background-size: cover;
	    height: 1000px !important;
	    margin: 0 5px;
	    width: 31.9%;	
	}*/
	.ctn-pleca{
		background-image: url(../imagenes/pagina5/pleca_hrz.png); 
		background-size: cover; 
		background-repeat: round;
		margin: 5px 0px; 
		overflow:hidden;
		padding: 0 0 0 15%;
		font-size: 40px;
	}
	.ctn{
		padding: 0 8% 0 10% !important; 
	}
	.tabAlto{
		height: 950px !important;
	}
}
@media(min-width: 1040px){
	.scroll{
	    height: 249px;
	    overflow-y: scroll;
	    position: relative;
	    top: 50px;
	    z-index: 70;
	}
	.medida{
		height: 240px;
		top: 85px;
	}
	.ctn-pleca{
		background-image: url(../imagenes/pagina5/pleca_hrz.png); 
		background-size: cover; 
		background-repeat: round;
		margin: 5px 0px; 
		overflow:hidden;
		padding: 0 0 0 15%;
	}
	.ctn{
		padding: 0 8% 0 10% !important; 
	}
}
@media (min-width: 938px) and (max-width: 1039px){
	.scroll{
	    height: 245px;
	    overflow-y: scroll;
	    position: relative;
	    top: 33px;
	    z-index: 70;
	}
	.medida{
		height: 230px;
		top: 80px;
	}
	.ctn-pleca{
		background: url(../imagenes/pagina5/pleca_hrz.png) no-repeat scroll 50% 50% / cover; 
		/*background-size: contain; 
		background-repeat: round;*/
		margin: 5px 0px; 
		overflow:hidden;
		padding: 0 0 0 15%;
		width:90%;
	}
	.ctn{
		padding: 0 8% 0 10% !important;
		/*background-size: initial;*/ 
	}	
}
@media (min-width: 870px) and (max-width: 937px){
	.scroll{
	    height: 225px;
	    overflow-y: scroll;
	    position: relative;
	    top: 26px;
	    z-index: 70;
	}
	.medida{
		height: 275px;
		top: 75px;
	}
	.ctn-pleca{
		background-image: url(../imagenes/pagina5/pleca_hrz.png); 
		background-size: contain; 
		background-repeat: round;
		margin: 5px 0px; 
		overflow:hidden;
		padding: 0 0 0 10%;
	}	
}
@media (min-width: 790px) and (max-width: 869px){
	.scroll{
	    height: 200px;
	    overflow-y: scroll;
	    position: relative;
	    top: 20px;
	    z-index: 70;
	}
	.medida{
		height: 280px;
		top: 70px;
	}
	.ctn-pleca{
		background-image: url(../imagenes/pagina5/pleca_hrz.png); 
		background-size: contain; 
		background-repeat: round;
		margin: 5px 0px; 
		overflow:hidden;
	}	
}
@media (max-width: 789px){
	.scroll{
	    height: 250px;
	    overflow-y: scroll;
	    position: relative;
	    top: 100px;
	    z-index: 70;
	}
	.medida{
		height: 265px;
		top: 40px;
	}
	.ctn-pleca{
		background-image: url(../imagenes/pagina5/pleca_hrz.png); 
		background-size: cover; 
		background-repeat: round;
		margin: 5px 0px; 
		overflow:hidden;
		padding: 0 5% 0 15%;
	}	
}
@media (max-width: 570px){
	.medida{
		height: 220px !important;
		top: 28px !important;
	}
}
@media (max-width: 460px){
	
	.scroll{
	    height: 260px;
	    overflow-y: scroll;
	    position: relative;
	    top: 75px;
	    z-index: 70;
	}
	.medida{
		height: 220px !important;
		top: 50px !important;
	}
	.ctn-pleca{
		background-image: url(../imagenes/pagina5/pleca_hrz.png); 
		background-size: cover; 
		background-repeat: round;
		margin: 5px 0px; 
		overflow:hidden;
	}	
}
.colum-ctn{
	position: relative; 
	top: 10px; 
	z-index: 60;
	
}
.like{
	z-index: 150; 
	/*position: absolute;*/ 
	cursor: pointer;
	float:left;
}
.img-bimestre{
	position: absolute;
    top: 36px;
    z-index: 150;
}
@media (max-width: 800px){
	.ctn-mov{
		height: 1300px !important;
	}
}

/*ejemplo*/
.scroll-col{
	overflow-y: scroll;
    position: relative;
    z-index: 70;
}
.scroll-scol{
	overflow-y: scroll;
    position: relative;
    z-index: 70;
}
.colum2{
	background-size: 100%;
    /*margin: 0px 1%;
    width: 48% !important;*/
	margin: -20px;
    width: 46.5% !important;
    background-repeat: no-repeat;
}
.colum{
    background-size: 100%;
    margin: 0 5px;
    width: 31.2% !important;
    background-repeat: no-repeat;	
}
@media (max-width: 460px){
	.colum{
	    background-size: 100%;
	    margin: 0 5px;
	    width: 98% !important;
	    background-repeat: no-repeat;	
	}
																					
}
@media (max-width: 800px){
	#bkgSuenos{
		height: 350px !important;
	}
	.colPleca{
		margin-top: 66px !important;
	}
	.colum-pleca{
		margin-top: 86px !important;
	}
	.pleca-mis2{
		text-align: right !important;
		padding-right: 60%;
	}
	.pleca-mis3{
		padding-right: 18% !important;
	}
	.plecaBim2{
		text-align:right;
		padding-right: 5% !important;
	}
	.col2{
		padding-right:0px !important;
		padding-left:0px !important;
	}
	.pleca{
		margin-bottom: 11px !important;
		height: 29px !important;
		line-height: 40%;
	}
	.imgV{
		height:16px !important;
	}																				
}