@charset "UTF-8";

/*	========================================	*/
/*	Document Body	<body>	*/
/*	========================================	*/
body{
	margin: 10px 10px 100px 20px;
	color: #000000;
	background-color: #ffffff;
	text-align: left;
	font-size: medium;
}

/*	========================================	*/
/*	Paragraphs	<p>	*/
/*	========================================	*/
p{
	margin: 1em 0;
}


/*	========================================	*/
/*	Headings	<hn>	*/
/*	========================================	*/
h1{
	font-size: 150%;
	margin: 1em 0;
}

h2{
	font-size: 140%;
	margin: 1em 0;
}

h3{
	font-size: 130%;
	margin: 1em 0;
}

h4{
	font-size: 120%;
	margin: 1em 0;
}

h5{
	font-size: 110%;
	margin: 1em 0;
}

h6{
	font-size: 100%;
	margin: 1em 0;
}


/*	========================================	*/
/*	Lists	<ul><ol><li>	<dl><dt><dd>	*/
/*	========================================	*/
ul{
	margin: 1em 0;
	list-style-position: outside;
}

ol{
	margin: 1em 0;
	list-style-position: outside;
}

li{

}

dl{
	margin: 1em 0;
}

dt{
	font-weight: bold;
}

dd{
	margin-left: 1em;
}


/*	========================================	*/
/*	Address	<address>	*/
/*	========================================	*/
address{
	clear: both;
	margin: 30px 0 30px 0;
	font-size: 80%;
	font-style: normal;
	color: #333333;
	background-color: transparent;
	text-align: center;
}


/*	========================================	*/
/*	Horizontal Rule	<hr>	*/
/*	========================================	*/
hr{
	visibility:hidden;
	clear: both;
	display: block;
	margin: 0;
	padding: 0;
	border: 0 none;
	height: 1px;
	font-size:1px;
	line-height:0;
}


/*	========================================	*/
/*	Preformatted Text	<pre>	*/
/*	========================================	*/
pre{
	margin: 1em 0;
}


/*	========================================	*/
/*	Block-like Quotes	<blockquote>	*/
/*	========================================	*/
blockquote {
	margin: 1em 40px;
}


/*	========================================	*/
/*	Inserted/Deleted Text	<ins><del>	*/
/*	========================================	*/


/*	========================================	*/
/*	The Anchor Element	<a>	*/
/*	========================================	*/
a:link {
	color: #0000ff;
	background-color: transparent;
}

a:visited {
	color: #9900cc;
	background-color: transparent;
}

a:hover {
	color: #ff0000;
	background-color: transparent;
}

a:active {
	color: #ffff00;
	background-color: transparent;
}


/*	========================================	*/
/*	Inline Elements	*/
/*	========================================	*/
	/*
	<span>	<!-- generic language/style container -->
	<bdo>	<!-- I18N BiDi over-ride -->
	<br>	<!-- forced line break -->
	<em>	<!-- emphasis -->
	<strong>	<!-- strong emphasis -->
	<dfn>	<!-- definitional -->
	<code>	<!-- program code -->
	<samp>	<!-- sample -->
	<kbd>	<!-- something user would type -->
	<var>	<!-- variable -->
	<cite>	<!-- citation -->
	<abbr>	<!-- abbreviation -->
	<acronym>	<!-- acronym -->
	<q>	<!-- inlined quote -->
	<sub>	<!-- subscript -->
	<sup>	<!-- superscript -->
	<tt>	<!-- fixed pitch font -->
	<i>	<!-- italic font -->
	<b>	<!-- bold font -->
	<big>	<!-- bigger font -->
	<small>	<!-- smaller font -->
	*/

em{
	font-style: normal;
	font-weight: bold;
}

strong{
	font-style: normal;
	font-weight: bold;
	color: #ff0000;
	background-color: transparent;
}

abbr,acronym{
	border-bottom: 1px dotted gray;
}


/*	========================================	*/
/*	Object	<object><param>	*/
/*	========================================	*/


/*	========================================	*/
/*	Images	<img>	*/
/*	========================================	*/
img{
	border-width: 0;
}


/*	========================================	*/
/*	Client-side image maps	<map><area>	*/
/*	========================================	*/


/*	========================================	*/
/*	Forms	*/
/*	========================================	*/
	/*
	<form>	<!-- generic language/style container -->
	<label>	
	<input>	<!-- form control -->
	<select>	<!-- option selector -->
	<optgroup>	<!-- option group -->
	<option>	<!-- selectable choice -->
	<textarea>	<!-- multi-line text field -->
	<fieldset>	
	<legend>	<!-- fieldset label -->
	<button>	<!-- push button -->
	*/

form{
	margin: 0;
	padding: 0;
}


/*	========================================	*/
/*	Tables	*/
/*	========================================	*/
	/*
	<table>
	<caption>	
	<thead>
	<tfoot>
	<tbody>
	<colgroup>
	<col>
	<tr>
	<th>
	<td>
	*/

table{
	/*border-spacing: 2px; */
 	border-collapse: collapse;
	border: 1px solid #000000;
}

th,td{
	border: 1px solid #000000;
	padding: 2px;
}


/*	========================================	*/






