@charset "UTF-8";

/*
 * GeoSolutions - Main CSS
 * web development Zaki Design 2013 - www.zaki.it
 *
 */
* {
	-webkit-font-smoothing: antialiased;
}

/*
	 * STICKY FOOTER
	 *
	 */
html,
body {
	height: 100%;
}

#container {
	min-height: 100%;
}


/*
	 * UI BASE
	 *
	 */
body {
	background: url('../img/body_bg.png') repeat-x scroll left top #F6F6F6;
	color: #333333;
	font-family: "Helvetica Neue", Arial, sans-serif;
	font-weight: 400;
	font-size: 12px;
}

h1,
h2,
h3 {}

p {
	margin-bottom: 10px;
	color: #666666;
	line-height: 1.500em;
}

hr,
.hr {
	border: none;
	background: #262626;
	clear: both;
	height: 1px;
	overflow: hidden;
	margin: 20px 20px;
}

strong {
	font-weight: bold;
}

em {
	font-style: italic;
}

ol li,
ul li {
	color: #666666;
}

dl dt {
	float: left;
	margin-right: 5px;
	margin-bottom: 5px;
	clear: both;
}

/* slideshow fix from nali 13092018*/
.slideshow-slide-caption {
	background: rgba(255, 255, 255, .6);
	border-radius: 10px;
}

dl dd {
	float: left;
}

table caption {
	display: none;
}

.inline-block {
	display: inline-block !important;
}

.left {
	float: left;
}

.right {
	float: right;
}

img.left {
	float: left;
	margin: 0 10px 10px 0;
}

img.right {
	float: right;
	margin: 0 0 10px 10px;
}

.border-1 {
	border: 1px solid #CCCCCC;
}

.box {}

.box>.inner {
	padding: 10px;
}

/* Links */
a:link,
a:visited {
	color: #3A79AC;
	text-decoration: none;
}

a:hover {
	color: #3A79AC;
	text-decoration: underline;
}


/*
	 * FORMS
	 *
	 */
form {}

form label,
form legend {
	display: block;
	color: #FFFFFF;
	position: relative;
	float: left;
}

form fieldset {
	margin-bottom: 5px;
}

form .required {
	color: #AA5428;
}

/* Placeholders */
::-webkit-input-placeholder {
	color: #999999;
}

::-moz-placeholder {
	color: #999999;
}

:-ms-input-placeholder {
	color: #999999;
}

.placeholder {
	color: #999999;
}

/* Text */
form input[type="text"] {}

/* Select */
form select {}

/* Dropdown control */
.selectBox-dropdown {
	min-width: 150px;
	position: relative;
	outline: none;
	vertical-align: middle;
	display: inline-block;
	height: 20px;
	line-height: 20px;
	background: #FFFFFF;
	border: 1px solid #CCCCCC;

	cursor: pointer;
	cursor: hand;
}

.selectBox-dropdown:focus,
.selectBox-dropdown:focus .selectBox-arrow {}

.selectBox-dropdown.selectBox-menuShowing {}

.selectBox-dropdown .selectBox-label {
	display: inline-block;
	white-space: nowrap;
	overflow: hidden;
	padding: 0 5px;
}

.selectBox-dropdown .selectBox-arrow {
	position: absolute;
	top: 0;
	right: 0;
	width: 23px;
	height: 100%;
	background: url('../img/selectBox-arrow.png') 50% center no-repeat;
	border-left: 1px solid #CCCCCC;
}

/* Dropdown menu */
.selectBox-dropdown-menu {
	position: absolute;
	z-index: 99999;
	max-height: 200px;
	min-height: 1em;
	overflow: auto;
	-webkit-overflow-scrolling: touch;
	background: #FFFFFF;

	-moz-box-shadow: 0 2px 6px rgba(0, 0, 0, .2);
	-webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, .2);
	box-shadow: 0 2px 6px rgba(0, 0, 0, .2);

	border: 1px solid #CCCCCC;
}

/* Inline control */
.selectBox-inline {
	min-width: 150px;
	outline: none;
	display: inline-block;
	overflow: auto;
}

.selectBox-inline:focus {}

/* Options */
.selectBox-options,
.selectBox-options LI,
.selectBox-options LI A {
	list-style: none;
	display: block;
	cursor: default;
	padding: 0;
	margin: 0;
}


.selectBox-options LI {
	line-height: 20px;
}

.selectBox-options LI A {
	white-space: nowrap;
	overflow: hidden;
	padding: 0 5px;
}

.selectBox-options LI.selectBox-hover A {
	text-decoration: none;
}

.selectBox-options LI.selectBox-disabled A {}

.selectBox-options LI.selectBox-selected {
	display: none;
}

.selectBox-options LI.selectBox-selected A {}

.selectBox-options .selectBox-optgroup {
	font-weight: bold;
	white-space: nowrap;
}

/* Disabled state */
.selectBox.selectBox-disabled {}

.selectBox-dropdown.selectBox-disabled .selectBox-arrow {}

.selectBox-inline.selectBox-disabled {}

.selectBox-inline.selectBox-disabled .selectBox-options A {}

/* Text Area */
form textarea {}

/* Radio */
form input[type="radio"] {
	margin: 0 3px 10px 0;
}

/* Checkbox */
form input[type="checkbox"] {
	margin: 0 5px 5px 0;
	float: left;
}

form input[type="checkbox"]+label {
	float: none;
}

/* File */
form input[type="file"] {}

/* Button */
form button,
.button {
	font-family: "Helvetica Neue", Arial, sans-serif;
	font-weight: 400;

	background: #3A79AC;
	text-align: center;
	display: inline-block;

	height: 23px;
	line-height: 22px;

	font-size: 1em;
	font-weight: 600;
	padding: 0 16px;
	border: none;
	color: #FFFFFF !important;

	cursor: pointer;
	cursor: hand;

	-webkit-border-radius: 1px;
	border-radius: 1px;

	-webkit-background-clip: padding-box;
	background-clip: padding-box;

	text-transform: lowercase;
}

form button.green,
.button.green {
	background: #62AE4A;
}

form button.green:hover,
.button.green:hover {
	background: #75D05A;
}

form button:hover,
.button:hover {
	text-decoration: none;
	background: #4a9cdb;
}


/* Common */
form input,
form select,
form textarea {
	font-family: "Helvetica Neue", Arial, sans-serif;
	font-weight: 400;
}

form select,
form input[type="file"],
form input[type="text"],
form input[type="email"],
form input[type="password"],
form textarea {
	border: 1px solid #CCCCCC;
	font-size: 1em;
	font-family: "Helvetica Neue", Arial, sans-serif;
	font-weight: 400;
}

form select,
form input[type="email"],
form input[type="password"],
form input[type="text"] {
	height: 20px;
}

form select,
form input[type="email"],
form input[type="password"],
form input[type="text"],
form textarea {
	padding: 0 8px;
}

form textarea {
	padding-top: 4px;
	padding-bottom: 4px;
}


/*
	 * LAYOUT
	 *
	 */
#header>.wrapper,
#middle>.wrapper,
#footer>.wrapper,
#clienti-intro>.wrapper {
	width: 1022px;
	margin: 0 auto;
}

#content {
	background: #FFFFFF;
	position: relative;
	margin: 0 10px;
	margin-bottom: 40px;
}

#content>.inner {
	padding: 30px 20px;
}


/*
	 * BREADCRUMBS
	 *
	 */
#breadcrumbs {
	font-size: 0.917em;
	padding: 11px 0 11px 20px;
}


/*
	 * HEADER
	 *
	 */
#logo {
	float: left;
	margin-top: 20px;
}

#nav-tools-1 {
	float: right;
	padding: 10px 0 11px 0;
}

#nav-tools-1>nav,
#nav-tools-1>div {
	float: left;
	margin-left: 10px;
}

/* Social */
#social-nav ul li {
	float: left;
	margin: 0 10px 0 0;
	text-indent: -9999px;
}

#social-nav ul li.last {
	margin: 0;
}

#social-nav ul li a {
	background: url('../img/icons/social.png') no-repeat scroll 0px 0px transparent;
	display: block;
	width: 19px;
	height: 19px;

	-webkit-opacity: 0.30;
	-moz-opacity: 0.30;
	filter: alpha(opacity=30);
}

#social-nav ul li a:hover {
	-webkit-opacity: 1;
	-moz-opacity: 1;
	filter: alpha(opacity=100);
}

#social-nav ul li.twitter a {
	background: url('../img/icons/social.png') no-repeat scroll 0px 0px transparent;
}

#social-nav ul li.linkedin a {
	background: url('../img/icons/social.png') no-repeat scroll -19px 0px transparent;
}

#social-nav ul li.pinterest a {
	background: url('../img/icons/social.png') no-repeat scroll -38px 0px transparent;
}

#social-nav ul li.googleplus a {
	background: url('../img/icons/social.png') no-repeat scroll -57px 0px transparent;
}

#social-nav ul li.rss a {
	background: url('../img/icons/social.png') no-repeat scroll -76px 0px transparent;
}

/* Search Box */
#search-box {}

#search-box form {
	position: relative;
}

#search-box input[type="text"] {
	width: 180px;
}

#search-box button {
	display: block;
	text-indent: -9999px;
	background: url('../img/magnify.png') no-repeat scroll 0px 0px transparent;
	height: 15px;
	width: 15px;
	position: absolute;
	right: 5px;
	top: 3px;
	padding: 0;
}

/* Language */
#lang-nav ul {
	overflow: hidden;
}

#lang-nav ul li {
	display: block;
	float: left;
	font-size: 0.917em;
	padding-right: 1px;
	margin-right: 1px;
	line-height: 22px;
}

#lang-nav ul li a {
	color: #999999;
}


/*
	 * SLIDER
	 *
	 */
#top-scroller {
	clear: both;
	background: url('../img/slider_bg.png') no-repeat scroll left top transparent;
	height: 298px;
	text-align: center;
	padding: 0 11px;
}

#top-scroller-inner {}

#top-scroller .slide {
	text-align: left;
	font-size: 1em;
}

#top-scroller .slide .slide-text {
	float: left;
	width: 450px;
	margin: 60px 0 0 40px;
}

#top-scroller .slide .slide-text h2,
#top-scroller .slide .slide-text p,
#top-scroller .slide .slide-text ul li,
#top-scroller .slide .slide-text a {
	color: #FFFFFF;
}

#top-scroller .slide .slide-text h2 {
	font-family: "Helvetica Neue", Arial, sans-serif;
	font-weight: 400;
	font-size: 2.667em;
	margin: 0 0 5px 0;
}

#top-scroller .slide.news .slide-text h2 {
	background: url('../img/arrow_white_big_right.png') no-repeat scroll left center transparent;
	padding: 0 0 0 26px;
}

#top-scroller .slide .slide-text h3 {
	font-family: "Helvetica Neue", Arial, sans-serif;
	font-weight: 700;
	font-size: 1.500em;
	color: #B0C8D9;
	margin: -5px 0 10px 0;
}

#top-scroller .slide .slide-text p {
	margin-bottom: 15px;
}

#top-scroller .slide .slide-text p,
#top-scroller .slide .slide-text ul li {
	font-size: 1.167em;
	line-height: 1.333em;
}

#top-scroller .slide .slide-text ul.bigger {
	padding-left: 30px;
}

#top-scroller .slide .slide-text ul.bigger li {
	font-family: "Helvetica Neue", Arial, sans-serif;
	font-size: 1.167em;
}

#top-scroller .slide .slide-text ul li {
	background: url('../img/arrow_white_medium_right.png') no-repeat scroll left center transparent;
	padding: 2px 0 0 16px;
}

#top-scroller .slide .slide-image {
	float: right;
}

#top-scroller .scroller-pagination {
	top: 30px;
	position: relative;
}

#top-scroller .scroller-pagination .bx-pager-item {
	float: left;
	margin-right: 5px;
}

#top-scroller .scroller-pagination .bx-pager-item a.bx-pager-link {
	background: url('../img/pagination_1.png') no-repeat scroll 0px 0px transparent;
	width: 12px;
	height: 12px;
	display: block;
	text-indent: -9999px;
}

#top-scroller .scroller-pagination .bx-pager-item a.bx-pager-link:hover,
#top-scroller .scroller-pagination .bx-pager-item a.bx-pager-link.active {
	background: url('../img/pagination_1.png') no-repeat scroll -12px 0px transparent;
}


/*
	 * NAV PRINCIPALE
	 *
	 */
#nav-main {
	float: right;
	clear: right;
}

#nav-main ul.menu li {
	float: left;
	margin-left: 15px;
}

#nav-main ul.menu li {
	font-size: 1.083em;
	font-family: "Helvetica Neue", Arial, sans-serif;
	font-weight: 400;
	text-transform: uppercase;
}

#nav-main ul.menu li a {
	color: #3B79AD;
	background: url('../img/arrow_green_right.png') no-repeat scroll left center transparent;
	padding-left: 14px;
}

#nav-main ul.menu li a:link,
#nav-main ul.menu li a:visited {}

#nav-main ul.menu li a:hover {
	text-decoration: underline;
}

#nav-main ul.menu li.current-menu-item a {}


/*
	 * POST
	 *
	 */
.post h1 {
	font-size: 2.000em;
	line-height: 1.333em;
	font-weight: 600;
	color: #3A79AC;
	margin: 0 0 5px 0;
}

.post h1+h3 {
	color: #666666;
	font-weight: 600;
	margin-bottom: 13px;
}

.post h2 {
	font-size: 2.000em;
	line-height: 1.333em;
	font-weight: 600;
	color: #3A79AC;
	border-bottom: 1px solid #CCCCCC;
	margin: 0 0 15px 0;
}

.post h3 {
	font-size: 1em;
	font-weight: 600;
	margin: 0 0 0 0;
}

.post strong {
	font-weight: 600;
}

.post blockquote {
	background: url('../img/blockquote.png') no-repeat scroll left top transparent;
	color: #CCCCCC;
	font-family: Times, 'Georgia', serif;
	padding-left: 50px;
	font-size: 1.333em;
	font-style: italic;
	display: block;
	min-height: 26px;
	margin: 15px 0 25px 0;
	line-height: 1.333em;
}

.post p {
	margin-bottom: 15px;
}

.post .data,
.post p,
.post ul li,
.post ol li {
	font-size: 1em;
	color: #333333;
	line-height: 1.500em;
}

.post a:link,
.post a:visited {
	color: #3A79AC;
}

.post a:hover {
	text-decoration: underline;
}

.post>ul {
	margin: 0 0 15px 15px;
}

.post>ul li {
	list-style-type: disc;
	margin: 0 0 5px 0;
}

.post>ol {
	margin: 0 0 15px 15px;
}

.post>ol li {
	list-style-type: decimal;
	margin: 0 0 5px 0;
}



/*
	 * SIDEBAR / COLONNE
	 *
	 */
.column {
	float: left;
}


/* Left */
#column-left {
	width: 160px;
	background: url('../img/sidebar_left_shadow_right.png') no-repeat scroll right top transparent;
	padding: 0 10px 0 0;
	margin: 0 15px 0 0;
	min-height: 369px;
}

/* Right */
#column-right {
	width: 240px;
}

/* Become a partner */
#become-a-partner {
	border: 1px solid #DDDDDD;
	border-bottom: 3px solid #3A79AC;

	background: url('../img/technology_preview_box_bg.png') no-repeat scroll right top transparent;
}

#become-a-partner>.inner {
	padding-bottom: 30px;
}

#become-a-partner h2 {
	font-size: 1.667em;
	font-weight: 600;
	margin-bottom: 10px;
}

#become-a-partner h2,
#become-a-partner h2 a {
	color: #62AE4A;
}

#become-a-partner h2 a {
	background: url('../img/arrow_right_green_medium2.png') no-repeat scroll left center transparent;
	padding-left: 46px;
	display: block;
}

#become-a-partner .button {
	clear: both;
}

/*
	 * WIDGETS
	 *
	 */
.widget-container {
	padding: 10px 0;
	border-top: 1px solid #DDDDDD;
	border-bottom: 1px solid #DDDDDD;
	margin-bottom: 10px;
}

/* Post figli */
.child-posts {}

.child-posts .widget-head {
	display: none;
}

.child-posts .widget-content {}

.child-posts .widget-content ul li {
	color: #111111;
	font-size: 0.917em;
	font-weight: 600;
}

.child-posts .widget-content ul li ul li {}

.child-posts .widget-content ul li a {
	color: #3A79AC;
}

.child-posts .widget-content ul li ul {
	border-top: 1px dotted #DDDDDD;
	padding: 10px 0 0 10px;
	margin-top: 8px;
}

.child-posts .widget-content ul li ul li {
	font-size: 1em;
	font-weight: 300;
	padding-bottom: 10px;
}

.child-posts .widget-content ul li ul li.last {
	padding-bottom: 0;
}

.child-posts .widget-content ul li ul li a {
	color: #459646;
}


/*
	 * ATTACHMENTS
	 *
	 */
.attachments {
	clear: left;
	margin-top: 20px;
	margin-bottom: 25px;
	overflow: hidden;
}

.attachments .attachment-type {
	float: left;
	width: 46%;
	margin-right: 4%;
}

.attachments .attachment-type h2 {
	margin-bottom: 10px;
	padding-bottom: 5px;
	font-size: 1.083em;
	font-weight: 600;
}

.attachments .attachment-type ul {
	margin: 0;
	padding: 0;
}

.attachments .attachment-type ul li {
	font-weight: 600;
	font-size: 0.917em;
	padding-bottom: 5px;
}

.attachments .attachment-type ul li a {
	padding-left: 25px;
}

/* Vedi anche */
.attachments .attachment-vedi-anche h2,
.attachments .attachment-vedi-anche ul li,
.attachments .attachment-vedi-anche ul li a {
	color: #255EA3;
}

.attachments .attachment-vedi-anche ul li a {
	color: #255EA3;
	background: url('../img/arrow_right_blue_mini.png') no-repeat scroll left center transparent;
}

/* Download */
.attachments .attachment-file h2,
.attachments .attachment-file ul li,
.attachments .attachment-file ul li a {
	color: #55A83C;
}

.attachments .attachment-file ul li a {
	background: url('../img/arrow_right_green_mini.png') no-repeat scroll left center transparent;
}


/*
	 * FOOTER
	 *
	 */
#footer {
	background: #464646;
	border-top: 10px solid #666666;
}

#footer a,
#footer a:hover {
	color: #FFFFFF;
}

#footer nav a,
#footer nav a:hover {
	color: #999999;
}

#footer p {
	margin: 0 0 10px 0;
}

#footer p,
#footer ul li {
	color: #AAAAAA;
	line-height: 1.333em;
}

#footer>.wrapper>ul {
	overflow: hidden;
}

#footer>.wrapper>ul>li {
	float: left;
	height: 200px;
	padding-top: 20px;
	padding-right: 25px;
	margin-right: 25px;
	border-right: 1px solid #666666;
}

#footer>.wrapper>ul>li h2 {
	font-family: "Helvetica Neue", Arial, sans-serif;
	font-weight: 400;
	font-size: 1.667em;
	color: #FFFFFF;
	margin-bottom: 10px;
}

#footer>.wrapper>ul>li.last {
	border-right: none;
}

/* Site info */
#site-info {
	width: 380px;
	padding-right: 110px !important;
}

/* Nav Company*/
#nav-company ul li {
	margin-bottom: 3px;
}

/* Nav Social bottom */
#nav-social-bottom ul li {
	margin: 0 0 10px 0;
	text-indent: -9999px;
	padding-left: 46px;
}

#nav-social-bottom ul li.last {
	margin: 0;
}

#nav-social-bottom ul li a {
	background: url('../img/icons/social.png') no-repeat scroll 0px 0px transparent;
	display: block;
	width: 19px;
	height: 19px;

	-webkit-opacity: 0.40;
	-moz-opacity: 0.40;
	filter: alpha(opacity=40);
}

#nav-social-bottom ul li a:hover {
	-webkit-opacity: 1;
	-moz-opacity: 1;
	filter: alpha(opacity=100);
}

#nav-social-bottom ul li.twitter a {
	background: url('../img/icons/social.png') no-repeat scroll 0px -19px transparent;
}

#nav-social-bottom ul li.linkedin a {
	background: url('../img/icons/social.png') no-repeat scroll -19px -19px transparent;
}

#nav-social-bottom ul li.pinterest a {
	background: url('../img/icons/social.png') no-repeat scroll -38px -19px transparent;
}

#nav-social-bottom ul li.googleplus a {
	background: url('../img/icons/social.png') no-repeat scroll -57px -19px transparent;
}

#nav-social-bottom ul li.rss a {
	background: url('../img/icons/social.png') no-repeat scroll -76px -19px transparent;
}

/* Support bottom */
#ask-support {
	width: 176px;
}

#ask-support form input[type="text"] {
	width: 140px;
	background: #676767;
	border: 1px solid #999999;
	color: #FFFFFF;
	float: left;
	margin: 0 5px 0 0;
}

#ask-support form button {
	float: left;
	padding: 0;
	width: 12px;
	height: 20px;
	display: block;
	background: url('../img/arrow_grey_medium_right.png') no-repeat scroll left center transparent;
	text-indent: -9999px;
}


/*
	 * TEMPLATE: HOME
	 *
	 */
body.home #home-intro {
	text-align: center;
	padding-top: 40px;
	margin-bottom: 30px;
}

body.home #home-intro h2 {
	font-family: "Helvetica Neue", Arial, sans-serif;
	font-weight: 400;
	color: #3A79AC;
	font-size: 3.167em;
	margin-bottom: 15px;
}

body.home #home-intro p {
	color: #888888;
	font-size: 1.500em;
	line-height: 1.167em;
}

/* Technology Intro */
body.home #technologies-intro {
	background: #FFFFFF;
	margin-bottom: 20px;
}

body.home #technologies-intro>.inner {
	padding: 20px;
	overflow: hidden;
}

body.home #technologies-intro h2 {
	font-family: "Helvetica Neue", Arial, sans-serif;
	font-weight: 400;
	font-size: 2.333em;
	color: #3979AC;
	margin-bottom: 10px;
}

body.home #technologies-intro p {
	float: left;
	width: 400px;
	margin: 0;
}

body.home #technologies-intro ul.iconed {
	float: right;
	margin-top: -40px;
}

body.home #technologies-intro ul.iconed li {
	float: left;
	margin: 0 60px 0 0;
	text-align: center;
	font-family: "Helvetica Neue", Arial, sans-serif;
	font-weight: 700;
	font-size: 1.333em;
}

body.home #technologies-intro ul.iconed li a {
	display: block;
	background: url('../../../uploads/2021/03/technologies_icons_v3.jpg') no-repeat scroll 0px 0px transparent;
	width: 75px;
	color: #3A79AC;
	padding-top: 85px;
}

body.home #technologies-intro ul.iconed li a:hover {
	color: #58A83E;
}

/*body.home #technologies-intro ul.iconed li.geobatch    a { background: url('../img/technologies_icons_v2.jpg') no-repeat scroll 0px    0px transparent; }*/
body.home #technologies-intro ul.iconed li.greenserver a {
	background: url('../../../uploads/2021/03/technologies_icons_v3.jpg') no-repeat scroll 0x 0px transparent;
}

body.home #technologies-intro ul.iconed li.mapstore a {
	background: url('../../../uploads/2021/03/technologies_icons_v3.jpg') no-repeat scroll -75px 0px transparent;
}

body.home #technologies-intro ul.iconed li.geonetwork a {
	background: url('../../../uploads/2021/03/technologies_icons_v3.jpg') no-repeat scroll -150px 0px transparent;
}

body.home #technologies-intro ul.iconed li.opensdi a {
	background: url('../../../uploads/2021/03/technologies_icons_v3.jpg') no-repeat scroll -225px 0px transparent;
}

/*body.home #technologies-intro ul.iconed li.geobatch    a:hover { background: url('../img/technologies_icons_v2.jpg') no-repeat scroll 0px    -170px transparent; }*/
body.home #technologies-intro ul.iconed li.greenserver a:hover {
	background: url('../../../uploads/2021/03/technologies_icons_v3.jpg') no-repeat scroll 0px -170px transparent;
}

body.home #technologies-intro ul.iconed li.mapstore a:hover {
	background: url('../../../uploads/2021/03/technologies_icons_v3.jpg') no-repeat scroll -75px -170px transparent;
}

body.home #technologies-intro ul.iconed li.geonetwork a:hover {
	background: url('../../../uploads/2021/03/technologies_icons_v3.jpg') no-repeat scroll -150px -170px transparent;
}

body.home #technologies-intro ul.iconed li.opensdi a:hover {
	background: url('../../../uploads/2021/03/technologies_icons_v3.jpg') no-repeat scroll -225px -170px transparent;
}

/* Technology preview */
body.home #technologies-preview-intro {
	background: #FFFFFF;
	margin-bottom: 20px;
}

body.home #technologies-preview-intro>.inner {
	padding: 20px;
	overflow: hidden;
}

body.home #technologies-preview-intro ul li {
	float: left;
	width: 230px;
	margin: 0 17px 0 0;
	border: 1px solid #DDDDDD;
	background: url('../img/technology_preview_box_bg.png') no-repeat scroll right top transparent;
	text-align: center;
}

body.home #technologies-preview-intro ul li>.inner {
	border-bottom: 3px solid #3A79AC;
	padding: 10px;
	height: 220px;
	position: relative;
}

body.home #technologies-preview-intro ul li>.inner a.button {
	position: absolute;
	right: 84px;
	bottom: 10px;
}

body.home #technologies-preview-intro .service-number {
	font-family: "Helvetica Neue", Arial, sans-serif;
	font-weight: 700;
	font-size: 1.833em;
	background: url('../img/circle_blue.png') no-repeat scroll center top transparent;
	height: 34px;
	text-align: center;
	color: #FFFFFF;
	padding-top: 12px;
	margin-top: -31px;
	margin-bottom: 15px;
}

body.home #technologies-preview-intro h3 {
	font-family: "Helvetica Neue", Arial, sans-serif;
	font-weight: 700;
	font-size: 1.500em;
	margin-bottom: 10px;
}

body.home #technologies-preview-intro h3,
body.home #technologies-preview-intro h3 a {
	color: #3A79AC;
}

body.home #technologies-preview-intro p {
	font-size: 1.083em;
	line-height: 1.500em;
}

/* Hover su box */
body.home #technologies-preview-intro ul li:hover .service-number {
	background: url('../img/circle_green.png') no-repeat scroll center top transparent;
}

body.home #technologies-preview-intro ul li:hover>.inner {
	border-bottom: 3px solid #62AE4A;
}

body.home #technologies-preview-intro ul li:hover h3,
body.home #technologies-preview-intro ul li:hover h3 a {
	color: #62AE4A;
}

body.home #technologies-preview-intro ul li:hover .button {
	background: #62AE4A;
}

/* Clienti Fiduciosi */
#clienti-intro {
	background: url('../img/box_fiducia_bg.png') repeat-x scroll left top transparent;
	padding-top: 15px;
	min-height: 194px;
}

#clienti-intro>.wrapper {
	position: relative;
}

#clienti-intro h2 {
	font-family: "Helvetica Neue", Arial, sans-serif;
	font-weight: 400;
	font-size: 2.333em;
	color: #3979AC;
	margin: 0 10px 10px 0;
	float: left;
}

#clienti-intro h2+p {
	color: #999999;
	font-size: 1.500em;
	font-style: italic;
	line-height: 2em;
	float: left;
	margin: 0;
}

#clienti-intro .scroller-container {
	width: 870px;
	margin: 0 0 0 80px;
}

#clienti-intro .scroller-container .last img {
	margin-right: 0;
}

#clienti-intro .scroller-container img {
	display: block;
	float: left;
	line-height: 0;
	margin: 0 20px 0 0;
	border: 1px solid #DDDDDD;
}

#clienti-intro .scroller-controls a {
	position: absolute;
	top: 79px;
	display: block;
	text-indent: -9999px;
	width: 24px;
	height: 18px;
}

#clienti-intro .scroller-controls a.disabled {
	-webkit-opacity: 0.30;
	-moz-opacity: 0.30;
	filter: alpha(opacity=30);
}

#clienti-intro .scroller-controls a.bx-next {
	background: url('../img/arrow_blue_big.png') no-repeat scroll 0px -18px transparent;
	right: 0;
}

#clienti-intro .scroller-controls a.bx-prev {
	background: url('../img/arrow_blue_big.png') no-repeat scroll 0px 0px transparent;
	left: 0;
}


/*
	 * TEMPLATE: ARCHIVE
	 *
	 */
body.archive .archive-filters {
	float: right;
	margin-top: -58px;
	margin-right: -20px;
}

body.archive .archive-filters select,
body.archive .archive-filters .selectBox-dropdown {
	margin: 0 0 0 5px;
}

/* Pagination */
body.archive #content>.inner>.pagination {
	position: relative;
	top: 8px;
	text-align: center;
}

body.archive #content>.inner>.pagination ol {
	display: inline;
}

body.archive #content>.inner>.pagination ol li {
	display: inline;
}

body.archive #content>.inner>.pagination ol li a {}


/*
	 * TEMPLATE: PAGINA
	 *
	 */
body.page #content>.inner {
	padding: 15px 10px;
}

body.page #content>.inner>article {
	float: left;
	width: 726px;
	margin: 0 15px 0 0;
}

body.page #content>.inner>#column-left+article {
	width: 540px;
}


/* Media gallery */
body.page .attachment-mediagallery {
	float: none;
	width: auto;
	margin-right: 0;

	position: relative;
}

body.page .attachment-mediagallery #mediagallery {
	width: 160px;
	margin-top: 5px;
	margin-left: 40px;
}



body.page .attachment-mediagallery #mediagallery .scroller a {
	margin: 0 3px 0 0;
	position: relative;
}

body.page .attachment-mediagallery #mediagallery .scroller .video .icon {
	display: block;
	background: url('../img/play.png') no-repeat scroll left top transparent;
	text-indent: -9999px;
	width: 26px;
	height: 28px;
	position: absolute;
	left: 12px;
	top: -25px;
}

body.page .attachment-mediagallery #mediagallery .scroller-controls a {
	position: absolute;
	top: 189px;
	display: block;
	text-indent: -9999px;
	width: 24px;
	height: 18px;
}

body.page .attachment-mediagallery #mediagallery .scroller-controls a.disabled {
	-webkit-opacity: 0.30;
	-moz-opacity: 0.30;
	filter: alpha(opacity=30);
}

body.page .attachment-mediagallery #mediagallery .scroller-controls a.bx-next {
	background: url('../img/arrow_green_big.png') no-repeat scroll 0px -18px transparent;
	right: 0;
}

body.page .attachment-mediagallery #mediagallery .scroller-controls a.bx-prev {
	background: url('../img/arrow_green_big.png') no-repeat scroll 0px 0px transparent;
	left: 0;
}


/*
	 * TEMPLATE: CASE STUDIES (ARCHIVE)
	 *
	 */
body.archive-casestudy #content .article-container {
	overflow: hidden;
}

body.archive-casestudy #content .article-container article {
	margin: 0 11px 10px 0;
	float: left;
	width: 230px;
	height: 240px;
	border: 1px solid #CCCCCC;
	border-bottom: 3px solid #437FB1;
}

body.archive-casestudy #content .article-container article img {
	display: block;
}

body.archive-casestudy #content .article-container article .description {
	border-top: 1px solid #CCCCCC;
}

body.archive-casestudy #content .article-container article .description h2 {
	font-weight: 600;
	margin-bottom: 5px;
}

body.archive-casestudy #content .article-container article .description h2,
body.archive-casestudy #content .article-container article .description h2 a {
	color: #111111;
}

body.archive-casestudy #content .article-container article .description p {
	line-height: 1.333em;
}

body.archive-casestudy #content .article-container article .description .inner {
	padding: 10px;
}

body.archive-casestudy #content .article-container article:hover {
	border-bottom: 3px solid #59A83D;
}

body.archive-casestudy #content .article-container article:hover .description h2,
body.archive-casestudy #content .article-container article:hover .description h2 a {
	color: #59A83D;
}


/*
	 * TEMPLATE: SINGLE
	 *
	 */
body.single #content>.inner {
	padding: 15px 10px;
}

body.single #content>.inner>article {
	float: left;
	width: 432px;
	margin: 0 15px 0 0;
}

/* Media gallery */
body.single #content>.inner>article+.attachments {
	clear: none;
}

body.single .attachment-mediagallery {
	float: left;
	width: 534px;
	margin-right: 0;
	position: relative;
}

body.single .attachment-mediagallery #mediagallery {
	width: 468px;
	margin-top: 5px;
	margin-left: 40px;
}

body.single .attachment-mediagallery #mediagallery .scroller a {
	margin: 0 5px 0 0;
	position: relative;
}

body.single .attachment-mediagallery #mediagallery .scroller .video .icon {
	display: block;
	background: url('../img/play.png') no-repeat scroll left top transparent;
	text-indent: -9999px;
	width: 26px;
	height: 28px;
	position: absolute;
	left: 29px;
	top: -46px;
}

body.single .attachment-mediagallery #mediagallery .scroller-controls a {
	position: absolute;
	top: 426px;
	display: block;
	text-indent: -9999px;
	width: 24px;
	height: 18px;
}

body.single .attachment-mediagallery #mediagallery .scroller-controls a.disabled {
	-webkit-opacity: 0.30;
	-moz-opacity: 0.30;
	filter: alpha(opacity=30);
}

body.single .attachment-mediagallery #mediagallery .scroller-controls a.bx-next {
	background: url('../img/arrow_green_big.png') no-repeat scroll 0px -18px transparent;
	right: 0;
}

body.single .attachment-mediagallery #mediagallery .scroller-controls a.bx-prev {
	background: url('../img/arrow_green_big.png') no-repeat scroll 0px 0px transparent;
	left: 0;
}


/*
	 * TEMPLATE: SERVICEs (ARCHIVE)
	 *
	 */
body.archive-service #content {
	background: none;
}

body.archive-service #content>.inner {
	padding: 0;
}

body.archive-service #content .article-container article {
	background: #FFFFFF;
	margin: 0 0 20px 0;
}

body.archive-service #content .article-container article h2 {
	font-size: 2.000em;
	font-weight: 600;
	margin-bottom: 3px;
}

body.archive-service #content .article-container article h3 {
	color: #666666;
	font-weight: 600;
	margin-bottom: 13px;
}

body.archive-service #content .article-container article .wp-post-image.left {
	margin: 0 30px 0 0;
}

body.archive-service #content .article-container article>.inner {
	padding: 30px;
	overflow: hidden;
}


/*
	 * UTILITA'
	 *
	 */
.noBorderRight {
	border-right: none !important;
}

.clearfix {
	clear: both;
	height: 0;
	visibility: hidden;
}

.cursor-hand {
	cursor: pointer;
	cursor: hand;
}

.clearLeft {
	clear: left;
}

.clearRight {
	clear: right;
}

.clearBoth {
	clear: both;
}

.noClear {
	clear: none !important;
}

.no-margin-top {
	margin-top: 0 !important;
}

.no-margin-bottom {
	margin-bottom: 0 !important;
}

.last-column,
.last {
	margin-right: 0 !important;
	padding-right: 0 !important;
}

.hide {
	position: absolute !important;
	clip: rect(1px, 1px, 1px, 1px);
}


/*
	 * CMS
	 *
	 */
.alignnone {
	margin: 5px 20px 20px 0;
}

.aligncenter,
div.aligncenter {
	display: block;
	margin: 5px auto 5px auto;
}

.alignright {
	float: right;
	margin: 5px 0 20px 20px;
}

.alignleft {
	float: left;
	margin: 5px 20px 20px 0;
}

.aligncenter {
	display: block;
	margin: 5px auto 5px auto;
}

a img.alignright {
	float: right;
	margin: 5px 0 20px 20px;
}

a img.alignnone {
	margin: 5px 20px 20px 0;
}

a img.alignleft {
	float: left;
	margin: 5px 20px 20px 0;
}

a img.aligncenter {
	display: block;
	margin-left: auto;
	margin-right: auto
}

.wp-caption {
	background: #fff;
	border: 1px solid #f0f0f0;
	max-width: 96%;
	padding: 5px 3px 10px;
	text-align: center;
}

.wp-caption.alignnone {
	margin: 5px 20px 20px 0;
}

.wp-caption.alignleft {
	margin: 5px 20px 20px 0;
}

.wp-caption.alignright {
	margin: 5px 0 20px 20px;
}

.wp-caption img {
	border: 0 none;
	height: auto;
	margin: 0;
	max-width: 98.5%;
	padding: 0;
	width: auto;
}

.wp-caption p.wp-caption-text {
	font-size: 11px;
	line-height: 17px;
	margin: 0;
	padding: 0 4px 5px;
}

#wpadminbar {
	background-color: #7A262A !important;
	background-image: none !important;
	color: #FFFFFF;
	direction: ltr;
	font: 13px/28px sans-serif;
	height: 28px;
	left: 0;
	min-width: 600px;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 99999;
}

#wpadminbar a {
	color: #FFFFFF;
}

/* BLOG ARCHIVE */
#content a+.blog-content-box {
	width: 535px;
}

#content .blog-content-box {
	width: 945px;
	float: right;
}

#content .blog-content-box .article-meta {
	text-transform: uppercase;
	margin: 10px 0;
	border-bottom: 1px solid #eeeeee;
}

#content .blog-content-box .article-meta span.article-categories {
	font-size: 1.200em;
	font-weight: 600;
}

#content .blog-content-box .article-meta span.article-date {
	color: #666;
}

#content .blog-content-box .article-meta span.article-author {
	color: #666;
}

#blog-tools {
	background: url('../img/box_fiducia_bg.png') repeat-x scroll left top #ffffff;
	padding-top: 15px;
	min-height: 330px;
}

#blog-tools>.wrapper {
	position: relative;
	width: 1022px;
	margin: 0 auto;
}

#blog-tools .tags-cloud-box,
#blog-tools .authors-box,
#blog-tools .blog-archive-box {
	float: left;
	margin: 10px 0 10px 20px;
}

#blog-tools .tags-cloud-box {
	width: 460px;
	margin: 10px 20px 10px 10px;
}

#blog-tools .authors-box {
	width: 306px;
	margin: 10px 20px 10px 0;
}

#blog-tools .blog-archive-box {
	width: 185px;
	margin: 10px 0 10px 0;
}

#blog-tools .tags-cloud-box h2,
#blog-tools .authors-box h2,
#blog-tools .blog-archive-box h2 {
	margin: 0 0 20px 0;
	font-size: 1.800em;
	font-weight: 600;
	color: #3A79AC;
}

#blog-tools .tags-cloud-box .tags,
#blog-tools .authors-box .authors,
#blog-tools .blog-archive-box .blog-archive {
	margin-bottom: 30px;
}

#blog-tools .tags-cloud-box .tags a {
	padding-right: 5px;
	line-height: 25px;
}

#blog-tools .authors-box .authors ul li {
	float: left;
	list-style: none;
	padding: 0;
	margin: 0 10px 10px 0;
}

#blog-tools .authors-box .authors ul li a img {
	width: 65px;
}

#blog-tools .blog-archive-box .blog-archive ul {}

#blog-tools .blog-archive-box .blog-archive ul li {
	list-style: none;
	margin-bottom: 8px;
}

#blog-tools .blog-archive-box .blog-archive ul li a {
	font-size: 1.300em;
}

/* BLOG SINGLE */
#content div.inner article.post-blog {
	float: none;
	width: 950px;
	margin: 10px auto;
}

#content div.inner article.post-blog h1 {
	text-align: center;
	width: 800px;
	font-size: 2.8em;
	line-height: 1.1em;
	margin: 0 auto 20px auto;
}

#content div.inner article.post-blog p,
#content div.inner article.post-blog div,
#content div.inner article.post-blog ul li {
	font-size: 14px;
	color: #333333;
	line-height: 1.500em;
}

#content div.inner article.post-blog .article-meta {
	text-align: center;
	text-transform: uppercase;
	margin: 10px 0;
	border-bottom: 1px solid #eeeeee;
}

#content div.inner article.post-blog .article-meta span.article-categories {
	font-size: 1.1em;
	font-weight: 600;
}

#content div.inner article.post-blog .article-meta span.article-date {
	color: #666;
}

#content div.inner article.post-blog .article-meta span.article-author {
	color: #666;
}

#content div.inner article.post-blog .wp-post-image-link {
	text-align: center;
	display: block;
	margin: 20px 0;
}

div.rssblog-icon a {
	width: 32px;
	height: 32px;
	background: url('../img/rss_icon.png') no-repeat scroll left top transparent;
	display: block;
	text-decoration: none;
}

/*
	 * COMMENTS
	 *
	 */
#comments {
	border-top: 1px solid #eeeeee;
	margin-top: 10px;
	padding-top: 10px;
}

.comments-title-container {
	padding: 0 0 5px 0;
	margin: 0 0 10px 0;
}

.comments-title-container h2 {
	border: none;
	font-size: 1.3em;
	margin: 0;
	padding: 0;
	text-transform: uppercase;
}

#comments time {
	font-weight: bold;
}

ol.commentlist li>article {
	margin-bottom: 10px;
}

ol.commentlist>li>article {
	background: #eeeeee;
	padding: 10px;
}

ol.commentlist article header {
	overflow: visible;
	margin-bottom: 5px;
	height: 18px;
}

ol.commentlist a.comment-link,
ol.commentlist article header cite {
	font-size: 1.333em;
}

ol.commentlist a.comment-link,
ol.commentlist article header cite,
ol.commentlist article header cite a {
	color: #3A79AC
}

ol.commentlist article header time {
	font-size: 0.917em;
	color: #3A79AC padding-left: 10px;
}

ol.commentlist article header .comment-content {
	clear: both;
}

ol.commentlist ol.children {
	margin: 0 0 0 20px;
}

ol.commentlist ol.children>li>article {
	background: #EAEAEA;
	padding: 10px;
}

ol.commentlist .reply {
	overflow: hidden;
	display: block;
}

ol.commentlist a.comment-reply-link {
	float: right;
	display: block;
	line-height: 1.500em;
	color: #3A79AC
}

#mc4wp-checkbox label {
	width: 600px !important;
}

/* Risposta */
#respond {
	padding: 10px 0;
}

#respond>h3#reply-title {
	text-transform: uppercase;
	color: #3A79AC;
	font-size: 1.167em;
}

#respond form label {
	color: #555555;
	display: block;
	width: 100px;
}

#respond .form-submit {
	text-align: center;
}

#respond #comment {
	width: 500px;
}

.form-allowed-tags {
	display: none;
}

#transition-box {
	width: 480px;
	height: 100px;
	background: url(../img/transition.png) right -30px center no-repeat #fff;
	position: relative;
	float: right;
	margin-right: 20px;
	margin-top: -35px;
}

#transition-box .transition-text {
	position: absolute;
	top: 18px;
	left: 0px;
	color: #3c3c3c;
	font-family: "Helvetica Neue", Arial, sans-serif;
	font-weight: 700;
	font-size: 25px;
	font-style: italic;
	text-align: center;
	width: 400px;
}

#transition-box .transition-text p {
	color: inherit;
}

#transition-box .transition-button {
	display: inline-block;
	height: 25px;
	line-height: 25px;
	padding: 0px 18px;
	color: #fff;
	font-family: "Helvetica Neue", Arial, sans-serif;
	color: #fff;
	font-size: 13px;
	background-color: #3a79ac;
	font-style: initial;
	font-weight: 400;
}