/***************** File: jquery.autocomplete.css ******************/

.ac_results {
	padding: 0px;
	border: 1px solid black;
	background-color: white;
	overflow: hidden;
	z-index: 99999;
}

.ac_results ul {
	width: 100%;
	list-style-position: outside;
	list-style: none;
	padding: 0;
	margin: 0;
}

.ac_results li {
	margin: 0px;
	padding: 2px 5px;
	cursor: default;
	display: block;
	text-align: left;
	/* 
	if width will be 100% horizontal scrollbar will apear 
	when scroll mode will be used
	*/
	/*width: 100%;*/
	font: menu;
	font-size: 12px;
	/* 
	it is very important, if line-height not setted or setted 
	in relative units scroll will be broken in firefox
	*/
	line-height: 16px;
	overflow: hidden;
}

.ac_loading {
	background: white url('indicator.gif') right center no-repeat;
}

.ac_odd {
	background-color: #eee;
}

.ac_over {
	background-color: #333;
	color: #fff;
}


/***************** File: jquery.fancybox-1.3.4.css ******************/

/*
 * FancyBox - jQuery Plugin
 * Simple and fancy lightbox alternative
 *
 * Examples and documentation at: http://fancybox.net
 * 
 * Copyright (c) 2008 - 2010 Janis Skarnelis
 * That said, it is hardly a one-person project. Many people have submitted bugs, code, and offered their advice freely. Their support is greatly appreciated.
 * 
 * Version: 1.3.4 (11/11/2010)
 * Requires: jQuery v1.3+
 *
 * Dual licensed under the MIT and GPL licenses:
 *   http://www.opensource.org/licenses/mit-license.php
 *   http://www.gnu.org/licenses/gpl.html
 */

#fancybox-loading {
	position: fixed;
	top: 50%;
	left: 50%;
	width: 40px;
	height: 40px;
	margin-top: -20px;
	margin-left: -20px;
	cursor: pointer;
	overflow: hidden;
	z-index: 1104;
	display: none;
}

#fancybox-loading div {
	position: absolute;
	top: 0;
	left: 0;
	width: 40px;
	height: 480px;
	background-image: url('/images/fancybox/fancybox.png');
}

#fancybox-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1100;
	display: none;
}

#fancybox-tmp {
	padding: 0;
	margin: 0;
	border: 0;
	overflow: auto;
	display: none;
}

#fancybox-wrap {
	position: absolute;
	top: 0;
	left: 0;
	padding: 20px;
	z-index: 1101;
	outline: none;
	display: none;
}

#fancybox-outer {
	position: relative;
	width: 100%;
	height: 100%;
	background: #fff;
}

#fancybox-content {
	width: 0;
	height: 0;
	padding: 0;
	outline: none;
	position: relative;
	overflow: hidden;
	z-index: 1102;
	border: 0px solid #fff;
}

#fancybox-hide-sel-frame {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: transparent;
	z-index: 1101;
}

#fancybox-close {
	position: absolute;
	top: -15px;
	right: -15px;
	width: 30px;
	height: 30px;
	background: transparent url('/images/fancybox/fancybox.png') -40px 0px;
	cursor: pointer;
	z-index: 1103;
	display: none;
}

#fancybox-error {
	color: #444;
	font: normal 12px/20px Arial;
	padding: 14px;
	margin: 0;
}

#fancybox-img {
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 0;
	border: none;
	outline: none;
	line-height: 0;
	vertical-align: top;
}

#fancybox-frame {
	width: 100%;
	height: 100%;
	border: none;
	display: block;
}

#fancybox-left, #fancybox-right {
	position: absolute;
	bottom: 0px;
	height: 100%;
	width: 35%;
	cursor: pointer;
	outline: none;
	background: transparent url('/images/fancybox/blank.gif');
	z-index: 1102;
	display: none;
}

#fancybox-left {
	left: 0px;
}

#fancybox-right {
	right: 0px;
}

#fancybox-left-ico, #fancybox-right-ico {
	position: absolute;
	top: 50%;
	left: -9999px;
	width: 30px;
	height: 30px;
	margin-top: -15px;
	cursor: pointer;
	z-index: 1102;
	display: block;
}

#fancybox-left-ico {
	background-image: url('/images/fancybox/fancybox.png');
	background-position: -40px -30px;
}

#fancybox-right-ico {
	background-image: url('/images/fancybox/fancybox.png');
	background-position: -40px -60px;
}

#fancybox-left:hover, #fancybox-right:hover {
	visibility: visible; /* IE6 */
}

#fancybox-left:hover span {
	left: 20px;
}

#fancybox-right:hover span {
	left: auto;
	right: 20px;
}

.fancybox-bg {
	position: absolute;
	padding: 0;
	margin: 0;
	border: 0;
	width: 20px;
	height: 20px;
	z-index: 1001;
}

#fancybox-bg-n {
	top: -20px;
	left: 0;
	width: 100%;
	background-image: url('/images/fancybox/fancybox-x.png');
}

#fancybox-bg-ne {
	top: -20px;
	right: -20px;
	background-image: url('/images/fancybox/fancybox.png');
	background-position: -40px -162px;
}

#fancybox-bg-e {
	top: 0;
	right: -20px;
	height: 100%;
	background-image: url('/images/fancybox/fancybox-y.png');
	background-position: -20px 0px;
}

#fancybox-bg-se {
	bottom: -20px;
	right: -20px;
	background-image: url('/images/fancybox/fancybox.png');
	background-position: -40px -182px; 
}

#fancybox-bg-s {
	bottom: -20px;
	left: 0;
	width: 100%;
	background-image: url('/images/fancybox/fancybox-x.png');
	background-position: 0px -20px;
}

#fancybox-bg-sw {
	bottom: -20px;
	left: -20px;
	background-image: url('/images/fancybox/fancybox.png');
	background-position: -40px -142px;
}

#fancybox-bg-w {
	top: 0;
	left: -20px;
	height: 100%;
	background-image: url('/images/fancybox/fancybox-y.png');
}

#fancybox-bg-nw {
	top: -20px;
	left: -20px;
	background-image: url('/images/fancybox/fancybox.png');
	background-position: -40px -122px;
}

#fancybox-title {
	font-family: Helvetica;
	font-size: 12px;
	z-index: 1102;
}

.fancybox-title-inside {
	padding-bottom: 10px;
	text-align: center;
	color: #333;
	background: #fff;
	position: relative;
}

.fancybox-title-outside {
	padding-top: 10px;
	color: #fff;
}

.fancybox-title-over {
	position: absolute;
	bottom: 0;
	left: 0;
	color: #FFF;
	text-align: left;
}

#fancybox-title-over {
	padding: 10px;
	background-image: url('/images/fancybox/fancy_title_over.png');
	display: block;
}

.fancybox-title-float {
	position: absolute;
	left: 0;
	bottom: -20px;
	height: 32px;
}

#fancybox-title-float-wrap {
	border: none;
	border-collapse: collapse;
	width: auto;
}

#fancybox-title-float-wrap td {
	border: none;
	white-space: nowrap;
}

#fancybox-title-float-left {
	padding: 0 0 0 15px;
	background: url('/images/fancybox/fancybox.png') -40px -90px no-repeat;
}

#fancybox-title-float-main {
	color: #FFF;
	line-height: 29px;
	font-weight: bold;
	padding: 0 0 3px 0;
	background: url('/images/fancybox/fancybox-x.png') 0px -40px;
}

#fancybox-title-float-right {
	padding: 0 0 0 15px;
	background: url('/images/fancybox/fancybox.png') -55px -90px no-repeat;
}

/* IE6 */

.fancybox-ie6 #fancybox-close { background: transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/images/fancybox/fancy_close.png', sizingMethod='scale'); }

.fancybox-ie6 #fancybox-left-ico { background: transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/images/fancybox/fancy_nav_left.png', sizingMethod='scale'); }
.fancybox-ie6 #fancybox-right-ico { background: transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/images/fancybox/fancy_nav_right.png', sizingMethod='scale'); }

.fancybox-ie6 #fancybox-title-over { background: transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/images/fancybox/fancy_title_over.png', sizingMethod='scale'); zoom: 1; }
.fancybox-ie6 #fancybox-title-float-left { background: transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/images/fancybox/fancy_title_left.png', sizingMethod='scale'); }
.fancybox-ie6 #fancybox-title-float-main { background: transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/images/fancybox/fancy_title_main.png', sizingMethod='scale'); }
.fancybox-ie6 #fancybox-title-float-right { background: transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/images/fancybox/fancy_title_right.png', sizingMethod='scale'); }

.fancybox-ie6 #fancybox-bg-w, .fancybox-ie6 #fancybox-bg-e, .fancybox-ie6 #fancybox-left, .fancybox-ie6 #fancybox-right, #fancybox-hide-sel-frame {
	height: expression(this.parentNode.clientHeight + "px");
}

#fancybox-loading.fancybox-ie6 {
	position: absolute; margin-top: 0;
	top: expression( (-20 + (document.documentElement.clientHeight ? document.documentElement.clientHeight/2 : document.body.clientHeight/2 ) + ( ignoreMe = document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop )) + 'px');
}

#fancybox-loading.fancybox-ie6 div	{ background: transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/images/fancybox/fancy_loading.png', sizingMethod='scale'); }

/* IE6, IE7, IE8 */

.fancybox-ie .fancybox-bg { background: transparent !important; }

.fancybox-ie #fancybox-bg-n { filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/images/fancybox/fancy_shadow_n.png', sizingMethod='scale'); }
.fancybox-ie #fancybox-bg-ne { filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/images/fancybox/fancy_shadow_ne.png', sizingMethod='scale'); }
.fancybox-ie #fancybox-bg-e { filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/images/fancybox/fancy_shadow_e.png', sizingMethod='scale'); }
.fancybox-ie #fancybox-bg-se { filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/images/fancybox/fancy_shadow_se.png', sizingMethod='scale'); }
.fancybox-ie #fancybox-bg-s { filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/images/fancybox/fancy_shadow_s.png', sizingMethod='scale'); }
.fancybox-ie #fancybox-bg-sw { filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/images/fancybox/fancy_shadow_sw.png', sizingMethod='scale'); }
.fancybox-ie #fancybox-bg-w { filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/images/fancybox/fancy_shadow_w.png', sizingMethod='scale'); }
.fancybox-ie #fancybox-bg-nw { filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/images/fancybox/fancy_shadow_nw.png', sizingMethod='scale'); }

/***************** File: jquery.jscrollpane.css ******************/

.jScrollPaneContainer {
	position: relative;
	overflow: hidden;
	z-index: 1;
}

.jScrollPaneTrack {
	position: absolute;
	cursor: pointer;
	right: 0;
	top: 0;
	height: 100%;
	background: url(../media/layout_images/scrollbar_bg.png) repeat-y;
}

.jScrollPaneDrag {
	position: absolute;
	cursor: pointer;
	overflow: hidden;
	background: url(../media/layout_images/scrollbar_slider_bg.png) repeat-y;
	height: 10px;
}

.jScrollPaneDragTop {
	position: absolute;
	top: 0;
	left: 0;
	overflow: hidden;
	background: url(../media/layout_images/scrollbar_slider_top.png) no-repeat;
	height: 5px;
}

.jScrollPaneDragBottom {
	position: absolute;
	bottom: 0;
	left: 0;
	overflow: hidden;
	background: url(../media/layout_images/scrollbar_slider_bottom.png) no-repeat;
	height: 14px;
}

a.jScrollArrowUp {
	display: block;
	position: absolute;
	z-index: 1;
	top: 0;
	right: 0;
	text-indent: -2000px;
	overflow: hidden;
	height: 20px;
	background: url(../media/layout_images/scrollbar_up.png) no-repeat 0 top;
}

a.jScrollArrowUp:hover {
}

a.jScrollArrowDown {
	display: block;
	position: absolute;
	z-index: 1;
	bottom: 0;
	right: 0;
	text-indent: -2000px;
	overflow: hidden;
	height: 20px;
	background: url(../media/layout_images/scrollbar_down.png) no-repeat 0 bottom;
}

a.jScrollArrowDown:hover {
}

a.jScrollActiveArrowButton, a.jScrollActiveArrowButton:hover {
}

/***************** File: jquery.lightbox-0.5.css ******************/

/**
 * jQuery lightBox plugin
 * This jQuery plugin was inspired and based on Lightbox 2 by Lokesh Dhakar (http://www.huddletogether.com/projects/lightbox2/)
 * and adapted to me for use like a plugin from jQuery.
 * @name jquery-lightbox-0.5.css
 * @author Leandro Vieira Pinho - http://leandrovieira.com
 * @version 0.5
 * @date April 11, 2008
 * @category jQuery plugin
 * @copyright (c) 2008 Leandro Vieira Pinho (leandrovieira.com)
 * @license CCAttribution-ShareAlike 2.5 Brazil - http://creativecommons.org/licenses/by-sa/2.5/br/deed.en_US
 * @example Visit http://leandrovieira.com/projects/jquery/lightbox/ for more informations about this jQuery plugin
 */
#jquery-overlay {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 90;
	width: 100%;
	height: 500px;
}
#jquery-lightbox {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 100;
	text-align: center;
	line-height: 0;
}
#jquery-lightbox a img { border: none; }
#lightbox-container-image-box {
	position: relative;
	background-color: #fff;
	width: 250px;
	height: 250px;
	margin: 0 auto;
}
#lightbox-container-image { padding: 10px; }
#lightbox-loading {
	position: absolute;
	top: 40%;
	left: 0%;
	height: 25%;
	width: 100%;
	text-align: center;
	line-height: 0;
}
#lightbox-nav {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 10;
}
#lightbox-container-image-box > #lightbox-nav { left: 0; }
#lightbox-nav a { outline: none;}
#lightbox-nav-btnPrev, #lightbox-nav-btnNext {
	width: 49%;
	height: 100%;
	zoom: 1;
	display: block;
}
#lightbox-nav-btnPrev { 
	left: 0; 
	float: left;
}
#lightbox-nav-btnNext { 
	right: 0; 
	float: right;
}
#lightbox-container-image-data-box {
	font: 10px Verdana, Helvetica, sans-serif;
	background-color: #fff;
	margin: 0 auto;
	line-height: 1.4em;
	overflow: auto;
	width: 100%;
	padding: 0 10px 0;
}
#lightbox-container-image-data {
	padding: 0 10px; 
	color: #666; 
}
#lightbox-container-image-data #lightbox-image-details { 
	width: 70%; 
	float: left; 
	text-align: left; 
}	
#lightbox-image-details-caption { font-weight: bold; }
#lightbox-image-details-currentNumber {
	display: block; 
	clear: left; 
	padding-bottom: 1.0em;	
}			
#lightbox-secNav-btnClose {
	width: 66px; 
	float: right;
	padding-bottom: 0.7em;	
}

/***************** File: arte.css ******************/

/******************
** START GENERAL **
******************/

/* general */

body {
	margin: 0;
	padding: 0;
	background-color: #FFFFFF;
	background-image: url(../media/layout_images/page_bg.gif);
	background-repeat: repeat-x;
}

img, ul, li, form, input {
	margin: 0;
	padding: 0;
	border: 0;
	outline: none;
}

.clear {
	clear: both;
	float: none;
}

.homepage {
	background-color: #000000 !important;
	background-image: none !important;
}

li.clear {
	clear: both;
	float: none;
	display: none;
}

/* container */

#container {
	width: 100%;
	height: 100%;
}

/* transition_effect */

.transition_effect {
	position: fixed;
	z-index: 1;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	display: none;
	overflow: hidden;
}

.transition_effect img {
	position: absolute;
	/* width: 70%; */
	height: 100%;
	z-index: 1;
	display: none;
}

.black_button {
	height: 30px;
	background-image: url(../media/layout_images/form_button_bg.gif);
	background-repeat: repeat-x;
	overflow: hidden;
	float: left;
}

.black_smallbutton {
	margin: 1px;
	height: 22px;
	background-image: url(../media/layout_images/personal_profile_button_bg.gif);
	background-repeat: repeat-x;
	overflow: hidden;
	float: left;
}

.black_button h3 {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 11px;
	font-weight: normal;
	color: #CCCCCC;
	line-height: 30px;
	text-decoration: none;
	text-transform: uppercase;
	margin: 0 15px 0 15px;
}

.black_smallbutton h3 {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 11px;
	font-weight: normal;
	color: #CCCCCC;
	line-height: 20px;
	text-decoration: none;
	text-transform: uppercase;
	margin: 0 15px 0 15px;
}

.black_button h3 a,
.black_smallbutton h3 a
{
	color: #CCCCCC;
	text-decoration: none;
}

.black_button h3 a:hover,
.black_smallbutton h3 a:hover
{
	text-decoration: underline;
}

/****************
** END GENERAL **
****************/

/*****************
** START TOPBAR **
*****************/

/* topbar */

.homepage #container #topbar,
.cerca #container #topbar
{
	/*position: absolute;*/
	z-index: 2;
	top: 0;
	left: 0;
	width: 100%;
	height: 132px;
	background-image: url(../media/layout_images/topbar_bg.png);
	background-repeat: repeat-x;
}

.interna #container #topbar {
	width: 100%;
	height: 132px;
	background-image: url(../media/layout_images/topbar_bg.png);
	background-repeat: repeat-x;
}

#container #topbar .bar {
	width: 960px;
	height: 132px;
	text-align: left;
}

/* topbar // left */

#container #topbar .bar .left {
	width: 810px;
	height: 130px;
	float: left;
}

/* topbar // left // logo */

#container #topbar .bar .left #logo {
	width: 315px;
	height: 110px;
	float: left;
}

#container #topbar .bar .left #logo img {
	margin: 9px 0 0 0;
}

/* topbar // left // search */

#container #topbar .bar .left .search {
	width: 490px;
	height: 110px;
	float: left;
}

.cerca #container #topbar .bar .left .search {
	display: none;
}

/* topbar // left // search // buttons */

#container #topbar .bar .left .search ul {
	width: 490px;
	height: 17px;
	list-style: none;
	margin: 40px 0 0 0;
}

#container #topbar .bar .left .search ul li {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #FFFFFF;
	text-decoration: none;
	text-transform: uppercase;
	line-height: 16px;
	margin: 0 2px 0 0;
	padding: 0 10px 0 10px;
	height: 16px;
	border-top: 1px solid #333333;
	border-left: 1px solid #333333;
	border-right: 1px solid #333333;
	background-color: #000000;
	float: left;
	cursor: pointer;
}

#container #topbar .bar .left .search ul li.selected {
	color: #CC0000 !important;
}

/* topbar // left // search // form */

#container #topbar .bar .left .search form {
	width: 490px;
	height: 33px;
}

#container #topbar .bar .left .search form input {
	float: left;
}

#container #topbar .bar .left .search form #keyword {
	width: 402px;
	height: 23px;
	background-image: url(../media/layout_images/topbar_input_text.png);
	background-repeat: no-repeat;
	font-family: Arial, Helvetica, sans-serif;
	font-weight: bold;
	font-size: 15px;
	color: #DDDDDD;
	text-decoration: none;
	line-height: 15px;
	padding: 10px 10px 0 10px;
}

/* topbar // left // menu */

#container #topbar .bar .left #menu {
	width: 810px;
	height: 20px;
}

#container #topbar .bar .left #menu ul {
	list-style: none;
}

#container #topbar .bar .left #menu ul li {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 10px;
	color: #FFFFFF;
	text-transform: uppercase;
	line-height: 16px;
	padding: 0 2px 0 2px;
	margin-right: 5px;
	height: 17px;
	border: 1px solid #333333;
	float: left;
}

#container #topbar .bar .left #menu ul li.dropdown {
	padding-right: 14px;
	background-image: url(../media/layout_images/topbar_arrow_down.png);
	background-repeat: no-repeat;
	background-position: right 3px;
}

#container #topbar .bar .left #menu ul li a {
	color: #FFFFFF;
	text-decoration: none;
	display: block;
	width: 100%;
}

#container #topbar .bar .left #menu ul li.selected a {
	color: #CC0000;
}

#container #topbar .bar .left #menu ul li a img {
	margin: 2px 2px 0 0;
	float: left;
}

/* topbar // left // menu // dropdown */

#container #topbar .bar .left #menu ul li ul,
#container #topbar .bar .left #menu ul li ul li ul
{
	display: none;
}

#container #topbar .bar .left #menu ul li ul {
	position: absolute;
	z-index: 4;
	list-style: none;
	margin: 2px 0 0 -3px;
	background-color: #E4E1DF;
	border-top: 1px solid #333333;
}

#container #topbar .bar .left #menu ul li ul li {
	float: none;
	clear: both;
	border-top: none;
	border-bottom: 1px solid #333333;
	border-left: 1px solid #333333;
	border-right: 1px solid #333333;
	margin: 0px;
	padding: 1px 17px 1px 17px;
	width: 150px;
	height: auto;
}

#container #topbar .bar .left #menu ul li ul li.dropdown {
	padding-right: 17px;
	background-image: url(../media/layout_images/topbar_arrow_right.png);
	background-repeat: no-repeat;
	background-position: right 3px;
}

#container #topbar .bar .left #menu ul li ul li a {
	color: #333333;
}

#container #topbar .bar .left #menu ul li.selected ul li a {
	color: #333333;
}

#container #topbar .bar .left #menu ul li ul li a img {
	margin: 0 5px 0 -10px;
}

#container #topbar .bar .left #menu ul li ul li ul {
	z-index: 5;
	margin: -18px 0 0 167px;
}

/* topbar // right */

#container #topbar .bar .right {
	width: 150px;
	height: 130px;
	float: left;
}

/* topbar // right // buttons */

#container #topbar .bar .right .buttons {
	height: 30px;
}

#container #topbar .bar .right .buttons input {
	float: left;
	margin: 4px 2px 4px 0;
}

#container #topbar .bar .right .buttons input#welcomeback_button {
	margin-left: -26px;
}

/* topbar // right // partnership */

#container #topbar .bar .right #partnership {
	width: 148px;
	text-align: center;
}

/***************
** END TOPBAR **
***************/

/***********************
** START MAIN CONTENT **
***********************/

/* content */

#container #content {
	width: 100%;
}

#container #content #main {
	width: 960px;
	margin: 20px 0 48px 0;
	overflow: hidden;
}

#container #content #main .content {
	text-align: left;
}

/* content // title */

#container #content #main .content .title {
	border-top: 1px solid #666666;
	border-bottom: 1px solid #666666;
}

#container #content #main .content .title .bar_grey {
	margin: 1px 0 1px 0;
	background-image: url(../media/layout_images/content_title_bg.png);
	height: 26px;
}

#container #content #main .content .title .bar_white {
	margin: 1px 0 1px 0;
	background-image: url(../media/layout_images/content_h1_bg.png);
	height: 26px;
}

#container #content #main .content .title .bar_transparent {
	margin: 1px 0 1px 0;
	background-image: url(../media/layout_images/content_title_transparent_bg.gif);
	height: 26px;
}

#container #content #main .content .title .bar_grey h1 {
	margin: 0;
	padding: 0 25px 0 25px;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 14px;
	color: #FFFFFF;
	font-weight: bold;
	line-height: 26px;
	text-transform: uppercase;
	text-shadow: 1px 1px #000000;
	float: left;
}

#container #content #main .content .title .bar_white h1 {
	margin: 0;
	padding: 1px 10px 0 10px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 18px;
	color: #333333;
	font-weight: bold;
	line-height: 26px;
	text-transform: uppercase;
	float: left;
}

#container #content #main .content .title .bar_transparent h1 {
	margin: 0;
	padding: 1px 10px 0 10px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 18px;
	color: #333333;
	font-weight: bold;
	line-height: 26px;
	text-transform: uppercase;
	float: left;
}

#container #content #main .content .title .bar_white h1 a {
	color: #CC0000;
	font-style: italic;
	text-decoration: none;
}

#container #content #main .content .title .bar_white h1 a:hover {
	text-decoration: underline;
}

/* content // buttons */

#container #content #main .content .title .bar_grey .buttons {
	height: 26px;
	padding: 0 5px 0 7px;
	float: right;
}

#container #content #main .content .buttons {
	margin: 0;
	padding: 0 5px 2px 5px;
}

#container #content #main .content .title .bar_grey .buttons .button,
#container #content #main .content .buttons .button
{
	margin: 2px 2px 0 0;
	height: 22px;
	float: left;
}

#container #content #main .content .title .bar_grey .buttons .button img,
#container #content #main .content .buttons .button img
{
	margin-top: 2px;
}

#container #content #main .content .title .bar_grey .buttons .button .corner-left,
#container #content #main .content .buttons .button .corner-left
{
	background-image: url(../media/layout_images/content_title_button_corner-left.png);
	background-repeat: no-repeat;
	width: 5px;
	height: 22px;
	float: left;
}

#container #content #main .content .title .bar_grey .buttons .button .corner-right,
#container #content #main .content .buttons .button .corner-right
{
	background-image: url(../media/layout_images/content_title_button_corner-right.png);
	background-repeat: no-repeat;
	width: 5px;
	height: 22px;
	float: left;
}

#container #content #main .content .title .bar_grey .button .icon,
#container #content #main .content .buttons .button .icon
{
	background-image: url(../media/layout_images/content_title_button_bg.png);
	background-repeat: repeat-x;
	height: 22px;
	float: left;
}

#container #content #main .content .title .bar_grey .button .icon img,
#container #content #main .content .buttons .button .icon img
{
	margin-top: 3px;
}

#container #content #main .content .title .bar_grey .button .label,
#container #content #main .content .buttons .button .label
{
	background-image: url(../media/layout_images/content_title_button_bg.png);
	background-repeat: repeat-x;
	height: 22px;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 10px;
	color: #FFFFFF;
	font-weight: bold;
	line-height: 22px;
	text-transform: uppercase;
	text-shadow: 1px 1px #000000;
	padding: 0 5px 0 5px;
	float: left;
}

#container #content #main .content .title .bar_grey .button .label a,
#container #content #main .content .buttons .button .label a
{
	color: #FFFFFF;
	text-decoration: none;
}

#container #content #main .content .title .bar_grey .button .label a:hover,
#container #content #main .content .buttons .button .label a:hover
{
	text-decoration: underline;
}

#container #content #main .content .buttons .text {
	height: 14px;
	margin-top: 6px;
	float: left;
}

#container #content #main .content .buttons .text {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 10px;
	color: #333333;
	line-height: 12px;
}

/* content // title // bar */

#container #content #main .content .title .bar_grey .dropdown {
	margin: 2px 2px 0 0;
	height: 22px;
	float: left;
}

#container #content #main .content .title .bar_grey .dropdown .corner-left {
	background-image: url(../media/layout_images/content_title_dropdown_corner-left.png);
	background-repeat: no-repeat;
	width: 5px;
	height: 22px;
	float: left;
}

#container #content #main .content .title .bar_grey .dropdown .corner-right {
	background-image: url(../media/layout_images/content_title_dropdown_corner-right.png);
	background-repeat: no-repeat;
	width: 26px;
	height: 22px;
	float: left;
}

#container #content #main .content .title .bar_grey .dropdown .label {
	background-image: url(../media/layout_images/content_title_dropdown_bg.gif);
	background-repeat: repeat-x;
	height: 22px;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 10px;
	color: #FFFFFF;
	font-weight: bold;
	line-height: 22px;
	text-shadow: 1px 1px #000000;
	padding-left: 5px;
	padding-right: 10px;
	float: left;
}

#container #content #main .content .title .bar_grey .dropdown .label a {
	color: #FFFFFF;
	text-decoration: none;
}

#container #content #main .content .title .bar_grey .dropdown .label a:hover {
	text-decoration: underline;
}

/* content // news */

#container #content #main .content .news {
	margin-top: 1px;
	border-bottom: 1px solid #333333;
	background-color: #EEEEEE;
}

#container #content #main .content .news h2 {
	margin: 0;
	padding: 5px 25px 5px 25px;
	background-image: url(../media/layout_images/content_h1_bg.png);
	font-family: Arial, Helvetica, sans-serif;
	font-size: 18px;
	color: #333333;
	line-height: 20px;
	font-weight: bold;
	text-transform: uppercase;
}

#container #content #main .content .news h2 a {
	color: #CC0000;
	font-style: italic;
	text-decoration: none;
}

#container #content #main .content .news h2 a:hover {
	text-decoration: underline;
}

#container #content #main .content .news h3 {
	margin: 0;
	padding: 0 25px 0 25px;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 14px;
	color: #AAAAAA;
	font-weight: normal;
	font-style: italic;
	line-height: 16px;
}

#container #content #main .content .news h3 a {
	color: #666666;
	text-decoration: none;
}

#container #content #main .content .news p {
	margin: 5px 0 10px 0;
	padding: 0 25px 0 25px;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 12px;
	color: #333333;
	line-height: 18px;
}

#container #content #main .content .news p a {
	font-family: Arial, Helvetica, sans-serif;
	font-weight: bold;
	font-size: 14px;
	color: #CC0000;
	text-decoration: none;
}

#container #content #main .content .news p a:hover {
	text-decoration: underline;
}

#container #content #main .content .news .image_placeholder,
#container #content #main .content .news img
{
	width: 150px;
	height: 100px;
	background-color: #333333;
	float: left;
	margin: 10px 10px 10px 25px;
}

/* content // pagination */

#container #content #main .content .pagination {
	background-image: url(../media/layout_images/content_title_bg.png);
	height: 26px;
	margin: 10px 0 0 0;
	overflow: hidden;
}

#container #content #main .content .pagination .previous {
	background-image: url(../media/layout_images/content_pagination_bg.png);
	margin: 0;
	padding: 0 25px 0 25px;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 14px;
	color: #FFFFFF;
	font-weight: bold;
	line-height: 26px;
	text-transform: uppercase;
	text-shadow: 1px 1px #000000;
	float: left;
}

#container #content #main .content .pagination .next {
	background-image: url(../media/layout_images/content_pagination_bg.png);
	margin: 0;
	padding: 0 25px 0 25px;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 14px;
	color: #FFFFFF;
	font-weight: bold;
	line-height: 26px;
	text-transform: uppercase;
	text-shadow: 1px 1px #000000;
	float: right;
}

#container #content #main .content .pagination .previous a,
#container #content #main .content .pagination .next a
{
	color: #FFFFFF;
	text-decoration: none;
}

#container #content #main .content .pagination .previous a:hover,
#container #content #main .content .pagination .next a:hover
{
	text-decoration: underline;
}

#container #content #main .content .pagination ul {
	list-style: none;
}

#container #content #main .content .pagination ul li {
	margin: 0;
	padding: 0 10px 0 10px;
	border-right: 1px solid #FFFFFF;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 14px;
	color: #333333;
	font-weight: bold;
	line-height: 26px;
	text-transform: uppercase;
	text-shadow: 1px 1px #FFFFFF;
	float: left;
}

#container #content #main .content .pagination ul li a {
	color: #333333;
	text-decoration: none;
}

#container #content #main .content .pagination ul li a:hover {
	text-decoration: underline;
}

#container #content #main .content .pagination ul li.selected {
	background-image: url(../media/layout_images/content_pagination_selected_bg.png);
	color: #FFFFFF;
	text-shadow: 1px 1px #000000;
}

#container #content #main .content .pagination ul li.selected a {
	color: #FFFFFF;
}

/* content // detail */

#container #content #main .content .detail {
	padding: 10px;
	border-bottom: 1px solid #333333;
	background-color: #E3E3E3;
}

#container #content #main .content .detail .image {
		background-image: url(../media/layout_images/content_detail_image_bg.gif);
		padding: 10px;
		margin: 0 10px 10px 0;
		float: left;
}

#container #content #main .content .detail .image .image_placeholder,
#container #content #main .content .detail .image img
{
	width: 280px;
	height: 245px;
	background-color: #333333;
}

#container #content #main .content .detail p {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 12px;
	color: #333333;
	line-height: 16px;
	padding: 0;
	margin: 0 0 10px 0;
	text-align: justify;
}

/* content // gallery */

#container #content #main .content .gallery {
	background-color: #E3E3E3;
	height: 95px;
}

#container #content #main .content .gallery .previous,
#container #content #main .content .gallery .next
{
	text-align: center;
	width: 50px;
	height: 95px;
	float: left;
}

#container #content #main .content .gallery .previous img,
#container #content #main .content .gallery .next img
{
	margin-top: 33px;
}

#container #content #main .content .gallery .images {
	width: 850px;
	height: 95px;
	padding: 0 5px 0 5px;
	overflow: hidden;
	float: left;
}

#container #content #main .content .gallery .images .image_placeholder,
#container #content #main .content .gallery .images img
{
	width: 92px;
	height: 70px;
	background-color: #333333;
	margin: 13px 7px 0 7px;
	float: left;
}

/* content // correlated */

#container #content #main .content .correlated .row {
	border-bottom: 1px solid #333333;
}

#container #content #main .content .correlated .row .item {
	width: 300px;
	margin: 15px 10px 15px 10px;
	float: left;
}

#container #content #main .content .correlated .row .item .image_placeholder,
#container #content #main .content .correlated .row .item img
{
	width: 92px;
	height: 70px;
	background-color: #333333;
	float: left;
	margin: 0 8px 3px 0;
}

#container #content #main .content .correlated .row .item h2 {
	margin: 0;
	padding: 0;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #333333;
	line-height: 14px;
	font-weight: bold;
	text-transform: uppercase;
}

#container #content #main .content .correlated .row .item a {
	color: #CC0000;
	font-style: italic;
	font-weight: bold;
	text-decoration: none;
}

#container #content #main .content .correlated .row .item a:hover {
	text-decoration: underline;
}

#container #content #main .content .correlated .row .item p {
	margin: 5px 0 0 0;
	padding: 0;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 11px;
	color: #333333;
	line-height: 14px;
}

/* search_result */

#container #content #main .search_result {
	text-align: left;
}

/* search_result // left */

#container #content #main .search_result .left {
	width: 600px;
	margin-right: 10px;
	float: left;
}

/* search_result // left // box */

#container #content #main .search_result .left .box,
#container #content #main .search_result .right .box
{
	border: 1px solid #999999;
	background-image: url(../media/layout_images/form_thumb_bg.png);
	margin-bottom: 5px;
}

#container #content #main .search_result .left .box.dark,
#container #content #main .search_result .right .box.dark
{
	background-image: url(../media/layout_images/content_pagination_selected_bg.png);
}

#container #content #main .search_result .left .box .header,
#container #content #main .search_result .right .box .header
{
	height: 24px;
	border-bottom: 1px solid #999999;
	background-image: url(../media/layout_images/artist_map_whitebar_bg.gif);
	background-repeat: repeat-x;
}

#container #content #main .search_result .left .box .header .icon,
#container #content #main .search_result .right .box .header .icon
{
	margin: 3px 0 0 10px;
	float: left;
}

#container #content #main .search_result .left .box .header h1,
#container #content #main .search_result .right .box .header h1
{
	margin: 0 5px 0 5px;
	padding: 0;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 11px;
	color: #000000;
	line-height: 23px;
	font-weight: bold;
	text-transform: uppercase;
	float: left;
}

#container #content #main .search_result .left .box .header h2,
#container #content #main .search_result .right .box .header h2
{
	margin: 0 5px 0 5px;
	padding: 0;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 11px;
	color: #000000;
	line-height: 23px;
	font-weight: bold;
	text-transform: lowercase;
	float: right;
}

#container #content #main .search_result .left .box .header h2 a,
#container #content #main .search_result .right .box .header h2 a
{
	color: #000000;
	font-weight: normal;
	text-transform: none;
	text-decoration: none;
}

#container #content #main .search_result .left .box .header h2 a:hover,
#container #content #main .search_result .right .box .header h2 a:hover
{
	text-decoration: underline;
}

#container #content #main .search_result .left .box .header h3,
#container #content #main .search_result .right .box .header h3
{
	margin: 0 5px 0 5px;
	padding: 0;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 11px;
	color: #000000;
	line-height: 23px;
	font-weight: bold;
	float: left;
}

#container #content #main .search_result .left .box .header h3 a,
#container #content #main .search_result .right .box .header h3 a
{
	color: #B3111F;
	text-decoration: none;
	text-transform: uppercase;
}

#container #content #main .search_result .left .box .header h3 a:hover,
#container #content #main .search_result .right .box .header h3 a:hover
{
	text-decoration: underline;
}

#container #content #main .search_result .left .box .header h1 span,
#container #content #main .search_result .right .box .header h1 span,
#container #content #main .search_result .left .box .header h2 span,
#container #content #main .search_result .right .box .header h2 span
{
	color: #B3111F;
}

#container #content #main .search_result .left .box .header h2 span,
#container #content #main .search_result .right .box .header h2 span
{
	font-weight: bold;
}

#container #content #main .search_result .left .box .header h1 small,
#container #content #main .search_result .right .box .header h1 small,
#container #content #main .search_result .left .box .header h2 small,
#container #content #main .search_result .right .box .header h2 small
{
	text-transform: none;
	font-size: 11px;
}

#container #content #main .search_result .left .box .url {
	background-color: #555555;
	background-image: url(../media/layout_images/bg_calendar_td.png);
	padding: 5px;
}

#container #content #main .search_result .left .box .url h2 {
	margin: 0;
	padding: 0;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 10px;
	color: #000000;
	line-height: 15px;
	font-weight: bold;
	text-transform: uppercase;
}

#container #content #main .search_result .left .box .url a {
	margin: 0;
	padding: 0;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 10px;
	color: #FFFFFF;
	line-height: 15px;
	text-transform: lowercase;
	font-style: italic;
	text-decoration: none;
}

#container #content #main .search_result .left .box .url a:hover {
	text-decoration: underline;
}

#container #content #main .search_result .left .box .social {
	background-image: url(../media/layout_images/folder_title_bg.png);
	padding: 5px;
}

#container #content #main .search_result .left .box .social img {
	margin: 0 4px 0 0;
	float: left;
}

#container #content #main .search_result .left .box .social cite {
	margin: 0;
	padding: 0;
	width: 180px;
	float: left;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 9px;
	color: #DDDDDD;
	line-height: 10px;
	font-weight: normal;
	font-style: normal;
}

#container #content #main .search_result .left .box .folder {
	padding: 10px 0 10px 10px;
}

#container #content #main .search_result .left .box .folder.landscape {
	padding: 10px 0 0 10px;
}

#container #content #main .search_result .left .box .folder.portrait {
	padding: 10px 0 10px 10px;
}

#container #content #main .search_result .left .box .folder .label {
	width: 130px;
	background-image: url(../media/layout_images/folder_title_bg.png);
	float: left;
}

#container #content #main .search_result .left .box .folder .label ul {
	margin: 5px 5px 0 5px;
	list-style: none;
}

#container #content #main .search_result .left .box .folder .label ul li {
	margin: 0 0 5px 0;
	padding: 0;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 12px;
	color: #FFFFFF;
	line-height: 15px;
}

#container #content #main .search_result .left .box .folder .image {
	width: 192px;
	float: left;
}

#container #content #main .search_result .left .box .folder.landscape .image {
	width: 341px;
}

#container #content #main .search_result .left .box .folder.portrait .image {
	margin-bottom: 10px;
	width: auto;
	float: none;
}

#container #content #main .search_result .left .box .folder .image img {
	border: 1px solid #EEEEEE;
}

#container #content #main .search_result .left .box .folder.landscape .image img {
	border: 2px solid #CCCCCC;
}

#container #content #main .search_result .left .box .folder .image .social img {
	margin: 4px 4px 0 0;
	float: left;
	border: none;
}

#container #content #main .search_result .left .box .folder .image .pagination {
	background-image: url(../media/layout_images/folder_title_bg.png);
	padding: 5px;
}

#container #content #main .search_result .left .box .folder .image .pagination img {
	border: none;
	float: left;
}

#container #content #main .search_result .left .box .folder .image .pagination h3 {
	margin: 0 5px 0 5px;
	padding: 0;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 10px;
	color: #FFFFFF;
	line-height: 14px;
	font-weight: bold;
	float: left;
}

#container #content #main .search_result .left .box .folder .image .pagination h3 strong {
	color: #B3111F;
}

#container #content #main .search_result .left .box .folder .content {
	width: 396px;
	float: left;
}

#container #content #main .search_result .left .box .folder.landscape .content {
	width: 247px;
}

#container #content #main .search_result .left .box .folder.portrait .content {
	margin-left: 3px;
	width: 455px;
}

#container #content #main .search_result .left .box .folder .content .title {
	background-image: url(../media/layout_images/folder_title_bg.png);
	border: 0;
	margin: 0;
	padding: 0 5px 0 5px;
}

#container #content #main .search_result .left .box .folder .content .title h1 {
	margin: 0;
	padding: 0;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 17px;
	color: #B3111F;
	line-height: 20px;
	font-weight: bold;
	text-transform: uppercase;
}

#container #content #main .search_result .left .box .folder .content .title h2 {
	margin: 0;
	padding: 0;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 12px;
	color: #FFFFFF;
	line-height: 20px;
	font-weight: bold;
}

#container #content #main .search_result .left .box .folder .content .title h2 a {
	color: #B3111F;
	font-size: 10px;
	text-decoration: none;
}

#container #content #main .search_result .left .box .folder .content .title h2 a:hover {
	text-decoration: underline;
}

#container #content #main .search_result .left .box .folder .content h3 {
	margin: 0;
	padding: 0 5px 0 5px;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 11px;
	color: #FFFFFF;
	line-height: 20px;
	font-weight: normal;
	text-transform: uppercase;
}

#container #content #main .search_result .left .box .folder .content h3 strong {
	text-transform: none;
}

#container #content #main .search_result .left .box .folder .content .links {
	background-image: url(../media/layout_images/folder_title_bg.png);
	font-family: Verdana, Geneva, sans-serif;
	font-size: 11px;
	color: #FFFFFF;
	line-height: 20px;
	font-weight: bold;
	padding: 5px;
}

#container #content #main .search_result .left .box .folder .content .links a {
	text-decoration: none;
	color: #EEEEEE;
}

#container #content #main .search_result .left .box .folder .content .links a:hover {
	text-decoration: underline;
}

#container #content #main .search_result .left .box .folder .content .website {
	background-image: url(../media/layout_images/folder_title_bg.png);
	font-family: Verdana, Geneva, sans-serif;
	font-size: 11px;
	color: #FFFFFF;
	line-height: 20px;
	font-weight: bold;
	text-transform: uppercase;
	padding: 5px;
}

#container #content #main .search_result .left .box .folder .content .website a {
	text-decoration: none;
	text-transform: none;
	color: #B3111F;
}

#container #content #main .search_result .left .box .folder .content .website a:hover {
	text-decoration: underline;
}

#container #content #main .search_result .left .box .folder .content p,
#container #content #main .search_result .left .box .description p
{
	margin: 5px;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 12px;
	color: #FFFFFF;
	text-align: justify;
	line-height: 15px;
}

#container #content #main .search_result .left .box .description p {
	margin: 5px 5px 5px 10px;
}

#container #content #main .search_result .left .box .buttons {
	margin: 0 0 0 10px;
}

#container #content #main .search_result .left .box .buttons .button {
	float: left;
	width: 291px;
	margin: 3px 3px 0 0;
	padding: 0;
	cursor: pointer;
	background-color: #7E1E2D;
	background-image: url(../media/layout_images/artist_map_redbar_bg.png);
	background-repeat: repeat-x;
}

#container #content #main .search_result .left .box .buttons .button h3 {
	margin: 0;
	padding: 0 5px 0 5px;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 11px;
	color: #FFFFFF;
	font-weight: normal;
	line-height: 19px;
	text-decoration: none;
	text-transform: uppercase;
}

#container #content #main .search_result .left .box .buttons .button h3.opened {
	background-image: url(../media/layout_images/topbar_arrow_down.png);
	background-repeat: no-repeat;
	background-position: right center;
}

#container #content #main .search_result .left .box .buttons .button h3 a {
	color: #FFFFFF;
	text-decoration: none;
}

#container #content #main .search_result .left .box .buttons .button h3 a:hover {
	text-decoration: underline;
}

#container #content #main .search_result .left .box .folder .content .continue {
	background-image: url(../media/layout_images/folder_title_bg.png);
	font-family: Verdana, Geneva, sans-serif;
	font-size: 11px;
	color: #B3111F;
	line-height: 20px;
	font-weight: bold;
	text-transform: uppercase;
	padding: 0 5px 0 5px;
}

#container #content #main .search_result .left .box .folder .content .continue a {
	text-decoration: none;
	color: #B3111F;
}

#container #content #main .search_result .left .box .folder .content .continue a:hover {
	text-decoration: underline;
}

#container #content #main .search_result .left .box .folder .content ul {
	list-style: none;
	margin: 0 0 0 5px;
}

#container #content #main .search_result .left .box .folder .content ul li {
	margin: 3px 0 0 0;
	padding: 0;
	cursor: pointer;
	background-color: #7E1E2D;
	background-image: url(../media/layout_images/artist_map_redbar_bg.png);
	background-repeat: repeat-x;
}

#container #content #main .search_result .left .box .folder .content ul li h4 {
	margin: 0;
	padding: 0 5px 0 5px;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 11px;
	color: #FFFFFF;
	font-weight: normal;
	line-height: 19px;
	text-decoration: none;
	text-transform: uppercase;
}

#container #content #main .search_result .left .box .folder .content ul li h4.opened {
	background-image: url(../media/layout_images/topbar_arrow_down.png);
	background-repeat: no-repeat;
	background-position: right center;
}

#container #content #main .search_result .left .box .folder .content ul li h4 a {
	color: #FFFFFF;
	text-decoration: none;
}

#container #content #main .search_result .left .box .folder .content ul li h4 a:hover {
	text-decoration: underline;
}

#container #content #main .search_result .left .box .folder .content ul li ul {
	margin: 0;
	padding: 0;
	background-color: #FFFFFF;
}

#container #content #main .search_result .left .box .folder .content ul li ul li {
	background: none;
	padding: 0 5px 0 5px;
	margin: 0;
}

#container #content #main .search_result .left .box .folder .content ul li ul li h5,
#container #content #main .search_result .left .box .folder .content ul li ul li h6
{
	margin: 0;
	padding: 0;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 11px;
	color: #000000;
	font-weight: normal;
	line-height: 15px;
	text-decoration: none;
	text-transform: uppercase;
	float: left;
}

#container #content #main .search_result .left .box .folder .content ul li ul li h5 {
	background-image: url(../media/layout_images/form_red_bullet.png);
	background-repeat: no-repeat;
	background-position: left center;
	padding-left: 9px;
}

#container #content #main .search_result .left .box .folder .content ul li ul li h6 {
	float: right;
	text-transform: none;
	color: #B3111F;
	font-weight: bold;
	font-size: 10px;
}

#container #content #main .search_result .left .box .folder .content ul li ul li h5 a,
#container #content #main .search_result .left .box .folder .content ul li ul li h6 a
{
	color: #000000;
	text-decoration: none;
}

#container #content #main .search_result .left .box .folder .content ul li ul li h6 a {
	color: #B3111F;
}

#container #content #main .search_result .left .box .folder .content ul li ul li h5 a:hover,
#container #content #main .search_result .left .box .folder .content ul li ul li h6 a:hover
{
	text-decoration: underline;
}

#container #content #main .search_result .left .box .container {
	padding: 5px;
}

#container #content #main .search_result .left .box .container .result .item {
	margin-bottom: 3px;
	background-color: #FFFFFF;
	padding: 5px;
}

#container #content #main .search_result .left .box .container .result .item h1 {
	margin: 0px;
	padding: 0px;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 13px;
	color: #B3111F;
	line-height: 15px;
	font-weight: bold;
}

#container #content #main .search_result .left .box .container .result .item h1 a {
	color: #B3111F;
	text-decoration: none;
}

#container #content #main .search_result .left .box .container .result .item h1 a:hover {
	text-decoration: underline;
}

#container #content #main .search_result .left .box .container .result .item p {
	margin: 5px 0 5px 0;
	padding: 0px;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 13px;
	color: #000000;
	line-height: 15px;
	font-weight: normal;
	text-align: justify;
}

#container #content #main .search_result .left .box .container .result .item h2 {
	margin: 0px;
	padding: 0px;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 11px;
	color: #000000;
	line-height: 15px;
	font-weight: bold;
	text-transform: uppercase;
}

#container #content #main .search_result .left .box .container .result .item h2 a {
	color: #B3111F;
	text-decoration: none;
	text-transform: lowercase;
}

#container #content #main .search_result .left .box .container .result .item h2 a:hover {
	text-decoration: underline;
}

#container #content #main .search_result .left .box .container .result .item .functions {
	margin-top: 10px;
}

#container #content #main .search_result .left .box .container .result .item .functions .left {
	width: 63px;
	margin-right: 5px;
	float: left;
}

#container #content #main .search_result .left .box .container .result .item .functions .left img {
	margin-right: 5px;
	float: left;
}

#container #content #main .search_result .left .box .container .result .item .functions .right {
	width: 510px;
	float: left;
}

#container #content #main .search_result .left .box .container .result .item .functions .right ul {
	list-style: none;
}

#container #content #main .search_result .left .box .container .result .item .functions .right ul li {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 10px;
	color: #000000;
	line-height: 20px;
	font-weight: normal;
}

#container #content #main .search_result .left .box .container .result .item .functions .right ul li strong {
	text-transform: uppercase;
	margin-right: 5px;
	float: left;
}

#container #content #main .search_result .left .box .container .result .item .functions .right ul li .stars {
	float: left;
}

#container #content #main .search_result .left .box .container .result .item .functions .right ul li .stars img {
	margin-right: 2px;
	float: left;
}

#container #content #main .search_result .left .box .container .result .item .functions .right ul li span {
	margin-right: 5px;
	color: #666666;
	float: left;
}

#container #content #main .search_result .left .box .container .result .item .functions .right ul li a {
	color: #000000;
	text-decoration: none;
	text-transform: uppercase;
	font-weight: bold;
	margin-right: 5px;
	float: left;
}

#container #content #main .search_result .left .box .container .result .item .functions .right ul li a:hover {
	text-decoration: underline;
}

#container #content #main .search_result .left .box .container .result .item .functions .right ul li a.green {
	color: #41662F;
}

#container #content #main .search_result .left .box .container .result .item .functions .right ul li a.red {
	color: #B3111F;
}

#container #content #main .search_result .left .box .container .result .item .functions .right ul li cite {
	margin: 0;
	padding: 0;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 12px;
	color: #41662F;
	line-height: 20px;
	font-style: italic;
	font-weight: bold;
}

#container #content #main .search_result .left .box .container .pagination {
	background-image: url(../media/layout_images/content_title_bg.png);
	height: 20px;
	border-top: 3px solid #FFFFFF;
	border-bottom: 3px solid #FFFFFF;
	margin: 0;
	overflow: hidden;
}

#container #content #main .search_result .left .box .container .pagination .previous {
	background-image: url(../media/layout_images/content_pagination_bg.png);
	margin: 0;
	padding: 0 15px 0 15px;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 11px;
	color: #FFFFFF;
	font-weight: bold;
	line-height: 20px;
	text-transform: uppercase;
	text-shadow: 1px 1px #000000;
	float: left;
}

#container #content #main .search_result .left .box .container .pagination .next {
	background-image: url(../media/layout_images/content_pagination_bg.png);
	margin: 0;
	padding: 0 15px 0 15px;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 11px;
	color: #FFFFFF;
	font-weight: bold;
	line-height: 20px;
	text-transform: uppercase;
	text-shadow: 1px 1px #000000;
	float: right;
}

#container #content #main .search_result .left .box .container .pagination .previous a,
#container #content #main .search_result .left .box .container .pagination .next a
{
	color: #FFFFFF;
	text-decoration: none;
}

#container #content #main .search_result .left .box .container .pagination .previous a:hover,
#container #content #main .search_result .left .box .container .pagination .next a:hover
{
	text-decoration: underline;
}

#container #content #main .search_result .left .box .container .pagination ul {
	list-style: none;
}

#container #content #main .search_result .left .box .container .pagination ul li {
	margin: 0;
	padding: 0 10px 0 10px;
	border-right: 1px solid #FFFFFF;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 11px;
	color: #333333;
	font-weight: bold;
	line-height: 20px;
	text-transform: uppercase;
	text-shadow: 1px 1px #FFFFFF;
	float: left;
}

#container #content #main .search_result .left .box .container .pagination ul li a {
	color: #333333;
	text-decoration: none;
}

#container #content #main .search_result .left .box .container .pagination ul li a:hover {
	text-decoration: underline;
}

#container #content #main .search_result .left .box .container .pagination ul li.selected {
	background-image: url(../media/layout_images/content_pagination_selected_bg.png);
	color: #FFFFFF;
	text-shadow: 1px 1px #000000;
}

#container #content #main .search_result .left .box .container .pagination ul li.selected a {
	color: #FFFFFF;
}

#container #content #main .search_result .left .colums .cols {
	float: left;
}

#container #content #main .search_result .left .colums .cols.first {
	width: 295px;
	margin-right: 5px;
}

#container #content #main .search_result .left .colums .cols.second {
	width: 295px;
}

#container #content #main .search_result .left .colums .cols .box .container .result .item {
	margin-bottom: 3px;
	background-color: #FFFFFF;
	padding: 5px;
}

#container #content #main .search_result .left .colums .cols .box .container .result .item h1 {
	font-size: 11px;
	line-height: 15px;
	color: #000000;
}

#container #content #main .search_result .left .colums .cols .box .container .result .item p {
	font-size: 10px;
	line-height: 12px;
}

#container #content #main .search_result .left .colums .cols .box .container .result .item h2 {
	font-size: 10px;
	line-height: 15px;
	height: 15px;
	overflow: hidden;
}

#container #content #main .search_result .left .box .facebook,
#container #content #main .search_result .right .box .facebook
{
	height: 250px;
	margin: 8px;
	background: #FFFFFF url(../media/layout_images/facebook_icon.png) no-repeat center center;
}

#container #content #main .search_result .left .box .map,
#container #content #main .search_result .right .box .map
{
	height: 195px;
	margin: 5px;
	border: 1px solid #999999;
	background: #FFFFFF url(../media/content_images/search_detail/artist_folder_map.jpg) no-repeat left center;
}

#container #content #main .search_result .left .box .map2,
#container #content #main .search_result .right .box .map2
{
	height: 195px;
	margin: 5px;
	border: 1px solid #999999;
	background: #FFFFFF url(../media/content_images/search_detail/luogo_folder_map.jpg) no-repeat left center;
}

#container #content #main .search_result .left .box .wheel {
	width: 588px;
	height: 340px;
	margin: 5px;
	background: #FFFFFF url(../media/layout_images/flash_icon.png) no-repeat center center;
}

#container #content #main .search_result .left .box .works {
	background-image: url(../media/layout_images/content_h1_bg.png);
}

#container #content #main .search_result .left .box .works .scroll {
	width: 30px;
	height: 150px;
	background-color: #AE1E2D;
	background-repeat: repeat-y;
	float: left;
}

#container #content #main .search_result .left .box .works .scroll.prev {
	background-image: url(../media/layout_images/artist_folder_arrow_bg-left.png);
	background-position: left;
}

#container #content #main .search_result .left .box .works .scroll.next {
	background-image: url(../media/layout_images/artist_folder_arrow_bg-right.png);
	background-position: right;
}

#container #content #main .search_result .left .box .works .scroll img {
	padding: 62px 4px 62px 3px;
}

#container #content #main .search_result .left .box .works .images {
	width: 538px;
	height: 150px;
	overflow: hidden;
	float: left;
}

#container #content #main .search_result .left .box .works .images .thumb {
	width: 153px;
	margin: 5px 13px 5px 13px;
	float: left;
}

#container #content #main .search_result .left .box .works .images .thumb img {
	border: 2px solid #FFFFFF;
}

#container #content #main .search_result .left .box .works .images .thumb h1 {
	margin: 0;
	padding: 0 2px 0 2px;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 11px;
	color: #000000;
	font-weight: bold;
	line-height: 14px;
	text-shadow: 1px 1px #FFFFFF;
}

#container #content #main .search_result .left .box .works .images .thumb h1 a {
	color: #000000;
	text-decoration: none;
}

#container #content #main .search_result .left .box .works .images .thumb h1 a:hover {
	text-decoration: underline;
}

#container #content #main .search_result .left .box .works .images .thumb h2 {
	margin: 0;
	padding: 0 2px 0 2px;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 10px;
	color: #B3111F;
	font-weight: bold;
	line-height: 13px;
	text-shadow: 1px 1px #FFFFFF;
}

#container #content #main .search_result .left .box .works .images .thumb h3 {
	margin: 0;
	padding: 0 2px 0 2px;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 10px;
	color: #000000;
	font-weight: normal;
	line-height: 13px;
	text-shadow: 1px 1px #FFFFFF;
}

#container #content #main .search_result .left .box .works .images .thumb h4 {
	margin: 0;
	padding: 0 2px 0 2px;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 10px;
	color: #000000;
	font-weight: bold;
	line-height: 13px;
	text-shadow: 1px 1px #FFFFFF;
}

/* search_result // right */

#container #content #main .search_result .right {
	width: 350px;
	float: left;
}

#container #content #main .search_result .right .box .buttons {
	padding: 0 5px 3px 5px;
}

#container #content #main .search_result .right .box .buttons .black_smallbutton {
	margin: 0;
}

#container #content #main .search_result .right .box .buttons .black_smallbutton h3 a span {
	color: #B3111F;
	text-transform: none;
	font-size: 10px;
	font-weight: bold;
}

#container #content #main .search_result .right .box .accordion ul {
	margin: 0 5px 3px 5px;
	list-style: none;
}

#container #content #main .search_result .right .box .accordion ul li {
	margin: 3px 0 0 0;
	padding: 0;
	background-color: #222222;
	background-image: url(../media/layout_images/artist_map_graybar_bg.png);
	background-repeat: repeat-x;
	cursor: pointer;
}

#container #content #main .search_result .right .box .accordion ul li.opened {
	background-color: #7E1E2D;
	background-image: url(../media/layout_images/artist_map_redbar_bg.png);
}

#container #content #main .search_result .right .box .accordion ul li fieldset {
	background-color: #FFFFFF;
	margin: 0;
	padding: 5px 5px 0 5px;
	border: none;
	text-align: left;
}

#container #content #main .search_result .right .box .accordion ul li fieldset.submit {
	text-align: right;
}

#container #content #main .search_result .right .box .accordion ul li fieldset label {
	margin: 0;
	padding: 0;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 10px;
	color: #333333;
	font-weight: bold;
	line-height: 15px;
	text-transform: uppercase;
}

#container #content #main .search_result .right .box .accordion ul li fieldset input,
#container #content #main .search_result .right .box .accordion ul li fieldset textarea
{
	margin: 0;
	padding: 5px;
	width: 315px;
	border: 1px solid #666666;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 10px;
	color: #333333;
	line-height: 15px;
	text-decoration: none;
	outline: none;
	resize: none;
	background: #FFFFFF url(../media/layout_images/calendario_bianco_bg.png);
}

#container #content #main .search_result .right .box .accordion ul li fieldset textarea {
	height: 100px;
}

#container #content #main .search_result .right .box .accordion ul li fieldset.submit input {
	width: auto;
	height: 22px;
	background-image: url(../media/layout_images/personal_profile_button_bg.gif);
	background-repeat: repeat-x;
	overflow: hidden;
	border: none;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 11px;
	font-weight: normal;
	color: #CCCCCC;
	line-height: 20px;
	text-decoration: none;
	text-transform: uppercase;
	padding: 0 15px 0 15px;
	cursor: pointer;
	margin-bottom: 5px;
}

#container #content #main .search_result .right .box .accordion ul li h1 {
	margin: 0;
	padding: 0 5px 0 5px;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 11px;
	color: #FFFFFF;
	font-weight: normal;
	line-height: 19px;
	text-decoration: none;
	text-transform: uppercase;
}

#container #content #main .search_result .right .box .accordion ul li h1 a {
	color: #FFFFFF;
	text-decoration: none;
}

#container #content #main .search_result .right .box .accordion ul li h1 a:hover {
	text-decoration: underline;
}

#container #content #main .search_result .right .box .wheel {
	width: 331px;
	height: 634px;
	margin: 8px;
	background: #FFFFFF url(../media/layout_images/flash_icon.png) no-repeat center center;
}

#container #content #main .search_result .right .box .facebook_follow {
	margin: 3px;
}

#container #content #main .search_result .right .box .facebook_follow .left {
	width: 142px;
	height: 58px;
	margin-right: 3px;
	float: left;
}

#container #content #main .search_result .right .box .facebook_follow .right {
	width: 197px;
}

#container #content #main .search_result .right .box .facebook_follow .right h1 {
	margin: 0;
	padding: 0;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 12px;
	color: #213D8F;
	font-weight: bold;
	line-height: 20px;
	text-decoration: none;
}

#container #content #main .search_result .right .box .facebook_follow .right img {
	float: left;
}

#container #content #main .search_result .right .box .facebook_follow .right h4 {
	margin: 0 0 0 5px;
	padding: 0;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 10px;
	color: #000000;
	font-weight: normal;
	line-height: 22px;
	text-decoration: none;
	float: left;
}

#container #content #main .search_result .right .box .sources {
	margin: 3px;
}

#container #content #main .search_result .right .box .sources .selected h1 {
	height: 18px;
	margin: 0;
	padding: 0 5px 0 5px;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 11px;
	text-transform: uppercase;
	color: #FFFFFF;
	font-weight: normal;
	line-height: 18px;
	background: #7C202C url(../media/layout_images/bg_dropdown.gif) repeat-x;
}

#container #content #main .search_result .right .box .sources .selected h2 {
	height: 26px;
	margin: 0;
	padding: 0 5px 0 5px;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 11px;
	color: #FFFFFF;
	font-weight: bold;
	line-height: 26px;
	background: url(../media/layout_images/form_button_bg.gif) repeat-x;
}

#container #content #main .search_result .right .box .sources .selected h2 a {
	color: #FFFFFF;
	font-weight: normal;
	text-decoration: none;
}

#container #content #main .search_result .right .box .sources .selected h2 a:hover {
	text-decoration: underline;
}

#container #content #main .search_result .right .box .sources .selected .rating {
	height: 26px;
	background: url(../media/layout_images/form_button_bg.gif) repeat-x;
	margin: 1px 0 3px 0;
	float: left;
}

#container #content #main .search_result .right .box .sources .selected .rating h3 {
	height: 26px;
	margin: 0;
	padding: 0 5px 0 5px;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 11px;
	color: #FFFFFF;
	font-weight: bold;
	line-height: 26px;
	background: url(../media/layout_images/form_button_bg.gif) repeat-x;
	float: left;
}

#container #content #main .search_result .right .box .sources .selected .rating .stars {
	float: left;
	margin: 4px 5px 0 0;
}

#container #content #main .search_result .right .box .suggestion {
	margin: 5px;
}

#container #content #main .search_result .right .box .suggestion .item {
	padding: 5px;
	border: 1px solid #999999;
	background-image: url(../media/layout_images/calendario_bianco_bg.png);
	margin: 0 0 5px 0;
}

#container #content #main .search_result .right .box .suggestion .item .image {
	width: 42px;
	float: left;
}

#container #content #main .search_result .right .box .suggestion .item .image img {
	border: 1px solid #333333;
}

#container #content #main .search_result .right .box .suggestion .item .text {
	margin: 0 0 0 5px;
	width: 279px;
	float: left;
}

#container #content #main .search_result .right .box .suggestion .item .text h1 {
	margin: 0;
	padding: 0px;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 11px;
	text-transform: uppercase;
	color: #B3111F;
	font-weight: bold;
	line-height: 15px;
}

#container #content #main .search_result .right .box .suggestion .item .text h1 a {
	color: #B3111F;
	text-decoration: none;
}

#container #content #main .search_result .right .box .suggestion .item .text h1 a:hover {
	text-decoration: underline;
}

#container #content #main .search_result .right .box .suggestion .item .text h2 {
	margin: 0;
	padding: 0px;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 11px;
	color: #000000;
	font-weight: bold;
	line-height: 15px;
}

#container #content #main .search_result .right .box .suggestion .item .text p {
	margin: 0;
	padding: 0px;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 9px;
	color: #000000;
	font-weight: normal;
	line-height: 15px;
}

#container #content #main .search_result .right .box .suggestion .item .text p.medium {
	font-size: 11px;
}

#container #content #main .search_result .right .box .news {
	margin: 5px;
}

#container #content #main .search_result .right .box .news .item {
	border: 1px solid #999999;
	background-color: #FFFFFF;
	margin-bottom: 5px;
}

#container #content #main .search_result .right .box .news .item h1 {
	margin: 0;
	padding: 5px;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 11px;
	text-transform: uppercase;
	color: #FFFFFF;
	font-weight: normal;
	line-height: 15px;
	background: #7C202C url(../media/layout_images/bg_dropdown.gif) repeat-x;
}

#container #content #main .search_result .right .box .news .item .date {
	margin: 5px;
	width: 80px;
	height: 20px;
	overflow: hidden;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 11px;
	text-transform: uppercase;
	color: #000000;
	font-weight: bold;
	line-height: 20px;
	float: left;
}

#container #content #main .search_result .right .box .news .item .url {
	margin: 5px;
	width: 225px;
	height: 20px;
	overflow: hidden;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 11px;
	color: #000000;
	font-weight: normal;
	line-height: 20px;
	float: left;
}

#container #content #main .search_result .right .box .news .item .url a {
	color: #B3111F;
	text-decoration: none;
}

#container #content #main .search_result .right .box .news .item .url a:hover {
	text-decoration: underline;
}

#container #content #main .search_result .right .box .news .item p {
	margin: 5px;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 12px;
	color: #000000;
	font-weight: normal;
	line-height: 15px;
	text-align: justify;
}

#container #content #main .search_result .right .box .news .item p img {
	margin: 5px 5px 0 0;
	border: 1px solid #666666;
}

#container #content #main .search_result .right .box .news .item p a {
	font-size: 10px;
	text-transform: uppercase;
	color: #B3111F;
	text-decoration: none;
	font-weight: bold;
}

#container #content #main .search_result .right .box .news .item p a:hover {
	text-decoration: underline;
}

/* map */

#container #content #main .map {
	text-align: left;
}

/* map // left */

#container #content #main .map .left {
	width: 670px;
	float: left;
}

/* map // left // box */

#container #content #main .map .left .box {
	margin: 0 5px 5px 0;
}

#container #content #main .map .left .box .header,
#container #content #main .map .right .box .header
{
	height: 24px;
	border-top: 1px solid #222222;
	border-left: 1px solid #222222;
	border-right: 1px solid #222222;
	background-image: url(../media/layout_images/artist_map_whitebar_bg.gif);
	background-repeat: repeat-x;
}

#container #content #main .map .left .box .header .icon,
#container #content #main .map .right .box .header .icon
{
	margin: 3px 5px 0 10px;
	float: left;
}

#container #content #main .map .left .box .header .pagination,
#container #content #main .map .right .box .header .pagination
{
	height: 25px;
	float: left;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 11px;
	color: #000000;
	line-height: 23px;
	font-weight: bold;
	text-transform: uppercase;
}

#container #content #main .map .left .box .header .pagination a,
#container #content #main .map .right .box .header .pagination a
{
	color: #000000;
	text-decoration: none;
}

#container #content #main .map .left .box .header .pagination a:hover,
#container #content #main .map .right .box .header .pagination a:hover
{
	text-decoration: underline;
}

#container #content #main .map .left .box .header .pagination span,
#container #content #main .map .right .box .header .pagination span
{
	color: #B3111F;
}

#container #content #main .map .left .box .header .title,
#container #content #main .map .right .box .header .title
{
	height: 25px;
	float: left;
}

#container #content #main .map .left .box .header .title h2,
#container #content #main .map .right .box .header .title h2
{
	margin: 0;
	padding: 0;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 11px;
	color: #000000;
	line-height: 23px;
	font-weight: bold;
	text-transform: uppercase;
}

#container #content #main .map .left .box .header .legend,
#container #content #main .map .right .box .header .legend
{
	margin-right: 10px;
	height: 25px;
	float: right;
}

#container #content #main .map .left .box .header .legend h4,
#container #content #main .map .right .box .header .legend h4
{
	margin: 0;
	padding: 0;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 9px;
	color: #B3111F;
	line-height: 25px;
	font-weight: bold;
}

#container #content #main .map .left .box .container {
	background-color: #222222;
	padding: 5px;
}

#container #content #main .map .left .box .container #custom_map {
	width: 651px;
	height: 551px;
	border: 2px solid #999999;
}

#container #content #main .map .left .box .container #custom_map #map_tooltip {
	display: none;
	position: absolute;
	width: 329px;
}

#container #content #main .map .left .box .container #custom_map #map_tooltip .top {
	width: 329px;
	height: 25px;
	background-image: url(../media/layout_images/calendario_map_tooltip_top.png);
	background-repeat: no-repeat;
}

#container #content #main .map .left .box .container #custom_map #map_tooltip .top .close {
	margin: 0 15px 0 15px;
	text-align: right;
	cursor: pointer;
}

#container #content #main .map .left .box .container #custom_map #map_tooltip .top .close h4 {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 11px;
	color: #336699;
	font-weight: normal;
	line-height: 30px;
	text-decoration: none;
}

#container #content #main .map .left .box .container #custom_map #map_tooltip .top .close h4:hover {
	text-decoration: underline;
}

#container #content #main .map .left .box .container #custom_map #map_tooltip .content {
	width: 329px;
	height: 150px;
	background-image: url(../media/layout_images/calendario_map_tooltip_bg.png);
	background-repeat: repeat-y;
	overflow: hidden;
}

#container #content #main .map .left .box .container #custom_map #map_tooltip .content p {
	margin: 0;
	padding: 0;
	text-align: center;
}

#container #content #main .map .left .box .container #custom_map #map_tooltip .bottom {
	width: 329px;
	height: 90px;
	background-image: url(../media/layout_images/calendario_map_tooltip_bottom.png);
	background-repeat: no-repeat;
}

#container #content #main .map .left .box .container #custom_map #map_tooltip h1 {
	margin: 0 15px 0 15px;
	padding: 0;
	height: 20px;
	background-color: #222222;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 12px;
	color: #B3111F;
	font-weight: bold;
	line-height: 20px;
	text-transform: uppercase;
	text-align: center;
}

#container #content #main .map .left .box .container #custom_map #map_tooltip h2 {
	margin: 0 15px 0 15px;
	padding: 0;
	height: 20px;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 11px;
	color: #000000;
	font-weight: normal;
	line-height: 20px;
}

#container #content #main .map .left .box .container #custom_map #map_tooltip .items {
	margin: 0 0 0 15px;
	padding: 0;
	height: 105px;
	overflow: hidden;
}

#container #content #main .map .left .box .container #custom_map #map_tooltip .items .item {
	width: 280px;
	padding: 5px 0 5px 0;
	border-bottom: 1px dashed #CCCCCC;
}

#container #content #main .map .left .box .container #custom_map #map_tooltip .items .item img {
	float: left;
	margin: 0 5px 0 0;
}

#container #content #main .map .left .box .container #custom_map #map_tooltip .items .item h3 {
	margin: 0 0 5px 0;
	padding: 0;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 12px;
	color: #000000;
	font-weight: bold;
	line-height: 12px;
}

#container #content #main .map .left .box .container #custom_map #map_tooltip .items .item a {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 11px;
	color: #336699;
	font-weight: normal;
	line-height: 15px;
	text-decoration: none;
}

#container #content #main .map .left .box .container #custom_map #map_tooltip .items .item a:hover {
	text-decoration: underline;
}

#container #content #main .map .left .box .container #custom_events {
	display: none;
}

/* map // right */

#container #content #main .map .right {
	width: 290px;
	float: left;
}

#container #content #main .map .right .accordion {
	background-color: #CCCCCC;
	border-left: 1px solid #666666;
	border-right: 1px solid #666666;
	border-bottom: 1px solid #666666;
	padding: 4px 4px 8px 4px;
}

#container #content #main .map .right .accordion ul {
	list-style: none;
}

#container #content #main .map .right .accordion ul li {
	margin: 4px 0 0 0;
	padding: 0;
	background-color: #222222;
	background-image: url(../media/layout_images/artist_map_graybar_bg.png);
	background-repeat: repeat-x;
	cursor: pointer;
}

#container #content #main .map .right .accordion ul li.opened {
	background-color: #7E1E2D;
	background-image: url(../media/layout_images/artist_map_redbar_bg.png);
}

#container #content #main .map .right .accordion ul li h1 {
	margin: 0;
	padding: 0 20px 0 5px;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 11px;
	color: #FFFFFF;
	font-weight: normal;
	line-height: 19px;
	text-decoration: none;
	text-transform: uppercase;
	background-image: url(../media/layout_images/artist_map_graybar_corner-right.png);
	background-repeat: no-repeat;
	background-position: right;
}

#container #content #main .map .right .accordion ul li.opened h1 {
	background-image: url(../media/layout_images/artist_map_redbar_corner-right.png);
}

#container #content #main .map .right .accordion ul li h1 span
{
	text-transform: none;
	color: #FFCC00;
}

#container #content #main .map .right .accordion ul li ul li {
	margin: 0;
	padding: 0;
	background: #FFFFFF;
	border-left: 1px solid #666666;
	border-right: 1px solid #666666;
	border-bottom: 1px solid #666666;
}

#container #content #main .map .right .accordion ul li ul li.opened {
	background-color: #FFFFFF;
	background-image: none;
}

#container #content #main .map .right .accordion ul li ul li h2 {
	margin: 0;
	padding: 4px 5px 4px 18px;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 11px;
	color: #B3111F;
	font-weight: bold;
	line-height: 11px;
	text-decoration: none;
	text-transform: uppercase;
	background-image: url(../media/layout_images/artist_map_arrow.png);
	background-repeat: no-repeat;
	background-position: 5px 6px;
}

#container #content #main .map .right .accordion ul li ul li.opened h2 {
	background-image: url(../media/layout_images/artist_map_arrow_open.png);
	color: #1056AD;
}

#container #content #main .map .right .accordion ul li ul li h2 span,
#container #content #main .map .right .accordion ul li ul li h3 span,
#container #content #main .map .right .accordion ul li ul li h4 span
{
	color: #222222;
	text-transform: none;
	font-size: 10px;
}

#container #content #main .map .right .accordion ul li ul li ul li {
	margin: 0 0 0 19px;
	padding: 0;
	background: #FFFFFF;
	border-left: none;
	border-right: none;
	border-bottom: 1px solid #666666;
}

#container #content #main .map .right .accordion ul li ul li ul li.opened {
	border-bottom: none;
	padding-bottom: 4px;
}

#container #content #main .map .right .accordion ul li ul li ul li h3 {
	margin: 0;
	padding: 4px 5px 4px 18px;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 11px;
	color: #B3111F;
	font-weight: bold;
	line-height: 11px;
	text-decoration: none;
	text-transform: uppercase;
	background-image: url(../media/layout_images/artist_map_arrow.png);
	background-repeat: no-repeat;
	background-position: 5px 6px;
}

#container #content #main .map .right .accordion ul li ul li ul li.opened h3 {
	background-image: url(../media/layout_images/artist_map_arrow_open.png);
	color: #1056AD;
}

#container #content #main .map .right .accordion ul li ul li ul li ul li {
	border-bottom: none;
}

#container #content #main .map .right .accordion ul li ul li ul li ul li h4 {
	margin: 0;
	padding: 2px 5px 2px 18px;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 11px;
	color: #B3111F;
	font-weight: bold;
	line-height: 11px;
	text-decoration: none;
	text-transform: none;
	background-image: url(../media/layout_images/artist_map_arrow.png);
	background-repeat: no-repeat;
	background-position: 5px 4px;
}

#container #content #main .map .right .accordion ul li ul li ul li ul li h4 a {
	color: #B3111F;
	text-decoration: none;
}

#container #content #main .map .right .accordion ul li ul li ul li ul li h4 a:hover {
	text-decoration: underline;
}

/* personal profile */

#container #content #main .profile {
	text-align: left;
}

#container #content #main .profile .box {
	width: 960px;
}

#container #content #main .profile .box .border-top {
	width: 960px;
	height: 10px;
	background-image: url(../media/layout_images/form_box_top.png);
	background-repeat: no-repeat;
}

#container #content #main .profile .box .content {
	width: 940px;
	padding: 0 10px 0 10px;
	background-image: url(../media/layout_images/form_box_bg.png);
	background-repeat: repeat-y;
}

#container #content #main .profile .box .content .background {
	background-image: url(../media/layout_images/form_box_content_bg.png);
}

#container #content #main .profile .box .content .title {
	height: 47px;
	border: none;
}

#container #content #main .profile .box .content .title .corner-left {
	width: 10px;
	height: 47px;
	background-image: url(../media/layout_images/form_title_corner-left.png);
	background-repeat: no-repeat;
	float: left;
}

#container #content #main .profile .box .content .title .label {
	width: 920px;
	height: 47px;
	background-image: url(../media/layout_images/form_title_bg.png);
	background-repeat: repeat-x;
	float: left;
}

#container #content #main .profile .box .content .title .label h1 {
	margin: 0 5px 0 5px;
	padding: 0;
	font-family: "Times New Roman", Times, serif;
	font-size: 28px;
	color: #B3111F;
	font-weight: bold;
	line-height: 47px;
	text-decoration: none;
	text-transform: uppercase;
	float: left;
}

#container #content #main .profile .box .content .title .label h2 {
	margin: 5px 5px 0 5px;
	padding: 0;
	font-family: "Times New Roman", Times, serif;
	font-size: 22px;
	color: #222222;
	font-weight: bold;
	line-height: 41px;
	text-decoration: none;
	text-transform: uppercase;
	float: left;
}

#container #content #main .profile .box .content .title .label h3 {
	margin: 5px 5px 0 5px;
	padding: 0;
	font-family: "Times New Roman", Times, serif;
	font-size: 22px;
	color: #222222;
	font-weight: bold;
	line-height: 41px;
	text-decoration: none;
	text-transform: lowercase;
	float: left;
}

#container #content #main .profile .box .content .user {
	background-image: url(../media/layout_images/form_thumb_bg.png);
	margin: 15px 15px 5px 15px;
	border: 1px solid #AAAAAA;
}

#container #content #main .profile .box .content .user .title {
	background-image: url(../media/layout_images/personal_profile_white_bar_bg.gif);
	background-repeat: repeat-x;
	height: 24px;
	margin: 0;
	padding: 0;
}

#container #content #main .profile .box .content .user .title h1 {
	margin: 0;
	padding: 0;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 11px;
	font-weight: bold;
	color: #000000;
	line-height: 24px;
	text-decoration: none;
	text-transform: uppercase;
	float: left;
}

#container #content #main .profile .box .content .user .title h1 img {
	margin: 4px 4px 0 10px;
}

#container #content #main .profile .box .content .user .title h5 {
	margin: 0;
	padding: 0;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 10px;
	font-weight: normal;
	color: #000000;
	line-height: 24px;
	text-decoration: none;
	font-style: italic;
	float: right;
}

#container #content #main .profile .box .content .user .title h5 a {
	text-decoration: none;
	color: #000000;
}

#container #content #main .profile .box .content .user .title h5 a:hover {
	text-decoration: underline;
}

#container #content #main .profile .box .content .user .title h5 img {
	margin: 3px 10px 0 4px;
}

#container #content #main .profile .box .content .user .photo {
	margin: 10px 0 10px 10px;
	float: left;
}

#container #content #main .profile .box .content .user .photo .placeholder {
	width: 104px;
	height: 104px;
	border: 1px solid #999999;
}

#container #content #main .profile .box .content .user .photo .placeholder img {
	width: 104px;
	height: 104px;
}

#container #content #main .profile .box .content .user .photo .button {
	height: 19px;
	background-image: url(../media/layout_images/personal_profile_image_title_bg.png);
	background-repeat: repeat-x;
}

#container #content #main .profile .box .content .user .photo .button h3 {
	margin: 0;
	padding: 0;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 11px;
	font-weight: normal;
	color: #FFFFFF;
	line-height: 18px;
	text-decoration: none;
	text-transform: uppercase;
	text-align: center;
}

#container #content #main .profile .box .content .user .photo .button h3 a {
	color: #FFFFFF;
	text-decoration: none;
}

#container #content #main .profile .box .content .user .photo .button h3 a:hover {
	text-decoration: underline;
}

#container #content #main .profile .box .content .user .data {
	margin: 10px 0px 10px 0;
	float: left;
}

#container #content #main .profile .box .content .user .data ul {
	list-style: none;
	border-top: 1px solid #AAAAAA;
	border-bottom: 1px solid #DDDDDD;
}

#container #content #main .profile .box .content .user .data ul li {
	width: 780px;
	border-top: 1px solid #DDDDDD;
	border-bottom: 1px solid #AAAAAA;
	padding: 0 5px 0 5px;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 12px;
	color: #000000;
	line-height: 18px;
	text-decoration: none;
	font-style: italic;
}

#container #content #main .profile .box .content .user .data ul li span {
	font-style: normal;
	text-transform: uppercase;
}

#container #content #main .profile .box .content .user .data ul li a {
	color: #000000;
	text-decoration: none;
}

#container #content #main .profile .box .content .user .data ul li a:hover {
	text-decoration: underline;
}

#container #content #main .profile .box .content .user .data .link {
	margin: 0 10px 0 10px;
	text-align: right;
}

#container #content #main .profile .box .content .user .data .link a {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 11px;
	color: #B3111F;
	line-height: 20px;
	text-decoration: none;
	font-style: italic;
	text-transform: lowercase;
}

#container #content #main .profile .box .content .user .data .link a:hover {
	text-decoration: underline;
}

#container #content #main .profile .box .content .user .update form fieldset {
	border: none;
	margin: 0 10px 0 10px;
	padding: 0;
}

#container #content #main .profile .box .content .user .update form fieldset .element {
}

#container #content #main .profile .box .content .user .update form fieldset .element label {
	margin: 0;
	padding: 0;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 11px;
	color: #000000;
	line-height: 15px;
	text-decoration: none;
	font-weight: bold;
}

#container #content #main .profile .box .content .user .update form fieldset .element .input .corner-left {
	width: 10px;
	height: 22px;
	background-image: url(../media/layout_images/personal_profile_input_corner-left.gif);
	background-repeat: no-repeat;
	float: left;
}

#container #content #main .profile .box .content .user .update form fieldset .element .input .field {
	width: 350px;
	height: 22px;
	background-image: url(../media/layout_images/personal_profile_input_bg.gif);
	background-repeat: repeat-x;
	float: left;
	overflow: hidden;
}

#container #content #main .profile .box .content .user .update form fieldset .element .input .field input {
	margin: 2px 0 2px 0;
	width: 350px;
	background: none;
	border: none;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 12px;
	color: #222222;
	line-height: 18px;
	text-decoration: none;
}

#container #content #main .profile .box .content .user .update form fieldset .element .input .corner-right {
	width: 10px;
	height: 22px;
	background-image: url(../media/layout_images/personal_profile_input_corner-right.gif);
	background-repeat: no-repeat;
	float: left;
	margin-right: 5px;
}

#container #content #main .profile .box .content .user .update form fieldset .element .cap {
	height: 30px;
}

#container #content #main .profile .box .content .user .update form fieldset .element .cap .error {
	width: 370px;
	height: 30px;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 10px;
	color: #CC0000;
	line-height: 12px;
	text-decoration: none;
	text-align: right;
	float: left;
}

#container #content #main .profile .box .content .user .update form fieldset .element .message {
	width: 250px;
	height: 30px;
	float: left;
}

#container #content #main .profile .box .content .user .update form fieldset .element .message .success {
	width: 250px;
	height: 30px;
	background-image: url(../media/layout_images/form_operation_complete.png);
	background-repeat: no-repeat;
	background-position: 5px 3px;
	margin-left: 5px;
}

#container #content #main .profile .box .content .user .update form fieldset .element .message .success h1 {
	margin: 0;
	padding: 8px 0 0 35px;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 12px;
	color: #72AA00;
	line-height: 15px;
	text-decoration: none;
	text-transform: uppercase;
	font-weight: bold;
}

#container #content #main .profile .box .content .left {
	margin: 0 5px 15px 15px;
	width: 650px;
	float: left;
}

#container #content #main .profile .box .content .left .activities {
	background-image: url(../media/layout_images/form_thumb_bg.png);
	border: 1px solid #AAAAAA;
}

#container #content #main .profile .box .content .left .activities .title {
	background-image: url(../media/layout_images/personal_profile_white_bar_bg.gif);
	background-repeat: repeat-x;
	height: 24px;
	margin: 0;
	padding: 0;
}

#container #content #main .profile .box .content .left .activities .title h1 {
	margin: 0;
	padding: 0;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 11px;
	font-weight: bold;
	color: #000000;
	line-height: 24px;
	text-decoration: none;
	text-transform: uppercase;
	float: left;
}

#container #content #main .profile .box .content .left .activities .title h1 img {
	margin: 4px 4px 0 10px;
}

#container #content #main .profile .box .content .left .activities ul {
	margin: 3px 0 3px 3px;
	list-style: none;
}

#container #content #main .profile .box .content .left .activities ul li {
	background-image: url(../media/layout_images/personal_profile_image_title_bg.png);
	background-repeat: repeat-x;
}

#container #content #main .profile .box .content .left .activities ul li h2 {
	margin: 0;
	padding: 0 0 0 40px;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 11px;
	font-weight: normal;
	color: #FFFFFF;
	line-height: 18px;
	height: 19px;
	text-decoration: none;
	text-transform: uppercase;
	background-image: url(../media/layout_images/personal_profile_expand_disabled_button.gif);
	background-repeat: no-repeat;
}

#container #content #main .profile .box .content .left .activities ul li ul {
	margin: 0 0 5px 0;
	border-bottom: 1px solid #DDDDDD;
}

#container #content #main .profile .box .content .left .activities ul li ul li {
	background-image: url(../media/layout_images/personal_profile_red_point.png);
	background-repeat: no-repeat;
	background-position: left 8px;
	margin: 0 0 0 32px;
	padding: 0 0 0 10px;
	border-top: 1px solid #DDDDDD;
	border-bottom: 1px solid #AAAAAA;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 11px;
	font-weight: normal;
	color: #000000;
	line-height: 20px;
	height: 20px;
	text-decoration: none;
}

#container #content #main .profile .box .content .left .activities ul li ul li span {
	text-transform: uppercase;
	font-style: italic;
}

#container #content #main .profile .box .content .left .activities ul li ul li .links {
	float: right;
	margin: 0 5px 0 5px;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 11px;
	color: #B3111F;
	line-height: 20px;
	text-decoration: none;
}

#container #content #main .profile .box .content .left .activities ul li ul li .links a {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 11px;
	color: #B3111F;
	line-height: 20px;
	text-decoration: none;
	font-style: italic;
	text-transform: lowercase;
}

#container #content #main .profile .box .content .left .activities ul li ul li a:hover {
	text-decoration: underline;
}

#container #content #main .profile .box .content .left .activities ul li ul li ul {
	border: none;
}

#container #content #main .profile .box .content .left .activities ul li ul li ul li {
	background: none;
	padding: 0;
	border: none;
}

#container #content #main .profile .box .content .left .activities ul li a {
	text-transform: lowercase;
	color: #000000;
	text-decoration: none;
}

#container #content #main .profile .box .content .left .activities ul li a:hover {
	text-decoration: underline;
}

#container #content #main .profile .box .content .left .activities ul li strong {
	float: left;
	margin-right: 5px;
}

#container #content #main .profile .box .content .left .activities ul li .arrow {
	width: 9px;
	height: 8px;
	background-image: url(../media/layout_images/personal_profile_order_icon.png);
	background-repeat: no-repeat;
	background-position: right top;
	float: left;
	margin: 5px 5px 0 0;
}

#container #content #main .profile .box .content .right {
	margin: 0 15px 15px 0;
	width: 255px;
	float: left;
}

#container #content #main .profile .box .content .right .tools {
	background-image: url(../media/layout_images/form_thumb_bg.png);
	border: 1px solid #AAAAAA;
}

#container #content #main .profile .box .content .right .tools .title {
	background-image: url(../media/layout_images/personal_profile_white_bar_bg.gif);
	background-repeat: repeat-x;
	height: 24px;
	margin: 0;
	padding: 0;
}

#container #content #main .profile .box .content .right .tools .title h1 {
	margin: 0;
	padding: 0;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 11px;
	font-weight: bold;
	color: #000000;
	line-height: 24px;
	text-decoration: none;
	text-transform: uppercase;
	float: left;
}

#container #content #main .profile .box .content .right .tools .title h1 img {
	margin: 4px 4px 0 10px;
}

#container #content #main .profile .box .content .right .tools ul {
	margin: 3px 3px 0 3px;
	list-style: none;
}

#container #content #main .profile .box .content .right .tools ul li {
	background-image: url(../media/layout_images/personal_profile_accordion_gray_bg.gif);
	background-repeat: repeat-x;
	height: 19px;
	margin: 0 0 3px 0;
	padding: 0 10px 0 10px;
}

#container #content #main .profile .box .content .right .tools ul li.selected {
	background-image: url(../media/layout_images/personal_profile_accordion_red_bg.gif);
}

#container #content #main .profile .box .content .right .tools ul li h4 {
	margin: 0;
	padding: 0;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 11px;
	font-weight: normal;
	color: #FFFFFF;
	line-height: 19px;
	text-decoration: none;
	text-transform: uppercase;
	float: left;
}

#container #content #main .profile .box .content .right .tools ul li h4 a {
	color: #FFFFFF;
	text-decoration: none;
}

#container #content #main .profile .box .content .right .tools ul li h4 a:hover {
	text-decoration: underline;
}

#container #content #main .profile .box .content .right .tools ul li .links {
	float: right;
}

#container #content #main .profile .box .content .right .tools ul li .links a {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 10px;
	font-weight: normal;
	color: #FBDF64;
	line-height: 19px;
	text-decoration: none;
	font-style: italic;
}

#container #content #main .profile .box .content .right .tools ul li .links a:hover {
	text-decoration: underline;
}

#container #content #main .profile .box .content .right .calendar {
	background-image: url(../media/layout_images/form_thumb_bg.png);
	border: 1px solid #AAAAAA;
}

#container #content #main .profile .box .content .right .calendar .title {
	background-image: url(../media/layout_images/personal_profile_white_bar_bg.gif);
	background-repeat: repeat-x;
	height: 24px;
	margin: 0;
	padding: 0;
}

#container #content #main .profile .box .content .right .calendar .title h1 {
	margin: 0;
	padding: 0;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 11px;
	font-weight: bold;
	color: #000000;
	line-height: 24px;
	text-decoration: none;
	text-transform: uppercase;
	float: left;
}

#container #content #main .profile .box .content .right .calendar .title h1 img {
	margin: 4px 4px 0 10px;
}

#container #content #main .profile .box .content .right .calendar .order {
	padding: 0 4px 0 10px;
	border-bottom: 1px solid #AAAAAA;
}

#container #content #main .profile .box .content .right .calendar .order h4 {
	margin: 0;
	padding: 0;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 12px;
	font-weight: normal;
	color: #B3111F;
	line-height: 20px;
	height: 20px;
	text-decoration: none;
	font-style: italic;
	float: left;
}

#container #content #main .profile .box .content .right .calendar .order h4 a {
	color: #B3111F;
	text-decoration: none;
}

#container #content #main .profile .box .content .right .calendar .order h4 a:hover {
	text-decoration: underline;
}

#container #content #main .profile .box .content .right .calendar .order img {
	margin-top: 6px;
	float: right;
}

#container #content #main .profile .box .content .right .calendar ul {
	list-style: none;
	border-bottom: 1px solid #DDDDDD;
}

#container #content #main .profile .box .content .right .calendar ul li {
	border-top: 1px solid #DDDDDD;
	border-bottom: 1px solid #AAAAAA;
}

#container #content #main .profile .box .content .right .calendar ul li .close {
	position: absolute;
	width: 8px;
	height: 8px;
	margin: 5px 5px 0 240px;
}

#container #content #main .profile .box .content .right .calendar ul li h1 {
	margin: 0;
	padding: 0;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 10px;
	font-weight: bold;
	color: #000000;
	line-height: 20px;
	text-decoration: none;
	background-image: url(../media/layout_images/personal_profile_red_point.png);
	background-repeat: no-repeat;
	background-position: left center;
	margin: 0 5px 0 10px;
	padding: 0 0 0 10px;
}

#container #content #main .profile .box .content .right .calendar ul li h2 {
	margin: 0 5px 0 20px;
	padding: 0;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 10px;
	font-weight: normal;
	color: #000000;
	line-height: 12px;
	text-decoration: none;
}

#container #content #main .profile .box .content .right .calendar ul li .links {
	text-align: right;
	margin: 0 5px 5px 5px;
}

#container #content #main .profile .box .content .right .calendar ul li .links a {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 10px;
	font-weight: normal;
	color: #B3111F;
	line-height: 12px;
	text-decoration: none;
	font-style: italic;
}

#container #content #main .profile .box .content .right .calendar ul li .links a:hover {
	text-decoration: underline;
}

#container #content #main .profile .box .content .right .calendar .navigation {
	padding: 0 0 0 10px;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 11px;
	font-weight: normal;
	color: #444444;
	line-height: 20px;
	height: 20px;
	text-decoration: none;
	font-style: italic;
}

#container #content #main .profile .box .content .right .calendar .navigation a {
	color: #B3111F;
	text-decoration: none;
}

#container #content #main .profile .box .content .right .calendar .navigation a:hover {
	text-decoration: underline;
}

#container #content #main .profile .box .content .right .calendar .navigation strong {
	color: #000000;
}

#container #content #main .profile .box .content .title .corner-right {
	width: 10px;
	height: 47px;
	background-image: url(../media/layout_images/form_title_corner-right.png);
	background-repeat: no-repeat;
	float: left;
}

#container #content #main .profile .box .border-bottom {
	width: 960px;
	height: 10px;
	background-image: url(../media/layout_images/form_box_bottom.png);
	background-repeat: no-repeat;
}

/* form */

#container #content #main .form {
	text-align: left;
}

#container #content #main .form .box {
	width: 960px;
}

#container #content #main .form .box .border-top {
	width: 960px;
	height: 10px;
	background-image: url(../media/layout_images/form_box_top.png);
	background-repeat: no-repeat;
}

#container #content #main .form .box .content {
	width: 940px;
	padding: 0 10px 0 10px;
	background-image: url(../media/layout_images/form_box_bg.png);
	background-repeat: repeat-y;
}

#container #content #main .form .box .content form {
	background-image: url(../media/layout_images/form_box_content_bg.png);
}

#container #content #main .form .box .content .title {
	height: 47px;
	border: none;
}

#container #content #main .form .box .content .title .corner-left {
	width: 10px;
	height: 47px;
	background-image: url(../media/layout_images/form_title_corner-left.png);
	background-repeat: no-repeat;
	float: left;
}

#container #content #main .form .box .content .title .label {
	width: 920px;
	height: 47px;
	background-image: url(../media/layout_images/form_title_bg.png);
	background-repeat: repeat-x;
	float: left;
	text-align: center;
}

#container #content #main .form .box .content .title .label h1 {
	margin: 0;
	padding: 0;
	font-family: "Times New Roman", Times, serif;
	font-size: 28px;
	color: #222222;
	font-weight: bold;
	line-height: 47px;
	text-decoration: none;
}

#container #content #main .form .box .content .title .corner-right {
	width: 10px;
	height: 47px;
	background-image: url(../media/layout_images/form_title_corner-right.png);
	background-repeat: no-repeat;
	float: left;
}

#container #content #main .form .box .content .description {
	margin: 5px 10px 5px 10px;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 12px;
	color: #000000;
	line-height: 15px;
	text-decoration: none;
}

#container #content #main .form .box .content .description p {
	padding: 0;
	margin: 0;
}

#container #content #main .form .box .content .divide {
	border-top: 1px solid #CCCCCC;
	border-bottom: 1px solid #FFFFFF;
}

#container #content #main .form .box .content fieldset {
	border: none;
	margin: 10px 0 10px 60px;
	padding: 0;
}

#container #content #main .form .box .content fieldset .section {
	margin: 0 0 0 -68px;
	height: 35px;
	clear: both;
}

#container #content #main .form .box .content fieldset .section .flag {
	position: absolute;
	width: 650px;
	min-height: 48px;
	height: auto !important;
	height: 48px;
	background-image: url(../media/layout_images/form_button_flag.png);
	background-repeat: no-repeat;
	overflow: hidden;
}

#container #content #main .form .box .content fieldset .section .flag h1 {
	margin: 5px 15px 5px 15px;
	padding: 0;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 13px;
	color: #FFFFFF;
	font-weight: normal;
	line-height: 20px;
	text-transform: uppercase;
	text-shadow: 1px 1px #000000;
}

#container #content #main .form .box .content fieldset .section .flag h2 {
	margin: 5px 15px 5px 15px;
	padding: 0;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 13px;
	color: #000000;
	font-weight: normal;
	line-height: 20px;
}

#container #content #main .form .box .content fieldset .sticky {
	width: 340px;
	margin: 20px 15px 20px 0;
	float: left;
}

#container #content #main .form .box .content fieldset .sticky .title {
	height: 26px;
	background-image: url(../media/layout_images/registration_white_corner.png);
	background-repeat: no-repeat;
	background-position: right top;
	margin-bottom: 1px;
}

#container #content #main .form .box .content fieldset .sticky .title h2 {
	margin: 0 20px 0 0;
	padding: 0 10px 0 10px;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 14px;
	color: #333333;
	line-height: 26px;
	background-image: url(../media/layout_images/registration_white_bg.png);
	text-transform: uppercase;
}

#container #content #main .form .box .content fieldset .sticky ul {
	list-style: none;
	background-image: url(../media/layout_images/registration_white_bg.png);
	height: 80px;
	padding: 10px;
}

#container #content #main .form .box .content fieldset .sticky ul li {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 13px;
	color: #000000;
	line-height: 15px;
}

#container #content #main .form .box .content fieldset .sticky ul li strong {
	color: #B3111F;
}

#container #content #main .form .box .content fieldset .sticky .functions .black_button {
	float: right;
}

#container #content #main .form .box .content fieldset .spacer {
	height: 20px;
}

#container #content #main .form .box .content fieldset .element {
	width: 420px;
	float: left;
}

#container #content #main .form .box .content fieldset .element.small {
	width: 275px;
}

#container #content #main .form .box .content fieldset .element.textarea {
	float: right;
	margin-right: 40px;
}

#container #content #main .form .box .content fieldset .element.textarea2 {
	width: 560px;
}

#container #content #main .form .box .content fieldset .element.textarea3 {
	width: 500px;
}

#container #content #main .form .box .content fieldset .element.horizzontal {
	margin-top: 20px;
}

#container #content #main .form .box .content fieldset .element.multiple {
	margin: 20px 0 10px 0;
}

#container #content #main .form .box .content fieldset .element.select {
	margin: 0 0 10px 0;
	width: auto;
}

#container #content #main .form .box .content fieldset .element.inline {
	margin: 0 0 10px 0;
	width: auto;
}

#container #content #main .form .box .content fieldset .element.captcha {
	width: 312px;
	margin: 0 0 0 10px;
}

#container #content #main .form .box .content fieldset .element.double.first {
	width: 200px;
}

#container #content #main .form .box .content fieldset .element.double.last {
	width: 220px;
}

#container #content #main .form .box .content fieldset .element label {
	margin: 0;
	padding: 0;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 12px;
	color: #000000;
	line-height: 20px;
	text-decoration: none;
	font-weight: bold;
}

#container #content #main .form .box .content fieldset .element.horizzontal label {
	width: 275px;
	line-height: 37px;
	float: left;
}

#container #content #main .form .box .content fieldset .element.inline label {
	width: 250px;
	line-height: 37px;
	float: left;
}

#container #content #main .form .box .content fieldset .element.multiple label {
	margin-top: 15px;
	line-height: 37px;
	float: left;
}

#container #content #main .form .box .content fieldset .element label span {
	font-size: 10px;
	font-weight: normal;
}

#container #content #main .form .box .content fieldset .element h4 {
	margin: 0;
	padding: 0;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 9px;
	color: #000000;
	line-height: 15px;
	text-decoration: none;
	font-weight: normal;
}

#container #content #main .form .box .content fieldset .element .radio {
	float: left;
}

#container #content #main .form .box .content fieldset .element .radio .field {
	float: left;
}

#container #content #main .form .box .content fieldset .element .radio .text {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 12px;
	color: #000000;
	line-height: 37px;
	text-decoration: none;
	font-weight: bold;
	float: left;
}

#container #content #main .form .box .content fieldset .element .checkbox {
	margin-top: 8px;
	float: left;
}

#container #content #main .form .box .content fieldset .element .checkbox .text {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 12px;
	color: #000000;
	line-height: 19px;
	text-decoration: none;
	font-weight: bold;
	float: left;
}

#container #content #main .form .box .content fieldset .element .checkbox .text.small {
	font-size: 9px;
	font-weight: normal;
}

#container #content #main .form .box .content fieldset .element .checkbox .field {
	float: left;
}

#container #content #main .form .box .content fieldset .element .input.single {
	margin-right: 5px;
	float: left;
}

#container #content #main .form .box .content fieldset .element .input.double {
	margin-right: 5px;
	float: left;
}

#container #content #main .form .box .content fieldset .element.horizzontal .input {
	margin-left: 5px;
	float: left;
}

#container #content #main .form .box .content fieldset .element.multiple .input {
	margin-left: 5px;
	float: left;
}

#container #content #main .form .box .content fieldset .element.inline .input {
	margin-left: 5px;
	float: left;
}

#container #content #main .form .box .content fieldset .element .input label {
	margin: 0;
	padding: 0;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 10px;
	color: #333333;
	line-height: 15px;
	text-decoration: none;
	font-weight: bold;
}

#container #content #main .form .box .content fieldset .element .input .corner-left {
	width: 5px;
	height: 37px;
	background-image: url(../media/layout_images/form_input_corner-left.png);
	background-repeat: no-repeat;
	float: left;
}

#container #content #main .form .box .content fieldset .element .input .field {
	width: 350px;
	height: 37px;
	background-image: url(../media/layout_images/form_input_bg.png);
	background-repeat: repeat-x;
	float: left;
	overflow: hidden;
}

#container #content #main .form .box .content fieldset .element .input.single .field {
	width: 30px;
}

#container #content #main .form .box .content fieldset .element .input.double .field {
	width: 60px;
}

#container #content #main .form .box .content fieldset .element.medium .input .field {
	width: 320px;
}

#container #content #main .form .box .content fieldset .element.small .input .field {
	width: 220px;
}

#container #content #main .form .box .content fieldset .element.horizzontal .input .field {
	width: 70px;
}

#container #content #main .form .box .content fieldset .element.multiple .input .field {
	width: 64px;
}

#container #content #main .form .box .content fieldset .element.inline .input .field {
	width: 302px;
}

#container #content #main .form .box .content fieldset .element .input .field input {
	margin: 10px 0 10px 0;
	width: 350px;
	background: none;
	border: none;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 12px;
	color: #222222;
	line-height: 17px;
	text-decoration: none;
}

#container #content #main .form .box .content fieldset .element .input.single .field input {
	width: 30px;
	text-align: center;
}

#container #content #main .form .box .content fieldset .element .input.double .field input {
	width: 60px;
	text-align: center;
}

#container #content #main .form .box .content fieldset .element.medium .input .field input {
	width: 320px;
}

#container #content #main .form .box .content fieldset .element.small .input .field input {
	width: 220px;
}

#container #content #main .form .box .content fieldset .element.horizzontal .input .field input {
	width: 70px;
}

#container #content #main .form .box .content fieldset .element.multiple .input .field input {
	width: 64px;
}

#container #content #main .form .box .content fieldset .element.select .input .field input {
	color: #AAAAAA;
	font-weight: bold;
	padding: 0 10px 0 10px;
	width: 330px;
}

#container #content #main .form .box .content fieldset .element .input .corner-right {
	width: 5px;
	height: 37px;
	background-image: url(../media/layout_images/form_input_corner-right.png);
	background-repeat: no-repeat;
	float: left;
}

#container #content #main .form .box .content fieldset .element .input .button {
	height: 37px;
	float: left;
}

#container #content #main .form .box .content fieldset .element .input .action {
	background-image: url(../media/layout_images/form_input_bg.png);
	background-repeat: repeat-x;
	height: 37px;
	float: left;
	overflow: hidden;
}

#container #content #main .form .box .content fieldset .element .input .action .toggle {
	margin: 4px 0 0 0;
	height: 30px;
	background-image: url(../media/layout_images/form_button_bg.gif);
	background-repeat: repeat-x;
	overflow: hidden;
}

#container #content #main .form .box .content fieldset .element .input .action .toggle h3 {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 11px;
	font-weight: normal;
	color: #CCCCCC;
	line-height: 30px;
	text-decoration: none;
	text-transform: uppercase;
	margin: 0 10px 0 10px;
}

#container #content #main .form .box .content fieldset .element .input .action .toggle h3 a {
	color: #CCCCCC;
	text-decoration: none;
}

#container #content #main .form .box .content fieldset .element .input .action .toggle h3 a:hover {
	text-decoration: underline;
}

#container #content #main .form .box .content fieldset .element.textarea .input textarea {
	background-image: url(../media/layout_images/form_textarea.png);
	background-repeat: no-repeat;
	margin: 0;
	padding: 10px;
	border: none;
	width: 378px;
	height: 211px;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 12px;
	color: #222222;
	line-height: 15px;
	text-decoration: none;
	outline: none;
	resize: none;
}

#container #content #main .form .box .content fieldset .element.textarea2 .input textarea {
	background-image: url(../media/layout_images/form_textarea2.png);
	background-repeat: no-repeat;
	margin: 0;
	padding: 10px;
	border: none;
	width: 540px;
	height: 211px;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 11px;
	color: #222222;
	line-height: 15px;
	text-decoration: none;
	outline: none;
	resize: none;
}

#container #content #main .form .box .content fieldset .element.textarea3 .input textarea {
	background-image: url(../media/layout_images/form_textarea2.png);
	background-repeat: no-repeat;
	margin: 0;
	padding: 10px;
	border: none;
	width: 480px;
	height: 211px;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 11px;
	color: #222222;
	line-height: 15px;
	text-decoration: none;
	outline: none;
	resize: none;
}

#container #content #main .form .box .content fieldset .element .cap {
	width: 360px;
}

#container #content #main .form .box .content fieldset .element.medium .cap {
	width: 400px;
}

#container #content #main .form .box .content fieldset .element.small .cap {
	width: 230px;
}

#container #content #main .form .box .content fieldset .element.textarea2 .cap {
	width: 560px;
}

#container #content #main .form .box .content fieldset .element.inline .cap {
	width: auto;
}

#container #content #main .form .box .content fieldset .element.captcha .cap {
	width: auto;
}

#container #content #main .form .box .content fieldset .element .cap .functions {
	height: 30px;
	margin-bottom: 10px;
	float: left;
}

#container #content #main .form .box .content fieldset .element.textarea2 .cap .functions {
	float: right;
}

#container #content #main .form .box .content fieldset .element .cap .functions img {
	border-right: 1px solid #FFFFFF;
	float: left;
}

#container #content #main .form .box .content fieldset .element .cap .functions .black_button {
	border-right: 1px solid #FFFFFF;
}

#container #content #main .form .box .content fieldset .element.textarea2 .cap .note {
	margin-right: 5px;
	height: 30px;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 12px;
	color: #000000;
	line-height: 30px;
	text-decoration: none;
	text-align: right;
	float: right;
}

#container #content #main .form .box .content fieldset .element .cap .error {
	height: 25px;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 10px;
	color: #CC0000;
	line-height: 12px;
	text-decoration: none;
	text-align: right;
	float: right;
}

#container #content #main .form .box .content fieldset .element .loaded {
	
}

#container #content #main .form .box .content fieldset .element .loaded ul {
	list-style: none;
}

#container #content #main .form .box .content fieldset .element .loaded ul li .left {
	width: 80px;
	text-align: center;
	float: left;
}

#container #content #main .form .box .content fieldset .element .loaded ul li .right {
	width: 330px;
	float: left;
}

#container #content #main .form .box .content fieldset .element .loaded ul li .right h4 {
	margin: 5px 5px 0 5px;
	padding: 0;
	width: 290px;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 10px;
	color: #000000;
	line-height: 15px;
	text-decoration: none;
	font-weight: normal;
	float: left;
	border-bottom: 1px solid #AAAAAA;
}

#container #content #main .form .box .content fieldset .element .loaded ul li h4 span {
	color: #B3111F;
}

#container #content #main .form .box .content fieldset .element .loaded ul li .right h5 {
	margin: 0;
	padding: 5px 5px 0 5px;
	width: 70px;
	height: 22px;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 10px;
	color: #000000;
	line-height: 22px;
	text-decoration: none;
	font-weight: normal;
	float: left;
}

#container #content #main .form .box .content fieldset .element .loaded ul li .right input {
	margin: 5px 0 0 0;
	padding: 0;
	width: 215px;
	height: 22px;
	background-image: url(../media/layout_images/personal_profile_input_bg.gif);
	background-repeat: repeat-x;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 10px;
	color: #000000;
	line-height: 22px;
	text-decoration: none;
	float: left;
}

#container #content #main .form .box .content fieldset .element .loaded ul li .right a {
	float: left;
}

#container #content #main .form .box .content fieldset .legend {
	width: 250px;
	float: left;
}

#container #content #main .form .box .content fieldset .legend ul {
	border-top: 1px solid #CCCCCC;
	border-bottom: 1px solid #FFFFFF;
	list-style: none;
	margin: 0;
	padding: 0;
}

#container #content #main .form .box .content fieldset .legend ul li {
	border-top: 1px solid #FFFFFF;
	border-bottom: 1px solid #CCCCCC;
	margin: 0;
	padding: 0;
}

#container #content #main .form .box .content fieldset .legend ul li h1 {
	background-image: url(../media/layout_images/form_red_bullet.png);
	background-repeat: no-repeat;
	background-position: 18px 6px;
	margin: 0;
	padding: 0 0 0 25px;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 12px;
	color: #000000;
	line-height: 15px;
	text-decoration: none;
	font-weight: bold;
}

#container #content #main .form .box .content fieldset .legend ul li h2 {
	margin: 0;
	padding: 0 0 0 25px;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 11px;
	color: #000000;
	line-height: 15px;
	text-decoration: none;
	font-weight: normal;
}

#container #content #main .form .box .content fieldset .legend ul li h2 a {
	color: #000000;
	text-decoration: none;
	font-style: italic;
}

#container #content #main .form .box .content fieldset .legend ul li h2 a:hover {
	text-decoration: underline;
}

#container #content #main .form .box .content fieldset .legend ul li .links {
	padding: 0 0 0 25px;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 11px;
	color: #B3111F;
	line-height: 15px;
	text-decoration: none;
	font-weight: normal;
	font-style: italic;
}

#container #content #main .form .box .content fieldset .legend ul li .links a {
	color: #B3111F;
	text-decoration: none;
}

#container #content #main .form .box .content fieldset .legend ul li .links a:hover {
	text-decoration: underline;
}

#container #content #main .form .box .content fieldset .message {
	width: 250px;
	float: left;
}

#container #content #main .form .box .content fieldset .message .spacer {
	width: 250px;
	height: 231px;
}

#container #content #main .form .box .content fieldset .message .success {
	width: 250px;
	height: 30px;
	background-image: url(../media/layout_images/form_operation_complete.png);
	background-repeat: no-repeat;
	background-position: 5px 3px;
}

#container #content #main .form .box .content fieldset .message .success h1 {
	margin: 0;
	padding: 8px 0 0 35px;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 12px;
	color: #72AA00;
	line-height: 15px;
	text-decoration: none;
	text-transform: uppercase;
	font-weight: bold;
}

#container #content #main .form .box .content fieldset .thumbs .thumb {
	border: 2px solid #EEEEEE;
	background-image: none;
	width: 172px;
	height: 172px;
	margin: 0 10px 10px 0;
	text-align: center;
	padding: 10px;
	cursor: pointer;
	float: left;
}

/*
#container #content #main .form .box .content fieldset .thumbs .thumb:hover {
	background-image: url(../media/layout_images/form_thumb_bg.png);
	border: 2px solid #AAAAAA;
}
*/

#container #content #main .form .box .content fieldset .thumbs .thumb .dimensions {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 9px;
	color: #000000;
	line-height: 15px;
	text-decoration: none;
}

#container #content #main .form .box .content fieldset .navigation {
	height: 30px;
}

#container #content #main .form .box .content fieldset .navigation .black_button {
	margin-right: 10px;
}

#container #content #main .form .box .content fieldset .navigation .black_button img {
	float: left;
}

#container #content #main .form .box .content fieldset .navigation .black_button h3 {
	float: left;
}

#container #content #main .form .box .content fieldset .navigation .success {
	width: 250px;
	height: 30px;
	background-image: url(../media/layout_images/form_operation_complete.png);
	background-repeat: no-repeat;
	background-position: 0px 3px;
	float: left;
}

#container #content #main .form .box .content fieldset .navigation .success h1 {
	margin: 0;
	padding: 8px 0 0 30px;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 12px;
	color: #72AA00;
	line-height: 15px;
	text-decoration: none;
	text-transform: uppercase;
	font-weight: bold;
}

#container #content #main .form .box .content fieldset .send {
	margin: -25px 0 0 600px;
}

#container #content #main .form .box .content fieldset .send .note {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 10px;
	color: #000000;
	line-height: 15px;
	text-decoration: none;
}

#container #content #main .form .box .content .submit {
	width: 820px;
	height: 30px;
	margin: 0 0 0 60px;
}

#container #content #main .form .box .content .submit .note {
	width: 400px;
	height: 20px;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 10px;
	color: #000000;
	line-height: 20px;
	text-decoration: none;
	float: left;
}

#container #content #main .form .box .content .submit .button {
	background-image: url(../media/layout_images/form_button_submit.png);
	background-repeat: no-repeat;
	margin: -16px 0 0 784px;
	width: 105px;
	height: 48px;
	position: absolute;
	text-align: center;
	overflow: hidden;
}

#container #content #main .form .box .content .submit .button h3 {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 13px;
	font-weight: bold;
	color: #FFFFFF;
	line-height: 30px;
	height: 30px;
	text-decoration: none;
	text-transform: uppercase;
	margin: 0 0 18px 0;
	text-shadow: 1px 1px #000000;
}

#container #content #main .form .box .content .submit .button h3 a {
	color: #FFFFFF;
	text-decoration: none;
	background-image: url(../media/layout_images/calendario_arrow_right.png);
	background-repeat: no-repeat;
	background-position: right center;
	padding-right: 15px;
}

#container #content #main .form .box .content .submit .button h3 a:hover {
	text-decoration: underline;
}

/* form // box // content // free */

#container #content #main .form .box .content .free {
	height: 100px;
}

/* form // box // content // breadcrumb */

#container #content #main .form .box .content .breadcrumb ul {
	list-style: none;
	height: 40px;
	background-color: #1C1B1B;
}

#container #content #main .form .box .content .breadcrumb ul li {
	padding: 0 10px 0 10px;
	display: inline;
	height: 40px;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 14px;
	font-weight: bold;
	color: #323232;
	line-height: 40px;
	text-decoration: none;
	text-transform: uppercase;
	float: left;
}

#container #content #main .form .box .content .breadcrumb ul li.divisor {
	padding: 0;
	width: 18px;
	height: 40px;
	background-image: url(../media/layout_images/form_registration_navigation_divide.gif);
	background-repeat: no-repeat;
}

#container #content #main .form .box .content .breadcrumb ul li.selected {
	color: #FFFFFF;
}

/* form // box // content // type */

#container #content #main .form .box .content .type {
	margin: 0;
	padding: 25px;
	text-align: center;
}

#container #content #main .form .box .content .type img {
	margin: 25px;
}

/* form // box // border-bottom */

#container #content #main .form .box .border-bottom {
	width: 960px;
	height: 10px;
	background-image: url(../media/layout_images/form_box_bottom.png);
	background-repeat: no-repeat;
}

/* directory */

#container #content #main .directory {
	text-align: left;
}

/* directory // filters */

#container #content #main .directory .filters {
	border-top: 1px solid #333333;
}

#container #content #main .directory .filters h1 {
	border-top: 1px solid #EEEEEE;
	margin: 0;
	padding: 0 30px 0 0;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 16px;
	color: #222222;
	line-height: 30px;
	width: 175px;
	height: 30px;
	font-weight: bold;
	text-transform: uppercase;
	float: left;
}

#container #content #main .directory .filters h2 {
	border-top: 1px solid #EEEEEE;
	border-bottom: 1px solid #333333;
	margin: 0;
	padding: 3px 30px 3px 0;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 9px;
	color: #222222;
	line-height: 30px;
	width: 175px;
	height: 32px;
	font-weight: bold;
	text-transform: uppercase;
	float: left;
}

/* directory // filters // keywords & alphabet */

#container #content #main .directory .filters .keywords,
#container #content #main .directory .filters .alphabet
{
	border-top: 1px solid #EEEEEE;
	width: 755px;
	float: left;
	padding-bottom: 3px;
}

#container #content #main .directory .filters .keywords .button,
#container #content #main .directory .filters .alphabet .letter
{
	margin: 3px 3px 0 0;
	float: left;
}

#container #content #main .directory .filters .keywords .button .corner-left {
	background-image: url(../media/layout_images/directory_black_button_corner-left.png);
	background-repeat: no-repeat;
	width: 5px;
	height: 24px;
	float: left;
}

#container #content #main .directory .filters .alphabet .letter .corner-left {
	background-image: url(../media/layout_images/directory_black_letter_corner-left.png);
	background-repeat: no-repeat;
	width: 5px;
	height: 22px;
	float: left;
}

#container #content #main .directory .filters .keywords .button.selected .corner-left {
	background-image: url(../media/layout_images/directory_red_button_corner-left.png);
}

#container #content #main .directory .filters .alphabet .letter.selected .corner-left {
	background-image: url(../media/layout_images/directory_red_letter_corner-left.png);
}

#container #content #main .directory .filters .keywords .button .corner-right {
	background-image: url(../media/layout_images/directory_black_button_corner-right.png);
	background-repeat: no-repeat;
	width: 5px;
	height: 24px;
	float: left;
}

#container #content #main .directory .filters .alphabet .letter .corner-right {
	background-image: url(../media/layout_images/directory_black_letter_corner-right.png);
	background-repeat: no-repeat;
	width: 5px;
	height: 22px;
	float: left;
}

#container #content #main .directory .filters .keywords .button.selected .corner-right {
	background-image: url(../media/layout_images/directory_red_button_corner-right.png);
}

#container #content #main .directory .filters .alphabet .letter.selected .corner-right {
	background-image: url(../media/layout_images/directory_red_letter_corner-right.png);
}

#container #content #main .directory .filters .keywords .button .label {
	background-image: url(../media/layout_images/directory_black_button_bg.png);
	background-repeat: repeat-x;
	width: 125px;
	height: 24px;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 10px;
	color: #FFFFFF;
	font-weight: bold;
	line-height: 23px;
	text-shadow: 1px 1px #000000;
	text-align: center;
	padding: 0 5px 0 5px;
	float: left;
}

#container #content #main .directory .filters .keywords .button .label.large {
	width: 162px;
	font-size: 10px;
}

#container #content #main .directory .filters .alphabet .letter .label {
	background-image: url(../media/layout_images/directory_black_letter_bg.png);
	background-repeat: repeat-x;
	width: 15px;
	height: 22px;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 12px;
	color: #FFFFFF;
	font-weight: bold;
	line-height: 21px;
	text-transform: uppercase;
	text-shadow: 1px 1px #000000;
	text-align: center;
	padding: 0;
	float: left;
}

#container #content #main .directory .filters .keywords .button.selected .label {
	background-image: url(../media/layout_images/directory_red_button_bg.png);
}

#container #content #main .directory .filters .alphabet .letter.selected .label {
	background-image: url(../media/layout_images/directory_red_letter_bg.png);
}

#container #content #main .directory .filters .keywords .button .label img {
	margin-left: -10px;
	float: left;
}

#container #content #main .directory .filters .keywords .button .label a,
#container #content #main .directory .filters .alphabet .letter .label a
{
	color: #FFFFFF;
	text-decoration: none;
}

#container #content #main .directory .filters .keywords .button a:hover,
#container #content #main .directory .filters .alphabet .letter a:hover
{
	text-decoration: underline;
}

/* directory // filters // form */

#container #content #main .directory .filters .form {
	border-top: 1px solid #EEEEEE;
	border-bottom: 1px solid #333333;
	margin: 0;
	padding: 3px 0 3px 0;
	height: 32px;
}

#container #content #main .directory .filters .form .corner-left {
	background-image: url(../media/layout_images/directory_form_corner-left.png);
	background-repeat: no-repeat;
	width: 5px;
	height: 32px;
	float: left;
}

#container #content #main .directory .filters .form .input {
	background-image: url(../media/layout_images/directory_form_bg.png);
	background-repeat: repeat-x;
	width: 170px;
	height: 32px;
	float: left;
}

#container #content #main .directory .filters .form .input input {
	border: none;
	background: none;
	width: 166px;
	height: 29px;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 12px;
	color: #333333;
}

#container #content #main .directory .filters .form .submit-left {
	background-image: url(../media/layout_images/directory_form_submit_corner-left.png);
	background-repeat: no-repeat;
	width: 5px;
	height: 32px;
	float: left;
}

#container #content #main .directory .filters .form .submit-label {
	background-image: url(../media/layout_images/directory_form_submit_bg.png);
	background-repeat: repeat-x;
	width: 60px;
	height: 32px;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 12px;
	color: #FFFFFF;
	font-weight: bold;
	line-height: 30px;
	text-transform: uppercase;
	text-shadow: 1px 1px #000000;
	text-align: center;
	padding: 0 5px 0 5px;
	float: left;
}

#container #content #main .directory .filters .form .submit-label a {
	color: #FFFFFF;
	text-decoration: none;
}

#container #content #main .directory .filters .form .submit-label a:hover {
	text-decoration: underline;
}

#container #content #main .directory .filters .form .submit-right {
	background-image: url(../media/layout_images/directory_form_submit_corner-right.png);
	background-repeat: no-repeat;
	width: 5px;
	height: 32px;
	float: left;
}

/* directory // result */

#container #content #main .directory .result {
	border-top: 1px solid #EEEEEE;
	padding-top: 10px;
}

#container #content #main .directory .result h2 {
	width: 210px;
	margin: 0 30px 0 0;
	padding: 3px 0 3px 0;
	border-bottom: 1px solid #333333;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 11px;
	font-weight: bold;
	line-height: 11px;
	float: left;
}

#container #content #main .directory .result h2 a {
	color: #222222;
	text-decoration: none;
}

#container #content #main .directory .result h2.selected a {
	color: #B3111F;
}

#container #content #main .directory .result h2 a:hover {
	text-decoration: underline;
}

/* calendar */

#container #content #main .calendar {
	text-align: left;
}

/* calendar // colum_left */

#container #content #main .calendar .colum_left {
	width: 640px;
	float: left;
}

/* calendar // colum_left // top */

#container #content #main .calendar .colum_left .box .border-top {
	width: 640px;
	height: 40px;
	background-image: url(../media/layout_images/calendario_box-left_top.png);
	background-repeat: no-repeat;
}

/* calendar // colum_left // top // week */

#container #content #main .calendar .colum_left .box .border-top .week {
	margin: 14px 0 0 18px;
	height: 22px;
	float: left;
}

/* calendar // colum_left // top // week // arrow */

#container #content #main .calendar .colum_left .box .border-top .week .arrow {
	height: 22px;
	float: left;
}

#container #content #main .calendar .colum_left .box .border-top .week .arrow .corner-left {
	width: 5px;
	height: 22px;
	background-image: url(../media/layout_images/calendario_button_corner-left.png);
	background-repeat: no-repeat;
	float: left;
}

#container #content #main .calendar .colum_left .box .border-top .week .arrow .icon {
	height: 22px;
	background-image: url(../media/layout_images/calendario_button_bg.png);
	background-repeat: repeat-x;
	float: left;
}

#container #content #main .calendar .colum_left .box .border-top .week .arrow .icon img {
	margin-top: 4px;
}

#container #content #main .calendar .colum_left .box .border-top .week .arrow .corner-right {
	width: 5px;
	height: 22px;
	background-image: url(../media/layout_images/calendario_button_corner-right.png);
	background-repeat: no-repeat;
	float: left;
}

/* calendar // colum_left // top // week // label */

#container #content #main .calendar .colum_left .box .border-top .week .label {
	height: 22px;
	padding: 0 5px 0 5px;
	float: left;
}

#container #content #main .calendar .colum_left .box .border-top .week .label h1 {
	margin: 0;
	padding: 0;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 14px;
	font-weight: normal;
	color: #EEEEEE;
	text-decoration: none;
	line-height: 22px;
	text-shadow: 1px 1px #000000;
}

#container #content #main .calendar .colum_left .box .border-top .week .label h1 strong {
	color: #FFFFFF;
}

/* calendar // colum_left // top // buttons */

#container #content #main .calendar .colum_left .box .border-top .buttons {
	height: 22px;
	margin: 12px 0 0 8px;
	float: left;
}

#container #content #main .calendar .colum_left .box .border-top .buttons .button {
	margin: 2px 2px 0 0;
	height: 22px;
	float: left;
}

#container #content #main .calendar .colum_left .box .border-top .buttons .button img {
	margin-top: 2px;
}

#container #content #main .calendar .colum_left .box .border-top .buttons .button .corner-left {
	background-image: url(../media/layout_images/calendario_button_corner-left.png);
	background-repeat: no-repeat;
	width: 5px;
	height: 22px;
	float: left;
}

#container #content #main .calendar .colum_left .box .border-top .buttons .button.selected .corner-left {
	background-image: url(../media/layout_images/calendario_button_enabled_corner-left.png);
}

#container #content #main .calendar .colum_left .box .border-top .buttons .button .corner-right {
	background-image: url(../media/layout_images/calendario_button_corner-right.png);
	background-repeat: no-repeat;
	width: 5px;
	height: 22px;
	float: left;
}

#container #content #main .calendar .colum_left .box .border-top .buttons .button.selected .corner-right {
	background-image: url(../media/layout_images/calendario_button_enabled_corner-right.png);
}

#container #content #main .calendar .colum_left .box .border-top .buttons .button .label {
	background-image: url(../media/layout_images/calendario_button_bg.png);
	background-repeat: repeat-x;
	height: 22px;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 10px;
	color: #FFFFFF;
	font-weight: bold;
	line-height: 22px;
	text-transform: uppercase;
	text-shadow: 1px 1px #000000;
	float: left;
}

#container #content #main .calendar .colum_left .box .border-top .buttons .button.selected .label {
	background-image: url(../media/layout_images/calendario_button_enabled_bg.png);
}

#container #content #main .calendar .colum_left .box .border-top .buttons .button .label a {
	color: #FFFFFF;
	text-decoration: none;
}

#container #content #main .calendar .colum_left .box .border-top .buttons .button .label a:hover {
	text-decoration: underline;
}

#container #content #main .calendar .colum_left .box .border-top .buttons .button .icon {
	background-image: url(../media/layout_images/calendario_button_bg.png);
	background-repeat: repeat-x;
	height: 22px;
	float: left;
}

#container #content #main .calendar .colum_left .box .border-top .buttons .button .icon img {
	margin-top: 3px;
}

/* calendar // colum_left // top // select */

#container #content #main .calendar .colum_left .box .border-top .select {
	height: 22px;
	margin: 16px 0 0 6px;
	float: left;
}

#container #content #main .calendar .colum_left .box .border-top .select .corner-left {
	background-image: url(../media/layout_images/calendario_select_corner-left.png);
	background-repeat: no-repeat;
	width: 5px;
	height: 17px;
	float: left;
}

#container #content #main .calendar .colum_left .box .border-top .select .label {
	background-image: url(../media/layout_images/calendario_select_bg.png);
	background-repeat: repeat-x;
	height: 17px;
	float: left;
}

#container #content #main .calendar .colum_left .box .border-top .select .label h2 {
	margin: 0;
	padding: 0 8px 0 5px;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 10px;
	color: #999999;
	line-height: 17px;
	text-transform: uppercase;
}

#container #content #main .calendar .colum_left .box .border-top .select .button {
	background-image: url(../media/layout_images/calendario_select_corner-right.png);
	background-repeat: repeat-x;
	width: 17px;
	height: 17px;
	float: left;
}

/* calendar // colum_left // top // radio */

#container #content #main .calendar .colum_left .box .border-top .radio {
	margin: 12px 0 0 10px;
	float: left;
}

#container #content #main .calendar .colum_left .box .border-top .radio .item {
	height: 12px;
	margin-bottom: 2px;
	clear: both;
}

#container #content #main .calendar .colum_left .box .border-top .radio .item img {
	float: left;
}

#container #content #main .calendar .colum_left .box .border-top .radio .item h2 {
	margin: 0 0 0 2px;
	padding: 0;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 10px;
	color: #FFFFFF;
	font-weight: bold;
	line-height: 12px;
	text-transform: uppercase;
	text-shadow: 1px 1px #000000;
	float: left;
}

/* calendar // colum_left // bottom */

#container #content #main .calendar .colum_left .box .border-bottom {
	width: 640px;
	height: 30px;
	background-image: url(../media/layout_images/calendario_box-left_bottom.png);
	background-repeat: no-repeat;
}

/* calendar // colum_left // content */

#container #content #main .calendar .colum_left .box .content {
	width: 640px;
	background-image: url(../media/layout_images/calendario_box-left_bg.png);
	background-repeat: repeat-y;
}

/* calendar // colum_left // content // divide */

#container #content #main .calendar .colum_left .box .content .divide {
	border-top: 1px solid #333333;
	border-bottom: 1px solid #000000;
	margin: 0 10px 0 10px;
}

/* calendar // colum_left // content // days */

#container #content #main .calendar .colum_left .box .content .days {
	margin: 5px 0 0 14px;
}

/* calendar // colum_left // content // days // header */

#container #content #main .calendar .colum_left .box .content .days .header {
	margin: 0 0 0 3px;
}

#container #content #main .calendar .colum_left .box .content .days .header .label {
	margin: 0 3px 0 0;
	width: 84px;
	height: 21px;
	background-image: url(../media/layout_images/calendario_header_giallo_bg.png);
	background-repeat: repeat-x;
	text-align: center;
	float: left;
}

#container #content #main .calendar .colum_left .box .content .days .header .label.selected {
	background-image: url(../media/layout_images/calendario_header_rosso_bg.png);
}

#container #content #main .calendar .colum_left .box .content .days .header .label h2 {
	margin: 0;
	padding: 0;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 13px;
	color: #000000;
	line-height: 21px;
	font-weight: normal;
}

#container #content #main .calendar .colum_left .box .content .days .header .label.selected h2 {
	color: #FFFFFF;
}

/* calendar // colum_left // content // days // day */

#container #content #main .calendar .colum_left .box .content .days .day {
	margin: 0 0 0 3px;
	width: 84px;
	float: left;
}

/* calendar // colum_left // content // days // day // tasks */

#container #content #main .calendar .colum_left .box .content .days .day .tasks {
	width: 84px;
	background-image: url(../media/layout_images/calendario_bianco_bg.png);
	border-top: 3px solid #000000;
}

#container #content #main .calendar .colum_left .box .content .days .day .tasks .task {
	border-bottom: 3px solid #000000;
	padding: 2px;
	cursor: pointer;
}

#container #content #main .calendar .colum_left .box .content .days .day .tasks .task.lightblue {
	background-image: url(../media/layout_images/calendario_azzurro_bg.png);
}

#container #content #main .calendar .colum_left .box .content .days .day .tasks .task.yellow {
	background-image: url(../media/layout_images/calendario_giallo_bg.png);
}

#container #content #main .calendar .colum_left .box .content .days .day .tasks .task:hover {
	background-image: url(../media/layout_images/calendario_rosso_bg.png);
}

#container #content #main .calendar .colum_left .box .content .days .day .tasks .task h1 {
	margin: 0;
	padding: 0;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 11px;
	color: #000000;
	font-weight: bold;
	line-height: 13px;
}

#container #content #main .calendar .colum_left .box .content .days .day .tasks .task h2 {
	margin: 0;
	padding: 0;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 11px;
	color: #000000;
	font-weight: normal;
	font-style: italic;
	line-height: 13px;
}

#container #content #main .calendar .colum_left .box .content .days .day .tasks .task h3 {
	margin: 0;
	padding: 0;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 11px;
	color: #000000;
	font-weight: normal;
	line-height: 13px;
}

/* calendar // colum_left // content // month */

#container #content #main .calendar .colum_left .box .content .month .header {
	margin: 3px 0 0 17px;
}

#container #content #main .calendar .colum_left .box .content .month .header .label {
	margin: 0 3px 0 0;
	width: 84px;
	height: 21px;
	background-image: url(../media/layout_images/calendario_header_giallo_bg.png);
	background-repeat: repeat-x;
	text-align: center;
	float: left;
}

#container #content #main .calendar .colum_left .box .content .month .header .label.selected {
	background-image: url(../media/layout_images/calendario_header_rosso_bg.png);
}

#container #content #main .calendar .colum_left .box .content .month .header .label h2 {
	margin: 0;
	padding: 0;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 14px;
	color: #000000;
	line-height: 21px;
}

#container #content #main .calendar .colum_left .box .content .month .header .label.selected h2 {
	color: #FFFFFF;
}

#container #content #main .calendar .colum_left .box .content .month .elements {
	margin: 0 0 5px 17px;
}

#container #content #main .calendar .colum_left .box .content .month .elements .element {
	margin: 3px 3px 0 0;
	width: 84px;
	height: 65px;
	background-image: url(../media/layout_images/bg_calendar_td.png);
	float: left;
	overflow: hidden;
}

#container #content #main .calendar .colum_left .box .content .month .elements .element:hover {
	background-image: url(../media/layout_images/calendario_rosso_bg.png);
}

#container #content #main .calendar .colum_left .box .content .month .elements .element>* {
	position: absolute;
	z-index: 2;
}

#container #content #main .calendar .colum_left .box .content .month .elements .element h1 {
	margin: 0;
	padding: 0;
	width: 84px;
	height: 65px;
}

#container #content #main .calendar .colum_left .box .content .month .elements .element h2 {
	margin: 0;
	padding: 3px;
	width: 75px;
	overflow: hidden;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 12px;
	color: #666666;
	font-weight: bold;
	line-height: 12px;
	text-transform: uppercase;
	text-shadow: 1px 1px #000000;
	letter-spacing: -1px;
}

#container #content #main .calendar .colum_left .box .content .month .elements .element h2 a {
	text-decoration: none;
	color: #FFFFFF;
}

#container #content #main .calendar .colum_left .box .content .month .elements .element h3 {
	width: 22px;
	height: 22px;
	margin: 41px 0 0 2px;
	padding: 0;
	text-align: center;
}

#container #content #main .calendar .colum_left .box .content .month .elements .element h3 img {
	margin-top: 5px;
}

#container #content #main .calendar .colum_left .box .content .month .elements .element h4 {
	width: 22px;
	height: 22px;
	margin: 41px 0 0 60px;
	padding: 0;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 12px;
	color: #FFFFFF;
	font-weight: bold;
	line-height: 22px;
	text-transform: uppercase;
	text-shadow: 1px 1px #000000;
	letter-spacing: -1px;
	text-align: center;
}

#container #content #main .calendar .colum_left .box .content .month .elements .element h4 a {
	text-decoration: none;
	color: #FFFFFF;
}

#container #content #main .calendar .colum_left .box .content .month .elements .element h3.enabled,
#container #content #main .calendar .colum_left .box .content .month .elements .element h4.enabled
{
	background-image: url(../media/layout_images/calendar_month_gray_button.png);
	background-repeat: no-repeat;
}

#container #content #main .calendar .colum_left .box .content .month .elements .element h3.enabled.selected,
#container #content #main .calendar .colum_left .box .content .month .elements .element h4.enabled.selected
{
	background-image: url(../media/layout_images/calendar_month_red_button.png);
}

/* calendar // colum_left // content // month // buttons */

#container #content #main .calendar .colum_left .box .content .month .buttons {
	margin: 2px 0 0 12px;
}

/* calendar // colum_left // content // month // monitor */

#container #content #main .calendar .colum_left .box .content .month .monitor {
	width: 620px;
	margin: 2px 10px 0 10px;
	border-top: 1px solid #333333;
	border-bottom: 1px solid #000000;
}

#container #content #main .calendar .colum_left .box .content .month .monitor .row {
	border-bottom: 1px solid #333333;
	border-top: 1px solid #000000;
}

#container #content #main .calendar .colum_left .box .content .month .monitor .row .scroll {
	width: 140px;
	height: 20px;
	background-image: url(../media/layout_images/calendario_header_rosso_bg.png);
	background-repeat: repeat-x;
	border-left: 1px solid #000000;
	border-right: 1px solid #000000;
}

#container #content #main .calendar .colum_left .box .content .month .monitor .row .scroll img {
	padding: 4px 63px 4px 64px;
}

#container #content #main .calendar .colum_left .box .content .month .monitor .items .item {
	width: 620px;
	height: 30px;
	border-bottom: 1px solid #333333;
	border-top: 1px solid #000000;
	overflow: hidden;
}

#container #content #main .calendar .colum_left .box .content .month .monitor .items .item h3 {
	margin: 0;
	padding: 0;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 26px;
	color: #EEEEEE;
	font-weight: bold;
	line-height: 28px;
	text-transform: uppercase;
	text-shadow: 1px 1px #000000;
	letter-spacing: -1px;
	width: 140px;
	height: 30px;
	float: left;
	border-left: 1px solid #000000;
	border-right: 1px solid #000000;
	text-align: center;
}

#container #content #main .calendar .colum_left .box .content .month .monitor .items .label {
	width: 473px;
	height: 26px;
	padding: 2px;
	overflow: hidden;
	border-left: 1px solid #333333;
}

#container #content #main .calendar .colum_left .box .content .month .monitor .items .label:hover {
	background: #7C202C url(../media/layout_images/bg_dropdown.gif) repeat-x;
}

#container #content #main .calendar .colum_left .box .content .month .monitor .items .item h1 {
	margin: 0;
	padding: 0;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 14px;
	color: #EEEEEE;
	font-weight: bold;
	line-height: 14px;
	text-shadow: 1px 1px #000000;
}

#container #content #main .calendar .colum_left .box .content .month .monitor .items .item h1 a {
	color: #EEEEEE;
	text-decoration: none;
}

#container #content #main .calendar .colum_left .box .content .month .monitor .items .item h1 a:hover {
	text-decoration: underline;
}

#container #content #main .calendar .colum_left .box .content .month .monitor .items .item h2 {
	margin: 0;
	padding: 0;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 10px;
	color: #AAAAAA;
	font-weight: normal;
	line-height: 13px;
	text-shadow: 1px 1px #000000;
}

#container #content #main .calendar .colum_left .box .content .month .monitor .items .item h2 a {
	color: #EEEEEE;
	font-style: italic;
	font-weight: bold;
	text-decoration: none;
}

#container #content #main .calendar .colum_left .box .content .month .monitor .items .item h2 a:hover {
	text-decoration: underline;
}

/* calendar // colum_left // content // map */

#container #content #main .calendar .colum_left .box .content .map #custom_map {
	width: 603px;
	height: 600px;
	margin: 4px 0 0 18px;
}

#container #content #main .calendar .colum_left .box .content .map #custom_map #map_tooltip {
	display: none;
	position: absolute;
	width: 329px;
}

#container #content #main .calendar .colum_left .box .content .map #custom_map #map_tooltip .top {
	width: 329px;
	height: 25px;
	background-image: url(../media/layout_images/calendario_map_tooltip_top.png);
	background-repeat: no-repeat;
}

#container #content #main .calendar .colum_left .box .content .map #custom_map #map_tooltip .top .close {
	margin: 0 15px 0 15px;
	text-align: right;
	cursor: pointer;
}

#container #content #main .calendar .colum_left .box .content .map #custom_map #map_tooltip .top .close h4 {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 11px;
	color: #336699;
	font-weight: normal;
	line-height: 30px;
	text-decoration: none;
}

#container #content #main .calendar .colum_left .box .content .map #custom_map #map_tooltip .top .close h4:hover {
	text-decoration: underline;
}

#container #content #main .calendar .colum_left .box .content .map #custom_map #map_tooltip .content {
	width: 329px;
	height: 150px;
	background-image: url(../media/layout_images/calendario_map_tooltip_bg.png);
	background-repeat: repeat-y;
	overflow: hidden;
}

#container #content #main .calendar .colum_left .box .content .map #custom_map #map_tooltip .content p {
	margin: 0;
	padding: 0;
	text-align: center;
}

#container #content #main .calendar .colum_left .box .content .map #custom_map #map_tooltip .bottom {
	width: 329px;
	height: 90px;
	background-image: url(../media/layout_images/calendario_map_tooltip_bottom.png);
	background-repeat: no-repeat;
}

#container #content #main .calendar .colum_left .box .content .map #custom_map #map_tooltip h1 {
	margin: 0 15px 0 15px;
	padding: 0;
	height: 20px;
	background-color: #222222;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 12px;
	color: #B3111F;
	font-weight: bold;
	line-height: 20px;
	text-transform: uppercase;
	text-align: center;
}

#container #content #main .calendar .colum_left .box .content .map #custom_map #map_tooltip h2 {
	margin: 0 15px 0 15px;
	padding: 0;
	height: 20px;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 11px;
	color: #000000;
	font-weight: normal;
	line-height: 20px;
}

#container #content #main .calendar .colum_left .box .content .map #custom_map #map_tooltip .items {
	margin: 0 0 0 15px;
	padding: 0;
	height: 105px;
	overflow: hidden;
}

#container #content #main .calendar .colum_left .box .content .map #custom_map #map_tooltip .items .item {
	width: 280px;
	padding: 5px 0 5px 0;
	border-bottom: 1px dashed #CCCCCC;
}

#container #content #main .calendar .colum_left .box .content .map #custom_map #map_tooltip .items .item img {
	float: left;
	margin: 0 5px 0 0;
}

#container #content #main .calendar .colum_left .box .content .map #custom_map #map_tooltip .items .item h3 {
	margin: 0 0 5px 0;
	padding: 0;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 12px;
	color: #000000;
	font-weight: bold;
	line-height: 12px;
}

#container #content #main .calendar .colum_left .box .content .map #custom_map #map_tooltip .items .item a {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 11px;
	color: #336699;
	font-weight: normal;
	line-height: 15px;
	text-decoration: none;
}

#container #content #main .calendar .colum_left .box .content .map #custom_map #map_tooltip .items .item a:hover {
	text-decoration: underline;
}

#container #content #main .calendar .colum_left .box .content .map #custom_events {
	display: none;
}

/* calendar // colum_left // content // day */

#container #content #main .calendar .colum_left .box .content .day {
	margin: 3px 10px 3px 10px;
}

#container #content #main .calendar .colum_left .box .content .day .scroll {
	width: 620px;
	height: 20px;
	background-image: url(../media/layout_images/calendario_header_rosso_bg.png);
	background-repeat: repeat-x;
}

#container #content #main .calendar .colum_left .box .content .day .scroll img {
	padding: 4px 303px 4px 304px;
}

#container #content #main .calendar .colum_left .box .content .day .items {
	border-top: 1px solid #333333;
	border-bottom: 1px solid #000000;
	margin: 4px 0 3px 0;
}

#container #content #main .calendar .colum_left .box .content .day .items .item {
	border-top: 1px solid #000000;
	border-bottom: 1px solid #333333;
	padding: 2px;
}

#container #content #main .calendar .colum_left .box .content .day .items .divide {
	margin: 0;
	padding: 0;
}

#container #content #main .calendar .colum_left .box .content .day .items .item .image {
	width: 120px;
	height: 98px;
	float: left;
}

#container #content #main .calendar .colum_left .box .content .day .items .item .image img,
#container #content #main .calendar .colum_left .box .content .day .items .item .image .image_placeholder
{
	width: 117px;
	height: 98px;
}

#container #content #main .calendar .colum_left .box .content .day .items .item .text {
	width: 495px;
	border-left: 1px solid #333333;
	float: left;
}

#container #content #main .calendar .colum_left .box .content .day .items .item .text h1 {
	margin: 0 5px 0 5px;
	padding: 0;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 14px;
	color: #9E0918;
	font-weight: bold;
	line-height: 20px;
	text-shadow: 1px 1px #000000;
}

#container #content #main .calendar .colum_left .box .content .day .items .item .text h1 a {
	color: #9E0918;
	text-decoration: none;
}

#container #content #main .calendar .colum_left .box .content .day .items .item .text h1 a:hover {
	text-decoration: none;
}

#container #content #main .calendar .colum_left .box .content .day .items .item .text h2 {
	margin: 0 5px 0 5px;
	padding: 0;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 14px;
	color: #EEEEEE;
	font-weight: normal;
	line-height: 15px;
	font-style: italic;
	text-shadow: 1px 1px #000000;
}

#container #content #main .calendar .colum_left .box .content .day .items .item .text h3 {
	margin: 0 5px 0 5px;
	padding: 0;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 12px;
	color: #EEEEEE;
	font-weight: bold;
	line-height: 30px;
	text-align: center;
	text-transform: uppercase;
	text-shadow: 1px 1px #000000;
}

#container #content #main .calendar .colum_left .box .content .day .items .item .text ul {
	margin: 0 5px 0 5px;
	padding: 0;
	list-style: none;
}

#container #content #main .calendar .colum_left .box .content .day .items .item .text ul li {
	margin: 0;
	padding: 0;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 11px;
	color: #EEEEEE;
	line-height: 15px;
	font-style: italic;
	text-shadow: 1px 1px #000000;
}

#container #content #main .calendar .colum_left .box .content .day .items .item .text ul li strong {
	color: #9E0918;
	font-style: normal;
}

#container #content #main .calendar .colum_left .box .content .day .items .item .text .buttons {
	margin: -20px 0 1px 0;
	padding: 0;
	float: right;
}

/* calendar // colum_right */

#container #content #main .calendar .colum_right {
	margin-left: 10px;
	width: 310px;
	float: left;
}

/* calendar // colum_right // top */

#container #content #main .calendar .colum_right .box .border-top {
	width: 310px;
	height: 40px;
	background-image: url(../media/layout_images/calendario_box-right_top.png);
	background-repeat: no-repeat;
}

/* calendar // colum_right // top // buttons */

#container #content #main .calendar .colum_right .box .border-top .buttons,
#container #content #main .calendar .colum_right .box .border-bottom .buttons
{
	height: 22px;
	margin: 12px 0 0 18px;
	float: left;
}

#container #content #main .calendar .colum_right .box .border-top .buttons .button,
#container #content #main .calendar .colum_right .box .border-bottom .buttons .button
{
	margin: 2px 2px 0 0;
	height: 22px;
	float: left;
}

#container #content #main .calendar .colum_right .box .border-top .buttons .button img,
#container #content #main .calendar .colum_right .box .border-bottom .buttons .button img
{
	margin-top: 2px;
}

#container #content #main .calendar .colum_right .box .border-top .buttons .button .corner-left,
#container #content #main .calendar .colum_right .box .border-bottom .buttons .button .corner-left
{
	background-image: url(../media/layout_images/calendario_button_corner-left.png);
	background-repeat: no-repeat;
	width: 5px;
	height: 22px;
	float: left;
}

#container #content #main .calendar .colum_right .box .border-top .buttons .button.selected .corner-left,
#container #content #main .calendar .colum_right .box .border-bottom .buttons .button.selected .corner-left
{
	background-image: url(../media/layout_images/calendario_button_enabled_corner-left.png);
}

#container #content #main .calendar .colum_right .box .border-top .buttons .button .corner-right,
#container #content #main .calendar .colum_right .box .border-bottom .buttons .button .corner-right
{
	background-image: url(../media/layout_images/calendario_button_corner-right.png);
	background-repeat: no-repeat;
	width: 5px;
	height: 22px;
	float: left;
}

#container #content #main .calendar .colum_right .box .border-top .buttons .button.selected .corner-right,
#container #content #main .calendar .colum_right .box .border-bottom .buttons .button.selected .corner-right
{
	background-image: url(../media/layout_images/calendario_button_enabled_corner-right.png);
}

#container #content #main .calendar .colum_right .box .border-top .buttons .button .label,
#container #content #main .calendar .colum_right .box .border-bottom .buttons .button .label
{
	background-image: url(../media/layout_images/calendario_button_bg.png);
	background-repeat: repeat-x;
	height: 22px;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 10px;
	color: #FFFFFF;
	font-weight: bold;
	line-height: 22px;
	text-transform: uppercase;
	text-shadow: 1px 1px #000000;
	float: left;
}

#container #content #main .calendar .colum_right .box .border-top .buttons .button.selected .label,
#container #content #main .calendar .colum_right .box .border-bottom .buttons .button.selected .label
{
	background-image: url(../media/layout_images/calendario_button_enabled_bg.png);
}

#container #content #main .calendar .colum_right .box .border-top .buttons .button .label a,
#container #content #main .calendar .colum_right .box .border-bottom .buttons .button .label a
{
	color: #FFFFFF;
	text-decoration: none;
}

#container #content #main .calendar .colum_right .box .border-top .buttons .button .label a:hover,
#container #content #main .calendar .colum_right .box .border-bottom .buttons .button .label a:hover
{
	text-decoration: underline;
}

#container #content #main .calendar .colum_right .box .border-top .buttons .button .icon,
#container #content #main .calendar .colum_right .box .border-bottom .buttons .button .icon
{
	background-image: url(../media/layout_images/calendario_button_bg.png);
	background-repeat: repeat-x;
	height: 22px;
	float: left;
}

#container #content #main .calendar .colum_right .box .border-top .buttons .button .icon img,
#container #content #main .calendar .colum_right .box .border-bottom .buttons .button .icon img
{
	margin-top: 3px;
}

/* calendar // colum_right // top // pagination */

#container #content #main .calendar .colum_right .box .border-top .pagination {
	margin: 14px 18px 0 0;
	height: 22px;
	float: right;
}

/* calendar // colum_right // top // pagination // arrow */

#container #content #main .calendar .colum_right .box .border-top .pagination .arrow {
	height: 22px;
	float: left;
}

#container #content #main .calendar .colum_right .box .border-top .pagination .arrow .corner-left {
	width: 5px;
	height: 22px;
	background-image: url(../media/layout_images/calendario_button_corner-left.png);
	background-repeat: no-repeat;
	float: left;
}

#container #content #main .calendar .colum_right .box .border-top .pagination .arrow .icon {
	height: 22px;
	background-image: url(../media/layout_images/calendario_button_bg.png);
	background-repeat: repeat-x;
	float: left;
}

#container #content #main .calendar .colum_right .box .border-top .pagination .arrow .icon img {
	margin-top: 4px;
}

#container #content #main .calendar .colum_right .box .border-top .pagination .arrow .corner-right {
	width: 5px;
	height: 22px;
	background-image: url(../media/layout_images/calendario_button_corner-right.png);
	background-repeat: no-repeat;
	float: left;
}

/* calendar // colum_right // top // pagination // label */

#container #content #main .calendar .colum_right .box .border-top .pagination .label {
	height: 22px;
	padding: 0 5px 0 5px;
	float: left;
}

#container #content #main .calendar .colum_right .box .border-top .pagination .label h1 {
	margin: 0;
	padding: 0;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 11px;
	font-weight: normal;
	color: #EEEEEE;
	text-decoration: none;
	line-height: 22px;
	text-shadow: 1px 1px #000000;
}

#container #content #main .calendar .colum_right .box .border-top .pagination .label h1 strong {
	color: #FFFFFF;
}

/* calendar // colum_right // bottom */

#container #content #main .calendar .colum_right .box .border-bottom {
	width: 310px;
	height: 10px;
	background-image: url(../media/layout_images/calendario_box-right_bottom2.png);
	background-repeat: no-repeat;
}

/* calendar // colum_right // content */

#container #content #main .calendar .colum_right .box .content {
	width: 290px;
	padding: 0 10px 0 10px;
	background-image: url(../media/layout_images/calendario_box-right_bg.png);
	background-repeat: repeat-y;
}

/* calendar // colum_right // content // divide */

#container #content #main .calendar .colum_right .box .content .divide {
	border-top: 1px solid #333333;
	border-bottom: 1px solid #000000;
}

/* calendar // colum_right // content // image */

#container #content #main .calendar .colum_right .box .content .image {
	margin: 5px 0 5px 0;
}

#container #content #main .calendar .colum_right .box .content .image .image_placeholder,
#container #content #main .calendar .colum_right .box .content .image img
{
	width: 290px;
	height: 250px;
}

/* calendar // colum_right // content // caption */

#container #content #main .calendar .colum_right .box .content .caption {
	margin: 4px 10px 5px 10px;
}

#container #content #main .calendar .colum_right .box .content .caption h1 {
	margin: 0;
	padding: 0;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 12px;
	color: #A8202B;
	font-weight: bold;
	text-transform: uppercase;
	line-height: 15px;
	text-decoration: none;
	text-shadow: 1px 1px #000000;
}

#container #content #main .calendar .colum_right .box .content .caption h2 {
	margin: 0;
	padding: 0;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 12px;
	color: #FFFFFF;
	font-weight: normal;
	line-height: 15px;
	text-decoration: none;
	text-shadow: 1px 1px #000000;
}

/* calendar // colum_right // content // title */

#container #content #main .calendar .colum_right .box .content .title {
	border: none;
	text-align: center;
}

#container #content #main .calendar .colum_right .box .content .title h3 {
	margin: 0;
	padding: 0 0 2px 0;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 12px;
	color: #FFFFFF;
	font-weight: bold;
	text-transform: uppercase;
	line-height: 18px;
	text-decoration: none;
	text-shadow: 1px 1px #000000;
}

/* calendar // colum_right // content // ul */

#container #content #main .calendar .colum_right .box .content ul {
	list-style: none;
	margin: 3px 0 5px 0;
}

#container #content #main .calendar .colum_right .box .content ul li {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 10px;
	color: #EEEEEE;
	text-decoration: none;
	line-height: 15px;
	text-shadow: 1px 1px #000000;
	font-style: italic;
	padding: 0 10px 0 10px;
}

#container #content #main .calendar .colum_right .box .content ul li span {
	font-weight: bold;
	font-style: normal;
}

#container #content #main .calendar .colum_right .box .content ul li strong {
	color: #A8202B;
	font-style: normal;
	text-transform: uppercase;
}

#container #content #main .calendar .colum_right .box .content ul li a {
	font-size: 11px;
	color: #EEEEEE;
	text-decoration: underline;
	font-weight: bold;
}

#container #content #main .calendar .colum_right .box .content ul li a:hover {
	color: #A8202B;
}

#container #content #main .calendar .colum_right .box .content .buttons {
	margin: 0 0 0 5px;
}

#container #content #main .calendar .colum_right .box .content .buttons .text {
	margin: 4px 0 0 0;
	line-height: 9px;
	color: #EEEEEE;
}

#container #content #main .calendar .colum_right .box .content h4 {
	margin: 0 5px 0 10px;
	padding: 0;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 10px;
	color: #FFFFFF;
	font-weight: bold;
	line-height: 28px;
	text-decoration: none;
	text-shadow: 1px 1px #000000;
	float: left;
}

/* floating */

#container #content #main .floating {
	text-align: left;
}

/* floating // colum_left */

#container #content #main .floating .colum_left {
	width: 520px;
	float: left;
}

#container #content #main .floating .colum_left .box .border-top {
	width: 520px;
	height: 10px;
	background-image: url(../media/layout_images/box_left_border-top.png);
	background-repeat: no-repeat;
}

#container #content #main .floating .colum_left .box .border-bottom {
	width: 520px;
	height: 10px;
	background-image: url(../media/layout_images/box_left_border-bottom.png);
	background-repeat: no-repeat;
}

/* floating // colum_left // content */

#container #content #main .floating .colum_left .box .content {
	width: 520px;
	background-image: url(../media/layout_images/box_left_bg.png);
	background-repeat: repeat-y;
}

/* floating // colum_left // content // carousel */

#container #content #main .floating .colum_left .box .content .carousel {
	width: 500px;
	height: 280px;
}

#container #content #main .floating .colum_left .box .content .carousel .previous {
	width: 11px;
	height: 43px;
	position: absolute;
	z-index: 1;
	margin: 115px 0 0 -1px;
}

#container #content #main .floating .colum_left .box .content .carousel .next {
	width: 11px;
	height: 43px;
	position: absolute;
	z-index: 1;
	margin: 115px 0 0 510px;
}

#container #content #main .floating .colum_left .box .content .carousel .images {
	width: 500px;
	height: 280px;
	overflow: hidden;
	margin: 0 10px 0 10px;
}

#container #content #main .floating .colum_left .box .content .carousel .images .image_placeholder,
#container #content #main .floating .colum_left .box .content .carousel .images img
{
	width: 500px;
	height: 280px;
}

/* floating // colum_left // content // black */

#container #content #main .floating .colum_left .box .content .content_black {
	width: 500px;
	background-color: #111111;
	margin: 0 10px 0 10px;
}

#container #content #main .floating .colum_left .box .content .content_black_stripes {
	width: 500px;
	background-color: #FFFFFF;
	background-image: url(../media/layout_images/bg_calendar.png);
	margin: 0 10px 0 10px;
}

/* floating // colum_left // content // black // caption */

#container #content #main .floating .colum_left .box .content .content_black .caption,
#container #content #main .floating .colum_left .box .content .content_black_stripes .caption
{
	border-bottom: 1px solid #000000;
}

#container #content #main .floating .colum_left .box .content .content_black .caption h1,
#container #content #main .floating .colum_left .box .content .content_black_stripes .caption h1
{
	margin: 0;
	padding: 5px 5px 0 5px;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 12px;
	font-weight: bold;
	color: #EEEEEE;
	text-decoration: none;
	text-transform: uppercase;
	line-height: 12px;
}

#container #content #main .floating .colum_left .box .content .content_black .caption h2,
#container #content #main .floating .colum_left .box .content .content_black_stripes .caption h2
{
	margin: 0;
	padding: 0 5px 5px 5px;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 9px;
	font-weight: normal;
	color: #CCCCCC;
	text-decoration: none;
	line-height: 9px;
}

/* floating // colum_left // content // black // p */

#container #content #main .floating .colum_left .box .content .content_black p,
#container #content #main .floating .colum_left .box .content .content_black_stripes p
{
	margin: 0;
	padding: 5px;
	border-top: 1px solid #333333;
	border-bottom: 1px solid #000000;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 12px;
	color: #CCCCCC;
	line-height: 14px;
}

#container #content #main .floating .colum_left .box .content .content_black p a,
#container #content #main .floating .colum_left .box .content .content_black_stripes p a
{
	background-image: url(../media/layout_images/topbar_arrow_down.png);
	background-repeat: no-repeat;
	background-position: right center;
	padding: 0 12px 0 0;
	font-size: 11px;
	color: #CCCCCC;
	font-style: italic;
	font-weight: bold;
	text-decoration: none;
}

#container #content #main .floating .colum_left .box .content .content_black p a:hover,
#container #content #main .floating .colum_left .box .content .content_black_stripes p a:hover
{
	text-decoration: underline;
}

/* floating // colum_left // content // black // slider */

#container #content #main .floating .colum_left .box .content .content_black .slider,
#container #content #main .floating .colum_left .box .content .content_black_stripes .slider
{
	border-top: 1px solid #333333;
	padding: 0 10px 0 10px;
	text-align: right;
}

/* floating // colum_left // content // black // title */

#container #content #main .floating .colum_left .box .content .content_black .title,
#container #content #main .floating .colum_left .box .content .content_black_stripes .title
{
	border: none;
	width: 500px;
	height: 65px;
	background-image: url(../media/layout_images/box_left_titlebar.png);
	background-repeat: no-repeat;
	overflow: hidden;
}

#container #content #main .floating .colum_left .box .content .content_black .title h1,
#container #content #main .floating .colum_left .box .content .content_black_stripes .title h1
{
	margin: 0;
	padding: 0;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 26px;
	color: #333333;
	line-height: 45px;
	text-transform: uppercase;
	text-align: center;
}

/* floating // colum_left // content // black // map */

#container #content #main .floating .colum_left .box .content .content_black .map,
#container #content #main .floating .colum_left .box .content .content_black_stripes .map
{
	text-align: center;
}

#container #content #main .floating .colum_left .box .content .content_black .map img,
#container #content #main .floating .colum_left .box .content .content_black_stripes .map img
{
	width: 474px;
	height: 347px;
	margin-bottom: 5px;
}

/* floating // colum_left // content // black // ul */

#container #content #main .floating .colum_left .box .content .content_black ul,
#container #content #main .floating .colum_left .box .content .content_black_stripes ul,
#container #content #main .floating .colum_right .box .content .content_black_stripes ul
{
	list-style: none;
	border-top: 1px solid #000000;
}

#container #content #main .floating .colum_left .box .content .content_black ul li,
#container #content #main .floating .colum_left .box .content .content_black_stripes ul li,
#container #content #main .floating .colum_right .box .content .content_black_stripes ul li
{
	border-top: 1px solid #333333;
	border-bottom: 1px solid #000000;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 12px;
	color: #EEEEEE;
	text-decoration: none;
	line-height: 20px;
	text-shadow: 1px 1px #000000;
	padding: 0 15px 0 15px;
}

#container #content #main .floating .colum_left .box .content .content_black ul li strong,
#container #content #main .floating .colum_left .box .content .content_black_stripes ul li strong,
#container #content #main .floating .colum_right .box .content .content_black_stripes ul li strong
{
	color: #A8202B;
}

#container #content #main .floating .colum_left .box .content .content_black ul li a,
#container #content #main .floating .colum_left .box .content .content_black_stripes ul li a,
#container #content #main .floating .colum_right .box .content .content_black_stripes ul li a
{
	color: #EEEEEE;
	text-decoration: none;
	font-weight: bold;
}

#container #content #main .floating .colum_left .box .content .content_black ul li a:hover,
#container #content #main .floating .colum_left .box .content .content_black_stripes ul li a:hover,
#container #content #main .floating .colum_right .box .content .content_black_stripes ul li a:hover
{
	text-decoration: underline;
}

#container #content #main .floating .colum_left .box .content .content_black ul li ul,
#container #content #main .floating .colum_left .box .content .content_black_stripes ul li ul,
#container #content #main .floating .colum_right .box .content .content_black_stripes ul li ul
{
	border: none;
	list-style: square;
	margin-left: 20px;
}

#container #content #main .floating .colum_left .box .content .content_black ul li ul li,
#container #content #main .floating .colum_left .box .content .content_black_stripes ul li ul li,
#container #content #main .floating .colum_right .box .content .content_black_stripes ul li ul li
{
	border: none;
}

#container #content #main .floating .colum_left .box .content .content_black ul li ul li div,
#container #content #main .floating .colum_left .box .content .content_black_stripes ul li ul li div,
#container #content #main .floating .colum_right .box .content .content_black_stripes ul li ul li div
{
	margin-left: -20px;
}

#container #content #main .floating .colum_left .box .content .content_black ul li ul li div a,
#container #content #main .floating .colum_left .box .content .content_black_stripes ul li ul li div a,
#container #content #main .floating .colum_right .box .content .content_black_stripes ul li ul li div a
{
	background-image: url(../media/layout_images/button_folder.png);
	background-repeat: no-repeat;
	background-position: right center;
	padding-right: 19px;
}

/* floating // colum_left // content // black // buttons */

#container #content #main .floating .colum_left .box .content .content_black .buttons,
#container #content #main .floating .colum_left .box .content .content_black_stripes .buttons
{
	padding: 5px 10px 7px 10px;
	border-top: 1px solid #333333;
}

#container #content #main .floating .colum_left .box .content .content_black .buttons .button,
#container #content #main .floating .colum_left .box .content .content_black_stripes .buttons .button
{
	float: right;
}

/* floating // colum_right */

#container #content #main .floating .colum_right {
	width: 413px;
	margin-left: 20px;
	float: left;
}

#container #content #main .floating .colum_right .box .border-top {
	width: 413px;
	height: 10px;
	background-image: url(../media/layout_images/box_right_border-top.png);
	background-repeat: no-repeat;
}

#container #content #main .floating .colum_right .box .border-bottom {
	width: 413px;
	height: 10px;
	background-image: url(../media/layout_images/box_right_border-bottom.png);
	background-repeat: no-repeat;
}

/* floating // colum_right // content */

#container #content #main .floating .colum_right .box .content {
	width: 413px;
	background-image: url(../media/layout_images/box_right_bg.png);
	background-repeat: repeat-y;
}

/* floating // colum_right // content // black */

#container #content #main .floating .colum_right .box .content .content_black_stripes {
	width: 393px;
	background-color: #FFFFFF;
	background-image: url(../media/layout_images/bg_calendar.png);
	margin: 0 10px 0 10px;
}

/* floating // colum_right // content // black // title */

#container #content #main .floating .colum_right .box .content .content_black_stripes .title {
	border: none;
	width: 393px;
	height: 65px;
	background-image: url(../media/layout_images/box_right_titlebar.png);
	background-repeat: no-repeat;
	overflow: hidden;
}

#container #content #main .floating .colum_right .box .content .content_black_stripes .title h1 {
	margin: 0;
	padding: 0;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 26px;
	color: #333333;
	line-height: 45px;
	text-transform: uppercase;
	text-align: center;
}

/* floating // colum_right // content // black // caption */

#container #content #main .floating .colum_right .box .content .content_black_stripes .caption {
	margin: 0 15px 0 15px;
}

#container #content #main .floating .colum_right .box .content .content_black_stripes .caption h1 {
	margin: 0 10px 0 10px;
	padding: 0;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 14px;
	color: #CCCCCC;
	text-decoration: none;
	line-height: 14px;
}

#container #content #main .floating .colum_right .box .content .content_black_stripes .caption h2 {
	margin: 2px 0 0 0;
	padding: 0;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 20px;
	color: #A8202B;
	text-decoration: none;
	line-height: 20px;
}

/* floating // colum_right // content // black // textarea */

#container #content #main .floating .colum_right .box .content .content_black_stripes .textarea {
	border-top: 1px solid #333333;
	border-bottom: 1px solid #000000;
	width: 363px;
	height: 253px;
	overflow: hidden;
	padding: 0 15px 0 15px;
}

#container #content #main .floating .colum_right .box .content .content_black_stripes .textarea h1 {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 12px;
	color: #A8202B;
	text-decoration: none;
	line-height: 12px;
	text-shadow: 1px 1px #000000;
}

#container #content #main .floating .colum_right .box .content .content_black_stripes .textarea .text {
	width: 363px;
	height: 210px;
	overflow: hidden;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 12px;
	color: #CCCCCC;
	text-decoration: none;
	text-align: justify;
}

#container #content #main .floating .colum_right .box .content .content_black_stripes .textarea div {
	outline: none;
}

#container #content #main .floating .colum_right .box .content .content_black_stripes .textarea .text strong {
	color: #EEEEEE;
}

/* floating // colum_right // content // black // buttons */

#container #content #main .floating .colum_right .box .content .content_black_stripes .buttons {
	padding: 5px 15px 7px 15px;
	border-top: 1px solid #333333;
}

/* middle */

#container #middle {
	width: 100%;
	top: 50%;
	position: absolute;
	z-index: 1;
}

#container #middle #main {
	width: 960px;
}

/* middle // search */

#container #middle #main .search {
	width: 460px;
}

#container #middle #main .search ul {
	height: 17px;
	list-style: none;
}

#container #middle #main .search ul li {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #FFFFFF;
	text-decoration: none;
	text-transform: uppercase;
	line-height: 16px;
	margin: 0 2px 0 0;
	padding: 0 10px 0 10px;
	height: 16px;
	border-top: 1px solid #333333;
	border-left: 1px solid #333333;
	border-right: 1px solid #333333;
	background-color: #000000;
	float: left;
	cursor: pointer;
}

#container #middle #main .search ul li.selected {
	color: #CC0000 !important;
}

/* middle // search // form */

#container #middle #main .search form {
	height: 33px;
}

#container #middle #main .search form input {
	float: left;
}

#container #middle #main .search form #keyword {
	width: 402px;
	height: 23px;
	background-image: url(../media/layout_images/topbar_input_text.png);
	background-repeat: no-repeat;
	font-family: Arial, Helvetica, sans-serif;
	font-weight: bold;
	font-size: 15px;
	color: #666666;
	text-decoration: none;
	line-height: 15px;
	padding: 10px 10px 0 10px;
}

/*********************
** END MAIN CONTENT **
*********************/

/********************
** START BOTTOMBAR **
********************/

/* bottombar */

#container #bottombar {
	position: fixed;
	z-index: 2;
	bottom: 0;
	width: 100%;
	height: 29px;
	left: 0;
}

/* bottombar // corners */

#container #bottombar .corner_left {
	position: absolute;
	z-index: 3;
	width: 12px;
	height: 29px;
	left: 0px;
	background-image: url(../media/layout_images/bottombar_corner_left.png);
	background-repeat: no-repeat;
}

#container #bottombar .corner_right {
	position: absolute;
	z-index: 3;
	width: 12px;
	height: 29px;
	right: 0px;
	background-image: url(../media/layout_images/bottombar_corner_right.png);
	background-repeat: no-repeat;
}

/* bottombar // content */

#container #bottombar .content {
	margin: 0 12px 0 12px;
	height: 29px;
	background-image: url(../media/layout_images/bottombar_bg.png);
	background-repeat: repeat-x;
}

#container #bottombar .content .bar {
	width: 960px;
	height: 29px;
	text-align: left;
}

/* bottombar // content // caption */

#container #bottombar .content .bar #caption {
	width: 650px;
	height: 29px;
	float: left;
	background-image: url(../media/layout_images/bottombar_icon_item.png);
	background-repeat: no-repeat;
	background-position: left 6px;
	cursor: pointer;
}

#container #bottombar .content .bar #caption input {
	margin: -12px 0 0 20px;
	position: absolute;
	z-index: 10;
}

#container #bottombar .content .bar #caption h1 {
	margin: 0px;
	padding: 0px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	line-height: 10px;
	margin: 3px 0 0 20px;
	color: #FFFFFF;
	text-decoration: none;
}

#container #bottombar .content .bar #caption h2 {
	margin: 0px;
	padding: 0px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	line-height: 10px;
	margin: 0 0 0 20px;
	color: #888888;
	text-decoration: none;
}

/* bottombar // content // copyright */

#container #bottombar .content .bar #copyright {
	width: 650px;
	height: 29px;
	float: left;
}

#container #bottombar .content .bar #copyright ul {
	list-style: none;
}

#container #bottombar .content .bar #copyright ul li {
	float: left;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 9px;
	line-height: 15px;
	color: #CCCCCC;
	margin-right: 5px;
}

#container #bottombar .content .bar #copyright ul li a {
	color: #FFFFFF;
	text-decoration: none;
}

#container #bottombar .content .bar #copyright ul li a:hover {
	color: #CC0000;
}

#container #bottombar .content .bar #copyright h3 {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 9px;
	font-weight: normal;
	line-height: 9px;
	text-decoration: none;
	color: #666666;
	padding: 0;
	margin: 0;
}

/* bottombar // content // functions */

#container #bottombar .content .bar #functions {
	width: 310px;
	height: 29px;
	float: left;
}

#container #bottombar .content .bar #functions ul {
	list-style: none;
}

#container #bottombar .content .bar #functions ul li {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 10px;
	color: #FFFFFF;
	text-transform: uppercase;
	text-decoration: none;
	line-height: 26px;
	padding: 0 5px 0 2px;
	margin: 1px 2px 0 0;
	height: 28px;
	border-left: 1px solid #333333;
	border-right: 1px solid #333333;
	float: right;
	cursor: pointer;
}

#container #bottombar .content .bar #functions ul li input {
	margin-top: -13px;
	position: absolute;
	z-index: 10;
}

#container #bottombar .content .bar #functions ul li img {
	margin: 5px 2px 0 0;
	float: left;
}

/******************
** END BOTTOMBAR **
******************/

/*****************************
** START BOTTOMBAR DROPDOWN **
*****************************/

/* bottombar // content // calendar_container */

#container #bottombar .content .bar #calendar_container {
	position: absolute;
	z-index: 6;
	display: none;
	width: 770px;
	height: 500px;
	margin-top: -499px;
}

.homepage #container #bottombar .content .bar #calendar_container {
	width: 870px;
}

#container #bottombar .content .bar #calendar_container #calendar {
	width: 455px;
	text-align: left;
}

/* bottombar // content // network & partners */

#container #bottombar .content .bar #network_container {
	position: absolute;
	z-index: 6;
	display: none;
	width: 958px;
	height: 500px;
	margin-top: -499px;
}

#container #bottombar .content .bar #partners_container {
	position: absolute;
	z-index: 6;
	display: none;
	width: 870px;
	height: 500px;
	margin-top: -499px;
}

#container #bottombar .content .bar #network_container #network,
#container #bottombar .content .bar #partners_container #partners
{
	width: 130px;
	text-align: left;
}

/* bottombar // content // network & partners // ul */

#container #bottombar .content .bar #network_container #network ul,
#container #bottombar .content .bar #partners_container #partners ul 
{
	background-image: url(../media/layout_images/bg_calendar.png);
	border: 1px solid #333333;
	padding: 5px;
	list-style: none;
}

#container #bottombar .content .bar #network_container #network ul li,
#container #bottombar .content .bar #partners_container #partners ul li
{
	background-image: url(../media/layout_images/bg_calendar_td.png);
	border-top: 1px solid #000000;
	border-bottom: 1px solid #333333;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 10px;
	font-weight: bold;
	line-height: 18px;
	text-transform: uppercase;
	text-shadow: 1px 1px #000000;
}

#container #bottombar .content .bar #network_container #network ul li a,
#container #bottombar .content .bar #partners_container #partners ul li a 
{
	color: #FFFFFF;
	text-decoration: none;
	margin-left: 5px;
}

/* bottombar // content // network & partners // close button */

#container #bottombar .content .bar #network_container #network div.close,
#container #bottombar .content .bar #partners_container #partners div.close
{
	height: 12px;
}

#container #bottombar .content .bar #network_container #network div.close div.button,
#container #bottombar .content .bar #partners_container #partners div.close div.button
{
	width: 53px;
	height: 12px;
	background-image: url(../media/layout_images/calendar_close_button.png);
	background-repeat: no-repeat;
	cursor: pointer;
}

/* bottombar // content // note */

#container #bottombar .content .bar #note_container {
	position: absolute;
	z-index: 6;
	display: none;
	width: 450px;
	height: 500px;
	margin-top: -499px;
}

#container #bottombar .content .bar #note_container #note {
	width: 430px;
	text-align: left;
}

/* bottombar // content // note // text */

#container #bottombar .content .bar #note_container #note .text {
	background-image: url(../media/layout_images/bg_calendar.png);
	border: 1px solid #333333;
	padding: 10px;
}

#container #bottombar .content .bar #note_container #note .text h1 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	color: #FFFFFF;
	line-height: 18px;
	margin: 0;
	padding: 0;
}

#container #bottombar .content .bar #note_container #note .text h2 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: normal;
	font-style: italic;
	color: #CCCCCC;
	line-height: 16px;
	margin: 0;
	padding: 0;
}

#container #bottombar .content .bar #note_container #note .text p {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: normal;
	font-style: italic;
	color: #CCCCCC;
	line-height: 16px;
	margin: 15px 0 15px 0;
}

#container #bottombar .content .bar #note_container #note .text p strong {
	color: #FFFFFF;
}

#container #bottombar .content .bar #note_container #note .text a {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: normal;
	text-decoration: none;
	color: #CC0000;
	line-height: 16px;
}

/* bottombar // content // note // close button */

#container #bottombar .content .bar #note_container #note div.close {
	height: 12px;
}

#container #bottombar .content .bar #note_container #note div.close div.button {
	width: 53px;
	height: 12px;
	background-image: url(../media/layout_images/calendar_close_button.png);
	background-repeat: no-repeat;
	cursor: pointer;
}

/***************************
** END BOTTOMBAR DROPDOWN **
***************************/

/**************************
** START TOPBAR DROPDOWN **
**************************/

/* topbar // login_container */

#container #topbar .bar #login_container {
	position: absolute;
	z-index: 6;
	display: none;
	width: 878px;
	height: 500px;
	margin-top: 30px;
}

#container #topbar .bar #login_container #login {
	width: 206px;
	text-align: left;
}

/* topbar // login_container // header */

#container #topbar .bar #login_container #login .header {
	width: 206px;
	height: 39px;
}

/* topbar // login_container // content */

#container #topbar .bar #login_container #login .content {
	width: 204px;
	margin: 0 1px 0 1px;
	background-image: url(../media/layout_images/bg_calendar.png);
}

#container #topbar .bar #login_container #login .content .border_left {
	width: 1px;
	height: 147px;
	background-image: url(../media/layout_images/dropdown_login_border-left.png);
	background-repeat: no-repeat;
	float: left;
}

/* topbar // login_container // content // form */

#container #topbar .bar #login_container #login .content .form {
	width: 202px;
	float: left;
}

#container #topbar .bar #login_container #login .content .form .vcard {
	padding: 35px 10px 35px 10px;
}

#container #topbar .bar #login_container #login .content .form .vcard .photo {
	margin: 0 10px 0 0;
	width: 39px;
	height: 39px;
	border: 1px solid #666666;
	float: left;
}

#container #topbar .bar #login_container #login .content .form .vcard .photo img {
	width: 39px;
	height: 39px;
}

#container #topbar .bar #login_container #login .content .form .vcard .message {
	float: left;
}

#container #topbar .bar #login_container #login .content .form .vcard .message h2 {
	margin: 0;
	padding: 0;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 11px;
	color: #FFFFFF;
	text-decoration: none;
	line-height: 14px;
	font-weight: normal;
}

#container #topbar .bar #login_container #login .content .form .vcard .message h1 {
	margin: 0;
	padding: 0;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 11px;
	color: #FFFFFF;
	text-decoration: none;
	line-height: 14px;
	font-weight: bold;
}

#container #topbar .bar #login_container #login .content .form .facebook {
	margin-top: 5px;
	text-align: center;
}

#container #topbar .bar #login_container #login .content .form .divide {
	border-top: 1px solid #333333;
	border-bottom: 1px solid #000000;
	margin: 5px 10px 5px 10px;
}

/* topbar // login_container // content // form // field */

#container #topbar .bar #login_container #login .content .form .field {
	margin: 5px 10px 5px 10px;
}

#container #topbar .bar #login_container #login .content .form .field img {
	float: left;
}

#container #topbar .bar #login_container #login .content .form .field input {
	width: 140px;
	background: none;
	border: none;
	background-image: url(../media/layout_images/dropdown_login_username_bg.png);
	background-repeat: repeat-x;
	height: 29px;
	float: left;
	padding: 0 5px 0 5px;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 11px;
	color: #FFFFFF;
	text-decoration: none;
	line-height: 29px;
	text-shadow: 1px 1px #000000;
}

/* topbar // login_container // content // form // radio */

#container #topbar .bar #login_container #login .content .form .radio {
	width: 115px;
	height: 20px;
	margin: 2px 0 0 10px;
	float: left;
}

#container #topbar .bar #login_container #login .content .form .radio input,
#container #topbar .bar #login_container #login .content .form .radio img
{
	float: left;
	cursor: pointer;
}

#container #topbar .bar #login_container #login .content .form .radio label {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 11px;
	color: #EEEEEE;
	text-decoration: none;
	line-height: 20px;
	text-shadow: 1px 1px #000000;
	margin-left: 5px;
	float: left;
}

/* topbar // login_container // content // form // submit */

#container #topbar .bar #login_container #login .content .form .submit {
	width: 66px;
	height: 25px;
	margin-bottom: 5px;
	float: left;
}

/* topbar // login_container // content // form // button */

#container #topbar .bar #login_container #login .content .form .button {
}

#container #topbar .bar #login_container #login .content .form .button .corner_left {
	width: 10px;
	height: 38px;
	background-image: url(../media/layout_images/dropdown_login_submit_corner-left.png);
	background-repeat: no-repeat;
	float: left;
}

#container #topbar .bar #login_container #login .content .form .button .label_left {
	background-image: url(../media/layout_images/dropdown_login_submit_bg-left.png);
	background-repeat: repeat-x;
	width: 115px;
	height: 38px;
	overflow: hidden;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 9px;
	line-height: 38px;
	text-align: left;
	float: left;
}

#container #topbar .bar #login_container #login .content .form .button .divide_left {
	width: 1px;
	height: 38px;
	background-image: url(../media/layout_images/dropdown_login_submit_shadow-left.png);
	background-repeat: no-repeat;
	float: left;
}

#container #topbar .bar #login_container #login .content .form .button .divide_right {
	width: 1px;
	height: 38px;
	background-image: url(../media/layout_images/dropdown_login_submit_shadow-right.png);
	background-repeat: no-repeat;
	float: left;
}

#container #topbar .bar #login_container #login .content .form .button .label_right {
	background-image: url(../media/layout_images/dropdown_login_submit_bg-left.png);
	background-repeat: repeat-x;
	width: 65px;
	height: 38px;
	overflow: hidden;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 9px;
	line-height: 38px;
	text-align: right;
	float: left;
}

#container #topbar .bar #login_container #login .content .form .button .corner_right {
	width: 10px;
	height: 38px;
	background-image: url(../media/layout_images/dropdown_login_submit_corner-right.png);
	background-repeat: no-repeat;
	float: left;
}

#container #topbar .bar #login_container #login .content .form .button .label_left a,
#container #topbar .bar #login_container #login .content .form .button .label_right a
{
	color: #EEEEEE;
	text-decoration: none;
	background-image: url(../media/layout_images/square.gif);
	background-repeat: no-repeat;
	background-position: left 5px;
	padding-left: 8px;
}

#container #topbar .bar #login_container #login .content .form .button .label_left a:hover,
#container #topbar .bar #login_container #login .content .form .button .label_right a:hover
{
	text-decoration: underline;
}

#container #topbar .bar #login_container #login .content .border_right {
	width: 1px;
	height: 147px;
	background-image: url(../media/layout_images/dropdown_login_border-right.png);
	background-repeat: no-repeat;
	float: left;
}

/* topbar // language */

#container #topbar .bar #language_container {
	position: absolute;
	z-index: 6;
	display: none;
	width: 958px;
	height: 500px;
	margin-top: 30px;
}

#container #topbar .bar #language_container #language {
	width: 100px;
	height: 47px;
	text-align: left;
}

#container #topbar .bar #language_container #language .border_left {
	width: 2px;
	height: 47px;
	background-image: url(../media/layout_images/dropdown_language_border-left.png);
	background-repeat: no-repeat;
	float: left;
}

/* topbar // language // ul */

#container #topbar .bar #language_container #language ul {
	width: 96px;
	height: 47px;
	background-image: url(../media/layout_images/dropdown_language_bg.png);
	background-repeat: repeat-x;
	list-style: none;
	float: left;
}

#container #topbar .bar #language_container #language ul li {
	background-image: url(../media/layout_images/bg_calendar_td.png);
	border-top: 1px solid #000000;
	border-bottom: 1px solid #333333;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 10px;
	font-weight: bold;
	line-height: 21px;
	text-transform: uppercase;
	text-shadow: 1px 1px #000000;
}

#container #topbar .bar #language_container #language ul li a {
	color: #FFFFFF;
	text-decoration: none;
	margin-left: 5px;
	padding-left: 15px;
}

#container #topbar .bar #language_container #language ul li a.it {
	background-image: url(../media/layout_images/flag_it.png);
	background-repeat: no-repeat;
	background-position: left 0px;
}

#container #topbar .bar #language_container #language ul li a.uk {
	background-image: url(../media/layout_images/flag_uk.png);
	background-repeat: no-repeat;
	background-position: left 0px;
}

#container #topbar .bar #language_container #language .border_right {
	width: 2px;
	height: 47px;
	background-image: url(../media/layout_images/dropdown_language_border-right.png);
	background-repeat: no-repeat;
	float: left;
}

/************************
** END TOPBAR DROPDOWN **
************************/

/****************************
** START CALENDAR DIALOGS **
****************************/

#blackscreen {
	position: fixed;
	z-index: 1000;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url(../media/layout_images/bg_calendar.png);
	overflow: hidden;
	display: none;
}

#fullscreen {
	position: fixed;
	z-index: 1001;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	display: none;
}

#fullscreen .calendar {
	margin-top: 142px;
	width: 794px;
	text-align: left;
}

#fullscreen .calendar .header {
	height: 35px;
}

#container #bottombar .content .bar #calendar_container #calendar .header {
	height: 23px;
}

#fullscreen .calendar .header .months {
	height: 35px;
	background-image: url(../media/layout_images/fullscreencalendar_red_bg.png);
	background-repeat: repeat-x;
	float: left;
}

#container #bottombar .content .bar #calendar_container #calendar .header .months {
	height: 23px;
	background-image: url(../media/layout_images/minicalendar_red_bg.png);
	background-repesat: repeat-x;
	float: left;
}

#fullscreen .calendar .header .months img,
#container #bottombar .content .bar #calendar_container #calendar .header .months img
{
	margin: 5px;
	float: left;
}

#fullscreen .calendar .header .months h1 {
	margin: 0;
	padding: 0;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 16px;
	color: #FFFFFF;
	font-weight: bold;
	line-height: 35px;
	text-shadow: 1px 1px #000000;
	text-transform: uppercase;
	float: left;
}

#container #bottombar .content .bar #calendar_container #calendar .header .months h1 {
	margin: 0;
	padding: 0;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 13px;
	color: #FFFFFF;
	font-weight: bold;
	line-height: 23px;
	text-shadow: 1px 1px #000000;
	text-transform: uppercase;
	float: left;
}

#fullscreen .calendar .header .close {
	height: 35px;
	float: right;
}

#container #bottombar .content .bar #calendar_container #calendar .header .close {
	height: 23px;
	float: right;
}

#fullscreen .calendar .header .close .button {
	margin-top: 11px;
	width: 97px;
	height: 24px;
	background-image: url(../media/layout_images/fullscreencalendar_close_buttontop.png);
	background-repeat: no-repeat;
	cursor: pointer;
}

#container #bottombar .content .bar #calendar_container #calendar .header .close .button {
	margin-top: 11px;
	width: 53px;
	height: 12px;
	background-image: url(../media/layout_images/calendar_close_button.png);
	background-repeat: no-repeat;
	cursor: pointer;
}

#fullscreen .calendar .content {
	margin: 0;
	padding: 0;
	width: 794px;
	padding-top: 3px;
	background-color: #000000;
}

#container #bottombar .content .bar #calendar_container #calendar .content {
	margin: 0;
	padding: 0;
	width: auto;
	height: auto;
	padding-top: 8px;
	background-image: url(../media/layout_images/bg_calendar.png);
	background-repeat: repeat;
	border: 1px solid #333333;
}

#fullscreen .calendar .content .labels,
#container #bottombar .content .bar #calendar_container #calendar .content .labels
{
	margin: 0 0 0 3px;
}

#fullscreen .calendar .content .labels h2 {
	width: 110px;
	height: 53px;
	background-image: url(../media/layout_images/fullscreencalendar_white_bg.png);
	background-repeat: repeat-x;
	margin: 0 3px 0 0;
	text-align: center;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 24px;
	color: #000000;
	font-weight: bold;
	line-height: 53px;
	float: left;
}

#container #bottombar .content .bar #calendar_container #calendar .content .labels h2 {
	width: 63px;
	height: 27px;
	background-image: url(../media/layout_images/minicalendar_white_bg.png);
	background-repeat: repeat-x;
	margin: 0 1px 0 0;
	text-align: center;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	color: #000000;
	font-weight: bold;
	line-height: 27px;
	float: left;
}

#fullscreen .calendar .content .labels h2.holiday {
	background-image: url(../media/layout_images/fullscreencalendar_red_bg.png);
	color: #FFFFFF;
	text-shadow: 1px 1px #000000;
}

#container #bottombar .content .bar #calendar_container #calendar .content .labels h2.holiday {
	background-image: url(../media/layout_images/minicalendar_red_bg.png);
	color: #FFFFFF;
	text-shadow: 1px 1px #000000;
}

#fullscreen .calendar .content .days {
	margin: 3px 0 0 3px;
}

#container #bottombar .content .bar #calendar_container #calendar .content .days {
	margin: 1px 0 2px 3px;
}

#fullscreen .calendar .content .days .day {
	margin: 0 3px 3px 0;
	width: 110px;
	height: 87px;
	background-image: url(../media/layout_images/bg_calendar_td.png);
	overflow: hidden;
	float: left;
}

#container #bottombar .content .bar #calendar_container #calendar .content .days .day {
	margin: 0 1px 1px 0;
	width: 63px;
	height: 50px;
	background-image: url(../media/layout_images/bg_calendar_td.png);
	overflow: hidden;
	float: left;
}

#fullscreen .calendar .content .days .day h1 {
	position: absolute;
	z-index: 1003;
	margin: 5px;
	padding: 0;
	width: 100px;
	height: 77px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 13px;
	color: #EEEEEE;
	font-weight: bold;
	line-height: 15px;
	text-shadow: 1px 1px #000000;
	text-transform: uppercase;
	overflow: hidden;
}

#container #bottombar .content .bar #calendar_container #calendar .content .days .day h1 {
	position: absolute;
	z-index: 1003;
	margin: 1px;
	padding: 0;
	width: 61px;
	height: 48px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 9px;
	color: #EEEEEE;
	font-weight: bold;
	line-height: 10px;
	text-shadow: 1px 1px #000000;
	text-transform: uppercase;
	overflow: hidden;
}

#fullscreen .calendar .content .days .day h1 a,
#container #bottombar .content .bar #calendar_container #calendar .content .days .day h1 a
{
	color: #EEEEEE;
	text-decoration: none;
}

#fullscreen .calendar .content .days .day h1 a:hover,
#container #bottombar .content .bar #calendar_container #calendar .content .days .day h1 a:hover
{
	text-decoration: underline;
}

#fullscreen .calendar .content .days .day h2,
#container #bottombar .content .bar #calendar_container #calendar .content .days .day h2
{
	position: absolute;
	z-index: 1002;
	margin: 0;
	padding: 0;
}

#fullscreen .calendar .content .days .day h3 {
	position: absolute;
	z-index: 1003;
	margin: 54px 0 0 5px;
	padding: 0;
	width: 29px;
	height: 29px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 15px;
	color: #EEEEEE;
	font-weight: bold;
	line-height: 29px;
	text-shadow: 1px 1px #000000;
	text-transform: uppercase;
	text-align: center;
	overflow: hidden;
}

#container #bottombar .content .bar #calendar_container #calendar .content .days .day h3 {
	position: absolute;
	z-index: 1003;
	margin: 34px 0 0 1px;
	padding: 0;
	width: 15px;
	height: 15px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 9px;
	color: #EEEEEE;
	font-weight: bold;
	line-height: 15px;
	text-shadow: 1px 1px #000000;
	text-transform: uppercase;
	text-align: center;
	overflow: hidden;
}

#fullscreen .calendar .content .days .day h3 img {
	margin-top: 5px;
}

#container #bottombar .content .bar #calendar_container #calendar .content .days .day h3 img {
	margin-top: 2px;
}

#fullscreen .calendar .content .days .day h3.icon {
	background-image: url(../media/layout_images/fullscreencalendar_icon_container.png);
	background-repeat: no-repeat;
}

#container #bottombar .content .bar #calendar_container #calendar .content .days .day h3.icon {
	background-image: url(../media/layout_images/minicalendar_icon_container.png);
	background-repeat: no-repeat;
}

#fullscreen .calendar .content .days .day h4 {
	position: absolute;
	z-index: 1003;
	margin: 54px 0 0 77px;
	padding: 0;
	width: 29px;
	height: 29px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	color: #EEEEEE;
	font-weight: bold;
	line-height: 29px;
	text-shadow: 1px 1px #000000;
	text-transform: uppercase;
	text-align: center;
	overflow: hidden;
}

#container #bottombar .content .bar #calendar_container #calendar .content .days .day h4 {
	position: absolute;
	z-index: 1003;
	margin: 34px 0 0 47px;
	padding: 0;
	width: 15px;
	height: 15px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 9px;
	color: #EEEEEE;
	font-weight: bold;
	line-height: 15px;
	text-shadow: 1px 1px #000000;
	text-transform: uppercase;
	text-align: center;
	overflow: hidden;
}

#fullscreen .calendar .content .days .day h4.icon {
	background-image: url(../media/layout_images/fullscreencalendar_icon_container.png);
	background-repeat: no-repeat;
}

#container #bottombar .content .bar #calendar_container #calendar .content .days .day h4.icon {
	background-image: url(../media/layout_images/minicalendar_icon_container.png);
	background-repeat: no-repeat;
}

#fullscreen .calendar .content .buttons,
#container #bottombar .content .bar #calendar_container #calendar .content .buttons
{
	margin: 0 0 0 3px;
}

#fullscreen .calendar .content .buttons .button,
#container #bottombar .content .bar #calendar_container #calendar .content .buttons .button
{
	margin: 0 3px 3px 0;
	height: 22px;
	float: left;
}

#fullscreen .calendar .content .buttons .button .corner-left,
#container #bottombar .content .bar #calendar_container #calendar .content .buttons .button .corner-left
{
	background-image: url(../media/layout_images/fullscreencalendar_button2_corner-left.png);
	background-repeat: no-repeat;
	width: 6px;
	height: 22px;
	float: left;
}

#fullscreen .calendar .content .buttons .button .icon,
#container #bottombar .content .bar #calendar_container #calendar .content .buttons .button .icon
{
	height: 22px;
	float: left;
}

#fullscreen .calendar .content .buttons .button .icon2,
#container #bottombar .content .bar #calendar_container #calendar .content .buttons .button .icon2
{
	height: 22px;
	float: left;
}

#fullscreen .calendar .content .buttons .button .icon2 img,
#container #bottombar .content .bar #calendar_container #calendar .content .buttons .button .icon2 img
{
	margin-top: 5px;
}

#fullscreen .calendar .content .buttons .button .label,
#container #bottombar .content .bar #calendar_container #calendar .content .buttons .button .label
{
	padding: 0 5px 0 5px;
	background-image: url(../media/layout_images/fullscreencalendar_button_bg.png);
	background-repeat: repeat-x;
	height: 22px;
	float: left;
}

#fullscreen .calendar .content .buttons .button .label2,
#container #bottombar .content .bar #calendar_container #calendar .content .buttons .button .label2
{
	padding: 0 5px 0 2px;
	height: 22px;
	float: left;
}

#fullscreen .calendar .content .buttons .button .label h1,
#fullscreen .calendar .content .buttons .button .label2 h1,
#container #bottombar .content .bar #calendar_container #calendar .content .buttons .button .label h1,
#container #bottombar .content .bar #calendar_container #calendar .content .buttons .button .label2 h1
{
	margin: 0;
	padding: 0;
	height: 22px;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 10px;
	color: #FFFFFF;
	font-weight: bold;
	line-height: 22px;
	text-shadow: 1px 1px #000000;
	text-transform: uppercase;
}

#fullscreen .calendar .content .buttons .button .label h1 a,
#fullscreen .calendar .content .buttons .button .label2 h1 a,
#container #bottombar .content .bar #calendar_container #calendar .content .buttons .button .label h1 a,
#container #bottombar .content .bar #calendar_container #calendar .content .buttons .button .label2 h1 a
{
	color: #FFFFFF;
	text-decoration: none;
}

#fullscreen .calendar .content .buttons .button .label h1 a:hover,
#fullscreen .calendar .content .buttons .button .label2 h1 a:hover,
#container #bottombar .content .bar #calendar_container #calendar .content .buttons .button .label h1 a:hover,
#container #bottombar .content .bar #calendar_container #calendar .content .buttons .button .label2 h1 a:hover
{
	text-decoration: underline;
}

#fullscreen .calendar .content .buttons .button .corner-right,
#container #bottombar .content .bar #calendar_container #calendar .content .buttons .button .corner-right
{
	background-image: url(../media/layout_images/fullscreencalendar_button_corner-right.png);
	background-repeat: no-repeat;
	width: 6px;
	height: 22px;
	float: left;
}

#fullscreen .calendar .content .buttons .button .corner2-right,
#container #bottombar .content .bar #calendar_container #calendar .content .buttons .button .corner2-right
{
	background-image: url(../media/layout_images/fullscreencalendar_button2_corner-right.png);
	background-repeat: no-repeat;
	width: 12px;
	height: 22px;
	float: left;
}

/*************************
** END CALENDAR DIALOGS **
*************************/

/***************** File: guide/style_guide_arte.css ******************/

@charset "utf-8";
/* CSS Document */
body {font-family:Arial, Helvetica, sans-serif; font-size:12px; color:#000000; background:url(../images/body_bkg.jpg) top left repeat; margin:0px; padding:0px;}


/* CROSS BROWSER */
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,textarea,p,blockquote,th,td {margin:0;	padding:0;}
table {border-collapse:collapse; border-spacing:0;}
fieldset,img {border:0;}
address,caption,cite,code,dfn,em,strong,th,var {font-style:normal; font-weight:normal;}
ol,ul {list-style:none;}
caption,th {text-align:left;}
h1,h2,h3,h4,h5,h6 {font-size:100%; font-weight:normal;}
q:before,q:after {content:'';}
abbr,acronym {border:0;}
strong {font-weight:bold;}
a {text-decoration:none; outline:none;}

.testata {width:100%; height:70px; background:#fff;}
.testata .content_testata {width:960px; margin:0 auto;}

.nav_menu {width:100%; background:url(/public/media/guide/nav_menu_bkg.jpg) top left repeat;}
.nav_menu ul {height:49px; width:960px; margin:0 auto;}
.nav_menu ul li {clear:both; font-size:13px;}
.nav_menu ul li a {display:inline-block; float:left; height:15px; padding:4px 0px; width:82px; text-align:center; font-weight:bold; color:#191919; border-left:1px solid #dcdcd4; margin-top:1px;}
.nav_menu ul li a:hover {background:#f5f4f0; color:#c21e2d;}
.nav_menu ul li a.on {background:#f5f4f0; color:#c21e2d;}
.nav_menu ul li a.guide {width:100px;}
.nav_menu ul li a.brd_right {border-right:1px solid #dcdcd4;}

#gda {width:960px; margin:0 auto;}
#gda .left {display:inline; float:left;}
#gda .right {display:inline; float:right;}
#gda .clear {clear:both; width:100%; height:1px; font-size:1px;}

#gda ul.tool_cond {display:inline; float:left;}
#gda ul.tool_cond li {}
#gda ul.tool_cond li a {font-weight:bold; display:block; color:#222222;}
#gda ul.tool_cond li a span {vertical-align:middle; margin-right:5px;}
#gda span.icon_face {display:inline-block; height:21px; width:21px; background:url(/public/media/guide/icon/facebook_icon.jpg) top left no-repeat;}
#gda span.icon_twitter {display:inline-block; height:21px; width:21px; background:url(/public/media/guide/icon/twitter_icon.jpg) top left no-repeat;}
#gda span.icon_mail {display:inline-block; height:21px; width:21px; background:url(/public/media/guide/icon/mail_icon.jpg) top left no-repeat;}
#gda span.icon_pref {display:inline-block; height:21px; width:21px; background:url(/public/media/guide/icon/preferiti_icon.jpg) top left no-repeat;}

#gda a.btn_foto {width:131px; height:47px; display:inline-block; background:url(/public/media/guide/foto_btn_bkg.jpg) top left no-repeat;}
#gda a.btn_foto span {display:inline-block; font-size:21px; font-style:italic; color:#2e2b27; padding-top:9px; padding-left:58px;}

#gda a.btn_indietro {width:131px; height:47px; display:inline-block; background:url(/public/media/guide/indietro_btn_bkg.jpg) top left no-repeat;}
#gda a.btn_indietro span {display:inline-block; font-size:21px; font-style:italic; color:#2e2b27; padding-top:9px; padding-left:35px;}

#gda a.bkg_grad_a {display:inline-block; float:right;  padding:0px 12px; height:21px; font-size:11px; color:#d4d0d0; border:1px solid #cccccc; background:url(/public/media/guide/link_bkg_gradient_gri.jpg) top left repeat-x;}
#gda a.bkg_grad_a span {display:block; margin-top:-2px;}

#gda .list_artist_item {width:206px; background:#f0f0ef; border:1px solid #dfdfd7; font-family:Verdana, Geneva, sans-serif; color:#c21e2d; padding:5px 5px; display:inline; float:left; margin:15px 14px;}
#gda .list_artist_item .img {background:#FFF; width:192px; height:144px; padding:6px; border:1px solid #e2e2db; margin-bottom:4px;}
#gda .list_artist_item .img img {width:192px; height:144px;}
#gda .list_artist_item span {color:#000000;}
#gda .no_mar_left {margin-left:0px;}
#gda .no_mar_right {margin-right:0px;}

/* SCHEDA ARTISTA */
#gda .scheda {width:960px; padding-top:15px; padding-bottom:20px; font-family:Verdana, Geneva, sans-serif;}
#gda .scheda .col_sx {width:600px; display:inline; float:left; font-family:Verdana, Geneva, sans-serif;}
#gda .scheda .col_dx {width:360px; display:inline; float:right; font-family:Verdana, Geneva, sans-serif;}

#gda .scheda .col_sx img.img_top {margin-right:6px; display:inline; float:left;}
#gda .scheda .col_sx ul.tool_cond {width:245px;}
#gda .scheda .col_sx ul.tool_cond li {height:24px; padding-bottom:2px;}
#gda .scheda .col_sx ul.tool_cond li.msg {padding-top:10px; font-size:13px; color:#b71b1b;}
#gda .scheda .col_sx .top {width:100%; font-family:Verdana, Geneva, sans-serif; font-size:15px; color:#c21e2d; font-weight:bold; padding:15px 0px;}
#gda .scheda .col_sx .top span {color:#202020;}
#gda .scheda .col_sx ul.ele-scheda {color:#585857; font-size:14px;}
#gda .scheda .col_sx ul.ele-scheda li {height:25px;}
#gda .scheda .col_sx ul.ele-scheda li a {color:#323131; text-decoration:underline;}
#gda .scheda .col_sx ul.ele-scheda li span {color:#323131;}
#gda .scheda .col_sx ul.ele-scheda li img {vertical-align:middle; margin:0px 4px;}

#gda .scheda .col_sx .txt_scheda {width:98%; line-height:28px; font-size:14px; color:#323131; padding-bottom:10px;}
#gda .scheda .col_sx .txt_scheda .segnalato { padding:20px 0px;}
#gda .scheda .col_sx .txt_scheda .segnalato a {color:#c21e2d; font-weight:bold;}
#gda .scheda .col_sx .txt_scheda .segnalato span {color:#c21e2d; font-weight:bold;}

#gda .scheda .col_sx .txt_scheda ul.list_l {width:579px; padding-bottom:15px;}
#gda .scheda .col_sx .txt_scheda ul.list_l li {width:579px; height:48px; background:url(/public/media/guide/li_bkg_scheda_itinerari.jpg) top left no-repeat; background-color:#f7f7f6; border-bottom:1px solid #CCC; border-top:1px solid #FFF; position:relative;}
#gda .scheda .col_sx .txt_scheda ul.list_l li p {font-size:15px; font-weight:bold; color:#c81928; display:block; position:absolute; top:10px; left:40px;}
#gda .scheda .col_sx .txt_scheda ul.list_l li p span {font-weight:normal; color:#353535;}

#gda .scheda .col_sx .txt_scheda ul.list_l li a {font-size:15px; font-weight:bold; color:#c81928; display:block; position:absolute; top:10px; left:40px;}
#gda .scheda .col_sx .txt_scheda ul.list_l li a span {font-weight:normal; color:#353535;}


#gda .scheda .col_sx .menu_tab {height:24px; width:590px;}
#gda .scheda .col_sx .menu_tab a {color:#000000; font-size:11px; display:inline-block; float:left; border-left:1px solid #e1e1da; border-top:1px solid #e1e1da; height:21px; background:#f0f0ef; padding:0px 7px; padding-top:3px; }
#gda .scheda .col_sx .menu_tab_bkg_bottom {margin-bottom:10px;}
#gda .scheda .col_sx .menu_tab_bkg_bottom a {border-bottom:1px solid #e1e1da;}
#gda .scheda .col_sx .menu_tab a:hover {color:#c21e2d;}
#gda .scheda .col_sx .menu_tab a.on {color:#c21e2d; font-weight:bold;}
#gda .scheda .col_sx .menu_tab a.brd_right {border-right:1px solid #e1e1da;}

#gda .scheda .col_sx .filtri_tab {width:585px; border:1px solid #e1e1da; padding:5px 0px; padding-left:5px;}
#gda .scheda .col_sx .filtri_tab input.bkg_grad_a {display:inline-block; height:21px; padding:0px 2px; background:url(/public/media/guide/link_bkg_gradient_gri.jpg) top left repeat-x; border:1px solid #cccccc; color:#d4d0d0; font-size:11px; width:auto !important; cursor:pointer;}
#gda .scheda .col_sx .content_tab {width:580px; border:1px solid #e1e1da; padding:5px; border-top:0px;}

#gda .scheda ul.itinerari {width:560px; line-height:23px;}
#gda .scheda ul.itinerari li {width:560px; clear:both; margin-bottom:10px; height:146px;}
#gda .scheda ul.itinerari li .img {width:138px; height:138px; padding:4px; border:1px solid #e1e1da; margin-right:6px;}
#gda .scheda ul.itinerari li .txt {width:400px; font-size:14px;}
#gda .scheda ul.itinerari li .txt_tab {width:400px; font-size:14px;}
#gda .scheda ul.itinerari li .txt .title {font-size:15px; font-weight:bold; color:#c21e2d;}
#gda .scheda ul.itinerari li .txt_tab .title {font-size:14px; color:#c21e2d;}
#gda .scheda ul.itinerari li .txt_tab .title span {font-size:14px; color:#888686;}
#gda .scheda ul.itinerari li .txt_tab p a {color:#c11e2d; font-size:10px; font-weight:bold;}
#gda .scheda ul.itinerari li .txt a {font-size:10px; font-weight:bold; color:#565656;}
#gda .scheda ul.itinerari li .txt input {display:inline-block; margin-top:15px;}
#gda .scheda ul.itinerari li .txt span {font-size:11px; color:#101010;}


/* CALENDARIO */
#gda .calendario {width:98%; color:#c21e2d; font-weight:bold; padding-top:10px;}
#gda .calendario .item_el {width:98%; padding-top:5px;}
#gda .calendario .item_el {font-size:14px; font-weight:bold;}
#gda .calendario .item_el .img {display:inline-block; float:left; padding:4px; border:2px solid #e3e3e3; -moz-border-radius:3px; border-radius:3px; margin-right:8px;}
#gda .calendario .item_el .txt {font-size:14px; color:#000000;}
#gda .calendario .item_el .txt p.nome {font-weight:normal; color:#888686; padding-bottom:4px;}
#gda .calendario .item_el .txt p.data {color:#888686;  padding-top:4px;}
#gda .calendario .item_el .txt p.data span {color:#c81928;}

/* MAPPA SCHEDA */
#gda .scheda .col_dx {}
#gda .scheda .col_dx .map_scheda {width:358px; border:1px solid #e1e1da; background:#f0f0ef; padding:10px 0px; margin-bottom:15px;}
#gda .scheda .col_dx .map_scheda .content_map {width:334px; height:442px; border:2px solid #FFF; margin:0 auto;}
#gda .scheda .col_dx .box_lista {width:360px; margin-bottom:15px;}
#gda .scheda .col_dx .box_lista .title {padding:8px; font-size:17px; font-weight:bold; color:#5f5f5f; font-family:Arial, Helvetica, sans-serif; background:#f0f0ef; border:1px solid #e3e3dc; border-bottom:0px; width:150px; position:relative;}
#gda .scheda .col_dx .box_lista ul {width:358px; background:#f0f0ef; border:1px solid #e3e3dc; padding-top:1px; margin-top:-1px;}
#gda .scheda .col_dx .box_lista ul li {width:340px; background:#FFF; padding:8px; margin-left:1px; height:50px;}
#gda .scheda .col_dx .box_lista ul li img.left {margin-right:8px;}
#gda .scheda .col_dx .box_lista ul li p {padding-top:3px; padding-bottom:2px; font-size:15px; color:#c21e2d; font-weight:bold;}
#gda .scheda .col_dx .box_lista ul li span {font-size:14px; color:#585857;}

/* GALLERIA COLONNA SX */
#gda .gallery {font-family:Verdana, Geneva, sans-serif; display:inline; float:left; width:540px;}
#gda .gallery .title {width:98%; font-size:15px; color:#c21e2d; font-weight:bold; padding-bottom:10px;}
#gda .gallery .title span {font-size:14px; color:#202020;}
#gda .gallery .img_select {width:100%;}
#gda .gallery .img_select .content_img {width:500px; display:inline-block; float:left; height:375px; background:#000000; margin-right:10px;}
#gda .gallery .img_select ul.tool_cond {width:22px; display:inline; float:left;}
#gda .gallery .img_select .didascalia {clear:both; width:98%; padding:10px 0px; font-size:14px; color:#000000;}
#gda .gallery .scroll_foto {width:505px; height:50px; position:relative; margin-bottom:15px;}
#gda .gallery .scroll_foto a.prev, #gda .gallery .scroll_foto a.next {display:block; position:absolute; width:17px; height:26px; top:12px;}
#gda .gallery .scroll_foto a.prev {background:url(/public/media/guide/gallery_btn_prev.jpg) top left no-repeat; left:0px;}
#gda .gallery .scroll_foto a.next {background:url(/public/media/guide/gallery_btn_next.jpg) top left no-repeat; right:0px;}
#gda .gallery .scroll_foto a.disabled {display:none;}
#gda .gallery .scroll_foto .mask_foto {width:464px; height:50px; position:relative; overflow:hidden; margin:0 auto;}
#gda .gallery .scroll_foto .mask_foto .content_slide {width:100000em; height:50px; position:relative; top:0px; left:0px;}
#gda .gallery .scroll_foto .mask_foto .content_slide .item_img {width:50px; height:50px; display:inline-block; float:left; margin:0 8px; background:#cccccc;}


/* CARTOLINE */
#gda .cartoline {width:100%; padding-top:15px; display:inline; float:left; font-family:Verdana, Geneva, sans-serif;}
#gda .content_cart {width:415px; font-size:14px; color:#000000; display:inline; float:left; line-height:23px;}
#gda .content_cart .title {font-weight:bold; color:#c21e2d; padding-bottom:8px;}
#gda .content_cart a.bkg_grad_a {margin-top:35px;}
#gda .content_cart .form_cart {width:100%; padding-top:25px;}
#gda .content_cart .form_cart label {display:inline-block; float:left; padding-left:10px; width:74px; font-size:11px; font-weight:bold; color:#000000;}
#gda .content_cart .form_cart input {width:328px; border:1px solid #cccccc; font-size:14px; color:#000000;}
#gda .content_cart .form_cart input.bkg_grad_a {display:inline-block; float:right; height:21px; padding:0px 15px; background:url(/public/media/guide/link_bkg_gradient_gri.jpg) top left repeat-x; border:1px solid #cccccc; color:#d4d0d0; font-size:11px; width:auto !important;}
#gda .content_cart .form_cart .clear {height:10px;}
#gda .cartoline .scroll_foto {margin-top:15px;}

#gda .davedere {width:100%; padding-top:15px; font-family:Verdana, Geneva, sans-serif; padding-bottom:20px;}
#gda .davedere .map_dav {width:769px; height:473px; border:1px solid #dcdcd4; margin-right:5px; display:inline; float:left;}
#gda ul.menu_legenda {width:184px; display:inline; float:left;}
#gda ul.menu_legenda li {height:35px; padding-top:3px; width:184px; background:url(/public/media/guide/bkg_legenda.jpg) top left repeat-x; border:1px solid#ddddd5; margin-bottom:7px; clear:both;}
#gda ul.menu_legenda li.divisore {width:184px; display:inline; float:left; background:url(/public/media/guide/tratt_orizz_bkg.jpg) center left repeat-x; height:2px; border:0px;}
#gda ul.menu_legenda li a {color:#191919; font-size:14px;}
#gda ul.menu_legenda li a span {text-decoration:underline;}
#gda ul.menu_legenda li a img {vertical-align:middle; margin-right:8px; margin-left:8px;}
#gda ul.menu_legenda li input {display:inline; float:right; margin-top:9px; margin-right:5px;}
#gda .form_quart {padding-top:10px; margin-top:10px; width:184px; display:inline; float:left; background:url(/public/media/guide/tratt_orizz_bkg.jpg) top left repeat-x; cursor:pointer;}
#gda .form_quart p {font-size:11px; color:#000000; padding-left:5px; padding-bottom:2px;}
#gda .form_quart select {width:125px; border:1px solid #bebdbd; height:21px; font-size:14px; color:#9d9d9d;}
#gda .form_quart input.bkg_grad_a {display:inline-block; float:right; height:21px; padding:0px 2px; background:url(/public/media/guide/link_bkg_gradient_gri.jpg) top left repeat-x; border:1px solid #cccccc; color:#d4d0d0; font-size:11px; width:auto !important; cursor:pointer;}


/* ENTRYPAGE */
#gda .entrypage {width:100%; padding-top:10px;}
#gda .entrypage ul {width:100%; font-family:Verdana, Geneva, sans-serif;}
#gda .entrypage ul li {width:958px;/* border:1px solid #dcdcd4; height:72px; background:url(/public/media/guide/bkg_line_entrypage.jpg) top left repeat-x; */ position:relative; margin:8px 0px;}

#gda .entrypage ul li .provincia {position:absolute; font-size:24px; font-weight:bold; color:#000000; top:20px; left:20px;}
#gda .entrypage ul li .prov_off {color:#999999}
#gda .entrypage ul li a.web_v {display:block; height:72px; width:73px; position:absolute; top:0px; right:241px; background:url(/public/media/guide/btn_versione_web.jpg) top left no-repeat;}
#gda .entrypage ul li a.app_d {display:block; height:72px; width:241px; position:absolute; top:0px; right:0px; background:url(/public/media/guide/btn_app_iphone.jpg) top left no-repeat;}

#gda .entrypage ul li a.off {background-position:0px -72px;}
#gda .entrypage ul li .data-ril {text-align:right; position:absolute; top:24px; right:320px;}

/* INFO */
#gda .info {width:100%; padding-top:15px;}
#gda .txt_info {font-size:14px; color:#000000; line-height:23px; font-family:Verdana, Geneva, sans-serif;}
#gda .txt_info h3 {color:#c21e2d; font-weight:bold;}
#gda .txt_info .txt_red {color:#c21e2d; font-weight:bold;}
#gda .txt_info ul {}
#gda .txt_info ul li {padding-left:66px; padding-top:10px; padding-bottom:10px; background:url(/public/media/guide/lista-info-credits.jpg) top left no-repeat;}
#gda .txt_info a {text-decoration:underline; color:#000;}
#gda .col_info {width:410px; display:inline; float:left;}
#gda .col_info_sx {padding-right:135px;}

/* TIMELINE */
#gda .timeline {width:960px; position:relative; padding:15px 0px; padding-bottom:0px;}
#gda .timeline a.avanti, #gda .timeline a.indietro {display:block; position:absolute; top:180px;}
#gda .timeline a.indietro {left:20px;}
#gda .timeline a.avanti {right:20px}
#gda .timeline .mask_gal_img_time {width:960px; height:380px; overflow:hidden; margin:0 auto; background:#cccccc; position:relative;}
#gda .timeline .mask_gal_img_time .gal_img_time {width:200000em; position:absolute; height:350px; top:15px; left:0px;}
#gda .timeline .mask_gal_img_time .gal_img_time .item {width:468px; height:350px; display:inline-block; float:left; margin:0 20px; background:#000; position:relative;}
#gda .timeline .mask_gal_img_time .gal_img_time .item img {cursor:pointer;}

#gda .timeline .mask_gal_img_time .gal_img_time .item .txt_hidden {width:438px; position:absolute; left:10px; bottom:10px; background:url(/public/media/guide/bkg_txt_hidden.png) top left repeat; font-size:11px; color:#FFF; padding:5px; padding-bottom:20px; cursor:pointer;}
#gda .timeline .mask_gal_img_time .gal_img_time a.right_btn {display:block; position:absolute; color:#FFF; font-weight:bold; bottom:15px; right:15px;}

#gda .timeline .mask_gal_img_time .gal_img_time .item .op_hidd {opacity:0; filter: alpha(opacity = 0);}
#gda .timeline .mask_gal_img_time .gal_img_time .item a.op_hidd {opacity:0; filter: alpha(opacity = 0);}

#gda .mask_year {width:960px; height:63px; position:relative; margin:0 auto; overflow:hidden;}
#gda .mask_year .slide_year {position:absolute; top:0px; left:0px; height:63px; border-left:1px solid #e1e1da}
#gda .mask_year .slide_year .anno {display:inline-block; height:41px; width:155px; border:1px solid #e1e1da; border-left:0px; float:left; text-align:center; font-size:18px; font-weight:bold; color:#000; padding-top:20px;}
#gda .mask_year .slide_year .anno_on {background:url(/public/media/guide/year_bkg_on.jpg) bottom left repeat-x;}
#gda .mask_year .slide_year .anno_brd_right {border:1px solid #e1e1da}
#gda .mask_year .freccia {display:block; position:absolute; top:0px; left:468px; height:21px; width:24px; background:url(/public/media/guide/freccia_anni_timeline.png) top left no-repeat;}

/**** entry alan ****/

.city_hold { color: #333333;}
.city_hold .iphone { width: 288px; min-height: 481px; background: url(/public/media/guide/iphone.jpg) no-repeat center top; position: relative; float: left; }
.city_hold .iphone a.app_link {width: 232px; height: 81px; position: absolute; top: 272px; left: 29px; }
.city_hold .content { width: 670px; float: left; font-family: "Verdana", Arial, sans-serif; }
.city_hold .content h1  {  margin: 100px 0px 5px; font-weight: bold; font-size: 36px; }
.city_hold .content a.app_link {width: 137px; height: 23px; display: block; float: left; clear: both; margin: 5px 0px; background: url(/public/media/guide/itunes.jpg) no-repeat center top;  }
.city_hold .content .text {float: left; clear: both; font-size: 14px; line-height: 140%; }
.city_hold .content a.download {float: right; clear: both; background: url(/public/media/guide/scarica.jpg) no-repeat center top; width: 113px; height: 40px; margin: 3px 0px;}
.city_hold .content a.webguide {float: right; clear: both; }

.coming_soon { -moz-border-radius: 15px; border-radius: 15px; background: url(/public/media/guide/coming_soon_bg.jpg) repeat-x center bottom; border: 1px solid #ededed; color: #333333; padding: 10px; width: 100%;font-family: "Verdana", Arial, sans-serif; margin-top: 15px; }
.coming_soon h1 {font-weight: bold; font-size: 25px; margin-bottom: 25px; }
.coming_soon ul { display: block; margin: 0px; padding: 0px; list-style: none; }
#gda .entrypage .coming_soon ul li { display: block; float: left; clear: none; width: 70px; height: 70px; padding: 10px; background:white;  -moz-border-radius: 15px; border-radius: 15px; border: 1px solid #f1f1f1; margin: 0px 5px;  }

/***************** File: calendario_guide.css ******************/

/* calendar */
#container #content #main .calendar_guide {
	text-align: left;
}

/* calendar // colum_left */

#container #content #main .calendar_guide .colum_left {
	width: 640px;
	float: left;
}

/* calendar // colum_left // top */

#container #content #main .calendar_guide .colum_left .box .border-top {
	width: 640px;
	height: 40px;
	background-image: url(../media/layout_images/calendario_box-left_top_guide.png);
	background-repeat: no-repeat;
}

/* calendar // colum_left // top // week */

#container #content #main .calendar_guide .colum_left .box .border-top .week {
	margin: 14px 0 0 18px;
	height: 22px;
	float: left;
}

/* calendar // colum_left // top // week // arrow */

#container #content #main .calendar_guide .colum_left .box .border-top .week .arrow {
	height: 22px;
	float: left;
}

#container #content #main .calendar_guide .colum_left .box .border-top .week .arrow .corner-left {
	width: 5px;
	height: 22px;
	background-image: url(../media/layout_images/calendario_button_corner-left.png);
	background-repeat: no-repeat;
	float: left;
}

#container #content #main .calendar_guide .colum_left .box .border-top .week .arrow .icon {
	height: 22px;
	background-image: url(../media/layout_images/calendario_button_bg.png);
	background-repeat: repeat-x;
	float: left;
}

#container #content #main .calendar_guide .colum_left .box .border-top .week .arrow .icon img {
	margin-top: 4px;
}

#container #content #main .calendar_guide .colum_left .box .border-top .week .arrow .corner-right {
	width: 5px;
	height: 22px;
	background-image: url(../media/layout_images/calendario_button_corner-right.png);
	background-repeat: no-repeat;
	float: left;
}

/* calendar // colum_left // top // week // label */

#container #content #main .calendar_guide .colum_left .box .border-top .week .label {
	height: 22px;
	padding: 0 5px 0 5px;
	float: left;
}

#container #content #main .calendar_guide .colum_left .box .border-top .week .label h1 {
	margin: 0;
	padding: 0;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 14px;
	font-weight: normal;
	color: #EEEEEE;
	text-decoration: none;
	line-height: 22px;
	text-shadow: 1px 1px #000000;
}

#container #content #main .calendar_guide .colum_left .box .border-top .week .label h1 strong {
	color: #FFFFFF;
}

/* calendar // colum_left // top // buttons */

#container #content #main .calendar_guide .colum_left .box .border-top .buttons {
	height: 22px;
	margin: 12px 0 0 8px;
	float: left;
}

#container #content #main .calendar_guide .colum_left .box .border-top .buttons .button {
	margin: 2px 2px 0 0;
	height: 22px;
	float: left;
}

#container #content #main .calendar_guide .colum_left .box .border-top .buttons .button img {
	margin-top: 2px;
}

#container #content #main .calendar_guide .colum_left .box .border-top .buttons .button .corner-left {
	background-image: url(../media/layout_images/calendario_button_corner-left.png);
	background-repeat: no-repeat;
	width: 5px;
	height: 22px;
	float: left;
}

#container #content #main .calendar_guide .colum_left .box .border-top .buttons .button.selected .corner-left {
	background-image: url(../media/layout_images/calendario_button_enabled_corner-left.png);
}

#container #content #main .calendar_guide .colum_left .box .border-top .buttons .button .corner-right {
	background-image: url(../media/layout_images/calendario_button_corner-right.png);
	background-repeat: no-repeat;
	width: 5px;
	height: 22px;
	float: left;
}

#container #content #main .calendar_guide .colum_left .box .border-top .buttons .button.selected .corner-right {
	background-image: url(../media/layout_images/calendario_button_enabled_corner-right.png);
}

#container #content #main .calendar_guide .colum_left .box .border-top .buttons .button .label {
	background-image: url(../media/layout_images/calendario_button_bg.png);
	background-repeat: repeat-x;
	height: 22px;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 10px;
	color: #FFFFFF;
	font-weight: bold;
	line-height: 22px;
	text-transform: uppercase;
	text-shadow: 1px 1px #000000;
	float: left;
}

#container #content #main .calendar_guide .colum_left .box .border-top .buttons .button.selected .label {
	background-image: url(../media/layout_images/calendario_button_enabled_bg.png);
}

#container #content #main .calendar_guide .colum_left .box .border-top .buttons .button .label a {
	color: #FFFFFF;
	text-decoration: none;
}

#container #content #main .calendar_guide .colum_left .box .border-top .buttons .button .label a:hover {
	text-decoration: underline;
}

#container #content #main .calendar_guide .colum_left .box .border-top .buttons .button .icon {
	background-image: url(../media/layout_images/calendario_button_bg.png);
	background-repeat: repeat-x;
	height: 22px;
	float: left;
}

#container #content #main .calendar_guide .colum_left .box .border-top .buttons .button .icon img {
	margin-top: 3px;
}

/* calendar // colum_left // top // select */

#container #content #main .calendar_guide .colum_left .box .border-top .select {
	height: 22px;
	margin: 16px 0 0 6px;
	float: left;
}

#container #content #main .calendar_guide .colum_left .box .border-top .select .corner-left {
	background-image: url(../media/layout_images/calendario_select_corner-left.png);
	background-repeat: no-repeat;
	width: 5px;
	height: 17px;
	float: left;
}

#container #content #main .calendar_guide .colum_left .box .border-top .select .label {
	background-image: url(../media/layout_images/calendario_select_bg.png);
	background-repeat: repeat-x;
	height: 17px;
	float: left;
}

#container #content #main .calendar_guide .colum_left .box .border-top .select .label h2 {
	margin: 0;
	padding: 0 8px 0 5px;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 10px;
	color: #999999;
	line-height: 17px;
	text-transform: uppercase;
}

#container #content #main .calendar_guide .colum_left .box .border-top .select .button {
	background-image: url(../media/layout_images/calendario_select_corner-right.png);
	background-repeat: repeat-x;
	width: 17px;
	height: 17px;
	float: left;
}

/* calendar // colum_left // top // radio */

#container #content #main .calendar_guide .colum_left .box .border-top .radio {
	margin: 12px 0 0 10px;
	float: left;
}

#container #content #main .calendar_guide .colum_left .box .border-top .radio .item {
	height: 12px;
	margin-bottom: 2px;
	clear: both;
}

#container #content #main .calendar_guide .colum_left .box .border-top .radio .item img {
	float: left;
}

#container #content #main .calendar_guide .colum_left .box .border-top .radio .item h2 {
	margin: 0 0 0 2px;
	padding: 0;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 10px;
	color: #FFFFFF;
	font-weight: bold;
	line-height: 12px;
	text-transform: uppercase;
	text-shadow: 1px 1px #000000;
	float: left;
}

/* calendar // colum_left // bottom */

#container #content #main .calendar_guide .colum_left .box .border-bottom {
	width: 640px;
	height: 30px;
	background-image: url(../media/layout_images/calendario_box-left_bottom_guide.png);
	background-repeat: no-repeat;
}

/* calendar // colum_left // content */

#container #content #main .calendar_guide .colum_left .box .content {
	width: 640px;
	background-image: url(../media/layout_images/calendario_box-left_bg_guide.png);
	background-repeat: repeat-y;
}

/* calendar // colum_left // content // divide */

#container #content #main .calendar_guide .colum_left .box .content .divide {
	border-top: 1px solid #333333;
	border-bottom: 1px solid #000000;
	margin: 0 10px 0 10px;
}

/* calendar // colum_left // content // days */

#container #content #main .calendar_guide .colum_left .box .content .days {
	margin: 5px 0 0 14px;
}

/* calendar // colum_left // content // days // header */

#container #content #main .calendar_guide .colum_left .box .content .days .header {
	margin: 0 0 0 3px;
}

#container #content #main .calendar_guide .colum_left .box .content .days .header .label {
	margin: 0 3px 0 0;
	width: 84px;
	height: 21px;
	background-image: url(../media/layout_images/calendario_header_giallo_bg.png);
	background-repeat: repeat-x;
	text-align: center;
	float: left;
}

#container #content #main .calendar_guide .colum_left .box .content .days .header .label.selected {
	background-image: url(../media/layout_images/calendario_header_rosso_bg.png);
}

#container #content #main .calendar_guide .colum_left .box .content .days .header .label h2 {
	margin: 0;
	padding: 0;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 13px;
	color: #000000;
	line-height: 21px;
	font-weight: normal;
}

#container #content #main .calendar_guide .colum_left .box .content .days .header .label.selected h2 {
	color: #FFFFFF;
}

/* calendar // colum_left // content // days // day */

#container #content #main .calendar_guide .colum_left .box .content .days .day {
	margin: 0 0 0 3px;
	width: 84px;
	float: left;
}

/* calendar // colum_left // content // days // day // tasks */

#container #content #main .calendar_guide .colum_left .box .content .days .day .tasks {
	width: 84px;
	background-image: url(../media/layout_images/calendario_bianco_bg.png);
	border-top: 3px solid #000000;
}

#container #content #main .calendar_guide .colum_left .box .content .days .day .tasks .task {
	border-bottom: 3px solid #000000;
	padding: 2px;
	cursor: pointer;
}

#container #content #main .calendar_guide .colum_left .box .content .days .day .tasks .task.lightblue {
	background-image: url(../media/layout_images/calendario_azzurro_bg.png);
}

#container #content #main .calendar_guide .colum_left .box .content .days .day .tasks .task.yellow {
	background-image: url(../media/layout_images/calendario_giallo_bg.png);
}

#container #content #main .calendar_guide .colum_left .box .content .days .day .tasks .task:hover {
	background-image: url(../media/layout_images/calendario_rosso_bg.png);
}

#container #content #main .calendar_guide .colum_left .box .content .days .day .tasks .task h1 {
	margin: 0;
	padding: 0;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 11px;
	color: #000000;
	font-weight: bold;
	line-height: 13px;
}

#container #content #main .calendar_guide .colum_left .box .content .days .day .tasks .task h2 {
	margin: 0;
	padding: 0;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 11px;
	color: #000000;
	font-weight: normal;
	font-style: italic;
	line-height: 13px;
}

#container #content #main .calendar_guide .colum_left .box .content .days .day .tasks .task h3 {
	margin: 0;
	padding: 0;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 11px;
	color: #000000;
	font-weight: normal;
	line-height: 13px;
}

/* calendar // colum_left // content // month */

#container #content #main .calendar_guide .colum_left .box .content .month .header {
	margin: 3px 0 0 17px;
}

#container #content #main .calendar_guide .colum_left .box .content .month .header .label {
	margin: 0 3px 0 0;
	width: 84px;
	height: 21px;
	background-image: url(../media/layout_images/calendario_header_giallo_bg.png);
	background-repeat: repeat-x;
	text-align: center;
	float: left;
}

#container #content #main .calendar_guide .colum_left .box .content .month .header .label.selected {
	background-image: url(../media/layout_images/calendario_header_rosso_bg.png);
}

#container #content #main .calendar_guide .colum_left .box .content .month .header .label h2 {
	margin: 0;
	padding: 0;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 14px;
	color: #000000;
	line-height: 21px;
}

#container #content #main .calendar_guide .colum_left .box .content .month .header .label.selected h2 {
	color: #FFFFFF;
}

#container #content #main .calendar_guide .colum_left .box .content .month .elements {
	margin: 0 0 5px 17px;
}

#container #content #main .calendar_guide .colum_left .box .content .month .elements .element {
	margin: 3px 3px 0 0;
	width: 84px;
	height: 65px;
	background-image: url(../media/layout_images/bg_calendar_td.png);
	float: left;
	overflow: hidden;
}

#container #content #main .calendar_guide .colum_left .box .content .month .elements .element:hover {
	background-image: url(../media/layout_images/calendario_rosso_bg.png);
}

#container #content #main .calendar_guide .colum_left .box .content .month .elements .element>* {
	position: absolute;
	z-index: 2;
}

#container #content #main .calendar_guide .colum_left .box .content .month .elements .element h1 {
	margin: 0;
	padding: 0;
	width: 84px;
	height: 65px;
}

#container #content #main .calendar_guide .colum_left .box .content .month .elements .element h2 {
	margin: 0;
	padding: 3px;
	width: 75px;
	overflow: hidden;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 12px;
	color: #666666;
	font-weight: bold;
	line-height: 12px;
	text-transform: uppercase;
	text-shadow: 1px 1px #000000;
	letter-spacing: -1px;
}

#container #content #main .calendar_guide .colum_left .box .content .month .elements .element h2 a {
	text-decoration: none;
	color: #FFFFFF;
}

#container #content #main .calendar_guide .colum_left .box .content .month .elements .element h3 {
	width: 22px;
	height: 22px;
	margin: 41px 0 0 2px;
	padding: 0;
	text-align: center;
}

#container #content #main .calendar_guide .colum_left .box .content .month .elements .element h3 img {
	margin-top: 5px;
}

#container #content #main .calendar_guide .colum_left .box .content .month .elements .element h4 {
	width: 22px;
	height: 22px;
	margin: 41px 0 0 60px;
	padding: 0;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 12px;
	color: #FFFFFF;
	font-weight: bold;
	line-height: 22px;
	text-transform: uppercase;
	text-shadow: 1px 1px #000000;
	letter-spacing: -1px;
	text-align: center;
}

#container #content #main .calendar_guide .colum_left .box .content .month .elements .element h4 a {
	text-decoration: none;
	color: #FFFFFF;
}

#container #content #main .calendar_guide .colum_left .box .content .month .elements .element h3.enabled,
#container #content #main .calendar_guide .colum_left .box .content .month .elements .element h4.enabled
{
	background-image: url(../media/layout_images/calendar_month_gray_button.png);
	background-repeat: no-repeat;
}

#container #content #main .calendar_guide .colum_left .box .content .month .elements .element h3.enabled.selected,
#container #content #main .calendar_guide .colum_left .box .content .month .elements .element h4.enabled.selected
{
	background-image: url(../media/layout_images/calendar_month_red_button.png);
}

/* calendar // colum_left // content // month // buttons */

#container #content #main .calendar_guide .colum_left .box .content .month .buttons {
	margin: 2px 0 0 12px;
}

/* calendar // colum_left // content // month // monitor */

#container #content #main .calendar_guide .colum_left .box .content .month .monitor {
	width: 620px;
	margin: 2px 10px 0 10px;
	border-top: 1px solid #333333;
	border-bottom: 1px solid #000000;
}

#container #content #main .calendar_guide .colum_left .box .content .month .monitor .row {
	border-bottom: 1px solid #333333;
	border-top: 1px solid #000000;
}

#container #content #main .calendar_guide .colum_left .box .content .month .monitor .row .scroll {
	width: 140px;
	height: 20px;
	background-image: url(../media/layout_images/calendario_header_rosso_bg.png);
	background-repeat: repeat-x;
	border-left: 1px solid #000000;
	border-right: 1px solid #000000;
}

#container #content #main .calendar_guide .colum_left .box .content .month .monitor .row .scroll img {
	padding: 4px 63px 4px 64px;
}

#container #content #main .calendar_guide .colum_left .box .content .month .monitor .items .item {
	width: 620px;
	height: 30px;
	border-bottom: 1px solid #333333;
	border-top: 1px solid #000000;
	overflow: hidden;
}

#container #content #main .calendar_guide .colum_left .box .content .month .monitor .items .item h3 {
	margin: 0;
	padding: 0;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 26px;
	color: #EEEEEE;
	font-weight: bold;
	line-height: 28px;
	text-transform: uppercase;
	text-shadow: 1px 1px #000000;
	letter-spacing: -1px;
	width: 140px;
	height: 30px;
	float: left;
	border-left: 1px solid #000000;
	border-right: 1px solid #000000;
	text-align: center;
}

#container #content #main .calendar_guide .colum_left .box .content .month .monitor .items .label {
	width: 473px;
	height: 26px;
	padding: 2px;
	overflow: hidden;
	border-left: 1px solid #333333;
}

#container #content #main .calendar_guide .colum_left .box .content .month .monitor .items .label:hover {
	background: #7C202C url(../media/layout_images/bg_dropdown.gif) repeat-x;
}

#container #content #main .calendar_guide .colum_left .box .content .month .monitor .items .item h1 {
	margin: 0;
	padding: 0;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 14px;
	color: #EEEEEE;
	font-weight: bold;
	line-height: 14px;
	text-shadow: 1px 1px #000000;
}

#container #content #main .calendar_guide .colum_left .box .content .month .monitor .items .item h1 a {
	color: #EEEEEE;
	text-decoration: none;
}

#container #content #main .calendar_guide .colum_left .box .content .month .monitor .items .item h1 a:hover {
	text-decoration: underline;
}

#container #content #main .calendar_guide .colum_left .box .content .month .monitor .items .item h2 {
	margin: 0;
	padding: 0;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 10px;
	color: #AAAAAA;
	font-weight: normal;
	line-height: 13px;
	text-shadow: 1px 1px #000000;
}

#container #content #main .calendar_guide .colum_left .box .content .month .monitor .items .item h2 a {
	color: #EEEEEE;
	font-style: italic;
	font-weight: bold;
	text-decoration: none;
}

#container #content #main .calendar_guide .colum_left .box .content .month .monitor .items .item h2 a:hover {
	text-decoration: underline;
}

/* calendar // colum_left // content // map */

#container #content #main .calendar_guide .colum_left .box .content .map #custom_map {
	width: 603px;
	height: 600px;
	margin: 4px 0 0 18px;
}

#container #content #main .calendar_guide .colum_left .box .content .map #custom_map #map_tooltip {
	display: none;
	position: absolute;
	width: 329px;
}

#container #content #main .calendar_guide .colum_left .box .content .map #custom_map #map_tooltip .top {
	width: 329px;
	height: 25px;
	background-image: url(../media/layout_images/calendario_map_tooltip_top.png);
	background-repeat: no-repeat;
}

#container #content #main .calendar_guide .colum_left .box .content .map #custom_map #map_tooltip .top .close {
	margin: 0 15px 0 15px;
	text-align: right;
	cursor: pointer;
}

#container #content #main .calendar_guide .colum_left .box .content .map #custom_map #map_tooltip .top .close h4 {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 11px;
	color: #336699;
	font-weight: normal;
	line-height: 30px;
	text-decoration: none;
}

#container #content #main .calendar_guide .colum_left .box .content .map #custom_map #map_tooltip .top .close h4:hover {
	text-decoration: underline;
}

#container #content #main .calendar_guide .colum_left .box .content .map #custom_map #map_tooltip .content {
	width: 329px;
	height: 150px;
	background-image: url(../media/layout_images/calendario_map_tooltip_bg.png);
	background-repeat: repeat-y;
	overflow: hidden;
}

#container #content #main .calendar_guide .colum_left .box .content .map #custom_map #map_tooltip .content p {
	margin: 0;
	padding: 0;
	text-align: center;
}

#container #content #main .calendar_guide .colum_left .box .content .map #custom_map #map_tooltip .bottom {
	width: 329px;
	height: 90px;
	background-image: url(../media/layout_images/calendario_map_tooltip_bottom.png);
	background-repeat: no-repeat;
}

#container #content #main .calendar_guide .colum_left .box .content .map #custom_map #map_tooltip h1 {
	margin: 0 15px 0 15px;
	padding: 0;
	height: 20px;
	background-color: #222222;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 12px;
	color: #B3111F;
	font-weight: bold;
	line-height: 20px;
	text-transform: uppercase;
	text-align: center;
}

#container #content #main .calendar_guide .colum_left .box .content .map #custom_map #map_tooltip h2 {
	margin: 0 15px 0 15px;
	padding: 0;
	height: 20px;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 11px;
	color: #000000;
	font-weight: normal;
	line-height: 20px;
}

#container #content #main .calendar_guide .colum_left .box .content .map #custom_map #map_tooltip .items {
	margin: 0 0 0 15px;
	padding: 0;
	height: 105px;
	overflow: hidden;
}

#container #content #main .calendar_guide .colum_left .box .content .map #custom_map #map_tooltip .items .item {
	width: 280px;
	padding: 5px 0 5px 0;
	border-bottom: 1px dashed #CCCCCC;
}

#container #content #main .calendar_guide .colum_left .box .content .map #custom_map #map_tooltip .items .item img {
	float: left;
	margin: 0 5px 0 0;
}

#container #content #main .calendar_guide .colum_left .box .content .map #custom_map #map_tooltip .items .item h3 {
	margin: 0 0 5px 0;
	padding: 0;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 12px;
	color: #000000;
	font-weight: bold;
	line-height: 12px;
}

#container #content #main .calendar_guide .colum_left .box .content .map #custom_map #map_tooltip .items .item a {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 11px;
	color: #336699;
	font-weight: normal;
	line-height: 15px;
	text-decoration: none;
}

#container #content #main .calendar_guide .colum_left .box .content .map #custom_map #map_tooltip .items .item a:hover {
	text-decoration: underline;
}

#container #content #main .calendar_guide .colum_left .box .content .map #custom_events {
	display: none;
}

/* calendar // colum_left // content // day */

#container #content #main .calendar_guide .colum_left .box .content .day {
	margin: 3px 10px 3px 10px;
}

#container #content #main .calendar_guide .colum_left .box .content .day .scroll {
	width: 620px;
	height: 20px;
	background-image: url(../media/layout_images/calendario_header_rosso_bg.png);
	background-repeat: repeat-x;
}

#container #content #main .calendar_guide .colum_left .box .content .day .scroll img {
	padding: 4px 303px 4px 304px;
}

#container #content #main .calendar_guide .colum_left .box .content .day .items {
	border-top: 1px solid #333333;
	border-bottom: 1px solid #000000;
	margin: 4px 0 3px 0;
}

#container #content #main .calendar_guide .colum_left .box .content .day .items .item {
	border-top: 1px solid #000000;
	border-bottom: 1px solid #333333;
	padding: 2px;
}

#container #content #main .calendar_guide .colum_left .box .content .day .items .divide {
	margin: 0;
	padding: 0;
}

#container #content #main .calendar_guide .colum_left .box .content .day .items .item .image {
	width: 120px;
	height: 98px;
	float: left;
}

#container #content #main .calendar_guide .colum_left .box .content .day .items .item .image img,
#container #content #main .calendar_guide .colum_left .box .content .day .items .item .image .image_placeholder
{
	width: 117px;
	height: 98px;
}

#container #content #main .calendar_guide .colum_left .box .content .day .items .item .text {
	width: 495px;
	border-left: 1px solid #333333;
	float: left;
}

#container #content #main .calendar_guide .colum_left .box .content .day .items .item .text h1 {
	margin: 0 5px 0 5px;
	padding: 0;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 14px;
	color: #9E0918;
	font-weight: bold;
	line-height: 20px;
	text-shadow: 1px 1px #000000;
}

#container #content #main .calendar_guide .colum_left .box .content .day .items .item .text h1 a {
	color: #9E0918;
	text-decoration: none;
}

#container #content #main .calendar_guide .colum_left .box .content .day .items .item .text h1 a:hover {
	text-decoration: none;
}

#container #content #main .calendar_guide .colum_left .box .content .day .items .item .text h2 {
	margin: 0 5px 0 5px;
	padding: 0;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 14px;
	color: #EEEEEE;
	font-weight: normal;
	line-height: 15px;
	font-style: italic;
	text-shadow: 1px 1px #000000;
}

#container #content #main .calendar_guide .colum_left .box .content .day .items .item .text h3 {
	margin: 0 5px 0 5px;
	padding: 0;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 12px;
	color: #EEEEEE;
	font-weight: bold;
	line-height: 30px;
	text-align: center;
	text-transform: uppercase;
	text-shadow: 1px 1px #000000;
}

#container #content #main .calendar_guide .colum_left .box .content .day .items .item .text ul {
	margin: 0 5px 0 5px;
	padding: 0;
	list-style: none;
}

#container #content #main .calendar_guide .colum_left .box .content .day .items .item .text ul li {
	margin: 0;
	padding: 0;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 11px;
	color: #EEEEEE;
	line-height: 15px;
	font-style: italic;
	text-shadow: 1px 1px #000000;
}

#container #content #main .calendar_guide .colum_left .box .content .day .items .item .text ul li strong {
	color: #9E0918;
	font-style: normal;
}

#container #content #main .calendar_guide .colum_left .box .content .day .items .item .text .buttons {
	margin: -20px 0 1px 0;
	padding: 0;
	float: right;
}

/* calendar // colum_right */

#container #content #main .calendar_guide .colum_right {
	margin-left: 10px;
	width: 310px;
	float: left;
}

/* calendar // colum_right // top */

#container #content #main .calendar_guide .colum_right .box .border-top {
	width: 310px;
	height: 40px;
	background-image: url(../media/layout_images/calendario_box-right_top_guide.png);
	background-repeat: no-repeat;
}

/* calendar // colum_right // top // buttons */

#container #content #main .calendar_guide .colum_right .box .border-top .buttons,
#container #content #main .calendar_guide .colum_right .box .border-bottom .buttons
{
	height: 22px;
	margin: 12px 0 0 18px;
	float: left;
}

#container #content #main .calendar_guide .colum_right .box .border-top .buttons .button,
#container #content #main .calendar_guide .colum_right .box .border-bottom .buttons .button
{
	margin: 2px 2px 0 0;
	height: 22px;
	float: left;
}

#container #content #main .calendar_guide .colum_right .box .border-top .buttons .button img,
#container #content #main .calendar_guide .colum_right .box .border-bottom .buttons .button img
{
	margin-top: 2px;
}

#container #content #main .calendar_guide .colum_right .box .border-top .buttons .button .corner-left,
#container #content #main .calendar_guide .colum_right .box .border-bottom .buttons .button .corner-left
{
	background-image: url(../media/layout_images/calendario_button_corner-left.png);
	background-repeat: no-repeat;
	width: 5px;
	height: 22px;
	float: left;
}

#container #content #main .calendar_guide .colum_right .box .border-top .buttons .button.selected .corner-left,
#container #content #main .calendar_guide .colum_right .box .border-bottom .buttons .button.selected .corner-left
{
	background-image: url(../media/layout_images/calendario_button_enabled_corner-left.png);
}

#container #content #main .calendar_guide .colum_right .box .border-top .buttons .button .corner-right,
#container #content #main .calendar_guide .colum_right .box .border-bottom .buttons .button .corner-right
{
	background-image: url(../media/layout_images/calendario_button_corner-right.png);
	background-repeat: no-repeat;
	width: 5px;
	height: 22px;
	float: left;
}

#container #content #main .calendar_guide .colum_right .box .border-top .buttons .button.selected .corner-right,
#container #content #main .calendar_guide .colum_right .box .border-bottom .buttons .button.selected .corner-right
{
	background-image: url(../media/layout_images/calendario_button_enabled_corner-right.png);
}

#container #content #main .calendar_guide .colum_right .box .border-top .buttons .button .label,
#container #content #main .calendar_guide .colum_right .box .border-bottom .buttons .button .label
{
	background-image: url(../media/layout_images/calendario_button_bg.png);
	background-repeat: repeat-x;
	height: 22px;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 10px;
	color: #FFFFFF;
	font-weight: bold;
	line-height: 22px;
	text-transform: uppercase;
	text-shadow: 1px 1px #000000;
	float: left;
}

#container #content #main .calendar_guide .colum_right .box .border-top .buttons .button.selected .label,
#container #content #main .calendar_guide .colum_right .box .border-bottom .buttons .button.selected .label
{
	background-image: url(../media/layout_images/calendario_button_enabled_bg.png);
}

#container #content #main .calendar_guide .colum_right .box .border-top .buttons .button .label a,
#container #content #main .calendar_guide .colum_right .box .border-bottom .buttons .button .label a
{
	color: #FFFFFF;
	text-decoration: none;
}

#container #content #main .calendar_guide .colum_right .box .border-top .buttons .button .label a:hover,
#container #content #main .calendar_guide .colum_right .box .border-bottom .buttons .button .label a:hover
{
	text-decoration: underline;
}

#container #content #main .calendar_guide .colum_right .box .border-top .buttons .button .icon,
#container #content #main .calendar_guide .colum_right .box .border-bottom .buttons .button .icon
{
	background-image: url(../media/layout_images/calendario_button_bg.png);
	background-repeat: repeat-x;
	height: 22px;
	float: left;
}

#container #content #main .calendar_guide .colum_right .box .border-top .buttons .button .icon img,
#container #content #main .calendar_guide .colum_right .box .border-bottom .buttons .button .icon img
{
	margin-top: 3px;
}

/* calendar // colum_right // top // pagination */

#container #content #main .calendar_guide .colum_right .box .border-top .pagination {
	margin: 14px 18px 0 0;
	height: 22px;
	float: right;
}

/* calendar // colum_right // top // pagination // arrow */

#container #content #main .calendar_guide .colum_right .box .border-top .pagination .arrow {
	height: 22px;
	float: left;
}

#container #content #main .calendar_guide .colum_right .box .border-top .pagination .arrow .corner-left {
	width: 5px;
	height: 22px;
	background-image: url(../media/layout_images/calendario_button_corner-left.png);
	background-repeat: no-repeat;
	float: left;
}

#container #content #main .calendar_guide .colum_right .box .border-top .pagination .arrow .icon {
	height: 22px;
	background-image: url(../media/layout_images/calendario_button_bg.png);
	background-repeat: repeat-x;
	float: left;
}

#container #content #main .calendar_guide .colum_right .box .border-top .pagination .arrow .icon img {
	margin-top: 4px;
}

#container #content #main .calendar_guide .colum_right .box .border-top .pagination .arrow .corner-right {
	width: 5px;
	height: 22px;
	background-image: url(../media/layout_images/calendario_button_corner-right.png);
	background-repeat: no-repeat;
	float: left;
}

/* calendar // colum_right // top // pagination // label */

#container #content #main .calendar_guide .colum_right .box .border-top .pagination .label {
	height: 22px;
	padding: 0 5px 0 5px;
	float: left;
}

#container #content #main .calendar_guide .colum_right .box .border-top .pagination .label h1 {
	margin: 0;
	padding: 0;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 11px;
	font-weight: normal;
	color: #EEEEEE;
	text-decoration: none;
	line-height: 22px;
	text-shadow: 1px 1px #000000;
}

#container #content #main .calendar_guide .colum_right .box .border-top .pagination .label h1 strong {
	color: #FFFFFF;
}

/* calendar // colum_right // bottom */

#container #content #main .calendar_guide .colum_right .box .border-bottom {
	width: 310px;
	height: 40px;
	background-image: url(../media/layout_images/calendario_box-right_bottom2_guide.png);
	background-repeat: no-repeat;
}

/* calendar // colum_right // content */

#container #content #main .calendar_guide .colum_right .box .content {
	width: 290px;
	padding: 0 10px 0 10px;
	background-image: url(../media/layout_images/calendario_box-right_bg_guide.png);
	background-repeat: repeat-y;
}

/* calendar // colum_right // content // divide */

#container #content #main .calendar_guide .colum_right .box .content .divide {
	border-top: 1px solid #333333;
	border-bottom: 1px solid #000000;
}

/* calendar // colum_right // content // image */

#container #content #main .calendar_guide .colum_right .box .content .image {
	margin: 5px 0 5px 0;
}

#container #content #main .calendar_guide .colum_right .box .content .image .image_placeholder,
#container #content #main .calendar_guide .colum_right .box .content .image img
{
	width: 290px;
	height: 250px;
}

/* calendar // colum_right // content // caption */

#container #content #main .calendar_guide .colum_right .box .content .caption {
	margin: 4px 10px 5px 10px;
}

#container #content #main .calendar_guide .colum_right .box .content .caption h1 {
	margin: 0;
	padding: 0;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 12px;
	color: #A8202B;
	font-weight: bold;
	text-transform: uppercase;
	line-height: 15px;
	text-decoration: none;
	text-shadow: 1px 1px #000000;
}

#container #content #main .calendar_guide .colum_right .box .content .caption h2 {
	margin: 0;
	padding: 0;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 12px;
	color: #FFFFFF;
	font-weight: normal;
	line-height: 15px;
	text-decoration: none;
	text-shadow: 1px 1px #000000;
}

/* calendar // colum_right // content // title */

#container #content #main .calendar_guide .colum_right .box .content .title {
	border: none;
	text-align: center;
}

#container #content #main .calendar_guide .colum_right .box .content .title h3 {
	margin: 0;
	padding: 0 0 2px 0;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 12px;
	color: #FFFFFF;
	font-weight: bold;
	text-transform: uppercase;
	line-height: 18px;
	text-decoration: none;
	text-shadow: 1px 1px #000000;
}

/* calendar // colum_right // content // ul */

#container #content #main .calendar_guide .colum_right .box .content ul {
	list-style: none;
	margin: 3px 0 5px 0;
}

#container #content #main .calendar_guide .colum_right .box .content ul li {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 10px;
	color: #EEEEEE;
	text-decoration: none;
	line-height: 15px;
	text-shadow: 1px 1px #000000;
	font-style: italic;
	padding: 0 10px 0 10px;
}

#container #content #main .calendar_guide .colum_right .box .content ul li span {
	font-weight: bold;
	font-style: normal;
}

#container #content #main .calendar_guide .colum_right .box .content ul li strong {
	color: #A8202B;
	font-style: normal;
	text-transform: uppercase;
}

#container #content #main .calendar_guide .colum_right .box .content ul li a {
	font-size: 11px;
	color: #EEEEEE;
	text-decoration: underline;
	font-weight: bold;
}

#container #content #main .calendar_guide .colum_right .box .content ul li a:hover {
	color: #A8202B;
}

#container #content #main .calendar_guide .colum_right .box .content .buttons {
	margin: 0 0 0 5px;
}

#container #content #main .calendar_guide .colum_right .box .content .buttons .text {
	margin: 4px 0 0 0;
	line-height: 9px;
	color: #EEEEEE;
}

#container #content #main .calendar_guide .colum_right .box .content h4 {
	margin: 0 5px 0 10px;
	padding: 0;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 10px;
	color: #FFFFFF;
	font-weight: bold;
	line-height: 28px;
	text-decoration: none;
	text-shadow: 1px 1px #000000;
	float: left;
}


/************************************ MODIFICHE ********************************/

#container #content #main .calendar_guide .colum_right .box .content .image img {height: auto; }

/* pagina calendario: il div con la data deve avere larghezza fissa e anche il div col select */
#container #content #main .calendar_guide .colum_left .box .border-top .week .label h1 {width: 105px; overflow: hidden; text-align: center; font-size: 13px; }
#container #content #main .calendar_guide .colum_left .box .border-top .select .label h2 {width: 70px; overflow: hidden; }
/* calendario: le immagini sono leggermente più grandi, overflow hidden sulle celle */
#container #content #main .calendar_guide .colum_left .box .content .month .elements .element h1 { overflow:hidden; }
#container #content #main .calendar_guide .colum_left .box .content .month .monitor .items .item {height: 45px; }
#container #content #main .calendar_guide .colum_left .box .content .month .monitor .items .item h3 {height: 45px; line-height: 43px; }
#container #content #main .calendar_guide .colum_left .box .content .month .monitor .items .label {height: 41px; }

#container #content #main .calendar_guide .colum_left .box .content .day .items .item .image img { height: auto; }

#container #content #main .calendar_guide .colum_left .box .content .day .items .item .image {overflow: hidden; }

/* div per selezionare la provincia sul calendario */
#container #content #main .calendar_guide .colum_left .box .border-top {position:relative; }


/***************** File: artev2.css ******************/

/* LAYOUT */
body { font: 10px Arial, Sans-serif; color: #000; margin:0; border: 0; padding: 0; text-align: center; }

@font-face {
	font-family: Futura;
	src: url(/public/media/layout_images/Futura.ttf);
}

#container #topbar .bar .left #menu {width: 830px; }

#container #content #main .content .news img {width: auto; height: auto; margin: 0; }
#container #content #main .content .news .image_placeholder {height: 170px; background:transparent;}
#container #content #main .content .news h3 a { font-size: 12px; }
#container #content #main .content .news p { line-height: 1.8em; margin-bottom: 40px; }
#container #content #main .content .detail .image img { height: auto; }
#container #content #main .content .detail .image  { background: none; }
#container #content #main .content .correlated .row .item .image_placeholder { overflow: hidden; height: 70px; width: 90px; }
#container #content #main .content .correlated .row .item img { height: auto; width: auto; }
#container #content #main .content .title .bar_white {background: none; }
#container #content #main .content .title .bar_white h1 { padding: 0; }
#container #content #main .content .title .bar_white h1 a {font-size: 20px; font-weight: bold; }
#container #content #main .content .news { background-color: #fff; }
#container #content #main .content .detail{ background-color: #fff; }
#container #content #main .content .gallery { background-color: #fff; }

/* pagina ricerca */
.cerca_page { padding-top: 20px; }
#gda .cerca_box { display: block; float: left; width: 264px; height:80px; background: url(/public/media/layout_images/box_cerca_grigio.png) top left no-repeat scroll; margin-bottom: 10px; }
#gda .cerca_box h3 { color: #b11; font-weight: bold; font-size: 24px; margin-top: 10px; margin-bottom: 5px;}
#gda .cerca_box h4 { color: #888; font-weight: normal; font-size: 16px;}
#gda .cerca_col { float: left; width: 250px; border: 7px solid #f0f0ef; margin-bottom:30px;}
#gda .cerca_col .cerca_tit { margin-bottom: 5px; background-color: #f0f0ef; color: #555; font-weight: bold; font-size: 18px; padding: 0px 3px 5px 3px; }
#gda .cerca_col .list_artist_item { margin: 5px 15px; text-align: left; }
#gda .cerca_spacer { float: left; width: 82px; }
#gda .cerca_item { margin: 7px 0; background-color: #f0f0ef; padding:6px;  text-align:left; font-size: 14px; }
#gda .cerca_item .right { float: right; }

/* popup infowindow */
#poi_pop { margin:0; padding:0; border: 0; overflow: hidden; outline:none;}
#poi_pop .spacer { height:10px; width: 100px; outline:none;}
#poi_pop .poi_panel { width:248px; overflow:auto; margin:0; padding:0; border: 0; outline:none;}
#poi_pop .poi_item .inf, #poi_pop .poi_item .i, #poi_pop .poi_item .s { float:left; width:140px; }
#poi_pop .poi_panel .inthis { width: 220px; font-size: 12px; font-weight: bold; margin: 4px 0 8px 0; color: #fff; background-color: #777; padding: 2px;}
#poi_pop .poi_item { font-size: 11px; margin-bottom: 7px; outline:none;}
#poi_pop .poi_item .img { float: left; text-align: center; width:60px; height: 55px; }
/* div.gmnoprint div div div { overflow: hidden !important; } */
#poi_pop .poi_item .n { float: left; font-weight: bold; font-size: 12px; width:160px;}
#poi_pop .poi_item .n a { color: #b32; }
#poi_pop .poi_item .n a:hover { text-decoration: underline; }  
#poi_pop .poi_item .i { color: #000; font-weight: bold;}

#poi_pop .poi_item .s a { color: #333; }
#poi_pop .poi_item .s a:hover { text-decoration: underline; }

/* modifiche al css guide */
/* checkbox non si vedono su ie7;*/
#gda ul.menu_legenda li a { float: left; }

body.cerca { background: url(/public/media/layout_images/page_bg.gif) repeat-x scroll top left; }
body.interna { background: url(/public/media/layout_images/page_bg.gif) repeat-x scroll top left; }
body.interna { background: none; }
body.cerca { background: none; }
body.guide { background-image: none !important; text-align:left !important; }
.nav_menu ul li a { width: 100px; }

#gda .cart_share { margin: 30px 0; }
#gda .cart_share span { vertical-align: middle; margin-right: 5px;}
#gda .cart_share a { color: #222; font-weight: bold; font-size: 10px; }

#gda .entrypage ul li .provincia a {color: #000; }
#gda .entrypage ul li .provincia a:hover {color: #000;}
#gda .scheda .col_sx ul.ele-scheda li {height: auto; margin: 7px 0;}
#gda .no_foto { margin-top: 50px; margin-bottom: 20px; font-size: 14px; font-weight: bold; }
#gda .scheda ul.itinerari li .txt span input { margin:0; vertical-align: middle; }
#gda .tit_tappe { font-weight: bold; font-size: 14px; background-color: #999; color: #fff; margin-top: 10px; padding: 2px; width: 575px;}

#gda p.warn {color: #999; font-size: 12px; padding-top: 2px; padding-left: 26px;}
#gda p.pref_resp {color: #c23; font-size: 12px; padding-top: 5px; padding-left: 26px; font-weight: bold;}
#gda p.warn a { display: inline !important; text-decoration: underline; color: #c23 !important; font-weight: normal !important;}
#gda .scheda .col_sx ul.tool_cond li { height: auto; margin-bottom: 2px;}

#gda #segnala_panel { margin-top:3px; }
#gda #segnala_panel input.txt { border: 1px solid #CCCCCC; color: #777; font-size: 14px; width: 100%; margin-bottom: 3px; }
#gda #segnala_panel input.black_but {display:inline-block; float:right; height:21px; padding:0px 15px; background:url(/public/media/guide/link_bkg_gradient_gri.jpg) top left repeat-x; border:1px solid #cccccc; color:#d4d0d0; font-size:11px; width:auto !important;}

/* lista artisti */
#gda { padding-bottom: 20px; }
#gda .list_artist_top { color: #bbb; font-size: 16px; font-weight: bold; margin: 0 0 3px 10px; }
#gda .list_artist_item {font-size: 12px; }
#gda .list_artist_item span {font-size: 10px; }
#gda .calendario > p { font-size: 12px; }

/* singolo artista */
#gda .calendario .item_el { clear: both; }
#gda .bio_autore { text-align: right; font-weight: bold; margin: 3px 0; } /* + */
#gda .calendario .item_el .txt p a {color: #000; }
#gda .calendario .item_el .txt p a:hover {text-decoration: underline; }
#gda .scheda .col_dx .box_lista ul li {height: auto; }
#gda .scheda .col_dx .box_lista ul li .im { float: left; width: 60px; text-align:center;}
#gda .scheda .col_dx .box_lista ul li .cnt { float: left;  width: 250px;}

a.dir_back { color: #555; font-weight: normal; }

/* artista foto */
#gda .gallery .img_select .content_img img { position: absolute; }

/* arte -> da vedere home */
#gda .form_quart select { width: 100%; margin-bottom: 5px; }

/* arte - da vedere -lista */
#gda .scheda .col_sx .filtri_tab input {vertical-align: middle; }
#gda .scheda .col_sx .menu_tab_bkg_bottom a { text-transform: uppercase; }

/* in città - lista */
#gda .scheda ul.itinerari li .txt_tab .title a { color: #C21E2D; font-size: 14px; font-weight: normal; }
#gda .scheda ul.itinerari li .txt_tab .title a:hover {text-decoration: underline; }
#gda .scheda ul.itinerari li .txt .title a { color: #C21E2D; font-size: 15px; font-weight: bold;}

#gda p.full_text { display:none; }

#gda .scheda .col_sx .txt_scheda ul.list_l li { min-height: 47px; height: auto; }
#gda .scheda .col_sx .txt_scheda ul.list_l li a { position: static; width: 539px; padding-left: 40px; padding-top: 10px;}

/* in città - scheda */
#gda .scheda .col_sx .txt_scheda { margin-top: 10px; }
#gda li.serv {  }
#gda li.serv img {vertical-align: middle; }

/* info dritte */
#gda .txt_info ul li { background: url("/public/media/guide/lista-info-credits.jpg") no-repeat scroll left -13px transparent; }

#gda .infout_box { float: left; width: 470px; margin-bottom: 10px;}

#gda .scheda .col_dx .box_lista .title {width: 300px;}

/* directory */
.let_box { margin-top: 10px; margin-right: 40px; width: 260px; padding: 3px; float: left; color: #000; font-size: 11px; font-weight: normal; line-height: normal;}
.let_box h2 { margin:0; color: #000; font-size: 11px; font-weight: normal;}
.let_box h2 a { color: #000; font-size: 11px; }
.let_box h3 { padding: 2px;background-color: #666; color: #fff; font-size: 20px; font-weight: bold; margin-bottom:10px; margin-top: 0px;}
.let_box a.btn_let {margin-top: 10px;display: block; text-align: center; font-size: 14px; font-weight: bold; color: #fff; background-color: #a00; width: 50px; padding: 3px; }

.result_albero { background-color: #f0f0f0 !important; margin-top: 20px;  }
.result_albero h4 { color: #e11; font-size: 16px; font-weight: bold; padding:3px;}

/* modifiche ai css di chris */
#container #middle { top: 150px; }
#container #middle #main {text-align: left; }

#container #topbar .bar .left #logo img { margin-top: 15px; }

#container #bottombar .content .bar #copyright ul li {font-size: 11px; }
#container #bottombar .content .bar #caption h1 {font-size: 11px; }

#container #topbar { position: relative; }
#container #topbar .bar .left #search form #keyword {
	padding: 5px 10px 5px 10px;
}
#bottombar #note .text { font-size: 14px; color: #fff; }

#container #content #main .content .title .bar_grey .buttons { position: relative; }

/* pagina mostra immagne non deve avere altezza impostata da css */
#container #content #main .floating .colum_left .box .content .carousel .images { position:relative; }
#container #content #main .floating .colum_left .box .content .carousel .images img { height: auto; position:relative; }
#container #content #main .calendar .colum_right .box .content .image img {height: auto; }
#container #content #main .floating .colum_left .box .content .carousel { height: 330px; }
#container #content #main .floating .colum_left .box .content .carousel .images {height: 330px; }

#container #content #main .calendar .colum_right { }

/* pannello segnala del calendario */
.panel_segnala {padding-bottom: 5px !important; display: none;}
.panel_segnala input { width: 270px; margin: 7px; padding: 2px;}
.panel_segnala_response { padding: 10px 10px !important; color: #fff; font-size: 12px !important; font-weight: bold; text-align:center !important; }

/* pagina mostra directions */
#directionsPanel table.adp-directions { color: #fff !important; }
#directionsPanel div.adp-summary { color: #fff !important; }

/* pagina directory: necessario per nomi di categorie molto lunghi */
#container #content #main .directory .filters h1 {height: auto; } 
#container #content #main .directory .filters .keywords .button .label {overflow: hidden; }

/* pagina mostra */
#container #content #main .floating .colum_right .box .content .content_black_stripes .caption h1 { margin: 0; }
#container #content #main .floating .colum_right .box .content .content_black_stripes .caption h2 {margin-bottom: 5px; }

/* pagina calendario: il div con la data deve avere larghezza fissa e anche il div col select */
#container #content #main .calendar .colum_left .box .border-top .week .label h1 {width: 105px; overflow: hidden; text-align: center; font-size: 13px; }
#container #content #main .calendar .colum_left .box .border-top .select .label h2 {width: 70px; overflow: hidden; }
/* calendario: le immagini sono leggermente più grandi, overflow hidden sulle celle */
#container #content #main .calendar .colum_left .box .content .month .elements .element h1 { overflow:hidden; }
#container #content #main .calendar .colum_left .box .content .month .monitor .items .item {height: 45px; }
#container #content #main .calendar .colum_left .box .content .month .monitor .items .item h3 {height: 45px; line-height: 43px; }
#container #content #main .calendar .colum_left .box .content .month .monitor .items .label {height: 41px; }

#container #content #main .calendar .colum_left .box .content .day .items .item .image img { height: auto; }

/*
#container #content #main .floating .colum_right .box .content .content_black_stripes .textarea { height: auto; }
#container #content #main .floating .colum_right .box .content .content_black_stripes .textarea .text { height: auto; }
*/
#container #content #main .search_result .left .box .social iframe {vertical-align: top; }
#container #content #main .floating .colum_right .box .content .content_black_stripes .buttons iframe {vertical-align: top; }
/* calendario giornaliero: il div che contiene l'immagine deve avere overflow hidden e l'immagine deve essere ridimensionata solo in larghezza */
#container #content #main .calendar .colum_left .box .content .day .items .item .image {overflow: hidden; }

/* calendario piccolo e grande  nella barra in basso: i link devono essere bianchi, immagini ecc */
#container #bottombar .content .bar #calendar_container #calendar .content .days .day h4 a { color: #fff; } 
#fullscreen .calendar .content .days .day h4 a { color: #fff; }
#fullscreen .calendar .content .days .day h2 {overflow: hidden; width: 110px; height: 87px;}
#fullscreen .calendar .content .days .day h2 img {width: 100%; }
#container #bottombar .content .bar #calendar_container #calendar .header .months h1 { width: 130px; }
#fullscreen .calendar .header .months h1 { width: 180px; }

/* thumbnail per la form nuova opera e nuovo artista: non deve esserci l'hover, ma solo una classe aggiuntiva per selezionare */
#container #content #main .form .box .content fieldset .thumbs .thumb_sel {
	background-image: url(../media/layout_images/form_thumb_bg.png);
	border: 2px solid #AAAAAA;
}
/* classe per il select */
.sel_tipo_opera { border: 0; margin: 10px 0;}
.sel_movperdis { border: 0; margin: 10px 0; width: 340px; }
.sel_provincia { border: 0; margin: 10px 0; width: 340px; }

/* pagina registrazione step 4: l'ul non deve avere altezza fissa*/
#container #content #main .form .box .content fieldset .sticky ul { height: auto;}

/* pagina ricerca */
#container #content #main .search_result .left .box .container .result .item .functions .left { height: 20px; }
#container #content #main .search_result .left .box .container .result .item h2 a {color: #7e7e7e;  }

/* nuove classi */
#gda .cart_pagination { font-size: 14px; text-align: center; padding-bottom: 50px;}
#gda .cart_pagination a:hover { text-decoration: underline; }
#gda .cart_response { color: #c23; font-size: 14px; font-weight: bold; text-align: right; margin-bottom:30px; }

/* div per selezionare la provincia sulle notizie */
.prov_picker, .data_picker { display:none; margin-right: 5px; position: absolute; z-index: 9999; right: 0px; top: 30px; background-color: #333; width: 138px; height: 15em; overflow: auto; padding: 5px; }
.prov_picker a, .data_picker a { color: #fff; font-size: 12px; }
.prov_picker a:hover, .data_picker a:hover {text-decoration: underline; }

/* div per selezionare la provincia sul calendario */
#container #content #main .calendar .colum_left .box .border-top {position:relative; }
.prov_picker_cal { display:none; position: absolute; z-index: 9999; left: 370px; top: 40px; background-color: #ddd; width: 120px; height: 15em; overflow: auto; padding: 5px; }
.prov_picker_cal a { color: #999; font-size: 12px; }
.prov_picker_cal a:hover {text-decoration: underline; }

/* scrllable su pagina notizia */
.gallery .images  { position:relative; overflow:hidden; }
.gallery .images .items { width:20000em; position:absolute; }
.gallery .images .items a {float: left; }

/* notizia singola */
#container #content #main .content .detail p {text-align: left; line-height: 1.8em; }
#container #content #main .content .title { border: 0px solid #000;}
#container #content #main .content .detail { border: 0px solid #000;}
#container #content #main .content .correlated .row  { border: 0px solid #000;}
#container #content #main .content .news h2 a {color: #000; }
#container #content #main .content .news h2 { color: #444; font-size: 20px; font-family: Arial, Verdana; line-height: 30px;}
#container #content #main .content .title .bar_white h1 a {color: #000; }
#container #content #main .content .title .bar_white h1 { color: #444; }
#container #content #main .content .detail p { /* font-family: Georgia, Verdana, Arial; */ font-size: 15px; }
#container #content #main .content .news p   { /* font-family: Georgia, Verdana, Arial; */ font-size: 15px; }

/* pagina mostra, div che contiene i radio */
#container #content #main .floating .colum_left .box .content .content_black_slider {
    background-color: #111111;
    margin: 0 10px;
    width: 500px;
}
#container #content #main .floating .colum_left .box .content .content_black_slider .slider { text-align: right; padding: 4px; padding-right: 10px; }

/* pagina artista e opera */
#container #content #main .search_result .left .box .works .images { height: auto; width: auto; } 

/* pagina profilo */
#container #content #main .profile .box .content .user .photo .placeholder { height: auto; }
#container #content #main .profile .box .content .user .photo .placeholder img { height: auto; }

/* modifiche per il segnala sito/fonte */
#container #content #main .profile .box .content .right .tools ul li { padding: 0; }
#container #content #main .profile .box .content .right .tools ul li { height: auto; }
#container #content #main .profile .box .content .right .tools ul li fieldset { background-color: #FFFFFF; border: medium none; margin: 0; padding: 5px 5px 0; text-align: left; }
#container #content #main .profile .box .content .right .tools ul li fieldset.submit { text-align: right; }
#container #content #main .profile .box .content .right .tools ul li fieldset input,
#container #content #main .profile .box .content .right .tools ul li fieldset textarea
{
    background: url("../media/layout_images/calendario_bianco_bg.png") repeat scroll 0 0 #FFFFFF;
    border: 1px solid #666666;
    color: #333333;
    font-family: Verdana,Geneva,sans-serif;
    font-size: 10px;
    line-height: 15px;
    margin: 0;
    outline: medium none;
    padding: 5px;
    text-decoration: none;
    width: 200px;
}
#container #content #main .profile .box .content .right .tools ul li fieldset textarea { height: 100px; }
#container #content #main .profile .box .content .right .tools ul li fieldset label
{
    color: #333333;
    font-family: Verdana,Geneva,sans-serif;
    font-size: 10px;
    font-weight: bold;
    line-height: 15px;
    margin: 0;
    padding: 0;
    text-transform: uppercase;
}
#container #content #main .profile .box .content .right .tools ul li fieldset.submit {text-align: right; }
#container #content #main .profile .box .content .right .tools ul li fieldset.submit input
{
    background-image: url("../media/layout_images/personal_profile_button_bg.gif");
    background-repeat: repeat-x;
    border: medium none;
    color: #CCCCCC;
    cursor: pointer;
    font-family: Verdana,Geneva,sans-serif;
    font-size: 11px;
    font-weight: normal;
    height: 22px;
    line-height: 20px;
    margin-bottom: 5px;
    overflow: hidden;
    padding: 0 15px;
    text-decoration: none;
    text-transform: uppercase;
    width: auto;
}

/**************************/
a { color: #B3111F; text-decoration: none; }
a img { border: 0; }
.cleardiv { clear: both; }

h1.page_title { display: none; }

#hd { height: 140px; text-align: center; background-color: #333; }
#hd.hdhome { background-color: transparent; }

#hdcont { margin: 0 auto; text-align: left; width: 960px; height: 140px; padding: 0; position: relative; }
#ft { height: 140px; text-align: center; background-color: #666; }
#ftcont { font-size: 12px; margin: 0 auto; text-align: left; width: 920px; height: 130px; padding: 5px 20px; position: relative; color: #333;}

/* home */
body.homepage {width: 100%; height: 100%; overflow:hidden; }
.transition { position:absolute; left:0; top:0; width:100%; height: 100%; z-index:-10; overflow: hidden; }

#hd_bg { position: absolute; top: 0px; left: 0px; width: 100%; height: 140px; z-index: -5; background-color: #000; opacity: 0.7; filter: alpha(opacity=70);}

#wrapper { width: 960px; margin: 0 auto 30px auto; padding: 0; text-align: left; min-height: 600px; }

#col600 { width: 590px; padding: 5px; float: left; padding-top: 10px;}
#col350 { width: 350px; padding: 5px; float: left; padding-top: 10px; }
#col650 { width: 640px; padding: 5px; float: left; padding-top: 20px;}
#col300 { width: 290px; padding: 5px; float: left; padding-top: 20px; }
#col620c { width: 620px; padding: 5px; margin: 0px auto;  padding-top: 20px; min-height: 500px; }
.clear { clear: both; }

#overlay { display: none; width: 100%; height: 0px; background-color: #000; opacity: 0.7; filter: alpha(opacity=70); z-index: 7; position: absolute; left:0; top: 0;}

/* HEADER */
#hd a.logo { z-index: 5; display: block; position: absolute; left:5px; top: 25px; width: 230px; height: 70px; background: url(/images/logo_rosso.png) scroll no-repeat left top;  }

#hd .welcome, #hd .beta { font-size: 13px; color: #ccc; }
#hd .welcome a, #hd.beta a { color: #fff; }

.srctype { text-transform: uppercase; z-index: 7; position: absolute; left:245px; top: 20px; color: #999; font-size: 12px;}
.srctype a { color: #fff;}

#hd .welcome { position: absolute; left:245px; top: 20px; width: 470px; text-align: right; z-index: 5; }
.mainsearch { z-index: 5; position: absolute; left:245px; top: 40px; width: 470px; height: 40px; background: url(/images/search_big_new.png) scroll no-repeat left top; }
.mainsearch_inp { letter-spacing: 2px; position: absolute; left:5px; top: 5px; width: 425px; height: 28px; padding: 0; color: #000; font-size: 15px; line-height: 28px; font-weight: bold; background: none; border: 0; }
.mainsearch_sub { cursor: pointer; position: absolute; left:430px; top: 0px; width: 40px; height: 40px; background: none;  border: 0; }
#hd .beta { font-style: italic; position: absolute; left:235px; top: 80px; width: 470px; text-align: right; z-index: 5;}

#hd .facebook { position: absolute; left:600px; top: 115px; z-index: 6; }
#hd .facebook img { width: 20px; }
#hd .sponsor { position: absolute; left:765px; width:200px; top: 45px; color: #fff; z-index: 6; }
#hd .sponsor img {vertical-align: baseline; }

.langbar { z-index: 5; text-align:right; font-size: 12px; color: #fff; position: absolute; width: 70px; height: 20px; left: 890px; top: 2px; }
.langbar a { color: #fff; text-decoration: none; }

.toplogin { z-index: 5; text-align: right; font-size: 14px; color: #ccc; font-weight: normal; position: absolute; left: 720px; top: 20px; width: 240px; height: 50px;}
.toplogin a {color: #fff; }
.toplogin span a {font-size: 12px; font-weight: normal; color: #fff;}

.loginbox { z-index: 100; display: none; color: #333; width: 235px; padding: 3px; position: absolute; top: 40px; left: 715px; background-color: #fff; border: 2px solid #666; }
.loginbox .fh { text-align: right; }
.loginbox .lf { text-align: right; margin-bottom: 5px; float: left; width: 70px; font-size: 12px; padding: 2px 0;}
.loginbox .rf { text-align: left; margin-bottom: 5px; float: left; width: 155px; font-size: 12px; padding-left: 3px; }
.loginbox .fb { text-align: right; clear: both; }
.loginbox .fb a {color: #333; }

.login_failed { z-index: 5; position: relative; left:-70px; top: -32px; color: #f30; font-weight: bold; font-size: 12px; }

.title_bar { border-top: 1px solid #999; border-bottom: 1px solid #999; font-size: 20px; font-weight: bold; margin: 5px 0;}

/* FOOTER */

#ft .linkbar a { color: #ccc; display: block; float: left; padding-left: 10px; padding-right:35px; background: url(/images/pal_bianco.png) no-repeat left 5px; }
#ft .network_txt, #ft .partners { margin: 7px 0; color: #333; padding-left: 10px; background: url(/images/pal_nero.png) no-repeat left 5px; }
#ft .network_txt a, #ft .partners a { color: #333; }
#ft .copyr {margin-top: 40px; text-align: center; color: #333; }
#ft .copyr img { vertical-align:middle; margin-right: 5px; }

/* COLONNA DX */
a.graybut { text-decoration: none; margin-bottom: 2px; display: block; color: #fff; padding: 3px 25px; background: #333 url(/images/piu.png) scroll no-repeat 2px 2px; }

.box345 { width: 345px; }
.boxb { padding: 5px; border: 1px solid #ccc;  }
.boxborange { padding: 5px; border: 1px solid #f93; background-color: #f93; }

a.boxplusorange { display: block; text-decoration: none; background: #000 url(/images/piu.png) no-repeat scroll 99% 4px; color: #f93; text-align: right; font-size: 12px; padding: 5px; padding-right: 25px; }

/* BOX FONTI ACCREDITATE */
.fonte_nome a { font-size: 15px; font-weight: bold; color: #000; }
.fonte_url a { font-size: 11px; font-weight: normal; color: #f33; }
.fonte_stars {margin-bottom: 7px; }
.fonte_stars img { margin-right: 5px; }

/* BOX */
.box_orange, .box_white, .box_gray, .box_black, .box_green, .box_cyan { margin: 5px; margin-bottom: 15px; }
.boxh span { padding:1px 20px; text-align: center; font-size: 10px; background-color: #333; color: #fff; }
.box_white .boxh a { color: #fff; }
.box_gray .boxh span { background-color: #c00; }
.box_black .boxh span { background-color: #000; color: #fff; }
.box_green .boxh span { background-color: #693; color: #fff; }
.box_cyan .boxh span { background-color: #39c; color: #000; }
.boxbody { padding: 5px; font-size:12px;  }
.box_orange .boxbody { border: 1px solid #f93; background-color: #f93; }
.box_white .boxbody { border: 1px solid #ccc; background-color: #fff; }
.box_gray .boxbody { border: 1px solid #999; background-color: #eee; }
.box_black .boxbody { border: 1px solid #666; background-color: #fff; }
.box_green .boxbody { border: 1px solid #693; background-color: #fff; }
.box_cyan .boxbody { border: 1px solid #aaa; background-color: #eee; }
.boxfooter { display: block; text-decoration: none; background: #000 url(/images/piu.png) no-repeat scroll 99% 4px; color: #fff; text-align: right; font-size: 12px; padding: 5px; padding-right: 25px; }
.box_green .boxfooter {background: #693 none; text-align: left; color: #000; }
.box_green .boxfooter a { color: #fff; }
.box_orange .boxfooter { color: #f93; }
.box_white .boxfooter { color: #fff; }
.box_white a.boxfooter_cyan { color: #39c !important;}
.box_nobrd { border: 0; }

/* BOX EVENTI */
.event_nome a { font-size: 15px; font-weight: bold; color: #000; }
.event_info { font-size: 13px; font-weight: bold;  color: #fff; }
.event_descr { font-size: 12px; margin-bottom: 7px; }
.event_descr a { color: #fff; }

/* SCHEDA ARTISTA */
.bio_box { margin-bottom: 10px; }
.bio_box .tit { margin-bottom: 1px; }
.bio_box .tit a { color: #333; font-weight: bold; font-size: 16px; }
.bio_box .txt { margin-bottom: 2px; color: #666; line-height: 1.5em; font-size: 11px; }
.bio_box .txt a { color: #666; }
.bio_box .lnk { overflow: hidden; height: 18px; }
.bio_box .lnk a { color: #39c; font-size: 12px; text-decoration: underline; }

a.vedi_tutte { text-align:right; padding-right: 20px; display: block; width: 300px; float: right; margin-top: 5px; color: #000; font-size: 13px; background: url(/images/piu_nero.png) no-repeat right top; }

.opera_box { width: 200px; height: 100px; font-size: 12px; float: left; }
.opera_box .l { width: 40px; padding: 5px; float:left; text-align: right; }
.opera_box .l img { width: 40px; border: 0; }
.opera_box .r { width: 140px; padding: 5px; color: #999; float:left; }
.opera_box .r a { color: #39c; }
.opera_box .r .data { color: #000; }

.boxbody ul { font-size: 12px; list-style: none; list-style-position:outside; padding-left: 0; margin-left: 0; }
.boxbody ul li span a { color: #000; font-size: 12px; font-weight: bold; }
.boxbody ul li p { margin-top: 3px; }
.boxbody ul li p a { margin-top: 3px; font-weight: normal; }
.boxbody ul li.big a.cit, .boxbody ul li.big { font-size: 22px; font-weight: bold; font-family: Georgia, Serif; color: #000; }

.corr_art { margin-bottom: 5px; }
.corr_art .nome a { font-family: Georgia, Serif; font-size: 20px; font-weight: bold; color: #000; } 	
.corr_art .nomer { font-family: Georgia, Serif; font-size: 14px; font-weight: bold; color: #000; } 
.corr_art .date { font-size: 12px; color: #000; }
	
/* PAGINA RICERCA */
.search_title { font-family: Georgia, Serif; font-size: 24px; font-weight: bold; margin-bottom: 5px; }

.search_info { margin-top: 2px; font-size: 16px; font-weight: normal; width: 200px; float: right; text-align: right }
.cyanb { color: #39c; font-weight: bold; }
.search_mode { font-family: Georgia, Serif; color: #000; font-size: 10px; font-weight: bold;  }
.search_mode a { color: #39c; }

#src_results { margin-top: 15px; } 
.src_result { margin-bottom: 10px; }

.src_result_img { float: left; width: 190px; height: 250px; }
.src_result_img .top { height: 180px; text-align: center; overflow: hidden; }
.src_result_img .bot { height: 50px; text-align: center; font-size: 12px; overflow: hidden;}
.src_result_img .bot .tit { font-size: 12px; height: 16px; line-height: 16px; overflow: hidden; font-weight: bold; }

.box_artista, .box_opera, .box_locazione { padding: 5px; background-color: #eee; border-left: 2px solid #ddd; border-bottom: 2px solid #ddd; margin-bottom: 5px;}

/* .box_artista img { float: left; margin-right: 10px; width: 150px; border: 0; } */
.box_artista .art_pic { float: left; width: 190px; margin-right: 10px; overflow: hidden; }
.box_artista .art_pic .top { float: left; height: 200px; overflow: hidden; }
.box_artista .art_pic .top_noh { float: left; overflow: hidden; }
.box_artista .art_pic .bot { float: left; height: 30px; margin-top: 3px; }
.box_artista .art_pic .bot .pic { float: left; height: 30px; text-align:center; width: 47px; }

.box_artista h1 {text-transform:uppercase; font: 22px Georgia, Serif; font-weight: bold; margin: 0; margin-bottom: 3px;}
.box_artista h2 {text-transform:uppercase; font: 15px Georgia, Serif; font-weight: bold; margin: 0;  }
.box_artista .dates {text-transform:uppercase; font-size: 12px; margin-bottom: 5px; } 
.box_artista .arts {font-size: 15px; margin-bottom: 0px; font-weight: bold; } 
.box_artista .anchors, .box_artista .anchors a { color: #666; font-size: 13px; margin-top: 10px; font-weight: bold; } 
.box_artista .bio {line-height: 1.5em; font-size: 12px; } 
.box_artista a.but_scheda_full { display: block; float: left; margin-top: 2px; padding: 3px; font-size: 11px; text-transform: uppercase;text-align: center; width: 220px; background: #000 url(/images/piu.png) no-repeat scroll 4px 2px; color: #6df; }
.box_artista .lnk { font-size: 12px; height: 18px; overflow: hidden; margin: 10px 0 10px 0;}
.box_artista .lnk a { text-decoration: underline; color: #39c; font-weight: bold;  }
.box_artista .social a.fb { margin-left: 10px; }
a.blue_button { text-align:center; padding: 3px 10px 3px 25px; display: block; color: #fff; font-size: 12px; background: #000 url(/images/piu.png) no-repeat 4px 3px; }

/* RISULTATI RICERCA */
.src_result .tit { margin-bottom: 5px; }
.src_result .tit a {color: #000; font-size: 15px; font-weight: bold; }
.fonti .src_result .tit a {color: #333; font-size: 15px; font-weight: bold; }
.src_result .txt { color: #666; font-size: 11px; font-weight: normal; margin-bottom: 2px; }
.src_result .url { height: 17px; overflow: hidden; color: #39c; font-size: 13px; font-weight: normal; margin-bottom: 3px; }
.src_result .opt { color: #333; margin-bottom: 3px;}
.src_result .opt a { font-family: Georgia, Serif; color: #333; font-size: 13px; }
.src_result .opt a:hover { color: #f33; }
.src_nores { font-weight: bold; font-size: 14px; color: #a00; margin: 30px 0; }
.src_result .social_nonpert { font-size: 12px; border: 1px solid #666; display: none; height: 40px; text-align: center; padding: 3px;}
.src_result .social_vota { font-size: 12px; display: none; height: 20px; text-align: left; padding: 3px; }
.src_result .noreg { line-height: 40px; }
.mustbereg { margin: 0; margin-bottom: 2px; font-size: 12px; border: 1px solid #666; display: none; height: 35px; text-align: center; padding: 3px; }
.nuovafonte { margin-bottom: 2px; border: 1px solid #666; padding: 5px; font-size: 12px; color: #333; display: none;  }
.nuovafonte .l { clear: both; float: left; width:80px; margin-bottom: 5px; text-align:right; }
.nuovafonte .r { padding-left: 5px; float: left; width:150px; margin-bottom: 5px; }
.newf_ok, .newf_ko { padding: 3px; font-weight: bold; font-size: 12px; color: #0a0; background-color: #fff; }
.newf_ko { padding: 3px; font-weight: bold; font-size: 12px; color: #a00;  background-color: #fff;}

.suggestions .expl { border: 1px solid #bbb; padding: 5px; color: #555; font-size: 12px; }
.suggestions .suggestion a { font-size: 12px; color: #222; font-weight: bold; }
.suggestions .suggestion { color: #333; padding-left: 12px; background: url(/images/quad_grigio.png) no-repeat left 2px; font-size: 12px; color: #333; margin: 4px 0; }

.src_result .opt .ok { text-align: right; font-size: 12px; color: #0a0; font-weight: bold; float: right; width: 300px;}
.src_result .opt .ko { text-align: right; font-size: 12px; color: #a00; font-weight: bold; float: right; width: 300px;}

#src_pagination { margin-bottom: 30px; clear: both; }
.src_pages { text-align: center; font-size: 13px; color: #666; font-weight: bold; border-top: 1px solid #999; border-bottom: 1px solid #999; padding: 5px;}
.src_pages a { color: #333; }
body .src_pages .curpage { color: #39c; }

/* PAGINA EVENTI */
.evt_tit { font: 22px bold Georgia, Serif; color: #000; font-weight: bold;margin-bottom: 5px; clear: both;}
.evt_inf { font-size: 12px; color: #f63; font-weight: bold; margin-bottom: 10px;}
.evt_txt { font-size: 12px; color: #333; line-height: 1.5em; }
.evt_lnk { margin-top: 10px;}
.evt_lnk a { color: #f63; font-weight: bold; font-size: 12px; }
.evt_search { margin-top: 20px; font: 22px bold Georgia, Serif; color: #f63; font-weight: normal; font-style: italic;} 
a.evt_readall { color: #f63; } 

/* MAPPE */
.map_header { padding: 5px; font-family: Georgia, Serif; color: #000; font-size: 24px; font-weight: bold; padding-top: 5px; }
.map_header a { color: #000; font-size: 24px; font-weight: bold; }

#gmap { border: 2px solid #666; }
.iti_map #gmap { border: 0; margin: 0 auto;}

ul.gmap_ul { list-style-type:none; padding:0; margin: 0; }
ul.gmap_ul li {margin: 2px; }
ul.gmap_ul ul { list-style-type:none; padding-left: 20px; margin: 0; }
ul.gmap_ul ul li { padding: 3px 0; color: #000; font-size: 12px; margin: 0; }
a.map_main { margin:0; padding: 2px 0; font-family: Georgia, Serif; font-size: 14px; font-weight: bold; color: #000; display: block; padding-left: 25px; background:#ccc url(/images/piu.png) no-repeat 2px 3px; }
a.map_current { background-color: #666 !important; color: #fff !important; }
a.map_sub { color: #79b; font-size: 12px; padding: 2px; }

.gpop_container { font-size: 12px; font-family: Arial, Sans-Serif; width: 300px; height: 200px; overflow: auto; }
.gpop_header { margin: 3px 0;  color: #B3111F; background-color: #333; padding: 2px; text-align: center; }
.gpop_header a { color: #fff; font-weight: normal; }
.gpop_sub { margin: 3px 0; }
.gpop_row { width: 280px; float: left; padding-bottom: 1px; margin-bottom: 3px; border-bottom: 1px dashed #ccc; }
.gpop_row .fot { float: left; width: 70px; text-align: center; }
.gpop_row .info { float: left; width: 210px; text-align: left; }

/* PAGINE SOCIAL */
.mustlog { color: #c00; font-style: italic; font-weight: bold; font-size: 20px; margin-bottom: 10px; text-align:center; }
.title_gray { clear: both; font-family: Georgia, Serif; font-size: 24px; font-weight: bold; color: #555; margin-bottom: 5px; }
.grayblock { clear: both; font-size: 24px; font-weight: bold; color: #fff; background-color: #666; padding: 2px; margin-bottom: 10px; margin-top: 5px; }
.explain_gray { font-size: 14px; color: #666; margin-bottom: 5px; }

.form_left { float: left; clear: left; width: 120px; margin-bottom: 10px; font-size: 12px; color: #666; padding: 2px 0; }
.form_right { float: left; width: 480px; margin-bottom: 10px; font-size: 12px;}
.form_info { color: red; font-style: italic; font-size: 12px; }
.txt_inp, .pagecontent input, .pagecontent textarea { font-family: Arial, Sans-Serif; border: 1px solid #666; color: #000; font-size: 12px; padding: 1px 2px; }
.sel_inp, .pagecontent select { border: 1px solid #666; color: #000; font:12px Arial,Sans-serif; padding: 1px 2px; }
.button_bar { text-align: right; margin-top: 10px; font-size: 12px; color: #333; }
.gray_but { background-color: #ddd; border: 1px solid #aaa; color: #333; }

.resp_bar { font-size: 14px; font-weight: bold; display: none; margin-bottom: 5px;}
.resp_ok { color: #360; display: block !important;}
.resp_ko { color: #f30; display: block !important; }

.usr_box { margin-bottom: 10px; }
.usr_box .pic { padding-top: 5px; float: left; width: 75px; height: 70px; text-align: center; overflow: hidden; margin-right: 5px; }
.usr_box .nome { font-family: Georgia, Serif; font-size: 24px; font-weight: bold; color: #555;  }
.usr_box .mod a { font-family: Arial, Sans-Serif; font-weight: normal; text-decoration: underline; font-size: 14px; font-style: italic; color: #999 }
.usr_box .email { font-size: 14px; color: #666; margin-bottom: 3px; }

.usr_panel {border: 1px solid #666; padding: 5px;}

.fr_resp { clear: both; font-size: 14px; padding-left: 120px; font-weight: bold; font-style: italic; margin-bottom: 5px;}

.but_opener { display: block; text-align: right; padding: 1px 20px; margin: 3px 0; color: #333; font-size: 14px; font-weight: bold; border: 1px solid #bbb; background: #dcd8d9 url(/images/tri_nero_down.png) no-repeat 99% 5px; } 
.item_scheda { font-size: 14px; color: #333; margin-bottom: 5px; padding-left: 20px; background: url(/images/quad_grigio.png) no-repeat 3px 3px; }
.item_scheda .desc { font-size: 12px; color: #333; }
.item_scheda a { color: #09c; text-decoration: underline; display: block; overflow: hidden; height: 20px; }

.pagecontent { margin-top: 20px; color: #333; font-size: 14px; }

/* PAGINA OPERA */
.box_opera { padding: 15px; }
.op_titolo { font-size: 24px; color: #000; margin-bottom: 3px; }
.op_artista { margin-bottom: 10px; }
.op_artista a { font-size: 14px; color: #000; font-weight: normal; }
.op_pic { margin-bottom: 10px; }
.op_data {width: 200px; float: left; }
.op_desc {width: 350px; float: left; font-size: 12px; color: #333; line-height: 1.7em;}
.op_link { margin-bottom: 10px; padding-left: 200px; clear: both;  font-size: 12px; color: #333; }
.op_data .l { margin-bottom: 5px; font-size: 12px; width: 70px; float: left; color: #0bf; }
.op_data .r { margin-bottom: 5px; font-size: 12px; font-weight: bold; width: 130px; float: left; color: #333; }
.op_data .r a { color: #00e; }

/* PAGINA LOCAZIONE */

.box_locazione { padding: 15px; }
.box_locazione .loc_pic { float: left; width: 190px; height: 270px; margin-right: 10px; overflow:hidden;}

.loc_nome { font-weight: bold; font-size: 22px; margin-bottom: 5px;} 
.loc_cit { font-size: 16px; margin-bottom: 20px; } 
.loc_data { float: left; width: 350px; margin-top: 20px; }
.loc_data .l { margin-bottom: 5px; font-size: 12px; width: 70px; float: left; color: #5b5; font-weight: bold; }
.loc_data .r { margin-bottom: 5px; font-size: 12px; font-weight: bold; width: 270px; float: left; color: #333; }
.loc_desc { float: left; width: 350px; float: left; font-size: 12px; color: #333; line-height: 1.7em; }

/* scheda autore social */
.sel_per, .sel_mov, .sel_dis { width: 300px; }
.soc_item { font-size: 12px; }
.soc_item img { vertical-align: top; }
.soc_item select { margin-bottom: 3px; margin-right: 5px; }

.bios_list .bio a.num { font-weight: bold; color: #333; text-align: center; font-size: 14px; line-height: 40px; clear: both; height: 40px; width: 50px; border: 1px solid #ccc; display: block; float: left; margin-right: 10px; margin-bottom: 5px; }
.bios_list .bio .txt { color: #333; padding: 3px; overflow: hidden; font-size: 14px;  height: 34px; width: 550px; border: 1px solid #ccc; display: block; float: left; margin-bottom: 5px;  }
.gray_text { width: 99%; padding: 2px; height: 200px; background-color: #eee; color: #000; font-size: 12px; font-family: Arial, Sans-Serif; border: 1px solid #ddd;}
.bios_list .bio_sel a.num { background-color: #ddd !important; }
.bios_list .bio_sel .txt { background-color: #ddd !important; }

.soc_img { border: 2px solid #fff; padding: 5px; width: 185px; height: 160px; float: left; overflow: hidden; margin-bottom: 5px; margin-right: 5px; text-align:center; }
.soc_img_sel {background-color: #ddd; border: 2px solid #999;}
.soc_resp {font-size: 16px; font-weight: bold; font-style: italic; color: #333;}
.soc_resp_ok { color: #0b0; } 
.soc_resp_ko { color: #b00; } 

/* DIRECTORY */
.letters_dir { padding: 3px; border: 1px solid #999; font-size: 14px; text-align:center; color: #333; margin: 5px 0; background-color: #fff; }
.search_dir { padding: 3px; font-size: 14px; color: #333; margin: 5px 0; }
.letters_dir a { color: #00b !important; }
.box_dir { border: 1px solid #999; font-size: 13px; float: left; width: 620px; background-color: #fff;}
.box_dir .it { color: #333; width: 175px; height: 25px; padding: 5px; padding-left: 20px; background: url(/images/quad_nero.png) no-repeat 5px 8px; float:left;}
.box_dir .it a { color: #333; text-decoration: underline; font-weight: bold; }
a.goback { font-size: 14px; font-family: Arial, Sans-Serif; }
.itemlist_dir { border: 1px solid #999; float: left; width: 620px;  background-color: #fff;}
.itemlist_dir .it { float: left; width: 190px; margin-right: 5px; padding: 5px 0; padding-left: 5px; font-size: 13px; color: #333; overflow: hidden; height: 30px;  }
.itemlist_dir a { color: #333; font-size: 13px; }
.dir_voci { font-size: 11px; }

/* ITINERARI */
.boxit_tit { font-family: Georgia, Serif; font-size: 16px; font-weight: bold; margin-bottom: 2px;}
.boxit_tit a { color: #000; }
.boxit_desc { font-family: Georgia, Serif; font-size: 12px; margin-bottom: 5px; }
.boxit_desc a { color: #555; }

.iti_head { padding: 3px; background-color: #593; color: #fff; font-size: 20px; margin-bottom: 3px; }
.iti_map { margin-bottom: 3px; background-color: #666; padding: 5px 3px;}
.iti_desc { font-size: 12px; line-height: 16px; color: #555; border: 1px solid #ccc; padding: 3px; margin-bottom: 5px; }
.iti_taphead { border-top: 1px solid #999; border-bottom: 1px solid #999;  font-weight: bold; font-size: 16px; color: #000; margin-bottom: 5px; }
.iti_taphead .tp { font-style: italic; font-size: 16px; color: #593; }

.iti_tap { font-size: 12px; float: left; margin-bottom: 5px; }
.iti_tap .num { cursor: pointer; text-align: center; float: left; width: 35px; height: 50px; margin-right: 3px; }
.iti_tap .num img { margin-top: 5px; }
.iti_tap .des { min-height: 46px; border: 1px solid #ddd; float: left; padding: 2px; width: 283px; background-color: #fff;}
.iti_tap .des .ft { text-align: center; width: 50px; height: 33px; overflow:hidden; float: left; }
.iti_tap .des .ft img { border: 1px solid #555; }
.iti_tap .des .tit { color: #444; font-size: 14px; }
.iti_tap .des .tit a { font-size: 16px; color: #444; font-weight: bold; text-transform:none; }
.iti_tap .des .but { clear: left; padding-left: 50px; }
.iti_tap .des .but a {color: #999; font-size: 14px; font-style: italic; text-decoration: underline; }
.iti_tap .des .info { display: none; padding: 4px; padding-top: 8px; }
.iti_tap .des .info .arts { clear: left; margin-left: 46px; }
.iti_tap .des .info .ope { font-size: 15px; color: #555; margin-left: 50px; clear: both; margin-top: 3px; }
.iti_tap .des .info .ope .dimg { float: left; width:40px; height: 30px; margin-right: 5px; overflow: hidden; }
.iti_tap .des a.op { color: #333; }
.iti_tap .des a.aut { color: #666; font-size: 13px; }

.box_iti { border: 1px solid #ccc; padding: 5px; margin-bottom: 10px; float: left;  }
.box_iti .img { float: left; height: 55px; width: 50px; margin-right: 5px; text-align:center; padding-top: 5px;}
.box_iti .img img { border: 1px solid #bbb; }
.box_iti .tit { float: left; font-weight: normal; color: #555; font-size: 18px; font-style: italic; width: 500px; }
.box_iti .tit a {color: #333; }
.box_iti .desc { float: left; font-size: 12px; color: #666; width: 500px; }
.box_iti .desc a {color: #333; }

a.but_iti_addnew { float: right; width: 170px; text-decoration: none; display: block; color: #fff; padding: 3px 25px; background: #333 url(/images/piu.png) scroll no-repeat 2px 2px; }

/* comunicati STAMPA */
.com_data { clear: both; font-size: 14px; font-weight: bold; color: #000; margin-top: 15px; }
.com_tit { font-family: Georgia, Serif; font-size: 20px; font-weight: bold; color: #444; margin-bottom: 3px; }
.com_tit a {color: #444; }
.com_titolet { font-size: 14px; font-weight: bold; margin-bottom: 3px; }
.com_img img { float: left; margin-right: 5px; }
.com_txt { font-size: 12px; color: #666; line-height: 1.5em;}
.com_aut {font-size: 12px; }
.com_kw { font-size: 12px; margin: 20px 0; clear: both; }

#fthome { position: absolute; bottom: 0px; left: 0px; width: 100%; height: 55px; z-index: 5; text-align: center;}
#fthome_cont { margin: 0 auto; text-align: left; width: 960px; height: 55px; padding: 0; position: relative;}
#fthome_bg { position: absolute; bottom: 0px; left: 0px; width: 100%; height: 55px; z-index: 3; background-color: #000; opacity: 0.7; filter: alpha(opacity=70);}
#home_did { display: block; position: absolute; left: 10px; top: 10px; color: #fff; font-size: 14px;  }
#home_did.piu { background: url(/images/piu.png) no-repeat left 1px; padding-left: 20px; }

.ft_copy { text-align:center; color: #fff; font-size: 10px; position:relative; top: 40px; }
.network { position: absolute; top: 20px; left: 850px; width:140px; color: #fff; }
.network a {color: #fff; font-weight:bold; }
.network img { vertical-align: middle; margin-right: 5px; } 

.network .network_box { display: none; border: 1px solid #999; width: 110px; position: absolute; top: -100px; left: 0px;}
.network .network_box a {display: block; padding: 3px 5px; color: #fff; background-color: #333; }
.network .network_box a:hover { background-color: #666; }

.ev_boxes { opacity:0.85; filter: alpha(85); z-index: 5; display: none; position: absolute; top: -170px; left: 5px; width: 350px; border: 4px solid #555; background-color: #ccc; color: #000; font-size: 16px; }
.ev_boxes a { color: #a11; }

/* SONDAGGI */
.sondaggio { margin: 0 auto; width: 960px; padding-top:20px;}
.sondaggio .title { margin-bottom: 10px; font-family: Georgia, Verdana; font-style: italic; font-size: 20px; font-weight: bold; padding: 2px 0 2px 10px; color: #fff; background-color: #f44;}
.sondaggio .titolo_sondaggio { font-family: Futura; font-size: 40px; text-align:center; margin-bottom: 10px;}
.sondaggio .grazie { margin-bottom: 100px; margin-top: 70px; font-family: Georgia, Verdana; font-style: italic; font-size: 25px; font-weight: bold; color: #000; }
.sondaggio .grazie a { font-family: Verdana; font-style: italic; font-size: 16px; font-weight: normal; color: #666; }
.sondaggio .grazie a:hover { text-decoration: underline; }
.sondaggio .title span.piu { color: #000;  } 
.sondaggio .risp { text-align: left; font-size: 14px; width: 310px; float: left; padding: 5px; }
.sondaggio .risp input.risp_altro { font-size: 14px; width: 200px; border: 1px solid #ccc; }
.sondaggio img { vertical-align: middle; }
.sondaggio .vota_bar { margin: 10px 0 20px 0; }
.sondaggio .info_bar { margin: 20px 0; color: #888; font-size: 12px; font-weight: bold; }

