@import url('demo.css');

/* Entypo Icon Font */
@font-face {
  font-family: 'entypo-selected';
  src: url("../font/entypo-selected.eot");
  src: 
	  url("../font/entypo-selected.eot?#iefix") format('embedded-opentype'), 
	  url("../font/entypo-selected.woff") format('woff'), 
	  url("../font/entypo-selected.ttf") format('truetype'), 
	  url("../font/entypo-selected.svg#entypo-selected") format('svg');
  font-weight: normal;
  font-style: normal;
}

/* Gamma Gallery Style */

.gamma-container {
	min-height: 200px;
}

.gamma-gallery {
	list-style-type: none;
	padding: 0;
	margin: 0;
	width: 100%;
	position: relative;
}

/* http://nicolasgallagher.com/micro-clearfix-hack/ */
.gamma-gallery:before,
.gamma-gallery:after {
    content: " ";
    display: table;
}

.gamma-gallery:after {
    clear: both;
}

/**
 * For IE 6/7 only
 * Include this rule to trigger hasLayout and contain floats.
.gamma-gallery {
    *zoom: 1;
}
 */

.gamma-gallery li {
	display: block;
	position: relative;
	cursor: pointer;
	float: left;
	padding: 4px;
}

.gamma-gallery li img {
	max-width: 100%;
	width: auto;
	height: auto;
	display: block;
}

.gamma-description {
	background: #fff;
	background: rgba(255, 255, 255, 0.6);
	position: absolute;
	top: 20px;
	left: 20px;
	bottom: 20px;
	right: 20px;
	text-align: center;
	-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	filter: alpha(opacity=0);
	opacity: 0;
	-webkit-transition: opacity 0.4s ease-in-out;
	-moz-transition: opacity 0.4s ease-in-out;
	-ms-transition: opacity 0.4s ease-in-out;
	-o-transition: opacity 0.4s ease-in-out;
	transition: opacity 0.4s ease-in-out;
}

.no-touch .gamma-gallery li:hover .gamma-description {
	-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
	filter: alpha(opacity=80);
	opacity: 1;
}
 
.gamma-description:before {
	content: '';
	height: 100%;
}

.gamma-description:before,
.gamma-description h3 {
	display: inline-block;
	vertical-align: middle;
}

.gamma-description h3 {
	width: 100%;
	padding: 0 20px;
	font-weight: 400;
	text-transform: uppercase;
	font-size: 16px;
	letter-spacing: 2px;
}

.gamma-buttons {
	position: absolute;
	top: 10px;
	right: 10px;
	z-index: 10001;
}

.gamma-buttons button {
	float: left;
	background: #333;
	color: #fff;
	display: block;
	width: 30px;
	height: 30px;
	font-size: 14px;
	margin-left: 5px;
	cursor: pointer;
	border: none;
	outline: none;
}

.gamma-buttons button:before,
.gamma-nav span:before {
	font-family: 'entypo-selected';
	font-style: normal;
	font-weight: normal;
	speak: none;
	display: block;
	text-align: center;
	opacity: 0.7;
	outline: none;
}

.no-touch .gamma-buttons button:hover {
	background: #666;
}

button.gamma-btn-close:before {
	content: '\2715';
}

button.gamma-btn-ssplay:before {
	content: '\25b6';
}

button.gamma-btn-sspause:before {
	content: '\2389';
}

.gamma-single-view {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;	
	z-index: 10000;
	text-align: center;
	display:none;
}

.gamma-overlay {
	background: #000;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	display: none;
	z-index: 9999;
}

.gamma-single-view img {
	position: absolute;
	cursor: pointer;
}

.gamma-description-wrapper {
	background: rgba(0,0,0,0.7);
	position: absolute;
	bottom: 0px;
	left: 0px;
	right: 0px;
	z-index: 10;
	padding: 5px 0;
}

.gamma-single-view .gamma-description {
	background: transparent;
	position: relative;
	bottom: auto;
	left: auto;
	right: auto;
	top: auto;
}

.gamma-single-view .gamma-description h3 {
	font-size: 15px;
	padding: 5px 0;
	color: #fff;
}

.gamma-nav span {
	position: absolute;
	display: block;
	width: 20px;
	height: 38px;
	top: 50%;
	margin-top: -19px;
	left: 20px;
	cursor: pointer;
	text-align: center;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.gamma-nav span.gamma-next {
	left: auto;
	right: 20px;
}

.gamma-nav span:before {
	color: #fff;
	opacity: 0.7;
	font-size: 40px;
}

.gamma-nav span:hover:before {
	opacity: 1;
}

.gamma-nav span:before {
	display: block;
	margin: 0;
	width: auto;
}

.gamma-nav span.gamma-prev:before {
	content: '\e75d';
}

.gamma-nav span.gamma-next:before {
	content: '\e75e';
}

.gamma-img-fly {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 99999;
}

/* Loaders */

.gamma-loading {
	background: transparent url(../images/loader_light.gif) no-repeat center center;
}

.gamma-single-view.gamma-loading {
	background: transparent url(../images/loader_dark.gif) no-repeat center center;
}


/* Make some things unselectable. Remove where selection is needed: */

.gamma-container img,
.gamma-nav span,
.gamma-buttons button,
.gamma-description-wrapper,
.gamma-description,
.gamma-description h3 {
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.img1{
	width: 100%;
	height:auto;
	float:right;
}

.rosso1{
	position:absolute;
	float:left;
	background-color:#f65058;
	width:186px;
	height:573px;
	padding-top:50px;
}

.menu{
	margin-bottom:15px;
	font-family: Futura, 'Trebuchet MS', Arial, sans-serif;
	font-size:9pt;
	color:#FFF;
	letter-spacing:2px;
}
.menu2{
	
}
#element_to_pop_up
{
	background-color: #fff;
  border-radius: 10px 10px 10px 10px;
  box-shadow: 0 0 25px 5px #999;
  color: #111;
  display: none;
  min-width: 450px;
  padding: 25px;
    min-height: 250px;
}
.button.b-close{
	display: none;
	border-radius: 7px 7px 7px 7px;
  box-shadow: none;
  font: bold 131% sans-serif;
  padding: 0 6px 2px;
  position: absolute;
  right: -7px;
  top: -7px;
    background-color: #f65058;;
  border-radius: 10px;
  box-shadow: 0 2px 3px rgba(0,0,0,0.3);
  color: #fff;
  cursor: pointer;
  display: inline-block;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
}

.menu:hover {
	
	cursor:pointer;
	
}

.logo{
	position:absolute;
	margin-top:473px;
	margin-left:418.5px;
	
}
#logo_2{
	position:fixed;
	visibility:hidden;
	margin-top:6px;
	margin-left:472px;
	z-index:1001;
	clear:both;
	
	
}

.footer{
	text-align:center;
	height:136px;
	background-color:#cbae90;
	font-family: Futura, 'Trebuchet MS', Arial, sans-serif;
	font-size:10pt;
	color:#FFF;
	margin-top:150px;
}

.tfooter{
	padding-top:60px;
	
}
.tmedio2{
	font-family: Futura, 'Trebuchet MS', Arial, sans-serif;
	font-size:29pt;
	color:#f65058;
	margin-bottom:0px;
	letter-spacing:2px;
	margin-top:80px;

}
@media screen and (max-width: 750px) {

	.gamma-description {
		top: 10px;
		left: 10px;
		bottom: 10px;
		right: 10px;
	}

	.gamma-description h3 {
		font-size: 14px;
		padding: 0 5px;
	}

}

@media screen and (max-width: 500px) {

	.gamma-buttons {
		float: left;
		clear: both;
	}

}

#menu_2
{
	
	padding:7px;
	background-color:#f65058;
	display:block;
	visibility:hidden;
	position:fixed;
	top:0px;
	text-align:center;
	padding-left:3%;
	width:108%;
	height:95px;
	left:-4%;
	z-index:100;
	text-align:center;
	box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.5);
  min-width:1100px;

}

.tmenu_2{
	margin-top:28px;
	margin-left:6.5%;
	text-align:center;
	position:relative;
	font-family: Futura, 'Trebuchet MS', Arial, sans-serif;
	font-size:9pt;
	color:#FFF;
	letter-spacing:2px;
	float:left;
}

.tmenu_3{
	margin-top:20px;
	margin-left:2.6%;
	text-align:center;
	position:relative;
	font-family: Futura, 'Trebuchet MS', Arial, sans-serif;
	font-size:9pt;
	color:#FFF;
	letter-spacing:2px;
	float:left;
}

/*.tmenu_4{
	margin-top:28px;
	margin-left:2.6%;
	text-align:center;
	position:relative;
	font-family: Futura, 'Trebuchet MS', Arial, sans-serif;
	font-size:9pt;
	color:#FFF;
	letter-spacing:2px;
	float:left;
}*/

.tmenu_2:hover {
	text-decoration:overline;
	cursor:pointer;
	
}

.tmenu_3:hover {
	text-decoration:overline;
	cursor:pointer;
	
}

.tmenu_4:hover {
	text-decoration:overline;
	cursor:pointer;
	
}
body {
	font: 100%/1.4 Verdana, Arial, Helvetica, sans-serif;
	background-color:#ffffff;
	margin: 0;
	padding: 0;
	color: #000;
	-webkit-font-smoothing: antialiased;
	
}

.link{
	text-decoration:underline;
	color: #f65058;
	}
	
.link:hover{
	/*font-size:10pt;*/
	font-weight: bold;
	
	}
.link1{
	text-decoration:underline;
	color: white;
	}
	
.link1:hover{
	/*font-size:10pt;*/
	font-weight: bold;
	
	}
@media (min-width: 1900px) and (max-width:2100px) 
{
	
.tmenu_2{

	font-size:12.5pt;
	
}

.tmenu_3{
	
	font-size:12.5pt;
}

.tmenu_4{
	
	font-size:12.5pt;
}
}
@media (min-width: 1600px) and (max-width:1900px) 
{
	
.tmenu_2{

	font-size:11pt;
	
}

.tmenu_3{
	
	font-size:11pt;
}

.tmenu_4{
	
	font-size:11pt;
}
}
@media (min-width: 1270px) and (max-width:1400px) 
{
	
.tmenu_2{

	font-size:8pt;
	
}

.tmenu_3{
	
	font-size:8pt;
}

.tmenu_4{
	
	font-size:8pt;
}
}
@media (min-width: 1200px) and (max-width:1270px) 
{
	
.tmenu_2{

	font-size:7pt;
	
}

.tmenu_3{
	
	font-size:7pt;
}
.tmenu_4{
	
	font-size:7pt;
}
}
@media (min-width: 1112px) and (max-width:1199px) 
{
	
.tmenu_2{

	font-size:6.5pt;
	
}

.tmenu_3{
	
	font-size:6.5pt;
}

.tmenu_4{
	
	font-size:6.5pt;
}
}
@media (min-width: 0px) and (max-width:1111px) 
{
	
.tmenu_2{

	font-size:6pt;
	
}

.tmenu_3{
	
	font-size:6pt;
}

.tmenu_4{
	
	font-size:6pt;
}
}
@media (min-height:960px) and (max-height:1920px) and (min-width:640px) and (max-width:1080px)
{

.tmenu_2{

	font-size:6pt;
	
}

.tmenu_3{
	
	font-size:6pt;
}

.tmenu_4{
	
	font-size:6pt;
}
	
}