/*--  Fonts --*/

@font-face { font-family: 'BG Light'; src: url('/content/fonts/bg_light.woff') format('woff'); }
@font-face { font-family: 'BG Regular'; src: url('/content/fonts/bg_regular.woff') format('woff'); }
@font-face { font-family: 'BG Medium'; src: url('/content/fonts/bg_medium.woff') format('woff'); }
@font-face { font-family: 'BG Bold'; src: url('/content/fonts/bg_bold.woff') format('woff'); }
@font-face { font-family: 'BG Black'; src: url('/content/fonts/bg_black.woff') format('woff'); }



/*--  Global --*/

html, body
{
	width: 100%;
	height: 100%;
	min-width: 1024px;
	-webkit-text-size-adjust: 100%;
	-webkit-tap-highlight-color: rgba(0,0,0,0);
}

body
{
	overflow-y: scroll;
	min-height: 670px;
}

body, p
{
	-webkit-font-smoothing: antialiased;
	-moz-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

* 
{
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

input, textarea
{
	-webkit-border-radius:0px;
	-webkit-text-size-adjust: none;
	-webkit-user-select: auto;
	-moz-box-shadow: none;
	-moz-appearance:none;
	resize: none; 
	outline: none;

	-webkit-font-smoothing: antialiased;
	-moz-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

input:focus, textarea:focus 
{
	outline: none;
}

::selection
{
	background: rgba(0,0,0,.05);
}

input::selection
{
	background: rgba(255, 255, 255,.3);
}

h1
{
	position: absolute;
	left: -1000px;
}

.scroll_page
{
	overflow-y: hidden;
}
	.scroll_page #container_inside_html_inside
	{
		overflow-x: hidden;
		overflow-y: visible;
	}

.div_scroll
{
	-webkit-transform: translateY(20px);
	-moz-transform: translateY(20px);
	transform: translateY(20px);

	-webkit-transition: -webkit-transform .5s ease-out .3s, opacity .5s ease-out .3s;
	-moz-transition: -moz-transform .5s ease-out .3s, opacity .5s ease-out .3s;
	transition: transform .5s ease-out .3s, opacity .5s ease-out .3s;

	opacity: 0;
}
	.div_scroll.open
	{
		-webkit-transform: translateY(0px);
		-moz-transform: translateY(0px);
		transform: translateY(0px);

		opacity:1;
	}



/*--  Preloader --*/

#preloader
{
	position: fixed;
	opacity: 0;
	top: 0px;
	right: 0px;
	bottom: 0px;
	left: 0px;
	
	-webkit-transition: opacity .5s;
	-moz-transition: opacity .5s;
	transition: opacity .5s;
}
	#preloader_bg
	{
		position: absolute;
		display: block;
		top: 0px;
		right: 0px;
		bottom: 0px;
		left: 0px;
		background: url('/content/images/preloader_bg.jpg?1') center bottom #bab6b3;
		background-size: cover;

		-webkit-backface-visibility: hidden;
		-moz-backface-visibility: hidden;
		backface-visibility: hidden;

		-webkit-transform: scale(1.2);
		-moz-transform: scale(1.2);
		transform: scale(1.2);
	}

	#preloader_inside
	{
		position: absolute;
		left: 50%;
		top: 50%;
		width: 400px;
		height: 62px;
		margin-left: -172px;
		margin-top: -60px;
	}
		#preloader_text1, #preloader_text2
		{
			position: absolute;
			left: 48px;
			top: 18px;
			letter-spacing: 4px;

			font-family: 'BG Medium';
			font-size: 22px;
			color: #FFF;
		}

		#preloader_text2
		{
			left: 176px;

			font-family: 'BG Light';
			transform-style: preserve-3d;

			-webkit-perspective: 1600px;
			-moz-perspective: 1600px;
			perspective: 1600px;
		}
			#preloader_text1, #preloader_text2_1, #preloader_text2_2, #preloader_text2_3, #preloader_text2_4
			{
				position: absolute;
				opacity: 0;

				-webkit-backface-visibility: hidden;
				-moz-backface-visibility: hidden;
				backface-visibility: hidden;

				-webkit-transition: -webkit-transform .7s, opacity .7s;
				-moz-transition: -moz-transform .7s, opacity .7s;
				transition: transform .7s, opacity .7s;
			}
			
			#preloader_text2_1
			{
				-webkit-transform: rotateX(0deg) translateZ(30px); 
				-moz-transform: rotateX(0deg) translateZ(30px); 
				transform: rotateX(0deg) translateZ(30px); 
			}
			
			#preloader_text2_2 
			{ 
				-webkit-transform: rotateX(90deg) translateZ(30px); 
				-moz-transform: rotateX(90deg) translateZ(30px); 
				transform: rotateX(90deg) translateZ(30px); 
			}
			
			#preloader_text2_3 
			{ 
				-webkit-transform: rotateX(180deg) translateZ(30px); 
				-moz-transform: rotateX(180deg) translateZ(30px); 
				transform: rotateX(180deg) translateZ(30px); 
			}
			
			#preloader_text2_4, #preloader_text1
			{ 
				-webkit-transform: rotateX(270deg) translateZ(30px); 
				-moz-transform: rotateX(270deg) translateZ(30px); 
				transform: rotateX(270deg) translateZ(30px); 
			}

		#preloader_line1, #preloader_line2
		{
			position: absolute;
			left: 152px;
			height: 0px;
			border-right: 1px solid;
			
			-webkit-transition: height .5s;
			-moz-transition: height .5s;
			transition: height .5s;
		}

		#preloader_line1
		{
			top: 0px;
			border-right-color: rgba(200,200,200,.3);
		}

		#preloader_line2
		{
			bottom: 0px;
			border-right-color: rgba(255,255,255,.6);
		}



/*-- MENU --*/

#menu
{
	display: none;
	opacity: 0;

	-webkit-transition: opacity .5s;
	-moz-transition: opacity .5s;
	transition: opacity .5s;
}

	#menu_logo
	{
		position: absolute;
		left: 22px;
		top: 25px;
		width: 46px;
		height: 46px;
		cursor: pointer;
	}

		#menu_logo_white, #menu_logo_black
		{
			position: absolute;
			top: 0px;
			right: 0px;
			bottom: 0px;
			left: 0px;
			transition: opacity .5s;
		}

		#menu_logo_white
		{
			background-image: url('/content/images/logo.png');
		}

		#menu_logo_black
		{
			opacity: 0;
			background-image: url('/content/images/logo2.png');
		}

		body:not(.open).menu-black #menu_logo_white
		{
			opacity: 0;
		}

		body:not(.open).menu-black #menu_logo_black
		{
			opacity: 1;
		}

	#menu_button
	{
		position: absolute;
		top: 18px;
		width: 60px;
		height: 60px;
	}

		#menu_button1
		{
			position: absolute;
			left: 8px;
			top: 16px;

			-webkit-transition: opacity .2s;
			-moz-transition: opacity .2s;
			transition: opacity .2s;
		}
			#menu_button1_1, #menu_button1_2,  #menu_button1_3
			{
				position: absolute;
				left: 0px;
				top: 0px;
				width: 42px;
				height: 5px;
				background-color: #FFF;

				transition: background-color .5s;
			}

			body:not(.open).menu-black #menu_button1_1, 
			body:not(.open).menu-black #menu_button1_2,  
			body:not(.open).menu-black #menu_button1_3
			{
				background-color: #000 !important;
			}

			#menu_button1_2 { top: 12px; }
			#menu_button1_3 { top: 24px; }

		#menu_button2
		{
			position: absolute;
			left: 6px;
			top: 28px;
			opacity: 0;

			-webkit-transition: opacity .2s;
			-moz-transition: opacity .2s;
			transition: opacity .2s;
		}

			#menu_button2_1, #menu_button2_2
			{
				position: absolute;
				left: 0px;
				top: 0px;
				width: 46px;
				height: 5px;
				background-color: #FFF;
			}

			#menu_button2_1
			{
				-webkit-transform: rotate(45deg);
				-moz-transform: rotate(45deg);
				transform: rotate(45deg);
			}

			#menu_button2_2
			{
				-webkit-transform: rotate(-45deg);
				-moz-transform: rotate(-45deg);
				transform: rotate(-45deg);
			}

	#menu_button.open #menu_button1
	{
		opacity: 0;
	}
	
	#menu_button.open #menu_button2
	{
		opacity: 1;
	}

	#menu_social
	{
		position: absolute;
		left: 20px;
	}
		.menu_social_each
		{
			position: relative;
			float: left;
			margin: 5px;
			padding: 5px;
			width: 20px;
			height: 20px;
			cursor: pointer;
			font-size: 20px;
			color: #FFF;

			transition: color .5s;
		}

		body:not(.open).menu-black .menu_social_each
		{
			color: #000;
		}

	#menu_copyright
	{
		position: absolute;
		width: 13px;
		height: 100px;
	}
		
		#menu_copyright p
		{
			position: absolute;
			left: -46px;
    		top: 36px;
			color: #FFF;

			font-family: 'BG Medium';
			font-size: 12px;
			white-space: nowrap;

			-webkit-transform: rotate(-90deg);
			-moz-transform: rotate(-90deg);
			transform: rotate(-90deg);

			transition: color .5s;
		}

		body:not(.open).menu-black #menu_copyright p
		{
			color: #000;
		}


	#menu_gallery_nav, #menu_gallery_nav2, #menu_gallery_nav3
	{
		display: none;
		position: absolute;
		width: 64px;
		height: 194px;
		top: 50%;
		margin-top: -97px;
		pointer-events: none;

		-webkit-transition: opacity .5s;
		-moz-transition: opacity .5s;
		transition: opacity .5s;
	}

	#menu_gallery_nav2
	{
		left: 13px;
		margin-top: -90px;
		height: 97px;
		opacity: 0;
	}

	#menu_gallery_nav2.fadeIn
	{
		pointer-events: auto; opacity: 1;
	}
	#menu_gallery_nav2.unabled
	{
		opacity: 0 !important;
		pointer-events: none !important;
	}

		#menu_gallery_nav2_label
		{
			position: absolute;
			left: 0px;
			bottom: 0px;
			width: 64px;

			font-family: 'BG Medium';
			font-size: 14px;
			text-align: center;
			letter-spacing: 1px;
			color: #FFF;
		}

	.open #menu_gallery_nav, .open #menu_gallery_nav2, .open #menu_marca
	{
		opacity: 0 !important;
		pointer-events: none;
	}

	#menu_gallery_nav.prepareLeft { left: 13px !important; opacity: 0; }
	#menu_gallery_nav.prepareRight { opacity: 0; }

	#menu_gallery_nav.fadeInLeft { pointer-events: auto; left: 13px !important; opacity: 1; }
	#menu_gallery_nav.fadeInRight { pointer-events: auto; opacity: 1; }

		#menu_gallery_up, #menu_gallery_down, #menu_gallery_top,
		#menu_gallery_up3, #menu_gallery_down3, #menu_gallery_top3
		{
			position: absolute;
			width: 64px;
			height: 64px;
			left: 0px;

			background: url('/content/images/campanha_arrow_up.svg') no-repeat center;

			-webkit-transition: opacity .3s;
			-moz-transition: opacity .3s;
			transition: opacity .3s;
		}

		#menu_gallery_up, #menu_gallery_up3 { top: 0px; }
		#menu_gallery_down, #menu_gallery_down3 { bottom: 0px; background-image: url('/content/images/campanha_arrow_down.svg'); }
		#menu_gallery_top { top: 0px;  background-image: url('/content/images/campanha_arrow_top.svg'); }

			.menu_gallery_circle
			{
				position: absolute;
				left: 50%;
				top: 50%;
				width: 62px;
				height: 62px;
				margin-left: -32px;
				margin-top: -32px;
				border: 1px solid #FFF;
				opacity: 0;

				-webkit-transform: scale(1.2);
				-moz-transform: scale(1.2);
				transform: scale(1.2);

				-webkit-border-radius: 70px;
				-moz-border-radius: 70px;
				border-radius: 70px;

				cursor: pointer;
			}

		#menu_gallery_up.unabled, #menu_gallery_down.unabled,
		#menu_gallery_up3.unabled, #menu_gallery_down3.unabled
		{
			opacity: .1;
			pointer-events: none;
		}


		#menu_gallery_number, #menu_gallery_number3
		{
			position: absolute;
			left: 0px;
			top: 50%;
			width: 64px;
			height: 28px;
			margin-top: -19px;
			overflow: hidden;

			font-family: 'BG Medium';
			font-size: 20px;
			text-align: center;
			color: #FFF;
		}
			#menu_gallery_number_inside, #menu_gallery_number_inside3
			{
				-webkit-transition: -webkit-transform .4s ease-out;
				-moz-transition: -moz-transform .4s ease-out;
				transition: transform .4s ease-out;
			}
				.menu_gallery_number_inside_each
				{
					position: relative;
					height: 30px;
					overflow: hidden;
				}


	#menu_video_close
	{
		display: none;
		position: absolute;
		top: 15px;
		right: 5px;
		margin-right: 15px;
		opacity: 0;
		width: 64px;
		height: 64px;
		background-color: rgba(0,0,0,0.001);

		-webkit-transition: opacity .5s;
		-moz-transition: opacity .5s;
		transition: opacity .5s;
	}
		

	#menu_video_close.fadeIn
	{
		opacity: 1;
		cursor: pointer;
	}

			#menu_video_close_inside
			{
				position: absolute;
				width: 64px;
				height: 64px;
				top: 0px;
				right: 0px;
				cursor: pointer;

				-webkit-transform: rotate(-45deg);
				-moz-transform: rotate(-45deg);
				transform: rotate(-45deg);
			}

				#menu_video_close_inside1, #menu_video_close_inside2
				{
					position: absolute;
					left: 19px;
					top: 30px;
					width: 26px;
					border-bottom: 3px solid #FFF;
					cursor: pointer;
				}

				#menu_video_close_inside2
				{
					-webkit-transform: rotate(90deg);
					-moz-transform: rotate(90deg);
					transform: rotate(90deg);

					-webkit-transform-origin: 50% 2px;
					-moz-transform-origin: 50% 2px;
					transform-origin: 50% 2px;
				}		

				#menu_video_close .menu_gallery_circle
				{
					left: 0px;
					top: 0px;
					margin: 0px;
					cursor: pointer;
				}

	#menu_blog_cats
	{
		display: none;
		position: absolute;
		top: 50%;
		left: 13px;
		pointer-events: none;
		opacity: 0;

		-webkit-transition: opacity .5s;
		-moz-transition: opacity .5s;
		transition: opacity .5s;
	}

	.open #menu_blog_cats
	{
		opacity: 0 !important;
		pointer-events: none;
	}

	#menu_blog_cats.fadeIn
	{
		opacity: 1;
		pointer-events: auto;
	}
		#menu_blog_cats_button
		{
			position: absolute;
			width: 64px;
			height: 64px;
			top: -32px;
			left: 0px;
			cursor: pointer;
		}
			#menu_blog_cats .menu_gallery_circle
			{
				border-color: #AAA;
			}

			#menu_blog_cats_button_circle1, #menu_blog_cats_button_circle2, #menu_blog_cats_button_circle3
			{
				position: absolute;
				left: 29px;
				top: 29px;
				width: 7px;
				height: 7px;
				background-color: #AAA;

				-webkit-border-radius: 10px;
				-moz-border-radius: 10px;
				border-radius: 10px;

				-webkit-transition: opacity .3s .3s, margin-top .4s .2s;
				-moz-transition: opacity .3s .3s, margin-top .4s .2s;
				transition: opacity .3s .3s, margin-top .4s .2s;
			}

			#menu_blog_cats_button_circle1
			{
				margin-top: -14px;
			}

			#menu_blog_cats_button_circle3
			{
				margin-top: 14px;
			}

		#menu_blog_cats_cats
		{
			display: none;
			position: relative;
			margin-left: -13px;
			padding: 28px 50px;
		}
			.menu_blog_cats_each
			{
				margin: 4px 0px 5px;
				
				cursor: pointer;
				opacity: 0;

				-webkit-transform: translateX(20px);
				-moz-transform: translateX(20px);
				transform: translateX(20px);

				-webkit-transition: opacity .4s, -webkit-transform 0s .4s;
				-moz-transition: opacity .4s, -moz-transform 0s .4s;
				transition: opacity .4s, transform 0s .4s;
			}

			#menu_blog_cats.open .menu_blog_cats_each:nth-child(1) { -webkit-transition-delay: .5s; -moz-transition-delay: .5s; transition-delay: .5s; }
			#menu_blog_cats.open .menu_blog_cats_each:nth-child(2) { -webkit-transition-delay: .6s; -moz-transition-delay: .6s; transition-delay: .6s; }
			#menu_blog_cats.open .menu_blog_cats_each:nth-child(3) { -webkit-transition-delay: .7s; -moz-transition-delay: .7s; transition-delay: .7s; }
			#menu_blog_cats.open .menu_blog_cats_each:nth-child(4) { -webkit-transition-delay: .8s; -moz-transition-delay: .8s; transition-delay: .8s; }
			#menu_blog_cats.open .menu_blog_cats_each:nth-child(5) { -webkit-transition-delay: .9s; -moz-transition-delay: .9s; transition-delay: .9s; }
			#menu_blog_cats.open .menu_blog_cats_each:nth-child(6) { -webkit-transition-delay: 1s; -moz-transition-delay: 1s; transition-delay: 1s; }
			#menu_blog_cats.open .menu_blog_cats_each:nth-child(7) { -webkit-transition-delay: 1.1s; -moz-transition-delay: 1.1s; transition-delay: 1.1s; }
			#menu_blog_cats.open .menu_blog_cats_each:nth-child(8) { -webkit-transition-delay: 1.2s; -moz-transition-delay: 1.2s; transition-delay: 1.2s; }
			#menu_blog_cats.open .menu_blog_cats_each:nth-child(9) { -webkit-transition-delay: 1.3s; -moz-transition-delay: 1.3s; transition-delay: 1.3s; }
			#menu_blog_cats.open .menu_blog_cats_each:nth-child(10) { -webkit-transition-delay: 1.4s; -moz-transition-delay: 1.4s; transition-delay: 1.4s; }

				.menu_blog_cats_each_inside
				{
					font-family: 'BG Medium';
					font-size: 15px;
					letter-spacing: 1px;
					color: #AAA;

					-webkit-transition: color .2s;
					-moz-transition: color .2s;
					transition: color .2s;
				}			

	#menu_blog_cats.open #menu_blog_cats_button, #menu_blog_cats.open .menu_gallery_circle
	{
		cursor: default;
	}

	#menu_blog_cats.open .menu_gallery_circle
	{
		opacity: 0 !important;
	}

	#menu_blog_cats.open #menu_blog_cats_button_circle1, #menu_blog_cats.open #menu_blog_cats_button_circle2, #menu_blog_cats.open #menu_blog_cats_button_circle3
	{
		-webkit-transition: opacity .3s .2s, margin-top .4s cubic-bezier(0.585, 0.010, 0.975, 0.700);
		-moz-transition: opacity .3s .2s, margin-top .4s cubic-bezier(0.585, 0.010, 0.975, 0.700);
		transition: opacity .3s .2s, margin-top .4s cubic-bezier(0.585, 0.010, 0.975, 0.700);

		margin-top: 0px;
		opacity: 0;
	}

	#menu_blog_cats.open .menu_blog_cats_each
	{
		opacity: 1;

		-webkit-transform: translateX(0px);
		-moz-transform: translateX(0px);
		transform: translateX(0px);

		-webkit-transition: opacity .4s, -webkit-transform .4s;
		-moz-transition: opacity .4s, -moz-transform .4s;
		transition: opacity .4s, transform .4s;
	}

	#menu_blog_share
	{
		display: none;
		position: absolute;
		top: 50%;
		left: 13px;
		pointer-events: none;
		opacity: 0;

		-webkit-transition: opacity .5s;
		-moz-transition: opacity .5s;
		transition: opacity .5s;
	}

	.open #menu_blog_share
	{
		opacity: 0 !important;
		pointer-events: none;
	}

	#menu_blog_share.fadeIn
	{
		opacity: 1;
		pointer-events: auto;
	}
	
		#menu_blog_share_button
		{
			position: absolute;
			width: 64px;
			height: 64px;
			top: -32px;
			left: 0px;
			cursor: pointer;
			background: url('/content/images/blog_post_share_icon.svg') center no-repeat;

			-webkit-transition: opacity .3s .3s, margin-top .4s .2s;
			-moz-transition: opacity .3s .3s, margin-top .4s .2s;
			transition: opacity .3s .3s, margin-top .4s .2s;
		}

			#menu_blog_share .menu_gallery_circle
			{
				border-color: #AAA;
			}

		#menu_blog_share_icons
		{
			display: none;
			position: relative;
			margin-left: -28px;
			margin-top: -170px;
			padding: 28px 50px;
		}
			.menu_blog_share_each
			{
				margin: 4px 0px 5px;
				padding: 10px;
				
				cursor: pointer;
				opacity: 0;

				-webkit-transform: translateX(20px);
				-moz-transform: translateX(20px);
				transform: translateX(20px);

				-webkit-transition: opacity .4s, -webkit-transform 0s .4s;
				-moz-transition: opacity .4s, -moz-transform 0s .4s;
				transition: opacity .4s, transform 0s .4s;
			}

				#menu_blog_share.open .menu_blog_share_each:nth-child(1) { -webkit-transition-delay: .5s; -moz-transition-delay: .5s; transition-delay: .5s; }
				#menu_blog_share.open .menu_blog_share_each:nth-child(2) { -webkit-transition-delay: .6s; -moz-transition-delay: .6s; transition-delay: .6s; }
				#menu_blog_share.open .menu_blog_share_each:nth-child(3) { -webkit-transition-delay: .7s; -moz-transition-delay: .7s; transition-delay: .7s; }
				#menu_blog_share.open .menu_blog_share_each:nth-child(4) { -webkit-transition-delay: .8s; -moz-transition-delay: .8s; transition-delay: .8s; }
				#menu_blog_share.open .menu_blog_share_each:nth-child(5) { -webkit-transition-delay: .9s; -moz-transition-delay: .9s; transition-delay: .9s; }
				#menu_blog_share.open .menu_blog_share_each:nth-child(6) { -webkit-transition-delay: 1s; -moz-transition-delay: 1s; transition-delay: 1s; }

				.menu_blog_share_each_inside
				{
					font-family: 'BG Medium';
					font-size: 20px;
					letter-spacing: 1px;
					text-align: center;
					color: #AAA;

					-webkit-transition: color .2s;
					-moz-transition: color .2s;
					transition: color .2s;
				}

				#menu_blog_share.open #menu_blog_share_button
				{
					cursor: default;
				}

				#menu_blog_share.open .menu_gallery_circle
				{
					opacity: 0 !important;
				}

				#menu_blog_share.open #menu_blog_share_button
				{
					-webkit-transition: opacity .3s .2s;
					-moz-transition: opacity .3s .2s;
					transition: opacity .3s .2s;

					margin-top: 0px;
					opacity: 0;
				}

				#menu_blog_share.open .menu_blog_share_each
				{
					opacity: 1;

					-webkit-transform: translateX(0px);
					-moz-transform: translateX(0px);
					transform: translateX(0px);

					-webkit-transition: opacity .4s, -webkit-transform .4s;
					-moz-transition: opacity .4s, -moz-transform .4s;
					transition: opacity .4s, transform .4s;
				}

				.menu_blog_share_each:nth-child(1) .menu_blog_share_each_inside { font-size: 22px; }
				.menu_blog_share_each:nth-child(2) .menu_blog_share_each_inside { font-size: 23px; }
				.menu_blog_share_each:nth-child(3) .menu_blog_share_each_inside { font-size: 20px; }
				.menu_blog_share_each:nth-child(4) .menu_blog_share_each_inside { font-size: 23px; }
				.menu_blog_share_each:nth-child(5) .menu_blog_share_each_inside { font-size: 20px; }
				.menu_blog_share_each:nth-child(6) .menu_blog_share_each_inside { font-size: 21px; }

	#menu_blog_close
	{
		display: none;
		position: absolute;
		top: 50%;
		right: 13px;
		margin-right: 15px;
		pointer-events: none;
		opacity: 0;

		-webkit-transition: opacity .5s;
		-moz-transition: opacity .5s;
		transition: opacity .5s;
	}

	.open #menu_blog_close
	{
		opacity: 0 !important;
		pointer-events: none;
	}

	#menu_blog_close.fadeIn
	{
		opacity: 1;
		pointer-events: auto;
	}
		#menu_blog_close_button
		{
			position: absolute;
			width: 64px;
			height: 64px;
			top: -32px;
			right: 0px;
			cursor: pointer;
		}
			#menu_blog_close .menu_gallery_circle
			{
				border-color: #AAA;
			}

			#menu_blog_close_inside
			{
				position: absolute;
				width: 64px;
				height: 64px;
				top: -32px;
				right: 0px;

				-webkit-transform: rotate(-45deg);
				-moz-transform: rotate(-45deg);
				transform: rotate(-45deg);
			}

				#menu_blog_close_inside1, #menu_blog_close_inside2
				{
					position: absolute;
					left: 19px;
					top: 30px;
					width: 26px;
					border-bottom: 3px solid #AAA;
				}

				#menu_blog_close_inside2
				{
					-webkit-transform: rotate(90deg);
					-moz-transform: rotate(90deg);
					transform: rotate(90deg);

					-webkit-transform-origin: 50% 2px;
					-moz-transform-origin: 50% 2px;
					transform-origin: 50% 2px;
				}

	#menu_texture
	{
		position: absolute;
		display: none;
		top: 0px;
		left: 0px;
		/*background: url('/content/images/menu_texture.jpg') center;*/
		/*background-size: cover;*/
		background: #bab6b3;
		opacity: 0;

		-webkit-transition: opacity .3s ease-out;
		-moz-transition: opacity .3s ease-out;
		transition: opacity .3s ease-out;
	}

	#menu_title
	{
		position: absolute;
		display: none;
		left: 0px;
		top: 15%;
		width: 400px;
		margin-left: -200px;
		opacity: 0;
		cursor: pointer;

		font-family: 'BG Bold';
		font-size: 16px;
		text-align: center;
		letter-spacing: 4px;
		/*color: #AAA;*/
		color: #fff;

		-webkit-transition: opacity .3s, color .3s;
		-moz-transition: opacity .3s, color .3s;;
		transition: opacity .3s, color .3s;;
	}

	#menu_container_main
	{
		position: absolute;
		display: none;
		left: 0px;
		top: 50%;
		width: 100%;
		height: 240px;
		margin-top: -140px;

		transform-style: preserve-3d;
	}
		.menu_each
		{
			position: relative;
			float: left;
			width: 256px;
			height: 240px;
			opacity: 0;
			display: none;

			-webkit-transition: opacity .3s ease-out, -webkit-transform .3s ease-out;
			-moz-transition: opacity .3s ease-out, -moz-transform .3s ease-out;
			transition: opacity .3s ease-out, transform .3s ease-out;

			-webkit-backface-visibility: hidden;
			-moz-backface-visibility: hidden;
			backface-visibility: hidden;

			transform-style: preserve-3d;
		}
			.menu_each_texture
			{
				position: absolute;
				left: 0px;
				top: 75px;
				width: 0%;
				height: 80px;
				margin-left: 10px;
				background: left no-repeat;
			}
			
			.menu_each:nth-child(1) .menu_each_texture
			{
				background-image: url('/content/images/menu_each_texture1.png');
			}
			.menu_each:nth-child(2) .menu_each_texture
			{
				background-image: url('/content/images/menu_each_texture2.png');
			}
			.menu_each:nth-child(3) .menu_each_texture
			{
				background-image: url('/content/images/menu_each_texture3.png');
			}
			.menu_each:nth-child(4) .menu_each_texture
			{
				background-image: url('/content/images/menu_each_texture4.png');
			}
			
			.menu_each_label
			{
				position: absolute;
				left: 28px;
				top: 100px;
				width: 200px;
				
				-webkit-backface-visibility: hidden;
				-moz-backface-visibility: hidden;
				backface-visibility: hidden;

				font-family: 'BG Bold';
				font-size: 23px;
				letter-spacing: 2px;
				text-indent: 10px;
				text-align: center;
				color: #FFF;
			}

			.menu_each_soon
			{
				position: absolute;
				left: 28px;
				top: 165px;
				width: 200px;
				opacity: 0;
				
				-webkit-backface-visibility: hidden;
				-moz-backface-visibility: hidden;
				backface-visibility: hidden;

				font-family: 'BG Bold';
				font-size: 14px;
				letter-spacing: 3px;
				text-align: center;
				color: #545454;
			}

			

	#menu_container_bottom
	{
		position: absolute;
		display: none;
		left: 0px;
		bottom: 15%;
		width: 463px;
		margin-left: -227px;
		opacity: 0;

		font-family: 'BG Bold';
		font-size: 12px;
		text-align: center;
		letter-spacing: 3px;
		color: #fff;

		-webkit-transition: opacity .3s;
		-moz-transition: opacity .3s;
		transition: opacity .3s;
	}
		.menu_bottom_each
		{
			position: relative;
			float: left;
			padding: 10px;
			margin-left: 18px;
			margin-right: 18px;
		}

		.menu_bottom_each_line
		{
			position: absolute;
			left: 50%;
			width: 0%;
			border-bottom: 1px solid #FFF;
		}

.open .menu_each
{
	-webkit-transition: opacity .5s ease-out, -webkit-transform .3s ease-out;
	-moz-transition: opacity .5s ease-out, -moz-transform .3s ease-out;
	transition: opacity .5s ease-out, transform .3s ease-out;
}		

.open #menu_title, 
.open .menu_each, 
.open #menu_container_bottom
{
	opacity: 1;
}

.open #menu_texture
{
	opacity: .95;
}

.open #menu_title
{
	-webkit-transition: opacity .3s .3s, color .3s;
	-moz-transition: opacity .3s .3s, color .3s;
	transition: opacity .3s .3s, color .3s;
}

.open .menu_each:nth-child(1)
{
	-webkit-transition-delay: .4s;
	-moz-transition-delay: .4s;
	transition-delay: .4s;
}

.open .menu_each:nth-child(2)
{
	-webkit-transition-delay: .5s;
	-moz-transition-delay: .5s;
	transition-delay: .5s;
}

.open .menu_each:nth-child(3)
{
	-webkit-transition-delay: .6s;
	-moz-transition-delay: .6s;
	transition-delay: .6s;
}

.open .menu_each:nth-child(4)
{
	-webkit-transition-delay: .7s;
	-moz-transition-delay: .7s;
	transition-delay: .7s;
}

.open #menu_container_bottom
{
	-webkit-transition-delay: .8s;
	-moz-transition-delay: .8s;
	transition-delay: .8s;
}

#menu_social, #menu_copyright, #menu_button 
{
	-webkit-transition: opacity .5s;
	-moz-transition: opacity .5s;
	transition: opacity .5s;
}


#menu_social.fadeOut , #menu_copyright.fadeOut , #menu_button.fadeOut 
{
	opacity: 0;
	pointer-events: none;
	z-index: -1;
}


/*-- PÁGINA --*/

#container
{
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

	#container_inside
	{
		-webkit-perspective: 1000px;
		-moz-perspective: 1000px;
		perspective: 1000px;

		position: absolute;
		left: 0px;
		top: 0px;
		width: 100%;
		height: 100%;
		overflow: hidden;
	}

		#container_inside_html
		{
			position: relative;
			height: 100%;

			-webkit-perspective: 2000px;
			-moz-perspective: 2000px;
			perspective: 2000px;
			
			-webkit-transition: -webkit-transform 1s;
			-moz-transition: -moz-transform 1s;
			-ms-transition: -ms-transform 1s;
			transition: transform 1s;
		}

			.fadeOut #container_inside_html
			{
				-webkit-transform: translateZ(-200px);
				-moz-transform: translateZ(-200px);
				transform: translateZ(-200px);

				-webkit-transition-delay: 0s;
				-moz-transition-delay: 0s;
				transition-delay: 0s;
			}

			.fadeIn #container_inside_html
			{
				-webkit-transform: translateZ(0px);
				-moz-transform: translateZ(0px);
				transform: translateZ(0px);
			}


			#container_inside_html_inside
			{
				position: relative;
				height: 100%;
				overflow: hidden;

				-webkit-transition: -webkit-transform 1s, opacity 1s;
				-moz-transition: -moz-transform 1s, opacity 1s;
				-ms-transition: -ms-transform 1s, opacity 1s;
				transition: transform 1s, opacity 1s;
			}
				.fadeOut #container_inside_html_inside
				{
					opacity: 0;

					-webkit-transform: rotateX(0deg) translateZ(400px);
					-moz-transform: rotateX(0deg) translateZ(500px);
					transform: rotateX(0deg) translateZ(500px);
				}

				.preloading #container_inside_html_inside
				{
					-webkit-transform: rotateX(-20deg) translateZ(300px);
					-moz-transform: rotateX(-20deg) translateZ(300px);
					transform: rotateX(-20deg) translateZ(300px);
				}

				#page_title
				{
					position: absolute;
					left: 50%;
					top: 30%;
					width: 1000px;
					margin-left: -500px;
					margin-top: -40px;

					font-family: 'BG Black';
					font-size: 110px;
					text-align: center;
					letter-spacing: 20px;
					text-indent: 20px;
					color: #FFF;

					-webkit-perspective: 1000px;
					-moz-perspective: 1000px;
					perspective: 1000px;
				}

					#page_title_inside
					{
						opacity: 0;
						
						-webkit-transform: rotateX(50deg);
						-moz-transform: rotateX(50deg);
						transform: rotateX(50deg);

						-webkit-transition: -webkit-transform .7s .2s, opacity .4s .2s;
						-moz-transition: -moz-transform .7s .2s, opacity .4s .2s;
						transition: transform .7s .2s, opacity .4s .2s;
					}

					#page_title.fadeIn #page_title_inside
					{
						opacity: 1;

						-webkit-transform: rotateX(0deg);
						-moz-transform: rotateX(0deg);
						transform: rotateX(0deg);
					}

				#page_subtitle
				{
					position: absolute;
					left: 50%;
					top: 30%;
					width: 500px;
					margin-left: -250px;
					margin-top: 100px;
					opacity: 0;

					font-family: 'BG Black';
					font-size: 22px;
					text-align: center;
					letter-spacing: 5px;
					color: #FFF;
					
					-webkit-transform: translate3d(0px,10px,0px);
					-moz-transform: translate3d(0px,10px,0px);
					transform: translate3d(0px,10px,0px);

					-webkit-transition: -webkit-transform .4s .3s, opacity .4s .3s;
					-moz-transition: -moz-transform .4s .3s, opacity .4s .3s;
					transition: transform .4s .3s, opacity .4s .3s;
				}
					#page_subtitle.fadeIn 
					{
						opacity: 1;

						-webkit-transform: translate3d(0px,0px,0px);
						-moz-transform: translate3d(0px,0px,0px);
						transform: translate3d(0px,0px,0px);
					}


				#page_center_line
				{
					position: absolute;
					left: 50%;
					top: 56%;
					width: 1px;
					height: 0%;
					background-color: #FFF;

					-webkit-transition: height .2s .4s;
					-moz-transition: height .2s .4s;
					transition: height .2s .4s;
				}

				#page_bottom
				{
					position: absolute;
					width: 140px;
					height: 150px;
					left: 50%;
					top: 85%;
					margin-left: -70px;
					margin-top: -80px;
				}

					#page_bottom1
					{
						font-family: 'Bg Black';
						font-size: 22px;
						text-align: center;
						letter-spacing: 4px;
						color: #FFF;
						opacity: 0;

						-webkit-transition: opacity .5s .5s;
						-moz-transition: opacity .5s .5s;
						transition: opacity .5s .5s;
					}

					#page_bottom2
					{
						font-family: 'Bg Light';
						font-size: 14px;
						text-align: center;
						letter-spacing: 3px;
						color: #FFF;
						opacity: 0;

						-webkit-transition: opacity .5s .6s;
						-moz-transition: opacity .5s .6s;
						transition: opacity .5s .6s;
					}

				#page_bottom.fadeIn #page_bottom1, #page_bottom.fadeIn #page_bottom2
				{
					opacity: 1;
				}

				#page_center_line.fadeIn
				{
					height: 13%;
				}


				#page_bottom_down
				{
					position: absolute;
					left: 31px;
					bottom: 0px;
					width: 78px;
					height: 78px;
					cursor: pointer;
				}
					#page_bottom_down_circle
					{
						position: absolute;
						left: 50%;
						top: 50%;
						width: 78px;
						height: 78px;
						margin-left: -39px;
						margin-top: -39px;
						border: 1px solid #FFF;
						opacity: 0;

						-webkit-transform: scale(1.2);
						-moz-transform: scale(1.2);
						transform: scale(1.2);

						-webkit-border-radius: 70px;
						-moz-border-radius: 70px;
						border-radius: 70px;
					}

					#page_bottom_down_line1, #page_bottom_down_line2
					{
						position: absolute;
						left: 39px; 
						top: 22px; 
						height: 0px;
						width: 1px;
						background-color: #FFF;

						-webkit-transform-origin: 50% 100%;
						-moz-transform-origin: 50% 100%;
						transform-origin: 50% 100%;

						-webkit-transition: top .25s;
						-moz-transition: top .25s;
						transition: top .25s;
					}

					#page_bottom.fadeIn #page_bottom_down_line1, #page_bottom_down.fadeIn #page_bottom_down_line1
					{
						-webkit-animation: pageBottomLineAnimation1 1s .5s 1 forwards;
						-moz-animation: pageBottomLineAnimation1 1s .5s 1 forwards;
						animation: pageBottomLineAnimation1 1s .5s 1 forwards;
					}

					#page_bottom.fadeIn #page_bottom_down_line2, #page_bottom_down.fadeIn #page_bottom_down_line2
					{
						-webkit-animation: pageBottomLineAnimation2 1s .5s 1 forwards;
						-moz-animation: pageBottomLineAnimation2 1s .5s 1 forwards;
						animation: pageBottomLineAnimation2 1s .5s 1 forwards;
					}

					@-webkit-keyframes pageBottomLineAnimation1 { 0% { height: 0px; } 25% { height: 13px; -webkit-transform: rotate(0deg); } 40% { -webkit-transform: rotate(45deg); } 100% { height: 13px; -webkit-transform: rotate(45deg); }}
					@-moz-keyframes pageBottomLineAnimation1 { 0% { height: 0px; } 25% { height: 13px; -moz-transform: rotate(0deg); } 40% { -moz-transform: rotate(45deg); } 100% { height: 13px; -moz-transform: rotate(45deg); }}
					@keyframes pageBottomLineAnimation1 { 0% { height: 0px; } 25% { height: 13px; transform: rotate(0deg); } 40% { transform: rotate(45deg); } 100% { height: 13px; transform: rotate(45deg); }}
					
					@-webkit-keyframes pageBottomLineAnimation2 { 0% { height: 0px; } 25% { height: 13px; -webkit-transform: rotate(0deg); } 40% { -webkit-transform: rotate(-45deg); } 100% { height: 13px; -webkit-transform: rotate(-45deg); }}
					@-moz-keyframes pageBottomLineAnimation2 { 0% { height: 0px; } 25% { height: 13px; -moz-transform: rotate(0deg); } 40% { -moz-transform: rotate(-45deg); } 100% { height: 13px; -moz-transform: rotate(-45deg); }}
					@keyframes pageBottomLineAnimation2 { 0% { height: 0px; } 25% { height: 13px; transform: rotate(0deg); } 40% { transform: rotate(-45deg); } 100% { height: 13px; transform: rotate(-45deg); }}



.preloadSite_false #container_inside_html, .preloadSite_false #container_inside_html_inside
{
	-webkit-transition: none;
	-moz-transition: none;
	-ms-transition: none;
	transition: none;
}


.subpagetransition
{
	background-color: #FFF !important;
}

.subpagetransition #preloader
{
	display: none !important;
}

.subpagetransition #container_inside_html, .subpagetransition #container_inside_html_inside
{
	-webkit-transform: none !important;
	-moz-transform: none !important;
	transform: none !important;

	-webkit-transition-duration: .5s;
	-moz-transition-duration: .5s;
	transition-duration: .5s;
}


#video_container
{
	display: none;
	position: fixed;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	background-color: #000;
	overflow: hidden;
	opacity: 0;

	-webkit-transition: opacity .5s;
	-moz-transition: opacity .5s;
	transition: opacity .5s;
}

#video_container.fadeIn
{
	opacity: 1;
}

	#video_player
	{
		position: absolute;
		display: none;
		opacity: 0;
		
		-webkit-transition: opacity .5s;
		-moz-transition: opacity .5s;
		transition: opacity .5s;
	}

	#video_player.fadeIn
	{
		opacity: 1;
	}

	@-webkit-keyframes preloader_animation { from { -webkit-transform: rotate(0deg); } to { -webkit-transform: rotate(360deg); } }
	@-moz-keyframes preloader_animation { from { -moz-transform: rotate(0deg); } to { -moz-transform: rotate(360deg); } }
	@keyframes preloader_animation { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

	#video_preloader
	{
		position: absolute;
		left: 50%;
		top: 50%;
		width: 37px;
		height: 37px;
		margin-top: -18px;
		margin-left: -18px;
		background-color: #FFF;
		z-index: -1;
		opacity: 0;
		background: url('/content/images/video_preloader.png');

		-webkit-animation: preloader_animation 1s linear infinite;
		-moz-animation: preloader_animation 1s linear infinite;
		animation: preloader_animation 1s linear infinite;
	}

	#video_play_pause, #video_volume, #video_share
	{
		position: absolute;
		bottom: 26px;
		width: 57px;
		height: 45px;
		background-color: #FFF;
		cursor: pointer;
	}

	#video_play_pause
	{
		left: 22px;
		background: url('/content/images/video_play_pause.svg') bottom;
	}
		#video_play_pause.pause
		{
			background-position: top;
		}

	#video_volume
	{
		right: 94px;
		background: url('/content/images/video_volume.svg') top;
	}
		#video_volume.mute
		{
			background-position: bottom;
		}

	#video_share
	{
		right: 25px;
		background: url('/content/images/video_share.svg') center no-repeat;
	}
		#video_share_open
		{
			position: absolute;
			left: 0px;
			top: 0px;
			bottom: 0px;
			right: 0px;
			background: url('/content/images/video_share_open.svg') center no-repeat;
			opacity: 0;

			-webkit-transition: opacity .3s;
			-moz-transition: opacity .3s;
			transition: opacity .3s;
		}

		#video_share.open #video_share_open
		{
			opacity: 1;
		}

		#video_share.open .menu_gallery_circle
		{
			-webkit-transform: scale(1);
			-moz-transform: scale(1);
			transform: scale(1);

			opacity: 1;
			border-color: #DDD;
		}

		#video_share_icons
		{
			position: absolute;
			right: 5px;
			bottom: 70px;
			width: 50px;
			pointer-events: none;
		}
			.video_share_each
			{
				margin: 4px 0px 5px;
				padding: 10px;
				cursor: pointer;
				opacity: 0;

				-webkit-transform: translateY(20px);
				-moz-transform: translateY(20px);
				transform: translateY(20px);
				
				-webkit-transition: opacity .3s, -webkit-transform 0s;
				-moz-transition: opacity .3s, -moz-transform 0s;
				transition: opacity .3s, transform 0s .4s;
			}
				.video_share_each_inside
				{
					font-family: 'BG Medium';
					font-size: 20px;
					letter-spacing: 1px;
					text-align: center;
					color: #DDD;
					
					-webkit-transition: color .3s;
					-moz-transition: color .3s;
					transition: color .3s;
				}

				.video_share_each:nth-child(1) .video_share_each_inside { font-size: 22px; }
				.video_share_each:nth-child(2) .video_share_each_inside { font-size: 23px; }
				.video_share_each:nth-child(3) .video_share_each_inside { font-size: 20px; }
				.video_share_each:nth-child(4) .video_share_each_inside { font-size: 23px; }
				.video_share_each:nth-child(5) .video_share_each_inside { font-size: 20px; }
				.video_share_each:nth-child(6) .video_share_each_inside { font-size: 21px; }

				#video_share.open .video_share_each:nth-child(1) { -webkit-transition-delay: .0s; -moz-transition-delay: .0s; transition-delay: .0s; }
				#video_share.open .video_share_each:nth-child(2) { -webkit-transition-delay: .05s; -moz-transition-delay: .05s; transition-delay: .05s; }
				#video_share.open .video_share_each:nth-child(3) { -webkit-transition-delay: .1s; -moz-transition-delay: .1s; transition-delay: .1s; }
				#video_share.open .video_share_each:nth-child(4) { -webkit-transition-delay: .15s; -moz-transition-delay: .15s; transition-delay: .15s; }
				#video_share.open .video_share_each:nth-child(5) { -webkit-transition-delay: .2s; -moz-transition-delay: .2s; transition-delay: .2s; }
				#video_share.open .video_share_each:nth-child(6) { -webkit-transition-delay: .25s; -moz-transition-delay: .25s; transition-delay: .25s; }


		#video_share.open #video_share_icons
		{
			pointer-events: auto;
		}

			#video_share.open .video_share_each
			{
				opacity: 1;

				-webkit-transform: translateY(0px);
				-moz-transform: translateY(0px);
				transform: translateY(0px);

				-webkit-transition: opacity .4s, -webkit-transform .4s;
				-moz-transition: opacity .4s, -moz-transform .4s;
				transition: opacity .4s, transform .4s;
			}


	#video_bottom
	{
		position: absolute;
		left: 0px;
		right: 0px;
		bottom: 0px;
		height: 315px;
		pointer-events: none;

		background: -webkit-linear-gradient(top,  rgba(0,0,0,0) 0%,rgba(0,0,0,.6) 100%);
		background: -moz-linear-gradient(top,  rgba(0,0,0,0) 0%,rgba(0,0,0,.6) 100%);
		background: -ms-linear-gradient(top,  rgba(0,0,0,0) 0%,rgba(0,0,0,.6) 100%);
		background: linear-gradient(to bottom,  rgba(0,0,0,0) 0%,rgba(0,0,0,.6) 100%);

		-webkit-transition: opacity .5s;
		-moz-transition: opacity .5s;
		transition: opacity .5s;
	}

	#video_bar
	{
		position: absolute;
		left: 103px;
		right: 187px;
		bottom: 44px;
		height: 11px;
	}
		#video_bar_load, #video_bar_progress
		{
			position: absolute;
			left: 0px;
			width: 0%;
			bottom: 4px;
			height: 3px;

			-webkit-transition: width .3s;
			-moz-transition: width .3s;
			transition: width .3s;
		}

		#video_bar_load
		{
			background-color: rgba(255, 255, 255, .5);
		}

		#video_bar_progress
		{
			background-color: rgba(255, 255, 255, 1);
		}

#video_play_pause, #video_volume, #video_share, #video_bar
{
	-webkit-transition: bottom .4s;
	-moz-transition: bottom .4s;
	transition: bottom .4s;

	-webkit-transition-timing-function: cubic-bezier(0.250, 0.460, 0.450, 0.940); 
	-moz-transition-timing-function: cubic-bezier(0.250, 0.460, 0.450, 0.940); 
	transition-timing-function: cubic-bezier(0.250, 0.460, 0.450, 0.940); /* easeOutQuad */
}

#video_container.hide #video_bottom
{
	opacity: 0;
}

#video_container.hide #video_play_pause, #video_container.hide #video_volume, #video_container.hide #video_share
{
	bottom: -56px;
}

#video_container.hide #video_bar
{
	bottom: -38px;
}

#video_container.hide #video_play_pause, #video_container.hide #video_volume, #video_container.hide #video_share, #video_container.hide #video_bar
{
	-webkit-transition-timing-function: cubic-bezier(0.550, 0.085, 0.680, 0.530); 
	-moz-transition-timing-function: cubic-bezier(0.550, 0.085, 0.680, 0.530); 
	transition-timing-function: cubic-bezier(0.550, 0.085, 0.680, 0.530); /* easeInQuad */
}


#menu_marca
{
	position: fixed;
	display: none;
	right: 35px;
	top: 50%;
	width: 40px;
	height: 240px;
	margin-top: -150px;
	opacity: 0;

	-webkit-transition: opacity .5s;
	-moz-transition: opacity .5s;
	transition: opacity .5s;
}

	.menu_marca_each
	{
		position: relative;
		overflow: hidden;
		width: 40px;
		height: 40px;
		cursor: pointer;
		
		-webkit-backface-visibility: hidden;
		-moz-backface-visibility: hidden;
		backface-visibility: hidden;
	}
		.menu_marca_each_inside
		{
			position: absolute;
			left: 12px;
			top: 12px;
			width: 10px;
			height: 10px;
			background-color: rgba(255,255,255,1);
			border: 3px solid rgba(255,255,255,0);

			-webkit-border-radius: 10px;
			-moz-border-radius: 10px;
			border-radius: 10px;

			-webkit-background-clip: padding-box;
			-moz-background-clip: padding-box;
    		background-clip: padding-box;

			-webit-transition: background-color .2s;
			-moz-transition: background-color .2s;
			transition: background-color .2s;
		}

		.menu_marca_each.selected .menu_marca_each_inside
		{
			background-color: rgba(255,255,255,0);
			border-color: rgba(255,255,255,1);
		}

#device_orientation
{
	position: fixed;
	display: none;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	background: url('/content/images/device_orientation.gif') center no-repeat #000;
}


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

	#menu_marca
	{
		display: none !important;
	}
}

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

	#menu_container_main
	{
		-webkit-transform: scale(.9);
		-moz-transform: scale(.9);
		transform: scale(.9);
	}
		.menu_each_label
		{
			font-size: 23px;
		}
}


@media
only screen and (-webkit-min-device-pixel-ratio: 1.5),
only screen and (   -moz-min-device-pixel-ratio: 1.5),
only screen and (     -o-min-device-pixel-ratio: 2/1),
only screen and (        min-device-pixel-ratio: 1.5),
only screen and (                min-resolution: 2dppx)
{
	#device_orientation { background-image: url('/content/images/device_orientation@2x.gif'); background-size: 456px 593px; }
	#video_preloader { background-image: url('/content/images/video_preloader@2x.png'); background-size: 37px 37px; }
	#menu_copyright { background-image: url('/content/images/menu_copyright@2x.png'); background-size: 13px 100px; }
}


@media only screen 
and (min-device-width : 768px) 
and (max-device-width : 1024px) 
and (orientation : portrait) 
{
	#device_orientation
	{
		display: block;
	}
}