/*
	* Gridless version 2.0

	* Credit is left inline and big thanks to Nicolas Gallagher and Jonathan Neal

	* Across this document we use safe CSS hacks: http://mathiasbynens.be/notes/safe-css-hacks
	* Selectors beggining with an underscore (_selector: property) target only IE6
	* Selectors beggining with an asterisk (*selector: property) target only IE6 and IE7
*/

/* HTML5 display definitions
---------------------------------------- */

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, dialog {
	display: block;
}

/* Corrects inline-block not defined in IE6/7/8 and FF3 */
audio, canvas, video {
	display: inline-block;
	*display: inline;
	*zoom: 1;
}

audio:not([controls]) {
	display: none;
}

/* Ensures content is hidden from all presentations, including screenreaders */
[hidden] {
	display: none;
	visibility: hidden;
}

/* Base structure
---------------------------------------- */

/*
	* The body will work like a 'div#wrapper' (for this to work, the 'body' needs to have a set width)

	* To add a background to the PAGE, set it in the 'html' element
	* To add a background to the WRAPPER, set it in the 'body' element
*/
html {
	height: 100%;
	font-size: 100%;
	-webkit-text-size-adjust: 100%; /* Prevent iOS text size adjust on orientation change without disabling user zoom */
	-ms-text-size-adjust: 100%; 
	overflow:hidden;
}

body {
	margin: 0 auto;
	min-height: 100%;overflow:hidden;
}

/* Fonts settings based on the 100E2R standard: http://www.informationarchitects.jp/en/100e2r/ */
body, button, input, select, textarea {
	/*font: 1em/1.625 Georgia, serif;
	color: #222;*/ /* Full black on white is too much contrast, #222 is a better default */
}

/* Add and/or remove tags as your baseline grid needs */
p, blockquote, q, pre, address, hr, code, samp, dl, ol, ul, form, table, fieldset, menu, h4, h5, h6, img, figure, figcaption, button, hr {
	margin: 0 0 1.625em;
}

/* Headings/small
---------------------------------------- */

/*
	* Font sizes are based on the golden ratio of 16
	* See this for the modular scale: ow.ly/5jGl6
	* Line-heights and margins are adjusted to keep a 26px (1.625em) vertical rhythm across elements 
*/

/*	h1, h2, h3, h4, h5, h6 {
		font-family: Palatino, 'Palatino Linotype', 'Book Antiqua', FreeSerif, Georgia, serif;
		font-size: 1em;
		font-weight: bold;
	}
	
	h1 {
		font-size: 4.25em; 
		line-height: 1.1471em;
		margin: 0 0 0.3824em;
	}
	
	h2 {
		font-size: 2.625em;
		line-height: 1.2381em;
		margin: 0 0 0.619em;
	}
	
	h3 {
		font-size: 1.625em;
		line-height: 1em;
		margin: 0 0 1em;
	}
	
	small {
		font-size: 0.625em; 
		margin: 0 0 2.6em;
	}*/

/* Preformatted text and code
---------------------------------------- */

/* Allows line wrapping of 'pre' */
pre {
	white-space: pre;
	white-space: pre-wrap;
	word-wrap: break-word;
}

pre, code, kbd, samp {
	font: 1em/1.625em Menlo, Consolas, 'DejaVu Sans Mono', Monaco, 'Courier New', Courier, monospace;
}

/* Tables
---------------------------------------- */

table {
	border-collapse: collapse;
	border-spacing: 0;
}

th {
	text-align: left;
}

tr, th, td {
	padding-right: 1.625em;
}

/* Forms
---------------------------------------- */

form {
	margin: 0;
}

fieldset {
	border: 0;
	padding: 0;
}

textarea {
	overflow: auto;
	vertical-align: top;
}

legend {
	border: 0;
	*margin-left: -7px;
}

button, input, select, textarea {
	vertical-align: baseline;
	*vertical-align: middle;
}

button, input {
	line-height: normal;
	*overflow: visible;
}

button, input[type="button"], input[type="reset"], input[type="submit"] {
	cursor: pointer;
	-webkit-appearance: button;
}

input[type="checkbox"], input[type="radio"] {
	box-sizing: border-box;
}

input[type="search"] {
	-webkit-appearance: textfield;
	-moz-box-sizing: content-box;
	-webkit-box-sizing: content-box;
	box-sizing: content-box;
}

input[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

button::-moz-focus-inner, input::-moz-focus-inner {
	border: 0;
	padding: 0;
}

/* Reintroduce inner spacing in 'table' to avoid overlap and whitespace issues in IE6/7 */
table button, table input {
	*overflow: auto;
}

/* Quotes
---------------------------------------- */

blockquote, q {
	quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
	content: '';
	content: none;
}

blockquote, q, cite {
	font-style: italic;
}

blockquote {
	padding-left: 1.625em;
	border-left: 1px solid #ddd;
}

blockquote > p {
	padding: 0;
}

/* Lists
---------------------------------------- */

ul, ol {
	list-style-position: inside;
	padding: 0;
}

li ul, li ol {
	margin: 0 1.625em;
}

dl dd {
	margin-left: 1.625em;
}

/* Links
---------------------------------------- */

a, a:visited {
	text-decoration: none;
	color: #06c;
}

a:hover {
	border: none;
}

a:focus {
	outline: none;
}

/* Better CSS outline suppression: people.opera.com/patrickl/experiments/keyboard/test */
a:hover, a:active {
	outline: none;
}

/* Figures
---------------------------------------- */

figure {
	margin: 0;
}

/* Embedded content
---------------------------------------- */

img, object, video {
	max-width: 100%; /* Automatically scales images larger than the container. Consider this first: http://unstoppablerobotninja.com/entry/fluid-images/ */
	/* _width: 100%; /* IE6 doesn't support max-width, so we just use width. If the image is larger than the container, just uncomment this. If it is smaller than the container, uncomment and change the 100% value to an absolute one */
}

img {
	border: 0;
	-ms-interpolation-mode: bicubic; /* Improve IE's resizing of images: css-tricks.com/ie-fix-bicubic-scaling-for-images */
}

/* Corrects overflow displayed oddly in IE9 */
svg:not(:root) {
	overflow: hidden;
}

/* Abbreviations
---------------------------------------- */

abbr[title], dfn[title] {
	border-bottom: 1px dotted;
	cursor: help;
}

/* Marked/inserted/deleted text
---------------------------------------- */

mark {
	background: #ff0;
}

ins {
	text-decoration: none;
	background: #ff9;
}

del {
	text-decoration: line-through;
}

/* Others
---------------------------------------- */

hr {
	display: block;
	height: 1px;
	border: 0;
	border-bottom: 1px solid #ddd;
}

strong, b, dt {
	font-weight: bold;
}

dfn {
	font-style: italic;
}

var, address {
	font-style: normal;
}

/* Position 'sub' and 'sup' without affecting line-height: gist.github.com/413930 */
sub, sup {
	font-size: 0.625em;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sup {
	top: -0.5em;
}

sub {
	bottom: -0.25em;
}

/* Helper classes
---------------------------------------- */

/*
	* Micro clearfix hack, more semantically titled with 'group'
	* Source: nicolasgallagher.com/micro-clearfix-hack/
*/
.group:before, .group:after {
	content: "";
	display: table;
}

.group:after {
	clear: both;
}

.group {
	*zoom: 1;
}

/* Primary styles
---------------------------------------- */









/* Media queries
---------------------------------------- */

/* The media queries included in here are only placeholder. Modify them as your content requires */

@media only screen and (min-width: 480px) {
	/* Wide mobile (480px+) styles go here */
}

@media only screen and (min-width: 768px) { 
	/* Tablets/netbooks (768px+) styles go here */
}

@media only screen and (min-width: 1024px) { 
	/* Desktops (1024px+) styles go here */
}

/* Print styles
---------------------------------------- */

/* Print styles inlined to avoid extra HTTP connection */

@media print {
	* {
		background: transparent !important;
		color: black !important; /* Black prints faster: sanbeiji.com/archives/953 */
		text-shadow: none !important;
		filter: none !important;
		-ms-filter: none !important;
	}

	a, a:visited {
		text-decoration: underline;
	}

	a[href]:after {
		content: " (" attr(href) ")";
	}

	abbr[title]:after {
		content: " (" attr(title) ")";
	}

	/* Do not show javascript and internal links */
	a[href^="javascript:"]:after, a[href^="#"]:after {
		content: ""; 
	}

	/* Printing Tables: css-discuss.incutio.com/wiki/Printing_Tables */
	thead {
		display: table-header-group;
	}

	tr, img {
		page-break-inside: avoid;
	}

	@page {
		margin: 0.5cm;
	}

	p, h2, h3 {
		orphans: 3;
		widows: 3;
	}

	h2, h3 {
		page-break-after: avoid;
	}
}


/* CATERING*/

body{ background:#000;font-size: 12px;}
#container{height:100%;width:100%; margin:0px auto;overflow:hidden;}
.contenedor{position:absolute; width:100%; height:100%; top:0px; left:0px; overflow:hidden; z-index:1}
.canvascontainer{position:absolute; width:100%; height:100%; top:0px; left:0px; overflow:hidden; z-index:2}
.animacion{ 
	width:70px; height:70px; position:absolute; top:50%; left:50%; 
	margin-left:-35px; 
	margin-top:-35px; 
	background:url(../img/animacion/animacion4.png);
}
#logogrande{ 
	width:979px; height:101px; position:absolute; top:50%; left:50%; 
	margin-left:-489px; margin-top:-50px; display:none
}			
#logo{ margin-left:3%}
#logoroncero{ float:right;
	opacity:0;
	filter:alpha(opacity=0); z-index:40; position:absolute; top:10px; right:10px; /* For IE8 and earlier */
}
#logopacoroncero{position:absolute; bottom:3%; left:2%; width:45px; height:444px; 
	opacity:0;
	filter:alpha(opacity=0); /* For IE8 and earlier */
}
#idiomas{
	width:270px; height:42px; position:absolute; top:58%; left:50%; 
	margin-left:-135px; margin-top:-21px; display:none
}			
#idiomas a{display:block}

#idiomas_pq{
	width:95px; height:23px; position:absolute; bottom:3%; left:10%; display:none
}			
#idiomas_pq a{display:block}
/*vegas*/
.vegas-loading{
	/* Loading Gif by http://preloaders.net/ */
	-moz-border-radius:10px; -webkit-border-radius:10px; border-radius:10px;
	background:#000 url(../img/loading.gif) no-repeat center center;
	background:rgba(0, 0, 0, 0.7) url(../img/loading.gif) no-repeat center center;
	height:32px;
	left:20px;
	position:fixed;
	top:20px;
	width:32px; 
	z-index:0;
}
.vegas-overlay {
	background:transparent url(../img/overlays/01.png);
	opacity:0.5;
	z-index:-1;
}
.vegas-background {
	image-rendering: optimizeQuality;
	-ms-interpolation-mode: bicubic;
	z-index:-2;
	/* counteracts global img modification by twitter bootstrap library */
	max-width: none !important;
}
.box{ position:absolute; right:0px;}
.flotantes{ position:absolute;margin:0px; padding:0px; 
z-index:10;width:50px; height:50px; background:none; }
#contiene{ z-index:30; overflow:hidden}


ul.menus,
ul.menus li{margin:0px; padding:0px; list-style:none; line-height:2em}
ul.menus li.header{ font-size:1.1em; font-weight:bold;}
ul.menus li.titulo{ font-weight:bold;font-size:1em;}
ul.menus li.detalle{font-size:0.9em;}
ul.menus li.galeria{ background:#000}
.elastislide-wrapper{ background:#000}
ul.menus li.galeria ul,
ul.menus li.galeria li
{margin: inherit; padding: inherit;  list-style: inherit}



/*cajas*/
.button{
    float:right;
    position:relative;
    left:-50%;
    text-align:left;
}
.button ul{
    list-style:none;
    position:relative;
    left:50%;
}

.button li{float:left;position:relative;}/* ie needs position:relative here*/

.button a{
text-decoration:none;
margin:10px;
float:left;
color:#000;
padding:2px 5px;
text-align:center;
font-weight:bold; text-transform:uppercase;
outline:none; color:#999
}
 
a.activebittpm{ font-weight:bold; text-decoration:underline; color:#000;}
.button a:hover{font-weight:bold;color:#000;}














/*

.button ul { list-style-type: none; padding: 0px; margin: 0px;  list-style:none;
    position:relative;
    left:50%; margin-left:-25%;}
.button li{ float:left}
	.button a{ color:#000; text-decoration:none;   }
	
	.button{    text-align: center;
		 text-align:center;
		
		margin-top: 0px;
		margin-bottom: 5%;margin: 0px auto;text-transform: uppercase ;
	} 
	*/.myslide {overflow:hidden;position: relative; margin:0px; padding:0px}  
	.myslide .cover{  
	position: absolute; margin:0px; padding:0px }  
	.myslide .mystuff {float:left; margin:0px; padding:0px}  
	.button1,
	.button2,
	.button3{
	
	} 

	.clearboth{clear:both; display:block;}
	.menuH2{font-size:1.1em; font-weight:bold; margin-bottom:2%}
	.menutitulo{ font-weight:bold;font-size:1em;margin:2%; height:1.3em; line-height:1.3em; text-align:center; text-transform:uppercase}
	.detalle{ font-size:0.9em;margin-bottom:2%}
	
	.mclear{}
	.titulocajas{ font-weight:bold; text-decoration:underline; display:block; margin-bottom:1.1em}
	
	.textofino{z-index:3; position:absolute;font-family: 'futura_lt_btlight';
	font-size:1em; line-height:1em; 
	}
	.textofino p{ padding:0px; margin-left:5px; margin-bottom:5px;}
	
	.es{ display:block;}
	.en{ display:none}
	
	#precios{width:100%; height:8%; line-height:1.1em; display:block; position: absolute; bottom:-8%; z-index:10; left:0px;  overflow:hidden;font-family: 'futura_lt_btlight';  background:none; border:0px solid #F60; color:#000; padding-left:10%;padding-right:8%}
	#precios div{ cursor:pointer; color:#000; text-decoration:none}
	#precios div:hover{ text-decoration:underline}


a{display:block;}