/* Copyright (C) Infinitive Web S.A., Infinitive Web S.A. Proprietary Use License (http://www.infinitive.ch/license) */

/*
 * Layout Style Sheet - Provides a fluid grid and helper classes to create any layout and some layout defaults
 */


/* Grid and Clearing Tools
----------------------------------------------------------------------------------------------------*/

.clearfix:before,
.clearfix:after,
.grid-block:before,
.grid-block:after,
.deepest:before,
.deepest:after {
	content: "";
    display: table;
}
.clearfix:after,
.grid-block:after,
.deepest:after { clear: both; }

.grid-box { float: left; }

/* Grid Units */
.width15 { width: 15%; }
.width16 { width: 16.666%; }
.width20 { width: 20%; }
.width25 { width: 25%; }
.width33 { width: 33.333%; }
.width40 { width: 40%; }
.width45 { width: 45%; }
.width50 { width: 50%; }
.width60 { width: 60%; }
.width66 { width: 66.666%; }
.width75 { width: 75%; }
.width80 { width: 80%; }
.width85 { width: 85%; }
.width100 { width: 100%; }

.width16,
.width20,
.width25,
.width33,
.width40,
.width45,
.width50,
.width60,
.width66,
.width75,
.width80,
.width100 {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

/* Create new Block Formatting Contexts */
.bfc-o { overflow: hidden; }
.bfc-f {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	width: 100%;
	float: left;
}

/* Align Boxes */
.float-left { float: left; }
.float-right { float: right; }

/* Grid Gutter */
.grid-gutter.grid-block { margin: 0 -15px; }
.grid-gutter > .grid-box > * { margin: 0 15px; }

.grid-gutter > .grid-box > * > :first-child { margin-top: 0; }
.grid-gutter > .grid-box > * > :last-child { margin-bottom: 0; }


/* Layout Defaults
----------------------------------------------------------------------------------------------------*/

/* Center Page */
.wrapper {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	margin: auto;
}

/* Topbar */
#topbar {

}

#topbar .wrapper {
	background: url(../../images/header_top@2x.png) 50% 0 no-repeat;
	background-size: 100%;
	min-height:210px;
}

/* Logo */
#logo {
	padding: 18px 0px 8px;
	z-index: 4;
	float:left;
}

/* Menubar */
#menubar {
	clear:both;
	z-index: 3;
	height: 41px;
	line-height: 41px;
	width: 100%;
	background: #ffffff;
	background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNmNWY1ZjUiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
	background: -moz-linear-gradient(top,  #ffffff 0%, #f5f5f5 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(100%,#f5f5f5));
	background: -webkit-linear-gradient(top,  #ffffff 0%,#f5f5f5 100%);
	background: -o-linear-gradient(top,  #ffffff 0%,#f5f5f5 100%);
	background: -ms-linear-gradient(top,  #ffffff 0%,#f5f5f5 100%);
	background: linear-gradient(to bottom,  #ffffff 0%,#f5f5f5 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#f5f5f5',GradientType=0 );
	border-radius:4px;
	border:1px solid #fefefe;
	box-shadow:0px 2px 1px #dedede;
}

#ombra_menubar {
	-webkit-mask-box-image: -webkit-linear-gradient(left,transparent 0%,rgba(0,0,0,.8) 50%,transparent 100%);
	background-color: transparent;
	background-image: -webkit-linear-gradient(top,rgba(0,0,0,.4),transparent);
	background-image: -moz-linear-gradient(top,rgba(0,0,0,.4),transparent);
	background-image: -ms-linear-gradient(top,rgba(0,0,0,.4),transparent);
	background-image: -o-linear-gradient(top,rgba(0,0,0,.4),transparent);
	background-image: linear-gradient(top,rgba(0,0,0,.4),transparent);
	border-top: 1px solid rgba(0,0,0,0.4);
	height: 8px;
	margin: -1px 0 -9px 0;
	opacity: 0;
	width: 960px;
	top: 43px;
	z-index: 10;
}

/* Breadcrumbs */
#breadcrumbs {
	color:#333333;
	margin: 10px 0;
	font-size: 12px;
	text-transform:uppercase;
	/*float: left;*/
	border-bottom: 2px solid #e5e5e5;
	/*padding: 0 11px 5px 0;*/
	/*line-height: 11px;*/
}

/* Social */
#social {
	margin: 5px 0;
	font-size: 12px;
	float: right;
	padding: 0px 10px;
	height: 22px;
}

#social .module {
	/*float:left;*/
}

#social .module p {
	margin:0;
}

/* Header */
#header {
	position: relative;
	/*height: 335px;*/
	/*overflow: hidden;*/
}

#header div.module .emax {
	background: url(../../images/header_emax@2x.png) 50% 0 no-repeat;
	background-size: 100% 100%;
	height: 328px;
	margin: -5px 0;
}

#header h2 {
	font-size: 46px;
	font-weight: normal;
	color: #303030;
	line-height: 50px;
}

#header h3 {
	color: #fff;
	font-size: 36px;
}

#header p {
	color: #fff;
	font-size: 16px;
}

/* Block Toolbar */
#block-toolbar {
	height:25px;
	background:#424345;
}

#block-toolbar ul.menu-line {
	margin: 0px;
}

#block-toolbar ul.menu-line li {
	background: none;
	margin: 2px 0px;
	font-size: 10px;
	color: #ededed;
}

#block-toolbar ul.menu-line li a, #block-toolbar ul.menu-line li a:hover {
	color: #ededed;
}

/* Block Social */
#block-social {
	min-height:50px;
}

/* Block Main */
#block-main {
	padding: 10px;
	border-bottom: 7px solid #6f7cd1;
}

#bottom-main-a .module {
	background: white;
	margin-bottom:40px;
}

#bottom-main-a h1, #bottom-main-a h2, #bottom-main-a h3, #bottom-main-a h4, #bottom-main-a h5, #bottom-main-a h6 {
	background: #f3f3f3;
	color: #404040;
	font-size: 20px;
	margin: 0px;
	border-bottom: 2px dashed #d0d0d0;
	line-height: 26px;
}

#bottom-main-a p {
	padding: 0px 10px;
}

#bottom-main-a h3 span {
	color:#406cc5;
}

/* Block Bottom */
#block-bottom {
	/*padding: 0 0 25px;*/
	border-top: 8px solid #161518;
	font-size: 11px;
	min-height:42px;
	background: #1e1b22;
	line-height: 34px;
	color: #fff;
	text-align:center;
}

#block-bottom a, #block-bottom a:hover{
	color: #fff;
}

#block-bottom .menu-line li {
	margin:0px;
	padding: 0 20px;
}

#toolbar .float-left .module,
#toolbar .float-left > time {
	margin: 0 15px 0 0;
	float: left;
}

#toolbar .float-right .module {
	margin: 0 0 0 15px;
	float: right;
}

#headerbar .module {
	max-width: 300px;
	margin-right: 0;
	float: right;
}

#logo, #logo > img { }
#menu { float: left; }
#search { float: right; }

#banner {
	position: absolute;
	top: 0;
	right: -200px;
}

/* Block Footer */
#block-footer {
	border-top: 1px solid #39363c;
	/*min-height: 290px;*/
	line-height: 20px;
	color: #828b9f;
	font-size: 12px;
	background: #2d2a30;
}

/* Footer */
#footer {
	position: relative;
}

#footer a, #footer a:hover {
	color: #828b9f;
}

#footer-social {
	float:right;
	padding-top: 10px;
}

/* Absolute */
#absolute {
	position: absolute;
	z-index: 15;
	width: 100%;
}

#aree {
	overflow: hidden;
}

#aree .moduletable {
	float:left;
	width:30%;
	height: 180px;
	background: rgb(255,255,255);
	background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJod…EiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
	background: -moz-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(250,250,250,1) 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(255,255,255,1)), color-stop(100%,rgba(250,250,250,1)));
	background: -webkit-linear-gradient(top, rgba(255,255,255,1) 0%,rgba(250,250,250,1) 100%);
	background: -o-linear-gradient(top, rgba(255,255,255,1) 0%,rgba(250,250,250,1) 100%);
	background: -ms-linear-gradient(top, rgba(255,255,255,1) 0%,rgba(250,250,250,1) 100%);
	background: linear-gradient(to bottom, rgba(255,255,255,1) 0%,rgba(250,250,250,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#fafafa',GradientType=0 );
	border-radius: 4px;
	box-shadow: 0 -1px 6px #aeaeae, 0px 2px 6px #fff;
	padding: 0px 10px;
	margin: 10px 6px;
}

#aree .moduletable h3 {
	color:#404040;
}

.button {
	background: #758ba0;
	border:0px;
	/*border: 1px solid #647dd4;
	box-shadow: 0px 1px 2px #92a3e9 inset;*/
	text-transform: uppercase;
	color: #ffffff;
	font-size: 14px;
	text-align: center;
	border-radius: 3px;
	float: left;
	line-height: 30px;
	padding: 0 10px;
	font-weight:bold;
	transition-property: background-color; /*standard*/
	transition-duration: 0.2s;
	-webkit-transition-property: background-color; /*Safari e Chrome */
	-webkit-transition-duration: 0.2s;
	-o-transition-property: background-color;      /*Opera*/
	-o-transition-duration: 0.2s;     
	-moz-transition-property: background-color;    /*Firefox*/
	-moz-transition-duration: 0.2s;
}

a.button, .button a {
	color:#fff;
}

input:hover .button, a:hover .button, .button a:hover {
	background: #566c82;
}

.button.orange {
	background: #ff9000;
	border:0px;
	/*border: 1px solid #fea73b;
	box-shadow: 0px 1px 2px #fbbf6d inset;
	line-height:50px;*/
}

a:hover .button.orange {
	background: #ff6c00;
}

.button_orange_l {
	background: url(../../images/btn_call_sx@2x.png) 0 0 no-repeat;
	background-size: 39px 76px;
	float:left;
	width: 39px;
	height: 76px;
}

.button_orange_c {
	background: url(../../images/btn_call_center@2x.png) 0 0 repeat-x;
	text-transform: uppercase;
	color: #ffffff;
	font-size: 14px;
	text-align: center;
	float: left;
	line-height: 72px;
	font-weight:bold;
	height: 76px;
	background-size: 100% 76px;
	padding-right: 15px;
}
.button_orange_c span {
	margin-left:-15px;
}

.button_orange_r {
	background: url(../../images/btn_call_dx@2x.png) 0 0 no-repeat;
	background-size: 60px 76px;
	float:left;
	width: 60px;
	height: 76px;
}

.icon-background {
	line-height: 70px;
	font-size: 50px;
	width: 70px;
	background: #758ba0;
	margin-right: 10px;
	color: #fff;
	border-radius: 4px;
	transition-property: background-color; /*standard*/
	transition-duration: 0.2s;
	-webkit-transition-property: background-color; /*Safari e Chrome */
	-webkit-transition-duration: 0.2s;
	-o-transition-property: background-color;      /*Opera*/
	-o-transition-duration: 0.2s;     
	-moz-transition-property: background-color;    /*Firefox*/
	-moz-transition-duration: 0.2s;
}

.icon-background:hover {
	background: #566c82;
}

.popover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1010;
  display: none;
  width: 300px;
  padding: 1px;
  background-color: #ffffff;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.2);
  -webkit-border-radius: 6px;
     -moz-border-radius: 6px;
          border-radius: 6px;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
     -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
          box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  -webkit-background-clip: padding-box;
     -moz-background-clip: padding;
          background-clip: padding-box;
/*  -webkit-transition: all 0.4s ease-out 0.3s;
  	-moz-transition: all 0.4s ease-out 0.3s;
  	-o-transition: all 0.4s ease-out 0.3s;
  	-ms-transition: all 0.4s ease-out 0.3s;
  	transition: all 0.4s ease-out 0.3s;*/
}

.popover.top {
  margin-top: -20px;
}

.popover.right {
  margin-left: 10px;
}

.popover.bottom {
  margin-top: 10px;
}

.popover.left {
  margin-left: -10px;
}

.popover-title {
  padding: 8px 14px;
  margin: 0px;
  font-size: 14px;
  font-weight: normal;
  line-height: 18px;
  background-color: #f7f7f7;
  border-bottom: 1px solid #ebebeb;
  -webkit-border-radius: 5px 5px 0 0;
  -moz-border-radius: 5px 5px 0 0;
  border-radius: 5px 5px 0 0;
}

.popover-content {
  padding: 6px 14px 9px;
}

.popover-content p,
.popover-content ul,
.popover-content ol {
  margin: 0;
}

.popover .arrow,
.popover .arrow:after {
  position: absolute;
  display: inline-block;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}

.popover .arrow:after {
  z-index: -1;
  content: "";
}

.popover.top .arrow {
  bottom: -10px;
  left: 50%;
  margin-left: -10px;
  border-top-color: #ffffff;
  border-width: 10px 10px 0;
}

.popover.top .arrow:after {
  bottom: -1px;
  left: -11px;
  border-top-color: rgba(0, 0, 0, 0.25);
  border-width: 11px 11px 0;
}

.popover.right .arrow {
  top: 50%;
  left: -10px;
  margin-top: -10px;
  border-right-color: #ffffff;
  border-width: 10px 10px 10px 0;
}

.popover.right .arrow:after {
  bottom: -11px;
  left: -1px;
  border-right-color: rgba(0, 0, 0, 0.25);
  border-width: 11px 11px 11px 0;
}

.popover.bottom .arrow {
  top: -10px;
  left: 50%;
  margin-left: -10px;
  border-bottom-color: #ffffff;
  border-width: 0 10px 10px;
}

.popover.bottom .arrow:after {
  top: -1px;
  left: -11px;
  border-bottom-color: rgba(0, 0, 0, 0.25);
  border-width: 0 11px 11px;
}

.popover.left .arrow {
  top: 50%;
  right: -10px;
  margin-top: -10px;
  border-left-color: #ffffff;
  border-width: 10px 0 10px 10px;
}

.popover.left .arrow:after {
  right: -1px;
  bottom: -11px;
  border-left-color: rgba(0, 0, 0, 0.25);
  border-width: 11px 0 11px 11px;
}

.box-footer {
	background: #484848;
	border-radius: 4px;
	padding: 12px;
	color: #cfcfcf;
	font-size: 11px;
}

.box-footer h1, .box-footer h2, .box-footer h3, .box-footer h4, .box-footer h5, .box-footer h6 {
	text-transform:uppercase;
	border-bottom: 0px;
	color: #cfcfcf;
	font-size: 11px;
	line-height:12px;
	margin:0px;
}

.box-footer p {
	margin:5px 0 0;
	line-height: 15px;
}

.box-home ul {
	padding:0px;
	list-style:none;
	overflow:hidden;
}

.box-home li {
	float: left;
}
.box-home li div.box {
	float: left;
	background: rgb(255,255,255);
	background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJod…EiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
	background: -moz-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(250,250,250,1) 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(255,255,255,1)), color-stop(100%,rgba(250,250,250,1)));
	background: -webkit-linear-gradient(top, rgba(255,255,255,1) 0%,rgba(250,250,250,1) 100%);
	background: -o-linear-gradient(top, rgba(255,255,255,1) 0%,rgba(250,250,250,1) 100%);
	background: -ms-linear-gradient(top, rgba(255,255,255,1) 0%,rgba(250,250,250,1) 100%);
	background: linear-gradient(to bottom, rgba(255,255,255,1) 0%,rgba(250,250,250,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#fafafa',GradientType=0 );
	border-radius: 4px;
	box-shadow: 0 -1px 6px #aeaeae, 0px 2px 6px #fff;
	padding: 10px;
	margin: 5px 12px;
	overflow: hidden;
}

.box-home li:last-child div.box {
	margin-right: 12px;
}

.box-home li:first-child div.box {
	margin-left: 12px;
}

.box-home li div.box h2 {
	
}

.box-home li div.box p {
	
}

.box-home-footer {
	background: #818289 url(../../images/btn_box@2x.png) 95% 50% no-repeat;
	background-size: 18px 18px;
	padding: 12px 16% 12px 0%;
	text-align: right;
	font-size: 12px;
	margin: 10px -10px -10px;
	border-radius: 0px;
	color: #fff;
	clear: both;
	box-shadow: 0 0 0px;
}

.box-home-footer p{
	margin: 0px;
}

#users {
	margin-top:15px;
}

#users .module {
	padding: 0 10px;
}

#users .module .module-title {
	color:#828b9f;
	border:0px;
	margin-bottom:0px;
	font-size: 16px;
	line-height: 20px;
}

#users .menu li {
	border:0px;
}

#users .menu span, #users .menu span:hover {
	color: #828b9f;
	padding:0px;
}

#wiki {
	float:left;
	width:100%;
}

#wiki_img {
	float:left;
	padding: 0px 10px 10px 0px;
}

#wiki_txt {
}

#infografica {
	overflow:hidden; background: #e5e5e5; border-radius:30px;
	padding:30px;
}

.bollino {
	float:left;
	width: 114px;
	height: 114px;
	background-position:center center;
	opacity:1;
	-webkit-backface-visibility: hidden;
	background: url(../../images/infografica/flag_1@2x.png) 50% 50% no-repeat;
	background-size: 20%;
}

#mappa3 .bollino {
	width: 106px;
	height: 106px;
}

.bollino p, .bollino .icon {
	opacity:0;
	text-align: center;
	margin-top: 0px;
	font-size: 11px;
}

.bollino.show {
	-webkit-transition: all 0.6s ease-in-out;
	-moz-transition: all 0.6s ease-in-out;
	-o-transition: all 0.6s ease-in-out;
	-ms-transition: all 0.6s ease-in-out;
	transition: all 0.6s ease-in-out;
	opacity:1;
}

.bollino.show p {
	-webkit-transition: all 0.6s ease-in-out 0.6s;
	-moz-transition: all 0.6s ease-in-out 0.6s;
	-o-transition: all 0.6s ease-in-out 0.6s;
	-ms-transition: all 0.6s ease-in-out 0.6s;
	transition: all 0.6s ease-in-out 0.6s;
	opacity:1;
	text-align:center;
	line-height: 12px;
	padding: 0 12px;
}

.bollino.show .icon {
	-webkit-transition: all 0.6s ease-in-out 0.6s;
	-moz-transition: all 0.6s ease-in-out 0.6s;
	-o-transition: all 0.6s ease-in-out 0.6s;
	-ms-transition: all 0.6s ease-in-out 0.6s;
	transition: all 0.6s ease-in-out 0.6s;
	opacity:1;
}

#infografica_1_2 {
	background: url(../../images/infografica/level_1_2@2x.png) 0 0 no-repeat;
	float:left;
	background-size:100%;
	width: 532px;
	height: 916px;
	margin-left:-15px;
}

#infografica_3 {
	background: url(../../images/infografica/level_3@2x.png) 0 0 no-repeat;
	float:left;
	background-size:100%;
	width: 891px;
	height: 878px;	
}

#txt1 {
	width:114px;
	height:114px;
	float:left;
}

#mappa1 {
	float:left;
	width: 532px;
	height: 375px;
}

#mappa1 .bollino.show {
	background: url(../../images/infografica/bollino_level1@2x.png) 50% 50% no-repeat;
	background-size:100%;
}

#mappa2 {
	float:left;
	width: 522px;
	height: 443px;
	
}

#mappa2 .bollino.show {
	background: url(../../images/infografica/bollino_level2@2x.png) 50% 50% no-repeat;
	background-size:100%;
}

#mappa3 {
	float:left;
	width: 891px;
	height: 878px;
}

#mappa3 .bollino.show {
	background: url(../../images/infografica/bollino_level3@2x.png) 50% 50% no-repeat;
	background-size:100%;
}

#mappa1 .icon.n1 {
	background: url(../../images/infografica/ico_1_level1@2x.png) 0 0 no-repeat;
	background-size:100%;
	width:52px;
	height:41px;
	margin: 20px auto 5px;
}

#mappa1 .icon.n2 {
	background: url(../../images/infografica/ico_2_level1@2x.png) 0 0 no-repeat;
	background-size:100%;
	width:49px;
	height:37px;
	margin: 20px auto 5px;
}

#mappa1 .icon.n3 {
	background: url(../../images/infografica/ico_3_level1@2x.png) 0 0 no-repeat;
	background-size:100%;
	width:51px;
	height:41px;
	margin: 20px auto 5px;
}

#mappa1 .icon.n4 {
	background: url(../../images/infografica/ico_4_level1@2x.png) 0 0 no-repeat;
	background-size:100%;
	width:40px;
	height:41px;
	margin: 20px auto 5px;
}

#mappa2 .icon.n1 {
	background: url(../../images/infografica/ico_1_level2@2x.png) 0 0 no-repeat;
	background-size:100%;
	width:49px;
	height:40px;
	margin: 20px auto 5px;
}

#mappa2 .icon.n2 {
	background: url(../../images/infografica/ico_2_level2@2x.png) 0 0 no-repeat;
	background-size:100%;
	width:42px;
	height:44px;
	margin: 20px auto 5px;
}

#mappa2 .icon.n3 {
	background: url(../../images/infografica/ico_3_level2@2x.png) 0 0 no-repeat;
	background-size:100%;
	width:41px;
	height:39px;
	margin: 20px auto 5px;
}

#mappa2 .icon.n4 {
	background: url(../../images/infografica/ico_4_level2@2x.png) 0 0 no-repeat;
	background-size:100%;
	width:31px;
	height:31px;
	margin: 20px auto 5px;
}

#mappa2 .icon.n5 {
	background: url(../../images/infografica/ico_5_level2@2x.png) 0 0 no-repeat;
	background-size:100%;
	width:35px;
	height:40px;
	margin: 20px auto 5px;
}

#mappa2 .icon.n6 {
	background: url(../../images/infografica/ico_6_level2@2x.png) 0 0 no-repeat;
	background-size:100%;
	width:42px;
	height:40px;
	margin: 20px auto 5px;
}

#mappa2 .icon.n7 {
	background: url(../../images/infografica/ico_7_level2@2x.png) 0 0 no-repeat;
	background-size:100%;
	width:48px;
	height:41px;
	margin: 20px auto 5px;
}

#mappa2 .icon.n8 {
	background: url(../../images/infografica/ico_8_level2@2x.png) 0 0 no-repeat;
	background-size:100%;
	width:44px;
	height:38px;
	margin: 20px auto 5px;
}

#mappa3 .icon.p1 {
	background: url(../../images/infografica/pianoedit_ico_3@2x.png) 0 0 no-repeat;
	background-size:100%;
	width:33px;
	height:34px;
	margin: 20px auto 5px;
}
#mappa3 .icon.p2 {
	background: url(../../images/infografica/pianoedit_ico_4@2x.png) 0 0 no-repeat;
	background-size:100%;
	width:41px;
	height:38px;
	margin: 0px auto 5px;
}
#mappa3 .icon.p3 {
	background: url(../../images/infografica/pianoedit_ico_5@2x.png) 0 0 no-repeat;
	background-size:100%;
	width:43px;
	height:35px;
	margin: -5px auto 5px;
}
#mappa3 .icon.c1 {
	background: url(../../images/infografica/campagnepro_ico_1@2x.png) 0 0 no-repeat;
	background-size:100%;
	width:44px;
	height:43px;
	margin: 10px auto 5px;
}
#mappa3 .icon.c2 {
	background: url(../../images/infografica/campagnepro_ico_5@2x.png) 0 0 no-repeat;
	background-size:100%;
	width:37px;
	height:36px;
	margin: 15px auto 5px;
}
#mappa3 .icon.c3 {
	background: url(../../images/infografica/campagnepro_ico_3@2x.png) 0 0 no-repeat;
	background-size:100%;
	width:41px;
	height:45px;
	margin: -10px auto 5px;
}
#mappa3 .icon.c4 {
	background: url(../../images/infografica/campagnepro_ico_4@2x.png) 0 0 no-repeat;
	background-size:100%;
	width:38px;
	height:36px;
	margin: 20px auto 5px;
}
#mappa3 .icon.c5 {
	background: url(../../images/infografica/campagnepro_ico_6@2x.png) 0 0 no-repeat;
	background-size:100%;
	width:37px;
	height:38px;
	margin: 20px auto 5px;
}
#mappa3 .icon.w1 {
	background: url(../../images/infografica/webreputation_ico_1@2x.png) 0 0 no-repeat;
	background-size:100%;
	width:41px;
	height:44px;
	margin: 5px auto 5px;
}
#mappa3 .icon.w2 {
	background: url(../../images/infografica/webreputation_ico_2@2x.png) 0 0 no-repeat;
	background-size:100%;
	width:35px;
	height:37px;
	margin: 10px auto 5px;
}
#mappa3 .icon.w3 {
	background: url(../../images/infografica/webreputation_ico_3@2x.png) 0 0 no-repeat;
	background-size:100%;
	width:38px;
	height:37px;
	margin: 15px auto 5px;
}
#mappa3 .icon.w4 {
	background: url(../../images/infografica/webreputation_ico_7@2x.png) 0 0 no-repeat;
	background-size:100%;
	width:42px;
	height:36px;
	margin: 20px auto 5px;
}
#mappa3 .icon.w5 {
	background: url(../../images/infografica/webreputation_ico_6@2x.png) 0 0 no-repeat;
	background-size:100%;
	width:36px;
	height:38px;
	margin: 20px auto 5px;
}
#mappa3 .icon.a1 {
	background: url(../../images/infografica/webanalytics_ico_2@2x.png) 0 0 no-repeat;
	background-size:100%;
	width:65px;
	height:48px;
	margin: 10px auto 5px;
}
#mappa3 .icon.a2 {
	background: url(../../images/infografica/webanalytics_ico_1@2x.png) 0 0 no-repeat;
	background-size:100%;
	width:29px;
	height:29px;
	margin: 20px auto 5px;
}
#mappa3 .icon.a3 {
	background: url(../../images/infografica/webanalytics_ico_4@2x.png) 0 0 no-repeat;
	background-size:100%;
	width:43px;
	height:42px;
	margin: 10px auto 5px;
}

.freccia_down {
	background: url(../../images/infografica/freccia_fine_liv2@2x.png) 0 0 no-repeat;
	background-size:100%;
	width:34px;
	height:32px;
	float:right;
	margin: 50px 54px 0px;
}

#box-mappa1 {
	background: #6c6e72;
	border-radius: 15px;
	color: #e1e1e1;
	float: right;
	padding: 0 20px;
	width: 270px;
	margin-top:100px;
}

#box-mappa1 h2 {
	font-size: 35px;
	font-family: 'Rockwell';
	font-weight:bold;
	color: #ffffff;
	margin: 20px 0 0 0;
}

#box-mappa1 h3 {
	font-size: 28px;
	font-family: 'Rockwell';
	font-weight:normal;
	color: #a9c1ed;
	margin: 5px 0 0 0;
}

#box-mappa2 {
	background: #6c6e72;
	border-radius: 15px;
	color: #e1e1e1;
	float: right;
	padding: 0 20px;
	width: 270px;
	margin-top:200px;
}

#box-mappa2 h2 {
	font-size: 35px;
	font-family: 'Rockwell';
	font-weight:bold;
	color: #ffffff;
	margin: 20px 0 0 0;
}

#box-mappa2 h3 {
	font-size: 28px;
	font-family: 'Rockwell';
	font-weight:normal;
	color: #ffb7be;
	margin: 5px 0 0 0;
}

#box-mappa3 {
	background: #98b845;
	border-radius: 15px;
	color: #ffffff;
	float: right;
	padding: 0 20px;
	width: 270px;
	margin-top:130px;
}

#box-mappa3 h2 {
	font-size: 35px;
	font-family: 'Rockwell';
	font-weight:bold;
	color: #ffffff;
	margin: 20px 0 0 0;
}

#box-mappa3 h3 {
	font-size: 28px;
	font-family: 'Rockwell';
	font-weight:normal;
	color: #f6ff06;
	margin: 5px 0 0 0;
}
.spec_prod_body {
	float:left;
	width:570px;
	padding-right:30px;
}

.spec_prod_img {
	float:left;
	width:360px;
}

.img_aree {
	border-radius: 4px;
	box-shadow: 0 -1px 6px #aeaeae, 0px 2px 6px #fff;
	text-align: center;
	/*font-size: 300px;
	padding: 27px 0;*/
	width: 360px;
	background:#fff;
	color:#406cc5;
	line-height:normal;
}

.portfolio_col {
	width:30%;
	float:left;
}

.portfolio_col .button {
	float:none;
}

.portfolio_img {
	width:70%;
	float:left;
}

.clienti {
	list-style-type:none;
	float:left;
	text-align:center;
}

.ul_clienti {
	overflow:hidden;
	padding:20px 0;
	margin:0;
}

.recaptcha_image_simple {
	width:270px !important;
	float:left;
}

.recaptcha_image_tab {
	width: 220px !important;
	float:left;
}

.recaptcha_image_tab img {
	width: 210px;
	border-radius:10px;
}

.recaptcha_image_simple img {
	width:260px;
	border-radius:10px;
}

.recaptcha_reload a {
	padding-top: 3px;
	height:18px;
	float:left;
}

.recaptcha_only_if_image a {
	height:15px;
	float:left;
}

.recaptcha_only_if_audio a {
	height:15px;
	float:left;
}

.recaptcha_help a {
	height:18px;
	float:left;
}

.portfolio_img .box-home li {
	float:right;
}

iframe[src="about:blank"]{display:none;}