/* 

	CSS Document
	
*/

/*
	Structure
*/

	body
	{
		margin-left: 0;
		margin-right: 0;
		margin-top: 0;
		margin-bottom: 0;
		
		padding: 0;
		
		font-family: Verdana, Arial, Helvetica, sans-serif;
		font-style: normal;
		font-variant: normal;
		font-size: 11px;
		font-weight: 500;
		font-stretch: normal;
		word-spacing: 0;
		letter-spacing: 0;
		text-decoration: none;
		text-transform: none;
		
		text-indent: 0;
		line-height: 200%;
		text-align: left;
		white-space: normal;
		
		border: 0;
	
		color: #000000;
		background-color: #73A6C5;
	}

	html
	{
		margin: 0;
		padding: 0;
		cursor: auto;
		
		background-color: #73A6C5;
	}

/*
	Text
*/

	/* blocks */

	adress, blockquote, h1, h2, h3, h4, h5, h6, p, pre
	{
		margin-left: 0;
		margin-right: 0;
		margin-top: 18px;
		margin-bottom: 18px;
		
		padding: 0;
	}

	address /* adress paragraph */
	{
		font-style: italic;
	}

	blockquote /* quotation */
	{
		margin-left: 40px;
	}

	div /* division */
	{
		margin: 0;
		padding: 0;
	}

	h1, h2, h3, h4, h5, h6 /* headers */
	{
		font-weight: 700;
	}

	h1 /* top header */
	{
		margin-top: 0;
		margin-bottom: 20px;
		
		font-size: 20px;
	}
	
	h2
	{
		font-size: 14px;
		margin-bottom: 0px;
	}

	h3
	{
		font-size: large;
	}

	h4
	{
		font-size: medium;
	}

	h5
	{
		font-size: small;
	}

	h6
	{
		font-size: x-small;
	}


	p /* standard paragraph */
	{
		/* no addional formats */
	}
	
	/* inlines */

	strong
	{
		font-weiht: 700;
	}
	
	em /* emphatic */
	{
		font-style: italic;
	}
	
/*
	Hypertext
*/

	a:link /* not visited sites */
	{
		color: #73A6C5;
		text-decoration: none;
	}
	
	a:visited /* already visited sites */
	{
		color: #73A6C5;
		text-decoration: none;
	}
	
	a:hover /* mouse over */
	{
		text-decoration: none;
	}
	
	a:active /* currently clicked */
	{
		text-decoration: none;
	}
	
	a:focus /* on focus */
	{
		text-decoration: none;
	}

/*
	List
*/

	/* lists */
	
	dl, ol, ul
	{
		margin-left: 40px;
		margin-right: 0;
		margin-top: 18px;
		margin-bottom: 18px;

		padding: 0;
	}

	dl /* definition list */
	{
		margin-left: 0;
	}
	
	dt /* definition list term */
	{
		margin: 0;
	}
	
	dd /* definition list definition */
	{
		margin-left: 40px;
		margin-right: 0;
		margin-top: 0;
		margin-bottom: 0;
	}

	li /* list item */
	{
		margin: 0;
		padding-left: 0;
	}

	ol /* ordered list */
	{
		list-style-type: decimal;
		list-style-position: outside;
	}
	
	ul /* unordered list */
	{
		list-style-type: disc;
		list-style-position: outside;
	}
/*
	Forms
*/

	button
	{
		/* use standard browser formats */
	}
	
	fieldset
	{
		margin-left: 0;
		margin-right: 0;
		margin-top: 18px;
		margin-bottom: 18px;

		border: 1px solid #A5ACB2;
		padding: 10px;
	}
	
	form
	{
		margin: 0;
		padding: 0;
	}
	
	input
	{
		/* use standard browser formats */
	}
	
	label
	{
		/* no special formats */
	}
	
	legend
	{
		color: #000000;
		
		margin: 0;

		padding-left: 1px;
		padding-right: 1px;
	}
	
	select
	{
		/* use standard browser formats */
	}
	
	optgroup
	{
		/* use standard browser formats */
	}
	
	option
	{
		/* use standard browser formats */
	}
	
	textarea
	{
		/* use standard browser formats */
	}

/*
	Table
*/

	caption
	{
		caption-side: top;
	}
	
	colgroup
	{
		/* no special formats */
	}

	table
	{
		margin: 0;
		padding: 0;
		border: 0;
		
		table-layout: fixed;
		border-collapse: collapse; 
		border-spacing: 0;
		empty-cells: show;
	}
	
	tbody
	{
		/* no special formats */
	}
	
	td
	{
		padding: 0;
		border: 0;
		
		vertical-align: top;
	}
	
	tfoot
	{
		/* no special formats */
	}
	
	th
	{
		padding: 0;
		border: 0;
		
		font-weight: 700;
	}
	
	thead
	{
		/* no special formats */
	}
	
	tr
	{
		/* no special formats */
	}

/*
	Image
*/

	img
	{
		border: 0;
	}