/*
CSS-file for Strictly CSS three column layout 2006
http://www.strictlycss.com
Developed by Eivind Savio
*/
* /*Set's border, padding and margin to 0 for all values*/
{
padding: 0;
margin: 0;
border: 0;
}
form, body, html {
background:gray;
background-image:url(../../img/mainbg.jpg);
background-repeat:repeat;
font-family:Verdana, Arial, Helvetica, sans-serif;
font-size:11px;
color:#666666;
text-align: center; /*** Centers the design in old IE versions ***/
height: 100%;
}

/*
body {
font-size: 70%;
}
p {padding: 7px 0 7px 0;}

a {
color: #000099;
}
a:hover{
color: #0000FF;
text-decoration: none;
}

h1, h2, h3 {
font-weight: bold;
padding-bottom: 5px;
}
h1 {
font-size: 2em;
}
h2 {
font-size: 1.4em;
}
h3 {
font-size: 1.3em;
}
h1 a, #header h2{
color: #fff;
}
*/
.clear { clear: both; }
#mainContainer {
	width: 740px; /*** Centers the design ***/
	min-height: 100%; /*** This is our faux columns ***/
	text-align: left; /*** Because we centered the text in body we have to move the text back to left aligning ***/
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	background-color: #FFFFFF;
}
* html #mainContainer {
height: 100%;  /*** IE doesn't support min-height, but instead it handles height as min-height so we need to hack the height ***/
}
/**************************
HEADER
**************************/
#header {
padding: 10px;
height:146px;
}

/**************************
LANGUAGE MENU
**************************/

div#lmenu {
	background-color:#FFFFFF;
	border:0px;
	height:31px;
	padding-top: 0px;
	padding-right: 10px;
	padding-bottom: 0px;
	padding-left: 10px;
	background-attachment: scroll;
	background-image: url(../../img/lmenubg.jpg);
	background-repeat: repeat-x;
	vertical-align: middle;
}

div#languagemenu
{
	vertical-align: middle;
	float: left;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-style: normal;
	color: #666666;
	height: auto;
	width: auto;
	text-align: left;
	margin-top: 7px;
    }
	
div#privacymenu
{
	vertical-align: middle;
	float: right;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-style: normal;
	color: #666666;
	height: 31px;
	width: 250px;
	text-align: right;
	line-height: 31px;
}

/**************************
CONTENT AND COLUMNS
**************************/
.outer {
	padding: 0px;
}
* html .outer {
/*padding-right: 120px;  Normally this shouldn't be in this hack, it should be in .outer, but because of IE7 I had to */
}
.inner {
	width: 720px; /*** This width is for non-IE browsers. Mozilla makes this necessary. Be sure to check your layout in different browsers if you changes this value. Especially IE7 seems to create a horisontal scroll if this value is set too large ***/
	padding-bottom: 80px;
	padding-top: 10px;
	padding-right: 10px;
	padding-left: 10px;
}

/*** div.inner is wider than its container, div.outer, and so overlaps to the right, pushing
div.right into the proper position. IE expands div.outer instead, requiring a Tan hack to avoid 
blowing the layout apart. IE gets the original 100% width as in the Livingstone layout.
***/
.float-wrap {
float: left;
width: 500px;
/*margin-left: -165px; ** Same length as .outer padding-left but with negative value ***/
}
* html .float-wrap {
/*** No need for hacking IE on this layout ***/
}
#content {
float: right;
width: 520px;
background: #fff;
}
#content p 
{
    text-align:justify;
}
* html #content {
position: relative;  /*** IE needs this  ***/
}
.contentWrap{
padding: 0px;
}
/*.contentWrap ol, .contentWrap ul {
margin: 3px 0 5px 35px;
}
.contentWrap li {
padding-bottom: 2px;
}*/


/**************************
LEFT COLUMN
**************************/
/*** div.left is in div.float-wrap, and when div.float-wrap is neg margined to the left, 
div.left is carried over into the proper position. 
***/
#left {
	float: left;
	width: 190px;
	padding: 0px;
}
* html #left {
position: relative;  /*** IE needs this  ***/
}
#left ul {
	height: auto;
	width: 190px;
	margin: 0px;
	clip: rect(auto,auto,auto,0px);
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
#left li {
	list-style-type: none;
}


/**************************
FOOTER
**************************/
#footer {
	width: 720px;
	height: 70px;
	margin-top: -71px; /*** By using a negative margin-top we now moves the footer up the same amount as the footer height to avoid vertical scrolling. Remember, if you use borders and padding on your footer you will have to calculate this in your negative margin-top value also. ***/
	text-align: center;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: gray;
}

div#foot1
{
	border:0px;
	float: left;
	width: 190px;
	text-align: right;
	margin-top: 10px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #666666;
}

div#foot2
{
	border:0px;
	float: right;
	width: 520px;
	text-align: left;
	margin-top: 10px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #666666;
	text-decoration: none;
}

div#foot2 a:link
{
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #666666;
	text-decoration: none;
}

div#foot2 a:visited
{
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #666666;
	text-decoration: none;
}

div#foot2 a:hover
{
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #666666;
	text-decoration: none;
}

/********************************************************************
********************************************************************/

.logo {
	float: left;
}

.flash {
	float: right;
}

.menuli {
padding-bottom: 20px;
}

.menuli2 {
	background-color: #f3f3f3;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #FFFFFF;
	height: auto;
	width: auto;
	text-align: left;
	text-indent: 10px;
	
		border:solid 1px #f3f3f3;
}

.menuli2 img {
	
}
.menuli2 p {
	margin:5px auto 5px auto;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}

.menuli3 
{
    border:solid 1px #f8f8f8;
	background-color: #f8f8f8;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #FFFFFF;
	height: auto;
	width: auto;
	text-align: left;
	text-indent: 20px;
		
}
/*

.menuul2 {
	height: auto;
	width: 190px;
	margin: 0px;
	clip: rect(auto,auto,auto,0px);
	padding-top: 1px;
	padding-right: 0px;
	padding-bottom: 10px;
	padding-left: 0px;
	left: 0px;
}

.menuli2 {

	height: 22px;
	width: 190px;
	margin: 0px;
	clip: rect(auto,auto,auto,0px);
	padding-top: 1px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	background-color: #f3f3f3;
	top: 1px;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #FFFFFF;
	vertical-align: middle;
	line-height: 22px;
	list-style-image: url(../../img/menudot.gif);
	list-style-position: inside;
}
*/

.content {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-weight: normal;
	color: #454545;
	text-decoration: none;
	text-align:justify;
	
}

.content a:link {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-weight: normal;
	color: #373737;
	text-decoration: none;
}

.content a:visited {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-weight: normal;
	color: #373737;
	text-decoration: none;
}

.content a:hover {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-weight: normal;
	color: #470101;
	text-decoration: none;
}

#richiestacatalogo_table{
	width: 520px;
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
}

#catalogoprodotti_table{
	width: 520px;
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
}

#contatti_table{
	width: 520px;
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
}

#contatti_dipartimenti_table{
	width: 520px;
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
	padding:5px;
}

#contatti_dipartimenti_table td 
{
    padding:5px;
    }

.rete_table{
	width: 520px;
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
	padding:5px;
	vertical-align:top;
}

.rete_table td{
	padding:5px;
	vertical-align:top;
	width:50%;
}

input, textarea, select {
	margin: 5px 0;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	background: #FFFFFF;
	border: #91825E 1px solid;
	color: #91825E;
	text-align: justify;
}

input:hover, textarea:hover, select:hover {
  border: #CCC1A4 1px solid;
}

input[type="checkbox"] {
  margin: 0px 0;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	background: #FFFFFF;
	border: none;
	color: #91825E;
}

.checkbox {
  margin: 0px 0;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	background: #FFFFFF;
	border: none;
	color: #91825E;
}

input[type="submit"] {
  margin: 0;
  padding: 0px;
  background: #FFFFFF;
}

.titolo {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 17px;
	font-weight: bold;
	text-decoration: none;
	text-indent: 0px;
	height: 20px;
	width: 100%;
	border-bottom-width: 2px;
	border-bottom-style: solid;
	border-bottom-color: #e1e1e1;
	color: #454545;
	letter-spacing: -1px;
}

.titoletto {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: bold;
	text-decoration: none;
	text-indent: 0px;
	height: 20px;
	width: 100%;
	color: #454545;
}

.sottotitolo_catalogo {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bold;
	text-decoration: none;
	text-indent: 15px;
	height: 20px;
	width: 100%;
	border-bottom-width: 2px;
	border-bottom-style: solid;
	border-bottom-color: #e1e1e1;
	color: #6a6a6a;
	clear: both;
}

.catalogo_item {
	width: 150px;
	padding: 10px;
	height: 115px;
	float: left;
	text-align: center;
}

.catalogo_item img 
{
    border:0px;
	/*border-bottom-width: 2px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: solid;
	border-left-style: none;
	border-bottom-color: #D4D0C8;*/
}
.catalogo_item span {
	background-position: center;
	vertical-align:middle;

}

.sottotitolo_contatti {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bold;
	text-decoration: none;
	text-indent: 15px;
	height: 20px;
	width: 100%;
	border-bottom-width: 2px;
	border-bottom-style: solid;
	border-bottom-color: #e1e1e1;
	color: #6a6a6a;
	clear: both;
}

#top {
	background-color: #FFFFFF;
	clear: both;
	height: 33%;
	width: 100%;
}

#center {
	background-color: #f3f3f3;
	clear: none;
	height: 400px;
	width: auto;
	background-image: url(../../img/center_bg.jpg);
	text-align: center;
	background-repeat: repeat-x;
	background-position: left top;
	vertical-align: top;
}

#bottom {
	background-color: #f3f3f3;
	clear: both;
	height: 100%;
	width: 100%;
	text-align:center;
}

#enter {
	height: auto;
	width: auto;
	vertical-align:top ;
	text-align:center ;
	padding: 0px;
}
