


/*	CONTENTS
	1.RESET * Resets default browser CSS.
	2.TYPOGRAPHY * Includes the body declaration
	3.LAYOUT
-------------------------------------------------------------- */



/* -------------------------------------------------------------- 
  
   RESET
   * Resets default browser CSS.
   
-------------------------------------------------------------- */

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, code,
del, dfn, em, img, q, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
	font-weight: inherit;
	font-style: inherit;
	font-size: 100%;
	font-family: inherit;
	vertical-align: baseline;
}

body { 
	line-height: 1.5; 
}

/* Tables still need 'cellspacing="0"' in the markup. */
table { border-collapse: separate; border-spacing: 0; }
caption, th, td { text-align: left; font-weight: normal; }
table, td, th { vertical-align: middle; }

/* Remove possible quote marks (") from <q>, <blockquote>. */
blockquote:before, blockquote:after, q:before, q:after { content: ""; }
blockquote, q { quotes: "" ""; }

/* Remove annoying border on linked images. */
a img { border: none; }



/* -------------------------------------------------------------- 
   
   TYPOGRAPHY
   
-------------------------------------------------------------- */

/* Default font settings. 
   The font-size percentage is of 16px. (0.75 * 16px = 12px) */
body { 
	font-size: 75%;
	color: #222; 
	background: #fff;
	font-family: Garamond, Bembo, Georgia, serif;
	margin: 0 auto;
	width: 900px;
}



/* Headings
-------------------------------------------------------------- */

h1,h2,h3,h4,h5,h6 { font-weight: normal; color: #111; }

h1 { font-size: 3em; line-height: 1; margin-bottom: 0.5em; }

h2 {
	font-family: Akzidenz-Grotesk, Helvetica, Univers, sans-serif;
	font-style: normal;
	font-weight: normal;
	font-size: 120%;
	line-height: 1.35em;
	word-spacing: normal;
	letter-spacing: 0.05em;
	text-decoration: none;
	text-transform: none;
	text-align: left;
	text-indent: 0em;
	color: #363636;
	margin: 0px 0px 8px 0px;
}

h3 {
	font-family: Garamond, Bembo, Georgia, serif;
	color: #363636;
	line-height: 110%;
	text-align: left;
}

h4 {
	font-family: Garamond, Bembo, Georgia, serif;
	color: #363636;
	text-align: left;
	font-weight: normal;
	font-style: italic;

}

h5 { font-family: Akzidenz-Grotesk, Helvetica, Univers, sans-serif;
	 font-size: 0.8em;
	 font-weight: normal;
	 letter-spacing: 0.05em;
	 text-align: left;
	 margin-bottom: 1.5em; }
	 
h6 { font-size: 1em; font-weight: bold; }

h1 img, h2 img, h3 img, 
h4 img, h5 img, h6 img {
	margin: 0;
}



/* Text elements
-------------------------------------------------------------- */

p {
	font-family: Garamond, Bembo, Georgia, serif;
	font-size: 16px;
	line-height: 1.5em;
	text-decoration: none;
	text-transform: none;
	text-align: left;
	text-indent: 0em;
	color: #363636;
	margin: 0px 0px 15px 0px;
	
}
p img.left  { float: left; margin: 1.5em 1.5em 1.5em 0; padding: 0; }
p img.right { float: right; margin: 1.5em 0 1.5em 1.5em; }

a:link {
	color: #363636;
	text-decoration: none;
	border-bottom: 1px dotted #363636;
}

a:visited {
	color: #a2a2a2;
	text-decoration: none;
	border-bottom: 1px dotted #a2a2a2;
}

a:hover {
	color: #a2a2a2;
	text-decoration: none;
	border-bottom: 1px dotted #a2a2a2;
}

a:active {
	text-decoration: none;
	color: #dfdfdf;
	border-bottom:1px dotted #dfdfdf;
}

blockquote {
	font-family: Garamond, Bembo, Georgia, serif;
	font-size: 90%;
	line-height: 1.25em;
	text-decoration: none;
	text-transform: none;
	text-align: left;
	text-indent: 0em;
	width: 500px;
	color: #363636;
}

strong { font-weight: bold; }

li ul, 
li ol  { margin:0 1.5em; }
ul, ol { margin: 0 1.5em 1.5em 1.5em; }

ul {
	font-family: Garamond, Bembo, Georgia, serif;
	font-size: 100%;
	line-height: 1.5em;
	text-decoration: none;
	text-transform: none;
	text-align: left;
	text-indent: 0em;
	width: 700px;
	color: #363636;
	list-style: none;
	margin-left: 0;
	padding-left: 1em;
	text-indent: -0.8em;
} 



/* -------------------------------------------------------------- 
   
   LAYOUT
   
-------------------------------------------------------------- */

#header {
	margin: 20px 0 5px;
}

#navigation {
	float: left;
	display: inline;
	width: 150px;
}

#rightbar {
	float: right;
	display: inline;
	width: 150px;
}

#content {
	float: right;
	display: inline;
	width: 550px;
	margin: 0 50px 0 0;
}

#footer {	
	border-top: 1px dotted #ccc;
	margin: 20px 0;
	padding: 10px 0;
}

.left {
	float: left;
	display: inline;
}

.right {
	float: right;
	display: inline;
}

.clear {
	clear: both;
}