@charset "UTF-8";

/**
 * "CSS Framework 7" - a CSS structure and development enviroment.
 *
 * this css-component-file may contain color-, layout- and typo-definitions.
 *
 * it should always be imported because it (re)sets default-values for
 * attributes that may be initialized in browsers differently.
 * 
 * special IE-patches reside in the override file reset.ie.css.
 *
 * TOC:
 *  |- all
 *  ||- section 	(re)set default-values
 *  ||- section 	enforce vertical scrollbars
 *
 * @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 (re)set default-values.
 */
	* {margin: 0; padding:0;}
	option {padding-left: 0.4em;} /* setting padding to 0 caused too small select boxes. */
	fieldset, img {border-width: 0; border-style: solid;}
	
	body {
		color: #000000;
		background-color: #FFFFFF;
		font-size: 100.01%; /* fixes rounding errors when scaling font sizes in older versions of Opera. */
		text-align: left;
	}

/**
 * @section enforce vertical scrollbars.
 */
	html {height: 100%; margin-bottom: 1px;}
}

