/* CSS home */

/* CSS default */

/************************************************************* IEPNGFIX */
/*
USAGE:
Copy and paste this one line into your site's CSS stylesheet.
Add comma-separated CSS selectors / element names that have transparent PNGs.
Remember that the path is RELATIVE TO THIS HTML FILE, not the CSS file.
See below for another method of activating the script without adding CSS here.
*/
 #divMenu1 ul li a img { behavior: url("iepngfix.htc") }
/*
Here's an example you might use in practice:
img, div.menu, .pngfix, input { behavior: url("/css/iepngfix.htc") }
*/

/************************************************************* TAGS HTML */

body {
	margin:0px;
	padding:0px;
	background-image:url(../immagini/bg-body.png);
	background-repeat:repeat-x;
	background-color:#B5BBDA;
}

#divMain {
	width:960px;
	height:940px;
	margin:15px auto 20px auto;
	background-image:url(../immagini/bg-home.jpg);
	background-repeat:no-repeat;
	background-color:#fff;
}

#divMenu1 {
	float:left;
	margin-left:10px;
	margin-top:160px;
	width:200px;
}

#divBanner {
	float:left;
	margin-left:202px;
	display:inline; /*hack per bug IE6 float-margin*/
	margin-top:30px;
	width:520px;
	height: 30px;
	color:#B94876;
	font-family:Arial, Helvetica, sans-serif;
}

a {
	color:#B44B74;
	text-decoration:none;
	outline:none;
}

a:hover {
	text-decoration:underline;
}

a:active {
  position: relative;
  top: 1px;
}


