@charset "utf-8";

/**
 * "framework7" - A CSS structure and development enviroment.
 *
 * this css-file contains only color-definitions.
 *
 * TOC:
 * standard types
 * layout containers
 * content classes
 *
 * @author 			Matthias Arncnik
 * @copyright 		Copyright 2007, Matthias Arncnik
 * @date 			2008-02-11
 * @lastmodified 	2008-02-11
 *
 * @package 		framework7
 * @subpackage 		storm
 *
 * @version 		3.0.4
 *
 * @media 			all, print
 * @site 			storm
 * @style 			default (carbon)
 */
 
@media all {
	/**
	 * @section standard types
	 */
	/* structure */
	body, head, html, title {}
	
	body {
		background-color: #E5E5E5;
		color: #4D4D4D;
	}
	
	h1, h2, h3, h4, h5, h6 {color: #1A1A1A;}
	
	div.window-pane-header h1 {color: #F2F2F2;}
	div.content-pane-header h2 {color: #999999;}
	div.CollapsiblePanelTabHover h2 {color: #F2F2F2;}

	/* text */
	abbr, acronym, address, blockquote, br, cite, code, dfn, div, em, h1, h2, h3, h4, h5, h6, kbd, p, pre, q, samp, span, strong, var {}

	/* hypertext */
	a {}
	
	a {color: #2979FF;}
	
	div.window-pane-header a,
	div.window-pane-footer a {color: #3399FF;}
	
	/* list */
	dl, dt, dd, ol, ul, li {}
	
	/* object */
	object, param {}
	
	/* presentation */
	b, big, hr, i, small, sub, sup, tt {}

	/* forms */
	button, fieldset, form, input, label, legend, select, optgroup, option, textarea {}
	
	/* table */
	caption, col, colgroup, table, tbody, td, tfoot, th, thead, tr {}

	/* image */
	img {}
	
	/**
	 * @section layout
	 */
	 
	/**
	 * @section content
	 */
	.info,
	.warning,
	.error {
		border-bottom-color: #CCCCCC;
		border-top-color: #CCCCCC;
	}
	.info {
		background-image: url(../../images/storm/icons/cp/large/icon_info.gif);
		background-position: 5px left;
		background-repeat: no-repeat;
	}
	.warning {
		background-image: url(../../images/storm/icons/cp/large/icon_warning.gif);
		background-position: 5px left;
		background-repeat: no-repeat;
	}
	.error {
		background-image: url(../../images/storm/icons/cp/large/icon_error.gif);
		background-position: 5px left;
		background-repeat: no-repeat;
	}
}

@media print {
	
}

