/* File: /stylesheets/jquery.tools/tabs-accordion.css */

/* root element for accordion. decorated with rounded borders and gradient background image */
#accordion {
	/*background:#333 url(/images/jquery.tools/h300.png) 0 0;*/
	width: 100%;
	border:1px solid #ddd;
	-background:#666;
}

/* accordion header */
#accordion h2 {
	background:#ddd url(/images/jquery.tools/h30.png);
	margin:0;
	padding:5px;
	font-size:13px;
	font-weight:normal;
	border:1px solid #fff;
	border-bottom:1px solid #ddd;
	cursor:pointer;
        color:#444;
}

#accordion h2 span.subtitle{
    font-size:10px;
    font-weight:normal;
    color:#777;
    padding-top:3px;
    float:right;
}

/* currently active header */
#accordion h2.current {
	cursor:default;
	background-color:#fff;
}

/* accordion pane */
#accordion .pane {
	border:1px solid #fff;
	border-width:0 2px;
	display:none;
	padding:15px;
	/*color:#fff;*/
	font-size:12px;
}

/* a title inside pane */
#accordion .pane h3 {
	font-weight:normal;
	margin:0 0 -5px 0;
	font-size:16px;
	color:#999;
}


#accordion fieldset{
    margin:10px;
    padding:10px;
    width:auto ;
}

/* File: /stylesheets/jquery.tools/tooltip.css */
/* trigger button */
#test_tooltip {
	background:green;
	display:block;
	height:44px;
	margin-bottom:30px;
	overflow:hidden;
	text-indent:-999em;
	width:159px;
	cursor:pointer;
}

/* mouseover state */
#test_tooltip:hover {
	background-position:0 -44px ;
}

/* clicked state */
#test_tooltip:focus {
	background-position:0 -88px;
}

/* tooltip styling */
.tooltip {
	display:none;
	background:transparent url(http://www.flowplayer.org/tools/img/tooltip/black_arrow.png);
	height:70px;
	padding:25px;
	width:160px;
	font-size:12px;
	color:#fff;
}

/* a .label element inside tooltip */
.tooltip .label {
	
}

.tooltip a {

}


/* File: /stylesheets/calendar-system.css */
/* The main calendar widget.  DIV containing a table. */

.calendar {
	z-index:200;
  position: relative;
  display: none;
  border: 1px solid;
  border-color: #fff #000 #000 #fff;
  font-size: 11px;
  cursor: default;
  background: Window;
  color: WindowText;
  font-family: tahoma,verdana,sans-serif;
}

.calendar table {
  border: 1px solid;
  border-color: #fff #000 #000 #fff;
  font-size: 11px;
  cursor: default;
  background: Window;
  color: WindowText;
  font-family: tahoma,verdana,sans-serif;
}

/* Header part -- contains navigation buttons and day names. */

.calendar .button { /* "<<", "<", ">", ">>" buttons have this class */
  text-align: center;
  padding: 1px;
  border: 1px solid;
  border-color: ButtonHighlight ButtonShadow ButtonShadow ButtonHighlight;
  background: ButtonFace;
}

.calendar .nav {
  background: ButtonFace url(/images/menuarrow.gif) no-repeat 100% 100%;
}

.calendar thead .title { /* This holds the current "month, year" */
  font-weight: bold;
  padding: 1px;
  border: 1px solid #000;
  background: ActiveCaption;
  color: CaptionText;
  text-align: center;
}

.calendar thead .headrow { /* Row <TR> containing navigation buttons */
}

.calendar thead .daynames { /* Row <TR> containing the day names */
}

.calendar thead .name { /* Cells <TD> containing the day names */
  border-bottom: 1px solid ButtonShadow;
  padding: 2px;
  text-align: center;
  background: ButtonFace;
  color: ButtonText;
}

.calendar thead .weekend { /* How a weekend day name shows in header */
  color: #f00;
}

.calendar thead .hilite { /* How do the buttons in header appear when hover */
  border: 2px solid;
  padding: 0px;
  border-color: ButtonHighlight ButtonShadow ButtonShadow ButtonHighlight;
}

.calendar thead .active { /* Active (pressed) buttons in header */
  border-width: 1px;
  padding: 2px 0px 0px 2px;
  border-color: ButtonShadow ButtonHighlight ButtonHighlight ButtonShadow;
}

/* The body part -- contains all the days in month. */

.calendar tbody .day { /* Cells <TD> containing month days dates */
  width: 2em;
  text-align: right;
  background-color:#f5f5f5;
  padding: 2px 4px 2px 2px;
}
.calendar tbody .day.othermonth {
  font-size: 80%;
  color: #aaa;
}
.calendar tbody .day.othermonth.oweekend {
  color: #faa;
}

.calendar table .wn {
  padding: 2px 3px 2px 2px;
  border-right: 1px solid ButtonShadow;
  background: ButtonFace;
  color: ButtonText;
}

.calendar tbody .rowhilite td {
  background: Highlight;
  color: HighlightText;
}

.calendar tbody td.hilite { /* Hovered cells <TD> */
  padding: 1px 3px 1px 1px;
  border-top: 1px solid #fff;
  border-right: 1px solid #000;
  border-bottom: 1px solid #000;
  border-left: 1px solid #fff;
}

.calendar tbody td.active { /* Active (pressed) cells <TD> */
  padding: 2px 2px 0px 2px;
  border: 1px solid;
  border-color: ButtonShadow ButtonHighlight ButtonHighlight ButtonShadow;
}

.calendar tbody td.selected { /* Cell showing selected date */
  font-weight: bold;
  border: 1px solid;
  border-color: ButtonShadow ButtonHighlight ButtonHighlight ButtonShadow;
  padding: 2px 2px 0px 2px;
  background: ButtonFace;
  color: ButtonText;
}

.calendar tbody td.weekend { /* Cells showing weekend days */
  color: #f00;
}

.calendar tbody td.today { /* Cell showing today date */
  font-weight: bold;
  color: #00f;
}

.calendar tbody td.disabled { color: GrayText; }

.calendar tbody .emptycell { /* Empty cells (the best is to hide them) */
  visibility: hidden;
}

.calendar tbody .emptyrow { /* Empty row (some months need less than 6 rows) */
  display: none;
}

/* The footer part -- status bar and "Close" button */

.calendar tfoot .footrow { /* The <TR> in footer (only one right now) */
}

.calendar tfoot .ttip { /* Tooltip (status bar) cell <TD> */
  background: ButtonFace;
  padding: 1px;
  border: 1px solid;
  border-color: ButtonShadow ButtonHighlight ButtonHighlight ButtonShadow;
  color: ButtonText;
  text-align: center;
}

.calendar tfoot .hilite { /* Hover style for buttons in footer */
  border-top: 1px solid #fff;
  border-right: 1px solid #000;
  border-bottom: 1px solid #000;
  border-left: 1px solid #fff;
  padding: 1px;
  background: #e4e0d8;
}

.calendar tfoot .active { /* Active (pressed) style for buttons in footer */
  padding: 2px 0px 0px 2px;
  border-top: 1px solid #000;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  border-left: 1px solid #000;
}

/* Combo boxes (menus that display months/years for direct selection) */

.calendar .combo {
  position: absolute;
  display: none;
  width: 4em;
  top: 0px;
  left: 0px;
  cursor: default;
  border: 1px solid;
  border-color: ButtonHighlight ButtonShadow ButtonShadow ButtonHighlight;
  background: Menu;
  color: MenuText;
  font-size: 90%;
  padding: 1px;
  z-index: 100;
}

.calendar .combo .label,
.calendar .combo .label-IEfix {
  text-align: center;
  padding: 1px;
}

.calendar .combo .label-IEfix {
  width: 4em;
}

.calendar .combo .active {
  padding: 0px;
  border: 1px solid #000;
}

.calendar .combo .hilite {
  background: Highlight;
  color: HighlightText;
}

.calendar td.time {
  border-top: 1px solid ButtonShadow;
  padding: 1px 0px;
  text-align: center;
  background-color: ButtonFace;
}

.calendar td.time .hour,
.calendar td.time .minute,
.calendar td.time .ampm {
  padding: 0px 3px 0px 4px;
  border: 1px solid #889;
  font-weight: bold;
  background-color: Menu;
}

.calendar td.time .ampm {
  text-align: center;
}

.calendar td.time .colon {
  padding: 0px 2px 0px 3px;
  font-weight: bold;
}

.calendar td.time span.hilite {
  border-color: #000;
  background-color: Highlight;
  color: HighlightText;
}

.calendar td.time span.active {
  border-color: #f00;
  background-color: #000;
  color: #0f0;
}


/* File: /application/xmanager/css/layout_007_style.css */
/*

  Questo è il css condiviso del layout camera_primo_livello
  Usalo per definire le cose che sono uguali per tutti i progetti.
  Idealmente questo sara' proprio un layout nel senso che definisce la struttura
  del documento, invece dell'aspetto (colori/fonts/etc)

  XManager - Copyright Interact Srl - Roma - Page layout camera_primo_livello - Wed May  6 10:27:08 2009

*/
@charset "utf-8";
/* CSS Document */
body {
	background:#FFFFFF;
	margin:0;
	padding:0;
}
.liquid_container {
	height:100%;
	margin:0;
	padding:0;
	position:absolute;
	width:100%;
}
.liquid_header {
	background:#F1F1F1;
	height:17%;
	position:relative;
	width:100%;
}
.cnt_cols{
	width:100%;
}
.cols_wrapper{
	width:100%;
	background-color:#99CC99;
}
.liquid_col_dx {
	background:#FFFFCC;
	float:left;
	height:66%;
	position:relative;
	width:23%;
}
.liquid_content {
	background:#CCFFCC;
	float:left;
	height:66%;
	position:relative;
	width:77%;
}
.liquid_footer {
	background:#FFCCCC;
	clear:both;
	height:17%;
	position:relative;
	width:100%;
}
div.clear_cols {
	clear:both;
	line-height:1px;
	font-size:1px;
	height:1px;
}
ul, h1, h2 {
	margin:0;
	padding:0;
}


/* File: /application/xmanager/projects/interact2012english/css/common.css */
@font-face{
    font-family:'UniversLT57CondensedRegular';
    src:url('/application/xmanager/projects/interact2012english/fonts/universlt57-webfont.ttf') format('truetype');
    font-weight:normal;
    font-style:normal;
}
@font-face{
    font-family:'UniversLT67CondensedBoldRg';
    src:url('/application/xmanager/projects/interact2012english/fonts/universlt67-webfont.ttf') format('truetype');
    font-weight:normal;
    font-style:normal;
}
@font-face{
    font-family:'UniversLT47CondensedLtRegular';
    src:url('/application/xmanager/projects/interact2012english/fonts/universlt47-webfont.ttf') format('truetype');
    font-weight:normal;
    font-style:normal;
}
@font-face{
    font-family:'UniversCondensedMedium';
    src:url('/application/xmanager/projects/interact2012english/fonts/unvr57x-webfont.ttf') format('truetype');
    font-weight:normal;
    font-style:normal;
}
body{
	font-family:Arial, Helvetica, sans-serif;
	font-size:1em;
	margin:0;
	padding:0;
	background-color:#FFFFFF;
	background-image:url(/application/xmanager/projects/interact2012english/img/layout/bg_body_second.gif);
	background-repeat:repeat-x;
}
body#home{
	background-image:url(/application/xmanager/projects/interact2012english/img/layout/bg_body_slideshow.gif);
}
body#home.promo, body#web_agency_roma.promo{
	background-image:url(/application/xmanager/projects/interact2012english/img/layout/bg_body_promo.gif);
}
body#web_agency.promo_second{
	background-image:url(/application/xmanager/projects/interact2012english/img/layout/bg_body_promo_second.gif);
}

div.primo_piano{
	height:353px;
	background-image:url(/application/xmanager/projects/interact2012english/img/layout/bg_slideshow.jpg);
	background-repeat:no-repeat;
	position:absolute;
	width:960px;
	top:114px;
	left:25px;
}
div.primo_piano div.image{
  position:absolute;
	top:0;
	left:0;
}
div.primo_piano div.title{
	font-family:'UniversLT47CondensedLtRegular';
	font-size:2.4em;
	color:#FFFFFF;
	margin-left:585px;
	position:relative;
	width:345px;
	text-shadow:2px 2px 2px #4D4D4D;
	padding-top:110px;
	line-height:1em;
}
div.primo_piano div.title a, div.primo_piano div.abstract a{
	color:#FFF;
}
div.primo_piano div.abstract{
	font-family:'UniversLT47CondensedLtRegular';
	font-size:1.3em;
	line-height:1.1em;
	color:#FFFFFF;
	margin-left:585px;
	position:relative;
	width:345px;
	text-shadow:2px 2px 2px #4D4D4D;
}
div.primo_piano div.category{
	font-family:'UniversLT57CondensedRegular';
	text-transform:uppercase;
	color:#FFF;
	float:left;
	position:relative;
	margin-left:585px;
	background-color:#EE3224;
	padding:3px 6px 3px 6px;
	margin-top:50px;
	box-shadow:1px 1px 1px #333;
}
div.primo_piano div.data{	
	font-family:'UniversLT57CondensedRegular';
	text-transform:uppercase;
	color:#FFF;
	float:left;
	position:relative;
	/*margin-left:585px;*/
	padding:3px 6px 3px 6px;
	margin-top:50px;
}
div.primo_piano div.link{
	display:none;
}
div#lista_promo{
	height:353px;
	background-image:url(/application/xmanager/projects/interact2012english/img/layout/bg_lista_promo.jpg);
	background-repeat:no-repeat;
	position:absolute;
	width:960px;
	top:468px;
	left:25px;
}
body#web_agency.promo_second div.titolo_promo{
	height: 60px;
    left: 25px;
    padding-top: 40px;
    position: absolute;
    top: 112px;
    width: 960px;
	background-image:url(/application/xmanager/projects/interact2012english/img/layout/bg_titolo_promo.jpg);
	background-repeat:no-repeat;
}
div.promo_elements li{
	display:block;
	width:192px;
	float:left;	
}
body#web_agency.promo_second div.promo_elements{
	left: 25px;
    position: absolute;
    top: 213px;
    width: 960px;
    width: 898px;
	background-image:url(/application/xmanager/projects/interact2012english/img/layout/bg_lista_promo.jpg);
	background-repeat:no-repeat;
	padding-top:25px;
}

body#home div#liquid_col_dx div.box{
	background-color:#f0f0f0;
	-moz-border-radius:8px;
	border-radius:8px;
	border:1px solid #e6e6e6;
	margin:0 0 20px 0;
}

body#home div#liquid_col_dx div.box div.box_title1{
	font-family:'UniversLT47CondensedLtRegular';
	 background-color:transparent!important;
    color:#333333;
    font-size:2em;
    font-weight:normal;
    height:30px;
    overflow:hidden;
    padding:15px 0 15px 20px;
    text-transform:uppercase;
}
a:focus{ 
	outline:none; 
}
.hide{
	display:none;
}
#liquid_header{
	background-color:transparent;
}
#liquid_content, #liquid_col_dx, #liquid_footer{
	background-color:transparent;
}
#liquid_content{
	width:585px;
	padding:0 0 0 23px;
}
#liquid_col_dx{
	width:370px; 
	padding:0;
}
#wrapper_header_cols{
	width:978px;
	margin:0 auto;
	height:auto;
	background-color:transparent;
	position:relative;
}
#wrapper_header_cols a{
	text-decoration: none;
}
#wrapper_header_cols ul{
	list-style:none;
}
#wrapper_header_cols a img, #liquid_footer a img{ 
	border:none;
}
#wrapper_header_cols a:hover img, #liquid_footer a:hover img{	
	opacity:0.6; filter:alpha(opacity=60);
}
div.top_header{
	height:111px;
	margin-bottom:1px;
}
body#home div.top_header{
	height:467px;
	margin-bottom:27px;
}
body#home.promo div.top_header, body#web_agency_roma.promo div.top_header{
	height:732px;
}
body#web_agency.promo_second div.top_header{
	height:412px;
}
body#web_agency.promo_second h3.title_news{
	padding-top:0;
}
body#news_section ul.style_list_ul li .style_title_link{
	clear:both;
	float:none;
	display:block;
	color:#666;
}
body#news_section ul.style_list_ul li a:hover.style_title_link{
	color:#EE3224;
}
div.cnt_logo{
	width:156px;
	float: left;	
}
h1.logo{
	display:block;
	width:156px;
	margin:0;
	height:111px;
	background:url(/application/xmanager/projects/interact2012english/img/layout/logo_interact.gif);
	float:left;
	height:97px;
}
h1.logo a{
	display:block;
	width:156px;
	height:97px;
}
div.cnt_servizioesearch{
	text-align:right;
	padding:10px 0 0 0;
	width:752px;
	float:right;
}
div.cnt_top_search{
	width:270px;
	float:left;
}
div.cnt_menuservizio{
	float:left;
	margin-top:5px;
	line-height:15px;
	width:307px;
}
div.cnt_menuservizio ul{
	padding: 0;
}
div.cnt_menuservizio li{
	display:inline;
	height:14px;
	border-right:1px solid #c4c4c4;
}
div.cnt_menuservizio li.last{
	border-right:none;
}
div.cnt_menuservizio a{
	font-size: 0.8em;
	color:#000000;
	padding:0 10px;
	line-height:14px;
}
div.cnt_menuservizio li.last a{
	padding:0 0 0 10px;
}
div.cnt_menuservizio a:hover{
	color:#EE3224;
}
div.cnt_top_search input#cerca_nel_sito{
	float:left;
	border:1px solid #c4c4c4;
	width:170px;
	color:#999999;
	padding:3px 3px 2px 3px;
	font-size:0.8em;
	display:block;
	height:18px;
	margin-left:8px;
	border-radius:4px;
}
div.cnt_top_search div.cnt_button{
	float:right;
}
div.cnt_top_search button{
	background-image:url(/application/xmanager/projects/interact2012english/img/layout/bg_cerca.jpg)!important;
	background-repeat:repeat-x;
	background-color:transparent;
	color:#FFFFFF;
	font-size:0.7em;
	padding:2px 5px 2px 5px;
	border:1px solid #C00;
	height:24px;
	cursor:pointer;
	width:75px;
	border-radius:4px;
	box-shadow:2px 2px 2px #bbbbbb;
	text-transform:uppercase;
}
div.top_main_menu{
	font-family:'UniversCondensedMedium';
  	text-align:right;
	width:820px;
	float:right;
	padding-top:42px;
}
div.top_main_menu li{
	display: inline;
}
div.top_main_menu li a{
	font-size: 1.25em;
	color:#333333;
	padding:0 7px;
}
div.top_main_menu li a:hover{
	color:#EE3224;
}
body#about_us_section div.top_main_menu li a.menu1, body#news_section div.top_main_menu li a.menu2, body#solution_section div.top_main_menu li a.menu3, body#services_section div.top_main_menu li a.menu4, body#customers_section div.top_main_menu li a.menu5, body#partners_section div.top_main_menu li a.menu6, body#contact_us_section div.top_main_menu li a.last{
	color:#EE3224;
}
div.top_main_menu li.last a{
	padding:0 0 0 10px!important;
}
div.top_main_menu li.current a{
	color:#EE3224;
}
div.prevSlide, div.nextSlide{
	position:absolute;
	top: 1px;
	z-index:2;
	display:block;
	width:25px;
	height:25px;
	overflow:hidden;
	vertical-align:middle;
	text-align:center;
	display:none;
}
div.nextSlide{
	right:21px;
	border-right:none;
}
div.prevSlide{
	border-left:none;
	left:1px;
}
div.prevSlide a, div.nextSlide a{
	display:block;
	width:25px;
	height:25px;
	overflow:hidden;
	padding:0;
	vertical-align:middle;
	text-align:center;
	background-color:#FFF;
	color:#000000;
	font-weight:bold;
	font-size:1.2em;
	opacity:0.6;
	filter:alpha(opacity=60);
}
div.prevSlide a:hover, div.nextSlide a:hover{
	background-color:#f6f6f6;
	color:#ee2d24;
	opacity:1;
	filter:alpha(opacity=100);
}
div.primo_piano ul{
	z-index:0;
}
div.primo_piano div.image a:hover img{
  	opacity:1!important; 
	filter:alpha(opacity=100)!important;
}
div.primo_piano div.abstract p{
  	margin:0;
}
div.primo_piano div.link a{
  display:block; 
	width:565px; 
	overflow:hidden;
	opacity:0;
	filter:alpha(opacity=0); 
}
div.box_title2{ 
	font-family:'UniversLT47CondensedLtRegular';
	background-color:transparent!important;
	color:#333333;
	font-size:2em;
	font-weight:normal;
	height:40px;
	overflow:hidden;
	padding:0;
	text-transform:uppercase;
	width:955px;
	margin:0 auto;
	padding:15px 0 0 0;
}
div.box_partnerH_label div.box_title2{
	font-family:'UniversLT47CondensedLtRegular';
	font-size:2em;
  	background-image:url(/application/xmanager/projects/interact2012english/img/layout/bg_titPartnersH.jpg);
	background-repeat:no-repeat;
	background-position:left 0;
}
body.Hclienti div.box_title2{ width:970px;}
div.box_titlePlatformH, div.clienti div.intestazione { 
	font-family:'UniversLT47CondensedLtRegular';
	background-color:transparent!important;
	color:#333333;
	font-size:2em;
	font-weight:normal;
	/*overflow:hidden;*/
	padding:15px 0 ;
	text-transform:uppercase;
}
div.box{ 
  	position:relative;
  	clear:both;
}
body#home #liquid_footer div.cnt_buttonShwc{
	display:block;
	width:970px;
	height:1px;
	margin:0 auto;
	position:relative;
}
body#home #liquid_footer div.button_boxtitle{
  background-image: url("/application/xmanager/projects/interact2012english/img/layout/bg_cerca.jpg");
  position: absolute;
  right: 7px;
  top: -265px;
}
body#home div.button_boxtitle{
	border:none;
	border-radius:3px;
	-moz-box-shadow:2px 2px 2px #999;
	-webkit-box-shadow:2px 2px 2px #999;
	box-shadow:2px 2px 2px #666;
    background-color:#787878;
    background-image:url("/application/xmanager/projects/interact2012english/img/layout/bg_button.jpg");
    background-repeat:repeat-x;
    font-size:0.7em;
    padding:5px 10px;
    position:relative;
    right:15px;
    top:-35px;
}
div.cnt_link_button{
	margin:0 23px 30px 0;
	position:relative;
	z-index:1;
}
div.button_boxtitle{
	background-image:url(/application/xmanager/projects/interact2012english/img/layout/bg_button.jpg);
	background-color:#787878;
	background-repeat:repeat-x;
	font-size:0.7em;
	padding:5px 10px;
	border:none;
	float:right;
	border-radius:3px;
	-moz-box-shadow:2px 2px 2px #999;
	-webkit-box-shadow:2px 2px 2px #999;
	box-shadow:2px 2px 2px #666;
}
body#news_section div.button_boxtitle{
	margin-top:25px;
}
body#home div.platform_listH div#claim{
	font-family:'UniversLT57CondensedRegular';
	color:#737373;
	font-size:1.1em;
	line-height:1.1em;
	height:100px;
	margin-bottom:12px;
	width:565px;
}
body#home div.platform_listH div#claim a{
	color:#4E4E4E;
}
body#home.promo div.claim_promo, body#web_agency_roma.promo div.claim_promo{
	font-family:'UniversLT57CondensedRegular';
	color:#737373;
	font-size:1.1em;
	line-height:1.1em;
	margin:20px 0;
}
body#home.promo div.claim_promo div.title, body#web_agency_roma.promo div.claim_promo div.title {
	text-transform:uppercase;
	color:#333333;
	font-size:1.2em;
	line-height:1.2em;
	margin-bottom:12px;
}
body#web_agency.promo_second h2.style_title{
	margin-top:0;
}
div.button_boxPlatformH{
	border-radius:3px;
	-moz-box-shadow:2px 2px 2px #999;
	-webkit-box-shadow:2px 2px 2px #999;
	box-shadow:2px 2px 2px #666;
    background-color:#787878;
    background-image:url("/application/xmanager/projects/interact2012english/img/layout/bg_button.jpg");
    background-repeat:repeat-x;
    border:medium none;
    font-size:0.7em;
    padding:5px 10px;
    position:absolute;
    right:25px;
    top:406px;
}
div.button_boxPlatformH_label a, div.button_boxtitle a{
	font-family:Verdana, Geneva, sans-serif;
	text-shadow:1px 1px 1px #4d4d4d;
}
div.button_boxtitle div.button_boxtitle, div.button_boxPlatformH div.button_boxPlatformH{ 
	display:none;
}
div.button_boxtitle a, div.button_boxPlatformH a, div.button_boxtitle a:visited, div.button_boxPlatformH a:visited{
	color:#FFFFFF!important;
	text-decoration:none;
}
div.news_listH{
	height:230px;
	border-top:1px solid #ffffff;
	position:relative;
	background-color:#FFFFFF;
	margin-bottom:6px;
}
div.news_listH div.carousel_container{
	height:230px;
	overflow:hidden;
	position:relative;
}
div.news_listH div.carousel_container ul{
	position:absolute;
}
div.news_listH div.carousel_container li{
	padding:14px 27px 15px 7px;
	width:340px;
	padding-right:0;
	border-bottom:1px dotted #dfdfdf;
	height:50px; 
}
div.news_listH div.carousel_container li:hover{
	background-color: #f6f6f6;
}
div.style_datetime{
	color:#666;
	font-size:0.7em;
	float:left;
	border-right:1px dotted #dfdfdf;
	padding:0 8px 5px 0;
	margin:0 8px 0 0;
	line-height:15px;
}
div.style_category{
	color:#666;
	font-size:0.8em;
	margin-bottom:7px;
	line-height:15px;
}
body#customers_section div.link_categories{
	width:400px;
}
body#customers_section div.link_categories a{
	color:#EE3224;
}
div.news_listH div.title a, a.style_title_link, div.style_title{
	font-family:'UniversLT57CondensedRegular';
	color: #EE3224;
	font-size:1.3em;
	text-transform:uppercase;
}
h4.style_subtitle, div.style_subtitle{
	color:#7b7b7b;
	font-weight:normal;
	font-size:1.1em;
	padding:10px 0 0 0;
	margin:0;
}
div.carousel_container ul li a.style_title_link{
	display:block;
	float:none;
	clear:both;
}
div.news_listH div.title a:hover, a.style_title_link:hover{
	color:#666;
}
div.news_listH div.buttons{
	position:absolute;
	top:0;
	right:0;
	width:20px;
	height:212px;
	height:230px;
	background-color:#dfdfdf;
}
div.news_listH div.buttons div.previous_button{
	position:absolute;
	top:0;
	right:0;
	width:20px;
	height:21px;
	background-image:url(/application/xmanager/projects/interact2012english/img/layout/scroll_top.gif);
	cursor:pointer;
}
div.news_listH div.buttons div.previous_button_disabled{
	background-image:url(/application/xmanager/projects/interact2012english/img/layout/scroll_top_off.gif)!important;
	cursor: inherit!important;
}
div.news_listH div.buttons div.next_button{
	position:absolute;
	bottom:0;
	right:0;
	width:20px;
	height:21px;
	background-image:url(/application/xmanager/projects/interact2012english/img/layout/scroll_down.gif);
	cursor:pointer;
}
div.news_listH div.buttons div.next_button_disabled{
	background-image:url(/application/xmanager/projects/interact2012english/img/layout/scroll_down_off.gif)!important;
	cursor:inherit!important;
}
body#home div.banner_box, body#contact_us_section div.banner_box, body#google_search_section div.banner_box {
	margin:0 0 5px 0;
}
body#google_search_section div.banner_box, body#policy_della_privacy div.banner_box{
    margin-top: 118px !important;
}
body#newsletter div.banner_box{
    margin-top: 18px !important;
}
body#google_search_section  div#cse{
    margin-top: 36px !important;
}
body.professionalita div.banner_box {
    float: left;
    margin-bottom: 20px !important;
    margin-top: 18px !important;
}
body#contact_us_section div.banner_box ul{
	margin-bottom:10px;
}
body#home div.banner_box span.clear{
	clear:both;
	display:block;
	height:1px;
	line-height:1px;
}
body#home div.banner_box li{
	margin-bottom:20px;
	display:block;
	width:180px;
	float:left;
}
body#home div.banner_box li.list_li_2{
	margin-left:10px;
}
body#contact_us_section div.right_menu{
	display:none;
}
div.banner_box{
	margin:0 0 25px 0;
}
div.banner_box li{
	margin-bottom:20px;
	display:block;
	width:180px;
	float:left;
}
div.banner_box span.clear{
	clear:both;
	display:block;
	height:1px;
	line-height:1px;
}
div.banner_box li.list_li_2{
	margin-left:10px;
}
div.banner_box a img{
	border:none!important;
}
body#home div.platform_listH{
	width:600px;
}
body#home div.platform_listH li{
	display:block;
	width:265px;
	height:90px;
	overflow:hidden;
	float:left;
	padding:5px 5px 5px 0;
	margin-bottom:11px;
	margin-right:20px;
	border-bottom:1px dotted #cfcfcf;
}
div.platform_listH div.logo{
	height:50px;
	width:60px;
	float:left;
}
body#home div.platform_listH div.title{
	padding:12px 0 0 0;
	font-family:'UniversLT57CondensedRegular';
}
div.service_listH div.title{
	font-family:'UniversLT57CondensedRegular';
	font-size:0.9em;
	line-height:1.3em;
/*	width: 350px;*/
}
div.platform_listH div.title a{
	color:#000000;
	font-weight:normal;
	font-size:1.2em;
	padding:12px 0 0 0;
	text-transform:uppercase;
}
div.platform_listH div.title a:hover{
	color:#EE3224;
}
body#home div.platform_listH div.sub_title{
	color: #666;
	font-size:0.85em;
	margin-left:60px;
}
div.service_listH ul{
	margin: 10px 0 70px 0;
}
div.service_listH li{
	display: block;
	width:355px;
	position:relative;
	margin-bottom:38px;
}
body.Hservizi div.service_listH li{ width:540px;}
div.service_listH div.title a{
	color: #000000;
	font-size:1.3em;
}
div.service_listH div.title a:hover{
	color:#EE3224;
}
div.service_listH div.sub_title{
	color:#666;
	font-size:0.85em;
	padding:4px 10px 0 0;
}
div.service_listH div.abstract_home{
	font-size:0.7em;
	padding:5px 10px 0 0;
}
div.service_listH div.abstract_home p{
	margin:0;
}
body#home div.service_listH div.icona{
	width:48px;
	float:left;
	padding:0 15px 0 18px;
	height:65px;
}
body.Hservizi div.service_listH div.icona{
	width:48px;
	float:left;
	padding:0 15px 0 0;
	height:65px;
}
span.close_wrapper, span.clear_cols{
	display:block;
	height:1px;
	line-height:1px;
	padding:0;
	margin:0;
}
div.box_showcaseH{
	margin:0;
	background-image:url(/application/xmanager/projects/interact2012english/img/layout/bg_showcaseH.jpg);
	position:relative;
	width:100%;
	padding:0;
}
body#home div.box_showcaseH{
	padding-bottom: 25px;
}
div.box_showcaseH div.button_boxtitle{
	top:15px;
}
div.box_showcaseH ul{
	display:block;
	width:955px;
	margin:0 auto;
}
div.box_showcaseH li{
	list-style:none;
	display:block;
	width:175px;
	float:left;
	padding-top:10px;
	/*margin:0 20px 50px 0;*/
	margin:0 20px 20px 0;
	height:200px;
}
div.box_showcaseH li.showcase_listH_li_5, div.box_showcaseH li.showcase_listH_li_10, div.box_showcaseH li.showcase_listH_li_15, div.box_showcaseH li.showcase_listH_li_20, div.box_showcaseH li.showcase_listH_li_25, div.box_showcaseH li.showcase_listH_li_30, div.box_showcaseH li.showcase_listH_li_35, div.box_showcaseH li.showcase_listH_li_40, div.box_showcaseH li.showcase_listH_li_45, div.box_showcaseH li.showcase_listH_li_50{
	margin:0;
}
div.showcase_listH span.clear{
	clear:both;
	display:block;
	height:1px;
	line-height:1px;
}
div.showcase_listH div.title a{
	color: #000000;
    font-family: 'UniversLT57CondensedRegular';
    font-size: 1.2em;
    line-height: 1em;
    text-decoration: none;
}
div.showcase_listH div.title a:hover{
	color:#EE3224;
}
div.showcase_listH div.sub_title{
	color:#7b7b7b;
	font-size:0.8em;
}
div.showcase_listH div.image{
	height:108px;
	width:173px;
	background-color:#FFF;
	margin-bottom:15px;
}
body#home div.showcase_listH div.image{
	-moz-box-shadow:0 0 2px 2px #CCCCCC;
	-webkit-box-shadow:0 0 2px 2px #CCCCCC;
	box-shadow:0 0 2px 2px #CCCCCC;
	border:2px solid #FFFFFF;
	border-radius:3px;
	-moz-border-radius:3px;
}
div.box_partnerH{
	margin:0 auto;
	position:relative;
	width:100%;
	background-image:url(/application/xmanager/projects/interact2012english/img/layout/bg_divPartenrsH.jpg);
	background-repeat:repeat-x;
	background-position:top;	
	clear:both;
}
div.box_partnerH span.clear{
	display:block;
	clear:both;
}
div.box_partnerH li span.clear{
	clear:none;
}
div.box_partnerH ul {
	display:block;
	width:955px;
	margin:0 auto;
}
body#partners_section div.box_partnerH ul{
	padding-top:50px;
}
div.box_partnerH li{
	list-style:none;
	float:left;
}
div.box_partnerH a img{
	border:none!important;
}
div.box_partnerH a:hover img{
	opacity:0.4!important;
	filter:alpha(opacity=40)!important;
}
div.bg_footer div.bg_footer{
	height:45px;
	background-image:url(/application/xmanager/projects/interact2012english/img/layout/bg_footer_def.jpg);
	background-repeat: no-repeat;
	background-position:top;
	margin:0 0 20px 0;
	padding:20px 0 0 0;
	clear:both;
}
div.bg_footer div.footer_wrap {
	display:block;
	width:978px;
	margin:0 auto;
}
div.style_addthis {
	display:block;
	width:958px;
	margin:0 auto;
	padding:10px 0 25px 0;
	clear:both;
}
div.bg_footer p.interact{
	float:right;
	color:#7b7b7b;
	font-size:0.7em;
	padding:0 0 0 25px;
	margin:0;
}
div.bg_footer p.interact a{
	color: #ee3224;
	text-decoration:none;
}
div.bg_footer p.interact a:hover{
	color: #333333;
}
ul.social_link {
	float:left;
	display:block;
	width:175px;
}
ul.social_link li{
	float:right;
	display:block;
	width:26px;
	height:26px;
	overflow:hidden;
	margin-left:2px;
}
ul.social_link a{
	display:block;
	width:26px;
	height:0!important;
	padding-top:26px;
	overflow:hidden;
	background-repeat:no-repeat;
}
ul.social_link a:hover{
	opacity:0.6; 
	filter:alpha(opacity=60);
}
ul.social_link a.linkedin{
	background-image:url(/application/xmanager/projects/interact2012english/img/layout/ico_linkedin.gif);
}
ul.social_link a.flickr{
	background-image:url(/application/xmanager/projects/interact2012english/img/layout/ico_flickr.gif);
}
ul.social_link a.twitter{
	background-image:url(/application/xmanager/projects/interact2012english/img/layout/ico_twitter.gif);
}
ul.social_link a.slideshare{
	background-image:url(/application/xmanager/projects/interact2012english/img/layout/ico_slideshare.gif);
}
ul.social_link a.youtube{
	background-image:url(/application/xmanager/projects/interact2012english/img/layout/ico_youtube.gif);
}
ul.social_link a.googleplus{
	background-image:url(/application/xmanager/projects/interact2012english/img/layout/gplus-icon.png);
}

div.icon_menu li a{
	color:#000;
	padding:0 0 5px 0;
	font-size:0.9em;
	font-weight:bold;
	text-transform:capitalize;
}
div.icon_menu div.logo, div.icon_menu div.image{
	display:block;
	width:68px;
	float:left;
}
div.icon_menu div.logo img, div.icon_menu div.image img{
	float:left;
}
div.icon_menu li a:hover{
	color:#999999;
}
div.icon_menu li a img{
	border:none!important;
}
div.icon_menu div.title{
	font-family:'UniversLT57CondensedRegular';
    font-size:0.9em;
    line-height:1.3em;
    width:350px;
}
div.icon_menu div.file{
	font-family:'UniversLT57CondensedRegular';
    font-size:0.9em;
    line-height:1.3em;
    width:350px;
}
div.icon_menu div.partner{
	width:200px;
	display:inline;
}
div.icon_menu div.partner a{
	padding:4px 0 0 0;
	padding-bottom: 5px;
}
div.icon_menu div.title a{
	color:#000000;
    font-size:1.3em;
	font-weight:normal;
}
div.icon_menu div.title a:hover{
	color:#EE3224;
}
div.icon_menu ul{
	padding: 10px 0 0 20px;
	/*padding: 10px 0 0 0;*/
	width:370px;
}
div.icon_menu li{
	/*display:block;
	width:370px;
	height:43px;
	padding-bottom: 5px;*/
	display:block;
    height:43px;
    padding-bottom:38px;
    width:355px;
}
div.icon_menu{
	width:370px;
	clear:both;
}
div.right_menu{
	margin-top:50px;
	margin-bottom:15px;
	padding:0 0 25px 0;
	width:370px;
	background-color:#F0F0F0;
	border:1px solid #E6E6E6;
	-moz-border-radius:8px;
	border-radius:8px;
}
div.menu2 div.right_menu{
	margin-top:10px;
}
div.right_menu_label{
    background-color:transparent!important;
    color:#333333;
    font-family:'UniversCondensedMedium';
    font-size:1.7em;
    font-weight:normal;
    height:30px;
    padding:20px 0 0 20px;
    text-transform:uppercase;
	text-shadow:2px 2px 2px #FFFFFF;
}
div.right_menu ul{ 
	margin:0; 
	padding:0; 
	width:370px;
}
div.right_menu li li{
	padding:0; 
	margin:0; 
	width:370px;
}
div.right_menu li ul li.current a,
div.right_menu li.current a {
	color:#EE3224;
	/*font-weight:bold;*/
	display:block;
	padding:0 0 0 15px;
	margin:20px 0 0 23px;
	font-size:0.9em;
	background-image:url(/application/xmanager/projects/interact2012english/img/layout/bullet_menu_dx_current.gif);
	background-repeat:no-repeat;
	background-position: left 2px;}

div.right_menu li a {
	color:#333333;
	display:block;
	padding:0 0 0 15px;
	margin:20px 0 0 23px;
	font-size:0.9em;
	background-image:url(/application/xmanager/projects/interact2012english/img/layout/bullet_menu_dx.gif);
	background-repeat:no-repeat;
	background-position: left 2px;

}
div.right_menu li ul li a {
	color:#333333;
	display:block;
	padding:0 0 0 15px;
	margin:20px 0 0 23px;
	font-size:0.9em;
	background-image:url(/application/xmanager/projects/interact2012english/img/layout/bullet_menu_dx.gif);
	background-repeat:no-repeat;
	background-position:left 3px;
	border:0;
	background-color:#F0F0F0;
}
div.right_menu li a:hover{
	color:#EE3224;
	display:block;
	padding:0 0 0 15px;
	margin:20px 0 0 23px;
	font-size:0.9em;
	background-image:url(/application/xmanager/projects/interact2012english/img/layout/bullet_menu_dx_current.gif);
	background-repeat:no-repeat;
	background-position:left 2px;
}
div.right_menu li ul li a:hover{
	color:#EE3224;
	display:block;
	padding:0 0 0 15px;
	margin:20px 0 0 23px;
	font-size:0.9em;
	background-image:url(/application/xmanager/projects/interact2012english/img/layout/bullet_menu_dx_current.gif);
	background-repeat:no-repeat;
	background-position:left 3px;
	background-color:#F0F0F0;
}
div.right_menu li li a{
	color:#000;
	background-color:#fff;
	padding:5px 0 5px 7px;
	font-size:0.9em;
	border-bottom:1px dotted #dfdfdf;
}
div.right_menu li li a.current, div.right_menu li li a.current:hover{
  	/*color:#C4C4C4;
	text-decoration:none!important;
	background-color:#FFFFFF;*/
}
div.right_menu li li a:hover{
	background-color:#f6f6f6;
	text-decoration:none!important;
	color:#999999;
}
div.right_menu ul ul{
	margin:5px 0;
	padding:0;
	width:370px;
}
h3.title_news {
	font-size:1.8em;
	font-family:'UniversLT47CondensedLtRegular';
	text-transform:uppercase;
	color:#333;
	font-weight:normal;
	margin:0;
	padding-top:35px;
}
h2.style_title{
  	margin:40px 0 0 0;
	padding:0;
   	color: #FFF;
	font-size:2.3em;
	font-family:'UniversLT47CondensedLtRegular';
    font-weight:normal;
	text-transform:uppercase;
	text-shadow:1px 1px 1px #000;
}
div#liquid_content div.style_landing{
	position:relative;
	width:565px;
}
div#liquid_content div.style_landing_partner div.style_landing{
  	margin:0;
}
div#liquid_content div.style_text{
	padding-top:35px;
	width:550px;
	color:#575757;
	font-size:0.9em;
	line-height:1.5em;
}
body#partners_section div#liquid_content div.style_text{
	padding-top:65px;
}
div#liquid_content div.style_text_customers{
	margin:0;
	padding:0 5px 0 0;
	color:#000000;
	font-size:0.8em;
}
div#liquid_content div.style_text_customers p{
	margin:10px 0 5px 0;
}
a.style_custextlink{
	text-align:right;
	font-size:0.7em;
	color:#999999
}
div.rel_showc_list div.rel_showc_list_label{
	margin:0;
	padding:10px 5px 0 2px;
	color:#000000;
	font-size:0.8em;
	display:none;
}
div.rel_showc_list ul.rel_showc_list_ul {
	padding:5px 0 0 0 !important;
}
div.rel_showc_list ul.rel_showc_list_ul li{
	height:auto!important;
	border:none !important;
	padding-left:12px!important;;
	background-image:url(/application/xmanager/projects/interact2012english/img/layout/bull_list.gif);
	background-repeat:no-repeat;
	background-position:0 6px;
	width: 140px;
	margin-top:5px;
	
	
	display:none;
}
div.rel_showc_list ul.rel_showc_list_ul li a{
	font-size:0.7em;
}
div#liquid_content div.style_text h4{
	margin-bottom:0;
}
div#liquid_content div.image_list img{
	float:left;
	margin:10px 15px 10px 0;
	border:1px solid #DFDFDF;
}
div#liquid_content div.image_list div.style_text{
	padding-top:10px!important;
}
div#liquid_content div.image_list li{
	display:block;
	overflow:hidden;
	margin:0 20px 0 0;
	border-top:1px solid #dfdfdf;
	padding-top:15px;
}
div#liquid_content div.image_list li.image_list_li_1{
	border-top:none;
	padding-top:0!important;
} 
*html div#liquid_content div.image_list li{
	height:180px;
}
div.style_text_customers/*, div.rel_showc_list*/{
	margin-left:193px;
}
div#liquid_content div.style_list div.style_text {
	padding:5px 0 30px 0;
}
div#liquid_content div.style_list div.style_text p{
	margin:0;
}
div#liquid_content div.style_list ul{
	padding:50px 0 0 0;
}
div#liquid_content div.style_text p{
	margin:0 0 20px 0;
}
div#liquid_content div.style_text a{
	color:#EE3224;
}
div#liquid_content div.style_text a:visited{
	color:#EE3224;
}
div#liquid_content div.style_text a:hover{
	text-decoration:underline;
}
div#liquid_content div.style_text ul{
	padding:7px 0 10px 0;
}
div#liquid_content div.style_text li{
	padding:0 0 10px 12px;
	background-image:url(/application/xmanager/projects/interact2012english/img/layout/bull_list.gif);
	background-repeat:no-repeat;
	background-position:0 6px;
}
div#liquid_content ol li{
	background-image:none !important;
}
div#liquid_content div.paginator, div.style_google div.gsc-cursor-box {
	text-align:center;
	font-size:0.8em;
}
div#liquid_content div.paginator ul{
	padding:0 0 10px 0;
	line-height:15px;
	vertical-align:middle;
}
div#liquid_content div.paginator li{
	display:inline;
	padding:0 3px;
	color:#7b7b7b;
}
div#liquid_content div.paginator li span.current{
	color:#ef2f24;
}
div#liquid_content div.paginator li a{
	color:#000000;
}
div#liquid_content div.paginator li a:hover{
	color:#ef2f24;
}
body#partners_section div.album_second{
	float:left;
	margin-top:55px;
	padding-right:25px;
}
div.album_second{
	position:relative;
	margin-top:25px;
}
div.album_second img{
	/*margin-bottom:15px;*/
}
body#customers_section div.album_second img{
	margin-bottom:0;
	margin-top:15px;
}
div.list_staff{
	padding:20px 0 0 0;
}
div.list_staff div.image img{
	border:1px solid #dfdfdf;
}
div.list_staff li{
	clear:both;
}
div.list_staff div.image{
	float:left;
	width:193px;
	height:150px;
	border:none;
}
div.list_staff div.image img{
	border:1px solid #dfdfdf;
}
div.list_staff li{
	clear:both;
}
div.list_staff div.name_surname{
	font-family:'UniversLT57CondensedRegular';
	font-size:1.3em;
	color:#4d4d4d;
}
div.list_staff div.job_title{
	font-weight:bold;
	font-size:0.75em;
	color:#7b7b7b;
	padding:5px 0 10px 0;
	text-transform:uppercase;
}
div.list_staff div.curriculum a{
	font-size:0.7em;
	color:#000000;
	padding:0 15px 0 22px;
	float:left;
	line-height:16px;
	background-repeat:no-repeat;
}
div.style_landing_maps div.email_address a{
	font-size:0.7em;
	color:#000000;
	padding:0 15px 15px 22px;
	float:left;
	line-height:16px;
	background-repeat:no-repeat;
}
div.list_staff div.link_profile a, div.list_staff div.email_address a{
	font-size:0.7em;
	color: #ee3224;
	padding:0 15px 20px 22px;
	line-height:22px;
	background-repeat:no-repeat;
}
div.list_staff div.link_profile a:hover, div.list_staff div.curriculum a:hover, div.list_staff div.email_address a:hover{
	text-decoration:underline!important;
}
div.list_staff div.link_profile a{
	background-image:url(/application/xmanager/projects/interact2012english/img/layout/ico_linkedin_scheda.gif);
}
div.list_staff div.curriculum{
	display:none;
}
div.list_staff div.email_address a, div.style_landing_maps div.email_address a{
	background-image:url(/application/xmanager/projects/interact2012english/img/layout/ico_mail_scheda.gif);
} 
body#partners_section a.style_external_link{
	position:absolute; 
	top:80px; 
	left:0px; 
	font-size:90%;
	color:#EE3224;
}
body#customers_section a.style_external_link{
	position:absolute; 
	top:-2px; 
	right:5px; 
	font-size:1.2em;
	color:#EE3224;
}
div.style_form{
	background-color:#F0F0F0;
	padding:20px;
	margin:50px 0 15px;
	border:1px solid #E6E6E6;
    -moz-border-radius:8px;
	border-radius:8px;
    width:330px;
}
div.style_form_label{
    background-color:transparent !important;
    color:#333333;
    font-family:'UniversCondensedMedium';
    font-size:1.7em;
    font-weight:normal;
    height:50px;
    text-shadow:2px 2px 2px #FFFFFF;
    text-transform:uppercase;
}
div.style_form label, div.style_form h6{
	font-size: 0.8em;
	color:#333333;
	margin: 0;
	padding:5px 26px 5px 0;
	font-weight:bold;
}
div.style_form{
	float:left;
}
div.style_form label{
	float:left;
}
div.cnt_multiceck div{
	float:none;
	font-size:1em;
	height:25px;
}
div.style_form div.cnt_multiceck div label{
	float:none;
	margin-left:5px;
	color:#333;
}
div.cnt_multiceck div input{
	margin-left:0;
}
div.style_form div.cnt_textfield, div.style_form div.cnt_multiceck, div.style_form div.calendario{
	margin-bottom:10px;
}
div.style_form div.cnt_textfield{
}
div.style_form div.cnt_multiceck{
}
div.style_form div.calendario{
}
div.style_form div.calendario a{
	background-image:url(/application/xmanager/projects/interact2012english/img/layout/ico_calendar.gif);
	background-repeat:no-repeat;
	padding:5px 0 8px 32px;
	font-size:0.8em;
	line-height:21px;
	color:#EE3224;
	margin-left:5px;
}
div.style_form div.calendario a:hover{
	opacity:0.6; 
	filter:alpha(opacity=60);
}
div.style_form div.cnt_button{
	/*clear: both;*/
	left:70px;
    position:relative;
    top:50px;
}
div.style_form div.cnt_multiceck{
	margin-top:5px;
	float:left;
}
div.style_form div.cnt_multiceck label{
	font-weight:normal;
	color:#000000;
}
div.style_form div.cnt_textfield input{
	border:1px solid #C4C4C4;
	color:#666;
	font-size:0.7em;
	padding:5px;
	width:230px;
	border-radius:4px 4px 4px 4px;
}
div.style_form div.cnt_button button{
    background-color:transparent;
    background-image:url("/application/xmanager/projects/interact2012english/img/layout/bg_cerca.jpg") !important;
    background-repeat:repeat-x;
    border:1px solid #CC0000;
    border-radius:4px 4px 4px 4px;
    box-shadow:2px 2px 2px #BBBBBB;
    color:#FFFFFF;
    cursor:pointer;
    font-size:0.7em;
    height:24px;
    padding:2px 5px;
    text-transform:uppercase;
    width:75px;
}
#liquid_content div.style_landing_maps li{
	padding:20px 0;
}
#liquid_content div.style_landing_maps div.style_text{
	padding-top:5px;
	font-size:0.8em;
}
#liquid_content div.style_landing_maps div.style_text p{
	margin-bottom:0; 
}
#liquid_content div.style_landing_maps div.email_address{
	margin-bottom:20px; 
}
#liquid_content div.style_landing_maps div.email_address a{
	float:none; 
	height:18px;
	margin-top:4px;
	display:block;
}
#liquid_content div.style_landing_maps a.c1{
	padding-top:4px;
	font-size:0.9em;
}
#liquid_content div.style_landing_maps div.email_address a:hover{
	color:#EF2F24;
}
/*div.style_mailer{
	padding:10px 0;
	margin-bottom:20px;
}
div.style_mailer label{
	font-size: 0.7em;
	color:#333333;
	margin:0 8px 4px 0;
	padding:3px 0 0 0;
	font-weight:bold;
	display:block;
	width:200px;
}
div.style_mailer input{
	border:1px solid #C4C4C4;
	color:#000000;
	font-size:0.7em;
	padding:3px 2px;
	width:275px;
	margin-bottom:10px;
}
div.style_mailer textarea{
	border:1px solid #C4C4C4;
	color:#000000;
	font-size:0.7em;
	padding:3px 2px;
	width:550px;
}
div.style_mailer div.mailer_send_button_wrapper{
	text-align:right;
	margin:5px 29px 0 0;
}
div.style_mailer div.mailer_send_button_wrapper input, div.style_google input.gsc-search-button{
	background-image:url("/application/xmanager/projects/interact2012english/img/layout/bg_cerca.jpg");
	background-repeat:repeat-x;
	border:medium none;
	color:#FFFFFF;
	font-size:0.7em;
	height:24px;
	padding:2px 5px;
	width:75px;
	margin:0;
	text-transform:uppercase;
	border-radius: 4px 4px 4px 4px;
    box-shadow: 2px 2px 2px #BBBBBB;
	cursor:pointer;
}
*/
div#job_mailer.style_mailer{
	padding:10px;
	margin:30px 0;
	background-color: #F0F0F0;
    border: 1px solid #E6E6E6;
	border-radius:5px;
	-moz-border-radius:5px;
	width:535px;
}
div#job_mailer.style_mailer h4{
	margin:0;
	font-family: 'UniversCondensedMedium';
	color:#EE3224;
	font-size:1.3em;
}
div#job_mailer.style_mailer br{
	display:none;
}
div#job_mailer.style_mailer label{
	font-size: 1em;
	font-family: 'UniversCondensedMedium';
}
div#job_mailer.style_mailer div.error{
	padding:10px;
	border:1px solid #EE3224;
	font-size:0.8em;
	color:#EE3224;
	background:#fff;
	margin:15px 0;
}
div.style_mailer{
	padding:10px 0;
	margin-bottom:20px;
}
div.style_mailer label{
	font-size: 0.7em;
	color:#333333;
	margin:0 8px 4px 0;
	padding:3px 0 0 0;
	font-weight:bold;
	display:block;
	width:200px;
}
div.style_mailer input{
	border:1px solid #C4C4C4;
	color:#000000;
	font-size:0.7em;
	padding:3px 2px;
	width:275px;
	margin-bottom:10px;
}
div.style_mailer textarea{
	border:1px solid #C4C4C4;
	color:#000000;
	font-size:0.9em;
	padding:10px;
	width:500px;
	height:170px;
	font-family:Arial, Helvetica, sans-serif;
}
div.style_mailer div.mailer_send_button_wrapper{
	text-align:right;
	margin:5px 29px 0 0;
}
div.style_mailer div.mailer_send_button_wrapper input, div.style_google input.gsc-search-button{
	background-image:url("/application/xmanager/projects/interactspa/img/layout/bg_cerca.jpg");
	background-repeat:repeat-x;
	border:medium none;
	color:#FFFFFF;
	font-size:0.7em;
	height:24px;
	padding:2px 5px;
	width:75px;
	margin:0;
	text-transform:uppercase;
	border-radius: 4px 4px 4px 4px;
    box-shadow: 2px 2px 2px #BBBBBB;
	cursor:pointer;
}
div.mailer_messages {
	margin:50px 0;
	font-weight:bold;
	
}

div.style_google .gsc-control{
	width:550px!important;
	margin:20px 0;
}
div.style_google div.gsc-clear-button, div.style_google div.gsc-tabsArea, div.style_google div.gsc-branding-text, div.style_google img.gsc-branding-img{
	display:none;
}
div.style_google table.gsc-resultsHeader{
	border:none;
}
div.style_google input.gsc-input{
	border: 1px solid #C4C4C4;
    border-radius: 4px 4px 4px 4px;
    color: #999999;
    display: block;
    float: left;
    height: 18px;
    padding: 3px 3px 2px;
    width: 440px;
}
div.style_google  table.gsc-branding{
	padding:3px 0;
	width:560px;
}
div.style_google td.gsc-branding-img{
	text-align:right;
}
div.style_google div.gs-title a{
	color:#575757;
	font-size:1em;
	text-decoration:none;
	text-transform:uppercase;
}
div.style_google div.gs-title a:hover, div.style_google div.gs-title a:hover b{
	color:#EF2F24;
}
div.style_google div.gs-title a b{
	color:#000000;
	font-weight:bold;
	text-decoration:none;
}
div.style_google div.gs-title{
	text-decoration:none;
}
div.style_google div.gs-snippet{
	margin:0;
	padding:0;
	color:#575757;
	font-size:0.9em;
}
div.style_google div.gs-visibleUrl{
	margin:10px 0;
	padding:0;
	color:#EE3224;
	font-size:0.7em;
}
div.style_google .gsc-result {
	margin-bottom:20px;
}
div.icon_menu div.box_title1{
    background-color:transparent !important;
    color:#333333;
    font-family:'UniversCondensedMedium';
    font-size:1.7em;
    font-weight:normal;
    height:30px;
    padding:20px 0 0 20px;
    text-shadow:2px 2px 2px #FFFFFF;
    text-transform:uppercase;
}
div.icon_menu div.box_title1 a{
    color:#333333;
}
div.icon_menu div.box_title1 a:hover{
    color:#ee3224;
}
div.style_box_attach, div.icon_menu{
	-moz-border-radius:8px;
	border-radius:8px;
	background-color:#F0F0F0;
    border:1px solid #E6E6E6;
    margin:0 0 15px;
    padding:0 0 15px;
    width:370px;
}
div.icon_menu div.box_title2, div.style_box_attach div.box_title2 {
	background-color:transparent !important;
    color:#333333;
    font-family:'UniversCondensedMedium';
    font-size:1.7em;
    font-weight:normal;
    height:30px;
    padding:15px 0 15px 20px;
    text-transform:uppercase;
	text-shadow:2px 2px 2px #FFFFFF;
	width:auto;
}
div.style_box_attach a{
	font-size:0.9em;
	color:#333333;
	padding:4px 15px 0 33px;
	display:block;
	height:34px;
	margin:5px 5px 5px 18px;
	background-repeat:no-repeat;
	background-image:url(/application/xmanager/projects/interact2012english/img/layout/ico_pdf.jpg);
}
div.style_box_attach a:hover{
	color:#EE3224;
}
div.style_news_results p.message{
	font-size:0.9em;
	color:#7b7b7b;
}
div.showcase_info_list{
	font-size:0.7em;
	margin-bottom:20px;
}
div.showcase_info_list div.label{
	float:left;
	padding:0 7px 0 0;
	color:#999999;
}
div.showcase_info_list div.link_categories div.label{
	padding:0 9px 0 0;
}

/* newsletter */
div.liquid_content div.newsletter_container div.newsletter_form label {
	color:#666;
	font-size:0.8em;
/*	font-weight:bold;*/
	margin:0 8px 4px 0;
	padding:10px 0 0 0;
	width:200px;
}
div.liquid_content div.newsletter_container div#form_top label{
	display:block;
}
div.liquid_content div.newsletter_container div.newsletter_form div#form_top input{
	border:1px solid #C4C4C4;
	color:#000000;
	font-size:0.7em;
	margin-bottom:10px;
	padding:3px 2px;
	width:375px;
	height:20px;
	-moz-border-radius:8px;
	border-radius:8px;
}
div.liquid_content div.newsletter_container span{
	font-size:0.7em;
}
div.liquid_content div.newsletter_container div.style_text{
	padding:3px 0 0 0!important;
}
div.liquid_content div.newsletter_container div.newsletter_form{
	margin-top:10px;
}
div.liquid_content div.newsletter_container div.iscrivimi_button{
    float: right;
    margin: 0 200px 50px 0;
}
div.liquid_content div.newsletter_container div#form_bottom{
    margin: 15px 0 0 0;
}
div.liquid_content div.newsletter_container  div.iscrivimi_button input{
	background-image:url("/application/xmanager/projects/interact2012english/img/layout/bg_cerca.jpg");
	background-repeat:repeat-x;
	border: 1px solid #CC0000;
    border-radius: 4px 4px 4px 4px;
    box-shadow: 2px 2px 2px #BBBBBB;
	color:#FFFFFF;
	cursor:pointer;
	font-size:0.8em;
	height:24px;
	margin:0;
	padding:2px 5px;
	width:130px;
	text-transform:uppercase;
}

/* social */
.style_addthis_sx{
	width:130px;
	float:left;}
	
/* second*/
body#about_us_section #liquid_content, body#news_section #liquid_content, body#solution_section #liquid_content, body#services_section #liquid_content, body#customers_section #liquid_content, body#contact_us_section #liquid_content, body#partners_section #liquid_content, body#web_agency_-_landing_professionalita #liquid_content, body#showcase_list #liquid_content, body#newsletter #liquid_content, body.professionalita #liquid_content, body#google_search_section #liquid_content, body#policy_della_privacy #liquid_content{
	background-image:url(/application/xmanager/projects/interact2012english/img/layout/bg_second_sx.jpg);
	background-repeat:no-repeat;
}
body#about_us_section #liquid_col_dx, body#news_section #liquid_col_dx, body#solution_section #liquid_col_dx, body#services_section #liquid_col_dx, body#customers_section #liquid_col_dx, body#contact_us_section #liquid_col_dx, body#partners_section #liquid_col_dx, body#web_agency_-_landing_professionalita #liquid_col_dx, body#showcase_list #liquid_col_dx, body#newsletter #liquid_col_dx, body.professionalita #liquid_col_dx, body.sedi #liquid_col_dx, body#google_search_section #liquid_col_dx, body#policy_della_privacy #liquid_col_dx {
	background-image:url(/application/xmanager/projects/interact2012english/img/layout/bg_second_dx.jpg);
	background-repeat:no-repeat;
}
body#newsletter div#claim {
	padding-top:50px;
}
body#newsletter div#liquid_col_dx {
	padding-top:100px;
}
.right{
	display:block;
	text-align:right;
}
.style_addthis_sx{
	width:130px;
	float:left;
}
div.platform_listH{
	width:970px;
	clear:both;
	}
div.platform_listH li{
	display:block;
	width:293px;
	height:150px;
	overflow:hidden;
	float:left;
	padding:10px 0 0 0;
	margin-bottom:11px;
	margin-right:30px;
	border-bottom:1px dotted #ccc;
	height:150px;
}
div.platform_listH div.customer div.title{
	font-size:1.2em;
    text-transform:uppercase;
}
div.platform_listH div.title{
    font-family:'UniversLT57CondensedRegular';
    padding:12px 0 20px;
}
div.rel_showc_list ul.rel_showc_list_ul li div.title{
	font-family:Arial, Helvetica, sans-serif;
    padding:0 0 0 5px;
}
div.sub_title{
    color:#666666;
    font-size:0.85em;
	margin-left:0;
}
div.platform_listH div.abstract_home{
	font-size:0.8em;
	padding:4px 0 0 2px;
}
div.platform_listH div.link{
	margin-top:5px;
}
div.platform_listH div.link a{
	font-size:0.8em;
	padding:4px 0 0 1px;
}
div.platform_listH div.abstract_home p{
	margin:0;
}
div.platform_listH div.icona{
	float:left;
    padding:12px 10px 10px 0;
}

/* tooltip */
.tooltip{
	display:none;
	background:transparent url(/application/xmanager/projects/interact2012english/img/red_arrow.png);
	height:70px;
	width:160px;
	padding:25px;
	color:#fff;
	font-size:1em;
	z-index:100;
	top: -100px !important;
	left: -70px !important;
}
.tooltip span.scheda{
	padding-top:5px;
    position:absolute;
    right:20px;
    top:70px;
}
.tooltip span.scheda a{
	color:#fbd915;
	text-transform:lowercase;
	font-size:0.8em;
}
.tooltip span.nome label{
	font-size:1em;
	color:#fff;
	/*font-family:'UniversLT57CondensedRegular';*/
	text-shadow:1px 1px 1px #000;
	text-transform:capitalize;
	position:relative;
	top:-2px;
}
.tooltip span.ruolo label{
	font-size:0.7em;
	color:#fff;
	/*font-family:'UniversLT57CondensedRegular';*/
	text-shadow:1px 1px 1px #000;
	text-transform:uppercase;
	position:relative;
	/*top:-5px;*/
}
div.right_tooltip_label{
    background-color:transparent!important;
    color:#333333;
    font-family:'UniversCondensedMedium';
    font-size:1.7em;
    font-weight:normal;
    height:30px;
    padding:20px 0 0 20px;
    text-shadow:2px 2px 2px #FFFFFF;
    text-transform:uppercase;
}
div.right_tooltip{
    background-color:#F0F0F0;
    border:1px solid #E6E6E6;
    margin-top:35px;
    padding:0 0 15px;
    width:370px;
	-moz-border-radius:8px;
	border-radius:8px;
}
div.right_tooltip .staff_list{
	padding-left:8px;
}
/**/

body#partners_section div.banner_box, body.sedi div.banner_box{
    margin:0 0 100px !important;
}
body#partners_section #liquid_content, body.sedi #liquid_content{
    padding:0 0 15px 23px;
}
div.icon_menu_label div.box_title{
    background-color:transparent!important;
    color:#333333;
    font-family:'UniversCondensedMedium';
    font-size:1.7em;
    font-weight:normal;
    height:30px;
    padding:15px 0 15px 20px;
    text-shadow:2px 2px 2px #FFFFFF;
    text-transform:uppercase;
}
body#customers_section div.box_showcaseH{
	background-image:none;
}
body#customers_section div.showcase_listH{
	margin-top:30px;
}
body#customers_section div.showcase_listH ul.showcase_listH_ul{
	width:585px;
}
body#customers_section div.box_showcaseH li{
	margin:0 20px 0 0;
	overflow:hidden;
}
div#liquid_col_dx div.box{
	background-color:#f0f0f0;
	-moz-border-radius:8px;
	border-radius:8px;
	border:1px solid #e6e6e6;
	margin:50px 0 15px;
	width: 370px;
}
div#liquid_col_dx div.box div.box_title1{
	font-family:'UniversCondensedMedium';
	background-color:transparent!important;
    color:#333333;
	font-size: 1.7em;
    font-weight:normal;
    height:30px;
    overflow:hidden;
    padding:15px 0 15px 20px;
    text-transform:uppercase;
	text-shadow:2px 2px 2px #FFFFFF;
}
div#liquid_col_dx div.box div.icona {
    float:left;
    height:65px;
    padding:0 15px 0 18px;
    width:48px;
		display:inline;
}
div#liquid_col_dx div.box div.title {
    font-family:'UniversLT57CondensedRegular';
    font-size:0.9em;
    line-height:1.3em;
/*    width:350px;*/
}
div#liquid_col_dx div.box div.title a {
    color:#000000;
    font-size:1.3em;
}
div#liquid_col_dx div.box div.sub_title {
    color:#666666;
    font-size:0.9em;
    padding:4px 5px 0 0;
}
div#liquid_col_dx div.box ul.box_ul{
	 margin-bottom:25px;
}
div.staff_img{
	padding-top:35px;
}
div.staff_mobile{
	float:left;
	width:200px;
}
div.staff_mail{
	float:left;
	width:200px;
	padding-bottom:13px;
}
div.staff_text{
	float:left;
}
div.staff_img div.immagine_grande{
	float: left;
    padding: 0 20px 20px 0;
}
div.staff_img div.immagine_grande img{
	background-color:#FFF;
	-moz-box-shadow:0 0 3px 3px #CCCCCC;
	-webkit-box-shadow:0 0 3px 3px #CCCCCC;
	box-shadow:0 0 3px 3px #CCCCCC;
	border:5px solid #FFFFFF;
	border-radius:5px;
	-moz-border-radius:5px;
}
div.staff_img div.qr_code{
	padding-bottom:13px;
}
div.staff_mail div.email{
	font-size:0.85em;
    padding-bottom:5px;
	background:url("/application/xmanager/projects/interact2012english/img/layout/ico_mail_scheda.gif");
	background-repeat:no-repeat;
	background-position:center left;
	padding: 5px 0 5px 25px;
}
div.staff_mail div.twitter{
	font-size:0.85em;
    padding-bottom:5px;
	background:url("/application/xmanager/projects/interact2012english/img/layout/ico_twitter_scheda.gif");
	background-repeat:no-repeat;
	background-position:center left;
	padding: 5px 0 5px 25px;
}
div.staff_mail div.linkedin{
	font-size:0.85em;
    padding-bottom:5px;
	background:url("/application/xmanager/projects/interact2012english/img/layout/ico_linkedin_scheda.gif");
	background-repeat:no-repeat;
	background-position:center left;
	padding: 5px 0 5px 25px;
}
div.staff_mobile div.telefono{
	padding:25px 0 5px 0;
	font-size:0.85em;
	color:#737373;
	background:url("/application/xmanager/projects/interact2012english/img/layout/ico_phone_scheda.gif");
	background-repeat:no-repeat;
	background-position:center left;
	padding: 5px 0 5px 25px;
}
div.staff_mail div.email a, div.staff_mail div.twitter a, div.staff_mail div.linkedin a, div.staff_mobile div.telefono a{
	color:#EE3224;
}
div.staff_mobile div.cellulare{
	font-size:0.85em;
    padding-bottom:5px;
	color:#737373;
	background:url("/application/xmanager/projects/interact2012english/img/layout/ico_cell_scheda.gif");
	background-repeat:no-repeat;
	background-position:center left;
	padding: 5px 0 5px 25px;
}
div.staff_text div.nome_cognome{
	clear:both;
	color:#000000;
    font-family:'UniversLT57CondensedRegular';
    font-size:1.6em;
}
div.staff_text div.ruolo{
	color:#737373;
	font-family:'UniversLT57CondensedRegular';
    font-size:1.3em;
	padding-bottom:10px;
	text-transform:uppercase;
}
div.staff_text div.abstract{
	color:#737373;
    font-size:0.9em;
    line-height:1.5em;
	width:550px;
	margin-bottom:30px;
}
div.right_tooltip  ul.staff_list li img {
    cursor: pointer;
    padding: 9px;
}
div.right_tooltip  ul.staff_list li {
    display: block;
    float: left;
    height: 72px;
    position: relative;
    width: 72px;
}
div.right_tooltip span.clear {
	clear:both;
	line-height:1px;
	display:block;
	height:1px;
}
/*------------------CLIENTI*/

div.clienti{
	width:970px;
	padding-top:20px;
	clear:both;
}
div.clienti span.shadow{
	background-image: url("/application/xmanager/projects/interact2012english/img/layout/bg_footer_def.jpg");
  background-position: center bottom;
  background-repeat: no-repeat;
  margin: 0 0 20px;
  padding: 0;
	clear:both;
	display:block;
	width:970px;
	height:30px;
}
div.clienti li{
	display:block;
	width:153px;
	float:left;
	padding:0;
	margin: 15px 8px 15px 0;
	border-bottom:0px dotted #ccc;
	height:100px;
	position:relative;
}
div.clienti li div.tooltip{
	top: -143px !important;
	left: -35px !important;
	font-size:0.8em;
	padding: 15px 18px;
	height: 133px;
	width: 174px;
	background: url("/application/xmanager/projects/interact2012english/img/red_arrow_clienti.png");
}
div.clienti li div.tooltip p{
	margin:0;
	padding:0;
}
div.clienti li div.tooltip a{
	color: #FBD915;
}
div.clienti div.customer div.title{
	font-size:1.2em;
   text-transform:uppercase;
}
div.clienti div.title{
    font-family:'UniversLT57CondensedRegular';
    padding:12px 0 20px;
	
}	
div.clienti div.logo {
    float: left;
    height: 90px;
    width: 150px;
}
div.bnr_tutti_shcase{
	margin: 10px 0;
}

div.box_sedi{
	display:block;
	width:935px;
	margin:0 auto;
	padding:0 0 0 10px;
}
div.box_sedi ul{
	padding:24px 0 0 0;
}
div.box_sedi li{
	display:block;
	list-style:none;
	width:295px;
	float:left;
	padding:0 24px 0 0;
	height:390px;
}
div.box_sedi li.style_landing_maps_li_3{
	padding: 0;
}
div.box_sedi li div.style_text p{
	font-size: 75%;
	margin:5px 0;
	display:block;
	width:293px;
	height:75px;
	overflow:hidden;
}
div.box_sedi li div.style_text p{
	font-size: 75%;
	margin:5px 0;
	display:block;
	width:293px;
	height:75px;
	overflow:hidden;
}
body#news_section ul.style_list_ul li div.title {
	width:550px;
	} 

.flag_it a{
	background:#FFF url(/application/xmanager/projects/interact2012english/img/it_flag.gif) no-repeat 0 center;
	padding-left:25px!important;
	
}
div.rss_list,div.rss_list_label{
	display:inline;
	position:relative;
	top:20px;
}
div.rss_list_label a{
	font-size:.75em;
}
div.rss_list a{
	color:#F68727;
}
#wrapper_header_cols div.rss_list a:hover{
	text-decoration:underline;
}
div.rss_list img{
	width:12px;
}
div.rss_list span.clear{
	display:block;
	clear:both;
}
.horizontal_carousel{
	height:124px;
	margin:0 0 0 10px;
}
.horizontal_carousel,
.horizontal_carousel .carousel_container{
	background-color:transparent;
}
.horizontal_carousel ul li{
	height:124px;
	/*margin-right:44px;*/
}
.horizontal_carousel .previous_button,
.horizontal_carousel .next_button{
	height:auto;
	top:47px;
}
.lista_promo .horizontal_carousel .previous_button,
.lista_promo .horizontal_carousel .next_button{
	top:72px;
}
.horizontal_carousel .previous_button {
  width: 15px;
  height: 23px;
  left:12px;
  background: url(/application/xmanager/projects/interactspa/img/carousel/but_prev.png) no-repeat;
}
.horizontal_carousel .next_button {
  width: 15px;
  height: 23px;
  right:12px;
  background: url(/application/xmanager/projects/interactspa/img/carousel/but_next.png) no-repeat;
}
.horizontal_carousel .previous_button_over {
  background: url(/application/xmanager/projects/interactspa/img/carousel/but_prev_hover.png) no-repeat;}

.horizontal_carousel .previous_button_disabled {
  background: url(/application/xmanager/projects/interactspa/img/carousel/but_prev_dis.png) no-repeat;
  cursor: default;
}
.horizontal_carousel .next_button_over {
  background: url(/application/xmanager/projects/interactspa/img/carousel/but_next_hover.png) no-repeat;
}

.horizontal_carousel .next_button_disabled {
  background: url(/application/xmanager/projects/interactspa/img/carousel/but_next_dis.png) no-repeat;
  cursor: default;
 }
 div.lista_lavora_con_noi {
	 font-size:90%;
	 font-weight:bold;
	 margin-bottom:30px;
 }
 div.lista_lavora_con_noi li {
	  margin-bottom:25px;
 }
 div.lista_lavora_con_noi a{
	  padding: 0 0 0 25px;
	  background: url(/application/xmanager/projects/interactspa/img/ico_job.gif) no-repeat;
	  color:#EE3224;
 }
 div.lista_lavora_con_noi a:hover{
	 color:#575757;
 }
  div.lista_lavora_con_noi p{
	 color:#575757;
     padding: 5px 35px 0 25px;
	 font-weight:normal;
	 margin:0;
	 font-size:90%;
 }
 

div.bg_shadow {
	background-image: url("/application/xmanager/projects/interactspa/img/layout/bg_footer_def.jpg");
    background-position: center top;
    background-repeat: no-repeat;
    clear: both;
    height: 45px;
    margin: 0 0 20px;
    padding: 20px 0 0;
}

.menu_arcipelago {
	margin: 0 auto;
    position: relative;
    width: 955px;
}
.menu_arcipelago ul {
	list-style:none;
}
.menu_arcipelago ul li {
	float:left;
	font-size:0.75em;
	color:333;
	width:180px;
	margin-right:78px;	
}
.menu_arcipelago ul li.last {
	margin-right:0;
}

.menu_arcipelago ul li span {
	font-weight:bold;
	border-bottom:2px solid #ccc;
	display:block;
	height:18px;
}
.menu_arcipelago ul li ul li {
	 padding: 7px 0 0;
}

.menu_arcipelago ul li ul li span {
	border-bottom:none;
	display:inline;
	font-size:1.2em;
	margin-left:13px;
}
.menu_arcipelago ul li ul li span a {
	text-decoration:none;
	color:#626262;
	margin-left:5px;
}

.menu_arcipelago ul li ul li span a:hover {
	color:#EE3224;
}

.menu_arcipelago ul li ul li a img {
	position:absolute;
}
.menu_arcipelago ul li ul li span a.active {
	color:#EE3224;
}
.container_soluzioni {
	margin-top:110px;
}
body#arcipelago_esterno{
	background-image:none;
}
.banner_box_full .banner_info{
	background:transparent url(/application/xmanager/projects/interactspa/img/bg_banner_info.jpg) no-repeat 0 0;
	color:#6A6A6A;
	font-size:18px;
	width:328px;
	height:86px;
	padding:7px 20px;
	text-align:center;
	margin-bottom:15px;
	line-height:1.3;
	text-shadow:1px 1px 1px #FFF;
}
#liquid_col_dx div.banner_box_full li{
	margin-bottom:15px;	
}
.banner_blog {
	 margin-bottom:5px;
}
.container_tab{
	padding-top:50px;
	margin-bottom:30px;
}
.wrapper_tab_link span.clear{
	clear:both;
	display:block;
}
.wrapper_tab_link div.scheda{
	float:left;
	padding-left:12px;
	margin-left:12px;
	border-left: 1px solid #666;
}
.wrapper_tab_link div:first-child{
	border:none;
	padding:0;
	margin:0;
}
.wrapper_tab_link h3{
	padding:0;
	font-size:1.2em;
}
.wrapper_tab_link h3 a{
	color:#EE3224;
}
div#liquid_content div.container_tab div.lista_collassabile h4{
	line-height:1.1;
	padding-right:40px;
}
div#liquid_content div.container_tab div.lista_collassabile{
	padding-top:0;
}
div#liquid_content div.container_tab div.lista_collassabile span.open,
div#liquid_content div.container_tab div.lista_collassabile span.close{
	display:block;
	width:0;
	height:0;
	border:6px solid;
	position:absolute;
	right:40px;
}
div#liquid_content div.container_tab div.lista_collassabile span.open{
	border-color:#575757 #FFF #FFF #FFF;
}
div#liquid_content div.container_tab div.lista_collassabile span.close{
	border-color:#FFF #FFF #575757 #FFF;
}


/* File: /application/xmanager/projects/interact2012english/css/carousel.css */
/* Horizontal Carousel */
.horizontal_carousel {
  width: auto;
  padding:0 35px;
  height: 96px;
  background:#FFFFFF;
  margin:0 0 0 5px;
  position:relative;
  overflow:hidden;
}

.horizontal_carousel .carousel_container {
  /*margin:0 25px;*/
  overflow: hidden;
  width:auto;
  background-color:#FFFFFF;
}

.horizontal_carousel ul {
  margin: 0;
  padding:0;
  width: 100000px;
  position: relative;
  top: 0;
  left: 0;
  /*height: 100px;*/
}                      

.horizontal_carousel ul li {
  width: 100px;
  height: 96px;
  text-align: center; 
  list-style:none;   
  float:left;
  margin:0 40px 0 0;
}

.horizontal_carousel .buttons{
	display:block;
 	clear:both;
}
.horizontal_carousel .previous_button {
 /* float:left;  */
  width: 25px;
  height: 96px;
  background: url(/application/xmanager/projects/progettobase/img/carousel/but_prev.png) no-repeat;
  z-index: 100;
  cursor: pointer;
  position:absolute;
  left:0;
  top:0;
}
.horizontal_carousel .next_button {
/*  float:right; */ 
  width: 25px;
  height: 96px;
  background: url(/application/xmanager/projects/progettobase/img/carousel/but_next.png) no-repeat;
  z-index: 100;
  cursor: pointer;
  position:absolute;
  right:0;
  top:0;
}
.horizontal_carousel .previous_button_over {
  background: url(/application/xmanager/projects/progettobase/img/carousel/but_prev_hover.png) no-repeat;}

.horizontal_carousel .previous_button_disabled {
  background: url(/application/xmanager/projects/progettobase/img/carousel/but_prev_dis.png) no-repeat;
  cursor: default;
}
.horizontal_carousel .next_button_over {
  background: url(/application/xmanager/projects/progettobase/img/carousel/but_next_hover.png) no-repeat;
}

.horizontal_carousel .next_button_disabled {
  background: url(/application/xmanager/projects/progettobase/img/carousel/but_next_dis.png) no-repeat;
  cursor: default;
}