


/* **************************************************************** */
/* MINI CARRO LATERAL 												*/
/* **************************************************************** */

div#carro
{
	position: relative;
	float: left;
	
	width: 156px;
	height: auto;
	
	margin-bottom: 7px;
}
			
			div#carro div.carro_dec_sup
			{
				position: relative;
				float: left;
				width: 156px;
				height: 42px;
				
				background-image: url('img/carro_dec_sup_.jpg');
				background-repeat: no-repeat;
				background-position: 0px 0px;
			}
			
			div#carro div.carro_centro
			{
				position: relative;
				float: left;
				
				height: auto !important;
				min-height: 50px;
				height: 50px;
				padding-top: 3px;
				
				width: 146px;
				border-left-width: 1px;
				border-right-width: 1px;
				padding-left: 4px;	
				padding-right: 4px;	
				
				background-color: #6D0D0E;
				border-color: #B41617;
				border-style: solid;
				
				font-size: 12px;
			}
			
			div#carro div.carro_dec_inf
			{
				position: relative;
				float: left;
				width: 156px;
				height: 9px;
				
				background-image: url('img/carro_dec_inf.jpg');
				background-repeat: no-repeat;
				background-position: 0px 0px;
			}




/* **************************************************************** */
/* PASOS DE LA COMPRA												*/
/* **************************************************************** */

div.pasos_compra
{
	position: relative; float: left;
	width: 565px; /* 567 - 2padding*/
	height: 86px;
	
	padding-left: 2px;
	
	margin-bottom: 10px;
	
	overflow: hidden;
	
	background-image: url('img/estado_compra_fondo.jpg');
	background-repeat: no-repeat;
	background-position: center 9px;
}
			div.paso_separador
			{
				position: relative; float: left;
				width: 1px;
				height: 86px;
				
				background-image: url('img/estado_compra_separador.jpg');
				background-repeat: no-repeat;
				background-position: center bottom;
			}
			
			
			div.paso,
			div.paso_anterior,
			div.paso_sel
			{
				position: relative; float: left;
				width: 83px; /* 93 - 5x2padding */
				height: 46px; /* 86 - 40 padding */
	
				padding-top: 40px;
				padding-left: 5px;
				padding-right: 5px;
				
				text-align: center;
				font-size: 12px;
				color: #B41617;
			}
			
			div.paso_anterior
			{
				color: white;
			}
			
			div.paso_sel
			{
				background-image: url('img/estado_compra_bola.jpg');
				background-repeat: no-repeat;
				background-position: center top;
				
				color: white;
			}
			
			
			
