/**
* Custom Stylesheet for FinishWeb Site www.yourdomain.com
*
* Copyright:
* BAR Informatik AG
* Brig-Glis, Switzerland
* 
* Path:
* [finishwebroot]/layout/[Layout]/style.css
*
* Authors:
* ...
* 
* Changes:
* ...
*/

/**************************************************************************************************
* Import base stylesheet for FinishWeb sites: base.css
**************************************************************************************************/

@import url("base.css");

/**************************************************************************************************
* Default styling of HTML-tags
**************************************************************************************************/

* {
	margin: 0;
	padding: 0;
}

html {
	height: 101%;
}

body {
	font-family: Verdana, sans-serif;
	font-size: 70%;
	line-height: 1.6em;
}

/**************************************************************************************************
* Custom classes
**************************************************************************************************/

/* Floating */

.float-left { float: left; }
.float-right { float: right; }
.clear { clear: both; }
.clear-left { clear: left; }
.clear-right { clear: right; }

/**************************************************************************************************
* Default styling of FinishWeb elements
**************************************************************************************************/

.fwelement {  }

/* fwtitle, h1, h2, h3... */

	/* color, line-height */
	h1, 
	h2, 
	h3, 
	.fwelement h1, 
	.fwelement h2, 
	.fwelement h3 {  }

	/* font-size, font-weight */
	h1, 
	.fwelement h1 {  }
	h2, 
	.fwelement h2 {  }
	h3, 
	.fwelement h3 {  }
	
/* fw...

	...

*/

/**************************************************************************************************
* Layout-styling
**************************************************************************************************/

/********************************
* page
********************************/
div.page {}

	/********************************
	* header
	********************************/
	div.header {}

	/********************************
	* main
	********************************/
	div.main {}

		/********************************
		* leftcol
		********************************/
		div.leftcol {}

			/* navigation */
			div.navigation {}

		/********************************
		* maincol
		********************************/
		div.maincol {}

			/* maincontent */
			div.maincontent {}

		/********************************
		* rightcol
		********************************/
		div.rightcol {}

	/********************************
	* footer
	********************************/
	div.footer {}

/**************************************************************************************************
* Layout-defined styling of Finishweb elements
**************************************************************************************************/

/********************************
* header
********************************/
div.header  .fwelement {}

/* fw...

	...

*/

/********************************
* navigation
********************************/
div.leftcol  .fwelement {}

/* fw...

	...

*/

/********************************
* maincontent
********************************/
div.maincontent  .fwelement {}

/* fw...

	...

*/

/********************************
* rightcol
********************************/
div.rightcol  .fwelement {}

/* fw...

	...

*/

/********************************
* footer
********************************/
div.footer  .fwelement {}

/* fw...

	...

*/