/* $Id: zen-liquid.css,v 1.12.2.3 2010/06/26 18:29:22 johnalbin Exp $ */

/* Id: html-reset.css,v 1.6.2.2 2010/06/26 15:36:03 johnalbin Exp */

/**
 * @file
 * HTML Element Styling
 *
 * Ok, I admit it. I fooled you. This isn't a "reset" stylesheet. Instead this
 * is the place where you should set (not reset) the default styling for all
 * HTML elements.
 *
 * @see http://meiert.com/en/blog/20080419/reset-style-sheets-are-bad/
 * @see http://snook.ca/archives/html_and_css/no_css_reset/
 */


/*
 * Fonts
 *
 * Our font size and line height declarations are based on the following ALA
 * article:
 *   http://www.alistapart.com/articles/howtosizetextincss
 *
 * All modern browsrs use a 16px default font size. Specifying the font-size
 * and line-height in ems (relative to the 16px default font) allows the user
 * to resize the font in the browser and produces the most consistent results
 * across different browsers.
 */
/* body {
  font-size: 100%; /* Fixes exaggerated text resizing in IE6 and IE7 */
}*/

body { 
	background:;
	font-family:Arial, Helvetica, sans-serif;
	font-size:12px;
	color:#777777;
}

blockquote {
background:url("../images/bq.png") no-repeat scroll left top transparent;
color:#000000;
font-size:90%;
font-style:italic;
margin-left:50px;
margin-top:20px;
padding-left:50px;
padding-top:10px;
text-align:center;
width:80%;
}


#skip-link,
#page {
  /*
   * To use a 12px font size on the page, delete the 14px declarations.
   * to use a 14px font size on the page, delete the 12px declarations.
   */

  /* Use a 12px base font size with a 16px line height */
  font-size: 0.75em; /* 16px x .75 = 12px */
  line-height: 1.333em; /* 12px x 1.333 = 16px */

  /* Use a 14px base font size with a 18px line height */
  font-size: 0.875em; /* 16px x .875 = 14px */
  line-height: 1.286em; /* 14px x 1.286 = 18px */
}

body,
caption,
th,
td,
input,
textarea,
select,
option,
legend,
fieldset {
  /* The following font family declarations are based on the Microsoft core web
   * fonts which are common fonts available on most computer systems. The DejaVu
   * fonts are commonly available on Linux systems where the MS fonts are less
   * common. Tahoma and Helvetica are also widely available.
   *
   * A user's web browser will look at the comma-separated list and will
   * attempt to use each font in turn until it finds one that is available
   * on the user's computer. The final "generic" font (sans-serif or serif)
   * hints at what type of font to use if the web browser doesn't find any
   * of the fonts in the list.

  font-family: "Times New Roman", Times, Georgia, "DejaVu Serif", serif;
  font-family: Times, "Times New Roman", Georgia, "DejaVu Serif", serif;
  font-family: Georgia, "Times New Roman", "DejaVu Serif", serif;

  font-family: Verdana, Tahoma, "DejaVu Sans", sans-serif;
  font-family: Tahoma, Verdana, "DejaVu Sans", sans-serif;
  font-family: Helvetica, Arial, "Nimbus Sans L", sans-serif;*/
  font-family:  Arial, Verdana, Helvetica, "Nimbus Sans L", sans-serif;/*

  font-family: "Courier New", "DejaVu Sans Mono", monospace;

   */

  /*font-family: Verdana, Tahoma, "DejaVu Sans", sans-serif;*/
  font-size:14px;
  color:#777777;
}

pre,
code {
  font-size: 1.1em; /* Monospace fonts can be hard to read */
  font-family: "Courier New", "DejaVu Sans Mono", monospace;
}

/*
 * Headings
 */
 h1 {  }

h1 {
  font-size:22px; 
  margin-top: 0;
  margin-bottom: 0.5em; /* 0.5em is equavalent to 1em in the page's base font.
                           Remember, a margin specified in ems is relative to
                           the element's font-size, not to the pages' base
                           font size. So, for example, if we want a 1em margin
                           (relative to the base font), we have to divide that
                           length by the element's font-size:
                           1em / 2em = 0.5em */
  color:#666;
  font-weight:normal;
  text-transform:capitalize; 
  font-family: "Bauhaus", Arial, Helvetica, "Nimbus Sans L", sans-serif;
}

h2 {
  line-height: 1.3em;
  margin-top: 0.667em; /* Equivalent to 1em in the page's base font: 1 / 1.5 = 0.667em */
  margin-bottom: 0.667em;
  font-size:22px; 
  color:#666; 
  padding:10px 0px 7px 0px; 
  text-transform:capitalize; 
  width:100%; 
  font-weight:normal;
    font-family: "Bauhaus", Arial, Helvetica, "Nimbus Sans L", sans-serif;
}

h3 {
  font-size: 1.3em;
  line-height: 1.3em;
  margin-top: 0.769em; /* Equivalent to 1em in the page's base font: 1 / 1.3 = 0.769 */
  margin-bottom: 0.769em;
  color:#000; padding:5px 0px;
    font-family: "Bauhaus", Arial, Helvetica, "Nimbus Sans L", sans-serif;
    font-weight: normal;
}

h4,
h5,
h6 {
  font-size: 18px;
  line-height: 1.3em;
  margin-top: 0.909em; /* Equivalent to 1em in the page's base font: 1 / 1.1 = 0.909 */
  margin-bottom: 0.909em;
    font-family: "Bauhaus", Arial, Helvetica, "Nimbus Sans L", sans-serif;
    font-weight: normal;
}

/*
 * Block-level elements
 */
p,
ul,
ol,
dl,
pre,
table,
fieldset {
  margin: 1em 0;
}

blockquote {
  margin: 1em 2em;
}

/*
 * Lists
 *
 * We need to standardize the list item indentation.
 */
ul,
ol {
  margin-left: 0;
  padding-left: 2em; /* LTR */
}

.block ul,
.item-list ul /* Drupal overrides */ {
  margin: 1em 0;
  padding: 0 0 0 2em; /* LTR */
}

ul ul, ul ol,
ol ol, ol ul,
.block ul ul, .block ul ol,
.block ol ol, .block ol ul,
.item-list ul ul, .item-list ul ol,
.item-list ol ol, .item-list ol ul {
  margin: 0;
}

li {
  margin: 0;
  padding: 0;
}

.item-list ul li /* Drupal override */ {
  margin: 0;
  padding: 0;
  list-style: inherit;
}

ul.menu li,
li.expanded,
li.collapsed,
li.leaf /* Drupal override */ {
  margin: 0;
  padding: 0;
}

ul          { list-style-type: disc; }
ul ul       { list-style-type: circle; }
ul ul ul    { list-style-type: square; }
ul ul ul ul { list-style-type: circle; }
ol          { list-style-type: decimal; }
ol ol       { list-style-type: lower-alpha; }
ol ol ol    { list-style-type: decimal; }

dt {
  margin: 0;
  padding: 0;
}

dd {
  margin: 0 0 0 2em;
  padding: 0;
}

ul, ul li { list-style:none; list-style-image:none; list-style-type:none;}


/*
 * Links
 *
 * The order of link states are based on Eric Meyer's article:
 * http://meyerweb.com/eric/thoughts/2007/06/11/who-ordered-the-link-states
 */
a:link {color:#AAA; outline:none;text-decoration:none;
}

a:visited {color:#AAA; outline:none;text-decoration:none;
}

a:hover,
a:focus {
text-decoration:none;
color:#888;
}

a:active {color:#AAA; outline:none;text-decoration:none;
}

/*
 * Tables
 *
 * Drupal provides table styling which is only useful for its admin section
 * forms, so we override this default CSS. (We set it back in forms.css.)
 */
table {
  border-collapse: collapse;
  /* width: 100%; */ /* Prevent cramped-looking tables */
}

th,
thead th,
tbody th {
  text-align: left; /* LTR */
  padding: 0;
  border-bottom: none;
}

tbody {
  border-top: none;
}

/*
 * Abbreviations
 */
abbr {
  border-bottom: 1px dotted #666;
  cursor: help;
  white-space: nowrap;
}

abbr.created /* Date-based "abbreviations" show computer-friendly timestamps which are not human-friendly. */ {
  border: none;
  cursor: auto;
  white-space: normal;
}

/*
 * Images
 */
img {
  border: 0;
}

/*
 * Horizontal rules
 */
hr {
  height: 1px;
  border: 1px solid #666;
}

/*
 * Forms
 */
form {
  margin: 0;
  padding: 0;
}

fieldset {
  margin: 1em 0;
  padding: 0.5em;
}
/* Id: wireframes.css,v 1.10 2009/11/04 21:01:11 johnalbin Exp */

/**
 * @file
 * Wireframes Styling
 *
 * Add wireframes to the basic layout elements.
 */


.with-wireframes #header .section,
.with-wireframes #content .section,
.with-wireframes #navigation .section,
.with-wireframes .region-sidebar-first .section,
.with-wireframes .region-sidebar-second .section,
.with-wireframes #footer .section {
  margin: 1px;
  padding: 2px;
  border: 1px solid #ccc;
}

.with-wireframes .region-page-closure {
  margin-top: 1px;
  padding: 2px;
  border: 1px solid #ccc;
}
/* Id: layout-liquid.css,v 1.17 2009/11/05 12:09:53 johnalbin Exp */

/**
 * @file
 * Layout Styling (DIV Positioning)
 *
 * Define CSS classes to create a table-free, 3-column, 2-column, or single
 * column layout depending on whether blocks are enabled in the left or right
 * columns.
 *
 * This layout is based on the Zen Columns layout method.
 *   http://drupal.org/node/201428
 *
 * Only CSS that affects the layout (positioning) of major elements should be
 * listed here.  Such as:
 *   display, position, float, clear, width, height, min-width, min-height
 *   margin, border, padding, overflow
 */


/*
 * Body
 */
body {
}

#page-wrapper,
.region-page-closure {
  min-width: 960px; /* Don't allow the browser to make the site unreadable. */
}

#page {
}

/*
 * Header
 */
#header {
}

#header .section {
}

#search-box {
font-size:0;
padding:60px 0 0;
text-align:right;
}

.region-header {
  clear: both; /* Clear the logo */
}

/*
 * Main (container for everything else)
 */
#main-wrapper {
  position: relative;
}

#main {
}

/*
 * Content
 */
#content {
 /*float:left;
margin-left:0;
margin-right:-100%;
padding:0;
width:100%; */
}

#content .section,
.no-sidebars #content .section {
  margin: 0;
  padding: 0;
}

.sidebar-first #content .section {
 /* padding-left: 200px;  The width + left margin of .region-sidebar-first. */
  padding-right: 0; /* LTR */
}

.sidebar-second #content .section {
  padding-left: 0; /* LTR */
  padding-right: 200px; /* LTR */ /* The width + right margin of .region-sidebar-second. */
}

.two-sidebars #content .section {
/*  padding-left: 200px;
  padding-right: 200px; */
}

/*
 * Navigation
 */
#navigation {
  float: left; /* LTR */
  width: 100%;
  margin-left: 0; /* LTR */
  /*margin-right: -100%; /* LTR */ /* Negative value of #navigation's width + left margin. */*/
  padding: 0; /* DO NOT CHANGE. Add padding or margin to #navigation .section. */
  height: 2.3em; /* The navigation can have any arbritrary height. We picked one
                    that is the line-height plus 1em: 1.3 + 1 = 2.3
                    Set this to the same value as the margin-top below. */
}

.with-navigation #content,
.with-navigation .region-sidebar-first,
.with-navigation .region-sidebar-second {
  margin-top: 2.3em; /* Set this to the same value as the navigation height above. */
}

#navigation .section {
}

#navigation ul /* Primary and secondary links */ {
  margin: 0 auto;
  padding: 0;
  /*text-align: left; /* LTR */*/
}

#navigation li /* A simple method to get navigation links to appear in one line. */ {
  float: left; /* LTR */
  /*padding: 0 10px 0 0; /* LTR */*/
  line-height:1.42em;
padding-right:0;
}
#navigation a {
color:#3B3B3B;
display:block;
font-size:21px !important;
letter-spacing:-1px;
line-height:1.42em;
padding:10px 0 0;
text-align:center;
text-decoration:none;
text-transform:lowercase;
width:101px;
font-family:"Bauhaus",Arial,Helvetica,"Nimbus Sans L",sans-serif;
}


/*
 * First sidebar
 */
.region-sidebar-first {
  float: left; /* LTR */
  width: 323px;
  margin-left: 0; /* LTR */
  padding: 0; /* DO NOT CHANGE. Add padding or margin to .region-sidebar-first .section. */
}

.region-sidebar-first .section {
  margin: 0 20px 0 0; /* LTR */
  padding: 0;
}

/*
 * Second sidebar
 */
.region-sidebar-second {
  float: right; /* LTR */
  width: 200px;
  margin-right: 0; /* LTR */
  padding: 0; /* DO NOT CHANGE. Add padding or margin to .region-sidebar-second .section. */
}

.region-sidebar-second .section {
  margin: 0 0 0 20px; /* LTR */
  padding: 0;
}

/*
 * Footer
 */
#footer {
}

#footer .section {
}


/*
 * Closure
 */
.region-page-closure /* See also the #page-wrapper declaration above that this div shares. */ {
}

/*
 * Prevent overflowing content
 */
#header,
#content,
#navigation,
.region-sidebar-first,
.region-sidebar-second,
#footer,
.region-page-closure {
  overflow: visible;
  word-wrap: break-word; /* A very nice CSS3 property */
}

#navigation {
  overflow: hidden; /* May need to be removed if using a dynamic drop-down menu */
}

/*
 * If a div.clearfix doesn't have any content after it and its bottom edge
 * touches the bottom of the viewport, Firefox and Safari will mistakenly
 * place several pixels worth of space between the bottom of the div and the
 * bottom of the viewport. Uncomment this CSS property to fix this.
 * Note: with some over-large content, this property might cause scrollbars
 * to appear on the #page-wrapper div.
 */
/*
#page-wrapper {
  overflow-y: hidden;
}
*/
/* Id: page-backgrounds.css,v 1.8 2009/11/04 20:57:49 johnalbin Exp */

/**
 * @file
 * Page Background Styling
 *
 * The default layout method of Zen doesn't give themers equal-height columns.
 * However, equal-height columns are difficult to achieve and totally
 * unnecessary. Instead, use the Faux Columns method described in the following
 * ALA article:
 *   http://www.alistapart.com/articles/fauxcolumns/
 */


body {
}

#page-wrapper {
}

#page {
}

#header {
}

#header .section {
}

#main-wrapper {
background:url(../images/backmain.png) repeat-x top left;
margin-top:-255px;
}

#main {
}

#footer {
}

#footer .section {
}
/* Id: tabs.css,v 1.2 2009/08/12 08:03:53 johnalbin Exp */

/**
 * @file
 * Tabs Styling
 *
 * Adds styles for the primary and secondary tabs.
 *
 * Compare this with default CSS found in the system module's stylesheet (a copy
 * of which is in drupal6-reference.css, line 510.)
 */


div.tabs {
  margin: 0 0 5px 0;
}

ul.primary {
  margin: 0;
  padding: 0 0 0 10px; /* LTR */
  border-width: 0;
  list-style: none;
  white-space: nowrap;
  line-height: normal;
  background: url(../images/tab-bar.png) repeat-x left bottom;
}

ul.primary li {
  float: left; /* LTR */
  margin: 0;
  padding: 0;
}

ul.primary li a {
  display: block;
  height: 24px;
  margin: 0;
  padding: 0 0 0 5px; /* width of tab-left.png */
  border-width: 0;
  font-weight: bold;
  text-decoration: none;
  color: #777;
  background-color: transparent;
  background: url(../images/tab-left.png) no-repeat left -38px;
}

ul.primary li a .tab {
  display: block;
  height: 20px; /* 24px (parent) - 4px (padding) */
  margin: 0;
  padding: 4px 13px 0 6px;
  border-width: 0;
  line-height: 20px;
  background: url(../images/tab-right.png) no-repeat right -38px;
}

ul.primary li a:hover {
  border-width: 0;
  background-color: transparent;
  background: url(../images/tab-left.png) no-repeat left -76px;
}

ul.primary li a:hover .tab {
  background: url(../images/tab-right.png) no-repeat right -76px;
}

ul.primary li.active a,
ul.primary li.active a:hover {
  border-width: 0;
  color: #000;
  background-color: transparent;
  background: url(../images/tab-left.png) no-repeat left 0;
}

ul.primary li.active a .tab,
ul.primary li.active a:hover .tab {
  background: url(../images/tab-right.png) no-repeat right 0;
}

ul.secondary {
  margin: 0;
  padding: 0 0 0 5px; /* LTR */
  border-bottom: 1px solid #c0c0c0;
  list-style: none;
  white-space: nowrap;
  background: url(../images/tab-secondary-bg.png) repeat-x left bottom;
}

ul.secondary li {
  float: left; /* LTR */
  margin: 0 5px 0 0;
  padding: 5px 0;
  border-right: none; /* LTR */
}

ul.secondary a {
  display: block;
  height: 24px;
  margin: 0;
  padding: 0;
  border: 1px solid #c0c0c0;
  text-decoration: none;
  color: #777;
  background: url(../images/tab-secondary.png) repeat-x left -56px;
}

ul.secondary a .tab {
  display: block;
  height: 18px; /* 24px (parent) - 6px (padding) */
  margin: 0;
  padding: 3px 8px;
  line-height: 18px;
}

ul.secondary a:hover {
  background: url(../images/tab-secondary.png) repeat-x left bottom;
}

ul.secondary a.active,
ul.secondary a.active:hover {
  border: 1px solid #c0c0c0;
  color: #000;
  background: url(../images/tab-secondary.png) repeat-x left top;
}

ul.menu li a {
background:url("../images/li-menu-grigio.png") no-repeat scroll 0 5px transparent;
color:#AAA;
display:block;
font-size:18px;
overflow:hidden;
padding-left:10px;
text-decoration:none;
font-family:"Bauhaus",Arial,Helvetica,"Nimbus Sans L",sans-serif;
}
ul.menu li a:visited {
color:#AAA;
}

ul.menu li a:hover {
color:#666;
text-decoration:none;
}
ul.menu li {
line-height:23px;
list-style:none outside none;
margin:0;
overflow:hidden;
padding:0 0 1px;
}

ul.menu {
padding-bottom:0;
padding-left:0;
width:100%;
}

ul.menu li li {
padding-left:10px;
}

/* Id: messages.css,v 1.3 2009/08/12 08:37:42 johnalbin Exp */

/**
 * @file
 * Message Styling
 *
 * Sensible styling for Drupal's error/warning/status messages.
 */


div.messages,
div.status,
div.warning,
div.error /* Important messages (status, warning, and error) for the user */ {
  min-height: 21px;
  margin: 0 1em 5px 1em;
  border: 2px solid #ff7;
  padding: 5px 5px 5px 35px; /* LTR */
  color: #000;
  background-color: #ffc;
  background-image: url(../images/messages-status.png);
  background-repeat: no-repeat;
  background-position: 5px 5px; /* LTR */
}

div.status /* Normal priority messages */ {
}

div.warning /* Medium priority messages */ {
  border-color: #fc0;
  background-image: url(../images/messages-warning.png);
}

div.warning,
tr.warning {
  color: #000; /* Drupal core uses #220 */
  background-color: #ffc;
}

div.error /* High priority messages. See also the .error declaration in pages.css. */ {
  /* border: 1px solid #d77; */ /* Drupal core uses: 1px solid #d77 */
  border-color: #c00;
  background-image: url(../images/messages-error.png);
}

div.error,
tr.error {
  color: #900; /* Drupal core uses #200 */
  background-color: #fee;
}

div.messages ul {
  margin-top: 0;
  margin-bottom: 0;
}
/* Id: pages.css,v 1.18.2.3 2010/06/26 17:18:58 johnalbin Exp */

/**
 * @file
 * Page Styling
 *
 * Style the markup found in page.tpl.php. Also includes some styling of
 * miscellaneous Drupal elements that appear in the $content variable, such as
 * ul.links, .pager, .more-link, etc.
 */


/*
 * Body
 */
body {
  margin: 0;
  padding: 0;
}

#page-wrapper {
min-width:1002px;
}

#page {
}

/*
 * The skip navigation link will be completely hidden until a user tabs to the
 * link. See http://www.webaim.org/techniques/skipnav/
 */
#skip-link a,
#skip-link a:visited {
  position: absolute;
  display: block;
  left: 0;
  top: -500px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  text-align: center;
  background-color: #666;
  color: #fff;
}

#skip-link a:hover,
#skip-link a:active,
#skip-link a:focus {
  position: static;
  width: 100%;
  height: auto;
  padding: 2px 0 3px 0;
}

/*
 * Header
 */
#header {
padding:0;
margin:0 auto;
width:1002px;
}

#header .section {

overflow:hidden;
width:100%;
}

#logo /* Wrapping link for logo */ {
  float: left; /* LTR */
  margin: 0;
  padding: 0;
}

#logo img {
  margin:15px 0 0 15px;
}

#name-and-slogan /* Wrapper for website name and slogan */ {
float:left;
}

h1#site-name,
div#site-name /* The name of the website */ {
  font-size: 2em;
  line-height: 1.3em;
  margin:25px 0 0 15px;
}

#site-name a:link,
#site-name a:visited {
  color: #000;
  text-decoration: none;
}

#site-name a:hover,
#site-name a:focus {
  text-decoration: underline;
}

#site-slogan /* The slogan (or tagline) of a website */ {
}

.region-header /* Wrapper for any blocks placed in the header region */ {
}

/*
 * Main (container for everything else)
 */
#main-wrapper {
}

#main {
margin:0 auto;
width:1005px;
padding-top:200px;
}

/*
 * Content
 */
#content {
float:left;
width:625px;
padding-left:50px;
border-left:1px solid #E9E9E9;
margin-bottom:50px;
}

#content .section {
}

#mission /* The mission statement of the site (displayed on homepage) */ {
}

.region-content-top /* Wrapper for any blocks placed in the "content top" region */ {
}


.breadcrumb { padding:20px 55px 20px 10px; color:#484848; font-size:14px; font-weight:normal; text-align:left;margin-top:-36px;}
.breadcrumb a:link { color:#AAA; text-decoration:none; padding:0px 2px 0px 2px; text-transform:none; vertical-align:middle; font-weight:normal;}
.breadcrumb a:hover { text-decoration:none; color:#666;}
/*.breadcrumb a:visited { color:#AAA;}*/


h1.title, /* The title of the page */
h2.title, /* Block title or the title of a piece of content when it is given in a list of content */
h3.title /* Comment title */ {
  margin: 0;
}

tr.even /* Some tables have rows marked even or odd. */ {
  /* background-color: #eee; */ /* Drupal core uses a #eee background */
}

tr.odd {
  /* background-color: #eee; */ /* Drupal core uses a #eee background */
}

div.messages /* Important messages (status, warning, and error) for the user. See also the declarations in messages.css. */ {
}

div.status /* Normal priority messages */ {
}

div.warning,
tr.warning /* Medium priority messages */ {
  /* border: 1px solid #f0c020; */ /* Drupal core uses: 1px solid #f0c020 */
}

div.error,
tr.error /* High priority messages. See also the .error declaration below. */ {
}

.error /* Errors that are separate from div.messages status messages. */ {
  /* color: #e55; */ /* Drupal core uses a #e55 background */
}

.warning /* Warnings that are separate from div.messages status messages. */ {
  /* color: #e09010; */ /* Drupal core uses a #e09010 background */
}

div.tabs /* See also the tabs.css file. */ {
}

.help /* Help text on a page */ {
  margin: 1em 0;
}

.more-help-link /* Link to more help */ {
  font-size: 0.85em;
  text-align: right;
}

#content-area /* Wrapper for the actual page content */ {
padding-left:15px;
margin-top:20px;
}

ul.links /* List of links */ {
  margin: 1em 0;
  padding: 0;
}

ul.links.inline {
  margin: 0;
  display: inline;
}

ul.links li {
  display: inline;
  list-style-type: none;
  padding: 0 0.5em;
}

.pager /* A list of page numbers when more than 1 page of content is available */ {
  clear: both;
  margin: 1em 0;
  text-align: center;
}

.pager a,
.pager strong.pager-current /* Each page number in the pager list */ {
  padding: 0.5em;
}

.feed-icons /* The links to the RSS or Atom feeds for the current list of content */ {
 margin:1em 0 1em -370px;
}
.feed-icons img {

}

.more-link /* Aggregator, blog, and forum more link */ {
  text-align: right; /* LTR */
}

.region-content-bottom /* Wrapper for any blocks placed in the "content bottom" region */ {
}

/*
 * First sidebar (on left in LTR languages, on right in RTL)
 *
 * Remember to NOT add padding or margin to your .region-sidebar-first
 * (see the layout.css file.)
 */
.region-sidebar-first {
width:325px;
}

.region-sidebar-first .section {
}

/*
 * Second sidebar (on right in LTR languages, on left in RTL)
 *
 * Remember to NOT add padding or margin to your .region-sidebar-second
 * (see the layout.css file.)
 */
.region-sidebar-second {
}

.region-sidebar-second .section {
}

/*
 * Footer
 */
 
#footer {background:none repeat scroll 0 0 #2C2C2C;
overflow:hidden;
width:100%;}
.foot { text-align:center; margin:0 auto; width:960px; padding:20px 0px 20px 0px; overflow:hidden;}
#footer span a { color:#b4b4b4 !important; text-decoration:none;}
#footer a:hover{ text-decoration:underline;}
#footer .foot span { padding-left:0px;}

#footer .read-more a { font-size:12px; float:right;font-family: "Bauhaus",Arial,Helvetica,"Nimbus Sans L",sans-serif;
}
 
 

#footer .section {padding:31px 0;
}

#footer-message /* Wrapper for the footer message from Drupal's "Site information"
                   and for any blocks placed in the footer region */ {
}

.region-footer {background:url("../images/bg-line2.gif") repeat-y scroll 322px 0 transparent;
overflow:hidden;
margin:0 auto;
width:1002px;
}

.region-even h2.title {
border-color:-moz-use-text-color -moz-use-text-color #505050;
border-style:none none solid;
border-width:0 0 2px;
color:#D9D9D9;
font-size:26px;
letter-spacing:-1px;
padding-top:16px;
}

/*
 * Closure
 */
.region-page-closure /* Wrapper for any blocks placed in the closure region */ {
background:url("../images/bg-bot.gif") repeat-x scroll center top transparent;
color:#B4B4B4;
font-size:12px;
font-weight:normal;
overflow:hidden;
text-align:center;
width:100%;
height:57px;
}
.region-page-closure p {
text-align:center !important;
}

/*
 * Drupal boxes
 *
 * Wrapper for Comment form, Comment viewing options, Menu admin, and
 * Search results.
 */
.box /* Wrapper for box */ {
}

.box h2 /* Box title */ {

}

.box .content /* Box's content wrapper */ {
}

/*
 * Markup free clearing (See: http://www.positioniseverything.net/easyclearing.html )
 */
.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

/**
 * Hide elements from all users.
 *
 * Used for elements which should not be immediately displayed to any user. An
 * example would be a collapsible fieldset that will be expanded with a click
 * from a user. The effect of this class can be toggled with the jQuery show()
 * and hide() functions.
 */
.element-hidden {
  display: none;
}

/**
 * Hide elements visually, but keep them available for screen-readers.
 *
 * Used for information required for screen-reader users to understand and use
 * the site where visual display is undesirable. Information provided in this
 * manner should be kept concise, to avoid unnecessary burden on the user. Must
 * not be used for focusable elements (such as links and form elements) as this
 * causes issues for keyboard only or voice recognition users. "!important" is
 * used to prevent unintentional overrides.
 */
.element-invisible {
  position: absolute !important;
  clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
}
/* Id: block-editing.css,v 1.3 2009/11/05 14:01:26 johnalbin Exp */

/**
 * @file
 * Zen's rollover edit links for blocks.
 */


div.block.with-block-editing {
  position: relative;
}

div.block.with-block-editing div.edit {
  display: none;
  position: absolute;
  right: 0; /* LTR */
  top: 0;
  z-index: 40;
  border: 1px solid #eee;
  padding: 0 2px;
  font-size: 0.75em;
  background-color: #fff;
}

div.block.with-block-editing:hover div.edit {
  display: block;
}
/* Id: blocks.css,v 1.4 2009/11/05 11:05:39 johnalbin Exp */

/**
 * @file
 * Block Styling
 */


.block /* Block wrapper */ {
  margin-bottom: 1em;
}

.block.region-odd /* Zebra striping for each block in the region */ {
}

.block.region-even /* Zebra striping for each block in the region */ {
}

.block.odd /* Zebra striping independent of each region */ {
}

.block.even /* Zebra striping independent of each region */ {
}

.region-count-1 /* Incremental count for each block in the region */ {
}

.count-1 /* Incremental count independent of each region */ {
}

.block h2.title /* Block title */ {
border-bottom:2px solid #E9E9E9 !important;
color:#3B3B3B !important;
font-size:20px;
font-weight:normal !important;
margin-top:20px;
padding:3px 0 10px 8px;
text-transform:capitalize;
font-family: "Bauhaus",Arial,Helvetica,"Nimbus Sans L",sans-serif;
}

.block .content /* Block's content wrapper */ {
}

#block-aggregator-category-1 /* Block for the latest news items in the first category */ {
}

#block-aggregator-feed-1 /* Block for the latest news items in the first feed */ {
}

#block-block-1 /* First administrator-defined block */ {
}

#block-blog-0 /* "Recent blog posts" block */ {
}

#block-book-0 /* "Book navigation" block for the current book's table of contents */ {
}

#block-comment-0 /* "Recent comments" block */ {
}

#block-forum-0 /* "Active forum topics" block */ {
}

#block-forum-1 /* "New forum topics" block */ {
}

#block-menu-primary-links /* "Primary links" block */ {
}

#block-menu-secondary-links /* "Secondary links" block */ {
}

#block-node-0 /* "Syndicate" block for primary RSS feed */ {
}

#block-poll-0 /* "Most recent poll" block */ {
}

#block-profile-0 /* "Author information" block for the profile of the page's author */ {
}

#block-search-0 /* "Search form" block */ {
}

#block-statistics-0 /* "Popular content" block */ {
}

#block-user-0 /* "User login form" block */ {
}

#block-user-1 /* "Navigation" block for Drupal navigation menu */ {
}

#block-user-2 /* "Who's new" block for a list of the newest users */ {
}

#block-user-3 /* "Who's online" block for a list of the online users */ {
}
/* Id: navigation.css,v 1.5 2009/11/04 19:42:41 johnalbin Exp */

/**
 * @file
 * Navigation Styling
 */


/*
 * The active item in a Drupal menu
 */
li a.active {
  color: #000;
}

/*
 * Navigation bar
 */
#navigation {
background:url("../images/bg-row.gif") repeat-x scroll center top transparent;
height:53px;
padding:0;
clear:both;
margin-top:5px;
}

.region-navigation {
}

/*
 * Primary and Secondary menu links
 */
#main-menu {
}

#secondary-menu {
}

/*
 * Menu blocks
 */
.block-menu {
}

/*
 * "Menu block" blocks. See http://drupal.org/project/menu_block
 */
.block-menu_block {
}
/* Id: panels-styles.css,v 1.1.2.1 2009/12/12 15:31:54 johnalbin Exp */

/**
 * @file
 * Panels Styling
 */


/* Id: views-styles.css,v 1.1 2009/08/12 04:25:15 johnalbin Exp */

/**
 * @file
 * Views Styling
 */


/* Id: nodes.css,v 1.6 2009/11/02 15:37:29 johnalbin Exp */

/**
 * @file
 * Node Styling
 *
 * Style anything that isn't in the $content variable.
 */


.node /* Node wrapper */ {
}

.node-sticky /* A sticky node (displayed before others in a list) */ {
}

.node-unpublished /* Unpublished nodes */ {
  /* background-color: #fff4f4; */ /* Drupal core uses a #fff4f4 background */
}

.node-unpublished div.unpublished,
.comment-unpublished div.unpublished /* The word "Unpublished" displayed underneath the content. */ {
  height: 0;
  overflow: visible;
  color: #d8d8d8;
  font-size: 75px;
  line-height: 1;
  font-family: Impact, "Arial Narrow", Helvetica, sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
  word-wrap: break-word; /* A very nice CSS3 property */
}

.node-by-viewer /* A node created by the current user */ {
}

.node-teaser /* A node displayed as teaser */ {
padding-top:15px;
}

/* All nodes are given a node-type-FOO class that describes the type of
 * content that it is. If you create a new content type called
 * "my-custom-type", it will receive a "node-type-my-custom-type" class.
 */
.node-type-page /* Page content node */ {
}

.node-type-story /* Story content node */ {
}

.node h2.title /* Node title */ {
border-bottom:1px solid #F1F2F2;
font-family:"Bauhaus",Arial,Helvetica,"Nimbus Sans L",sans-serif;
padding:0 15px 0 4px;
width:580px;
margin-left:-10px;
}
.node h2.title a {
color:#3B3B3B;
font-size:22px;
letter-spacing:-1px;
text-decoration:none;
text-transform:none;
}
.node h2.title a:hover {
text-decoration:none; color:#AAAAAA;
}

.marker /* "New" or "Updated" marker for content that is new or updated for the current user */ {
  color: #c00;
}

.node .picture /* The picture of the node author */ {
}

.node.node-unpublished .picture,
.comment.comment-unpublished .picture {
  position: relative; /* Otherwise floated pictures will appear below the "Unpublished" text. */
}

.node .meta /* Wrapper for submitted and terms data */ {
}

.node .submitted /* The "posted by" information */ {
}

.node .terms /* Node terms (taxonomy) */ {
}

.term-container {
display:none;
}

.node .content /* Node's content wrapper */ {
padding-left:10px;
}

.node ul.links /* Node links. See also the ul.links declaration in the pages.css. */ {
}

.preview .node /* Preview of the content before submitting new or updated content */ {
  /* background-color: #ffffea; */ /* Drupal core uses a #ffffea background */
}
/* Id: comments.css,v 1.5 2009/11/01 20:54:20 johnalbin Exp */

/**
 * @file
 * Comment Styling
 */


#comments /* Wrapper for the list of comments and its title */ {
  margin: 1em 0;
}

#comments .title /* Heading for the list of comments */ {
}

.comment /* Wrapper for a single comment */ {
}

.comment-preview /* Preview of the comment before submitting new or updated comment */ {
}

.comment.new /* A new comment since the user last viewed the page. */ {
}

.comment.first /* The first comment in the list of comments */ {
}

.comment.last /* The last comment in the list of comments */ {
}

.comment.odd /* An odd-numbered comment in the list of comments */ {
}

.comment.even /* An even-numbered comment in the list of comments */ {
}

.comment-unpublished /* Unpublished comments */ {
  /* background-color: #fff4f4; */ /* Drupal core uses a #fff4f4 background */
}

.comment-unpublished div.unpublished /* The word "Unpublished" displayed underneath the content. See also the div.unpublished declaration in the nodes.css. */ {
}

.comment-by-anonymous /* A comment created by an anonymous user */ {
}

.comment-by-node-author /* A comment created by the node's author */ {
}

.comment-by-viewer /* A comment created by the current user */ {
}

.comment h3.title /* Comment title */ {
}

.new /* "New" marker for comments that are new for the current user */ {
  color: #c00;
}

.comment .picture /* The picture of the comment author */ {
}

.comment .submitted /* The "posted by" information */ {
}

.comment .content /* Comment's content wrapper */ {
}

.comment .user-signature /* The user's signature */ {
}

.comment ul.links /* Comment links. See also the ul.links declaration in the pages.css. */ {
}

.indented /* Nested comments are indented */ {
  /* margin-left: 25px; */ /* Drupal core uses a 25px left margin */
}

.preview .comment /* Preview of the comment before submitting new or updated comment */ {
  /* background-color: #ffffea; */ /* Drupal core uses a #ffffea background */
}
/* Id: forms.css,v 1.3 2009/08/12 08:37:42 johnalbin Exp */

/**
 * @file
 * Form Styling
 */


.form-item,
.form-checkboxes,
.form-radios /* Wrapper for a form element (or group of form elements) and its label */ {
  margin: 1em 0;
}

.form-item input.error,
.form-item textarea.error,
.form-item select.error /* Highlight the form elements that caused a form submission error */ {
  border: 2px solid #c00;
}

.form-item label /* The label for a form element */ {
  display: block;
  font-weight: bold;
}

.form-item label.option /* The label for a radio button or checkbox */ {
  display: inline;
  font-weight: normal;
}

.form-required /* The part of the label that indicates a required field */ {
  color: #c00;
}

.form-item .description /* The descriptive help text (separate from the label) */ {
  font-size: 0.85em;
}

.form-checkboxes .form-item,
.form-radios .form-item /* Pack groups of checkboxes and radio buttons closer together */ {
  margin: 0.4em 0;
}

.form-submit /* The submit button */ {
background:url("../images/search.gif") no-repeat scroll left top transparent;
border:medium none;
height:28px;
vertical-align:middle;
width:77px;
}

#edit-search-theme-form-1-wrapper .form-text {
background:none repeat scroll 0 0 #FFFFFF;
border:1px solid #D9D8D8;
color:#131F29;
font-size:12px;
line-height:normal;
margin-right:20px;
padding:5px 0 6px 5px;
width:183px;
vertical-align:middle;
}

.container-inline div,
.container-inline label /* Inline labels and form divs */ {
  display: inline;
}

.tips /* Tips for Drupal's input formats */ {
}


/*
 * Search (search-theme-form.tpl.php)
 */
#search-box /* Wrapper for the search form */ {
}

#edit-search-theme-form-1-wrapper label /* Label that says "Search this site:" */ {
  display: none;
}


/*
 * Search (search-block-form.tpl.php)
 */
#search-block-form /* Wrapper for the search form */ {
}

#edit-search-block-form-1-wrapper label /* Label that says "Search this site:" */ {
  display: none;
}


/*
 * Drupal's default login form block
 */
#user-login-form {
  text-align: left; /* LTR */
}


/*
 * OpenID
 *
 * The default styling for the OpenID login link seems to assume Garland's
 * styling of list items.
 */

#user-login-form ul /* OpenID creates a new ul above the login form's links. */ {
  margin-bottom: 0; /* Position OpenID's ul next to the rest of the links. */
}

#user-login-form li.openid-link /* The "Log in using OpenID" link. */ {
  margin-top: 1em;
  margin-left: -20px; /* LTR */ /* Un-do some of the padding on the ul list. */
}

#user-login-form li.user-link /* The "Cancel OpenID login" link. */ {
  margin-top: 1em;
}

#user-login ul {
  margin: 1em 0;
}

#user-login li.openid-link,
#user-login li.user-link /* The OpenID links on the /user form. */ {
  margin-left: -2em; /* LTR */ /* Un-do all of the padding on the ul list. */
}


/*
 * Drupal admin tables
 *
 * We overrode these styles in html-elements.css, but restore them for the admin
 * section of the site.
 */

form tbody {
  border-top: 1px solid #ccc;
}

form th,
form thead th {
  text-align: left; /* LTR */
  padding-right: 1em; /* LTR */
  border-bottom: 3px solid #ccc;
}

form tbody th {
  border-bottom: 1px solid #ccc;
}
/* Id: fields.css,v 1.3 2009/08/12 08:03:52 johnalbin Exp */

/**
 * @file
 * Field Styling
 */


/*
 * Field types
 */

.field /* Wrapper for any CCK field. */ {
}

.field-type-datetime /* Always use "datetime" when creating new CCK date fields. "date" and "datestamp" are legacy types. */ {
}

.field-type-filefield /* Field from filefield module */ {
}

.field-type-nodereference {
}

.field-type-number-decimal {
}

.field-type-number-float {
}

.field-type-number-integer {
}

.field-type-text {
}

.field-type-userreference {
}


/*
 * Named fields
 */

.field-field-FIELDNAME /* Underscores in field name are replaced with dashes. */ {
}

.logo-search {
clear:both;
}

 h2.title {
 font-family: "Bauhaus",Arial,Helvetica,"Nimbus Sans L",sans-serif;
}

.imagefield-field_immagine {
float:left;
margin-right:28px;
}

.imagecache-thumbs{
float:left;
margin-right:28px;
margin-bottom:60px;
}

.node-type-blockhome h2.title {
border:none;
padding:0;
line-height:normal;
margin-top:5px;
}

.node-type-blockhome h2.title a {
font-size:14px;
font-weight:bold;
}

.node-type-blockhome .field-field-abstract  {font-style:normal;float:left;width:300px;}

/*CSS Testimonials */

#block-views-Testimonials-block_1 {
background:url("../images/bg-block.gif") no-repeat scroll 0 0 transparent;
float:left;
margin:0 41px 0 7px;
width:305px;
}
#block-views-Testimonials-block_1 h2{
border:0 none !important;
color:#D9D9D9 !important;
font-size:26px;
letter-spacing:-1px;
padding-left:88px;
padding-top:16px;}

#block-views-Testimonials-block_1 .content{
color:#B4B4B4;
font-size:14px;
font-style:italic;
line-height:24px;
padding:26px 0 0;
}

.views-field-field-autore-value {
color:#eee;
float:right;
line-height:16px;
padding-right:20px;
font-weight:bold;
}
.field-field-img-testim img {
float:left;
}

.field-field-immagine {
float:left;
min-width:280px;
}
/*---------------------------------------*/

.field-field-abstract {
/*font-style:italic;*/
/*margin-left:5px;*/
}

.field-field-sito-internet{

}

.content p {
text-align:justify;
font-size:14px;
line-height: 150%;
}

/*-----UltimeNews Footer------------*/
#block-views-Ultime_News-block_1 {
width:300px;
float:left;
/*margin-left:20px;*/
}

#block-views-Ultime_News-block_1 h2{
border-color:-moz-use-text-color -moz-use-text-color #505050 !important;
border-style:none none solid !important;
border-width:0 0 2px !important;
color:#D9D9D9 !important;
font-size:20px;
letter-spacing:-1px;
padding-top:16px;
}
.view-Ultime-News .view-content {
color:#B4B4B4;
font-size:14px;
line-height:24px;
padding:26px 0 0;
}

.view-Ultime-News .item-list ul {
padding: 0 0 0 10px;
}

.view-Ultime-News .item-list ul li {
background:url("../images/li-menu-grigio.png") no-repeat scroll 0 10px transparent;
padding-left:10px;
}

.view-Ultime-News .item-list ul li a {
color:#B4B4B4;
font-size:13px;
text-decoration:none;
}

.view-Ultime-News .item-list ul li a {
text-decoration:underline;
}

/*-------------------*/


.view-viewservizi span a {
font-weight:bold;
}

/*-----UltimeClienti Footer------------*/
#block-views-Ultime_Clienti-block_1 {
width:300px;
margin-left:28px;
float:left;
}

#block-views-Ultime_Clienti-block_1 h2{
border-color:-moz-use-text-color -moz-use-text-color #505050 !important;
border-style:none none solid !important;
border-width:0 0 2px !important;
color:#D9D9D9 !important;
font-size:20px;
letter-spacing:-1px;
padding-top:16px;
}
.view-Ultime-Clienti .view-content {
color:#B4B4B4;
font-size:14px;
line-height:24px;
padding:26px 0 0;
}


.view-Ultime-Clienti .item-list ul li {
background:url("../images/li-menu-grigio.png") no-repeat scroll 0 8px transparent;
padding-left:10px;
}

.view-Ultime-Clienti .item-list ul li a {
color:#B4B4B4;
font-size:13px;
text-decoration:none;
}

.view-Ultime-Clienti .item-list ul li a {
text-decoration:underline;
}

/*-------------------*/

#mission h2 {
border-bottom:2px solid #F1F2F2;
padding:0 15px 10px 9px;
font-family:Bauhaus,Arial,Helvetica,"Nimbus Sans L",sans-serif;
}
#mission p {
font-size:14px;
padding-left:15px;
text-align:justify;
}
/*----------------------*/
#content h1.title  {
border-bottom:2px solid #F1F2F2;
padding:0 15px 10px 9px;
font-size:22px;
font-family: Bauhaus,Arial,Helvetica,"Nimbus Sans L",sans-serif;
}
/*-----------------ElencoHome------------*/
.elencohome {
width:250px;
float:left;
text-align:justify;
margin-left:25px;
height:260px;
}
.view-frontpage2 img {
margin-top:20px;
margin-left:170px
}
.elencohome h3 {
padding: 5px;
font-size:18px;
font-family:Bauhaus,Arial,Helvetica,"Nimbus Sans L",sans-serif;
}
.elencohome p {
font-size:12px;
}
.view-frontpage2 .views-row div {
margin-bottom: 5px;
}
.read-more {

float:right;

}

.elencohome p span.read-more {
color:#08233e;
background:url(../images/bottone-wiki.png) no-repeat left top; 
cursor:pointer;
float:right;
position:absolute;
bottom:-18px;
width:104px;
height:33px;
padding-top:8px;
}

.elencohome p span.read-more a {
color:#ffffff;
margin-left:15px;
font-family:bauhaus;
font-size:18px;
font-weight:bold;
}
.elencohome p span.read-more a:hover {
color:#eeeeee;
}

tr.row-1 td.col-1 .elencohome p span.read-more {
background:url(../images/read-more-verde.png) no-repeat left top;
width: 104px;
}
tr.row-1 td.col-2 .elencohome p span.read-more {
background:url(../images/read-more-lilla.png) no-repeat left top;
width: 104px;
}
tr.row-1 td.col-3 .elencohome p span.read-more {
background:url(../images/bottone-clienti.png) no-repeat left top;
width: 104px;
}
tr.row-2 td.col-1 .elencohome p span.read-more {
background:url(../images/read-more-arancio.png) no-repeat left top;
width: 104px;
}
tr.row-2 td.col-2 .elencohome p span.read-more {
background:url(../images/read-more-rosso.png) no-repeat left top;
width: 104px;
}
/*----------FrontPage-------------*/
.view-frontpage2 table {
width:100%;
}
.view-frontpage2 tr {
vertical-align:top;
margin-botom:100px;
text-align:center;
}

.view-frontpage2 td {
display:inline-block;
height:168px;
margin-bottom:50px;
position:relative;
/*margin-right:30px;*/
background:url(../images/sfondo-box.png) no-repeat left top;
width:320px;
}

.view-frontpage2 td .views-field-field-immagine-fid{
position:absolute;
bottom:-45px;
}


/*------------Teaser Agenzia----------------------*/

div.node-type-agenzia.node-teaser {
padding:3px;
margin-top:60px;
}
.node-type-agenzia div.meta {

}
.node-type-agenzia h2.title /* Node title */ {
border-bottom:1px solid #F1F2F2;
padding:0 15px 16px 9px;
width:580px;
}
/*-------------------Glossario-----------------------*/

.view-glossary2 tr {
background-color:transparent !important;
border:medium none;
text-align:justify;
width:100%;
}

.view-glossary2 td {
background-color:transparent !important;
padding:5px;
}

.node-type-glossario-termini ul, ul li {
list-style-image:url("/themes/zen/zen-internals/images/li-menu-grigio.png");
list-style-type: square;
}
/*---------------slide-testa----------*/
/*
.views-slideshow-imageflow-images {
height:300px !important;
}

img.imagefield-field {
top:0 !important;
}*/

div.region-sidebar-first h2.title {
border-bottom: 2px solid #d9d9d9;
width:100%;
}
/*----Sezione Web Analytics ---*/
.section-web-analytics a:link {color:#88cc00; outline:none;text-decoration:none;
}

.section-web-analytics a:visited {color:#88cc00; outline:none;text-decoration:none;
}

.section-web-analytics a:hover {
text-decoration:underline;
color:#00cc00;
}

.section-web-analytics a:active {color:#88cc00; outline:none;text-decoration:none;
}

.section-web-analytics .node h2.title {
padding:0 15px 0 207px;
width:580px;
border-bottom: none;
font-family: Bauhaus,Arial,Helvetica,"Nimbus Sans L",sans-serif;
}

.section-web-analytics .node h2.title a:link {
color:#88cc00;
font-size:22px;
letter-spacing:-1px;
text-decoration:none;
text-transform:none;
}

.section-web-analytics .node h2.title a:visited {
color:#88cc00;}

.section-web-analytics .node h2.title a:active {
color:#88cc00;}

.section-web-analytics .node h2.title a:hover {
color:#00cc00;
text-decoration:none;
}

.section-web-analytics .taxonomy_image_wrapper img {
/*float:left;
height:30%;
padding:15px;
position:relative;
width:30%;*/
display: none
}

.section-web-analytics .node .field-field-abstract p {
margin-top:5px;
}

.section-web-analytics ul.menu li a:link {
color:#88cc00;
text-decoration:none;
}

.section-web-analytics ul.menu li a:visited {
color:#88cc00;
text-decoration:none;
}

.section-web-analytics ul.menu li a:hover {
color:#00cc00;
text-decoration:none;
}



.section-web-analytics .breadcrumb a:link {
color:#88cc00;
letter-spacing:-1px;
text-decoration:none;
text-transform:none;
}

.section-web-analytics .breadcrumb a:visited {
color:#88cc00;}

.section-web-analytics .breadcrumb a:active {
color:#88cc00;}

.section-web-analytics .breadcrumb a:hover {
color:#00cc00;
text-decoration:none;
}

/*-----------------Sezione Web Marketing ---------------------*/

.section-web-marketing a:link {color:#CC99FF; outline:none;text-decoration:none;
}

.section-web-marketing a:visited {color:#CC99FF; outline:none;text-decoration:none;
}

.section-web-marketing a:hover {
text-decoration:none;
color:#6600cc;
}

.section-web-marketing a:active {color:#CC99FF; outline:none;text-decoration:none;
}

.section-web-marketing .node h2.title {
padding:0 15px 0 207px;
width:580px;
border-bottom: none;
font-family: Bauhaus,Arial,Helvetica,"Nimbus Sans L",sans-serif;
}

.section-web-marketing .view-viewsubcat .views-field-name {
border-bottom:medium none;
font-family:Bauhaus,Arial,Helvetica,"Nimbus Sans L",sans-serif;
padding:0 15px 0 207px;
width:580px;
font-size:22px;
}

.section-web-marketing .node h2.title a:link {
color:#CC99FF;
font-size:22px;
letter-spacing:-1px;
text-decoration:none;
text-transform:none;
}

.section-web-marketing .node h2.title a:visited {
color:#CC99FF;}

.section-web-marketing .node h2.title a:active {
color:#CC99FF;}

.section-web-marketing .node h2.title a:hover {
color:#6600cc;
text-decoration:none;
}

.section-web-marketing .taxonomy_image_wrapper img {
/*float:left;
height:30%;
padding:15px;
position:relative;
width:30%;*/
display: none
}

.section-web-marketing .node .field-fie
.section-web-marketing .view-viewsubcat .views-field-name {
border-bottom:medium none;
font-family:Bauhaus,Arial,Helvetica,"Nimbus Sans L",sans-serif;
padding:0 15px 0 207px;
width:580px;
font-size:22px;
}
ld-abstract p {
margin-top:5px;
}

.section-web-marketing ul.menu li a:link {
color:#CC99FF;
text-decoration:none;
}

.section-web-marketing ul.menu li a:visited {
color:#CC99FF;
text-decoration:none;
}

.section-web-marketing ul.menu li a:hover {
color:#6600FF;
text-decoration:none;
}



.section-web-marketing .breadcrumb a:link {
color:#CC99FF;
letter-spacing:-1px;
text-decoration:none;
text-transform:none;
}

.section-web-marketing .breadcrumb a:visited {
color:#CC99FF;}

.section-web-marketing .breadcrumb a:active {
color:#CC99FF;}

.section-web-marketing .breadcrumb a:hover {
color:#6600cc;
text-decoration:none;
}


/*-----------------------------------*/
div.meta ul.links {display:none;}


@font-face {
	font-family: 'Bauhaus';
	src: url('../../font/bauhaus_-webfont.eot');
	src: url('../../font/bauhaus_-webfont.woff') format('woff'), url('../../font/bauhaus_-webfont.ttf') format('truetype'), url('../../font/bauhaus_-webfont.svg#webfontYNq1FfoS') format('svg');
	font-weight: normal;
	font-style: normal;
}


/*------------View Servizi -------*/

.view-Viewservizi .views-row {
font-family: Bauhaus,Arial,Helvetica,"Nimbus Sans L",sans-serif;
font-size: 18px;
margin-bottom:50px;
}

.view-Viewservizi .views-row p {
font-family: Verdana, Arial,Helvetica,"Nimbus Sans L",sans-serif;
font-size: 12px;
text-align:justify;
}

.view-Viewservizi .views-row-1 a:link {
color: #88cc00;
}
.view-Viewservizi .views-row-1 a:visited {
color: #88cc00;
}

.view-Viewservizi .views-row-1 a:hover {
color: #00cc00;
}

.view-Viewservizi .views-row-2 a:link {
color: #CC99FF;
}

.view-Viewservizi .views-row-2 a:visited {
color: #CC99FF;
}

.view-Viewservizi .views-row-2 a:hover {
color: #6600cc;
}

.view-Viewservizi .views-row-4 a:link {
color: #ff9900;
}

.view-Viewservizi .views-row-4 a:visited {
color: #ff9900;
}

.view-Viewservizi .views-row-4 a:hover {
color: #ff6600;
}

.view-Viewservizi .views-row-3 a:link {
color: #0099ff;
}

.view-Viewservizi .views-row-3 a:visited {
color: #0099ff;
}

.view-Viewservizi .views-row-3 a:hover {
color: #0066ff;
}

.view-Viewservizi .views-row-5 a:link {
color: #cc3366;
}

.view-Viewservizi .views-row-5 a:visited {
color: #cc3366;
}

.view-Viewservizi .views-row-5 a:hover {
color: #aa0066;
}

/*-------------imagecache ----------------*/

.imagecache-thumbs img {
float:left;
margin-right:28px;
}

/*----------Glossify----------------------*/
a.glossify_term {
cursor:help;
color: #6666ff !important;
}

a:hover.glossify_term {
color: #3333cc !important;
text-decoration:none;
}
/*------------Press--------------------*/
.field-field-occhiello {
font-style:italic;
margin-left:15px;
padding-top:15px;
}

.node-type-comunicati-stampa h2 {
margin-left:-13px;
}
div.node-type-comunicati-stampa {
margin-bottom: 30px;
}
/*-----------blog------*/
.node-type-blog span.read-more {

}

/*----------------SubTerm-----------------------------------*/
.subterm-container h3 {
margin-left:207px;
padding-left:4px;
}


/*-----------------Sezione web advertising ---------------------*/

.section-web-advertising a:link {color:#ff9900; outline:none;text-decoration:none;
}

.section-web-advertising a:visited {color:#ff9900; outline:none;text-decoration:none;
}

.section-web-advertising a:hover {
text-decoration:none;
color:#ff6600;
}

.section-web-advertising a:active {color:#ff9900; outline:none;text-decoration:none;
}

.section-web-advertising .node h2.title {
padding:0 15px 0 207px;
width:580px;
border-bottom: none;
font-family: Bauhaus,Arial,Helvetica,"Nimbus Sans L",sans-serif;
}

.section-web-advertising .node h2.title a:link {
color:#ff9900;
font-size:22px;
letter-spacing:-1px;
text-decoration:none;
text-transform:none;
}

.section-web-advertising .node h2.title a:visited {
color:#ff9900;}

.section-web-advertising .node h2.title a:active {
color:#ff9900;}

.section-web-advertising .node h2.title a:hover {
color:#ff6600;
text-decoration:none;
}

.section-web-advertising .taxonomy_image_wrapper img {
display: none
}

.section-web-advertising .node .field-field-abstract p {
margin-top:5px;
}

.section-web-advertising ul.menu li a:link {
color:#ff9900;
text-decoration:none;
}

.section-web-advertising ul.menu li a:visited {
color:#ff9900;
text-decoration:none;
}

.section-web-advertising ul.menu li a:hover {
color:#ff6600;
text-decoration:none;
}

.section-web-advertising .breadcrumb a:link {
color:#ff9900;
letter-spacing:-1px;
text-decoration:none;
text-transform:none;
}

.section-web-advertising .breadcrumb a:visited {
color:#ff9900;}

.section-web-advertising .breadcrumb a:active {
color:#ff9900;}

.section-web-advertising .breadcrumb a:hover {
color:#ff6600;
text-decoration:none;
}

/*-----------------Sezione Search Marketing ---------------------*/

.section-search-marketing a:link {color:#0099ff; outline:none;text-decoration:none;
}

.section-search-marketing a:visited {color:#0099ff; outline:none;text-decoration:none;
}

.section-search-marketing a:hover {
text-decoration:none;
color:#0066ff;
}

.section-search-marketing a:active {color:#0099ff; outline:none;text-decoration:none;
}

.section-search-marketing .node h2.title {
padding:0 15px 0 207px;
width:580px;
border-bottom: none;
font-family: Bauhaus,Arial,Helvetica,"Nimbus Sans L",sans-serif;
}

.section-search-marketing .node h2.title a:link {
color:#0099ff;
font-size:22px;
letter-spacing:-1px;
text-decoration:none;
text-transform:none;
}



.section-search-marketing .view-viewsubcat .views-field-name {
border-bottom:medium none;
font-family:Bauhaus,Arial,Helvetica,"Nimbus Sans L",sans-serif;
padding:0 15px 0 207px;
width:580px;
font-size:22px;
}

.section-search-marketing .node h2.title a:visited {
color:#0099ff;}

.section-search-marketing .node h2.title a:active {
color:#0099ff;}

.section-search-marketing .node h2.title a:hover {
color:#0066ff;
text-decoration:none;
}

.section-search-marketing .taxonomy_image_wrapper img {
display: none
}

.section-search-marketing .node .field-field-abstract p {
margin-top:5px;
}

.section-search-marketing ul.menu li a:link {
color:#0099ff;
text-decoration:none;
}

.section-search-marketing ul.menu li a:visited {
color:#0099ff;
text-decoration:none;
}

.section-search-marketing ul.menu li a:hover {
color:#0066ff;
text-decoration:none;
}

.section-search-marketing .breadcrumb a:link {
color:#0099ff;
letter-spacing:-1px;
text-decoration:none;
text-transform:none;
}

.section-search-marketing .breadcrumb a:visited {
color:#0099ff;}

.section-search-marketing .breadcrumb a:active {
color:#0099ff;}

.section-search-marketing .breadcrumb a:hover {
color:#0066ff;
text-decoration:none;
}

/*-----------------Sezione Customer Care ---------------------*/

.section-customer-care a:link {color:#cc3366; outline:none;text-decoration:none;
}

.section-customer-care a:visited {color:#cc3366; outline:none;text-decoration:none;
}

.section-customer-care a:hover {
text-decoration:none;
color:#aa0066;
}

.section-customer-care a:active {color:#cc3366; outline:none;text-decoration:none;
}

.section-customer-care .node h2.title {
padding:0 15px 0 207px;
width:580px;
border-bottom: none;
font-family: Bauhaus,Arial,Helvetica,"Nimbus Sans L",sans-serif;
}

.section-customer-care .node h2.title a:link {
color:#cc3366;
font-size:22px;
letter-spacing:-1px;
text-decoration:none;
text-transform:none;
}

.section-customer-care .node h2.title a:visited {
color:#cc3366;}

.section-customer-care .node h2.title a:active {
color:#cc3366;}

.section-customer-care .node h2.title a:hover {
color:#aa0066;
text-decoration:none;
}

.section-customer-care .taxonomy_image_wrapper img {
display: none
}

.section-customer-care .node .field-field-abstract p {
margin-top:5px;
}

.section-customer-care ul.menu li a:link {
color:#cc3366;
text-decoration:none;
}

.section-customer-care ul.menu li a:visited {
color:#cc3366;
text-decoration:none;
}

.section-customer-care ul.menu li a:hover {
color:#aa0066;
text-decoration:none;
}

.section-customer-care .breadcrumb a:link {
color:#cc3366;
letter-spacing:-1px;
text-decoration:none;
text-transform:none;
}

.section-customer-care .breadcrumb a:visited {
color:#cc3366;}

.section-customer-care .breadcrumb a:active {
color:#cc3366;}

.section-customer-care .breadcrumb a:hover {
color:#aa0066;
text-decoration:none;
}
/*-----------------nodi figli-----------*/
div.field-field-figli {
margin-left:-10px;
margin-top:30px;
padding-left:4px;
}

div.field-field-figli div.field-label {
color:#AAA;
font-size:18px;
font-family: Bauhaus,Arial,Helvetica,"Nimbus Sans L",sans-serif;
border-bottom: 1px solid #AAA;
}

div.field-field-figli div.field-items {
margin-top:15px;
}

div.field-field-figli a:link {
/*font-family: Bauhaus,Arial,Helvetica,"Nimbus Sans L",sans-serif;*/
padding-left:10px;
}

div.field-field-figli a:visited {
/*font-family: Bauhaus,Arial,Helvetica,"Nimbus Sans L",sans-serif;*/
padding-left:10px;
}

div.field-field-figli a:hover {
/*font-family: Bauhaus,Arial,Helvetica,"Nimbus Sans L",sans-serif;*/
padding-left:10px;
text:decoration:none;
}

/*--------abstract servizi--------------*/

.node-type-servizi div.field-type-filefield img {
float:left;
margin-left:-15px;
margin-top:-30px;
}

.view-viewsubcat img {
float:left;
margin-left:10px;
margin-top:-30px;
}

.view-taxonomy-term2 div.node-type-servizi {
margin-bottom:30px;
}

.view-viewsubcat .view-content .views-row {
margin-bottom:50px;
padding-top:15px;
}


.view-viewsubcat .views-field-description{
/*font-style:italic;*/
}
/*-----------------webform-----------*/


.imageflow {

/*position:static !important;
margin-top:70px;*/
}

/*--------------Social---------*/
p.social {
width:250px;
}
div.social {
width:50px;
height:50px;
display:inline;
padding:10px;
clear:both;
}

#block-block-2 div.content {
margin-top:10px;
}

/*--------------LAnding page---------*/

#main-wrapper-lp {
background:url("../images/backmain.png") repeat-x scroll left top transparent;
}

#page-lp {
margin:0 auto;
width:965px;
padding-bottom:25px;
padding-top:25px;
}

#main-lp {
margin:0 auto;
padding-top:30px;
width:965px;
}

#content-lp {
/*border-left:1px solid #E9E9E9;*/
float:left;
margin-bottom:50px;
/*padding-left:50px;*/
width:965px;
}



/*--------------Testimonianze---------*/


.section-testimonianze .field-field-corpotesto {

}

.section-testimonianze .field-field-abstract-testim {
font-style:italic;
}

.section-testimonianze .field-field-img-testim {
float:left;
margin-top:30px;
min-width:180px;
}
.section-testimonianze .field-field-autore {
margin-top:60px;
}
.section-testimonianze .field-field-sito-internet {

}
.front .region-content-bottom {
}
.front .region-content-bottom .block-block{
float:left;
margin-left:20px;
margin-right:10px;
width:300px;
}
.front .region-content-bottom .block-tagadelic{
float:left;
margin-left:20px;
width:300px;
min-height:250px;
}

.front .region-content-bottom .block-views{
float:left;
margin-left:25px;
width:305px;
min-height:250px;
}
/*------------------- php list ----------------------------------*/
.main-phplist {
width: 700px;
clear:both;
margin:0 auto;
}

.content-phplist {
position:relative;
float:left;
width:100%;
text-align:center;
}
#header-phplist {
width:100%;
clear:both;

}
.logo-search-phplist {
clear: both;
   width: 373px;
   margin:0 auto;
   text-align:center;
}

div.content-phplist  form{
    border: 1px solid #CCCCCC;
    height: 423px;
    position: absolute;
    width: 365px;
    background-image: url("../images/form-header.png");
    background-repeat:no-repeat;
    background-color:#E8E8E8;
    background-position:-4px -5px;
    margin:0 auto;
    left:335px;
    top:15px;
    }

div.content-phplist table {
    margin-left: -4px;
    margin-top: 140px;
    width: 373px;
    border-collapse:separate !important;
    padding:5px;

}

div.content-phplist tbody {
margin-top:140px;
width:373px;
border:none !important;
cell
}

div.content-phplist tbody tr {
width:363px;

}

.attributeinput{

}
div.content-phplist div.required {
font-weight:bold;
}



input[name^="subscribe"] {
    background: url("../images/btn-lead-gen.png") no-repeat left top;
    height: 58px;
    margin-left: 80px;
    width: 227px;
    border: none;
     font-family: arial;
    font-size: 22px;
    font-weight: normal;
    line-height: 26px;
    text-align: center;
    color:#ffffff;
}
.content-phplist .contenuto {
    float: left;
    position: relative;
    text-align: justify;
    width: 315px;
}
.content-phplist div.adminmessage  {
background-color: transparent !important;
border: none !important;
 margin-top: 150px;
 width:345px;
 padding:0;
 margin-bottom:0;
}
.content-phplist font.required {
position:absolute;
margin-left:450px;
top:120px;
width:200px;
z-index:100;
font-weight:bold;
}
.content-phplist .poweredphplist {
color:#ffffff;
}
.content-phplist a.poweredphplist:link, a.poweredphplist:active, a.poweredphplist:visited {
color:#ffffff !important;
}
.content-phplist a.poweredphplist:hover {
color:#ffffff;
}

.page-lp2-acquisire-nuovi-clienti .field-field-paragrafo1 {
float:left;
width:600px;
}

.page-lp2-acquisire-nuovi-clienti #form1 {
float:right;
position:relative;
top:-600px;
}
.page-lp2-acquisire-nuovi-clienti .field-field-testo2 {
float:left;
width:600px;
}
.page-lp2-acquisire-nuovi-clienti #form2 {
float:right;
}
.page-lp2-acquisire-nuovi-clienti .field-field-testo4 {
float:left;
width:600px;
}

.page-lp2-acquisire-nuovi-clienti #headline{
margin-left:30px;
width:500px;
}

.page-lp2-acquisire-nuovi-clienti  #main-lp h1 {
margin-bottom:20px;
margin-left:117px;
text-align:left;
}

.page-lp2-acquisire-nuovi-clienti #form3 {
float:right;
position:relative;
top:-580px;
}

