/*
 Creation and/or Modifications by Antonio Polese - Stefano Vollono - Giovanni Cardo
 *****************************************************************	
	Qube Srl - www.qubestudios.it
	Copyright (c) 2009 Qube Srl
	E-mail : info@qubestudios.it	
 *****************************************************************
*/

/*REGOLE DA SEGUIRE NELL'ELENCARE LE PROPRIETA' RELATIVE AD UN SELETTORE. 

#nomeDiv {
	display:block;									--> Display e posizionamento
	position:relative;								-->	Display e posizionamento
	
	margin: 10px; 									-->	Margini Padding Larghezza e Altezza
	padding: 10px;									-->	Margini Padding Larghezza e Altezza
	width: 700px;									--> Margini Padding Larghezza e Altezza
	height:	500px;									--> Margini Padding Larghezza e Altezza
	
	float:left;										--> Float e clear	
	clear:both;										--> Float e clear
	
	font-family: arial;								--> Font e Stili
	font-size: 11px;								--> Font e Stili
	font-weight: bold;								--> Font e Stili
	font-variant: normal;							--> Font e Stili
	color: red;										--> Font e Stili
	line-height: 21px;								--> Font e Stili
	text-decoration: none;							--> Font e Stili
	text-transform: uppercase;						--> Font e Stili
	
	background-color: red;							--> Sfondi e bordi
	background: url(img.jpg) no-repeat top left;	--> Sfondi e bordi
	border:1px solid #ccc;							--> Sfondi e bordi
	
	overflow: hidden;								--> Addizionali
	visibility: hidden;								--> Addizionali
	z-index: auto;									--> Addizionali
*/


/*
/////////////////////////////LAYOUT STRUTTURA://///////////////////////////////////
Struttura Generale del template.
02. Wrapper
03. Top
05. Content
06. Footer
*/

#wrapper{
	width:990px;
	margin:0 auto;
	background:url(/img/struttura/bgwrapper.png) repeat-y left top;
	padding-bottom:10px;
}

#top{
	height:159px;
	text-align:right;
	background:url(/img/struttura/bgtop.jpg) no-repeat left top;
	width:941px;
	margin-left:25px;
	position:relative;
}

#content {
	margin-left:35px;
	margin-top:5px;
	width:921px;
}

#contentLeft {
	width:190px;
	margin-right:10px;
	float:left;
	padding-top:20px;
}

#contentRight{
	width:710px;
	float:left;
	border-left:1px dotted #CCCCCC;
	padding-left:10px;
}

#footer{
	background-color:#54103D;
	margin-left:35px;
	margin-top:12px;
	padding:10px;
	width:901px;
}


/* \\\\\\\\\\\\\\\\\\\\LAYOUT RICORRENTI DOTTNET\\\\\\\\\\\\\\\\\\\ 
IMPORTANTE: quando manca il moreinformation, al suo posto inserire un <div class="clear"></div> per annullare il float
dei div precedenti.

01. Box con h3 + div class content_box + more information
02. Box con h3 + div class content_box + 2 colonne flottanti + more information
03. Box con h3 + div class content_box + 3 colonne flottanti + more information
04. Box Foto con overflow
*/

/* 01. Box contenuti con h3 + div class content_box + more information */
.container_box{
	padding:0px;
	margin:0px;
}
	
.container_box .content_box{}

.container_box .content_box .moreinformation {
	display:block;
	padding-top:3px;
	border-top:1px dotted #ccc;
	margin-top:5px;
	clear:both;
}
	
/* 02. Box con h3 + div class content_box + 2 colonne flottanti + more information */
.container_box_2columns{
	padding:0px;
	margin:0px;
}
	
.container_box_2columns .content_box {}

.container_box_2columns .content_box .boxleft {
	width:50%;
	display:inline;
	float:left;
}
.container_box_2columns .content_box .boxright{
	width:50%;
	display:inline;
	float:left;
	}

.container_box_2columns .content_box .moreinformation {
	display:block;
	padding-top:3px;
	border-top:1px dotted #ccc;
	margin-top:5px;
}
	
/* 03. Box con h3 + div class content_box + 3 colonne flottanti + more information */

.container_box_3columns{
	padding:0px;
	margin:0px;
}
	
.container_box_3columns .content_box {}

.container_box_3columns .content_box .boxleft {
	width:33%;
	display:inline;
	float:left;
}

.container_box_3columns .content_box .boxcenter {
	width:33%;
	display:inline;
	float:left;
}

.container_box_3columns .content_box .boxright{
	width:33%;
	display:inline;
	float:left;
	}

.container_box_3columns .content_box .moreinformation {
	display:block;
	padding-top:3px;
	border-top:1px dotted #ccc;
	margin-top:5px;
}

/* 04. Box immagine overflow */

.boxphoto{
	width:50px;
	height:50px;
	overflow:hidden;
	position:relative;
}

.boxphoto img {
	width:50px;
	position:relative;
	top:0px;
	left:50%;
	margin-left:-25px;
}

/* 05. Box Sidebar */
.boxSide{
	margin-bottom:20px;
}

.boxSide h2{
	font-size:12px;
	margin-bottom:5px;
}
