/**
 * Web font
 */

/* titillium-web-300 - latin */
@font-face {
  font-family: 'Titillium Web';
  font-style: normal;
  font-weight: 300;
  src: url('../fonts/titillium-web-v4-latin-300.eot'); /* IE9 Compat Modes */
  src: local('Titillium WebLight'), local('TitilliumWeb-Light'),
       url('../fonts/titillium-web-v4-latin-300.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/titillium-web-v4-latin-300.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/titillium-web-v4-latin-300.woff') format('woff'), /* Modern Browsers */
       url('../fonts/titillium-web-v4-latin-300.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/titillium-web-v4-latin-300.svg#TitilliumWeb') format('svg'); /* Legacy iOS */
}
/* titillium-web-regular - latin */
@font-face {
  font-family: 'Titillium Web';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/titillium-web-v4-latin-regular.eot'); /* IE9 Compat Modes */
  src: local('Titillium Web'), local('TitilliumWeb-Regular'),
       url('../fonts/titillium-web-v4-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/titillium-web-v4-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/titillium-web-v4-latin-regular.woff') format('woff'), /* Modern Browsers */
       url('../fonts/titillium-web-v4-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/titillium-web-v4-latin-regular.svg#TitilliumWeb') format('svg'); /* Legacy iOS */
}
/* titillium-web-600 - latin */
@font-face {
  font-family: 'Titillium Web';
  font-style: normal;
  font-weight: 600;
  src: url('../fonts/titillium-web-v4-latin-600.eot'); /* IE9 Compat Modes */
  src: local('Titillium WebSemiBold'), local('TitilliumWeb-SemiBold'),
       url('../fonts/titillium-web-v4-latin-600.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/titillium-web-v4-latin-600.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/titillium-web-v4-latin-600.woff') format('woff'), /* Modern Browsers */
       url('../fonts/titillium-web-v4-latin-600.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/titillium-web-v4-latin-600.svg#TitilliumWeb') format('svg'); /* Legacy iOS */
}

.disabled {
   pointer-events: none;
   cursor: default;
   opacity: 0.5;
}

.cliccabile {
    cursor: pointer;
}

/**
 * Header
 */
 .header {
 	-webkit-transition: all .5s ease;
	transition: all .5s ease;
 }
 
.header-top .logo {
	float: left;
	height: 60px;
	-webkit-transition: all .5s ease;
	transition: all .5s ease;
	border: none;
}

.header-top .title {
	display: block;
	font-size: 20px;
	color: #333;
	padding-left: 20px;
}

.header-top {
	-webkit-transition: all .5s ease;
	transition: all .5s ease;
}

.header-top > .title {
	float: left;
	
}
.header-top > a .user {
	float: left;
	font-size: 16px;
	line-height: 68px;
	margin-left: 25px;
	color: #FF9326;
}

.header-top .links {
	float: right;
	padding-top: 4px;
}

.header-top .links .user {
	display: block;
    text-align: right;
    padding-right: 24px;
    border-top: 1px solid #eee;
    padding-top: 5px;
    margin-top: 8px;
    color: #FF9326;
}
	
.header-top .links a {
	margin: 10px;
	padding: 6px 14px;
	color: #526D8C;
	text-decoration: none;
	font-size: 14px;
}

.header.sticky {
	-webkit-box-shadow: 0px 0px 2px 0px rgba(50, 50, 50, 0.75);
	-moz-box-shadow:    0px 0px 2px 0px rgba(50, 50, 50, 0.75);
	box-shadow:         0px 0px 2px 0px rgba(50, 50, 50, 0.75);
}

.header.sticky,
.header.sticky .header-top {
	height: 50px;
	overflow: hidden;
}

.header.sticky .header-top .links {
	padding-top: 5px;
}

.header.sticky .title
 {
	line-height: 30px;
}

.header.sticky .user {
	display: none;
}

.header.sticky .breadcrumbs {
	height: 0px;
	padding: 0px;
	overflow: hidden;
}

.header.sticky .header-top .logo {
	height: 30px;
	width: auto;
}

.header-top .links a:hover {

}

.header-top .links a i {
	font-size: 20px;
    margin-right: 10px;
    position: relative;
    top: 1px;
}

/* Login */
.userLogin {
	background: #fff;
    padding: 20px 20px 0px 20px;
    width: 100%;
    margin: 0 auto;
    max-width: 450px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
}

.main-content .userLogin h2 {
	margin-bottom: 20px;
}

.main-content .userLogin p {
	margin-bottom: 5px;
}

.userLogin  input[type=text],
.userLogin  input[type=password] {
	width: 100%;
	font-size: 18px;
}

.userLogin label {
	display: initial;
}

.userLogin .block {
	border: none;
	margin-bottom: 0px;
}

/* Breadcrumbs */
.breadcrumbs {
	padding: 5px 20px 5px 0px;
	display: block;
}

.breadcrumbs a {
	text-decoration: none;
	color: #333;
	display: inline-block;
	font-size: 12px;
}

.breadcrumbs .fa {
	margin: 0px 10px;
	color: #999;
	font-size: 9px;
}

/**
 * Validazione campi
 */
.error {color:red;}


/*
-- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- 
Import del foglio di stile del vecchio Easy, da riscrivere o sostituire.
-- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- 
*/

@CHARSET "UTF-8";

html, body {
	padding: 0px;
	margin: 0px;
}

* {
	box-sizing: border-box;
}

.mainBoxDiv {
	margin: 0 auto;
	width: 80%;
	text-align: center;
	padding-top: 15px;
}

.boxDiv {
	cursor: pointer;
	background: none repeat scroll 0 0 #FFFFFF;
	border: 1px solid #CCCCCC;
	display: inline-block;
	height: 170px;
	margin: 3px;
	position: relative;
	width: 32%;
}

.boxDiv:hover {
	border: 1px solid #999
	-moz-box-shadow:  0px  0px 5px #dedede;
	-webkit-box-shadow:  0px  0px 5px #dedede;
	filter: progid:DXImageTransform.Microsoft.Shadow(color='#dedede', Direction=135, Strength=10);
	box-shadow: 0px 0px 5px #dedede;
}

.boxDiv:hover span {
	color: #333333;
}

.boxDiv span {
	background: none repeat scroll 0 0 #EEEEEE;
	bottom: 0;
	left: 0;
	padding: 6px;
	position: absolute;
	text-align: left;
	width: 70%;
	opacity: 0.9;
 	filter: alpha(opacity = 90);
 	font-weight:bold; 
 	color: #696969;
}

div.actions {
	text-align: center;
}

a.action {
	display: inline-block;
	width: 30%;
	margin: 20px 30px;
	padding: 20px 40px;
	border: 1px solid #999;
	background: none;
	text-decoration: none;
	-webkit-transition: all .5s ease;
	transition: all .5s eas;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
}
a.action:hover {
	border-style: solid;
	background: lightgrey;
}

a.action > img {
	width: 128px;
}

a.action > span {
	display: block;
	margin-top: 10px;
	text-align: center;
	font-size: 18px;
	color: #333333;
}

a.action i {
	font-size: 40px;
	color: #666;
}

body {
    background: #f4f4f4;
	color: #333333 !important;
	font-family: Titillium Web,Geneva,sans-serif !important;
	font-size: 12px !important;
}

h1, h2, h3, h1 a, h2 a, h3 a, h4 a, h1 a:hover, h2 a:hover, h3 a:hover, h4 a:hover {
    color: #696969 !important;        
}

.header {
	background: #fff;
	border-bottom: 1px solid #eee;
	width: 100%;
	position: fixed;
	top: 0px;
	left: 0px;
	width: 100%;
	z-index: 2;
}

.header-top, .main, .footer, .header-bottom {
    border: none !important;
}

.header-top {
	 padding-top: 10px;
	 height: 80px;
	 overflow: visible !important;
	 width: 98%;
	 margin: 0 auto;
}

.sitelogo { 
	align:center; 
	margin-top:10px; 
	height:71px; 
	width:175px;
	position: absolute;
	/*background:url(../../image/home.png);*/
}

.boxImg {
	width: 99%;
	height: 100%;
}

.button-list {
	text-align: right;
	background: #fff;
    padding: 10px 10px;
    box-shadow: 0px 0px 1px 0px #ccc;
    border-radius: 6px;
}

form .button-list {
	margin-bottom: 30px;
}

.button {
	background: #FF9326;
	padding: 10px 20px;
	display: inline-block;
	color: #fff;
	text-decoration: none;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	border: none;
	font-size: 13px;
	cursor: pointer;
	font-family:Titillium Web,arial,sans-serif;
}

.button i {
	margin-left: 20px;
}

.button:hover {
	background: #E28221;
}

.button.second {
	background: #666;
	color: #fff;
}

.button.second:hover {
	background: #333;	
}

.button.left {
	float: left;
}

.button.left i {
	margin-left: 0px;
	margin-right: 20px;
}

.text-center {
	text-align: center;
}

.text-right {
	text-align: right;
}

.text-left {
	text-align: left;
}

.tabel-container {
	width: 100%;
	overflow-x: scroll;
	overflow-y: hidden;
}

table {
	width: 100%;
	margin-top: 30px;
	border-collapse: separate;
	border-spacing: 1px;
	background: #eee;
}

table th {
	background: #ccc;
	padding: 10px 5px;
}

table tr td {
	padding: 5px 10px;
	background: #fff;
}

table tr:hover td {
	background: #eee;
}

table td .fa {
	font-size: 20px;
	color: #444;
	margin-right: 10px;
	cursor: pointer;
	opacity: .6;
	padding: 2px 4px;
}

table td .fa.delete {
	color: red;
}

table td .fa:hover {
	opacity: 1;
}

input[type=text],
input[type=password],
input[type=file],
textarea,
select {
	padding: 10px;
	width: 60%;
	background: #fff;
	border: 1px solid #ddd;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
}

/*
form select {
	height: 30px;
}
*/

form .block {
	margin-bottom: 20px;
	border-bottom: 1px solid #ddd;
    padding-bottom: 20px;
}

form .block span {
	font-weight: bold;
}
	
form label {
  display: inline-block;
  width: 30%;
  text-align: right;
  padding-right: 30px;
}​

ul,
ol {
	padding-left: 18px;
}

ul li,
ol li {
	font-size: 14px;
}

.message {
	padding: 20px;
	margin-top: 10px;
	margin-bottom: 20px;	
}

.message .title {
	margin: 0px;
	color: #333 !important;
}

.message.info {
	background: #e3f7fc;
	border: 1px solid #8ed9f6;
}

.message.success {
	background: #b3ffb3;
	border: 1px solid #66ff66;
}

.message.error {
	background: #ffad99;
	border: 1px solid #ff3333;
}


.popup-container {
	position: fixed;
    top: 0px;
    left: 0px;
    height: 100%;
    width: 100%;
    background: rgba(0,0,0,.3);
    z-index: -9999;
    opacity: 0;
}

.popup-container.open {
	opacity: 1;
	z-index: 2;
}

.popup-content {
	width: 80%;
    margin: 0 auto;
    max-width: 600px;
    background: #fff;
    position: relative;
    top: -1000px;
    -webkit-transition: all .5s ease;
	transition: all .5s ease;
	
}

.popup-container.open .popup-content {
	top: 40px;
}

.popup-content .actions {
	text-align: right;
}

.popup-content .title {
	padding: 10px 20px;
	margin: 0px;
	text-align: center;
}

.popup-content .message {
	padding: 10px 20px;
}


.footer {
	 background: none repeat scroll 0 0 #eee;
	 clear: both;
	 padding: 1em 20px;
	 width: 100%;
}

.footer p {
	line-height:1.9em; 
	text-align:left; 
	color:#666; 
	font-weight:bold; 
	font-size:90%;
}

.footer .version {
	float: right;
}

.footer p.credits {
	font-weight: normal;
	font-size: 80%;
	color: #999;
}

.main {
	 border-left: 3px solid #AFAFAF;
	 border-right: 3px solid #AFAFAF;
	 clear: both;
	 display: table;
	 padding: 0px 10px !important;
	 width: 100%;
	 margin: 80px auto 0 auto;
	 position: relative;
}

/*
.main img {
	clear:both; 
	float:left; 
}
*/

.main-navigation {
	 display: table-cell;
	 max-width: 0;
	 overflow: visible !important;
	 padding-right: 10px;
	 vertical-align: top;
	 width: 30%;
}

.main-navigation #tabs ul li a, .main-subcontent #tabs ul li a  { 
	font-size: 70%; 
}

.main-subcontent {
	display: table-cell;
	overflow: visible !important;
	width: 25%;
	max-width: 0;
	padding-left: 10px;
}

.main-content {
	 display: block;
	 overflow: visible !important;
	 width: 100%;
	 padding-top: 70px;
}

.main-content-inside {
	 margin: 15px auto;
	 width: 98%;
}

.page-container {
	font-size: 1em;
	width: 100%;
}

.ui-tabs .ui-tabs-panel {
	 background: none repeat scroll 0 0 transparent;
	 border-top: 1px solid #CCCCCC;
	 padding: 0;
}

.dhxtree_dhx_black, .dhxtree_dhx_skyblue {
	background: none !important;
}

.ui-tabs .ui-tabs-nav {
	background: none repeat scroll 0 0 transparent;
	border: medium none;
	border-radius: 0 0 0 0;
	margin: 0;
	padding: 0.2em 0.2em 0;
}

.ui-tabs {
	border:none;
	background:none;
}

.box {
	 background: none repeat scroll 0 0 #FFFFFF;
	 border: 1px solid #FFFFFF;
	 border-radius: 0 0 0 0;
	 box-shadow: 0 0 1px #999999;
}

.cs_colorBox {
  float:right;
}

.ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active {
	 background: none repeat scroll 0 0 #F4F4F4 !important;
	 border: 1px solid #CCCCCC !important;
	 color: #FFFFFF;
	 font-weight: bold;
}

.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default {
	 background: none repeat scroll 0 0 #F9F9F9;
	 border: none;
	 color: #666666 !important;
	 font-weight: bold;
}

.ui-state-active a, .ui-state-active a:link, .ui-state-active a:visited {
 	color: #666666;
}
.ui-state-default a, .ui-state-default a:link, .ui-state-default a:visited {
 	color: #888888;
}

.ui-tabs .ui-tabs-nav li a {
	 float: left;
	 padding: 1em 1em !important;
	 text-decoration: none;
}

.ui-corner-all, .ui-corner-bottom, .ui-corner-right, .ui-corner-br {
 	border-bottom-right-radius: 0px;
}

.ui-corner-all, .ui-corner-bottom, .ui-corner-left, .ui-corner-bl {
 	border-bottom-left-radius: 0px;
}

.ui-corner-all, .ui-corner-top, .ui-corner-right, .ui-corner-tr {
 	border-top-right-radius: 0px;
}
.ui-corner-all, .ui-corner-top, .ui-corner-left, .ui-corner-tl {
 	border-top-left-radius: 0px;
}

.cerca {
	 background: none repeat scroll 0 0 #F4F4F4;
	 display: block;
	 margin-bottom: 10px;
	 padding: 11px 6px;
}


/* Da qui import EASY - A regime sar� vuoto da qui in poi */

.leftSpan {font-weight: bold }
.rightSpan {left:300px;position:absolute;background-color: #fff }
#div_dati_generali.contactform input.field { width:180px}
#div_dati_generali.contactform select.combo { width:185px}
#div_dati_generali.contactform label.left {width:210px}
.contactform label { font-weight: bold}

/* MAIN CONTENT */
.column1-unit {width:440px;  margin-bottom:10px !important /*Non-IE6*/; margin-bottom:5px /*IE6*/;}
.column2-unit-left {float:left; width:200px; margin-bottom:10px !important /*Non-IE6*/; margin-bottom:5px /*IE6*/;}
.column2-unit-right {float:right; width:200px; margin-bottom:10px !important /*Non-IE6*/; margin-bottom:5px /*IE6*/;}
.column3-unit-left {float:left; width:120px; margin-bottom:10px !important /*Non-IE6*/; margin-bottom:5px /*IE6*/;}
.column3-unit-middle {float:left; width:120px; margin-bottom:10px !important /*Non-IE6*/; margin-bottom:5px /*IE6*/; margin-left:40px;}
.column3-unit-right {float:right; width:120px; margin-bottom:10px !important /*Non-IE6*/; margin-bottom:5px /*IE6*/;}


/*********************/
/*  6. CLEAR FLOATS  */
/*********************/
.page-container:after, .header:after, .header-bottom:after, .header-breadcrumbs:after, .main:after, .main-navigation:after, .main-content:after, .main-content div:after, .main-subcontent:after {content:"."; display:block; height:0; clear:both; visibility:hidden;}
.column1-unit:after, .column2-unit-left:after, .column2-unit-right:after, .column3-unit-left:after, .column3-unit-middle:after, .column3-unit-right:after {content:"."; display:block; height:0; clear:both; visibility:hidden;}
 p:after {content:"."; display:block; height:0; /*clear:both*/; visibility:hidden;}
.footer:after {content:"."; display:block; height:0; clear:both; visibility:hidden;}
.clear-contentunit {clear:both; width:440px; height:0.1em; border:none; background:rgb(210,210,210); color:rgb(210,210,210);}

/* MAIN CONTENT */
.main-content h1.pagetitle {margin:0 0 0.4em 0; padding:0 0 2px 0; border-bottom:solid 7px rgb(225,225,225); font-family:"Titillium Web",arial,sans-serif; color:rgb(100,100,100); font-weight:bold; font-size:220%;}
.main-content h1.block {clear:both; margin:1.0em 0 0em 0; padding:2px 0 2px 2px; background:rgb(190,190,190); font-family:"Titillium Web",arial,sans-serif; color:rgb(255,255,255); font-weight:bold; font-size:220%;}
.main-content h1 {clear:both; margin:0em 0 1em 0; font-family:"Titillium Web",arial,sans-serif; color:rgb(80,80,80); font-weight:normal; font-size:18px; border-bottom: 1px solid #ddd; padding: 10px 20px; border-bottom: 1px solid #B6C0D1; background: #526D8C; color: #fff !important; position: absolute; top: 0px; left: 0px; width: 100%;}
.main-content h2 {clear:both; margin:1.0em 0 0.5em 0; font-family:"Titillium Web",arial,sans-serif; color:rgb(80,80,80); font-weight:normal; font-size:170%;}
.main-content h3 {clear:both; margin:-1.0em 0 0.5em 0; font-family:"Titillium Web",arial,sans-serif; color:rgb(125,125,125); font-weight:normal; font-size:130%;}
.main-content h1.side {clear:none;}
.main-content h2.side {clear:none;}
.main-content h3.side {clear:none;}

.main-content h4 {margin:1.5em 0 1.0em 0; color:rgb(80,80,80); font-family:"Titillium Web",arial,sans-serif; font-weight:normal; font-size:170%;}
.main-content h5 {margin:1.5em 0 1.0em 0; color:rgb(80,80,80); font-family:"Titillium Web",arial,sans-serif; font-size:140%;}
.main-content h6 {margin:1.2em 0 0.2em 0; color:rgb(80,80,80); font-weight:bold; font-size:120%;}
.main-content p {margin:0 0 1.0em 0; line-height:1.5em; font-size:120%;}
.main-content p.center {text-align:center;}
.main-content p.right {text-align:right;}
.main-content p.details {clear:both; margin:-0.25em 0 1.0em 0; line-height:1.0em; font-size:110%;}
.main-content blockquote {clear:both; margin:0 30px 0.6em 30px; font-size:90%;}

p.caption {clear:both; margin:0.5em 0 2.0em 20px; text-align:left; color:rgb(80,80,80); font-size:110%;}

.contactform {width:418px; margin:2.0em 0 0 0; padding:10px 10px 0 10px; border:solid 1px rgb(200,200,200); background-color:rgb(240,240,240);}
.contactform fieldset {padding:20px 0 0 0 !important /*Non-IE6*/; padding:0 /*IE6*/; margin:0 0 20px 0; border:solid 1px rgb(220,220,220);}
.contactform fieldset legend {margin:0 0 0 5px !important /*Non-IE*/; margin:0 0 20px 5px /*IE6*/; padding:0 2px 0 2px; color:rgb(80,80,80); font-weight:bold; font-size:130%;}
.contactform label.left {float:left; width:100px; margin:0 0 0 10px; padding:2px; font-size:110%;}
.contactform select.combo {width:175px; padding:2px; border:solid 1px rgb(200,200,200); font-family:Titillium Web,arial,sans-serif; font-size:110%;}
.contactform input.field {width:275px; padding:2px; border:solid 1px rgb(200,200,200); font-family:Titillium Web,arial,sans-serif; font-size:110%;}
.contactform textarea {width:275px; padding:2px; border:solid 1px rgb(200,200,200); font-family:Titillium Web,arial,sans-serif; font-size:110%;}
.contactform input.button {float:right; width:9.0em; margin-right:20px; padding:1px !important /*Non-IE6*/; padding:0 /*IE6*/; background:rgb(230,230,230); border:solid 1px rgb(150,150,150); text-align:center; font-family:Titillium Web,arial,sans-serif; color:rgb(150,150,150); font-size:110%;}
.contactform input.button:hover {cursor: pointer; border:solid 1px rgb(80,80,80); background:rgb(220,220,220); color:rgb(80,80,80);}

.tabellaRisultati .tdCenter {text-align: center; }
.tabellaRisultati .tdRight {text-align: right;}
.tabellaRisultati textarea { width:95%;	height:40px; overflow: auto; font-family: Titillium Web; font-size: 10px;	padding:3px; margin:5px; }

.tabellaDettagli td { vertical-align: middle; }
.tabellaDettagli a { 	border-width: 10px; }
.tabellaDettagli a img, .tabellaDettagli a:hover img  {	clear: none; float: none; border-width: 0px; vertical-align:middle; }
.tabellaDettagli select {width:200px}

.popup { margin:1em;overflow: auto;}
.popup .tabellaCostanti { width:230px;	border-collapse: collapse; border:solid 2px rgb(220,220,220); }
.popup thead, .popup tbody { }
.popup th {	text-align:center;	font-size: 190%;}
.popup td {	padding-left: 0.5em;	text-align:left;  }
.popup thead tr { height: 40px; font-family:"Titillium Web",arial,sans-serif}
.popup tbody tr {height: 20px;font-family:sans-serif}
.popup tfoot tr { height:40px;}
.popup tfoot td { text-align:center;}

.popup a {	text-decoration: none; }
.popup a img {	border-width: 0px;	margin:0px 15px 0px 15px;  vertical-align: middle }

.importo {width:5em}

input.button {
	background:#E6E6E6 none repeat scroll 0%;
	border:1px solid #969696;
	color:#969696;
	float:right;
	font-family:Titillium Web,arial,sans-serif;
	font-size:110%;
	margin-right:20px;
	padding:1px !important;
	text-align:center;
	cursor:pointer;
	width:150px;
}

input.button:hover {
	background:#DCDCDC none repeat scroll 0%;
	border:1px solid #505050;
	color:#505050;
	cursor:pointer;
	width:150px;
}
	
.pPageStat {
	font-weight:bold;
}


/* Responsive */
@media (max-width: 640px) {
	.header-top {
		height: auto;
		overflow: hidden !important;
	}
	.header-top .logo {
		height: 40px;
	}
	.header-top > a .user {
		display: block;
		margin-left: 0px;
		width: 100%;
		text-align: center;
	}
	.header-top > a .title,
	.header-top > a .user {
		line-height: 40px;
	}
	.header-top .links {
		text-align: center;
		width: 100%;
		padding: 20px;
	}
	
	div.reports a.downloadReport span.fileLastModified {
		float: none !important;
		border: none !important;
		padding: 0px 0px 11px 35px !important;
		display: block;
	}
	
	div.reports a.downloadReport .download {
		top: -29px !important;
	}
	
	div.reports a.downloadReport > span.month {
		display: block;
		padding-left: 36px;
	}
	
	a.action {
		width: 100% !important;
		margin: 0px 0px 20px 0px !important;
		padding:  20px 0px !important;
	}
	
	.button {
		width: 100%;
		margin-bottom: 20px;
		text-align: center;
	}
	
	.main {
		margin: 166px auto 0 auto;
		display: block;
	}
	
	.main-content h1 {
		text-align: center;
	}
	
	.header-top .links .user {
		text-align: center;
	}
	
	.header.sticky .header-top .links {
		width: auto;
		padding: 5px 0px;
	}
	
	.header.sticky .header-top .links span {
		display: none;
	}
	
	.header.sticky .header-top .links a {
		margin: 10px 0px;
		padding: 5px;
	}
}

/* STILE INPUT IN BARRA DI RICERCA PER DATATABLE */
div.dataTables_filter input{
	height:			39px; 				/* stessa altezza dello "Show | n | entries" */
	border: 		1px solid #ddd;
	border-radius: 	4px;
}

/* STILE TOOLTIP QTIP*/
.tooltipStyle {
	font-size: 15px;
	font-style: italic;
	line-height: 110%;
	max-width: 100%; 
	min-width: 50px; 
}