/* --- Federación de Cineclubes de Galicia «Feciga» ---------------------------------------------- */
/* --- CSS Framework: generic classes for use on various objects --------------------------------- */
/* --- GNU Affero General Public License v.3 ----------------------------------------------------- */


/* --- CONTENTS ---------------------------------------------------------------------- 
 BOX MODEL
 FLOATS
 DISPLAY
 ------------------------------------------------------------------------------------- */


/*<![CDATA[*/
@media all {
 
/* -------------------------------------------------------------------------------------
 BOX MODEL
 ===================================================================================== */

/* margin */
.noMargin {
	margin:0;
}
 
/* border */
.noBorder, #content .noBorder{
	border: none;
}
.noTopBorder, #content .noTopBorder{
	border-top: none;
}
.noRightBorder, #content .noRightBorder{
	border-right: none;
}
.noBottomBorder, #content .noBottomBorder{
	border-bottom: none;
}
.noLeftBorder, #content .noLeftBorder{
	border-left: none;
}

/* padding */
.noPadding {
	padding:0;
}


/* -------------------------------------------------------------------------------------
 FLOATS
 ===================================================================================== */
  
/* float */
.floatLeft{
	float:left;
}
.floatRight{
	float:right;
}

/* clearing */
.clear{
	clear:both;
}
br.clear{
	margin: 0;
	padding: 0;
	height: 0;
}
div.clear{
	margin: 0;
	padding: 0;
	height: 0;
	overflow: hidden;
}
.noClear {
	clear:none;
}

/* clearfix */
.clearfix:after {
	content: "."; 
	display: block; 
	height: 0; 
	clear: both; 
	visibility: hidden;
}
/* Safari */
.clearfix { display: block; } 
/* Overflow-Methode zum Clearen der Float-Umgebungen */



/* -------------------------------------------------------------------------------------
 DISPLAY
 ===================================================================================== */

/* display */
.inline{
	display: inline;
}
.block{
	display: block;
}
.hide{
	display: none;
}


}
/*]]>*/
