/* CSS Document */




/*================== CAJA DE DOS COLUMNAS FIJAS DE 250PX ===================*/

.marco {
	margin: 0px;
	padding: 0px;
	bottom: 0px;
	/*border: thin solid #00CCFF;*/
}

.clear {
	clear: both;
	/*border: thin dotted #FFFF00;*/
	height: 20px;
}


/*=================================*/

.colIzq {
	float: left;
	/*border: thin solid #0066FF;*/
	width: 250px;
}



.colDer {
	float: right;
	/*border: thin solid #CC0000;*/
	width: 250px;
}


/*================== CAJA DE DOS COLUMNAS PARA FILMOGRAFÍAS  ===================*/




.contenedor {
	width: 100%; /* the auto margins (in conjunction with a width) center the page */
	text-align: left;
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 1em;
	margin-left: 0;
} 

.barraLateral {
	float: left;
	width: 15%;
}


.principalContenido {
	width: 82%;
	float: right;
} 

/* Miscellaneous classes for reuse */
.fltder { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltizq { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}
