@charset "UTF-8";

/**
 * "CSS Framework 7" - a CSS structure and development enviroment.
 *
 * this css-component-file may contain color-, layout- and typo-definitions.
 *
 * special IE-patches reside in the override file clearing.ie.css.
 *
 * TOC:
 *  |- all
 *  ||- section 	clearing methods
 *
 * @author 			Matthias Arncnik
 * @copyright 		Copyright 2007, Matthias Arncnik
 * @date 			2007-11-01
 * @lastmodified 	2008-05-31
 *
 * @package 		css framework 7
 * @subpackage 		default
 *
 * @version 		3.0 (3.0.5)
 *
 * @media 			all
 * @site 			none
 * @style 			none
 */
 
@media all {
/**
 * @section clearing methods.
 */
	/* the cleafix-methode creates an invisble clearingblock after the content. */
	.clearfix:after {
		content: ".";
		display: block;
		height: 0;
		clear: both;
		visibility: hidden;
	}
	
	.clearfix {display: block;} /* essential for Safari. */
	
	/* the floatbox-methode sets overflow to hidden */
	.floatbox {overflow: hidden;}
}

