/* $Id: pages.css,v 1.18 2009/11/05 11:07:02 johnalbin Exp $ */

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


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

#page-wrapper {
}

#page {
}

.defloater {
clear:left;
}

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

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

/*
 * Header
 */
#header {
}

#header .section {
}

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

#logo img {
  vertical-align: bottom;
}

#name-and-slogan /* Wrapper for website name and slogan */ {
}

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

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

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

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

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

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

#main {
}

/*
 * Content
 */
#content {
}

#content .section {
}

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

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

.breadcrumb /* The path to the current page in the form of a list of links */ {
  padding-bottom: 0; /* Undo system.css */
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.region-sidebar-first .section {
}

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

.region-sidebar-second .section {
}

/*
 * Footer
 */
#footer {
}

#footer .section {
}

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

.region-footer {
}

/*
 * Closure
 */
.region-page-closure /* Wrapper for any blocks placed in the closure region */ {
}

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

.box h2 /* Box title */ {
}

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

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

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

/**
 * Hide elements visually, but keep them available for screen-readers.
 *
 * Used for information required for screen-reader users to understand and use
 * the site where visual display is undesirable. Information provided in this
 * manner should be kept concise, to avoid unnecessary burden on the user. Must
 * not be used for focusable elements (such as links and form elements) as this
 * causes issues for keyboard only or voice recognition users.
 */
.element-invisible {
  height: 0;
  overflow: hidden;
  position: absolute;
}


















.bordino
{
border:1px solid orange;
text-align:center;
}

h1
{
	font-family:  Arial, Verdana,  'Trebuchet MS', sans-serif;
	font-size: 25px;
	font-weight: normal;
	
}
h2
{
	font-size: 14px;

}
h3 {
	margin: 0px;
	padding: 0px;
	font-weight: normal;
	font-family: Arial,Verdana, 'Trebuchet MS', sans-serif;
	
	}

p
{
	font-size: 10px;

}

.grigio
{
color: gray;
}

#ristor
{
display: none;
margin-left:10px;
}

#evento2
{
text-align: left;
display: none;
margin-left:10px;
}
#eventi
{
display: none;
margin-left:10px;
}
#shopper
{
display: none;
margin-left:10px;
}
#hotel
{
display: none;
margin-left:10px;
}
#alberghi
{
display: none;
margin-left:10px;
}
#cantine
{
display: none;
margin-left:10px;
}

#bar
{
display: none;
margin-left:10px;
}
 #span2   {
	color: #ffffff;
	text-align: center;
	font-family:  Arial, Verdana,  Helvetica, sans-serif;
	font-size: 10px;
	line-height: 1.5em;
	font-weight: normal;
	font-variant: normal;
	position:relative;
	width: 180px;
	height:121px;
}

 .span4  {
	color: #ffffff;
	text-align: center;
	font-family:  Arial, Verdana,  Helvetica, sans-serif;
	font-size: 10px;
	line-height: 1.5em;
	font-weight: normal;
	font-variant: normal;
	position:relative;
	width: 180px;
	height:121px;
	background-image: url();
	text-decoration: none;
}


 .span3  {
	color: #ffffff;
	text-align: center;
	font-family:  Arial, Verdana,  Helvetica, sans-serif;
	font-size: 12pt;
	line-height: 1.5em;
	font-weight: normal;
	font-variant: normal;
	position:relative;
	width: 350px;
	height:234px;
}


#span1 .timer {
	color: #ffffff;
	text-align: center;
	font-size: large;
	line-height: 1.5em;
	font-weight: bold;
	font-variant: normal;
	text-transform: uppercase;
              padding-top: 15px;
}

.timer {
	color: #ffffff;
	text-align: center;
	font-size: x-large;
	line-height: 1.5em;
	font-weight: bold;
	font-variant: normal;
	text-transform: uppercase;
}

.timer2 {
	color: #ffffff;
	text-align: center;
	font-size: 12px;
	line-height: 1.5em;
	font-weight: bold;
	font-variant: normal;
	text-transform: uppercase;
}

.data {
		background: #F9F9F9; 
                                    

	}


img  {
		border: 0;                                   

	}

.comments-body {
		background: #F9F9F9; 
                                    

	}


.comments-nest-box {
		padding-left:15px;
		border-left:1px dotted #AAA;
                                           color: #666666;
                                             

	}


.evidenza {
	  background: #F0F0F0; 
  font-size: 13px;
  font-family: Arial,Verdana, sans-serif;
}


body {
	margin: 0px 0px 10px 0px;
		background-color: #FFFFFF;
	        	text-align: center;
				font-family: Verdana, 'Trebuchet MS', sans-serif;       
	}


a:link {
	color: #595984;
	text-decoration: none;
	}

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

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

a:hover {
	color: #666699;
	text-decoration: none;
	}


/* tabella che contiene il blog*/
#container {
	margin-top: 0px;
	margin-right: auto;
	margin-left: auto;
	text-align: left;
	padding: 0px;
	width: 960px;
	background-color: #DBE7F2;
	border: 1px solid #666666;
	}
#container 	p, ul, ol, dl, pre, table, fieldset {
margin:0px;
}


/* box e testo in alto (i testi sono scritti in H1 e H2). Era height: 39px;*/
#banner {
	font-family: Verdana, Arial, sans-serif;
	color: #000000;
	background-color: #000000;
	text-align: left;
	padding: 10px;
	border-bottom: 10px #666666;
	height: 117px;
	background-image: url(/img/dinodrupal.jpg);
	}
#bannerology {
	font-family: Verdana, Arial, sans-serif;
	color: #000000;
	background-color: #000000;
	text-align: left;
	padding: 10px;
	border-bottom: 10px #666666;
	height: 117px;
	background-image: url(dinology.jpg);
	}
	
/* immagine nel banner*/
#banner-img {
	background-image: url(/dino.jpg);
	background-color: #00CC66;
	}


#banner a {
	color: #FFFFFF;
	text-decoration: none;
	}

#banner h1 {
font-size:59px;
font-weight:bold;
margin-bottom:5px;
margin-top:0;
}

#banner h2 {
color:black;
font-size:25px;
left:22px;
margin:0;
position:relative;
top:0;
}

#center {
		float: left;
	width: 499px;
overflow: hidden;
	}

#center_large {
		float: left;
	width: 560px;
overflow: hidden;
	}

#center_tour {
		float: left;
	
overflow: hidden;
	}
           

#center_shareaction {
		float: left;
	width: 549px;
	
	overflow: hidden;
	}


#center2 {
		float: left;
	width: 700px;
	
	
	overflow: hidden;
	}


/* css dell'elenco dei MeetUp */

#meetup_list {

                     float: right;
	width: 200px;
	background-color: #DBE7F2;
	overflow: hidden;
	padding: 0px;
	border-left: 1px solid #999999;
	height: 100%;
	border-bottom: 1px solid #999999;
		
}



/* css del menu in alto */

.menu {
	list-style : none;
	font-family: Verdana, 'Trebuchet MS',  sans-serif;
	font-size : 11px;
	font-weight : bold;
	border-top : .09em solid #e8e8e8;
	border-bottom : .09em solid #bbb;
	padding : 0px;
	margin : 0;
	position: relative;
	float:none;
	height : 2.77em;
	background-color :#cccccc;
background-image: url();
		background-repeat: repeat-x;   
  /* crea il distacco bianco  height : 2.18em; */
 
  
}

 
  


.menu .stream { display : none; }

.menu li {
  display : inline;
}
.menu a {
  position : relative;
  margin-top : -.09em;
  float : left;
  border : .09em solid #e8e8e8;
  border-bottom : .09em solid #bbb;
  border-right : .09em solid #bbb;
  padding : .45em 11px .54em 11px;
  background : #cccccc; 
background-image: url();
  
background-repeat: repeat-x;  
  text-decoration : none;
}
* html .menu a { margin-bottom : -.09em; }

.menu .active a {
  background-position : 50%;
  border-left : none;
  border-right : none;
  border-bottom : none;
  padding-bottom : .54em;
}

.menu-ie5mac a { padding-bottom : .27em; }
.menu-ie5mac .active a { padding-bottom : .36em; }

.menu a:link,
.menu a:visited {
  color : #000000;
}
.menu a:hover,
.menu a:active {
  color : #376088;
  background-position : -200px 50%;
   background-color : #BFBFBF ;
}


/* link sotto barra menu*/
#area_v2day {
margin: -10px -15px 5px -15px;
}

#area_v2day_700 {
margin: 0px 0px -2px 0px;
}


	

/* Il contenuto centrale del blog*/
.content_center {
	padding: 10px 15px 5px 15px;
	background-color: #ffffff;
	color:#000000;
	font-family: Verdana,  'Trebuchet MS', sans-serif;
	font-size: 8pt;
	border: 1px solid #999999;
	border-top: none;
	border-bottom: none;
		
}


.content_tour {
	padding: 10px 15px 5px 15px;
	background-color: #ffffff;
	color:#000000;
	font-family: Verdana,  'Trebuchet MS', sans-serif;
	font-size: 8pt;
	border-top: 0px;
		}


.content p {
	
  color:#000000;
	font-family: Verdana, 'Trebuchet MS', sans-serif;
	font-size: 8pt;
	font-weight: normal;
	line-height: 150%;
	text-align: left;
	margin-bottom: 10px;
	}



.content blockquote {
	line-height: 150%;
	}

.content li {
	line-height: 150%;
	}


.content h2 {
	color: #666666;
	font-family:  Verdana, 'Trebuchet MS', sans-serif;
	font-size: small;
	text-align: left;
	margin-bottom: 10px;
	
	}

.content h3 {
	color: #6666FF;
	font-family:  Arial, Verdana,'Trebuchet MS', sans-serif;
	text-align: left;
	font-weight: bold;
	margin-bottom: 10px;
	font-size: 14px;
	
	}
	
	/* per citare un testo*/
.quote {
		background-color:#FFFFFF;
		padding-right:5px;
		padding-left:10px;
		border:1px #999999 dashed;
		width:80%;
		left:30px;
		font-family: Arial, Helvetica, sans-serif;
		font-size:11px;
		color: #967474;
		margin-left:30px;
		padding-top:5px;
		padding-bottom:5px;
		}

.content p.posted {
	color: #999999;
	font-family:  Verdana, 'Trebuchet MS', sans-serif;
	font-size: x-small;
	border-top: 1px dotted #999999;
	text-align: left;
	line-height: normal;
	}

.content span.posted {
	color: #999999;
	font-family:  Verdana, 'Trebuchet MS', sans-serif;
	font-size: x-small;
	border-top: 1px dotted #999999;
	text-align: left;
	margin-bottom: 25px;
	line-height: normal;
	padding: 3px;
	}
	
	
.content p.posted  a:link,
.content p.posted  a:active,
.content p.posted  a:visited {
  color : #666666;
  text-decoration: none
}
.content p.posted  a:hover {
  color : #376088;
  text-decoration: underline;
   
}



.cat{
	background-color: #ffffff;
	}
	
.box-commenti{
	background-color: #F7FAFB;
		padding: 4px;
	border: 1px dotted #CCCCCC;
	}
	
#contenitore-commenti{
	padding:1px;

	}


	/* Il contenuto a destra */
#right {
		float: left;
	width: 200px;
	background-color: #DBE7F2;
	overflow: hidden;
	padding: 0px;
	border-left: 0px solid #999999;
	border-bottom: 0px solid #999999;
                     	}

#right_shareaction {
                     float: left;
	width: 150px;
	background-color: #DBE7F2;
	overflow: hidden;
	padding: 0px;
	border-left: 1px solid #999999;
	height: 100%;
	border-bottom: 1px solid #999999;
	}

.sidebar {
	padding-top:5px;
	padding-left:10px;
	padding-right:10px;
	border-top: 0px;
	line-height: 100%;
	font-family: Verdana, Tahoma, serif;
	font-size: small;
	}
	




/* Lo stile dei titoletti nella barra a sinistra" */
.sidebar h2 {
	color: #666666;
	font-family: Verdana, Tahoma, serif;
	font-size: small;
	text-align: center;
	width:100%;
	font-weight: bold;
	background-color: #C4D6E6;
	padding-top:3px;
		padding-bottom:3px;
		padding-right:2px;
		padding-left:2px;
		  border-top : .09em solid #e8e8e8;
  border-bottom : .09em solid #bbb;
  		margin-top: 10px;
	margin-bottom: 15px;
	float:left;
  		}

.sidebar p {
clear:left;

}

.sidebar ul {
  float: left;
  clear: right;
  margin: 0px;
  padding: 0px;
  list-style: none;
 
}
#  list-style: none;
 
.sidebar li  {
  margin: 4px;
  padding: 4px;
} 
	

	
.sidebar li a:active,
.sidebar li a:link,
.sidebar li a:visited
	{
		text-decoration: none;
		}
.li a:hover {
		text-decoration: underline;
		}
		

.sidebar img {
	font-family: Verdana, Arial, sans-serif;
	font-size: x-small;
	}


#barra-lato {
	font-family: Verdana, Arial, sans-serif;
	font-size: x-small;
	}

#categories {
	font-family: Verdana, Arial, sans-serif;
	font-size: x-small;
	}


#categories2 {
	font-family: Verdana, Arial, sans-serif;
	font-size: x-small;
	}
.categories2 ul {
   margin: 0;
  padding: 0;
  list-style: none;
}
 
.categories2 li  {
   margin: 4;
  padding: 4;
} 
	



.form {
	background: #FFFFFF;
    padding: 10px;
    width: 500px;
    border: 1px solid #000000;
    font: 12px Verdana, Arial, Helvetica, sans-serif;
    color: #000000;
		}
		
	.search{
    font: 9px verdana, Arial, Helvetica, sans-serif;
    color: #666666;
    background: #ffffff;
     border: 1px solid #666666;
  padding: 2px;
    padding-right: 5px;
    padding-left: 5px;
    width: 90px;
	
    } 
	.search:focus {
    background: #CCCCFF;
    }
		.submit {
    font: bold 9px verdana, Arial, Helvetica, sans-serif;
    color: #666666;
    background: #E2E2E2;
    text-align: center;
    padding: 2px;
    width: 40px;
    border: 1px solid #666666;

   
    }
	.submit:hover {
    background: #666666;
    }
    .submit:active {
    background: #00CCFF;
    }
	
.photo {
	text-align: left;
	margin-bottom: 20px;
	}

.link-note {
	font-family: Verdana, Arial, sans-serif;
	font-size: x-small;
	line-height: 150%;
	text-align: left;
	padding: 2px;
	margin-bottom: 15px;
	}

#powered {
	font-family: Verdana, Arial, sans-serif;
	font-size: x-small;
	line-height: 150%;
	text-align: left;
	color: #666666;
	margin-top: 50px;
	}

#comment-data {
	float: left;
	width: 180px;
	padding-right: 15px;
	margin-right: 15px;
	text-align: left;
	border-right: 1px dotted #BBB;
	}


#footer {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: x-small;
	padding:4px;
	margin:0px;
	background-color:#DBE7F2;
	color:#666666;
	border-top: 1px solid #666666;
	text-align:center;
	width: 692px;
	float: none;
clear: both;
}

#footer a { 
color:#666666;
text-decoration: none;
}

#footer a:hover {
color:#999999;
text-decoration: underline;
}


.comments h2 {
	color: #666666;
	font-family:  Verdana, 'Trebuchet MS', sans-serif;
	font-size: small;
	text-align: left;
	margin-bottom: 10px;
	
	}
	

.btn2 {
    PADDING-RIGHT: 10px; 
    PADDING-LEFT: 10px; 
    FONT-WEIGHT: bold; 
    FONT-SIZE: 10pt; 
    PADDING-BOTTOM: 0px; 
    COLOR: #000000; 
    PADDING-TOP: 0px; 
    FONT-FAMILY: 'trebuchet ms',helvetica,sans-serif; 
    BACKGROUND-COLOR: #F8EDD3;
}
.form1_tab{
/*		background-color:#D7E3EE;*/
		background-color:#7396D7;
	                     background-image: url();
		padding-right:7px;
		padding-left:7px;
/*		border:1px #999999 solid;*/
		
		font-family: Verdana, Arial, Helvetica, sans-serif;
		font-size:10px;

		color: #967474;
		padding-top:5px;
		padding-bottom:5px;
		
		}
.form2_tab{
/*		background-color:#FFCC66;*/
		background-color:#DB952D;
	                     background-image: url();
		padding-right:7px;
		padding-left:7px;
/*		border:1px #999999 solid;*/
		
		font-family: Verdana, Arial, Helvetica, sans-serif;
		font-size:10px;

		color: #967474;
		padding-top:5px;
		padding-bottom:5px;
		
		}
 .span1  {
	color: #ffffff;
	text-align: center;
	font-family:  Arial, Verdana,  Helvetica, sans-serif;
	font-size: 12pt;
	line-height: 1.5em;
	font-weight: normal;
	font-variant: normal;
	position:relative;
	width: 350px;
	height:234px;
	background: url();

}
.welcome{
                                          position:absolute;
                                          display: none;
	                     background-image: url();
                                          background-repeat: no-repeat;
		font-family: Verdana, Arial, Helvetica, sans-serif;
		font-size:10px;
		color: #ffffff;
                                           width : 100%;
                                           top : 120px;
                                           height : 17px;
margin : 0;
padding-left : 30px;
vertical-align: inherit;
		}


	
	/* form dei commenti nelle pagine*/
#form1{
		background-color:#D7E3EE;
		padding-right:7px;
		padding-left:7px;
		border:1px #999999 solid;
		
		font-family: Verdana, Arial, Helvetica, sans-serif;
		font-size:10px;

		color: #967474;
		padding-top:5px;
		padding-bottom:5px;
		
		}

#form2{
		background-color:#ECEED7;
		padding-right:7px;
		padding-left:7px;
		border:1px #999999 solid;
		
		font-family: Verdana, Arial, Helvetica, sans-serif;
		font-size:10px;

		color: #967474;
		padding-top:5px;
		padding-bottom:5px;
		
		}

#form3{ 
		background-color:#F5F9FA;
		padding-right:7px;
		padding-left:7px;
		border:1px #999999 solid;
		
		font-family: Verdana, Arial, Helvetica, sans-serif;
		font-size:10px;

		color: #967474;
		padding-top:5px;
		padding-bottom:5px;
		
		}


		
.form1 textarea {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 9px;
	background-color: #F5F5F5;
}
		









#calendar {
  	line-height: 140%;
	color: #666666;
	font-family: Verdana, Arial, sans-serif;
	font-size: x-small;
	padding: 2px;
	text-align: center;
	margin-bottom: 30px;
	}

#calendar table {
	padding: 2px;
	border-collapse: collapse;
	border: 0px;
	width: 100%;
	}

#calendar caption {
	color: #666666;
	font-family: Verdana, Arial, sans-serif;
	font-size: x-small;
	text-align: center;
	font-weight: bold;
	text-transform: uppercase;
	letter-spacing: .3em;
	}

#calendar th {
	text-align: center;
	font-weight: normal;
	}

#calendar td {
	text-align: center;
	}


#internews{
line-height: -450%;
}

.img-promo
{
  margin: 0px;
   padding: 0px;
  margin-bottom: -3px;
}
	
.contatore_home
{
	margin: 0px;
	padding: 0px;
	color: #ffffff;
	font-family: Arial, sans-serif;
	font-size: 16px;
	position: absolute;
	top: 87px;
	font-weight: bold;
	text-align: right;
z-index:+2;
                     
}

.contatore_home_secondario
{
	margin: 0px;
	padding: 0px;
	color: #999999;
	font-family: Arial, sans-serif;
	font-size: 16px;
	position: absolute;
	top: 103px;
	font-weight: bold;
	text-align: right;
	z-index:+2;
	text-indent: 8px;                     
}


.testo_home
{
	margin: 0px;
	color: #ffffff;
	font-family: Arial, sans-serif;
	font-size: 14px;
	position: absolute;
	top: 87px;
	font-weight: bold;
	padding-left: 60px;
	text-align: left;
z-index:+2;
}

.testo_home_secondario
{
	margin: 0px;
	color: #999999;
	font-family: Arial, sans-serif;
	font-size: 14px;
	position: absolute;
	top: 103px;
	font-weight: bold;
	padding-left: 60px;
	text-align: left;
z-index:+2;
}


.contatore_home
{
	margin: 0px;
	padding: 0px;
	color: #ffffff;
	font-family: Arial, sans-serif;
	font-size: 14px;
	position: absolute;
	top: 77px;
	font-weight: bold;
	text-align: right;
z-index:+2;
                     
}

.contatore_home_secondario
{
	margin: 0px;
	padding: 0px;
	color: #999999;
	font-family: Arial, sans-serif;
	font-size: 14px;
	position: absolute;
	top: 90px;
	font-weight: bold;
	text-align: right;
	z-index:+2;
	text-indent: 8px;                     
}

.titolone
{
	margin: 0px;
	padding: 0px;
	color: #e6e6e6;
	font-family: Arial, sans-serif;
	font-size: 16px;
	position: absolute;
	top: 104px;
	font-weight: bold;
	text-align: right;
	z-index:+2;
	text-indent: 8px;                     
}

.testo_home
{
	margin: 0px;
	color: #ffffff;
	font-family: Arial, sans-serif;
	font-size: 12px;
	position: absolute;
	top: 78px;
	font-weight: normal;
	padding-left: 60px;
	text-align: left;
z-index:+2;
}

.testo_home_secondario
{
	margin: 0px;
	color: #999999;
	font-family: Arial, sans-serif;
	font-size: 12px;
	position: absolute;
	top: 91px;
	font-weight: normal;
	padding-left: 60px;
	text-align: left;
z-index:+2;
}

.testo_home_terziario
{
	margin: 0px;
	color: #e6e6e6;
	font-family: Arial, sans-serif;
	font-size: 14px;
	position: absolute;
	top: 104px;
	font-weight: normal;
	padding-left: 70px;
	text-align: left;
z-index:+2;
}
.testo_home	a
{
		color: #ffffff;
	}

.testo_home_secondario	a,
.testo_home_terziario	a
{
		color: #e6e6e6;
	}

.contatore_home a
{
		color: #ffffff;
	}
	
	
.contatore_home_secondario a,
.titolone a
{
		color: #e6e6e6;
	}

.testo_home	a:hover,
.testo_home_secondario	a:hover,
.testo_home_terziario	a:hover,
.contatore_home a:hover,
.contatore_home_secondario a:hover,
.titolone a:hover
{
		color: #ff0000;
	}

.messaggio  {color: #666666;           
background-color: #FFFFCC;     
font-family:  arial, Verdana,  Helvetica, sans-serif;
	font-size: 9pt;
padding-top: 3px;
          

	}


#capages
{
	padding: 5px;
	background-color: #FBFBFB;
	border: 1px solid #F4F4F4;
	font-size: 11px;
	line-height: 25px;
	}
	
#capages a
{
	text-decoration: none;
	background-color: #FFFFFF;
	border: 1px solid #E2E2E2;
	padding-top: 2px;
	padding-right: 6px;
	padding-bottom: 2px;
	padding-left: 6px;
	}
#capages a:hover
{
	background-color: #E0EFFC;

	}
	

#capages .selectedPage, #capages .selectedPage a
{
	font-weight: bold;
	text-decoration: none;
	background-color: #FFFFFF;
	border: 0px solid #FFFFFF;
	color: #FF0000;
	}
	
.capagesdicitura
{

	font-size: 90%;
	font-style: italic;
}





.menuitem {
	list-style : none;
	font-family: Verdana, 'Trebuchet MS',  sans-serif;
	font-size : 10px;
	font-weight : bold;
	/* height : 30px; */
	
	background-repeat: repeat-x;
	color: #000000;  /* crea il distacco bianco  height : 2.18em; */
	text-align: center;
	vertical-align: middle;
	border-top-width: 0.09em;
	border-bottom-width: 0.09em;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #e8e8e8;
	border-right-color: #bbbbbb;
	border-bottom-color: #bbbbbb;
	border-left-color: #e8e8e8;
	border-right-width: 0.09em;
	border-left-width: 0.09em;
}

.menuitem_form {
	list-style : none;
	font-family: Verdana, 'Trebuchet MS',  sans-serif;
	font-size : 10px;
	font-weight : bold;
	border-top : .09em solid #e8e8e8;
	border-bottom : .09em solid #bbbbbb;
	border-left: .09em solid #e8e8e8;
	padding : 0px;
	margin : 0;
	position: relative;
	float:none;
	height : 30px;
	background-image: url();
	background-repeat: no-repeat;
	color: #000000;  /* crea il distacco bianco  height : 2.18em; */
	text-align: center;
	vertical-align: middle;
	width: 100px;
}

.form_sfondo {
	background-image: url();
	width:100px;
	height:30px;
	background-repeat: no-repeat;	
}



.form_interno {
	width:75px;
	height:12px;
	margin-top: 4px;
	margin-right: 10px;
	margin-bottom: 14px;
	margin-left: 18px;	
}

.barra_nav {
	display : none;
	border-top-width: 0.09px;
	border-right-width: 0.09px;
	border-bottom-width: 0.09px;
	border-left-width: 0.09px;
	border-top-style: none;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: none;
	border-right-color: #CCCCCC;
	border-left-color: #FFFFFF;
}

.menuitem .stream { display : none; }

.menuitem li {
  display : inline;
}
.menuitem a {
	position : relative;
	margin-top : -0.09em;
	
	background-repeat: repeat-x;
	text-decoration : none;
	padding: 0em;
}
* html .menuitem a { margin-bottom : -.09em; }

.menuitem .active a {
	background-position : 50%;
	border-left : none;
	border-right : none;
	border-bottom : none;
	padding-bottom : .54em;
	color: #000000;
}

.menu-ie5mac a { padding-bottom : .27em; }
.menu-ie5mac .active a { padding-bottom : .36em; }

.menuitem a:link,
.menuitem a:visited {
  color : #000000;
}
.menuitem a:hover,
.menuitem a:active {
  color : #999999;
  background-position : -200px 50%;
   
}

.form_search_input {
	width: 50px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
	font-style: normal;
	margin-left: 12px;
	
}



.form_search_go {
	margin-left: -2px;
	margin-top: -1px;
	vertical-align: middle;
}

.form_archivio{
	width: 120px;
}

#box_i_video {
	width=181px;
	
}
#box_i_video .tag_nuovo {
		
	left: 0px;
	top: 0px;
	z-index: 2;
}

.img2_barra {
	padding:0px;
	display:block;
	margin-top: -10px;
	margin-bottom: 5px;
	text-align: center;
}

.img_barra {
	padding:0px;
	display:block;
	margin-bottom: 5px;
	text-align: center;
}

#img_post {
	position: relative;
	width: 400px;
	height: 330px;

}
#img_post .guarda_video {
	position: absolute;
	left: 0px;
	z-index: 2;
	top: 0px;
	width: 400px;
	height: 330px;
	cursor:hand;
	}

#guarda_video {
	position: absolute;
	left: 0px;
	z-index: 2;
	top: 0px;
	width: 400px;
	height: 330px;
	cursor:hand;
	}

.immagine_video {
	position: relative;
	width: 400px;
	height: 330px;
	background-repeat:no-repeat;
	}



.link {
	text-decoration: underline;

}

a.header
{
	margin-left : 1px;
clear:left;

}


li { list-style-type: none; }
.basic, #list2, #list3, #navigation { width:20em; }

#log { position:fixed; bottom: 0; right:1em; text-align:right; }
#switch { position: fixed; bottom: 0; right: 15em; }

.basic  {
	width: 100%;
	font-family: verdana;
	border: 0px solid gray;
}
.basic div {
	background-color: white;
}

.basic p {
	margin-bottom : 10px;
	margin-left : 10px;
	border: none;
	text-decoration: none;
	font-size: 10px;
	margin: 0px;

}
.basic a {
	margin-left : 10px;
	cursor:pointer;
	display:block;
	text-decoration: none;
	font-size: 11px;
	color: black;
	
	background-image: url("AccordionTab0.gif");
}
.basic a:hover {
	background-color: white;
	background-image: url("AccordionTab2.gif");
}
.basic a.selected {
	color: black;
	background-color: white;
	background-image: url("AccordionTab2.gif");
}

#list2 {
	height: 178px;
	border: 1px solid #eee;
	overflow: hidden;
}
#list2 .red {
	color: red;
	background-color: red;
}
#list2 .green {
	color: green;
	background-color: green;
}
#list2 .blue {
	color: blue;
	background-color: blue;
}
#list2 dd { height: 130px; overflow: hidden; }

#list3 { border: 1px solid #111; }
#list3 div.selected .title { font-weight: bold; }
#list3 div div {
	border-left:8px solid #6699CC;
	padding: 5px;
}
#list3 div.title {
	border: 1px solid #3366AA;
	background-color: #6699CC;
	padding: 10px;
	cursor: pointer;
}
#list3 div.selected {
	border-bottom: none;
}

#navigation {
	border:1px solid #5263AB;
	margin:0px;
	padding:0px;
	text-indent:0px;
	background-color:#E2E2E2;
	width:200px;
}
#navigation a.head {
	cursor:pointer;
	border:1px solid #CCCCCC;
	background:#5263AB url(collapsed.gif) no-repeat scroll 3px 4px;
	color:#FFFFFF;
	display:block;
	font-weight:bold;
	margin:0px;
	padding:0px;
	text-indent:14px;
	text-decoration: none;
}
#navigation a.head:hover {
	color:#FFFF99;
}
#navigation a.selected {
	background-image: url(expanded.gif);
}
#navigation a.current {
	background-color:#FFFF99;
}
#navigation ul {
	border-width:0px;
	margin:0px;
	padding:0px;
	text-indent:0px;
}
#navigation li {
	list-style:none outside none; display:inline;
}
#navigation li li a {
	color:#000000;
	display:block;
	text-indent:10px;
	text-decoration: none;
}
#navigation li li a:hover {
	background-color:#FFFF99;
	color:#FF0000;
}

#wizard {
	width: 200px;
	border: 1px solid black;
}
#wizard .title {
	background-color:#DDDDDD;
}

@media print {
	.basic div, #navigation ul, #list2 dd, #list3 div{
		display: block!important;
		height: auto!important
	}
}
	-->


.linkRistoranti
{
font-weight: normal;
}

.links
{
text-align:center;
}



#user-register
{
  margin:30px;
  padding:30px;
  border: 1px Solid orange;
}
.profile
{
  margin:30px;
  padding:30px;
  border: 1px Solid green;
}
#user-login
{
  margin:30px;
  padding:30px;
  border: 1px Solid orange;

}
.error
{
  border: 2px Solid red;
}

#content {
padding:30px;
background-color:white;
}


.messages
{
  border: 2px Solid orange;
  margin:15px;
}
.ciao
{
font-size: 16px;
font-weight: bold;
}
#user-pass
{
  margin:30px;
  padding:30px;
  border: 1px Solid orange;

}

.pager li
{
float:left;
font-size:15px;

}

.img_assist-button
{
display:none;

}

.wysiwyg-editor-jwysiwyg
{
display:none;

}

ul.links {
margin:0px;
padding:0;
float:right;
}

.contenuto-commento
{
float:left;width:90%;
}
.immagine-commento
{
width:40px;margin-right:5px;margin-bottom:3px;margin-top:3px;
}


.form-item
{
  margin-bottom: 3px;
}

.tabs li
{
  background-image:url(/img/sfondoarancio.jpg);
  float:left;
  padding:4px;
  border:1px solid gray;
  margin:5px;
}


#content-area {
clear:left;
}

legend
{
color:orange;
font-size:12px;
}

#edit-name
{
font-size:12px;
}


#edit-pass
{
font-size:12px;
}

.weather p
{
font-size:10px;

}

.foto_profilo
{
margin-top:3px;
  text-align:center;
  border:2px Solid gray;
}

#node-form
{
margin-top:30px;
}

.teaser-checkbox
{
  display:none;
}

.proverbi
{
  padding:10px;
  border: 1px solid orange;
  width:80%;
  text-align:left;
}
.localesettimana
{
  padding:2px 10px 10px;
  border: 1px solid yellow;
  width:88%;
  margin-top:10px;
  text-align:left;
}


.proverbipag
{
border:1px solid orange;
margin-top:10px;
padding:0 10px 10px;
text-align:left;
width:80%;
}

.testatadino
{
background-image:url(/img/menu_sfondo.gif);height:30px;width:960px;
}

.venetoto {
left:485px;
position:relative;
top:-82px;
}
.dinodasandra
{
left:20px;
position:relative;
top:10px;
font-size:30px;
color: #660000;
}

.bordoaranciofilmato
{
border:1px solid orange;padding:10px;
}

.fotogalerifoto
{
  padding:5px;
}
.sfondobianco
{
width:100%;background-color:white
}
.collapsed
{
  display:none;
}
