/* 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: /stylesheets/default.css */
.overlay_dialog {
	background-color: #e1e1e1;
	filter:alpha(opacity=60);
	-moz-opacity: 0.6;
	opacity: 0.6;
}

.overlay___invisible__ {
  background-color: #666666;
	filter:alpha(opacity=0);
	-moz-opacity: 0;
	opacity: 0;
}

.dialog_nw {
	width: 9px;
	height: 23px;
	background: transparent url(/images/default/top_left.gif) no-repeat 0 0;		
}

.dialog_n {
	background: transparent url(/images/default/top_mid.gif) repeat-x 0 0;	
	height: 23px;
}

.dialog_ne {
	width: 9px;
	height: 23px;
	background: transparent url(/images/default/top_right.gif) no-repeat 0 0;		
}

.dialog_e {
	width: 2px;
	background: transparent url(/images/default/center_right.gif) repeat-y 0 0;	
}

.dialog_w {
	width: 2px;
	background: transparent url(/images/default/center_left.gif) repeat-y 0 0;		
}

.dialog_sw {
	width: 9px;
	height: 19px;
	background: transparent url(/images/default/bottom_left.gif) no-repeat 0 0;			
}

.dialog_s {
	background: transparent url(/images/default/bottom_mid.gif) repeat-x 0 0;		
	height: 19px;
}

.dialog_se {
	width: 9px;
	height: 19px;
	background: transparent url(/images/default/bottom_right.gif) no-repeat 0 0;			
}

.dialog_sizer {
	width: 9px;
	height: 19px;
	background: transparent url(/images/default/sizer.gif) no-repeat 0 0;	
	cursor:se-resize;	
}

.dialog_close {
	width: 14px;
	height: 14px;
	background: transparent url(/images/default/close.gif) no-repeat 0 0;			
	position:absolute;
	top:5px;
	left:8px;
	cursor:pointer;
	z-index:2000;
}

.dialog_minimize {
	width: 14px;
	height: 15px;
	background: transparent url(/images/default/minimize.gif) no-repeat 0 0;			
	position:absolute;
	top:5px;
	left:28px;
	cursor:pointer;
	z-index:2000;
}

.dialog_maximize {
	width: 14px;
	height: 15px;
	background: transparent url(/images/default/maximize.gif) no-repeat 0 0;			
	position:absolute;
	top:5px;
	left:49px;
	cursor:pointer;
	z-index:2000;
}

.dialog_title {
	float:left;
	height:14px;
	font-size:12px;
	text-align:center;
	width:100%;
	color:#000;
}

.dialog_content {
	overflow:auto;
	color: #DDD;
	font-family: Tahoma, Arial, sans-serif;
	font-size: 10px;
	background-color:#123;
}

.top_draggable, .bottom_draggable {
  cursor:move;
}

.status_bar {
  font-size:12px;
}
.status_bar input{
  font-size:12px;
}
/* DO NOT CHANGE THESE VALUES*/
.dialog {
	display: block;
	position: absolute;
}

.dialog table.table_window  { 
  border-collapse: collapse; 
  border-spacing: 0; 
  width: 100%;
	margin: 0px;
	padding:0px;
}

.dialog table.table_window td , .dialog table.table_window th { 
  padding: 0; 
}

.dialog .title_window {
  -moz-user-select:none;
}


/* File: /stylesheets/mac_os_x.css */
.overlay_mac_os_x {
	background-color: #85BBEF;
	filter:alpha(opacity=60);
	-moz-opacity: 0.6;
	opacity: 0.6;
}

.mac_os_x_nw {
  background: transparent url(/images/mac_os_x/TL_Main.png) no-repeat 0 0;			
  width:24px;
  height:30px;
}

.mac_os_x_n {
  background: transparent url(/images/mac_os_x/T_Main.png) repeat-x 0 0;			
  height:30px;
}

.mac_os_x_ne {
  background: transparent url(/images/mac_os_x/TR_Main.png) no-repeat 0 0;			
  width:31px;	  
  height:30px;
}

.mac_os_x_w {
  background: transparent url(/images/mac_os_x/L_Main.png) repeat-y top left;			
  width:16px;
}

.mac_os_x_e {
  background: transparent url(/images/mac_os_x/R_Main.png) repeat-y top right;			
  width:16px;	  
}

.mac_os_x_sw {
  background: transparent url(/images/mac_os_x/BL_Main.png) no-repeat 0 0;			
  width:31px;
  height:40px;
}

.mac_os_x_s {
  background: transparent url(/images/mac_os_x/B_Main.png) repeat-x 0 0;			
  height:40px;
}

.mac_os_x_se, .mac_os_x_sizer {
  background: transparent url(/images/mac_os_x/BR_Main.png) no-repeat 0 0;			
  width:31px;
  height:40px;
}

.mac_os_x_sizer {
	cursor:se-resize;	
}

.mac_os_x_close {
	width: 19px;
	height: 19px;
	background: transparent url(/images/mac_os_x/close.gif) no-repeat 0 0;			
	position:absolute;
	top:12px;
	left:25px;
	cursor:pointer;
	z-index:1000;
}

.mac_os_x_minimize {
	width: 19px;
	height: 19px;
	background: transparent url(/images/mac_os_x/minimize.gif) no-repeat 0 0;			
	position:absolute;
	top:12px;
	left:45px;
	cursor:pointer;
	z-index:1000;
}

.mac_os_x_maximize {
	width: 19px;
	height: 19px;
	background: transparent url(/images/mac_os_x/maximize.gif) no-repeat 0 0;			
	position:absolute;
	top:12px;
	left:65px;
	cursor:pointer;
	z-index:1000;
}

.mac_os_x_title {
	float:left;
	font-family:verdana;
	height:14px;
	font-size:11px;
	margin-top:8px;
	text-align:right;
	width:100%;
	color:#9f9f9f;
}

.mac_os_x_content {
	overflow:auto;
	background:#FFF;
}

/* FOR IE */
* html .mac_os_x_nw {
	background-color: transparent;
	background-image: none;
	filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src="../themes/mac_os_x/TL_Main.png", sizingMethod="crop");
}

* html .mac_os_x_n {
	background-color: transparent;
	background-image: none;
	filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src="../themes/mac_os_x/T_Main.png", sizingMethod="scale");
}

* html .mac_os_x_ne {
	background-color: transparent;
	background-image: none;
	filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src="../themes/mac_os_x/TR_Main.png", sizingMethod="crop");
}

* html .mac_os_x_w {
	background-color: transparent;
	background-image: none;
	filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src="../themes/mac_os_x/L_Main.png", sizingMethod="scale");
}

* html .mac_os_x_e {
	background-color: transparent;
	background-image: none;
	filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src="../themes/mac_os_x/R_Main.png", sizingMethod="scale");
}

* html .mac_os_x_sw {
	background-color: transparent;
	background-image: none;
	filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src="../themes/mac_os_x/BL_Main.png", sizingMethod="crop");
}

* html .mac_os_x_s {
	background-color: transparent;
	background-image: none;
	filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src="../themes/mac_os_x/B_Main.png", sizingMethod="scale");
}

* html .mac_os_x_se {
	background-color: transparent;
	background-image: none;
	filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src="../themes/mac_os_x/BR_Main.png", sizingMethod="crop");
}

* html .mac_os_x_sizer {
	background-color: transparent;
	background-image: none;
	filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src="../themes/mac_os_x/BR_Main.png", sizingMethod="crop");
}



/* 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/eurel/css/common.css */
body {
	font-family: Arial, Helvetica, sans-serif;
	font-size:1em;
	margin:0;
	padding:0;
	background-color:#a5c6bf;
	background-image: url(/application/xmanager/projects/eurel/img/layout/bg_body3.gif);
	background-repeat:repeat-x;
}
div#liquid_container {
	background-image: url(/application/xmanager/projects/eurel/img/layout/bg_white.gif);
	background-repeat:repeat-y;
	background-position:center;
	height:auto;
	border-top: 10px solid #167366;
}

a:focus{ outline:none; }
.hide {display: none;}
#liquid_header {	
  background-color:#FFFFFF;
	margin-left: 21px;
  width: 955px;
}
#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; margin-top:15px;}
body#partners_section #liquid_col_dx{ display:none;}
#wrapper_header_cols {
	width:978px;
	margin:5px auto 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:1px solid #dfdfdf;}
#wrapper_header_cols a:hover img, #liquid_footer a:hover img{	opacity:0.8; filter:alpha(opacity=80);}
div.top_header{
	height:112px;
	border-bottom:2px solid #a5c6bf;
	margin-bottom:1px;
	padding-top:5px;
}
body#news_section ul.style_list_ul li .style_title_link{
	clear:both;
	float:none;
	display:block;
}
div.cnt_logo{
	width:358px;
	float: left;	
}
h1.logo {
	display:block;
	width:358px;
	margin:0;
	height:111px;
	background: url(/application/xmanager/projects/eurel/img/layout/logo_eurel.jpg);
	background-repeat:no-repeat;
	float: left;
	height:98px;
}
h1.logo a {
	display:block;
	width:358px;
	height:97px;
}
div.cnt_servizioesearch {
	text-align:right;
	padding:10px 0 0 0;
	width:597px;
	float:left;
}
div.cnt_top_search{
	width:263px;
	float:left;
}
div.cnt_menuservizio{
	float: left;
	line-height:15px;
	width:214px;
}
div.cnt_menuservizio ul {
	padding: 3px 0 0 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.7em;
	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:#146154;}

div.cnt_top_search input#cerca_nel_sito{
	float:left;
	border:1px solid #a5c6bf;
	width:209px;
	color: #999999;
	padding:3px 3px 1px 3px;
	font-size:0.8em;
	display:block;
	height:16px;
}
div.cnt_top_search div.cnt_button{
	width:45px;
	float:right;
}
div.cnt_top_search button {
    background-color: #FFFFFF;
    border: 1px solid #0D796A;
    color: #0D796A;
    cursor: pointer;
    display: block;
    font-size: 0.8em;
    height: 22px;
    padding: 0;
    width: 45px;
}
div.cnt_top_search button:hover{
  background-color:#0D796A;
	color:#fff;
}
div.top_main_menu {
  text-align: right;
	width:597px;
	float:right;
	padding-top:45px;
}
div.top_main_menu li{
	display: inline;
	border-right:1px solid #c4c4c4;
}
div.top_main_menu li.last{
	display: inline;
	border-right:none;
}
div.top_main_menu li a{
	font-size: 0.9em;
	color:#000000;
	font-weight:bold;
	padding:0 9px;
}
div.top_main_menu li a:hover, 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:#4C8E85;}
div.top_main_menu li.last a {padding:0 0 0 9px !important;}
div.primo_piano {
  position:relative;
	margin: 0 0 10px 0;
	height: 318px;
}
body#home div.primo_piano, 
body#videopopup div.primo_piano {
	margin: 15px 0 20px 0;
}


div.primo_piano div.image {
  position:absolute;
}
div.prevSlide, div.nextSlide {
	position:absolute;
	bottom: 1px;
	z-index:2;
	display:block;
	width:25px;
	height:25px;
	overflow:hidden;
	vertical-align:middle;
	text-align:center;
}
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:#a5c6bf;
	opacity:1;
	filter:alpha(opacity=100);
}

div.primo_piano ul {
	z-index:0;
}

div.primo_piano div.image a img{
  border: 1px solid #a5c6bf!important;
}
div.primo_piano div.image a:hover img{
  opacity:1!important; filter:alpha(opacity=100)!important;
}
div.primo_piano div.title, div.primo_piano div.abstract  {
  position:absolute;
	padding:0 15px;
	width:533px;
}
div.primo_piano div.abstract p {
  margin:0;
}
div.primo_piano div.title a, div.primo_piano div.abstract a {
	color:#FFFFFF;
}
div.primo_piano div.title{ top: 242px; font-weight:bold;}
div.primo_piano div.abstract{ top: 260px; font-size:0.9em;}
div.primo_piano div.link  {
  position:absolute;
	bottom:1px;
	left:1px;
	display:block; 
	width:563px; 
	height:85px; 
	background: #000; 
	opacity:0.8;
	filter:alpha(opacity=80); 
}
div.primo_piano div.link a {
  display:block; 
	width:565px; 
	overflow:hidden;
	opacity:0;
	filter:alpha(opacity=0); 
}
div.box_title1{ 
  background-color: #fff;
	color:#151515;
	border-bottom:2px solid #a5c6bf;
	text-transform:uppercase;
	padding:3px 0 0 0;
	font-size:0.95em;
	height:19px;
	overflow:hidden;
	font-weight:bold;
}
div.box_title2{ 
	text-transform:uppercase;
	overflow:hidden;
	font-weight:bold;
	background-color: #FFFFFF;
  border-bottom: 2px solid #a5c6bf;
  color: #151515;
  font-size: 0.95em;
  height: 19px;
  padding: 3px 0 0;
}
div.box_titlePlatformH{ 
	background-color: #FFFFFF;
	color:#151515;
	text-transform:uppercase;
	padding:3px 0 0 0;
	font-size:0.95em;
	height:19px;
	overflow:hidden;
	width:565px;
	margin:0;
	font-weight:bold;
  border-bottom: 2px solid #a5c6bf;
}
div.box{ 
  position:relative;
}
div.button_boxtitle{
	position:absolute;
	top: 2px;
	right: 0;
	font-size:0.9em;
	padding:3px 0;
	border:none;
	height:22px;
	border-left:2px solid #FFF;
}
body#home div.platform_listH div#claim {
	color:#4E4E4E;
	font-size:16px;
	height:70px;
	margin-bottom:17px;
	width:564px;
	padding-left:1px;
}
body#home div.platform_listH div#claim a{
	color:#4E4E4E;
}

div.button_boxPlatformH{
	position:absolute;
	top: 2px;
	right: 20px;
 	font-size:0.9em;
	padding:3px 0;
	border:none;
	height:20px;
	border-left:2px solid #FFF;
}
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:#0d796a!important;
	text-decoration:none;
	padding:3px 6px;
	background-color:#fff;
	border:1px solid #0d796a;
	font-size:0.8em;
}
div.button_boxtitle a:hover, div.button_boxPlatformH a:hover{
	color:#fff!important;
	background-color:#0d796a;
}

div.news_listH{
	height:291px;
	border-top:1px solid #ffffff;
	position:relative;
	background-color:#FFFFFF;
	margin-bottom:18px;
}

div.news_listH div.carousel_container{
	height:301px;
	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 #bbbbbb;
	height:43px; 
}
div.news_listH div.carousel_container li:hover{
	background-color: #f6f6f6;
}
div.style_datetime {
	color: #999999;
	font-size:0.7em;
	float:left;
	border-right: 1px dotted #bbbbbb;
	padding:0 8px 5px 0;
	margin:0 8px 0 0;
	line-height:15px;
}
div.style_category {
	color: #999999;
	font-size:0.7em;
	margin-bottom:3px;
}
body#customers_section div.link_categories {
	width:400px;
}
div.news_listH div.title a, a.style_title_link, div.style_title {
	color: #000000;
	font-weight:bold;
	font-size:0.9em;
}
h3.style_subtitle, div.style_subtitle {
	color: #7b7b7b;
	font-weight:bold;
	font-size:0.8em;
	padding:10px 0 0 0;
	margin:0;
}
div.carousel_container ul li a.style_title_link{
	display:block;
	float:none;
	clear:both;
	padding-right:5px;
}
div.news_listH div.title a:hover, a.style_title_link:hover {
	color: #146154;
}
div.news_listH div.buttons{
	position:absolute;
	top:0;
	right:0;
	width:20px;
	height:291px;
	background-color:#ddede9;
}
div.news_listH div.buttons div.previous_button{
	position:absolute;
	top:0;
	right:0;
	width:20px;
	height:21px;
	background-image:url(/application/xmanager/projects/eurel/img/layout/scroll_top.gif);
	background-color:#FFF;
	background-position:top;
	background-repeat:no-repeat;
	cursor:pointer;
}
div.news_listH div.buttons div.previous_button_disabled{
	background-image:url(/application/xmanager/projects/eurel/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/eurel/img/layout/scroll_down.gif);
	background-color:#FFF;
	background-position:bottom;
	background-repeat:no-repeat;
	cursor:pointer;
}
div.news_listH div.buttons div.next_button_disabled{
	background-image:url(/application/xmanager/projects/eurel/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 30px 0;
}
body#home div.banner_box{
	margin-bottom:7px;
}
body#home div.banner_box li{
	margin-bottom:28px;
}
body#contact_us_section div.right_menu {
	display:none;
}
div.banner_box {
	margin:25px 0 30px 0;
}
div.banner_box a img{
	border: none !important;
}
div.platform_listH li{
	display: block;
	width:175px;
	height:216px;
	overflow:hidden;
	float:left;
	padding:10px 20px 0 0;
	margin-bottom:11px;
}
div.platform_listH div.image{
	height:120px;
}
div.platform_listH div.title a{
	color: #000000;
	font-weight:bold;
	font-size:0.9em;
	padding: 0 0 0 2px;
}
div.platform_listH div.title a:hover{
	color: #146154;
}
div.platform_listH div.sub_title{
	color: #7b7b7b;
	font-weight:bold;
	font-size:0.75em;
	padding: 2px 0 0 2px;
}
div.platform_listH div.abstract_home{
	font-size:0.7em;
	padding: 4px 0 0 2px;
}
div.platform_listH div.abstract_home p{
	margin:0;
}
div.service_listH ul{
	margin: 10px 0 0 0;
}
div.service_listH li{
	display: block;
	width:370px;
	height:99px;
	overflow:hidden;
	position:relative;
	margin-bottom:20px;
}
div.service_listH div.title a{
	color: #000000;
	font-weight:bold;
	font-size:0.9em;
	/*padding: 0 185px 0 2px;*/
}
div.service_listH div.title a:hover{
	color: #146154;
}
div.service_listH div.sub_title{
	color: #7b7b7b;
	font-weight:bold;
	font-size:0.75em;
	padding: 4px 185px 0 2px;
}
div.service_listH div.abstract_home{
	font-size:0.7em;
	padding: 5px 185px 0 2px;
}
div.service_listH div.abstract_home p{
	margin:0;
}
/*div.service_listH div.image{
	position:absolute;
	top: 0;
	right: 0;
	width:175px;
	height:97px;
}*/
div.service_listH div.image{
	float: right;
	width:175px;
	height:97px;
}
span.close_wrapper, span.clear_cols{
	display:block;
	height:1px;
	line-height:1px;
	padding:0;
	margin:0;
}
div.box_showcaseH{
	margin: 0 auto;
	position:relative;
	width:955px;
	padding:15px 0 0 23px;
}
div.box_showcaseH div.button_boxtitle{
	top: 17px;
}
div.box_showcaseH li{
	list-style:none;
	display:block;
	width:175px;
	float:left;
	padding-top:10px;
	margin:0 20px 0 0;
}
div.box_showcaseH li.showcase_listH_li_5{
	margin:0;
}
div.showcase_listH span.clear{
	clear: left;
}
div.showcase_listH div.title a{
	color: #000000;
	font-weight:bold;
	font-size:0.9em;
	padding: 0 2px;
	text-decoration:none;
}
div.showcase_listH div.title a:hover{
	color: #146154;
}
div.showcase_listH div.sub_title{
	color: #7b7b7b;
	font-weight:bold;
	font-size:0.75em;
	padding: 4px 2px 20px 2px;
}
div.showcase_listH div.image{
	height:120px;
}
div.box_partnerH{
	margin:0 auto;
	position:relative;
	width:955px;
	padding-left:23px;
	clear:both;
}
div.box_partnerH span.clear{
	displaY:block;
	clear:both;
}
div.box_partnerH li span.clear{
	clear:none;
}
div.box_partnerH li{
	list-style:none;
	float:left;
}
div.box_partnerH a img{
	border: none !important;
	padding:18px 15px 5px 15px;
}
div.box_partnerH a:hover img{
	opacity:0.4!important;
	filter:alpha(opacity=40)!important;
}
div.bg_footer div.bg_footer{
    background-color: #167366;
    border-top: 2px solid #FFFFFF;
    clear: both;
    height: 30px;
    margin: 0 auto;
    padding: 15px 0 0 0;
    width: 100%;
}
div.bg_footer div.footer_wrap {
	display:block;
	width:978px;
	margin:0 auto;
}
body#partners_section div.style_addthis {
	padding:10px 0 20px 36px;
}
div.style_addthis {
	display:block;
	width:958px;
	margin:0 auto;
	padding:10px 0 20px 0;
	clear:both;
}
div.bg_footer p.interact{
	float:left;
	color:#fff;
	font-size:0.7em;
	padding:0 0 0 20px;
	margin:0;
}
div.bg_footer p.interact a{
	color: #fff;
	text-decoration:underline;
}
div.bg_footer p.interact a:hover{
	color: #a5c6bf;
}
ul.social_link {
	float:left;
	padding:4px 10px 0 0;
	display:block;
	width:110px;
}
ul.social_link li{
	float:right;
	display:block;
	width:17px;
	height:16px;
	overflow:hidden;
	margin-left:3px;
}
ul.social_link a{
	display:block;
	width:17px;
	height:0!important;
	padding-top: 16px;
	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/eurel/img/layout/ico_linkedin.gif);}
ul.social_link a.flickr{background-image:url(/application/xmanager/projects/eurel/img/layout/ico_flickr.gif);}
ul.social_link a.twitter{background-image:url(/application/xmanager/projects/eurel/img/layout/ico_twitter.gif);}
ul.social_link a.slideshare{background-image:url(/application/xmanager/projects/eurel/img/layout/ico_slideshare.gif);}
ul.social_link a.youtube{background-image:url(/application/xmanager/projects/eurel/img/layout/ico_youtube.gif);}
ul.social_link a.facebook{background-image:url(/application/xmanager/projects/eurel/img/layout/ico_facebook.gif);}
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.partner, div.icon_menu div.title {
	width:200px;
	display:inline;
}
div.icon_menu div.partner a, div.icon_menu div.title a{
	padding: 4px 0 0 0;
}
div.icon_menu ul {
	padding: 10px 0 0 0;
	background-color:#FFFFFF;
	width:370px;
}
div.icon_menu li {
	display:block;
	width:370px;
	height:43px;
	padding-bottom: 5px;
}
div.icon_menu {
	width:370px;
	clear:both;
}
div.right_menu{
	margin:0 0 15px 0;
	padding:0;
	width:370px;
}
div.right_menu ul{ background-color:#FFFFFF; margin:0; padding:0; width:370px;}
div.right_menu li.current, div.right_menu li li{padding:0; margin:0; 	width:370px;}
div.right_menu li a {
	display:block;
  background-color: #FFFFFF;
  border-bottom: 2px solid #A5C6BF;
  color: #151515;
  font-size: 0.95em;
  font-weight: bold;
  height: 19px;
  overflow: hidden;
  padding: 3px 0 0 0;
}
div.box_title1 a{
	color:#FFFFFF;
}
div.right_menu li li a{
	color:#000;
	background-color: #fff;
	padding:5px 0 5px 7px;
	font-size:0.8em;
	border-bottom:1px dotted #bbbbbb;
}
div.right_menu li li a.current, div.right_menu li li a.current:hover {
  color:#4C8E85;
	text-decoration: none!important;
	background-color:#FFFFFF;
}
div.right_menu li li a:hover{
	background-color:#d0e8e3;
	text-decoration: none!important;
	color: #333333;
}
div.right_menu ul ul {
	margin:5px 0;
	padding:0;
	width:370px;
}
h2.style_title{
  margin:17px 0 0 0;
	padding:0;
	color: #146154;
	font-size:1.2em;
}

h3.style_title {
    margin: 10px 0;
    color: #000;
    font-size: 1em ;
	font-weight:normal;
}

div#liquid_content div.style_landing{
  margin:17px 0 0 0;
	/*position: relative;*/
	width:565px;
}
div#liquid_content div.style_landing_partner div.style_landing{
  margin:0;
}
div#liquid_content div.style_text{
	margin:0;
	padding:20px 0 0 0;
	width:550px;
	color: #000000;
	font-size:0.8em;
}
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 0;
	color: #000000;
	font-size:0.8em;
	font-weight:bold;
}
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: 0 0 4px 12px!important;;
	background-image:url(/application/xmanager/projects/eurel/img/layout/bull_list.gif);
	background-repeat:no-repeat;
}
div.rel_showc_list ul.rel_showc_list_ul li a{
	font-size:0.8em;
}
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;
	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:20px 0 0 0;
}
div#liquid_content div.style_text p{
	margin:0 0 20px 0;
}
div#liquid_content div.style_text a{
	color:#0000FF;
}
div#liquid_content div.style_text a:visited{
	color:#0000FF;
}
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/eurel/img/layout/bull_list.gif);
	background-repeat:no-repeat;
}
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: #146154;
}
div#liquid_content div.paginator li a{
	color: #000000;
}
div#liquid_content div.paginator li a:hover{
	color: #0000FF;
}
div.album_second {
	position:relative;
	margin-top: 15px;
}
div.album_second img{
	border:1px solid #a5c6bf;
}
div.album_second ul{
	height:318px;
}
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-weight:bold;
	font-size: 0.9em;
	padding:4px 0 0 0;
}
div.list_staff div.job_title {
	font-weight:bold;
	font-size: 0.75em;
	color: #7b7b7b;
	padding:5px 0 20px 0;
}
div.list_staff div.link_profile a, div.list_staff div.curriculum a, div.list_staff div.email_address a, div.style_landing_maps div.email_address a{
	font-size: 0.7em;
	color: #000000;
	padding:0 15px 0 22px;
	float:left;
	line-height:16px;
	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/eurel/img/layout/ico_linkedin.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/eurel/img/layout/ico_mail.gif);} 
body#partners_section a.style_external_link { position:absolute; top: 340px; right:5px; font-size:0.9em;}
body#customers_section a.style_external_link { position:absolute; top: 45px; right:5px; font-size:1.2em;}
div.style_form {
	background-color:#F6f6f6;
	padding:10px;
	margin-bottom:20px;
}
div.style_form label, div.style_form h6 {
	font-size: 0.7em;
	color:#333333;
	margin:0 8px 0 0;
	padding:3px 0 0 0;
	font-weight:bold;
}
div.style_form label, div.style_form div.cnt_multiceck input{
	float:left;
}
div.style_form div.cnt_textfield, div.style_form div.cnt_multiceck, div.style_form div.calendario {
	margin-bottom:10px;
}
div.style_form div.calendario a{
	background-image:url(/application/xmanager/projects/eurel/img/layout/ico_calendar.gif);
	background-repeat:no-repeat;
	padding:2px 0 0 20px;
	font-size:0.7em;
	line-height:19px;
	color:#0047ff;
}
div.style_form div.calendario a:hover{
	opacity:0.6; filter:alpha(opacity=60);
}
div.style_form div.cnt_button {
	clear: both;
	text-align:right;
}
div.style_form div.cnt_multiceck {
	margin-top:5px;
}
div.style_form div.cnt_multiceck label{
	font-weight:normal;
	color:#000000;
}
div.style_form div.cnt_textfield input {
	border:1px solid #C4C4C4;
	color:#000000;
	font-size:0.7em;
	padding:3px 2px;
	width:300px;
}
div.style_form div.cnt_button button{
    background-color: transparent;
    border: 1px solid #1B6E5B;
    color: #151515;
    cursor: pointer;
    font-size: 0.9em;
    height: 15px;
    padding: 0 5px 18px;
    width: 45px;
}
#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:#146154;
}
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{
	width:100px;
	margin:0;	
	background-color:transparent;
	color:#1b6e5b;
	border: 1px solid #1b6e5b;
	font-size:0.9em;
	padding:0 5px 18px 5px;
	height:15px;
	cursor: pointer;
	display:block;
}
div.style_mailer div.mailer_send_button_wrapper input, div.style_google input.gsc-search-button:hover{
	color:#fff;
	background-color:#1b6e5b;
}
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 #A5C6BF;
	color:#7b7b7b;
	font-size:0.85em;
	padding:2px 2px;
	width:450px;
}
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: #000000;
	font-weight:bold;
	font-size:0.9em;
	text-decoration:none;
}
div.style_google div.gs-title a:hover, div.style_google div.gs-title a:hover b {
	color: #146154;
}
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: #000000;
	font-size:0.8em;
}
div.style_google div.gs-visibleUrl {
	margin:0;
	padding:0;
	color: #7b7b7b;
	font-size:0.7em;
}
div.style_google .gsc-result {
margin-bottom:20px;
}
div.style_box_attach {
	margin-bottom: 20px;
}
div.style_box_attach a{
	font-size: 0.7em;
	color: #000000;
	padding:2px 15px 0 22px;
	display: block;
	font-weight:bold;
	height:18px;
	margin: 5px 5px 5px 7px;
	background-repeat:no-repeat;
	background-image:url(/application/xmanager/projects/eurel/img/layout/ico_pdf.gif);
}
div.style_box_attach a:hover{	color: #999999;}
div.style_news_results p.message{
	font-size: 0.9em;
	color: #7b7b7b;
}
div.showcase_info_list{
	font-size: 0.7em;
}
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:#333333;
	font-size:0.7em;
	font-weight:bold;
	margin:0 8px 4px 0;
	padding:3px 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:275px;
}
div.liquid_content div.newsletter_container div.newsletter_form div#form_top{
	
}
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{
	margin:5px 5px 0 150px;
}
div.liquid_content div.newsletter_container  div.iscrivimi_button input{
	margin:0;
	width:130px;
	background-color:transparent;
	color:#151515;
	border: 1px solid #1b6e5b;
	font-size:0.9em;
	padding:0 5px 18px 5px;
	height:15px;
	cursor: pointer;
	display:block;
}
div.liquid_content div.newsletter_container  div.iscrivimi_button input:hover{
	background-color:#1b6e5b;
	color:#fff;
}
div.altri_clienti h4{
    color: #7B7B7B;
    font-size: 0.7em;
    font-weight: bold;
    margin: 0;
    padding: 10px 0 0;
}
div.altri_clienti{
	padding:0 0 20px 0;
	margin:0 0 20px 0;
	border-bottom:2px solid #DFDFDF;
}
div.altri_clienti ul{
	padding:0;
}
div.altri_clienti li{
	display:block;
	float:left;
	width:270px;
	height:60px;
	overflow: hidden;
	margin:0 5px 2px 0;
}
div.altri_clienti li img{
	float:left;
	border:1px solid #DFDFDF; 
	margin-right:10px;
}
div.altri_clienti li div.style_title{
	font-size:0.8em;
	padding:3px 0 0 0;
}
div.altri_clienti span.clear{
	display:block;
	clear:both;
	height:1px;
	line-height:1px;
}
/*-------box 30 anni---------------*/

.box_title_special {
	background-color: #167366;
	padding:10px 10px 5px 10px;
	color:#FFF;
	font-size:22px;
	font-weight:bold;
	margin-bottom:12px;
	height:34px;
}

.tab_video a, .tab_gallery a, li.tab_news a  {
	float:left;
	background-color:#fff;
	color: #167366;
	padding:4px 8px;
	margin-right:10px;
	border:1px solid #A5C6BF;
	text-transform:uppercase;
	font-size:12px;
	font-weight:bold;
}

.tab_video a:hover, .tab_gallery a:hover {
	background-color:#A5C6BF;
	color: #136458;
}

li.active .tab_video_label, li.active .tab_gallery_label, .tab_news_label{
	float:left;
	background-color:#A5C6BF;
	color: #136458;
	padding:4px 8px;
	/*margin-right:10px;*/
	border:1px solid #A5C6BF;
	text-transform:uppercase;
	font-size:12px;
	font-weight:bold;
	margin-bottom:20px;
}

.news_listH_special a {
	border:none !important;
	padding:0 !important;
	font-size: 13px !important;
    margin-bottom: 10px;
}
li.news_listH_special_li_1, li.news_listH_special_li_2, li.news_listH_special_li_3 {
	height:64px;
	border-bottom:1px dotted #ABA4A4;
	margin-bottom:10px;
}

.tab_news_label  {
	float:none !important;
	width:36px !important;
	position:relative;
	}
	
.tab_video a {
	position: absolute;
	left:63px;
	top:61px;
}
.tab_gallery a {
	position: absolute;
	left:127px;
	top:61px;
}

li.active .tab_gallery_label {
	left:127px !important;
	top:61px !important;
	position:absolute
}
.box_tab_hp {
	height:250px;
}

.tab_gallery .thumb a{
	padding:0;
	border: none !important;
	margin:0 15px 15px 0 !important;
	position:relative !important;
	left:0;
	top:44px;
		
}
li.tab_gallery_li_1 {
	width:163px; 
}

body#album .title h4, .lista_album h4 {
	color:#167366;
	text-transform:uppercase;
}

div.album li {
	float:left;
	margin-right:10px;
	margin-bottom:10px;
}

.lista_album li {
	border-bottom: 1px dotted #ccc;
    clear: both;
    height: 100px;
    margin-bottom: 15px;
    padding-bottom: 0;
}
.lista_album .img_thumb {
	float:left;
	margin:0 15px 0 0;
}
.lista_album .data {
	font-size: 12px;
	font-weight:bold;
	text-transform:uppercase;
	color:#666;
	margin-bottom:5px;
}
.lista_album .title {
	font-size: 16px;
	color: #167366;
}

div.link_archivio {
	left: 500px;
    position: absolute;
    top: 20px;
}

.link_archivio a {
	color: #0d796a!important;
    text-decoration: none;
    padding: 3px 6px;
    background-color: #fff;
    border: 1px solid #0d796a;
    font-size: 0.8em;
}

.link_archivio a:hover {
	color:#FFF !important;
	background-color:#0d796a;
}

.lista_album .title a {
	color: #167366 ;
}
.lista_album .title a:hover {
	color: #72B1B1;
}

/* File: /application/xmanager/projects/eurel/css/calendar-system.css */
/* The main calendar widget.  DIV containing a table. */

div.calendar { position: relative; border: 1px solid #4C8E85;}

.calendar table {
  border: 1px solid #4C8E85;
  font-size: 11px;
  color: #000;
  cursor: default;
  background: #F1F8FC;
  font-family: tahoma,verdana,sans-serif;
	line-height:110% !important;
}
.calendar table td{
  border-color:#f2f2f2 !important;
}

/* Header part -- contains navigation buttons and day names. */

.calendar .button { /* "<<", "<", ">", ">>" buttons have this class */
  text-align: center;    /* They are the navigation buttons */
  padding: 2px;          /* Make the buttons seem like they're pressing */
}

.calendar .nav {
  background: #4C8E85 url(menuarrow2.gif) no-repeat 100% 100%;
	color: #ffffff;
}

.calendar thead .title { /* This holds the current "month, year" */
  font-weight: bold;      /* Pressing it will take you to the current date */
  text-align: center;
  background: #7c7c7c;
  color: #fff;
  padding: 2px;
	border: 1px solid #7c7c7c;
}

.calendar thead tr { /* Row <TR> containing navigation buttons */
  background: #cbd2d8;
  color: #000000;
}

.calendar thead .daynames { /* Row <TR> containing the day names */
  background: #C7E1F3;
}

.calendar thead .name { /* Cells <TD> containing the day names */
  border-bottom: 1px solid #7c7c7c;
  padding: 2px;
  text-align: center;
  color: #000;
}

.calendar thead .weekend { /* How a weekend day name shows in header */
  color: #666;
}

.calendar thead .hilite { /* How do the buttons in header appear when hover */
  background-color: #ffffff;
  color: #000000;
  border: 1px solid #4C8E85 !important;
  padding: 1px;
}

.calendar thead .active { /* Active (pressed) buttons in header */
  background-color: #7c7c7c;
  border: 1px solid #008AFF;
  padding: 2px 0px 0px 2px;
	color:#FFFFFF;
}

/* The body part -- contains all the days in month. */

.calendar tbody .day { /* Cells <TD> containing month days dates */
  width: 2em;
  color: #fff;
  text-align: right;
  padding: 2px 4px 2px 2px;
	background-color:#4C8E85;
}
.calendar tbody .day:hover {
  color: #000;
	background-color:#fff;
	border:1px solid #4C8E85;
	cursor:pointer;
}
.calendar tbody .day.othermonth {
  font-size: 80%;
  color: #bbb;
}
.calendar tbody .day.othermonth.oweekend {
  color: #fbb;
}

.calendar table .wn {
  padding: 2px 3px 2px 2px;
  border: 1px solid #7c7c7c;
  background: #ffffff;
	font-size:85%;
	text-align:center;
	color:#666666!important;
}

/*.calendar tbody .rowhilite td {
  background: #def;
}*/

/*.calendar tbody .rowhilite td.wn {
  background: #F1F8FC;
}*/

/*.calendar tbody td.hilite { /* Hovered cells <TD> 
  background: #def;
  padding: 1px 3px 1px 1px;
  border: 1px solid #8FC4E8;
}*/

.calendar tbody td.active { /* Active (pressed) cells <TD> */
  background: #cde;
  padding: 2px 2px 0px 2px;
}

.calendar tbody td.selected { /* Cell showing today date */
  font-weight: bold;
  border: 1px solid #7c7c7c;
  padding: 1px 3px 1px 1px;
  background: #fff;
  color: #000;
}

.calendar tbody td.weekend { /* Cells showing weekend days */
  color: #fff;
	background-color:#4C8E85;
	border:1px solid #fff;
}
.calendar tbody td.weekend:hover { /* Cells showing weekend days */
  color: #000;
	background-color:#fff;
	border:1px solid #4C8E85;
	cursor:pointer;
}

.calendar tbody td.today { /* Cell showing selected date */
  font-weight: bold;
  color: #D50000;
}

.calendar tbody .disabled { color: #999;	background-color:#f2f2f2;
	border:1px solid #f2f2f2;
	cursor:default!important; }

.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) */
  text-align: center;
  background: #7c7c7c;
  color: #fff;
}

.calendar tfoot .ttip { /* Tooltip (status bar) cell <TD> */
  background: #fff;
  color: #7c7c7c;
  border-top: 1px solid #7c7c7c;
  padding: 2px;
}

.calendar tfoot .hilite { /* Hover style for buttons in footer */
  background: #B8DAF0;
  border: 1px solid #178AEB;
  color: #000;
  padding: 1px;
}

.calendar tfoot .active { /* Active (pressed) style for buttons in footer */
  background: #006AA9;
  padding: 2px 0px 0px 2px;
}

/* Combo boxes (menus that display months/years for direct selection) */

.calendar .combo {
  position: absolute;
  display: none;
  top: 0px;
  left: 0px;
  width: 4em;
  cursor: default;
  border: 1px solid #655;
  background: #def;
  color: #000;
  font-size: 90%;
  z-index: 100;
	line-height:110%;
}

.calendar .combo .label,
.calendar .combo .label-IEfix {
  text-align: center;
  padding: 1px;
}

.calendar .combo .label-IEfix {
  width: 4em;
}

.calendar .combo .hilite {
  background: #34ABFA;
  font-weight: bold;
}

.calendar .combo .active {
  border-top: 1px solid #46a;
  border-bottom: 1px solid #46a;
  background: #F1F8FC;
  font-weight: bold;
}

.calendar td.time {
  border-top: 1px solid #000;
  padding: 1px 0px;
  text-align: center;
  background-color: #E3F0F9;
}

.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: #F1F8FC;
}

.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: #267DB7;
  color: #fff;
}

.calendar td.time span.active {
  border-color: red;
  background-color: #000;
  color: #A5FF00;
}


/* File: /application/xmanager/projects/eurel/css/lightbox.css */
/* ------- CSS LIGHTBOX DI BASE ---- */

/* ATTENZIONE!!! NON MODIFICARE MAI QUESTO FILE, COPIARE I SELETTORI NEL CSS DI PROGETTO E APPLICARE LE  MODIFICHE */

#lightbox{	position: absolute;	left: 0; width: 100%; z-index: 100; text-align: center; line-height: 0;}
#lightbox img{ width: auto; height: auto;}
#lightbox a img{ border: none; }

#outerImageContainer{ position: relative; background-color: #fff; width: 250px; height: 250px; margin: 0 auto; }
#imageContainer{ padding: 10px; }

#loading{ position: absolute; top: 40%; left: 0%; height: 25%; width: 100%; text-align: center; line-height: 0; }
#hoverNav{ position: absolute; top: 0; left: 0; height: 100%; width: 100%; z-index: 10; }
#imageContainer>#hoverNav{ left: 0;}
#hoverNav a{ outline: none;}

#prevLink, #nextLink{ width: 49%; height: 100%; background-image: url(data:image/gif;base64,AAAA); /* Trick IE into showing hover */ display: block; }
#prevLink { left: 0; float: left;}
#nextLink { right: 0; float: right;}
#prevLink:hover, #prevLink:visited:hover { background: url(/application/xmanager/projects/eurel/img/lightbox/prevlabel.gif) left 70% no-repeat; }
#nextLink:hover, #nextLink:visited:hover { background: url(/application/xmanager/projects/eurel/img/lightbox/nextlabel.gif) right 70% no-repeat; }

#imageDataContainer{ font: 10px Verdana, Helvetica, sans-serif; background-color: #fff; margin: 0 auto; line-height: 1.4em; overflow: auto; width: 100%	; }

#imageData{	padding:0 10px; color: #666; }
#imageData #imageDetails{ width: 70%; float: left; text-align: left; }	
#imageData #caption{ font-weight: bold;	}
#imageData #numberDisplay{ display: block; clear: left; padding-bottom: 1.0em;	}			
#imageData #bottomNavClose{ width: 66px; float: right;  padding-bottom: 0.7em; outline: none;}
#imageData #bottomNavClose img{
	display:none!important;
}
#imageData #bottomNavClose{ width: 70px; height:30px; float: right;  padding-bottom: 0.7em; outline: none;
	background-image:url("/application/xmanager/projects/eurel/img/lightbox/closelabel.gif");
	background-repeat:no-repeat;
	display:block;
}	 	


#overlay{ position: absolute; top: 0; left: 0; z-index: 90; width: 100%; height: 500px; background-color: #000; }
