/***
 * F5 - Content Management System
 * 
 * Copyright © 2014
 * Reload - Laboratorio Multimediale
 * (http://www.reloadlab.it - info@reloadlab.it)
 * 
 * authors: Domenico Gigante (domenico.gigante@reloadlab.it) and Alessio Attanasio (alessio.attanasio@reloadlab.it)
 ***/
@charset "utf-8";

/* BODY */
html, 
body {
	height: 100%;
	background-color: #DAE4ED;
}
body,
td,
th {
	font-family: Arimo, "Trebuchet MS", Arial, Helvetica, sans-serif;
	color: #333;
	font-size: 13px;
	line-height: 18px;
}
html.iframeAttach, 
body.iframeAttach {
	background-color: #fff !important;
	height: auto !important;
}
/* BODY */

/* JQUERY UI */
.ui-widget-header {
	background: #F9EFC2;
	
	-webkit-box-shadow: inset 0px -35px 35px -35px #FFD100;
	-moz-box-shadow: inset 0px -35px 35px -35px #FFD100;
	box-shadow: inset 0px -35px 35px -35px #FFD100;
}
.ui-state-default a, 
.ui-state-default a:link, 
.ui-state-default a:visited {
    color: #777;
}
.ui-state-hover a, 
.ui-state-hover a:hover {
	color: #ffffff;
}
.ui-state-active a, 
.ui-state-active a:link, 
.ui-state-active a:visited {
    color: #006AA0;
}
.ui-widget input, 
.ui-widget select, 
.ui-widget textarea, 
.ui-widget button {
	font-family: Arimo, "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 13px;
}
.ui-tooltip {
	font-family: Arimo, "Trebuchet MS", Arial, Helvetica, sans-serif !important;
	color: #333 !important;
	font-size: 13px !important;
	line-height: 18px !important;
	background: #F9EFC2 !important;
	border: 1px solid #FFD100 !important;
	opacity: 0.85 !important;
	max-width: 40% !important;
	
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;

	-webkit-box-shadow: inset 0px -35px 35px -35px #FFD100;
	-moz-box-shadow: inset 0px -35px 35px -35px #FFD100;
	box-shadow: inset 0px -35px 35px -35px #FFD100;
}
/* JQUERY UI */

/* GENERALE */
a {
	color: #006AA0;
}
img {
	border: 0 none;
	vertical-align: middle;
}
img.resize {
	object-fit: contain;
}
.clear {
	clear: both;
	font-size: 1px;
}
.left {
	float: left;
}
.right {
	float: right;
}
.none {
	display: none;
}
.mr5 {
	margin-right: 5px;
}
.ml5 {
	margin-left: 5px;
}
.mb5 {
	margin-bottom: 5px;
}
.mt5 {
	margin-top: 5px;
}
.noWrap {
	white-space: nowrap;
}
.search {
	margin-bottom: 20px;
}
.boxPad6 {
	padding: 6px;
}
.boxPadAtch {
	padding: 14px 20px;
}
.bgBeige {
	background-color: #F3EFE2;
}
.borderh2 {
	border: 1px solid #EFEAD9;
	border-top: 0 none;
}
.stileAction * {
	vertical-align: middle !important;
}
.actionBar {
	background-color: #F9EFC2;
	padding: 5px 15px;
	border-bottom: 1px solid #FFD100;
	height: 32px;
	line-height: 32px;
	font-size: 16px;
	color: #514303;
	
	text-shadow: 1px 1px 0px #fff;
}
.actionBar strong,
.actionBar b {
	padding-right: 8px;
	text-transform: uppercase;
}
.attachSearch {
	text-align: right;
}
.actionBar .attachSearch {
	width: 30%;
	float: right;
}
.responseOK {
	background-color: #f1edb5;
	padding: 6px 8px;
	color: green;
	font-weight: bold;
	margin-bottom: 10px;
	font-size: 1.2em;
	line-height: 1.2em;
	background-image: url(../images/icon/Y.png);
	background-position: 8px 7px;
	background-repeat: no-repeat;
	padding-left: 32px;
}
.responseKO {
	background-color: #f6e8cd;
	padding: 6px 8px;
	color: red;
	font-weight: bold;
	margin-bottom: 10px;
	font-size: 1.2em;
	line-height: 1.2em;
	background-image: url(../images/icon/exclamation.png);
	background-position: 8px 7px;
	background-repeat: no-repeat;
	padding-left: 32px;
}
.inline {
	display: -moz-inline-stack; /* optional */
	display: inline-block;
	zoom: 1; /* triggers hasLayout for IE */
	*display: inline; /* target IE7 only */
	vertical-align: top;
}
/* GENERALE */

/* FORM */
.label {
	color: #444;
	font-weight: bold;
	text-shadow: 1px 1px 0px #fff;
	line-height: 18px;
	display: -moz-inline-stack; /* optional */
	display: inline-block;
	zoom: 1; /* triggers hasLayout for IE */
	*display: inline; /* target IE7 only */
	vertical-align: top;
	padding-top: 5px;
}
input, 
select, 
textarea {
	color: #333;
	font-size: 13px;
	line-height: 18px;
	margin: 0;
	padding: 5px;
	background: #fff;
	border: 1px solid #DED7C2;
	
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;

	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}
input, 
select {
	height: 30px;
}
input.submit {
	background-color: #006AA0;
	color: #fff;
	text-transform: uppercase;
	font-weight: bold;
	border: 1px solid #fff;
	cursor: pointer;
	outline: 0;
	
	text-shadow: 1px 1px 0px #666;
}
input.submit.reset {
	background-color: #990000;
}
input.searchInput {
	width: 30%;
	border: 1px solid #A59668;
}
#search div.wrapSelect,
.formSearch div.wrapSelect {
	width: 25% !important;
	text-align: left !important;
	border: 1px solid #A59668 !important;
}
.attachSearch div.wrapSelect {
	width: 100% !important;
	text-align: left !important;
}
input.tagInput {
	width: 60%;
}
input.autoWidth {
	width: auto !important;
	height: auto !important;
	display: inline-block !important;
	vertical-align: middle;
}
input.searchSubmit {
	text-transform: uppercase;
	font-weight: bold;
	border: 1px solid #A59668;
	cursor: pointer;
	color: #fff;
	background-color: #A59668;
	
	text-shadow: 1px 1px 0px #666;
}
input.pubInput {
	width: 140px !important;
}
input.dataInput {
	width: 100px !important;
}
select.dirSelection {
	width: 100%;
	border: 1px solid #A59668;
}
input.inptRisp {
	width: 100% !important;
}
input.inptVoti {
	width: 60px !important;
	text-align: right;
}
/* FORM */

/* UPLOAD */
.wrapUpload {
	position: relative;
	overflow: hidden;
    cursor: pointer;
	height: 30px;
    margin-right: 5px;  
}
.wrapUpload input {
    position: absolute;
	width: auto !important;
    top: 0;
    right: 0;
    cursor: pointer;
}
.wrapUpload .button {
    color: #fff;
	background-color: #A59668;
	border: 1px solid #fff;
	padding: 0 5px;
	text-transform: uppercase;
    font-weight: bold;
    cursor: pointer;
	height: 28px;
	line-height: 28px;
	
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}
.file-holder {
	color: #333;
	font-size: 13px;
	height: 30px;
	line-height: 30px;
}
/* UPLOAD */

/* SELECT */
.wrapSelect select {
	margin: 0;
	border: 0 none;
	border-radius: 0;
	padding: 5px;
	height: 28px;
	background: transparent;
	line-height: 18px;
	color: #333;
	
	-webkit-appearance: none;
}
.wrapSelect {
	margin: 0;
	border: 1px solid #DED7C2;
	padding: 0;
	width: 60%;
	height: 28px;
	background: #fff url(../images/arrow-select.png) right center no-repeat;
	overflow: hidden;
	
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}
/* SELECT */

/* RADIO E CHECK BOX */
.checkRow,
.radioRow {
	margin-bottom: 5px;
}
input.radiogroup,
input.checkgroup {
	position: absolute;
	margin: 0;
	padding: 0;
	border: 0 none;
	height: 24px !important;
	width: 24px !important;

	/*-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	filter: alpha(opacity=0);*/
	-moz-opacity: 0;
	-khtml-opacity: 0;
	opacity: 0;
}
input.radiogroup + label,
input.checkgroup + label {
	margin: 0;
	padding: 1px 0 0 30px;
	cursor: pointer;

	display: -moz-inline-stack; /* optional */
	display: inline-block;
	zoom: 1; /* triggers hasLayout for IE */
	*display: inline; /* target IE7 only */
	vertical-align: middle;

	/*-moz-box-sizing: border-box;  
	-webkit-box-sizing: border-box;  
	box-sizing: border-box;*/ /* Border-box */ 
	height: 24px; /* Altezza della label = all'immagine */
	line-height: 24px;
}
input.checkgroup + label {
	background: url(../images/check-box.png) no-repeat 0 0;
}
input.checkgroup:checked + label {
	background-position: 0 -24px;
}
input.radiogroup + label {
	background: url(../images/radio.png) no-repeat 0 0;
}
input.radiogroup:checked + label {
	background-position: 0 -24px;
}
/* RADIO E CHECK BOX */

/* BUTTON */
a button {
	border: 1px solid #A59668;
	background: #F3EFE2;
	margin: 0;
	padding: 5px;
	font-size: 13px;
	line-height: 16px;
	display: -moz-inline-stack; /* optional */
	display: inline-block;
	zoom: 1; /* triggers hasLayout for IE */
	*display: inline; /* target IE7 only */
	vertical-align: top;
	
	text-shadow: 1px 1px 0px #fff;

	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;

	-webkit-box-shadow: inset 0px -28px 28px -28px #A59668;
	-moz-box-shadow: inset 0px -28px 28px -28px #A59668;
	box-shadow: inset 0px -28px 28px -28px #A59668;

	cursor: pointer;
}
a button:hover {
	-webkit-box-shadow: inset 0px 28px 28px -28px #A59668;
	-moz-box-shadow: inset 0px 28px 28px -28px #A59668;
	box-shadow: inset 0px 28px 28px -28px #A59668;
}
a button.view {
	background-image: url(../images/icon/view.png);
	background-position: 8px center;
	background-repeat: no-repeat;
	padding-left: 28px;
}
a button.eye {
	background-image: url(../images/icon/eye.png);
	background-position: 8px center;
	background-repeat: no-repeat;
	padding-left: 28px;
}
a button.add {
	background-image: url(../images/icon/add.png);
	background-position: 8px center;
	background-repeat: no-repeat;
	padding-left: 28px;
}
a button.edit {
	background-image: url(../images/icon/edit.png);
	background-position: 8px center;
	background-repeat: no-repeat;
	padding-left: 28px;
}
a button.trash {
	background-image: url(../images/icon/trash.png);
	background-position: 8px center;
	background-repeat: no-repeat;
	padding-left: 28px;
}
a button.home {
	background-image: url(../images/icon/home.png);
	background-position: 8px center;
	background-repeat: no-repeat;
	padding-left: 28px;
}
a button.options {
	background-image: url(../images/icon/options.png);
	background-position: 8px center;
	background-repeat: no-repeat;
	padding-left: 28px;
}
a button.unlock {
	background-image: url(../images/icon/lock_break.png);
	background-position: 8px center;
	background-repeat: no-repeat;
	padding-left: 28px;
}
a button.it {
	background-image: url(../images/icon/it_add.png);
	background-position: 8px center;
	background-repeat: no-repeat;
	padding-left: 28px;
}
a button.en {
	background-image: url(../images/icon/en_add.png);
	background-position: 8px center;
	background-repeat: no-repeat;
	padding-left: 28px;
}
a button.dir_view {
	background-image: url(../images/icon/dir_view.png);
	background-position: 8px center;
	background-repeat: no-repeat;
	padding-left: 28px;
}
a button.email {
	background-image: url(../images/icon/email.png);
	background-position: 8px center;
	background-repeat: no-repeat;
	padding-left: 28px;
}
/* BUTTON */

/* LOGIN */
#loginContainer {
	text-align: center;
	vertical-align: middle;
}
#loginform {
	text-align: center;
}
#loginform table {
	margin: 0 auto;
}
#loginform .loginRound {
	background-color: #F3EFE2;
	border: 1px solid #fff;
	padding: 10px;
	
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
}
#loginform table table td {
	font-weight: bold;
	padding: 5px;
}
/* LOGIN */

/* MAIN */
#wrap {
	height: 100%;
}
#upMenuWrap {
	padding: 0 18px;
}
#upMenu {
	height: 31px;
	background-color: #F3EFE2;
	border: 1px solid #A59668;
	border-top: 0 none;
	
	-webkit-border-bottom-right-radius: 5px;
	-webkit-border-bottom-left-radius: 5px;
	-moz-border-radius-bottomright: 5px;
	-moz-border-radius-bottomleft: 5px;
	border-bottom-right-radius: 5px;
	border-bottom-left-radius: 5px;
	
	-webkit-box-shadow: inset 0px -35px 35px -35px #A59668;
	-moz-box-shadow: inset 0px -35px 35px -35px #A59668;
	box-shadow: inset 0px -35px 35px -35px #A59668;
}
#upMenu a {
	display: block;
	float: right;
	height: 31px;
	line-height: 31px;
	text-decoration: none;
	color: #333;
	font-weight: bold;
	padding: 0 18px;
	text-transform: uppercase;
	text-shadow: 1px 1px 0px #fff;
}
#upMenu a.first {
	border-left: 1px solid #A59668;
}
#upMenu a.logout {
	color: #fff;
	background-color: #A59668;
	
	-webkit-border-bottom-right-radius: 5px;
	-moz-border-radius-bottomright: 5px;
	border-bottom-right-radius: 5px;
	
	text-shadow: 1px 1px 0px #666;
}
#upMenu .left {
	height: 31px;
	line-height: 31px;
	text-decoration: none;
	color: #333;
	padding: 0 18px;
	border-right: 1px solid #A59668;
	text-transform: uppercase;
	
	text-shadow: 1px 1px 0px #fff;
}
#upMenu .left strong,
#upMenu .left b {
	color: #006AA0;
}
#logo {
	border-bottom: 1px solid #7BA9D1;
	padding: 24px 48px;
	
	-webkit-box-shadow: inset 0px -70px 70px -70px #7BA9D1;
	-moz-box-shadow: inset 0px -70px 70px -70px #7BA9D1;
	box-shadow: inset 0px -70px 70px -70px #7BA9D1;
}
#logo .right {
	margin-top: 5px;
}
#main {
	background: #fff;
}
#spalla {
	width: 300px;
	min-height: 478px;
	height: auto !important;
	height: 478px;
	vertical-align: top;
	background: url(../images/spalla-bg.png) no-repeat left top;
	border-right: 1px solid #EFEAD9;
	
	-webkit-box-shadow: inset -135px 0px 135px -135px #A59668;
	-moz-box-shadow: inset -135px 0px 135px -135px #A59668;
	box-shadow: inset -135px 0px 135px -135px #A59668;
}
#spalla .spallaTop {
	background-color: #EFEAD9;
	text-align: right;
	padding: 8px;
	
	-webkit-box-shadow: inset -135px 0px 135px -135px #A59668;
	-moz-box-shadow: inset -135px 0px 135px -135px #A59668;
	box-shadow: inset -135px 0px 135px -135px #A59668;
}
#spalla .spallaTop img {
	cursor: pointer;
	vertical-align: baseline;
}
#leftMenu {
	padding: 6px;
}
#centro {
	padding: 0px 20px 20px 20px;
	vertical-align: top;
}
#centro p {
	margin-bottom: 10px;
}
#foot {
	border-top: 1px solid #7BA9D1;
	padding: 5px 0;
	font-weight: bold;
	text-align: center;
	
	-webkit-box-shadow: inset 0px 35px 35px -35px #7BA9D1;
	-moz-box-shadow: inset 0px 35px 35px -35px #7BA9D1;
	box-shadow: inset 0px 35px 35px -35px #7BA9D1;
	
	text-shadow: 1px 1px 0px #fff;
}
/* MAIN */

/* MENU PRINCIPALE */
ul#generalMenu {
	position: relative;
	z-index: 1000;
	border-top: 1px solid #fff;
	border-bottom: 1px solid #A59668;
	height: 28px;
	background-color: #F3EFE2;
	
	-webkit-box-shadow: inset 0px -35px 35px -35px #A59668;
	-moz-box-shadow: inset 0px -35px 35px -35px #A59668;
	box-shadow: inset 0px -35px 35px -35px #A59668;
}
ul#generalMenu li {
	position: relative;
	display: inline;
	float: left;
}
ul#generalMenu li a {
	display: block;
	color: #333;
	font-size: 16px;
	line-height: 28px;
	height: 28px;
	text-transform: uppercase;
	text-decoration: none;
	background-color: #F3EFE2;
	padding: 0 24px;

	-webkit-box-shadow: inset 0px -35px 35px -35px #A59668;
	-moz-box-shadow: inset 0px -35px 35px -35px #A59668;
	box-shadow: inset 0px -35px 35px -35px #A59668;
	
	text-shadow: 1px 1px 0px #fff;
}
ul#generalMenu li a::first-letter {
	font-weight: bold;
}
ul#generalMenu li a .fa {
	display: -moz-inline-stack; /* optional */
	display: inline-block;
	zoom: 1; /* triggers hasLayout for IE */
	*display: inline; /* target IE7 only */
	font-size: 21px;
	line-height: 28px;
	height: 28px;
}
* html ul#generalMenu li a { /*IE6 hack to get sub menu links to behave correctly*/
	display: -moz-inline-stack; /* optional */
	display: inline-block;
	zoom: 1; /* triggers hasLayout for IE */
	*display: inline; /* target IE7 only */
	vertical-align: top;
}
ul#generalMenu li a:hover, 
ul#generalMenu li a.selected,
ul#generalMenu li a.active {
	background-color: #006AA0;
	color: #fff;
	text-shadow: 1px 1px 0px #333;
	
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
}
ul#generalMenu li a.arrow {
	background-image: url(../images/freccia_bt.gif);
	background-repeat: no-repeat;
	background-position: 7px 10px;
}
ul#generalMenu li a.arrow:hover,
ul#generalMenu li a.arrow.selected,
ul#generalMenu li a.arrow.active {
	background-image: url(../images/freccia_bt_w.gif);
}
ul#generalMenu li ul {
	position: absolute;
	left: 0;
	display: block;
	visibility: hidden;
}
ul#generalMenu li ul li {
	display: list-item;
	float: none;
}
ul#generalMenu li ul li ul {
	top: 0;
}
ul#generalMenu li ul li a {
	border-bottom: 1px solid #fff;
	border-top: 0 none;
	border-right: 0 none;
	border-left: 0 none;
	padding: 0 24px 0 9px;
	width: 180px; /*width of sub menus*/
	background-color: #DAE4ED;
	
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
}
ul#generalMenu li ul li a:hover { /*sub menus hover style*/
	background-color: #006AA0;
	color: #fff;
}
ul#generalMenu li ul li a.arrow {
	background-image: url(../images/freccia_dx.gif);
	background-repeat: no-repeat;
	background-position: 196px 8px;
}
ul#generalMenu li ul li a.arrow:hover,
ul#generalMenu li ul li a.arrow.selected {
	background-image: url(../images/freccia_dx_w.gif);
}
/* MENU PRINCIPALE */

/* HEADING */
h1 {
	color: #006AA0;
	font-size: 22px;
	line-height: 38px;
	padding: 0 10px;
	background:  #DAE4ED;
	height: 38px;
	
	text-shadow: 1px 1px 0px #fff;
	
	-webkit-border-top-left-radius: 10px;
	-webkit-border-top-right-radius: 10px;
	-moz-border-radius-topleft: 10px;
	-moz-border-radius-topright: 10px;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	
	-webkit-box-shadow: inset 0px 35px 35px -35px #7BA9D1;
	-moz-box-shadow: inset 0px 35px 35px -35px #7BA9D1;
	box-shadow: inset 0px 35px 35px -35px #7BA9D1;
}
h1 p {
	width: 75%;
	float: left;
	margin: 0 !important;
}
h1 p::first-letter {
	text-transform: uppercase;
}
h1 span {
	float: right;
	display: block;
	height: 38px;
	color: #333;
	font-size: 13px;
	line-height: 38px;
	text-shadow: 1px 1px 0px #fff;
}
h1 .dir_link {
	float: right;
	display: block;
	height: 38px;
	line-height: 38px;
}
h1 .dir_link img {
	display: block;
	margin-top: 11px;
	margin-right: -4px;
}
h2 {
	color: #006AA0;
	background-color: #DAE4ED;
	font-size: 16px;
	margin: 10px 0 0 0;
	text-transform: uppercase;
	padding: 8px;

	text-shadow: 1px 1px 0px #fff;

	-webkit-box-shadow: inset 0px 35px 35px -35px #7BA9D1;
	-moz-box-shadow: inset 0px 35px 35px -35px #7BA9D1;
	box-shadow: inset 0px 35px 35px -35px #7BA9D1;
}
h2 a {
	color: #006AA0 !important;
	text-decoration: none;
}
h3 {
	margin-bottom: 10px;
	font-size: 13px;
	background-color: #F9EFC2;
	padding: 5px;
	color: #514303;
	text-transform: uppercase;

	text-shadow: 1px 1px 0px #fff;

	-webkit-box-shadow: inset 0px 35px 35px -35px #FFD100;
	-moz-box-shadow: inset 0px 35px 35px -35px #FFD100;
	box-shadow: inset 0px 35px 35px -35px #FFD100;
}
/* HEADING */

/* TABELLA */
.stileTable {
	border-collapse: separate;
	border-spacing: 0;
	empty-cells: show;
	border: 1px solid #DED7C2;
	border-right: 0 none;
	border-bottom: 0 none;
}
.stileTable th {
	padding: 3px 20px 3px 5px;
	background-color: #F3EFE2;
	border: 1px solid #DED7C2;
	border-top: 1px solid #fff;
	border-left: 1px solid #fff;
	vertical-align: middle;
	text-align: left;
	
	-webkit-box-shadow: inset 0px -25px 25px -25px #A59668;
	-moz-box-shadow: inset 0px -25px 25px -25px #A59668;
	box-shadow: inset 0px -25px 25px -25px #A59668;
	
	text-shadow: 1px 1px 0px #fff;
}
.stileTable td {
	padding: 3px 5px;
	border: 1px solid #DED7C2;
	border-top: 1px solid #fff;
	border-left: 1px solid #fff;
	background-color: #F9F8F4;
	vertical-align: middle;
}
.stileStatoY td {
	background-color: #F9F8F4;
}
.stileStatoN td {
	/*background-color: #EDE9D7;
	color: #888;*/
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
	filter: alpha(opacity=50);
	-moz-opacity: 0.5;
	-khtml-opacity: 0.5;
	opacity: 0.5;
}
.stileStatoH td {
	background-color: #C5EFB6;
}
.stileStatoS td {
	background-color: #F9FAC0;
}
.stileTable span.order {
	display: block;
	width: 12px;
	float: right;
	height: 12px;
	margin-top: 4px;
	margin-right: -17px;
}
.stileTable span.order a.tp {
	display: block;
	width: 12px;
	height: 6px;
	background: transparent url(../images/order_tp.gif) no-repeat center center;
}
.stileTable span.order a.bt {
	display: block;
	width: 12px;
	height: 6px;
	background: transparent url(../images/order_bt.gif) no-repeat center center;
}
.stileTable tr:hover td,
.stileTable tr.selected td {
	background: #ffffff;
}
/* TABELLA */

/* FORM */
.stileTableDefault {
	border-collapse: collapse;
	border-spacing: 0;
	empty-cells: show;
}
.stileTableDefault td,
.stileTableDefault th {
	padding: 3px 5px;
	border: 1px solid #fff;
	vertical-align: top;
	line-height: 18px;
}
.stileTableDefault td td {
	border: 0 none;
}
.stileTableDefault th.tdFormHead,
.stileTableDefault td.tdFormHead {
	background-color: #DED7C2;
	white-space: nowrap;
	color: #444;
	font-weight: bold;
	text-shadow: 1px 1px 0px #fff;
	border-left: 0 none;
}
.stileTableDefault td.tdFormSubTitle {
	font-size: 16px;
	background-color: #F3EFE2;
	padding: 8px;
	color: #006AA0;
	text-transform: uppercase;
	font-weight: bold;

	text-shadow: 1px 1px 0px #fff;

	-webkit-box-shadow: inset 0px -35px 35px -35px #A59668;
	-moz-box-shadow: inset 0px -35px 35px -35px #A59668;
	box-shadow: inset 0px -35px 35px -35px #A59668;
}
.stileTableDefault td.tdForm {
	background-color: #F3EFE2;
	border-right: 0 none;
	vertical-align: middle;
}
.stileTableDefault td.tdForm input, 
.stileTableDefault td.tdForm select, 
.stileTableDefault td.tdForm textarea {
	width: 60%;
	display: block;
}
.stileTableDefault td.tdForm textarea {
	height: 125px;
}
.stileTableDefault td.tdForm .fileLink {
	padding: 6px;
}
.stileTableDefault td.tdForm .fileLink a {
    color: #006AA0;
	font-weight: bold;
}
/* FORM */

/* HOME */
.profileTable {
	border-collapse: separate;
	border-spacing: 0;
	empty-cells: show;
	margin-bottom: 10px;
	width: 800px;
	border: 1px solid #EFEAD9;
	
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
}
.profileTable td {
	padding: 10px;
	vertical-align: top;
}
.profileTable td.odd {
	vertical-align: bottom;
}
.stileTableProfile {
}
.stileTableProfile td.thStyle {
	padding: 3px 5px;
	color: #777;
	text-align: left;
	width: 1px;
	white-space: nowrap;
	vertical-align: top;
}
.stileTableProfile tr td {
	padding: 3px 5px;
	vertical-align: top;
}
.stileTableProfile tr td.odd {
}
/* HOME */

/* LISTA CARTELLE */
ul.dirList {
	padding: 11px 0 11px 36px;
}
ul.dirList li.first-item {
	list-style: none url(../images/icon/dir.png);
	text-transform: uppercase;
}
ul.dirList li.first-item.stileStatoN {
	list-style: none url(../images/icon/dir_hide.png);
}
ul.dirList li.first-item.it {
	list-style: none url(../images/icon/it.png);
}
ul.dirList li.first-item.en {
	list-style: none url(../images/icon/en.png);
}
ul.dirList li.first-item.it.stileStatoN {
	list-style: none url(../images/icon/it_hide.png);
}
ul.dirList li.first-item.en.stileStatoN {
	list-style: none url(../images/icon/en_hide.png);
}
ul.dirList li.first-item ul {
	padding: 11px 0 0 20px;
}
ul.dirList li.first-item ul li {
	list-style: none url(../images/icon/dir.png);
	vertical-align: middle;
	text-transform: none;
}
ul.dirList li.first-item ul li.stileStatoY {
	list-style: none url(../images/icon/dir.png);
}
ul.dirList li.first-item ul li.stileStatoN {
	list-style: none url(../images/icon/dir_hide.png);
}
ul.dirList li.first-item ul li.it.stileStatoY {
	list-style: none url(../images/icon/it.png);
}
ul.dirList li.first-item ul li.it.stileStatoN {
	list-style: none url(../images/icon/it_hide.png);
}
ul.dirList li.first-item ul li.en.stileStatoY {
	list-style: none url(../images/icon/en.png);
}
ul.dirList li.first-item ul li.en.stileStatoN {
	list-style: none url(../images/icon/en_hide.png);
}
ul.dirList li.first-item ul li {
	margin-bottom: 5px;
}
ul.dirList li.first-item ul li a {
	text-decoration: none;
}
ul.dirList li.first-item ul li span.dirlistHL,
ul.dirList li.first-item ul li a.dirlistHL {
	color: #990000;
	font-weight: bold;
}
/* LISTA CARTELLE */

/* LISTA RUOLI */
ul.listRole {
	padding: 11px 0 11px 36px;
}
ul.listRole ul {
	padding: 11px 0 0 20px;
}
ul.listRole li {
	list-style-image: url(../images/icon/roles.png);
	vertical-align: middle;
	text-transform: uppercase;
}
ul.listRole li li {
	margin-bottom: 5px;
	list-style-image: url(../images/icon/role.png);
	vertical-align: middle;
	text-transform: none;
}
/* LISTA RUOLI */

/* LISTA TAG */
ul.tagsList {
	padding: 11px 0 11px 36px;
}
ul.tagsList ul {
	padding: 11px 0 0 20px;
}
ul.tagsList li {
	list-style-image: url(../images/icon/tags_cloud.png);
	vertical-align: middle;
	text-transform: uppercase;
}
ul.tagsList li li {
	margin-bottom: 5px;
	list-style-image: url(../images/icon/tag.png);
	vertical-align: middle;
	text-transform: none;
}
/* LISTA TAG */

/* LISTA PAGINE */
ul#pageList {
	padding: 11px 0 11px 36px;
}
ul#pageList li.root {
	list-style-image: url(../images/icon/dir.png);
}
ul#pageList li.root ul {
	padding: 11px 0 0 24px;
}
ul#pageList li.root li {
	vertical-align: middle;
	margin-bottom: 5px;
}
ul#pageList li.root ul li.page.stileStatoY {
	list-style-image: url(../images/icon/file.png);
}
ul#pageList li.root ul li.section.stileStatoY {
	list-style-image: url(../images/icon/clipboard.png);
}
ul#pageList li.root ul li.symlink.stileStatoY {
	list-style-image: url(../images/icon/link.png);
}
ul#pageList li.root ul li.url.stileStatoY {
	list-style-image: url(../images/icon/world.png);
}
ul#pageList li.root ul li.page.stileStatoN {
	list-style-image: url(../images/icon/file_hide.png);
}
ul#pageList li.root ul li.section.stileStatoN {
	list-style-image: url(../images/icon/clipboard_hide.png);
}
ul#pageList li.root ul li.symlink.stileStatoN {
	list-style-image: url(../images/icon/link_hide.png);
}
ul#pageList li.root ul li.url.stileStatoN {
	list-style-image: url(../images/icon/world_hide.png);
}
ul#pageList li.root ul li.page.stileStatoH {
	list-style-image: url(../images/icon/file_home.png);
}
ul#pageList li.root ul li.section.stileStatoH {
	list-style-image: url(../images/icon/clipboard_home.png);
}
ul#pageList li.root ul li.symlink.stileStatoH {
	list-style-image: url(../images/icon/link_home.png);
}
ul#pageList li.root ul li.url.stileStatoH {
	list-style-image: url(../images/icon/world_home.png);
}
/* LISTA PAGINE */

/* ALLEGATI */
ul#listaTipiAllegati li {
	background-color: #F3EFE2;
	margin-top: 14px;
	
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}
ul#listaTipiAllegati li.first {
	margin-top: 0;
}
ul#listaTipiAllegati li a.attachTitle {
	display: block;
	border-bottom: 1px solid #A59668;
	text-shadow: 1px 1px 0 #fff;
	padding: 4px 6px;
	text-decoration: none;
	font-weight: bold;
	text-transform: uppercase;
	
	-webkit-box-shadow: inset 0px -28px 28px -28px #A59668;
	-moz-box-shadow: inset 0px -28px 28px -28px #A59668;
	box-shadow: inset 0px -28px 28px -28px #A59668;
}
ul#listaTipiAllegati li div.ajaxAttachContainer {
	padding: 6px;
	zoom: 1;
}
ul#listaTipiAllegati li div.ajaxAttachContainer h3 {
	margin-bottom: 0;
	margin-top: 12px;
}
ul#listaTipiAllegati li div.ajaxAttachContainer div.button {
	margin-bottom: 0;
	margin-top: 5px;
}
/* ALLEGATI */

/* CONTEXT MENU */
.itemMenu {
	display: none;
}
#generalContextMenu {
	position: absolute;
	width: 200px;
	border-top: 1px solid #A59668;
	z-index: 2000;
	
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}
a.generalContextMenuItem {
	display: block;
	text-decoration: none;
	background: #F3EFE2;
	border: 1px solid #A59668;
	border-top: 0 none;
	padding: 5px;
	color: #333;
	font-size: 13px;
	line-height: 16px;
	
	text-shadow: 1px 1px 0 #fff;
	
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}
a.generalContextMenuItem:hover {
	color: #fff;
	text-shadow: 1px 1px 0 #000;
	background: #006AA0;
}
a.generalContextMenuItem img {
	vertical-align: middle;
}
/* CONTEXT MENU */

/* TABLE PAGINATION PLUGIN */
.tablePagination .pages-bar {
	background-color: #F9EFC2;
	padding: 5px 15px;
	border: 1px solid #FFD100;
	border-top: 0 none;
	height: 22px;
	line-height: 22px;
	color: #514303;
	
	text-shadow: 1px 1px 0px #fff;
	
	-webkit-border-bottom-left-radius: 10px;
	-webkit-border-bottom-right-radius: 10px;
	-moz-border-radius-bottomleft: 10px;
	-moz-border-radius-bottomright: 10px;
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
}
.tablePagination .pages-bar .pages-count {
	float: left;
	height: 22px;
	white-space: nowrap;
}
.tablePagination .pages-bar .pages-select {
	float: right;
	width: 27px;
	padding-right: 20px;
	background: #F3EFE2 url(../images/icon/arrow_down.png) no-repeat right 3px;
	height: 20px;
	overflow: hidden;
	border: 1px solid #DED7C2;
}
.tablePagination .pages-bar .pages-select select {
	color: #333;
	font-size: 13px;
	width: 67px;
	height: 20px;
	line-height: 20px;
	margin: 0;
	padding: 0;
	background: transparent;
	border: 0 none;
	
	-webkit-appearance: none;
	
	-webkit-border-radius: 0 !important;
	-moz-border-radius: 0 !important;
	border-radius: 0 !important;

	/*box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;*/
}
.tablePagination .pages-bar .pages-ctrl {
	float: right;
	height: 22px;
	text-align: right;
	margin-right: 20px;
	white-space: nowrap;
}
.tablePagination .pages-bar .pages-ctrl span {
	display: -moz-inline-stack; /* optional */
	display: inline-block;
	zoom: 1; /* triggers hasLayout for IE */
	*display: inline; /* target IE7 only */
	vertical-align: top;
	
	width: 20px;
	height: 20px;
	border: 1px solid #DED7C2;
	padding: 0;
	background: #F3EFE2;
	text-decoration: none;
	color: #444;
	text-align: center;
	cursor: pointer;
}
.tablePagination .pages-bar .pages-ctrl span.inactive {
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)"; /* IE 8 */
	filter: alpha(opacity=50); /* IE 5-7 */
	-moz-opacity: 0.5; /* Netscape */
	-khtml-opacity: 0.5; /* Safari 1.x */
	opacity: 0.5; /* Good browsers */
	
	cursor: default;
}
.tablePagination .pages-bar .pages-ctrl span:hover {
	background: #DED7C2;
	color: #444;
}
.tablePagination .pages-bar .pages-ctrl .pages-number.selected {
	color: #990000;
	font-weight: bold;
}
.tablePagination .pages-bar .pages-ctrl span.prev {
	background: #F3EFE2 url(../images/icon/arrow_left.png) no-repeat center center;
	overflow: hidden;
	text-indent: -200px;
}
.tablePagination .pages-bar .pages-ctrl span.next {
	background: #F3EFE2 url(../images/icon/arrow_right.png) no-repeat center center;
	overflow: hidden;
	text-indent: -200px;
}
/* TABLE PAGINATION PLUGIN */

/* TABLE SORT PLUGIN */
.tablePagination .stileTable th.sortable {
	cursor: pointer;
}
.tablePagination .stileTable th.sortable:hover {
	-webkit-box-shadow: inset 0px 25px 25px -25px #A59668;
	-moz-box-shadow: inset 0px 25px 25px -25px #A59668;
	box-shadow: inset 0px 25px 25px -25px #A59668;
}
.tablePagination .stileTable span.arrow {
	display: block;
	width: 12px;
	float: right;
	height: 12px;
	margin-top: 4px;
	margin-right: -17px;
}
.tablePagination .stileTable span.arrow.up {
	background: url(../images/icon/arrow_up.png) no-repeat center center;
}
.tablePagination .stileTable span.arrow {
	background: url(../images/icon/arrow_down.png) no-repeat center center;
}
/* TABLE SORT PLUGIN */

/* GEOCOMPLETE PLUGIN */
.map_canvas:after {
    color: #999999;
    content: "Inserisci un indirizzo nel campo qui sopra.";
    display: block;
    font-size: 2em;
    padding-top: 170px;
    text-align: center;
}
.map_canvas {
    border: 10px solid #FFFFFF;
    height: 400px;
    margin: 10px 0;
}
.map_show {
    height: 400px;
}
/* GEOCOMPLETE PLUGIN */
