@import url(layout.css);
@import url(content.css);
@import url(nav.css);
@import url(debug.css);

/* Date: 2008-07-15 */
/* Author: Antoine Girard */
/* base layout and resets
* --------------------------------------- */


* {
	padding: 0; margin: 0;
}

body {
	font-family: Georgia, Times, serif;
	font-size: 13px;
	line-height: 1.231;
}

html {
	color: #000;
	background: #dfe5d2 url(/img/bg/bg.gif) repeat-x top left;
}

/* img reset */
img { border: 0; }

/* links reset */
a 			{	color: #612a50; }
a:hover {	color: #8f3978; }
a:focus {	outline: none; }

/* headers */
h1 { font-size:138.5%; }
h2 { font-size:123.1%; }
h3 { font-size:108%; }
h1, h2, h3 {
	margin: 1em 0;
}



/* definitions and lists */
abbr, acronym {
	border-bottom:1px dotted #000;
	cursor:help;
}

blockquote, ul, ol, dl { 	margin: 1em; }

ol, ul, dl {
	margin-left: 2em;
}

ol li {
	list-style: decimal outside;	
}

ul li {
	list-style: disc outside;
}

dl dd {
	margin-left: 1em;
}

/* tables */
th, td {
	border: 1px solid #000;
	padding: .5em;
}

th {
	font-weight: bold;
	text-align: center;
}

caption {
	margin-bottom: .5em;
	text-align: center;
}

/* misc default margin values */
p, fieldset, table { margin-bottom:1em; }


/* align framework */
.align-left 	{ float: left; 	}
.align-right { float: right; }


/* clears */
.clear { clear: both; }

.clearfix:after {
	clear:both;
	content:".";
	display:block;
	height:0pt;
	visibility:hidden;
}
.clearfix {
	display:inline-block;
}
.clearfix {
	display:block;
}

