body  {
	font: "Lucida Grande", Lucida Sans Unicode, Arial, Verdana, sans-serif;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #FFFFFF;
	background-color: #FFFFFF;
}
.twoColFixLtHdr  #main-header {
	margin: 0 auto;
	text-align: left; /* this overrides the text-align: center on the body element. */
	margin-left: 0px;
	background-image: url(img/bgheader.gif);
} 
.twoColFixLtHdr #header {
	padding: 0px 0px 0px 0px;
	height: 85px;
	width: 1000px;
	text-align: left;
	background-repeat: no-repeat;
} 
.twoColFixLtHdr #header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}

#main{
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	width: 1000px;
}
#main2{
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	width: 1100px;
}

#main-center{
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	background-color: #E0E0E0;
	width: 100%;
	padding-bottom: 30px;
	padding-top: 20px;
	float: left;
}
#sidebar1  {
	float: left; /* since this element is floated, a width must be given */
	width: 500px; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0px 0px 15px 0px;
	color: #333333;
	text-align: left;
	margin-left: 0px;
	left: 0px;
	padding-left: 0px;
}
#mainContent  {
	margin: 0px 0 0 500px; /* the left margin on this div element creates the column down the left side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 0 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	color: #333333;
	text-align: left;
	font-family: "Lucida Grande", "Lucida Sans Unicode", Arial, Verdana, sans-serif;
	padding-top: 0px;
	padding-bottom: 0px;
	padding-right: 5px;
	padding-left: 20px;
} 
#mainContent   a { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	color: #333333;
}
#mainContent    a:hover { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	text-decoration: none;
	color: #666666;
}
#mainContent p  {
	color: #333333;
	font-size: 11px;
	text-align: left;
	font-family: "Lucida Grande", "Lucida Sans Unicode", Arial, Verdana, sans-serif;
	line-height: 16px;
	margin-top: 0px;
	padding-top: 0px;
	margin-bottom: 8px;
} 
#mainContent h2  {
	text-align: left;
	font-family: "Lucida Grande", "Lucida Sans Unicode", Arial, Verdana, sans-serif;
	font-weight: bold;
	font-size: 12px;
	margin-bottom: 12px;
} 
#mainContent  h3  {
	text-align: left;
	font-family: "Lucida Grande", "Lucida Sans Unicode", Arial, Verdana, sans-serif;
	font-weight: bold;
	font-size: 11px;
	margin-bottom: 12px;
} 
#mainContentGallery  {
	margin: 0px 0 0 10px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	color: #333333;
	text-align: left;
	font-family: "Lucida Grande", "Lucida Sans Unicode", Arial, Verdana, sans-serif;
	padding-top: 0px;
	padding-bottom: 0px;
	padding-right: 5px;
	padding-left: 10px;
	background-color: #E0E0E0;
} 
#mainContentGallery  h2  {
	text-align: left;
	font-family: "Lucida Grande", "Lucida Sans Unicode", Arial, Verdana, sans-serif;
	font-weight: bold;
	font-size: 12px;
	margin-bottom: 12px;
} 
#mainContentGallery  h5  {
	text-align: left;
	font-family: "Lucida Grande", "Lucida Sans Unicode", Arial, Verdana, sans-serif;
	font-size: 9px;
	margin-bottom: 12px;
	font-weight: normal;
} 
#footer  {
	background-color: #FFFFFF;
	margin-top: 0px;
	background-image: url(img/bgfooter.gif);
	background-repeat: repeat-x;
} 
#footer  p  {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}
.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}
.listabloc { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	margin-top: 20px;
	padding-bottom: 10px;
	border-bottom-style: solid;
	border-bottom-color: #C7C7C7;
	border-bottom-width: 1px;
	min-height: 100px;
}
.listabloc  a { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	color: #333333;
}
.listabloc   a:hover { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	text-decoration: none;
	color: #666666;
}
.listabloc img { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	margin-left: 30px;
	margin-right: 10px;
	float: right;
	border: 0;
	margin-top: 0px;
}
.listabloc img a{ /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	margin-left: 30px;
	margin-right: 10px;
	float: right;
	border: 0;
	margin-top: 0px;
}
.listapubblicazioni { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	margin-top: 15px;
	padding-bottom: 5px;
	border-bottom-width: 1px;
	width: 260px;
	float: left;
	margin-right: 0px;
	padding-right: 25px;
	min-height: 100px;
}
.listapubblicazioni a { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	text-decoration: none;
	color: #333333;
}
.listapubblicazioni  a:hover { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	text-decoration: none;
	color: #666666;
}
.listapubblicazioni  img { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	float: left;
	margin-right: 10px;
	padding-bottom: 0px;
}
.imgcontent { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	margin-top: 0px;
	padding-bottom: 0px;
	border-bottom-width: 1px;
	width: 70px;
	float: left;
	margin-right: 5px;
	margin-bottom: auto;
	height: 105px;
}
.bloccopubblicazioni { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	margin-top: 0px;
	padding-bottom: 5px;
	border-bottom-width: 1px;
	margin-right: 0px;
	padding-right: 0px;
	float: left;
	margin-bottom: 25px;
}


#topmenu {
	padding-bottom: 0px;
	margin-top: 7px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 17px;
	padding-top: 0px;
	padding-right: 0px;
	padding-left: 0px;
	width: 765px;
	font-size: 9px;
}

#nav {
	margin: 0;
	padding: 0;
	height: 20px;
	list-style: none;
	display: inline;
	overflow: hidden;

	}

#nav li {
	margin: 0;
	padding: 0;
	list-style: none;
	display: inline;
	}
	
#nav li.active a{
	background-position: 0 -40px;
	}

#nav li.active a:hover{
	background-position: 0 -40px;
	}
	
#nav a {
	float: left;
	padding: 20px 0 0 0;
	overflow: hidden;
	height: 0px !important; 
	height /**/:20px; /* for IE5/Win only */
	}
	
#nav a:hover {
	background-position: 0 -20px;
	}

#nav a:active {
	background-position: 0 -40px;
	}
	
#nav a.selected {
	background-position: 0 -40px ;
	}
	
#nav a:hover.selected
{
background-position: 0 -40px;
}
#tbiografia  a  {
	width: 80px;
	background: url(img/biografia.gif) top left no-repeat;
	}
#t2    a  {
	width: 80px;
	background: url(img/biografia.gif) top left no-repeat;
	}
#t32   a  {
	width: 80px;
	background: url(img/biography.gif) top left no-repeat;
	}
#tesposto   a  {
	width: 90px;
	background: url(img/esposto.gif) top left no-repeat;
}
#t3    a  {
	width: 90px;
	background: url(img/esposto.gif) top left no-repeat;
}
#t19   a  {
	width: 96px;
	background: url(img/exibitions.gif) top left no-repeat;
}
#teventi a   {
	width: 128px;
	background: url(img/prossimieventi.gif) top left no-repeat;
}
#t4   a   {
	width: 128px;
	background: url(img/prossimieventi.gif) top left no-repeat;
}
#t23  a   {
	width: 66px;
	background: url(img/events.gif) top left no-repeat;
}
#tpubblicazioni   a  {
	width: 115px;
	background: url(img/pubblicazioni.gif) top left no-repeat;
}
#t5     a  {
	width: 115px;
	background: url(img/pubblicazioni.gif) top left no-repeat;
}
#t25    a  {
	width: 109px;
	background: url(img/publications.gif) top left no-repeat;
}
#tlink    a  {
	width: 48px;
	background: url(img/link.gif) top left no-repeat;
}
#t35   a  {
	width: 48px;
	background: url(img/link.gif) top left no-repeat;
}

#t38   a  {
	width: 48px;
	background: url(img/link.gif) top left no-repeat;
}

#tcontatti a  {
width: 80px;
background: url(img/contatti.gif) top left no-repeat;
}
#t6   a  {
width: 80px;
background: url(img/contatti.gif) top left no-repeat;
}
#t33  a  {
	width: 80px;
	background: url(img/contact.gif) top left no-repeat;
}
#tstampa a  {
	width: 64px;
	background: url(img/stampa.gif) top left no-repeat;
}
#t91 a  {
	width: 64px;
	background: url(img/stampa.gif) top left no-repeat;
}
#t92 a  {
	width: 56px;
	background: url(img/press.gif) top left no-repeat;
}
#tgallery  a  {
	width: 75px;
	background: url(img/gallery.gif) top left no-repeat;
}
#t51   a  {
	width: 75px;
	background: url(img/gallery.gif) top left no-repeat;
}
#t52    a  {
	width: 75px;
	background: url(img/gallery.gif) top left no-repeat;
}

