/* RESET */
html, body, div, ul, ol, li, dl, dt, dd, h1, h2, h3, h4, h5, h6, pre, form, p, blockquote, fieldset, img, a {
    margin: 0;
    padding: 0;
    outline: none;
    border: 0;
}

h1, h2, h3, h4, h5, h6, pre, code, address, caption, cite, code, em, strong, th {
    font-size: 1em;
    font-weight: normal;
    font-style: normal;
}

em {
    font-style: italic;
}

ul, ol {
    padding-left: 0;
    margin-left: 1em;
}

fieldset, img {
    border: none;
}

caption, th {
    text-align: left;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* LAYOUT */
.clear {
    clear: both;
}

.clearer {
    clear: both;
    display: block;
    margin: 0;
    padding: 0;
    height: 0;
    line-height: 1px;
    font-size: 1px;
}

/* TYPE */
body {
    font: 12px / 18px "Lucida Grande", Arial, Verdana, sans-serif;
    background-color: #f7f7f7;
    color: #333;
}

textarea, input {
    font: 12px / 18px "Lucida Grande", Arial, Verdana, sans-serif;
    color: #333;
}

a {
    color: #eb7b33;
}

a:link, a:visited, a:active {
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

strong {
    font-weight: bold;
}

label {
    font-size: 11px;
    display: block;
    margin-top: 1em;
}

h3 {
    font-size: 27px;
    font-weight: bold;
    font-style: italic;
    padding: .5em 0 .5em 0;
}

h4 {
    font-size: 16px;
    font-weight: bold;
    font-style: italic;
    padding: .7em 0 .7em 0;
}

h5 {
    font-size: 12px;
    font-weight: bold;
}

div.formerror {
    color: red;
    margin: 10px 0;
}

/* PRINT */
@media print {body {
        background-color: #fff !important;
}

body, #main, #content {
        color: #000 !important;
}

a, a:link, a:visited {
        color: #000 !important;
        text-decoration: none !important;
}
}

/**** SKELETON ****/
#main {
    border: 0px solid red;
    margin: 0 auto;
    width: 993px;
}

#header {
    border: 0px solid green;
    height: 71px;
    clear: both;
    position: relative;
}

#menu {
    border: 0px solid yellow;
    clear: both;
    z-index: 2;
}

#content {
    border: 0px solid blue;
    clear: both;
    float: left;
    z-index: 1;
    width: 100%;
}

#footer {
    border: 0px solid purple;
    font-size: 10px;
    padding: 10px 0;
    clear: both;
    float: left;
    width: 100%;
}

#footer-left {
    float: left;
}

#footer-right {
    float: right;
    font-size: 9px;
    color: #aaaaaa;
}

#footer-right a {
    color: #aaaaaa;
}

#header .togglelanguage {
    position: absolute;
    bottom: 5px;
    right: 0;
}

#breadcrumb {
    margin: 10px 0;
}

/** THUMBS **/
.thumb-img {
    border: 1px solid #ccc;
    position: relative;
    width: 120px;
    height: 80px;
    margin: 5px;
    padding: 1px;
    background: #FFF;
    float: left;
}

.thumb-inner {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
}

.thumb-img img {
    border: 0;
}

/*** MENU ***/
.sf-menu, .sf-menu * {
    margin: 0;
    padding: 0;
    list-style: none;
}

.sf-menu {
    line-height: 1.0;
}

.sf-menu ul {
    position: absolute;
    top: -999em;
    width: 10em; /* left offset of submenus need to match (see below) */
}

.sf-menu ul li {
    width: 100%;
}

.sf-menu li:hover {
    visibility: inherit; /* fixes IE7 'sticky bug' */
}

.sf-menu li {
    float: left;
    position: relative;
    top: 0px;
}

.sf-menu a {
    display: block;
    position: relative;
}

.sf-menu li a {
    position: relative;
    top: -4px;
}

.sf-menu li:hover ul, .sf-menu li.sfHover ul {
    left: 0;
    top: 2.5em; /* match top ul list item height */
    z-index: 99;
}

ul.sf-menu li:hover li ul, ul.sf-menu li.sfHover li ul {
    top: -999em;
}

ul.sf-menu li li:hover ul, ul.sf-menu li li.sfHover ul {
    left: 10em; /* match ul width */
    top: 0;
}

ul.sf-menu li li:hover li ul, ul.sf-menu li li.sfHover li ul {
    top: -999em;
}

ul.sf-menu li li li:hover ul, ul.sf-menu li li li.sfHover ul {
    left: 10em; /* match ul width */
    top: 0;
}

.sf-menu {
    font-weight: bold;
    position: absolute;
    bottom: 0px;
}

.sf-menu a {
    padding: .75em 1em;
    text-decoration: none;
}

.sf-menu a, .sf-menu a:visited { /* visited pseudo selector so IE6 applies text colour*/
    color: #fff;
}

.sf-menu li {
    border-right: 1px solid #6b6b6b;
}

.sf-menu li li {
    background: #262626;
}

.sf-menu li:hover, .sf-menu li.sfHover, .sf-menu a:focus, .sf-menu a:hover, .sf-menu a:active {
    color: #eb7b33;
    outline: 0;
}

/*** arrows **/
.sf-menu a.sf-with-ul {
    padding-right: 2.25em;
    min-width: 1px; /* trigger IE7 hasLayout so spans position accurately */
}

.sf-sub-indicator {
    position: absolute;
    display: block;
    right: .75em;
    top: 1.05em; /* IE6 only */
    width: 10px;
    height: 10px;
    text-indent: -999em;
    overflow: hidden;
    background: url('../images/arrows-ffffff.png') no-repeat -10px -100px; /* 8-bit indexed alpha png. IE6 gets solid image only */
}

a > .sf-sub-indicator { /* give all except IE6 the correct values */
    top: .8em;
    background-position: 0 -100px; /* use translucent arrow for modern browsers*/
}

/* apply hovers to modern browsers */
a:focus > .sf-sub-indicator, a:hover > .sf-sub-indicator, a:active > .sf-sub-indicator, li:hover > a > .sf-sub-indicator, li.sfHover > a > .sf-sub-indicator {
    background-position: -10px -100px; /* arrow hovers for modern browsers*/
}

/* point right for anchors in subs */
.sf-menu ul .sf-sub-indicator {
    background-position: -10px 0;
}

.sf-menu ul a > .sf-sub-indicator {
    background-position: 0 0;
}

/* apply hovers to modern browsers */
.sf-menu ul a:focus > .sf-sub-indicator, .sf-menu ul a:hover > .sf-sub-indicator, .sf-menu ul a:active > .sf-sub-indicator, .sf-menu ul li:hover > a > .sf-sub-indicator, .sf-menu ul li.sfHover > a > .sf-sub-indicator {
    background-position: -10px 0; /* arrow hovers for modern browsers*/
}

/*** shadows for all but IE6 ***/
.sf-shadow ul {
    background: url('../images/shadow.png') no-repeat bottom right;
    padding: 0 8px 9px 0;
    -moz-border-radius-bottomleft: 17px;
    -moz-border-radius-topright: 17px;
    -webkit-border-top-right-radius: 17px;
    -webkit-border-bottom-left-radius: 17px;
}

.sf-shadow ul.sf-shadow-off {
    background: transparent;
}

#menu {
    background: url('../images/menu-bkg.gif') no-repeat;
    height: 41px;
    position: relative;
    margin-bottom: 1px;
}

#headersearchbox {
    background: #ffffff url('../images/search.gif') no-repeat 2px;
    padding-left: 17px;
    position: absolute;
    right: 9px;
    top: 11px;
}

#headersearchbox input {
    border: 0;
    padding: 3px;
}

/**** BOX ****/
.box {
    width: 993px;
}

.box .box-top {
    background: url('../images/box-top.jpg') no-repeat;
    height: 21px;
    width: 993px;
    font-size: 1px;
    border: 0px solid green;
    float: left;
    clear: both;
}

.box .box-center {
    position: relative;
    width: 953px;
    padding: 0 20px;
    border: 0px solid green;
    background: url('../images/box-content.jpg');
    float: left;
    clear: both;
}

.box .box-bottom {
    background: url('../images/box-bottom.jpg') no-repeat bottom;
    height: 20px;
    width: 993px;
    font-size: 1px;
    border: 0px solid green;
    float: left;
    clear: both;
}

.box-medium {
    width: 780px;
    float: left;
    border: 0px solid red;
}

.box-medium .box-top {
    background: url('../images/box-medium-top.jpg') no-repeat;
    height: 21px;
    width: 780px;
    font-size: 1px;
    border: 0px solid green;
    float: left;
    clear: both;
}

.box-medium .box-center {
    background: url('../images/box-medium-content.jpg');
    position: relative;
    width: 740px;
    padding: 0 20px;
    border: 0px solid green;
    float: left;
}

.box-medium .box-bottom {
    background: url('../images/box-medium-bottom.jpg') no-repeat bottom;
    height: 20px;
    width: 780px;
    font-size: 1px;
    border: 0px solid green;
    float: left;
    clear: both;
}

.box .box-content, .box-medium .box-content {
    border: 0px solid blue;
}

/** SEARCHBOX **/
.searchbox {
    background: url('../images/searchbox-container.jpg');
    width: 195px;
    float: right;
}

.searchbox-content {
    background: url('../images/searchbox-content.jpg') no-repeat bottom;
    padding: 10px;
}

.searchbox select {
    width: 175px;
}

/**PAGINATOR **/
.paginator {
    position: absolute;
    top: -50px;
    border: 0px solid red;
    right: 0px;
}

.news-paginator-top{
    position:absolute;
    top: -50px;
    right: 0px;
}

.news-paginator-bottom{
    position:absolute;
    bottom: -50px;
    right: 0px;
}

/**** TABS ****/
/* root element for tabs  */
ul.tabs {
    list-style: none;
    margin: 0 !important;
    padding: 0;
    height: 30px;
    width: 993px;
}

/* single tab */
ul.tabs li {
    float: left;
    text-indent: 0;
    padding: 0;
    margin: 0 !important;
    list-style-image: none !important;
}

/* link inside the tab. uses a background image */
ul.tabs a {
    background: url(../images/tabs.jpg) no-repeat -652px 0;
    display: block;
    height: 30px;
    line-height: 30px;
    width: 111px;
    text-align: center;
    text-decoration: none;
    padding: 0px;
    margin: 0px;
    position: relative;
    top: 1px;
    font-size: 12px;
    font-weight: bold;
    font-style: italic;
    color: #eb7b33;
}

ul.tabs a:active {
    outline: none;
}

/* when mouse enters the tab move the background image */
ul.tabs a:hover {
    background-position: -652px -31px;
}

/* active tab uses a class name "current". it's highlight is also done by moving the background image. */
ul.tabs a.current, ul.tabs a.current:hover, ul.tabs li.current a {
    background-position: -652px -62px;
    cursor: default !important;
    color: #373737;
}

/* Different widths for tabs: use a class name: w1, w2, w3 or w4 */
/* width 1 */
ul.tabs a.w1 {
    background-position: -519px 0;
    width: 134px;
}

ul.tabs a.w1:hover {
    background-position: -519px -31px;
}

ul.tabs a.w1.current {
    background-position: -519px -62px;
}

/* width 2 */
ul.tabs a.w2 {
    background-position: -366px -0px;
    width: 154px;
}

ul.tabs a.w2:hover {
    background-position: -366px -31px;
}

ul.tabs a.w2.current {
    background-position: -366px -62px;
}

/* width 3 */
ul.tabs a.w3 {
    background-position: -193px -0px;
    width: 174px;
}

ul.tabs a.w3:hover {
    background-position: -193px -31px;
}

ul.tabs a.w3.current {
    background-position: -193px -62px;
}

/* width 4 */
ul.tabs a.w4 {
    background-position: -0px -0px;
    width: 194px;
}

ul.tabs a.w4:hover {
    background-position: -0px -31px;
}

ul.tabs a.w4.current {
    background-position: -0px -62px;
}

/* initially all panes are hidden */
div.panes div.pane {
    display: none;
}

.tabs-content-top {
    width: 993px;
    height: 10px;
    float: left;
    clear: both;
}

.tabs-content-panes {
    background: url('../images/box-content.jpg');
    width: 993px;
    float: left;
}

.tabs-content-bottom {
    width: 993px;
    height: 20px;
    float: left;
    clear: both;
}

.tabs-content-panes .tabs-pane {
    margin: 10px 20px 0 20px;
}

/*** HOME ***/
#home-newsletter-links {
    height: 30px;
    text-align: right;
    margin-top: 10px;
    margin-right: 10px;
}

#home-banners {
    width: 544px;
    position: relative;
    float: left;
    overflow: hidden;
}

.home-banner-entry {
    margin-right: 7px;
    margin-bottom: 7px;
    float: left;
    height: 196px;
}

/*il css delle news in homepage è insieme a quello delle news più sotto */
/*** PRODUCTS ***/
/* TIPOLOGIE */
.products-typologies, .product-list, .news-list {
    float: left;
    width: 798px;
    border: 0px solid blue;
}

.news-list{
    padding-bottom:30px;
}

.typology-entry {
    float: left;
    margin: 0px 8px 8px 0px;
    position: relative;
    width: 385px;
    height: 217px;
}

.typology-entry a {
    color: #333;
}

.typology-title {
    position: absolute;
    top: 10px;
    left: 210px;
}

.typology-content {
    position: absolute;
    top: 60px;
    left: 210px;
    width: 160px;
    font-size: 12px;
    line-height: 15px;
}

.typology-content a {
    text-decoration: none;
}

/* ELENCO PRODOTTI DI UNA TIPOLOGIA */
.product-entries {
    margin-top: 0px !important;
}

.product-entry {
    float: left;
    border: 0px solid red;
    text-align: center;
}

.product-entry a {
    color: #333;
}

.product-entry .product-image {
    border: 0px solid green;
}

.product-entry .product-title {
    border: 0px solid blue;
    position: relative;
    top: -10px;
}

/* SCHEDA PRODOTTO */
.product-head-box .box-bottom {
    height: 20px;
}

#product-head-left {
    float: left;
    width: 390px;
    border: 0px solid red;
}

#product-head-right {
    float: right;
    width: 550px;
    border: 0px solid blue;
}

.product-head-box .product-title h3 {
    padding-top: 10px;
    line-height:1em;
}

.product-head-box .product-title h4 {
    margin-top: -1em;
    font-size: 12px;
}

.product-head-box .product-image, .product-head-box .product-excerpt {
    float: left;
}

.product-head-box .product-image {
    border: 0px solid blue;
}

.product-head-box .product-excerpt {
    border: 0px solid red;
    margin-top: 10px;
}

.product-head-box .product-certifications {
    border: 0px solid red;
    margin-bottom: 16px;
    padding-top: 5px;
}

.product-head-box .product-certifications img {
    margin: 0 5px;
}

/* TAB SPECIFICHE */
.details-entry h5 {
    font-weight: bold;
}

.details-entry div {
    margin-bottom: 1em;
    margin-right: 1em;
}

.product-details .details-entry table {
    border-collapse: collapse;
}

.product-details .details-entry table td {
    border: 1px solid #cccccc;
    padding: 3px;
}

/* TAB ACCESSORI */
div.product-accessories table h5 {
    font-weight: bold;
}

div.product-accessories table td {
    vertical-align: top;
    padding: 10px;
}

/* TAB GOBO E FILTRI */
div.gobosfilters-container {
    position: relative;
    overflow: auto;
    height: 380px;
    width: 953px;
}

div.gobosfilters-container table td.gfimage {
    text-align: center;
    vertical-align: baseline;
}

div.gobosfilters-container table td.gfimage img {
    display: block;
}

div.gobosfilters-container table td.gfdetails {
    text-align: center;
    vertical-align: top;
    background: transparent url(../images/gobo-shadow.jpg) no-repeat center top;
    padding-top: 20px;
}

div.gobosfilters-container table {
}

/* TAB VERNICIATURE */
div.paintworks-container {
    position: relative;
    overflow: auto;
    height: 300px;
    width: 953px;
}

div.paintworks-container table td.pwimage {
    text-align: center;
    vertical-align: baseline;
}

div.paintworks-container table td.pwimage img {
    display: block;
}

div.paintworks-container table td.pwdetails {
    text-align: center;
    vertical-align: top;
    padding-top: 20px;
}

div.paintworks-container table {
}

/* TAB LINK ESTERNI */
div.product-relatedlinks ul{
    list-style-type:none;
    margin:0;
}

/*** NEWS LIST ***/
.news-entry {
    border: 0px solid green;
    float: left;
    overflow: hidden;
    width: inherit;
}

.news-entry .news-image {
    border: 0px solid red;
    float: left;
    width: 120px;
}

.news-entry .news-details {
    float: left;
    border: 0px solid blue;
    width: 285px;
}

.box-medium .news-details {
    width: 618px;
}

.news-entry .news-image img {
    border: 1px solid #cccccc;
}

.news-entry .news-title {
    white-space: nowrap;
    overflow: hidden;
}

.news-entry-separator {
    clear: both;
    height: 10px;
}

#home-news-area {
    background: transparent url('../images/home-news.jpg') no-repeat;
    width: 409px;
    height: 359px;
    float: right;
    padding: 20px;
    margin: 0;
    overflow: hidden;
}

#home-news-area .news-entry {
    margin-top: 8px;
    line-height: 14px;
}

#home-news-area .news-title {
    width: 286px;
}

#home-news-area .news-excerpt {
    margin-top: 1em;
}

#home-news-area .news-excerpt a {
    font-size: 11px;
}

/*** NEWS SHOW ***/
.news-content p {
    margin-bottom: 1em;
}

h3.news-title {
    font-size: 22px;
}

.news-contact {
    margin-top: 1em;
}

.news-images {
    float: left;
}

.news-info-entry {
    width: 297px;
    float: left;
    padding: 5px 5px 5px 5px;
    margin: 0 5px 5px 5px;
}

.news-info-entry h4 {
    font-size: 12px;
    font-weight: bold;
    font-style: normal;
    padding: 0;
    margin: 0;
    border-bottom: 1px solid #ddd;
}

.news-info-entry .product-link, .news-info-entry .link-link {
    display: block;
}

.news-date {
    margin: 0;
}

/*** DOWNLOAD ***/
.download-search {
    background-image: url('/images/download-search.jpg');
    width: 993px;
    height: 180px;
    margin-bottom: 20px;
    position: relative;
}

.download-search .download-search-header {
    width: 640px;
    position: absolute;
    top: 30px;
    left: 30px;
}

.download-search .download-search-select {
    position: absolute;
    top: 15px;
    right: 30px;
}

.download-lightdesigner {
    width: 447px;
    border-right: 1px solid #ccc;
    padding-right: 20px;
    float: left;
}

.download-maintenance {
    width: 446px;
    border-left: 1px solid #ccc;
    padding-left: 20px;
    float: left;
    position: relative;
    left: -1px;
}

.download-maintenance-content, .download-lightdesigner-content {
    clear: both;
}

.download-lightdesigner h4, .download-maintenance h4 {
    float: left;
    margin-right: 10px;
}

h5.downloadType-name {
    font-weight: bold;
}

.downloadType-entries .downloadType-entry-separator {
    height: 9px;
    clear: both;
    background: transparent url('/images/separator.gif') repeat-x center;
    padding: 5px 0;
}

.downloadType-entries {
    clear: both;
}

.downloadType-entries .downloadType-entry {
    outline: 0px solid red;
    float: left;
}

.downloadType-image {
    float: left;
    width: 58px;
    height: 58px;
}

.downloadType-name, .documents-entries {
    margin-left: 70px;
}

.documents-entries {
    font-size: 11px;
}

.download-login-status {
    float: left;
}

.userLoginStatus {
    width: 200px;
    font-size: 90%;
}

#download-choose-product-discontinued {
    font-size: 11px;
}

/*** TEAM ***/
.team-subsector-title {
    font-size: 16px;
    font-weight: bold;
    font-style: italic;
    border-bottom: 1px solid #ccc;
    margin-bottom:10px;
    margin-top:20px;
    padding-bottom:4px;
    clear:both;
}

.team-member-entry {
    width: 50%;
    float: left;
    margin: 0 -1px 20px -1px;
    border: 1px;
}

.team-member-entry img {
    float: left;
    margin-right: 10px;
    border: 1px solid #ccc;
    padding: 1px;
}

/** TEAM MEMBER **/
.team-member {
    margin-top: 20px;
}

.team-member img {
    border: 1px solid #ccc;
    padding: 1px;
    float: left;
    margin: 0 20px 0 0;
}

.team-member div {
}

/** SALES NETWORK **/
ul.hide-salesnetwork {
    display: none;
}

ul.salesnetwork-locations {
    border: 0px solid black;
    height: 1%;
}

ul.salesnetwork-locations li {
    list-style-type: none;
    list-style-position: outside;
}

li.salesnetwork-location {
    border: 0px solid blue;
    height: 1%;
    margin-bottom: 10px;
}

li.salesnetwork-location span {
    border: 0px solid red;
    display: block;
    float: left;
    width: 200px;
}

ul.salesnetwork-sectors {
    margin-left: 210px;
}

li.salesnetwork-sector {
    border: 0px solid green;
    height: 1%;
    margin-bottom: 10px;
}

li.salesnetwork-sector span {
    border: 0px solid yellow;
    display: block;
    float: left;
    width: 200px;
    text-align: right;
}

ul.salesnetwork-salesnetworks {
    border: 0px solid red;
    margin-left: 210px;
}

a.salesnetwork-salesnetworks-show, a.salesnetwork-salesnetworks-hide {
    margin-left: 10px;
}

li.salesnetwork-salesnetwork {
    border: 0px solid pink;
    margin-bottom: 10px;
}

/** PROMO **/
.advertising-entries, .catalogues-entries, .gadgets-entries {
    font-size: 11px;
}

.advertising-entries img, .catalogues-entries img {
    border: 1px solid #ccc;
    padding: 1px;
}

.advertising-entries div, .catalogues-entries div {
    width: 148px;
    overflow: hidden;
    float: left;
    margin: 5px 5px 20px 5px;
    text-align: center;
}

.gadgets-entry {
    width: 300px;
    height: 260px;
    float: left;
    margin: 5px 5px 20px 5px;
    position: relative;
    border: 0px solid red;
}

.gadgets-entry img {
    margin: 0 auto;
    display: block;
}

.gadgets-entry div {
    position: absolute;
    width: inherit;
    bottom: 0;
    border: 0px solid blue;
    text-align: center;
}

.advertising-entries span, .catalogues-entries span, .gadgets-entries span {
    display: block;
}

/** MULTIMEDIA **/
#multimedia-player-container {
    width: 520px;
    float: left;
    height:420px;
}

#multimedia-video-selector {
    margin-left: 540px;
}

#multimedia-video-selector ul {
    list-style-type: none;
}

#playerInfoTitle {
    font-weight: bold;
}

/** FAIRS **/
.fairs-entry {
    float: left;
    border: 1px solid #ccc;
    width: 285px;
    height: 150px;
    margin: 10px 10px 20px 10px;
    padding: 5px;
}

/** PARTNERS **/
.partners-entry {
    float: left;
    border: 1px solid #ccc;
    width: 285px;
    height: 150px;
    margin: 10px 10px 20px 10px;
    padding: 5px;
}

.partners-entry img {
    margin-top: 5px;
}

/** CONTACTS **/
#contacts-map {
    height: 400px;
}

/** AWARDS **/
.box-awards {
    padding: 12px 12px 0px 12px;
    margin: 0px 0px;
    height: 479px;
    background: #000000 url(/images/background-slide.gif) no-repeat bottom;
    display: block;
    overflow: hidden;
}

div.awards-container {
    width: 969px;
    height: 463px;
    overflow: auto;
    position: relative;
}

li.awards-item {
    display: inline;
    text-align: center;
}

div.awards-container ul {
    list-style-image: none;
    list-style-position: inside;
    list-style-type: none;
    white-space: nowrap;
}

.awards-item-content {
    display: inline-block;
    margin: 0px 50px 0px 50px;
}

li.awards-item {
    text-align: center;
}

/** HISTORY **/
.box-history {
    padding: 12px 12px 0px 12px;
    margin: 0px 0px;
    height: 479px;
    background: #000000 url(/images/background-slide.gif) no-repeat bottom;
    display: block;
    overflow: hidden;
}

div.history-container {
    width: 969px;
    height: 463px;
    overflow: auto;
    position: relative;
}

li.history-item {
    display: inline;
    text-align: center;
}

div.history-container ul {
    list-style-image: none;
    list-style-position: inside;
    list-style-type: none;
    white-space: nowrap;
}

.history-item-content {
    display: inline-block;
    margin: 0px 10px 0px 10px;
    width: 194px;
    text-align: center;
}

li.history-item {
    text-align: center;
}

li.history-item .details {
    padding-top: 16px;
    width: 194px;
    height: 92px;
    color: #d5d5d5;
    text-align: center;
    position: relative;
    top: -18px;
}

span.year {
    font-size: 30px;
    font-weight: bold;
    line-height: normal;
}

li.history-item .reflect {
    background: transparent url(/images/history-reflect.gif) no-repeat center top;
    height: 40px;
    position: relative;
    top: -3px;
    text-indent: -20000px;
    overflow: hidden;
    width: 194px;
}

li.history-item .history-ico {
    position: relative;
    top: -6px;
}

/** SUBMIT YOUR NEWS **/
form.submityournews td {
    vertical-align: top;
    padding: 10px;
}

form.submityournews textarea {
    display: block;
    width: 300px;
    height: 100px;
}

form.submityournews input[type =
"text"] {
    width: 300px;
}

.submityournews {
    margin-left: 150px;
    border: 0px solid blue;
}

.submityournews label.error, .newslettersubscription label.error, .handsonorder label.error, .forgotpassword label.error {
    margin: 0;
    color: red;
    display: none;
}

.handsonorder .radio label{
    display:inline;
}

/** SEARCH **/
#searchboxForm, .search-navigation, .search-results-info {
    text-align: center;
}

#searchboxForm {
    margin-top: 20px;
    margin-bottom: 10px;
}

.search-results {
    margin-top: 1em;
}

.search-results .result {
    margin-bottom: 1em;
}

.search-results .title, .search-results .hilight {
    font-weight: bold;
}

.search-results .url {
    font-size: 11px;
}

/** PAGAMENTI ON-LINE **/
.payments-strong {
    font-weight: bold;
    font-size: 14px;
}

#payments-icons {
    margin-top: 30px;
}

#payments-icons img {
    border: 1px solid #BBC3CC;
    margin-left: 4px;
}


/** CHI SIAMO **/
.who-content-header{
    font-style:normal;
    font-weight:bold;
    font-size:18px;
    margin:0 0 0 88px;
}
.who-item{
    float:left;
    clear:both;
    margin:9px 0;
}

.who-item img{
    float:left;
    margin:5px 30px 0 0;
}

.who-item p{
    width:860px;
    float:left;
}

.who-separator{
    clear:both;
    float:left;
    height:20px;
}


/** MCE **/
.mceContentBody{
    background-color:white;
}

.mceContentBody {
    padding:10px;
}

.mceContentBody .toapprove {
    color:red;
}

