@charset "utf-8";
/* CSS Document */

/* DEFINIZIONE DI BASE
========================================================================================== */ 
body{
	width: 100%;
	height: 100%;
    padding : 0px;
    margin: 0px;
	position: relative;
    text-align: left;
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
    font-size: 13px;
	font-weight: 400;
	line-height: 20px;
    color: #000;
}

html{ width: 100%; height: 100%; }
table{ margin: 0px; padding: 0px; border-collapse: collapse; }

a{ text-decoration: none; color: inherit; outline: none; }
a:hover{ text-decoration: none; color: #6C6C6C; outline: none; }

img{ border: 0px; }
form{ margin: 0px;padding: 0px; }
label{
	display: inline-block;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 13px;
	color: #1A171B;
}
input, textarea{
	height: 35px;
	width: 98%;
	margin: 0px;
	padding: 2px;
	border: 0;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 13px;
	background: #D9DADB;
	color: #000;
}
input[type="submit"]{
	height: 40px;
	width: auto;
	padding: 0 45px;
	display: block;
	font-size: 12px;
	text-transform: uppercase;
	background: #E20008;
	color: #FFF;
	cursor: pointer;
}
	input[type="submit"]:hover{ background: #666; }

fieldset{ margin: 0; padding: 0; border: none; }
.input_noborder{ background-color: transparent;color: #000; border: 0px; }

article, header, hgroup, section, aside, article, footer { display: block; }


/* Contenitore totale della pagina
------------------------------------------------------------------------------------------ */
.total_container{
	min-height: 100%;
	padding-top: 115px;
	position: relative;
	background: #EFEFEE url(../layout_image/bg_total_container.png) no-repeat center top;
}


/* HEADER
------------------------------------------------------------------------------------------ */ 
.page_header{
	width: 100%;
	height: 115px;
	padding-top: 1px;
	margin: -115px auto 0 auto;
	position: fixed;
	z-index: 5;
	background: #FFF;
}

	/* I due contenitori sotto sono lineari (1 - 2) nel html, 
	   ma invertiti (2 - 1) nella visualizzazione della pagina
	------------------------------------------------------------------------------------------ */ 
	.pheader_section_1{
		width: 1000px;
		height: 65px;
		margin: 0 auto;
		top: 30px;
		position: relative;
	}
	.pheader_section_2{
		width: 1000px;
		height: 30px;
		margin: 0 auto;
		top: -65px;
		position: relative;
	}


	/* Contenuti di "pheader_section_2"
	------------------------------------------------------------------------------------------ */ 
	ul.pheader_lang_menu{
		width: auto;
		height: 32px;
		padding: 0 13px 0 13px;
		margin: 0px;
		list-style-type: none;
		position: absolute;
		background: #FFF;
		transition: 0.5s ease;
	}
	
	/* Menu lingua */
	ul.pheader_lang_menu li{
		width: 21px;
		height: 16px;
		margin: 8px 13px 0 0;
		background: url(../layout_image/lang_flag.svg) no-repeat left center;
		display: block;
		position: absolute;
		transition: 0.5s ease;
		z-index: 1;
	}

	ul.pheader_lang_menu.open{ background-color: #87888A; }
	ul.pheader_lang_menu.open li{
		position: relative;
		display: inline-block;
		transition: 0.5s ease;
	}
	
	ul.pheader_lang_menu li.active a{ width: 45px; background: url(../layout_image/lang_menu_item_active.png) no-repeat 34px top; }
	ul.pheader_lang_menu:hover li.active a{ background-position: 34px bottom; }
	ul.pheader_lang_menu li a{
		width: 21px;
		height: 16px;
		display: block;
	}
	ul.pheader_lang_menu li a span{ display: none; }
	ul.pheader_lang_menu li:nth-child(7){ margin-right: 0; }
	ul.pheader_lang_menu li.active{ margin-right: 25px; z-index: 2; }
	ul.pheader_lang_menu li.eng{ background-position: -21px center;}
	ul.pheader_lang_menu li.fra{ background-position: -42px center;}
	ul.pheader_lang_menu li.esp{ background-position: -63px center;}
	ul.pheader_lang_menu li.deu{ background-position: -84px center;}
	ul.pheader_lang_menu li.swi{ background-position: -105px center;}
	ul.pheader_lang_menu li.usa{ background-position: -126px center;}


	/* Menu social */
	.pheader_social{
		width: 223px;
		height: 33px;
		right: 0px;
		position: absolute;
		border-right: 1px solid #B1B3B4;
	}
		.phs_list{
			width: 100%;
			height: 24px;
			padding: 0 10px;
			margin: 8px 0 0 0;
			list-style-type: none;
			position: relative;
		}
			.phs_list li span{ display: none; }
			.phs_list li{
				margin: 0 9px 0 0;
				display: inline-block;
				position: relative;
			}
			.phs_list li:nth-child(6){
				margin: 0;
			}
			.phs_list li a{
				width: 24px;
				height: 24px;
				display: block;
				position: relative;
				background: url(../layout_image/bg_header_social.svg) no-repeat left top; 	/* Mostra Facebook */
			}
			.phs_list li a:hover{ background-position: left bottom; }
			.phs_list li:nth-child(2) a{ background-position: -24px top; } 					/* Mostra Twitter */
			.phs_list li:nth-child(3) a{ background-position: -48px top; } 					/* Mostra Google+ */
			.phs_list li:nth-child(4) a{ background-position: -72px top; } 					/* Mostra Youtube */
			.phs_list li:nth-child(5) a{ background-position: -96px top; } 					/* Mostra Pinterest */
			.phs_list li:nth-child(6) a{ background-position: -120px top; } 				/* Mostra Instagram */
			.phs_list li:nth-child(2) a:hover{ background-position: -24px bottom; }
			.phs_list li:nth-child(3) a:hover{ background-position: -48px bottom; }
			.phs_list li:nth-child(4) a:hover{ background-position: -72px bottom; }
			.phs_list li:nth-child(5) a:hover{ background-position: -96px bottom; }
			.phs_list li:nth-child(6) a:hover{ background-position: -120px bottom; }
	
	/* Box login rivenditore */
	.pheader_login{
		width: 210px;
		height: 33px;
		right: 223px;
		position: absolute;
		border-left: 1px solid #B1B3B4;
		border-right: 1px solid #B1B3B4;
		text-align: center;
	}
		.phl_open, .phl_close{
			height: 16px;
			padding-right: 15px;
			margin: 8px auto;
			display: inline-block;
			position: relative;
			font-size: 12px;
			font-weight: 500;
			white-space: nowrap;
			color: #777D87;
			background: url(../layout_image/bg_login_reseller.svg) no-repeat right top;
			z-index: 1;
		}
		.phl_open span, .phl_close span{ font-weight: 400; }
			.phl_close{ color: #FFF; background-position: right bottom; }
			.phl_close:hover{ color: #FFF; }
		
		/* Contenitore form login rivenditori */
		.phl_container_login{
			width: 210px;
			height: auto;
			min-height: 150px;
			margin-top: -33px;
			overflow: hidden;
			position: relative;
			background: #777D87;
			z-index: 1;
			display: none;
			color: #FFF;
		}

			.phl_container_login h3{
				margin: 20px 0 15px 0;
				font-size: 25px;
				font-weight: 300;
				text-transform: uppercase;
				color: #FFF;
			}

			.phl_container_login h4{
				width: 180px;
				margin: 20px auto;
				font-size: 18px;
				font-weight: 300;
				text-transform: uppercase;
				color: #FFF;
			}

			#form_login{
				text-align: center;
				position: relative;
			}
			#form_login input[type="text"], #form_login input[type="password"]{
				width: 180px;
				height: 35px;
				margin-bottom: 10px;
				border: 0px;
				font-size: 14px;
			}
			#form_login input[type="submit"]{
				height: 30px;
				width: auto;
				padding: 0 20px;
				margin: 13px auto 0 auto;
				border: 0px;
				position: relative;
				text-transform: uppercase;
				background: #556270;
				color: #FFF;
				cursor: pointer;
				transition: 0.5s ease;
			}
			#form_login input[type="submit"]:hover{
				background: #CCC;
				color: #000;
			}
			.phl_container_link_register{
				width: 180px;
				padding-top: 10px;
				margin: 25px auto 10px auto;
				border-top: 1px solid #FFF;
				font-size: 11px;
				font-family: Arial, Helvetica, sans-serif;
				color: #FFF;
			}
			.phl_container_link_register a:hover{ color: #000; }
			
		/* Risposta login */
		.phl_response_login{
			width: 180px;
			min-height: 60px;
			height: auto;
			margin: 15px;
			font-size: 14px;
			color: #FFF;
			display: none;
		}
		.phl_response_login h3{
			padding-left: 20px;
			font-size: 22px;
			text-transform: uppercase;
			background: url(/layout_image/preloader/preloader_24_b.gif) no-repeat 40px center;
			background-size: 16px 16px;
		}
		.phl_response_login p{ margin: 0; }
		
	.pheader_cart{
		width: auto;
		height: 33px;
		padding: 0 10px 0 40px;
		right: 440px;
		position: absolute;
		border-left: 1px solid #B1B3B4;
		text-align: center;
		font-weight: 500;
		font-size: 12px;
		line-height: 33px;
		color: #777D87;
		text-transform: uppercase;
		background: url(../layout_image/icon_cart.svg) no-repeat left 10px center;
		background-size: 20px;
	}

	/* Contenuti di "pheader_section_1"
	------------------------------------------------------------------------------------------ */ 	
	.pheader_logo{
		width: 208px;
		height: 56px;
		float: left;
		position: relative;
		background: url(../layout_image/logo_ragazzon.png) no-repeat center center;
		background-size: contain;
	}
	.pheader_logo a{ width: 100%; height: 100%; display: block; position: relative; }
	.pheader_logo a span{ display: none; }
	
	/* Menu principale */
	.pheader_main_nav{
		width: 774px;
		height: 57px;
		margin-top: 15px;
		float: right;
		position: relative;
		background: url(../layout_image/bg_main_menu.svg) no-repeat center center;
	}
		.pheader_main_nav ul{
			width: 100%;
			height: 100%;
			position: relative;
			display: block;
			list-style-type: none;
			margin: 0;
			padding: 0;
			font-family: Arial, Helvetica, sans-serif;
			font-weight: 400;
			text-align: justify;
		}
			.pheader_main_nav ul li{
				height: 57px;
				display: inline;
				margin: 0 8px;
				position: relative;
				color: #FFF;
				font-size: 14px;
			}
			.pheader_main_nav ul:after{
				content: "";
				width: 100%;
				display: inline-block;
			}
			.pheader_main_nav ul li a{
				height: 65px;
				width: auto;
				padding: 0 8px;
				margin:  0;
				line-height: 57px;
				display: inline-block;
				position: relative;
			}
			.pheader_main_nav ul li a:hover{
				color: #36454F;
				filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#C6C7C8', endColorstr='#FFF');
				background: -moz-linear-gradient(100% 100% 90deg, #FFF, #C6C7C8);
				background: -webkit-gradient(linear, right top, right bottom, from(#C6C7C8), to(#FFF));
				background: -ms-linear-gradient(top, #C6C7C8, #FFF);
			}
			.pheader_main_nav ul li a.active{ color: #36454F; }
			
			.pheader_main_nav ul li:nth-child(1) a{
				height: 40px;
				width: 30px;
				margin-top: 0px;
				line-height: 40px;
				background: url(../layout_image/bg_main_menu_home.svg) no-repeat center top;
			}
			.pheader_main_nav ul li:nth-child(1) a:hover, .pheader_main_nav ul li:nth-child(1) a.active{ background-position: center bottom; }
			.pheader_main_nav ul li:nth-child(1) a span{ top: -500px; position: relative; }

		.pheader_main_nav ul li ul.submenu{
			display: none;
			width: 150px;
			height: 100px;
			left: 0px;
			top: 28px;
			position: absolute;
			overflow: hidden;
			box-shadow: #666 0px 5px 10px;
			z-index: 10;
		}
			.pheader_main_nav ul li ul.submenu li{
				height: 50px;
				margin: 0;
				display: block;
				position: relative;
				border-bottom: 1px solid #666;
				text-align: center;
				background: #FFF;
				color: #666;
				
			}
				.pheader_main_nav ul li ul.submenu li a, .pheader_main_nav ul li ul.submenu li:nth-of-type(1) a{
					width: 100%;
					height: 50px;
					margin: 0;
					padding: 0;
					line-height: 50px;
					text-align: center;
					display: block;
					position: relative;
				}
			.pheader_main_nav ul li ul.submenu li a:hover{ background: #666; color: #FFF; }

	/* Sotto menu Casa automobilistica */
	.pheader_nav_casa{
		width: 100%;
		height: auto;
		min-height: 150px;
		padding-bottom: 30px;
		top: 115px;
		overflow: hidden;
		position: fixed;
		box-shadow: 0 0 6px #CCC;
		/*background: #FFF url(../layout_image/preloader/preloader_64.gif) no-repeat center center;*/
		background: #FFF;
		display: none;
	}

		/* RAGAZZON */
		.pheader_nav_casa ul.ragazzon{
			width: 1000px;
			height: auto;
			margin: 27px auto 0 auto;
			padding: 0;
			overflow: hidden;
			position: relative;
			list-style-type: none;
			background: #FFF;
		}
			.pheader_nav_casa ul.ragazzon li{
				width: 180px;
				height: 55px;
				margin-right: 21px;
				display: inline-block;
				position: relative;
				border-bottom: 1px solid #CCC;
				line-height: 55px;
			}
			.pheader_nav_casa ul.ragazzon li:nth-of-type(1)
			, .pheader_nav_casa ul.ragazzon li:nth-of-type(2)
			, .pheader_nav_casa ul.ragazzon li:nth-of-type(3)
			, .pheader_nav_casa ul.ragazzon li:nth-of-type(4)
			, .pheader_nav_casa ul.ragazzon li:nth-of-type(5){ border-top: 1px solid #CCC;; }

			.pheader_nav_casa ul.ragazzon li:nth-child(5n+5){ margin-right: 0px; }
			.pheader_nav_casa ul.ragazzon li a{
				width: 110px;
				height: 55px;
				padding-left: 70px;
				display: block;
				position: relative;
				background: url(../layout_image/bg_casa_default.jpg) no-repeat 10px center;
			}


		/* UTP */
		.box_utp_1, .box_utp_2{
			width: 500px;
			height: auto;
			overflow: hidden;
			left: 50%;
			float: left;
			margin-left: -500px;
			position: relative;
			background: #FFF;
		}
		.box_utp_2{ margin-left: 0; }
		.box_utp_1 h3, .box_utp_2 h3{
			margin-top: 35px;
			font-size: 24px;
			font-weight: 300;
		}
		
		
		.pheader_nav_casa ul.utp{
			width: 500px;
			height: auto;
			margin: 27px auto 0 auto;
			padding: 0;
			overflow: hidden;
			position: relative;
			list-style-type: none;
			background: #FFF;
		}
			.pheader_nav_casa ul.utp li{
				width: 200px;
				height: 55px;
				margin-right: 21px;
				display: inline-block;
				position: relative;
				border-bottom: 1px solid #CCC;
				line-height: 55px;
			}
			.pheader_nav_casa ul.utp.accessori li{ /* Variante Accessori */
				width: 230px;
				margin-right: 20px;
			}
			
			.pheader_nav_casa ul.utp li:nth-of-type(1)
			, .pheader_nav_casa ul.utp li:nth-of-type(2){ border-top: 1px solid #CCC;; }

			.pheader_nav_casa ul.utp li:nth-child(2n+2){ margin-right: 0px; }
			.pheader_nav_casa ul.utp li a{
				width: 130px;
				height: 55px;
				padding-left: 70px;
				display: block;
				position: relative;
				background: url(../layout_image/bg_casa_default.jpg) no-repeat 10px center;
			}
			.pheader_nav_casa ul.utp.accessori li a{ /* Variante Accessori */
				width: 230px;
				padding-left: 0px;
				background: none;
			}



/* CONTENT
------------------------------------------------------------------------------------------ */ 
.page_content{
	width: 970px;
	min-height: 100px;
	height: auto;
	min-height: 550px;
	padding: 0 0 0 30px;
	margin: 27px auto 0 auto;
	position: relative;
	overflow: hidden;
	background: #FFF;
}
	.page_content article{
		width: 940px;
		height: auto;
		padding: 30px 30px 0 0;
		margin: 0 0 30px 0;
		overflow: hidden;
	}
	.page_content article.separator{ border-top: 6px solid #EFEFEE;}
	.page_content article h2{
		margin: 0 0 20px 0;
		font-size: 38px;
		font-weight: 300;
		line-height: 40px;
		/*text-transform: lowercase;*/
		color: #E20008;
	}
	/*.page_content article h2:first-letter{ text-transform: uppercase; }*/

/* FOOTER
------------------------------------------------------------------------------------------ */ 
.page_footer{
	width: 100%;
	height: 120px;
	background: #FFF;
	posiiton: relative;
}
	.pfooter_content{
		width: 1000px;
		height: 120px;
		margin: 48px auto 0 auto;
		position: relative;
	}
		.pfooter_address{
			margin: 45px 0 0 0;
			color: #87888A;
			font-size: 12px;
			position: relative;
			float: left;
		}
		.pfooter_address strong{ display: inline-block; line-height: 17px; color: #58585A; }
		
	ul.pfooter_social{
		height: 34px;
		width: auto;
		margin: 34px 0 0 0;
		padding: 0;
		float: right;
		position: relative;
		list-style-type: none;
	}
		ul.pfooter_social li{
			width: auto;
			height: auto;
			margin-left: 10px;
			display: inline-block;
		}
		ul.pfooter_social li a{
			width: 34px;
			height: 34px;
			display: block;
			background: url(../layout_image/bg_icon_social.svg) no-repeat left top; 	/* Mostra Facebook */
		}
		ul.pfooter_social li a span{ display: none; }
		ul.pfooter_social li:nth-child(2) a{ background-position: -34px top; } 			/* Mostra Twitter */
		ul.pfooter_social li:nth-child(3) a{ background-position: -68px top; } 			/* Mostra Google+ */
		ul.pfooter_social li:nth-child(4) a{ background-position: -102px top; } 		/* Mostra Youtube */
		ul.pfooter_social li:nth-child(5) a{ background-position: -136px top; } 		/* Mostra Pinterest */
		ul.pfooter_social li:nth-child(6) a{ background-position: -170px top; } 		/* Mostra Instagram */
		ul.pfooter_social li a:hover{ opacity: 0.6; }
	
	.pfooter_privacy{
		margin: 18px 0 0 0;
		float: right;
		position: relative;
		color: #A7A7A7;
		clear: right;
		font-size: 12px;
	}























































