/* css */

body, html {
	margin: 0;
	padding: 0;
	background-color: rgba(110,31,31,1.00);
}

p {
	line-height: 20pt;
	padding-bottom: 7pt;
}

h1
{
	text-align: center;
	color: firebrick;
	font-size: 32pt;
	font-family: "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";
	text-transform: uppercase;
	font-weight: bold;
}

h2, h3
{
	font-family: "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";
}

h3 {
	text-align: center;
	font-size: 22pt;
}

.center
{
	margin: auto;
	display: block;
}

.topbar {
	overflow: hidden;
	background-color: rgba(110,31,31,1.00);
	position: fixed;
	top: 0;
	left: 0;
	
	width: 100%;
	height: 4.65em;
	z-index: 10;
}

.navigation {
	position: relative;
	float: left;
	height: 100%;
	display: table;
}

.navigation ul {
	list-style: none;
	height: 100%;
	display: table-cell;
}

.navigation ul li {
	display: inline-block;
	height: 100%;
	transition: background-color 0.3s;
	
	font-family: Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, "sans-serif";
	font-size: 16px;
	text-transform: uppercase;
	padding: 0em 0.7em;
	margin: 0em 0.5em;
	
	text-decoration: none;
	color: white;
	font-weight: 500;
	
	line-height: 95px;
	
	letter-spacing: 1pt;
}

.navigation ul li:hover {
	background-color: rgba(239,239,239,1.00);
	transition: background-color 0.5s;
	color: black;
}

.logo {
	position: relative;
	float: right;
	height: 100%;
	display: table;
}

.logo ul {
	list-style: none;
	height: 100%;
	display: table-cell;
}

.logo ul li {
	display: inline-block;
	height: 100%;
	transition: background-color 0.3s;
	
	font-family: Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, "sans-serif";
	font-size: 16px;
	text-transform: uppercase;
	padding: 0em 0.7em;
	margin: 0em 4em;
	
	text-decoration: none;
	color: white;
	font-weight: 500;
	
	line-height: 95px;
	
	letter-spacing: 1pt;
}

.logo ul li:hover {
	background-color: rgba(239,239,239,1.00);
	transition: background-color 0.5s;
	color: black;
}

.active
{
	background-color: rgba(239,239,239,1.00);
}

.main {
	top: 0;
	left: 0;
	width: 100%;
	background-color: rgba(239,239,239,1.00);
}

.content {
	margin: 0em 10%;
	font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";
	padding-bottom: 4em;
	padding-top: 5em;
	letter-spacing: 0.4pt;
}

.frame {
	float: right;
	background-color: #fff;
	margin: 0.75em;
	border: 1px solid #444444;
}

.footer {
	font-family: Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, "sans-serif";
	padding-left: 4em;
	height: 100%;
	border-top: thin solid black;
	color: white;
}





/* GALLERIA IMMAGINI */

.gallery {
  width: 840px;
  margin: 0 auto;
  padding: 5px;
  background: #fff;
  box-shadow: 0 1px 2px rgba(0,0,0,.3);
}

.gallery > div {
  position: relative;
  float: left;
  padding: 5px;
}

.gallery > div > a > img {
  display: block;
  width: 200px;
  transition: .1s transform;
  transform: translateZ(0); /* hack */
}

.gallery > div:hover {
  z-index: 11;
}

.gallery > div:hover > a > img {
  transform: scale(1.7, 1.7);
  transition: .3s transform;
}

.cf:before, .cf:after {
  display: table;
  content: "";
  line-height: 0;
}

.cf:after {
  clear: both;
}