/* --------------------------------------------------------------
  
CSS for SLIDER
   
-------------------------------------------------------------- */

#slider {
  position: relative;
  overflow: hidden;
  margin: 0 auto;
 
}

#slider ul {
  position: relative;
  margin: 0;
  padding: 0;
  height: 200px;
  list-style: none;
}

#slider ul li {
  position: relative;
  display: block;
  float: left;
  margin: 0;
  padding: 0;
  width: 1050px;
  height: 450px;
  background: #ccc;
  text-align: center;
  line-height: 450px;
}

a.control_prev, a.control_next {
  position: absolute;
  top: 40%;
  z-index: 1000;
  display: block;
  padding: 3% 2%;
  width: auto;
  height: auto;
  background: #2a2a2a;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  opacity: 0.7;
  cursor: pointer;
}

a.control_prev:hover, a.control_next:hover {
  opacity: 1;
  -webkit-transition: all 0.2s ease;
}

a.control_prev {
  border-radius: 0 2px 2px 0;
}

a.control_next {
  right: 300px;
  border-radius: 2px 0 0 2px;
}

.slider_option {
  position: relative;
  margin: 10px auto;
  width: 160px;
  font-size: 18px;
}

#anteprima {
	width:500px;
	height:auto;
	/*border:1px solid #808080;*/
}

input[type=checkbox]#checkbox {
							display:none;
						}

						input[type=checkbox]#checkbox + label#label-checkbox {
							padding-left:23px;
							height:16px; 
							display:inline-block;
							line-height:16px;
							background-repeat:no-repeat;
							background-position: 0 0;
							font-size:16px;
							vertical-align:middle;
							cursor:pointer;

						}

						input[type=checkbox]#checkbox:checked + label#label-checkbox {
							background-position: 0 -16px;
						}
						label#label-checkbox {
				background-image:url(http://csscheckbox.com/checkboxes/u/csscheckbox_2ffe02f03ea8405a3f939403132b4bc7.png);
				-webkit-touch-callout: none;
				-webkit-user-select: none;
				-khtml-user-select: none;
				-moz-user-select: none;
				-ms-user-select: none;
				user-select: none;
			}
