
/* LISTA 3 estilio*/ 
/* INICIO*/

.lista3 {
    counter-reset: li; 
    list-style: none; 
    *list-style: decimal; 
    font: 15px 'trebuchet MS', 'lucida sans';
    padding: 0;
    margin-bottom: 4em;
    text-shadow: 0 1px 0 rgba(255,255,255,.5);
}

.lista3 ol {
	counter-reset: li; 
    margin: 0 0 0 2em; 
}

.lista3 ol  li{
	/* counter-reset: li;  */
    position: relative;
    display: block;
    padding: .4em .4em .4em .8em;
    *padding: .4em;
    margin: .5em 0 .5em 2.5em;
    background: #ddd;
    color: #444;
    text-decoration: none;
    transition: all .3s ease-out;   
}

.lista3 ol  li:hover{
    background: #eee;
}   

.lista3 ol li:before{
    content: counter(li);
    counter-increment: li;
    position: absolute; 
    left: -2.5em;
    top: 50%;
    margin-top: -1em;
    background: #fa8072;
    height: 2em;
    width: 2em;
    line-height: 2em;
    text-align: center;
    font-weight: bold;
}

.lista3 ol li:after{
    position: absolute; 
    content: '';
    border: .5em solid transparent;
    left: -1em;
    top: 50%;
    margin-top: -.5em;
    transition: all .3s ease-out;               
}

.lista3 ol li:hover:after{
    left: -.5em;
    border-left-color: #fa8072;             
}
/* FIN*/
/* LISTA 3 estilio*/ 

/* lista3dl estilio*/ 
/* INICIO*/

.lista3dl {
    list-style: none; 
	/* list-style-type: circle; */
    font: 15px 'trebuchet MS', 'lucida sans';
    padding: 0;
    margin-bottom: 4em;
    text-shadow: 0 1px 0 rgba(255,255,255,.5);
}

.lista3dl dl {
    margin: 0 0 0 2em; 
}

/* .lista3dl dd */
/* { */
    /* display: list-item; */
    /* list-style-type: disc; */
/* } */


.lista3dl dt{
	 display: list-item;
    /* list-style-type: disc; */
	/* list-style-type: circle; */
    position: relative;
    /* display: block; */
    padding: .4em .4em .4em .8em;
    *padding: .4em;
    margin: .5em 0 .5em 2.5em;
    background: #ddd;
    color: #444;
    text-decoration: none;
    transition: all .3s ease-out;   
}

.lista3dl dt:hover{
    background: #eee;
}   

.lista3dl dt:before{
    /* content: counter(li); */
    /* counter-increment: li; */
    position: absolute; 
    left: -2.5em;
    top: 50%;
    margin-top: -1em;
    background: #fa8072;
    height: 2em;
    width: 2em;
    line-height: 2em;
    text-align: center;
    font-weight: bold;
}

.lista3dl dt:after{
    position: absolute; 
    content: '';
    border: .5em solid transparent;
    left: -1em;
    top: 50%;
    margin-top: -.5em;
    transition: all .3s ease-out;               
}

.lista3dl dt:hover:after{
    left: -.5em;
    border-left-color: #fa8072;             
}
/* FIN*/
/* lista3dl estilio*/ 

