/*
 * Name            :  Hidden jQuery Menu for Minimalist Design
 * Author's Name   :  Jeremie Tisseau
 * Site            :  http://web-kreation.com  
 * version         :  0.1 
 * Requires        :  jQuery 1.3.2
 * Date            :  Sept 8th, 2009
 *
 * License         :  Creative Commons Attribution-Share Alike 2.0 France License
 *                    http://creativecommons.org/licenses/by-sa/2.0/fr/
 *                    Feel free to do whatever you'd like with this, just please give credit where credit is do.
 */


/**** RESET ****/
/* http://meyerweb.com/eric/tools/css/reset/ */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	vertical-align: baseline;
}
/* END RESET */


/*Begin Typography &Colors  */
html, body {
    border: 0;
    margin: 0;
    padding: 0
}

body {
    background: #F3F3F3 url('../images/bg.gif') repeat-x 0 0;
    color: #333;
    font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
    text-align: center;
	line-height: 1em;
}


/**** CLEAR ****/
.clear {
	clear: both;
	height: 0;
	line-height: 0;
  	padding: 0;
  	margin: 0;
  	border: 0;
}

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

.clearfix {display: inline-block;}

/* Hides from IE-mac \*/
* html .clearfix {height: 1%;}
.clearfix {display: block;}

/* End hide from IE-mac */.clearfix {height: 1%;}

.clearfix {display: block;}
/* End hide from IE-mac */
/**** END CLEAR ****/



/*  */
/**** LINKS ****/
a {
	color: #709A71;
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}
/**** END LINKS ****/


/**** GLOBAL CLASSES ****/
.alignleft {display: block; float: left;}

.alignright {display: block; float: right;}

.aligncenter {
  	display: block;
  	text-align: center;
  	margin: 0 auto;
}
/**** END GLOBAL CLASSES ****/



/**** IMAGES ****/
img.alignleft, img.alignright, img.aligncenter {
    background: #EFEFED;
    border: 1px solid #D0D0CE;
    display: block;
    padding: 3px
}

img.alignleft {
	float: left;
	margin: 0 10px 2px 0;
}

img.alignright {
	float: right;
	margin: 0 0 2px 10px;
}

img.aligncenter {
	margin: 5px auto;
}
/**** END IMAGES ****/


/***** Main Layout *****/
#container {
    height: 100%;
    text-align: center;
    width: 100%
}

#wrapper {
    margin: 30px auto;
    text-align: left;
    width: 968px;
	background-color: #F3F3F3;
	border: 1px solid #CCC;
	padding: 5px;
	display: block;
}

#border {
	border: 1px solid #E6E6E6;
	background-color: #FFF;
	display: block;
	height: 100%;
}

#content {
	width: 600px;
	padding: 0 20px 0 40px;
	margin: 20px 0;
	float: left;
	clear: both;
	border-right: 1px solid #E8E8E8;
}

.post {
	margin-bottom: 30px;
}

#sidebar {
	width: 240px;
	padding: 0 0 0 20px;
	margin: 20px 0;
	float: left;
}

/* Typography */
p {margin: 10px 0;}
h1, h2, h3, h4, h5, h6 { font-family: Georgia, "Times New Roman", Times, serif; font-weight: normal; }

h1 { font-size: 1.6em; }

h2 { font-size: 1.4em; }

.post h1, #sidebar h2 {
	border-top: 1px solid #E8E8E8;
	border-bottom: 1px solid #E8E8E8;
	margin: 0 0 15px 0;
	padding: 15px 0;
}

.post h1 small {
	color: #666;
	text-transform: none;
	font-size: .7em;
	clear: both;
	display: block;
	padding: 6px 0 0;
	font-style: italic;
}



