/* BEGIN DEFINIZIONE STRUTTURA */
body {
	font-family: 'Garamond', 'Lucida Grande', Verdana, Arial, Sans-Serif;
	background-color: #D9A696;		/* rosa di sfondo */
	text-align: center;
}

#page {
	width: 850px;
	margin-top: 15px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: auto;
	/*background-color: white;		/* debug */
}

#header {
	font-size: 21px;
	font-weight: bold;
	text-align: left;
	color: #FEFCE7;
	height: 30px;
}

#mainbox {
	border: 1px solid #959596;		/* il bordo mangia un pixel alle colonne interne */
	height: 500px;
	background-color: #FEFCE7;
	line-height: 1.5em;
	color: #010101;
}

/* il mainbox contiene due righe */
#columnContainer {
	float: left;
	height: 480px;
	width: 100%;
	overflow: auto;
	/* background-color: green;	/* debug */
}

#bottomline {
	height: 20px;		
	text-align: right;
	font-size: 14px;
	font-style: italic;
	padding-right: 20px;
	color: gray;
	/* background-color: red;		/* debug */
}
/* end definizione righe */

/* il columnContainer contiene le colonne */
#leftcolumn {
	float: left;
	width: 300px;	
	/* background-color: red;		/* debug */
}

#rightcolumn {
	float: right;
	width: 500px;		
	padding-right: 20px;
	margin: auto;
	/* background-color: green;		/* debug */
}

/* end definizione colonne */

#footer {
	font-size: 15px;
	font-weight: bold;
	text-align: center;
	color: #FEFCE7;
	height: 40px;
	padding-top: 10px;
}
/* END DEFINIZIONE STRUTTURA */


/* BEGIN STILE NAVIGAZIONE */
.navigation ul {
	font-size: 16px;
	font-weight: bold;
	text-align: left;
	color: #FEFCE7;
	margin: 7px auto;
}

.navigation ul li {
	display: inline;
	padding-left: 15px;
}

.navigation a {
	color: #FEFCE7;
}

.navigation a:visited {
	color: #FEFCE7;
}
/* END STILE NAVIGAZIONE */

.postmetadata {
	font-size: 13px;
	font-weight: bold;
	text-align: center;
}

.nextprev {
	font-size: 13px;
	font-weight: bold;
	text-align: center;
	color: gray;
}

.nextprev a {
	color: gray;
}

.nextprev a:visited {
	color: gray;
}

/* BEGIN HEADERS */
h1 {
	padding-top: 70px;
	margin: 0;
}

.description {
	text-align: center;
}

h2 {
	margin: 30px 0 0;
}

h2.pagetitle {
	margin-top: 30px;
	text-align: center;
}

h3 {
	padding: 0;
	margin: 30px 0 0;
}
/* END HEADERS */

/* BEGIN IMAGES */
p img {
	padding: 0;
	max-width: 100%;
}

/*	Using 'class="alignright"' on an image will (who would've
	thought?!) align the image to the right. And using 'class="centered',
	will of course center the image. This is much better than using
	align="center", being much more futureproof (and valid) */
	
img.centered {
	display: block;
	margin-left: auto;
	margin-right: auto;
	}
	
img.alignright {
	padding: 4px;
	margin: 0 0 2px 7px;
	display: inline;
	}

img.alignleft {
	padding: 4px;
	margin: 0 7px 2px 0;
	display: inline;
	}

.alignright {
	float: right;
	}
	
.alignleft {
	float: left
	}
/* END IMAGES */


/* BEGIN LINKS */
a img {
	border: none;
}

a, a:visited {
	text-decoration: none;
	color: gray;			/* colore da definire! */
}

a:hover {
	text-decoration: underline;
}

/* END LINKS */

/* Nucleus specific code */
.skip {
	display: none;
}


