html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}


body {
	font: 14px/1.3 Arial, Helvetica, sans-serif	 normal;
	background: #fff;
	margin: 0;
	padding: 0;
	color: #45474B;
}

@font-face {
	font-family: 'Swis721ThBTThin';
	src: url('../fo/8970.eot');
	src: url('../fo/8970.eot') format('embedded-opentype'),
		 url('../fo/8970.woff') format('woff'),
		 url('../fo/8970.ttf') format('truetype'),
		 url('../fo/8970.svg#Swis721ThBTThin') format('svg');
}
@font-face {
	font-family: 'HelveticaNeueLTPro67MediumCondensed';
	src: url('../fo/helveticaneueltpro-mdcn.eot');
	src: url('../fo/helveticaneueltpro-mdcn.eot') format('embedded-opentype'),
		 url('../fo/helveticaneueltpro-mdcn.woff') format('woff'),
		 url('../fo/helveticaneueltpro-mdcn.ttf') format('truetype'),
		 url('../fo/helveticaneueltpro-mdcn.svg#HelveticaNeueLTPro67MediumCondensed') format('svg');
}
@font-face {
	font-family: 'HelveticaNeueLTPro75Bold';
	src: url('../fo/helveticaneueltpro-bd.eot');
	src: url('../fo/helveticaneueltpro-bd.eot') format('embedded-opentype'),
		 url('../fo/helveticaneueltpro-bd.woff') format('woff'),
		 url('../fo/helveticaneueltpro-bd.ttf') format('truetype'),
		 url('../fo/helveticaneueltpro-bd.svg#HelveticaNeueLTPro75Bold') format('svg');
}

/* ~~ Element/tag selectors ~~ */
ul, ol, dl { /* Due to variations between browsers, it's best practices to zero padding and margin on lists. For consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain. Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */
	padding: 0;
	margin: 0;
}
h1, h2, h3, h4, h5, h6, p {
	
}
h1 {
	font-size: 66px;
	font-family: 'Swis721ThBTThin', Arial, Helvetica, sans-serif;
	color:#AFB4B7;
}
h2 {
	font-size: 18px;
	font-family:'HelveticaNeueLTPro67MediumCondensed', Arial, Helvetica, sans-serif;
	text-align:justify;
	color:#393B3F;
}
h3 {
	font-family: 'HelveticaNeueLTPro75Bold', Arial, Helvetica, sans-serif;
	font-size: 15px;
	color:#ffffff;
	padding:5px;
}
h4 {
	font-size: 18px;
	font-family:'HelveticaNeueLTPro67MediumCondensed', Arial, Helvetica, sans-serif;
	text-align: right;
	color:#393B3F;
}
p{
	text-align: justify;
	font-size: 12px;
	margin-bottom: 5px;
}

blockquote{
	font-style: italic;
	color: #64686C;
	text-align: right;
	margin-bottom: 5px;
	line-height: 1.5;
	font-size: 13px;
}

a img { /* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */
	border: none;
}
/* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
a:link {
	color: #42413C;
	text-decoration: underline; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
}
a:visited {
	color: #6E6C64;
	text-decoration: underline;
}
a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
	text-decoration: none;
}
/* ~~ This fixed width container surrounds all other blocks ~~ */
.container {
	max-width: 960px;
	background: #fff;
	margin: 0 auto; /* the auto value on the sides, coupled with the width, centers the layout */
}
/* ~~ The header is not given a width. It will extend the full width of your layout. ~~ */
header {
	padding: 6% 7% 2% 7.5%;
	
}
/* ~~ These are the columns for the layout. ~~ 

1) Padding is only placed on the top and/or bottom of the block elements. The elements within these blocks have padding on their sides. This saves you from any "box model math". Keep in mind, if you add any side padding or border to the block itself, it will be added to the width you define to create the *total* width. You may also choose to remove the padding on the element in the block element and place a second block element within it with no width and the padding necessary for your design.

2) No margin has been given to the columns since they are all floated. If you must add margin, avoid placing it on the side you're floating toward (for example: a right margin on a block set to float right). Many times, padding can be used instead. For blocks where this rule must be broken, you should add a "display:inline" declaration to the block element's rule to tame a bug where some versions of Internet Explorer double the margin.

3) Since classes can be used multiple times in a document (and an element can also have multiple classes applied), the columns have been assigned class names instead of IDs. For example, two sidebar blocks could be stacked if necessary. These can very easily be changed to IDs if that's your preference, as long as you'll only be using them once per document.

4) If you prefer your nav on the left instead of the right, simply float these columns the opposite direction (all left instead of all right) and they'll render in reverse order. There's no need to move the blocks around in the HTML source.

*/
.sidebar1 {
	float: left;
	width: 180px;
	background-color: #EADCAE;
	padding-bottom: 10px;
}
.content {
	padding: 2% 7% 1% 7.5%;
	background: url(../im/path.png) 50% 80% no-repeat;
}

/* ~~ This grouped selector gives the lists in the .content area space ~~ */
.content ul.contenido, .content ol.contenido {
	margin-left: 3px;
	padding: 0;
	list-style: circle!important;
	font-size: 12px !important;
	color:#64686C;
}

ul.contenido li {
	width: 45%;
	padding-left:5%;
	float:left;
	background:url(../im/dot.png) 0% 0% no-repeat;
	
}

/* ~~ The navigation list styles (can be removed if you choose to use a premade flyout menu like Spry) ~~ */
ul.nav {
	list-style: none; /* this removes the list marker */
	border-top: 1px solid #666; /* this creates the top border for the links - all others are placed using a bottom border on the LI */
	margin-bottom: 15px; /* this creates the space between the navigation on the content below */
}
ul.nav li {
	border-bottom: 1px solid #666; /* this creates the button separation */
}
ul.nav a, ul.nav a:visited { /* grouping these selectors makes sure that your links retain their button look even after being visited */
	padding: 5px 5px 5px 15px;
	display: block; /* this gives the link block properties causing it to fill the whole LI containing it. This causes the entire area to react to a mouse click. */
	width: 160px;  /*this width makes the entire button clickable for IE6. If you don't need to support IE6, it can be removed. Calculate the proper width by subtracting the padding on this link from the width of your sidebar container. */
	text-decoration: none;
	background-color: #C6D580;
}
ul.nav a:hover, ul.nav a:active, ul.nav a:focus { /* this changes the background and text color for both mouse and keyboard navigators */
	background-color: #ADB96E;
	color: #FFF;
}

/* ~~ The footer ~~ */
footer {
	padding: 2% 7% 7% 7%;
	font-size: 11px;
	color: #777;
	position: relative;/* this gives IE6 hasLayout to properly clear */
	clear: both; /* this clear property forces the .container to understand where the columns end and contain them */
}

footer p {
	font-size: 10px;
}

/*HTML 5 support - Sets new HTML 5 tags to display:block so browsers know how to render the tags properly. */
header, section, footer, aside, article, figure {
	display: block;
}

header .c1{ float: right; width: 75%; padding-right:5%;}
header .c2{ float: right; width: 20%; margin-top: 20px;}


.primero .c1{ float: left; width: 39%; padding-right:5%;}
.primero .c1 .flecha{ border-top: 2px solid #A6A8AB; border-right: 2px solid #A6A8AB; border-left: 2px solid #A6A8AB; padding:7px; margin-top: 55px; font-size:13px; line-height:1.5; text-align:justify;}
.primero .c1 .flechad{ height:45px; background: url(../im/arrow_down.png) no-repeat; display:block;}
.primero .c2{ float: left; width: 51%; padding-left:5%; margin-top:10px; }
.primero .c2 p.autor{ font-size:14px; text-align:right;}

.red{ background: #DC145A; max-width:225px;}
.green{ background: #009D9E; max-width:180px;}
.blue{ background: #4788BC; max-width: 140px;}
.redl{ border-left: 15px solid #DC145A; border-bottom: 15px solid transparent; margin-left:15px; margin-bottom:5px;}
.greenl{ border-left: 15px solid #009D9E; border-bottom: 15px solid transparent; margin-left:15px; margin-bottom:5px;}
.bluel{ border-left: 15px solid #4788BC; border-bottom: 15px solid transparent; margin-left:15px; margin-bottom:5px;}

.segundo .c1{ float: left; width: 24%; margin-top:100px;}
.segundo .c2{ float: left; width: 37%;}
.segundo .c3{ float: left; width: 37%; padding-left:1.5%; border-left:2px solid #BAC7D5;}

.tercero .c1{ float: left; width: 56%; padding-left:0%; padding-right:5%; margin-top:50px;}
.tercero .ca{ float: left; width: 41%;}
.tercero .cb{ float: left; width: 59%;}
.tercero .c2{ float: left; width: 38.5%;}

.bordet{border-top:2px solid #BAC7D5; padding-left:10px; margin-top:0px; padding-top:10px;}
.bordei{border-left:2px solid #BAC7D5; padding-left:10px}
.borded{border-right:2px solid #BAC7D5; padding-right:10px}


.ito{ background: url(../im/ito.png) 50% 100% no-repeat; padding-bottom:10px;}
.ile{ background: url(../im/ile.png) 100% 50% no-repeat; padding-right:2%; }
.iri{ background: url(../im/iri.png) 0% 50% no-repeat; padding-left:10%}


.sequence-pagination {
	left:50%;
	margin-left:-120px;
	bottom:135px;
	position: absolute;
	z-index: 10;
	background: url(../img/abanico.png) no-repeat;
	width: 240px;
	height: 120px;
	-webkit-transition-duration: 1s;
	-moz-transition-duration: 1s;
	-ms-transition-duration: 1s;
	-o-transition-duration: 1s;
	transition-duration: 1s;
	
	
}

.sequence-pagination li {
	position:absolute;
	float:left;
	display:block;
	height: 36px;
	width: 36px;
	margin:0;
	-webkit-border-radius: 24px;
	-moz-border-radius: 24px;
	border-radius: 24px;
	z-index: 10;
}
.sequence-pagination li#mh1 { left:27px; bottom: 10px;}
.sequence-pagination li#mh2 { left:70px; bottom: 58px;}
.sequence-pagination li#mh3 { left:133px; bottom: 58px;}
.sequence-pagination li#mh4 { left:176px; bottom: 10px;}



.sequence-pagination li.current {
	
}
.sequence-pagination li img {
	cursor: pointer;
	opacity: 0;
	filter:alpha(opacity=0);
	-webkit-transition-duration: 1s;
	-moz-transition-duration: 1s;
	-ms-transition-duration: 1s;
	-o-transition-duration: 1s;
	transition-duration: 1s;
	-webkit-transition-property: opacity;
	-moz-transition-property: opacity;
	-ms-transition-property: opacity;
	-o-transition-property: opacity;
	transition-property: opacity;
}
.sequence-pagination li img:hover {
	-webkit-transition-duration: 0.3s;
	-moz-transition-duration: 0.3s;
	-ms-transition-duration: 0.3s;
	-o-transition-duration: 0.3s;
	transition-duration: 0.3s;
	opacity: 0.5;
	filter:alpha(opacity=50);
}
.sequence-pagination li.current img {
	opacity: 1;
	filter:alpha(opacity=100);
}


/* !CSS RESET */
/* prefix declarations */
/* THEME STYLES */
#sequence {
	position: relative;
	height: 625px;
	max-width: 980px;
	min-width: 320px;
	margin: 0 auto;
	overflow: hidden;
	background: url(../img/bg1.jpg) bottom center;
	color: white;
	font-family: 'Conv_ZwoOT-Light';
}
#sequence > .sequence-canvas {
  height: 100%;
  width: 100%;
}
#sequence > .sequence-canvas > li {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
}
#sequence > .sequence-canvas li > * {
  position: absolute;
  -webkit-transition-timing-function: ease-in-out;
  -moz-transition-timing-function: ease-in-out;
  -ms-transition-timing-function: ease-in-out;
  -o-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
}
#sequence .sequence-next,
#sequence .sequence-prev {
  color: white;
  cursor: pointer;
  display: none;
  position: absolute;
  opacity: 1;
	filter:alpha(opacity=100);
  top: 300px;
  height: 48px;
  width: 48px;
  z-index: 20;
  -webkit-transition-duration: 0.4s;
  -moz-transition-duration: 0.4s;
  -ms-transition-duration: 0.4s;
  -o-transition-duration: 0.4s;
  transition-duration: 0.4s;
}
#sequence .sequence-prev {
  left: 1%;
}
#sequence .sequence-next {
  right: 1%;
}
#sequence .sequence-next:hover,
#sequence .sequence-prev:hover {
  opacity: 1;
	filter:alpha(opacity=100);
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
  transform: scale(1.2);
  -webkit-transition-duration: 0.4s;
  -moz-transition-duration: 0.4s;
  -ms-transition-duration: 0.4s;
  -o-transition-duration: 0.4s;
  transition-duration: 0.4s;
}

.campana {
	position:absolute;
	margin-top: 170px;
	height: 50px;
	margin-left: 7%;
	position:relative;
	z-index: 3;
}
#sequence h1 {
	font-family: 'Conv_ZwoOT';
	color:#00549E;
	font-size: 3.3em;
	line-height: 1.2em;
	text-transform:uppercase;
	font-weight:normal;
	text-align:center;
}
#sequence h2 {
	font-family: 'Conv_ZwoOT-Light';
	color:#00549E;
	font-size: 1.3em;
	line-height: 1.2em;
	text-transform: uppercase;
	text-align:center;
}
#sequence p {
	font-size: 1.32em;
	line-height: 1.4em;
}

#sequence .plus {
	background: url(../img/plus.png) 0px 8px no-repeat;
	padding-left: 91px;
	min-height: 80px;
}
#sequence p.list {
	background: url(../img/li.png) 0px 9px no-repeat;
	padding-left: 20px;
	font-size: 1.4em;
	line-height: 1.4em;
}

#sequence .encuadre {
	border-top: 1px solid #fff;
	border-bottom: 1px solid #fff;
	padding: 5px 0px;
}


#sequence .profit {
	margin-top: 95px;
	padding-left: 10%;
	width: 60%;
	padding-right:  30%;
}


#sequence .info {
	color: #FFF;
	font-size: 1em;
	right: 150%;
	line-height: 1.2em;
	top: 0px;
	width: 64%;
	z-index: 10;
	vertical-align: middle;
	-webkit-transition-duration: 4s;
	-moz-transition-duration: 4s;
	-ms-transition-duration: 4s;
	-o-transition-duration: 4s;
	transition-duration: 4s;
	-webkit-transition-property: right;
	-moz-transition-property: right;
	-ms-transition-property: right;
	-o-transition-property: right;
	transition-property: right;
}
#sequence .animate-in .info {
	right: 18%;
	-webkit-transition-duration: 4s;
	-moz-transition-duration: 4s;
	-ms-transition-duration: 4s;
	-o-transition-duration: 4s;
	transition-duration: 4s;
}
#sequence .animate-out .info {
	right: -150%;
	-webkit-transition-duration: 4s;
	-moz-transition-duration: 4s;
	-ms-transition-duration: 4s;
	-o-transition-duration: 4s;
	transition-duration: 4s;
}





#sequence .sky {
  height: auto;
  width: 100%;
  left: -6%;
  opacity: 0;
	filter:alpha(opacity=0);
  top: 0;
  vertical-align: middle;
  z-index: 1;
  -webkit-transition-property: left top;
  -moz-transition-property: left top;
  -ms-transition-property: left top;
  -o-transition-property: left top;
  transition-property: left top;
}
#sequence .animate-in .sky {
  left: 0%;
  opacity: 1;
	filter:alpha(opacity=100);
  top: 0;
  z-index: 1;
  -webkit-transition-duration: 4s;
  -moz-transition-duration: 4s;
  -ms-transition-duration: 4s;
  -o-transition-duration: 4s;
  transition-duration: 4s;
}
#sequence .animate-out .sky {
  left: 6%;
  opacity: 0;
	filter:alpha(opacity=0);
  top: 0;
  z-index: 1;
  -webkit-transition-duration: 4s;
  -moz-transition-duration: 4s;
  -ms-transition-duration: 4s;
  -o-transition-duration: 4s;
  transition-duration: 4s;
}






#sequence .one {
	left: 50%;
	top: 263px;
	margin-left:-50px;
	max-width: 80%;
	z-index: 9999;
	opacity: 0;
	filter:alpha(opacity=0);
	-webkit-transform: scale(5);
	-moz-transform: scale(5);
	-ms-transform: scale(5);
	-o-transform: scale(5);
	transform: scale(5);
	
}
#sequence .animate-in .one {
	left: 50%;
	top: 263px;
	margin-left:-50px;
	z-index: 9999;
	opacity: 100;
	filter:alpha(opacity=1);
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-ms-transform: scale(1.1);
	-o-transform: scale(1.1);
	transform: scale(1.1);
	-webkit-transition-duration: 4s;
	-moz-transition-duration: 4s;
	-ms-transition-duration: 4s;
	-o-transition-duration: 4s;
	transition-duration: 4s;
}
#sequence .animate-out .one {
	left: 50%;
	top: 263px;
	margin-left:-50px;
	z-index: 9999;
	opacity: 0;
	filter:alpha(opacity=0);
	-webkit-transform: scale(5);
	-moz-transform: scale(5);
	-ms-transform: scale(5);
	-o-transform: scale(5);
	transform: scale(5);
	-webkit-transition-duration: 4s;
	-moz-transition-duration: 4s;
	-ms-transition-duration: 4s;
	-o-transition-duration: 4s;
	transition-duration: 4s;
}
#sequence .antorcha {
  left: 71%;
  max-width: 40%;
  bottom: -800px;
  z-index: 6;
  -webkit-transform-origin: 100%;
	-moz-transform-origin: 100%;
	-ms-transform-origin: 100%;
	-o-transform-origin: 100%;
	transform-origin: 100%;
  -webkit-transition-property: left bottom -webkit-transform;
  -moz-transition-property: left bottom -moz-transform;
  -o-transition-property: left bottom -o-transform;
  -ms-transition-property: left bottom -ms-transform;
  transition-property: left bottom transform;
}
#sequence .animate-in .antorcha {
  left: 71%;
  bottom: 0px;
  -webkit-transition-duration: 4s;
  -moz-transition-duration: 4s;
  -ms-transition-duration: 4s;
  -o-transition-duration: 4s;
  transition-duration: 4s;
  z-index: 4;
  -webkit-transform-origin: 100%;
	-moz-transform-origin: 100%;
	-ms-transform-origin: 100%;
	-o-transform-origin: 100%;
	transform-origin: 100%;
}
#sequence .animate-out .antorcha {
  left: 71%;
  bottom: -800px;
  -webkit-transition-duration: 4s;
  -moz-transition-duration: 4s;
  -ms-transition-duration: 4s;
  -o-transition-duration: 4s;
  transition-duration: 4s;
  z-index: 2;
  -webkit-transform-origin: 100%;
	-moz-transform-origin: 100%;
	-ms-transform-origin: 100%;
	-o-transform-origin: 100%;
	transform-origin: 100%;
}


#sequence .map {
	position:absolute;
	left: 12%;
	top: 0px;

}

#sequence .clock {
	position:absolute;
	left: 50%;
	top: 195px;
	margin-left:-119px;
	opacity: 0;
	filter:alpha(opacity=0);
	z-index: 10;
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-ms-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	transform: rotate(0deg);
	-webkit-transition-property: left top -webkit-transform;
	-moz-transition-property: left top -moz-transform;
	-o-transition-property: left top -o-transform;
	-ms-transition-property: left top -ms-transform;
	transition-property: left top transform;
}
#sequence .animate-in .clock  {
	left: 50%;
	top: 195px;
	margin-left:-119px;
	opacity: 1;
	filter:alpha(opacity=100);
	z-index: 10;
	-webkit-transform: rotate(-360deg);
	-moz-transform: rotate(-360deg);
	-ms-transform: rotate(-360deg);
	-o-transform: rotate(-360deg);
	transform: rotate(-360deg);
  -webkit-transition-duration: 4s;
  -moz-transition-duration: 4s;
  -ms-transition-duration: 4s;
  -o-transition-duration: 4s;
  transition-duration: 4s;
}
#sequence .animate-out .clock  {
	left: 50%;
	top: 195px;
	margin-left:-119px;
	-webkit-transform: rotate(360deg);
	-moz-transform: rotate(360deg);
	-ms-transform: rotate(360deg);
	-o-transform: rotate(360deg);
	transform: rotate(360deg);
	opacity: 0;
	filter:alpha(opacity=0);
  -webkit-transition-duration: 3s;
  -moz-transition-duration: 3s;
  -ms-transition-duration: 3s;
  -o-transition-duration: 3s
}




#sequence .plane {
	position:absolute;
	left: 0%;
	opacity: 0;
	filter:alpha(opacity=0);
	max-width: 70%;
	top: 0px;
	z-index: 6;
	-webkit-transform-origin: 100%;
	-moz-transform-origin: 100%;
	-ms-transform-origin: 100%;
	-o-transform-origin: 100%;
	transform-origin: 100%;
	-webkit-transition-property: left top -webkit-transform;
	-moz-transition-property: left top -moz-transform;
	-o-transition-property: left top -o-transform;
	-ms-transition-property: left top -ms-transform;
	transition-property: left top transform;
}
#sequence .animate-in .plane {
	left: 0%;
	top: 38px;
	opacity: 1;
	filter:alpha(opacity=100);
	z-index: 4;
	-webkit-transform-origin: 100%;
	-moz-transform-origin: 100%;
	-ms-transform-origin: 100%;
	-o-transform-origin: 100%;
	transform-origin: 100%;
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-ms-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	transform: rotate(0deg);
	-webkit-transition-duration: 4s;
	-moz-transition-duration: 4s;
	-ms-transition-duration: 4s;
	-o-transition-duration: 4s;
	transition-duration: 4s;
}
#sequence .animate-out .plane {
	left: 40%;
	opacity: 0;
	filter:alpha(opacity=0);
	top: 0px;
	z-index: 2;
	-webkit-transform-origin: 100%;
	-moz-transform-origin: 100%;
	-ms-transform-origin: 100%;
	-o-transform-origin: 100%;
	transform-origin: 100%;
	
	-webkit-transition-duration: 3s;
	-moz-transition-duration: 3s;
	-ms-transition-duration: 3s;
	-o-transition-duration: 3s;
	transition-duration: 3s;
}
#sequence .sequence-fallback .animate-in .plane {
	left: 20%;
	top: 200px;
}
.pin1, .pin2, .pin3 {
	position:absolute;

	width:26px;
	height:45px;
}
.pin1 {
	-moz-animation:spin 1.1s infinite linear;
	-webkit-animation:spin 1.1s infinite linear;
}

.pin2 {
	-moz-animation:spin 1s infinite linear;
	-webkit-animation:spin 1s infinite linear;
}
.pin3 {
	-moz-animation:spin 0.9s infinite linear;
	-webkit-animation:spin 0.9s infinite linear;
}
a:hover span {
	-moz-animation:spin 0.5s infinite linear;
	-webkit-animation:spin 0.5s infinite linear;
}
@-moz-keyframes spin {
	0% { -moz-transform:translate(0px,0px); }
	50% { -moz-transform:translate(0px,-10px); }
	100% { -moz-transform:translate(0px, 0px); }
}
@-webkit-keyframes spin {
	0% { -webkit-transform:translate(0px,0px); }
	50% { -webkit-transform:translate(0px,-10px); }
	100% { -webkit-transform:translate(0px,0px); }
}



.sequence-preloader {
    height: 100%;
    position: absolute;
    width: 100%;
    z-index: 999999;
}

@keyframes preload {
    0%{
        opacity: 1;
	filter:alpha(opacity=100);
    }

    50%{
        opacity: 0;
	filter:alpha(opacity=0);
    }

    100%{
        opacity: 1;
	filter:alpha(opacity=100);
    }
}

.sequence-preloader .preloading .circle {
    fill: #ff9442;
    display: inline-block;
    height: 12px;
    position: relative;
    top: -50%;
    width: 12px;
    animation: preload 1s infinite;
}

.preloading {
    display: block;
    height: 12px;
    margin: 0 auto;
    top: 50%;
    margin-top: -6px;
    position: relative;
    width: 48px;
}

.sequence-preloader .preloading .circle:nth-child(2) {
    animation-delay: .15s;
}

.sequence-preloader .preloading .circle:nth-child(3) {
    animation-delay: .3s;
}

.preloading-complete {
    opacity: 0;
	filter:alpha(opacity=0);
    visibility: hidden;
    transition-duration: 1s;
}

div.inline{
	background-color: #D01317;
	margin-right: 4px;
	float: left;
}

a.linko{
	display:block;
	height:51px;
	width: 34px;
	padding-left: 52px;
	padding-top: 1px;
	position:absolute;
	
}

a.linko.m1{	background: url(../img/m1.png) 50% 50%; margin-left:100px; margin-top:60px;z-index:15; }
a.linko.m2{	background: url(../img/m2.png) 50% 50%; margin-left:430px; margin-top:55px;z-index:15; }
a.linko.m3{	background: url(../img/m3.png) 50% 50%; margin-left:120px; margin-top:180px;z-index:15; }


#sequence .one{
	-moz-animation:scalar 3s 1 linear;
	-webkit-animation:scalar 3s 1 linear;
	z-index: 500;
}

@-moz-keyframes scalar {
	0% { -moz-transform:rotate(0deg); }
	100% { -moz-transform:rotate(360deg); }
}
@-webkit-keyframes scalar {
	0% { -webkit-transform:rotate(0deg); }
	100% { -webkit-transform:rotate(360deg); }
}

#root1{
	position:absolute;
	width: 298px;
	height:198px;
	margin-left: 54px;
	overflow:hidden;
}
#root2{
	position:absolute;
	width: 298px;
	height:192px;
	margin-left: 33px;
	margin-top: 6px;
	overflow:hidden;
}
#root3{
	position:absolute;
	width: 105px;
	height:58px;
	margin-left: 132px;
	margin-top: 54px;
	overflow:hidden;
}


.list_carousel {
	background-color: #fff;
	margin: 0px;
	width: 100%;
}
.list_carousel ul {
	margin: 0;
	padding: 0;
	list-style: none;
	display: block;
}
.list_carousel li {
	padding: 0;
	display: block;
	float: left;
}
.list_carousel.responsive {
	width: auto;
	margin-left: 0;
}
.clearfix {
	float: none;
	clear: both;
}
.prev {
	position:absolute;
	left: 1%;
	top: 50%;
	width:48px;
	height:48px;
	background: url(../im/prev.png) no-repeat;
	text-indent:-9999px;
	margin-top: -24px;
	z-index:500;
}
.next {
	position:absolute;
	right:1%;
	top:50%;
	width:48px;
	height:48px;
	background: url(../im/next.png) no-repeat;
	text-indent:-9999px;
	margin-top: -24px;
	z-index:500;
}
.pager {
	position:absolute;
	float: left;
	width: 100%;
	text-align: center;
	z-index:500;
}
.pager a {
	margin: 0 2px;
	text-decoration: none;
	background: url(../im/navo.png) no-repeat;
	height: 16px;
	width: 16px;
	display: inline-block;
	text-indent:-9999px;
}
.pager a.selected {
	background: url(../im/navh.png) no-repeat;
}
.timer {
	background-color: #999;
	height: 6px;
	width: 0px;
}






@media screen and (max-width: 978px) {
	.content ul li {width: 95%;}
	h1 { line-height:1}
}
@media screen and (max-width: 733px) {
	header .c1{ width: 100%; padding-right:0%;}
	header .c2{ width: 100%; margin-bottom:20px}
	h1 { font-size: 36px; text-align:center;}
	.content ul li {width: 95%;}
	.primero .c1 .flecha {margin-top: 15px;}
	.segundo .c3 {width: 73%;padding-left: 1.5%;border-left: 2px solid transparent;}
	.tercero .c1{ width: 100%; padding-left:0%; padding-right:0%; margin-top:50px;}
	.tercero .c2{ width: 100%;}
	.borded {border-right: 2px solid transparent; padding-right: 0px;}
	.bordet {border-top: 2px solid transparent; padding-left: 0px; margin-top: 0px; padding-top: 0px;}
}
@media screen and (max-width: 450px) {
	header .c1{ width: 100%; padding-right:0%;}
	header .c2{ width: 100%; margin-bottom:20px}
	h1 { font-size: 36px; text-align:center;}
	.content ul li {width: 95%;}
	.primero .c1{ width: 100%; padding-right:0%;}
	.primero .c1 .flecha {margin-top: 0px;}
	.primero .c2{ width: 100%; padding-left:0%; margin-top:10px; }
	.segundo .c1{ width: 100%; margin-top:20px;}
	.segundo .c2{ width: 100%;}
	.segundo .c3{ width: 100%; padding-left:0%; border-left:2px solid transparent;}
	.tercero .c1{ width: 100%; padding-left:0%; padding-right:0%; margin-top:50px;}
	.tercero .ca{ width: 100%;}
	.tercero .cb{ width: 100%;}
	.tercero .c2{ width: 100%;}
	.ile{ display:none}
	.ito{ display:none}
	.iri{ display:none}
	.borded {border-right: 2px solid transparent; padding-right: 0px;}
	.bordet {border-top: 2px solid transparent; padding-left: 0px; margin-top: 0px; padding-top: 0px;}
}
@media screen and (max-width: 320px) {
	header .c1{ width: 100%; padding-right:0%;}
	header .c2{ width: 100%; margin-bottom:20px}
	h1 { font-size: 36px; text-align:center;}
	.content ul li {width: 95%;}
	.primero .c1{ width: 100%; padding-right:0%;}
	.primero .c1 .flecha {margin-top: 0px;}
	.primero .c2{ width: 100%; padding-left:0%; margin-top:10px; }
	.segundo .c1{ width: 100%; margin-top:20px;}
	.segundo .c2{ width: 100%;}
	.segundo .c3{ width: 100%; padding-left:0%; border-left:2px solid transparent;}
	.tercero .c1{ width: 100%; padding-left:0%; padding-right:0%; margin-top:50px;}
	.tercero .ca{ width: 100%;}
	.tercero .cb{ width: 100%;}
	.tercero .c2{ width: 100%;}
	.ile{ display:none}
	.ito{ display:none}
	.iri{ display:none}
	.borded {border-right: 2px solid transparent; padding-right: 0px;}
	.bordet {border-top: 2px solid transparent; padding-left: 0px; margin-top: 0px; padding-top: 0px;}
}