/*
*	Typography CSS file
*	Author: 	Alex Skrypnyk
*	Email: 		alex@cambridgecollege.com.au
*	Date:		07/03/2010
*	Version: 	0.1.1
*
*/

/* Default font settings.
   The font-size percentage is of 16px. (0.75 * 16px = 12px) */
   
html 
{ 
	font-size:100.01%; 
}
body 
{
  font-size: 75%;	/*=12px*/
  /*color: #222;*/
  background: #fff;
  font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
  line-height:1.5em;
}

/*
	Headings
*/

h1,h2,h3,h4, h5,h6
{
	font-weight: normal;		
}
h1	
{ 	
	font-size: 2em; 	
	margin-bottom: 0.5em;
	line-height: 100%
}
h2 	
{ 	
	font-size: 1.5em;	
	margin-bottom: 0.75em;
	line-height: 150%
}
h3	
{	
	font-size: 1.2em;	
	margin-bottom: 1em;
	line-height: 100%
}
h4	
{	
	font-size: 1em;	
	margin-bottom: 1.25em;
	line-height: 125%;	
	font-weight:bold;
}
h5	
{	
	font-size: 0.8em;		
	margin-bottom: 1.5em;
	font-weight:bold;
}
h6	
{	
	font-size: 0.8em;	
	font-style: italic;	
	font-weight:bold;
}

/*
	Normal text elements: paragraph, lists
*/
/*	common properties	*/
p,
ul li,
ol li,
label
{		
	font-size:  1em;
}
p,
ul,
ol,
dl,
table,
address
{
	margin: 0 0 1.5em;
}


/*	paragraph	*/
p
{

}
	p.last
	{
		margin-bottom:0;
	}
/*	Unordered list	*/
ul
{
	list-style-type: disc;
	list-style-position: inside;	
}
	ul	li ul
	{
		margin-left: 1.5em;
		margin-bottom: 0;
	}
	ul li ol
	{
		margin-left: 1.5em;
		margin-bottom: 0;
	}
	
/*	Ordered list	*/
ol
{
	list-style-position:inside;	
}
	ol li ol
	{
		
	}	
	ol li ul
	{
	
	}

/*	Definition list	*/

dl
{

}
	dl dt
	{
		font-weight: bold;
	}
	dl dd
	{
		margin-left: 1.5em	
	}

/* table */
table
{

}
	table tr
	{
	
	}
		table tr th
		{
			padding: 0.25em;
		}
		table tr td
		{
			padding:0.25em;		
		}

/*
	MISC	
*/

/*anchor*/
a,
a:link	
{		
}
a:visited
{

}
a:hover	
{	
	text-decoration: underline;	
}
a:active,
a.active
{
	text-decoration: underline;
}
	
/*capitalized text*/	
.capitalized,
.caps
{
	text-transform: capitalize;
}

/*	source code	*/
code,
.sourcecode
{
	font-family: Courier New, serif;
}

abbr,
acronym     
{ 
	border-bottom: 1px dotted #666; 
}
address,
em,
dfn
{
	font-style: italic;
	
}
strong,
b
{
	font-weight: bold;
}