@charset "utf-8";
/* CSS Document */

/*--------------------------------------------------------------
# persiana horizontal inscripciones
--------------------------------------------------------------*/

form { 
    position: relative; 
    background: -webkit-linear-gradient(bottom,#eaeaea, #fafafa);
    padding: 5px;
    display: inline-block;
    box-shadow: 0 1px 1px rgba(0,0,0,.65);
    border-radius: 3px;
    border: solid 1px #ddd;
    width: 100%; 
    overflow: hidden;
}
input { display: none; }
input:checked + label, label:hover { 
    background: #4D90FE;
    background: -webkit-linear-gradient(top,#4D90FE,#4787ED);
    border: solid 1px rgba(0,0,0,.15);
    color: white; 
    box-shadow: 0 1px 1px rgba(0,0,0,.65), 0 1px 0 rgba(255,255,255,.1) inset;
    text-shadow: 0 -1px 0 rgba(0,0,0,.6);
	width: 125px;
	padding-top: 40px;
    line-height: normal;	
    height: 200px;
	overflow: hidden;
}
label { 
    cursor: pointer; 
    display: block; 
    border: solid 1px transparent;
    text-align: center; 
    line-height: normal; 
    border-radius: 3px; 
    float: left;
    height: 200px;
	width: 125px;
	padding-top: 40px;
	overflow: hidden;
}
label:last-child { margin-right: 0; }
label {     
    background: rgba(77, 144, 254, .5); 
    border: solid 1px rgba(0,0,0,.15); 
}

article { 
    width: 0;
    overflow: visible; 
    -webkit-transition: width .25s linear, opacity .2s linear; 
    transition: width .25s linear, opacity .3s linear; 
    position: relative; 
    padding: 0px 5px;
    margin-bottom: 0;
    margin-right: 10px;
    opacity: 0;
    float: left;
}
div:last-child article { margin-right: 0; }
article p {
     color: #333;
    font-size: 13px;
    line-height: 21px;    
    padding: 5px 10px;
	overflow: visible;	
	text-align: justify;
	height: 700px;
}

div > input:checked ~ article {
    width: 50%;
    opacity: 1;
    font-size: 15px;
    text-align: justify;
    /* margin-right: 5px; */
}

