/* style.css - a simple style sheet */
html 
{
    overflow-y: scroll;
}
/* ----- */
/* body */
/* ---- */

body  
{
	color		: black;
	background-color: white;
	font-size	: 100%;
}

nav
{ 
	position	: relative;
	max-width	: 600px;
	height		: 20px;
	margin-left	: auto; 
	margin-right	: auto; 
	margin-top	: auto; 
	margin-bottom	: auto;
	text-align	: right;
}

#container 
{ 
	background-color: white;
	max-width	: 600px;
	margin		: 0 auto; 
	position	: relative;
	padding		: 10px;
	border		: 0px;
}

#left, #right
{
	width		: 50%;
	float		: left;
	 
}

#right
{
	float		: right;
}

.clear
{
	height		: 0;
	line-height	: 0;
	margin		: 0;
	padding		: 0;
	clear		: both;
}

/* ---- */
/* link */
/* ---- */

A:link    {color	: blue;}
A:visited {color	: blue;}
A:active  {color	: blue;}
A:hover   {color	: red;}

A{
	text-decoration:none;
}

/* --------- */
/* paragraph */
/* --------- */

p, div     
{ 
	text-indent	: 0.0em; 
	line-height	: 150%;
        font-size	: 100%; 
        font-family	: "HelveticaNeue-Light", "Helvetica Neue Light", "HelveticaNeue", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
	font-weight	: 300;
}
p
{
	text-align	: justify;
}

em
{    
	font-style	: italic;
        font-family	: "HelveticaNeue-LightItalic", "Helvetica Neue Light Italic", "Helvetica Neue",  "Helvetica", "Arial", sans-serif;
	font-weight	: 300;
}

strong
{
	font-weight	: bold;
}

/* -------- */
/* headings */
/* -------- */

h1,h2,h3,h4,h5,h6
{  
	font-family	: "HelveticaNeue", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
	font-weight	: bold;
}

h1	
{ 
	font-size	: 2.5em; 
 	text-align	: center; 
}

h2	
{ 
	font-size	: 1.875em; 
	text-align	: left; 
}

h3	
{
	font-size	: 1.5em; 
	text-align	: left; 
}

h4
{ 
	font-size	: 1.0em; 
	text-align	: left; 
}

/* ---- */
/* list */
/* ---- */

ul
{	
	list-style-type	: disc;
	margin-top	: 0px;
	margin-left	: -20px;
}

li
{
	padding		: 7.5px 0px;

}

ol  
{
	list-style-type	: decimal;
}

ol,dl  
{
	margin-top	: 0px;
	margin-left	: 0px;
}

/* ------*/
/* Table */
/* ----- */
table,th,td
{
	border		: 0 black; 
}
table
{
	width		: 100%;
}
td
{
	padding		: 20px;
}
/* ----- */
/* Image */
/* ----- */ 

img     
{
	border		: none;
}
