/* 
------------------------------------------------------------------------------------------------------------------------

Title				Kelly Tunney Photographer
URL					http://www.kellytunney.com.au
Author URL			www.spencehouse.com
Description			CSS styles for layout
Updated				09.09.2009

COLOURS
	White			#FFF
	Black			#000
	Dark Grey		#333
	Mid Grey		#666

------------------------------------------------------------------------------------------------------------------------
TEXT STYLES 
------------------------------------------------------------------------------------------------------------------------
*/


* { 
}
html {
	margin:0;
	padding:0;
	height:100%;					/* need to stipulate what is 100%. now all child elements can be set to 100%  */
	border:none;
	background: #FFF;
}
body {
	height: 100%;
	margin: 0;
	padding: 0;
	border:none;
	color: #FFF;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 75%;					/* Font sizing in ems beyond this point. Original default 76%. 62.5% makes 1em=10px. 68.75% makes 1em=11px. 75% makes 1em-12px. */
	line-height: 1.4em; 			/* General line-height and also acts as IE 6 Peekaboo bug hack */
	text-align: left;				/* IE6> centering - reset to align left in container */
}
p {
	padding-top: 6px;
}

a {
	color: #FFF;
	text-decoration: underline;
}
a:hover {
	text-decoration: underline;
	color:#666;
}
h1 {
	font-family: Arial Black, Arial, Helvetica, sans-serif;
	color: #FFF;
	font-size: 1.7em;
	line-height: 1.4em;
	text-align:left;
	font-weight: normal;
	margin-top: 10px;
	margin-bottom: 10px;
}
h2 {
	font-family: Arial Black, Arial, Helvetica, sans-serif;
	color: #FFF;
	font-size: 1.3em;
	line-height: 1.2em;
	font-weight: normal;
	letter-spacing: 0.7px;
	margin-top: 20px;
	margin-bottom: 6px;
}
h3 {
	font-family: Arial, Helvetica, sans-serif;
	color: #FFF;
	font-size: 1.2em;
	line-height: 1.0em;
	font-weight: bold;
	letter-spacing: 0.7px;
	margin-top: 20px;
	margin-bottom: 6px;
}
h4, h5, h6 {
	color: #FFF;
	font-size: 1em;
	line-height: 1.25em;
	font-weight: bold;
	margin-top: 8px;
}

ul {
	list-style:square outside;
	display: block;
	margin-left: 20px;
	margin-bottom: 20px;
}
