﻿.foo {} /* W3C CSS validator likes CSS files to start with a class rather than a comment. Soooooo.... */

/* This style sheet is intended to contain OFTEN CHANGED rules used when the Menu control adapter is enabled. */

/* When the Menu control's Orientation property is Vertical the adapter wraps the menu with DIV */
/* whose class is AspNet-Menu-Vertical. */
/* Note that the example menu in this web site uses relative positioning to force the menu to occupy */
/* a specific place in the web page.  Your web site will likely use a different technique to position your */
/* menu.  So feel free to change all the propeconfrties found in this CSS rule if you clone this style sheet. */
/* There is nothing, per se, that is magical about these particular property value choices.  They happen to */
/* work well for the sample page used to demonstrate an adapted menu. */
.PrettyMenu .AspNet-Menu-Verticalc
{
    position:relative;
    top: 3em;
    left: 0;
    z-index: 300;
}

/* The menu adapter renders an unordered list (ul) in HTML for each tier in the menu. */
/* So, effectively says: style all tiers in the menu this way... */
.PrettyMenu ul
{
    background:#7795BD;
}

/* Top tier */
.PrettyMenu .AspNet-Menu-Vertical ul.AspNet-Menu
{
    width: 9em;
}

/* This rule effectively says: style all tiers EXCEPT THE TOP TIER in the menu this way... */
/* In other words, this rule can be used to style the second and third tiers of the menu without impacting */
/* the topmost tier's appearance. */
.PrettyMenu ul.AspNet-Menu ul
{
    width: 10.5em;
    left: 8.9em;
    top: -1em;
    z-index: 400;
}

.divGrid{
	overflow-y:auto;
	height:550px;
}

.PrettyMenu ul.AspNet-Menu ul ul
{
    width: 11.5em;
    left: 10.4em;
}

/* The menu adapter generates a list item (li) in HTML for each menu item. */
/* Use this rule create the common appearance of each menu item. */
.PrettyMenu ul.AspNet-Menu li
{
    background:#7795BD url(images/bg_nav.gif) repeat-x;
}

/* Within each menu item is a link or a span, depending on whether or not the MenuItem has defined it's */
/* NavigateUrl property. By setting a transparent background image here you can effectively layer two images */
/* in each menu item.  One comes from the CSS rule (above) governing the li tag that each menu item has. */
/* The second image comes from this rule (below). */
.PrettyMenu ul.AspNet-Menu li a,
.PrettyMenu ul.AspNet-Menu li span
{
    color: black;
    /*padding: 4px 2px 4px 8px;*/
    padding: 4px 2px 4px 1px;
    border:1px solid #648ABD;
    border-bottom: 0;
    background: transparent url(images/arrowRight.gif) right center no-repeat;
}

/* When a menu item contains no submenu items it is marked as a "leaf" and can be styled specially by this rule. */
.PrettyMenu ul.AspNet-Menu li.AspNet-Menu-Leaf a,
.PrettyMenu ul.AspNet-Menu li.AspNet-Menu-Leaf span
{
    background-image: none;
}

/* Not used presently.  This is here if you modify the menu adapter so it renders img tags, too. */
.PrettyMenu ul.AspNet-Menu li a img
{
    border-style: none;
    vertical-align: middle;
}

/* When you hover over a menu item, this rule comes into play. */
/* Browsers that do not support the CSS hover pseudo-class, use JavaScript to dynamically change the */
/* menu item's li tag so it has the AspNet-Menu-Hover class when the 
 is over that li tag. */
/* See MenuAdapter.js (in the JavaScript folder). */
.PrettyMenu ul.AspNet-Menu li:hover, 
.PrettyMenu ul.AspNet-Menu li.AspNet-Menu-Hover
{
    background:#7795BD;
}

.PrettyMenu ul.AspNet-Menu li:hover a, 
.PrettyMenu ul.AspNet-Menu li:hover span, 
.PrettyMenu ul.AspNet-Menu li.AspNet-Menu-Hover a,
.PrettyMenu ul.AspNet-Menu li.AspNet-Menu-Hover span,
.PrettyMenu ul.AspNet-Menu li:hover li:hover a, 
.PrettyMenu ul.AspNet-Menu li:hover li:hover span, 
.PrettyMenu ul.AspNet-Menu li.AspNet-Menu-Hover li.AspNet-Menu-Hover a,
.PrettyMenu ul.AspNet-Menu li.AspNet-Menu-Hover li.AspNet-Menu-Hover span,
.PrettyMenu ul.AspNet-Menu li:hover li:hover ul a:hover, 
.PrettyMenu ul.AspNet-Menu li:hover li:hover ul span.Asp-Menu-Hover, 
.PrettyMenu ul.AspNet-Menu li.AspNet-Menu-Hover li.AspNet-Menu-Hover ul a:hover,
.PrettyMenu ul.AspNet-Menu li.AspNet-Menu-Hover li.AspNet-Menu-Hover ul span.Asp-Menu-Hover
{
    color: White;
}

.PrettyMenu ul.AspNet-Menu li:hover ul a, 
.PrettyMenu ul.AspNet-Menu li:hover ul span, 
.PrettyMenu ul.AspNet-Menu li.AspNet-Menu-Hover ul a,
.PrettyMenu ul.AspNet-Menu li.AspNet-Menu-Hover ul span,
.PrettyMenu ul.AspNet-Menu li:hover li:hover ul a, 
.PrettyMenu ul.AspNet-Menu li:hover li:hover ul span, 
.PrettyMenu ul.AspNet-Menu li.AspNet-Menu-Hover li.AspNet-Menu-Hover ul a,
.PrettyMenu ul.AspNet-Menu li.AspNet-Menu-Hover li.AspNet-Menu-Hover ul span
{
    color: Black;
}

/* While you hover over a list item (li) you are also hovering over a link or span because */
/* the link or span covers the interior of the li.  So you can set some hover-related styles */
/* in the rule (above) for the li but set other hover-related styles in this (below) rule. */
.PrettyMenu ul.AspNet-Menu li a:hover,
.PrettyMenu ul.AspNet-Menu li span.Asp-Menu-Hover
{
    color: White;
    background: transparent url(images/activeArrowRight.gif) right center no-repeat;
}

.PrettyMenu ul.AspNet-Menu li.AspNet-Menu-Leaf a:hover
{
    background-image: none;
}


/* -------------------------------------------------------------------------- */
/* When the Menu control's Orientation property is Horizontal the adapter wraps the menu with DIV */
/* whose class is AspNet-Menu-Horizontal. */
/* Note that the example menu in this web site uses absolute positioning to force the menu to occupy */
/* a specific place in the web page.  Your web site will likely use a different technique to position your */
/* menu.  So feel free to change all the properties found in this CSS rule if you clone this style sheet. */
/* There is nothing, per se, that is magical about these particular property value choices.  They happen to */
/* work well for the sample page used to demonstrate an adapted menu. */

.PrettyMenu .AspNet-Menu-Horizontal
{
    position:relative;
    /*left: 9.5em;*/
    top: 0;
    z-index: 300;
}

/* This rule controls the width of the top tier of the horizontal menu. */
/* BE SURE TO MAKE THIS WIDE ENOUGH to accommodate all of the top tier menu items that are lined */
/* up from left to right. In other words, this width needs to be the width of the individual */
/* top tier menu items multiplied by the number of items. */
.PrettyMenu .AspNet-Menu-Horizontal ul.AspNet-Menu
{
    width: 45em;
}

/* This rule effectively says: style all tiers EXCEPT THE TOP TIER in the menu this way... */
/* In other words, this rule can be used to style the second and third tiers of the menu without impacting */
/* the topmost tier's appearance. */
/* Remember that only the topmost tier of the menu is horizontal.  The second and third tiers are vertical. */
/* So, they need a much smaller width than the top tier.  Effectively, the width specified here is simply */
/* the width of a single menu item in the second and their tiers. */
.PrettyMenu .AspNet-Menu-Horizontal ul.AspNet-Menu ul
{
    width: 10.5em;
    left: 0;
    top: 100%;
}

.PrettyMenu .AspNet-Menu-Horizontal ul.AspNet-Menu ul ul
{
    top: -0.3em;
}

.PrettyMenu .AspNet-Menu-Horizontal ul.AspNet-Menu ul ul
{
    width: 11.5em;
}

/* Generally, you use this rule to set style properties that pertain to all menu items. */
/* One exception is the width set here.  We will override this width with a more specific rule (below) */
/* That sets the width for all menu items from the second tier downward in the menu. */
.PrettyMenu .AspNet-Menu-Horizontal ul.AspNet-Menu li
{
    width: 7.5em;
    text-align:center;
}

/* This rule establishes the width of menu items below the top tier.  This allows the top tier menu items */
/* to be narrower, for example, than the sub-menu items. */
/* This value you set here should be slightly larger than the left margin value in the next rule. See */
/* its comment for more details. */
.PrettyMenu .AspNet-Menu-Horizontal ul.AspNet-Menu ul li
{
    text-align:left;
    width: 10.5em;
}

.PrettyMenu .AspNet-Menu-Horizontal ul.AspNet-Menu ul ul li
{
    width: 11.5em;
}

/* Third tier menus have to be positioned differently than second (or top) tier menu items because */
/* they drop to the side, not below, their parent menu item. This is done by setting the last margin */
/* value (which is equal to margin-left) to a value that is slightly smaller than the WIDTH of the */
/* menu item. So, if you modify the rule above, then you should modify this (below) rule, too. */
.PrettyMenu .AspNet-Menu-Horizontal ul.AspNet-Menu li ul li ul
{
    margin: -1.4em 0 0 10.35em;
}
/* Sets element margins, padding, and border to 0 to even out browser differences when adding desired values later. */
html, body, div, p, h1, h2, h3, h4, h5, h6, blockquote, ol, ul, li, dl, dt, dd, td, form, fieldset, a, img, button {
	margin: 0;
	padding: 0;
	border: 0;
}
body{
	text-align:center;
	background-color:#848484;
	background-image:url(Images/bg_tile.gif);
	background-repeat:repeat;
	font-family:Verdana, Geneva, Arial, Helvetica, sans-serif;
	font-size:0.78em;
}

h1, h2, h3, h4, h5, h6 {color:#444444;}

/*Typographics styles adapted from http://www.thenoodleincident.com/tutorials/typography/ */
h1 {
	margin-top:1em;
	font-size: 1.4em;
	font-weight: bold;
}
h2 {
	margin-top:1em;
	font-size: 1.3em;
	font-weight: bold;
}
h3 {
	margin: 1.7em 0 1em 0;
	font-size: 1.2em;
	font-weight: bold;
	color:Navy;
	background-color:#AABBCC;
	text-align:center;
	width: 750px;
}
Allh4 {
	margin: -1em 0 0.5em -20px;
	font-size: 1.1em;
	font-weight: bold;
	background-color:#FFFFCC;
}
h5 {
	margin: 0.5em 0;
	font-size: 1.0em;
	font-weight: bold;
}
h6 {
	margin: 0.5em 0;
	font-size: 0.8em;
	font-weight: bold;
}

p  {margin: 1em 0;}

a {text-decoration:underline;}

a:hover {text-decoration:none;}

#wrapper{
	width:770px;
	margin:0 auto;
	padding-bottom:3px;
	border:1px solid #FFFFFF;	
	text-align:left;
	background-color:#E4E4E4;
	/*background-image:url(Images/main_bg.png);*/
	background-repeat:repeat-y;
	background-position:top center;
}
* html .wrapper {   /*** IE5.x/win box model fix ***/
	width: 772px;
	wid\th: 770px;
}
#header{
	position:relative;
	background-image:url(Images/header_bg.png);
	background-repeat:repeat-x;
	background-color:#F2F2F2;
}
#logo{
float:left;
}
#banner{
	text-align:center;
}
#search{
    margin-left:300px;
}

/*IE6 interpreta solo questo*/
#logout {float:right;} 

/*IE7 e FF ANCHE questo*/
html>body #logout {position:absolute; top:5px; right:5px;}

#mainnav {
    margin-left:10px;
    margin-top:1px;
    display:inline;
    float:left;
    width:540px;
	border-bottom:1px solid #FFFFFF;
	border-top:1px solid #FC506F;	
	background-color:#F2F2F2;
}


#helpdesk
{
    padding-right:2px;
    margin-left:5px;
    margin-top:1px;
    display:inline;
    float:left;
    font-family:Tahoma;
    font-weight:bold;
}


* html #mainnav tr {height:1.4em;}

#mainnav .item {
	padding:2px 7px;
	border-width:1px 0 0 1px; 
	border-style:solid; 
	border-color:#FFFFFF;
	background-color:#DADADA; 
	color:#333333; 
}

* html #mainnav .item {padding:0 20px;}

#mainnav .selected {
	background-color:#FF9900; 
	color:#FFFFFF;
}
#mainnav .hover {
	color:#FF284E; 
	background-color:#DADADA;
}

#mainnav table {border-right:1px solid #FFFFFF;}

#mainnav table table {border-right:none;}

#contentwrapper{
	position: relative; /*** IE needs this or the contents won't show outside the parent container. ***/
	margin-left: 10px;    /*** Critical left col dimension value ***/
	width: 750px; /*468px;*/   /*** Critical left and right col/divider dimension value (moves inversly) ***/
	border-left: 1px solid #FFFFFF;  /*** Critical left divider dimension value ***/
	border-right: 1px solid #FFFFFF; /*** Critical right divider dimension value ***/
    	background-color:#F2F2F2;
	clear:left;
}

* html #contentwrapper {  /*** IE5.x/win box model fix ***/
	width: 698px;   /*** Critical left and right col/divider dimension value (moves inversly) ***/
}
#floatwrapper {
	float: left;
	width: 750px;   /*** Critical left and right col/divider dimension value (moves inversly) ***/
	margin-right: -1px;   /*** Static fix ***/
}
#centercolumn{
	float: right;
	width: 750px;   /*** Critical left and right col/divider dimension value (moves inversly) ***/
	
	/* \*/
	margin-left: -1px; 
	/* Hidden from IE-mac */

	padding-top:2px;
}
#breadcrumbs{
	position:absolute;
	top:5px;
	left:25px;
	font-size:0.9em;
}
#breadcrumbs a {
	color:#000000;
	text-decoration:underline;
}

#breadcrumbs a:hover {text-decoration:none;}

#copy a {color:#FF284E;}

#copy .container {
	margin: 5px;
	padding: 0 20px 15px 20px;
	border: 1px solid #999999;
	background-color: #FFFFFF;
}

/* \*/
* html #copy .container {height:1%;}
/* */

/*
#copy img, #rightcolumn img {border:1px solid #FF284E !important;}
*/

/* gestisce e combo e textbox*/
#copy select, input
{
    font-size:8pt;
    color:#000000;
    font-family:Tahoma;
}

#copy .teaser{
	margin-top:0;
	color:#777777; 
	font-size:0.9em; 
	font-weight:normal;
}

/*Mario per problema con calendario*/
/*#copy td, #copy th {padding: 0.2em 0.5em;}*/

#copy .container table tr {font-size:0.9em;}

.txtBox {border:1px solid #666666;}

#copy fieldset {	
	margin:1em 0;
	padding:1em;
	border:1px solid #CCCCCC;
}

#copy legend {
	color:#666666;
	background-color:#FFFFFF;
}

* html #copy legend {padding:0.5em;}

.button {
    border:1px solid #FFFFFF;
    color:#FFFFFF;
    background-color:#FF9900;
    font-size:1em;
}

#copy .container .button {border-color:#CCCCCC;}

div.readmore {
	text-align:right;
	font-size:0.9em;
}

#leftcolumn {
	position: relative; /*** IE needs this or the contents won't show outside the parent container. ***/
	width: 152px;    /*** Critical left col/divider dimension value ***/
	margin-left: -151px;    /*** Critical left col/divider dimension value ***/
	padding-top:30px;
}
* html #leftcolumn {
	float:left;	
	padding-top:25px;
}

*>html #leftcolumn {width:151px;}   /*** Fix only for IE/Mac ***/

/*** This is a fix for IE5/Win at the largest text size setting. ***/
/* \*/
* html #leftcolumn {margin-right: -3px;}
/* */

#leftcolcontainer{
	width: 150px;    /*** Critical left col dimension value ***/
}

#subnav {
	overflow:hidden;
	margin-bottom:40px;
}

* html #subnav tr {height:1.4em;}

#subnav .item {
	padding:2px 7px;
	border-top:1px solid #FFFFFF;
	background-color:#E4E4E4; 
	color:#333333; 
}

* html #subnav .item {padding:0 20px;}

#subnav .selected {
	background-color:#FF9900; 
	color:#FFFFFF;
}
#subnav .hover {
	color:#FF284E; 
	background-color:#E4E4E4;
}

#subnav table {border-bottom:1px solid #FFFFFF;}

#subnav table table {border-bottom:none;}

h4 img {margin-bottom:-0.5em;}

#rightcolumn{
	float: left; 
	position: relative; /*** IE needs this or the contents won't show outside the parent container. ***/
	width: 152px;    /*** Critical right col/divider dimension value ***/
	margin-right: -150px;    /*** Critical right col/divider dimension value ***/
	margin-left: -1px;   /*** Static fix ***/
	padding-top:30px;
}

/* \*/
* html #rightcolumn {
	margin-left: 0px; 
	margin-right: -500px; 
	mar\gin-right: -152px;
	padding-top:25px;
}
/* */

/*** These commented-out rules below are there to explain the "Critical" info 
	for the rules above, because comments must not appear within the Mac-hack.
	The "rules" below are not active, they are just for teaching purposes. ***/

/*
* html .right {
margin-left: 0px;    *** Critical right divider dimension value ***
margin-right: -500px;    *** IE5.x/win fix, must be above a critical number, but very high values appear okay ***
mar\gin-right: -152px;    *** Critical right col/divider dimension value ***
}
*/

#rightcolcontainer{
	/* \*/
	width: 150px;
	/* Hidden from IE-Mac */   /*** Critical right col dimension value ***/
	margin-left: 3px;    /*** Critical right divider dimension value ***/
}

/* \*/
* html #rightcolcontainer {
	float: right;
	margin-left: 2px; 
	margin-left: 0px; 
}
/* */

.sidebarcontainer{
	margin:5px;
	padding:6px;
	border:1px solid #FFFFFF;
	background-color:#EFEFEF;
	font-size:smaller;
}
/* \*/
* html .sidebarcontainer {height:1%;}
/* */


.sidebarcontainer a {color:#FF284E;}

.sidebarcontainer li {list-style-type:none;}

#footer 
{
	clear:both;
	margin:1px 5px;
	padding:2px 20px;
	border:1px solid #999999;
	background-color:#FFFFFF;
	font-size:0.9em;
}
#footer a {
	margin:1px 5px;
	color:#FF284E;
}
.imgfloatright {
	float:right;
	display:inline;
	margin: 0.25em 0 0.25em 1em;
}
.imgfloatleft {
	float:left;
	display:inline;
	margin: 0.25em 1em 0.25em 0;
}
@media print {	
	body{
		font-size:11pt;
		line-height:13pt;
		background:#FFFFFF !important;
	}	
	#wrapper, #contentwrapper, #floatwrapper, #centercolumn, * html #wrapper, * html #contentwrapper, * html #floatwrapper, * html #centercolumn {
		width:auto !important;
		margin:auto !important;
	}

	#wrapper, #contentwrapper {border:none;}

	#mainnav{
		padding:0;
		text-align:center;
	}

	#leftcolumn, #rightcolumn, #search {display:none;}

	#wrapper, #header, #mainnav, #mainnav .item, #mainnav .selected, #copy .container, #footer {
		background:transparent;
	}
	#centercolumn {
		float:none;
		margin:0 1em 0 2.5em;
	}	

	#breadcrumbs {position:static;}

	#copy .container{
		margin:0;
		padding:0 !important;
		border-style:none !important;
		border-width:0;
	}
	
    #copy fieldset {border:none;}	
	    
	#footer{	
		position:static;
		border-style:none !important;
		border-top:1px solid #000000;
	}
}


.PrettyLogin
{
    width: 18em;
}

.PrettyLogin .AspNet-Login
{
    font-family: Verdana;
    font-size: 0.8em;
    padding: 4px;
    border: solid 1px #284775;
}

.PrettyLogin .AspNet-Login label,
.PrettyLogin .AspNet-Login input
{
    color: #5D7B9D;
}

.PrettyLogin .AspNet-Login input
{
    font-size: 1em;  /* lets the form element scale */
}

/* This rule is used when AutoAccessKey is true */
.PrettyLogin .AspNet-Login label em
{
    text-decoration: underline;
    font-style: normal;
}

.PrettyLogin .AspNet-Login .AspNet-Login-TitlePanel
{
    font-weight: bold;
    color: #F7F6F3;
    background: #5D7B9D;
    text-align: center;
    height: 1.7em;
    margin-bottom: 0.3em;
    padding-top: 0.4em;
}

.PrettyLogin .AspNet-Login .AspNet-Login-FailurePanel
{
    height: 4em;
    color: #990000;
}

.PrettyLogin .AspNet-Login .AspNet-Login-UserPanel,
.PrettyLogin .AspNet-Login .AspNet-Login-PasswordPanel,
.PrettyLogin .AspNet-Login .AspNet-Login-RememberMePanel,
.PrettyLogin .AspNet-Login .AspNet-Login-SubmitPanel
{
    padding: 0.25em 0.1em 0 0;
}

.PrettyLogin .AspNet-Login .AspNet-Login-UserPanel,
.PrettyLogin .AspNet-Login .AspNet-Login-PasswordPanel,
.PrettyLogin .AspNet-Login .AspNet-Login-SubmitPanel
{
    text-align:right;
}

.PrettyLogin .AspNet-Login .AspNet-Login-UserPanel label,
.PrettyLogin .AspNet-Login .AspNet-Login-PasswordPanel label
{
    white-space: nowrap;
}

.PrettyLogin .AspNet-Login .AspNet-Login-UserPanel input,
.PrettyLogin .AspNet-Login .AspNet-Login-PasswordPanel input
{
    width: 9em;
}

.PrettyLogin .AspNet-Login .AspNet-Login-SubmitPanel input
{
    background: #284775;
    color: #00FFFF;
    border: solid 1px #5D7B9D;
    height: 1.7em;
}

.PrettyLogin .AspNet-Login .AspNet-Login-InstructionPanel,
.PrettyLogin .AspNet-Login .AspNet-Login-HelpPanel,
.PrettyLogin .AspNet-Login .AspNet-Login-PasswordPanel,
.PrettyLogin .AspNet-Login .AspNet-Login-RememberMePanel,
.PrettyLogin .AspNet-Login .AspNet-Login-CreateUserPanel,
.PrettyLogin .AspNet-Login .AspNet-Login-PasswordRecoveryPanel
{
}



body
{
    font-family: Tahoma,Sans-Serif;
    font-size: 12px;
}

.PagerClientiInfo
{
    font-family:Tahoma;
    font-style:italic;
    font-weight:bold;
}

.LoginTitle
{
    font-size:15px;
    color:White;
    font-weight:bold;
}

.LoginLabel
{
    font-size:12px;
    color:White;
    font-weight:bold;
}

#DivRicerca
{
    clear:both;
	margin:1px 5px;
	padding:2px 20px;
	border:1px solid #FFFFCC;
	background-color:#FFFFFF;
	font-size:0.9em;

}

#DivDati
{
    clear:both;
	margin:1px 5px;
	padding:2px 20px;
	border:1px solid #FFFFCC;
	background-color:#FFFFFF;
	font-size:0.8em;

}

.divDati
{
    clear:both;
	margin:1px 5px;
	padding:2px 20px;
	border:1px solid #FFFFCC;
	background-color:#FFFFFF;
	font-size:0.8em;

}

.divDatiRCC
{
	border:1px solid #FFFFCC;
	background-color:#FFFFFF;
	font-size:0.8em;
	width:750px;
}

th.divDatiRCC
{
	text-align:left;
	background-color:Orange;
	border-style:solid;
	border-color:#FFFFFF;
}

.divDatiRCC th
{
	text-align:left;
	background-color:Orange;
	border:1px solid #FFFFFF;
}

.Nascondi
{
	display:none;
}
.divDatiErr
{
    clear:both;
	margin:1px 5px;
	padding:2px 20px;
	border:1px solid #FFFFCC;
	background-color:#FFFFFF;
	font-size:0.8em;
	width:100%;
	text-align:left;

}

.divHead
{
    font-style:italic;
    font-weight:bold;
    text-align:left;
}

.divDetails
{
    text-align:left;
    
}

.divHeadLabel
{
    color:Red;
    font-style:normal;
}

.divDati h4 {
	font-size: 1.0em;
	font-weight: bold;
}

.divDati label
{
    margin-left:3px;
    float:left;
    width:8%;
    font-style:normal;
}


#DivRicerca label
{
    margin-left:3px;
    float:left;
    width:13%;
    font-style:normal;
}

#DivRicerca h4 {
	margin: -1em 0 0.5em -20px;
	font-size: 1.1em;
	font-weight: bold;
	background-color:#FFFFCC;
}

.divRicerca
{
    clear:both;
	margin:1px 5px;
	padding:2px 20px;
	border:1px solid #FFFFCC;
	background-color:#FFFFFF;
	font-size:0.9em;

}

.divRicerca label
{
    margin-left:3px;
    float:left;
    width:13%;
    font-style:normal;
}

.divRicerca h4 {
	margin: -1em 0 0.5em -20px;
	font-size: 1.1em;
	font-weight: bold;
}


.labelLeft
{
    margin-left:3px;
    float:left;
    width:13%;
    font-style:normal;
}

.labelNew
{
    margin-left:3px;
    float:left;
    font-style:normal;
    clear:right;
}

.Tab_Bolla
{
    font-size:8pt;
}

.labelNormal
{
    font-style:normal;
}

.txtAnno
{
    width:30px;
}

.txtCodice
{
    width:75px;
}

.txtUM
{
    width:30px;
}

.txtDate
{
    width:70px;
}

#PagerClienti
{
    width:100%;
    background-color:#FFFAF0;
}
#PagerClientiLeft
{
    padding-right:2px;
    margin-top:1px;
    display:inline;
    float:left;
}
#divComandiPager
{
    margin-top:1px;
    display:inline;
    clear:both;
}

#PagerClientiCenter
{

    margin-left:33%;
    margin-top:1px;
    display:inline;
    float:left;
}
#PagerClientiRight
{
    margin-top:1px;
    margin-right:5px;
    padding-right:2px;
    display:inline;
    float:right;
}

.GrdClientiEmptyData
{
    background-color:Blue;
    color:White;
    font-weight:bold;
    text-align:center;
}

.GrdProdottiEmptyData
{
    background-color:Blue;
    color:White;
    font-weight:bold;
    text-align:center;
}

.GridEmptyData
{
    background-color:Blue;
    color:White;
    font-weight:bold;
    text-align:center;
}

.GrdAssortimentiEmptyData
{
    background-color:Blue;
    color:White;
    font-weight:bold;
    text-align:center;
}

.GridRicercaBolleEmptyData
{
    background-color:Blue;
    color:White;
    font-weight:bold;
    text-align:center;
}

.GridClienti
{
    width:100%;
}

.GridProdotti
{
    width:100%;
}
.GridAssortimenti
{
    width:100%;
}

.GridRicercaBolle
{
    width:98%;
}

#divStandardGrid
{
	clear: both;
	margin: 1px 5px;
	padding: 1px 1px;
	border: 1px #0000FF solid;
	background-color: #FFFFCC;
	font-size: 0.9em;
	height:380px;
	overflow:auto;
	/*overflow-y:auto; dal CSS 3.0*/
}

#divGrdClienti
{
    width:96%;
    text-align:left;
}


#divGrdRB
{
    width:96%;
    text-align:left;
}

#divGrdProdotti
{
    width:96%;
    text-align:left;
}

#divGrdAssortimenti
{
    width:96%;
    text-align:left;
}

#copy
{
    margin: 0;
	padding: 0;
	border: 0;
	/*min-height: 300px;*/
	height:700px;
}

#divLoginCenter
{
    text-align:center;
}

#divDatiGrdClienti
{
    clear:both;
}

#divDatiGrdProdotti
{
    clear:both;
    font-size:0.8em;
}

#divDatiGrdProdottiAlt
{
    clear:both;
    font-size:0.8em;
}

#divDatiGrdAssortimenti
{
    clear:both;
}

#divDatiGrdRB
{
    clear:both;
}


#DivDati h4 {
	font-size: 1.0em;
	font-weight: bold;
}


.LabelNota
{
    font-style:italic;
    font-weight:bold;
    font-variant:small-caps;
}

.fileUpload
{
    clear:both;
    width:80%;
    background-color:#CACAAA;
}


#DivDatiUpload
{
    clear:both;
	margin:1px 5px;
	padding:2px 20px;
	border:1px solid #FFFFCC;
	background-color:#FFFFFF;
	font-size:0.9em;

}



.lblErrorMessage
{
    background-color:Red;
    font-size:1.2em;
    font-weight:bold;
    color:#FFFFFE;
}

.lblOkMessage
{
    background-color:Green;
    font-size:1.2em;
    font-weight:bold;
    color:#FFFF00;
}

.StandardPagerStyle
{
   text-align:center;
   background-color:#FFFAF0;
}

.StandardEmptyData
{
    background-color:Blue;
    color:White;
    font-weight:bold;
    text-align:center;
}
.StandardGrid
{
    width:96%;
    text-align:left;
}

#divNascosto
{
    display:none;
}

#divInvisibile
{
    visibility:hidden;
}

.divInvisibile
{
    visibility:hidden;
}

.divNascosto
{
    display:none;
}

.divInvisibileNascosto
{
    visibility:hidden;
    display:none;
}

.validatorCalloutHighlight
{
    background-color:Yellow;
}

.floatRight {
	float:right;
	display:inline;
}
.floatLeft {
	float:left;
	display:inline;
}
.floatNone {
	float:none;
	display:inline;
}
.position20
{
    margin-left:20%;

}

.buttonInvio {
    border:1px solid #FFFFFF;
    color:#FFFFFF;
    background-color:#FF9900;
    font-size:1em;
    background-image: url(Images/icon-send.gif);
    background-repeat: no-repeat;
    text-align:right;
    padding-right:2px;
    cursor:pointer; /*cursor:hand;*/
}

.buttonSave {
    border:1px solid #FFFFFF;
    color:#FFFFFF;
    background-color:#FF9900;
    font-size:1em;
    background-image: url(Images/icon-save.gif);
    background-repeat: no-repeat;
    text-align:right;
    padding-right:2px;
    cursor:pointer; /*cursor:hand;*/
}

.buttonNew {
    border:1px solid #FFFFFF;
    color:#FFFFFF;
    background-color:#FF9900;
    font-size:1em;
    background-image: url(Images/new.gif);
    background-repeat: no-repeat;
    text-align:right;
    padding-right:2px;
    cursor:pointer; /*cursor:hand;*/
}

.buttonDel {
    border:1px solid #FFFFFF;
    color:#FFFFFF;
    background-color:#FF9900;
    font-size:1em;
    background-image: url(Images/icon-delete.gif);
    background-repeat: no-repeat;
    text-align:right;
    padding-right:2px;
    cursor:pointer; /*cursor:hand;*/
}

.buttonOpe {
    border:1px solid #FFFFFF;
    color:#FFFFFF;
    background-color:#FF9900;
    font-size:1em;
    background-repeat: no-repeat;
    text-align:right;
    padding-right:2px;
    cursor:pointer; /*cursor:hand;*/
}



/*
    RadioButtonList con adapter
*/
.AspNet-RadioButtonList
{
    float:left;
}
.AspNet-RadioButtonList-Item
{
		list-style-type:none;
    float:left;
}
.LabelRadioButtonList
{
    float:left;
    background-color:Red;
}
.AspNet-RadioButtonList-Vertical
{
    float:left;
}
/*
    FINE RadioButtonList con adapter
*/

#divCliCons
{
    clear:both;
}

#divComandi
{
    clear:both;
}


#divCliFatt
{
    clear:both;
}

.lblCodice
{
    width:75px;
}

.txtDettBolla
{
    width:43px;
}

.txtDettOrdini
{
    width:43px;
}

.divErrori
{
	background-color: #FFFFCC;
	font-size: 0.9em;
	height:450px;
	overflow:auto;
	/*overflow-y:auto; dal CSS 3.0*/
}

#divDettBolla
{
    clear:both;
	margin:1px 5px;
	padding:2px 20px;
	border:1px solid #FFFFCC;
	background-color:#FFFFFF;
	font-size:0.9em;
	text-align:left;
}

#divDettBolla h4 {
	font-size: 1.1em;
	font-weight: bold;
}

#divDettBolla label
{
    margin-left:3px;
    float:left;
    width:13%;
    font-style:normal;
}

#DivDatiAlt
{
    clear:both;
	margin:1px 5px;
	padding:2px 20px;
	border:1px solid #FFFFCC;
	background-color:#FFFFFF;
	font-size:0.8em;

}

#DivDatiAlt h4 
{
    display:inline;
    float:left;
	font-size: 1.0em;
	font-weight: bold;
}

#pDatiAlt
{
    display:inline;
    float:left;
    font-size:0.8em;
}

#pnlDett
{
    display:inline;
    float:left;
    font-size:0.8em;
}

.divCenter
{
    text-align:center;
}

/*Mario 03/10/2007*/
.RigaAnnullata
{
    background-color:#F3F7CF;
}
/*Fine Mario 03/10/2007*/

/* Aggiunte CSS Andrea 03/10/2007 */
.txtMese
{
    width:15px;
}

.txtNumber
{
    width:75px;
}

.txtCodice
{
    width:70px;
}

.txtRagioneSociale
{
    width:200px;
}

#divGrdCR
{
    width:96%;
    text-align:left;
}

#divDatiGrdCR
{
    clear:both;
}

/* Fine Aggiunte CSS Andrea 03/10/2007 */

/*Mario 04/10/2007*/
#divDocumenti
{
    clear:both;
	margin:1px 5px;
	padding:2px 20px;
	border:1px solid #FFFFCC;
	background-color:#FFFFFF;
	font-size:0.8em;

}
/*Fine Mario 04/10/2007*/

/* Aggiunte CSS Andrea 04/10/2007 */

#divReportGrid
{
	clear: both;
	margin: 1px 5px;
	padding: 1px 1px;
	border: 1px #000000 solid;
	background-color: #FFFFFF;
	font-size: 0.7em;
	height:300px;
	overflow:auto;
}

#DivIntestazione
{
    clear:both;
	margin:5px 5px;
	padding:2px 20px;
	border:1px solid #FFFFCC;
	background-color:#FFFFFF;
	font-size:0.9em;

}

#DivIntestazione label
{
    margin-left:3px;
    float:left;
    width:13%;
    font-style:normal;
}

#DivIntestazione h4 {
	margin: -1em 0 0.5em -20px;
	font-size: 1.1em;
	font-weight: bold;
	background-color:#FFFFCC;
}

#divMainEmpty
{
    margin-top:10px;
}

#divMainEmpty select, input
{
    font-size:8pt;
    color:#000000;
    font-family:Tahoma;
}

.divScroll
{
  	height:200px;
	overflow:auto;
}

.labelStrongRed
{
    font-weight:bold;
    color:Red;
}

/*Modal Popup*/
.modalBackground {
	background-color:Gray;
	/*filter:alpha(opacity=70);*/
	opacity:0.7;
}

.modalPopup {
	background-color:#ffffdd;
	border-width:3px;
	border-style:solid;
	border-color:Gray;
	padding:3px;
	width:250px;
}

/*ANDREA */

#divTipoDownload, #divSelezione
{
    width:96%;
    font-size:0.9em; 
}

.divDatiBolle
{
    clear: both;
	margin: 1px 5px;
	padding: 1px 1px;
	border: 1px #0000FF solid;
	background-color: #FFFFCC;
	font-size: 0.9em;
	height:380px;
	overflow:auto;
}
.divGenerico
{
    clear:both;
  
}
.divDatiGriglia
{
    clear:both;
    font-size:0.8em;
}

.DivDettaglioProdotti
{
    clear:both;
	margin:1px 5px;
	padding:2px 20px;
	border:1px solid #FFFFCC;
	background-color:#FFFFFF;
	font-size:0.9em;
	text-align:left;
}

.DescElementi
{
    font-weight:bold;
    margin-left:20px;
}

.divStandardGrid
{
	clear: both;
	margin: 1px 5px;
	padding: 1px 1px;
	border: 1px #0000FF solid;
	background-color: #FFFFCC;
	font-size: 0.9em;
	height:380px;
	overflow:auto;
	/*overflow-y:auto; dal CSS 3.0*/
}

.divStandardGridEx
{
	clear: both;
	margin: 1px 5px;
	padding: 1px 1px;
	border: 1px #0000FF solid;
	background-color: #FFFFCC;
	font-size: 0.9em;
	height:450px;
	overflow:auto;
	/*overflow-y:auto; dal CSS 3.0*/
}

.divStandardGrid98
{
	clear: both;
	margin: 1px 5px;
	padding: 1px 1px;
	border: 1px #0000FF solid;
	background-color: #FFFFCC;
	font-size: 0.9em;
	overflow:auto;
	width:98%;
	/*overflow-y:auto; dal CSS 3.0*/
}

.divStandardGrid98 th
{
	text-align:left;
	padding-bottom:5px;
}

.grdStandard
{
    width:98%;
}

.grdStandard98
{
    width:98%;
}
    
.hRight
{
    text-align:right;
}

.pnlVarDat
{
	font-size: 0.9em;
	height:380px;
	overflow:auto;
}

/*CLASSI PER LA GESTIONE DEL CONTROLLO SULLA PASSWORD - INIZIO*/
.pwd_0{background-color: #FF0000; color: #ffffff;}
.pwd_1{background-color: #ff5400; color: #ffffff;}
.pwd_2{background-color: #ff9c00;}
.pwd_3{background-color: #ffd800;}
.pwd_4{background-color: #baff00;}
.pwd_5{background-color: #baff00;}
.pwd_6{background-color: #43ba08; color: #ffffff;}
/*CLASSI PER LA GESTIONE DEL CONTROLLO SULLA PASSWORD - FINE*/

.calend
{
   font-size:3px;
   background-color:#ffffff;
}

.StrongLabel
{
    font-weight:bold;
}
.ItalicLabel
{
    font-style:italic;
}

.SmallGrid
{
	clear: both;
	margin: 1px 5px;
	padding: 1px 1px;
	border: 1px #0000FF solid;
	background-color: yellow;
	font-size: 0.9em;
	height:250px;
	overflow:auto;
	/*overflow-y:auto; dal CSS 3.0*/
}

A:link,A:visited,A:active,A:hover		{	
	text-decoration:	none;
	color:	Yellow ;
	}

.grdStandardScroll
{
    background-color:red;
    width:98%;
   	height:100px;
	overflow:auto;
}

.curHand
{
    cursor:pointer; /*cursor:hand;*/
}
#divUpdate
{
    clear:left;
}

.RigaTipoA
{
}
.RigaTipoT
{
    font-weight:bold;
    background-color:Gray ;
}
.RigaTipoP
{
    font-style:italic;
    background-color:Scrollbar;
}

.RigaTipoF
{
    font-weight:bold;
    background-color:Silver ;
}

.hCenter
{
    text-align:center;
}

.hLeft
{
    text-align:left;
}

.textSmall
{
    font-size:.7em;
}

.idAperte
{
	background-color:Yellow;
	text-align:left;
	}
	
	
.lsAperte
{
	background-color:White;
	text-align:left;
	}
	
.dlAperte
{
	width:100%;
}

.border
{
	border-style:solid;
	border-color:Red;
	border-width:1px;
	padding:1px;
	margin:1px;
}