@charset "UTF-8";
/* Reset */
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 {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}



/*--------------- Efectos ---------------*/
.shadow-inset-bottom, .shadow-inset-bottom-small {
	box-shadow: 0 -8px 30px rgba(0,0,0,0.2) inset;
	-moz-box-shadow: 0 -8px 30px rgba(0,0,0,0.2) inset;
	-webkit-box-shadow: 0 -8px 30px rgba(0,0,0,0.2) inset;
}

.shadow-inset, .shadow-small-inset {
	box-shadow: 0 0 11px rgba(0,0,0,0.2) inset;
	-moz-box-shadow: 0 0 11px rgba(0,0,0,0.2) inset;
	-webkit-box-shadow: 0 0 11px rgba(0,0,0,0.2) inset;
}

.shadow-mini {
	box-shadow: 0 0 5px rgba(0,0,0,0.2);
	-moz-box-shadow: 0 0 5px rgba(0,0,0,0.2);
	-webkit-box-shadow: 0 0 5px rgba(0,0,0,0.2);
}
.shadow, .shadow-small {
	box-shadow: 0 0 11px rgba(0,0,0,0.2);
	-moz-box-shadow: 0 0 11px rgba(0,0,0,0.2);
	-webkit-box-shadow: 0 0 11px rgba(0,0,0,0.2);
}
.shadow-small-right {
	box-shadow: 2px 0 7px rgba(30,30,30, 0.3);
	-moz-box-shadow: 2px 0 7px rgba(30,30,30, 0.3);
	-webkit-box-shadow: 2px 0 7px rgba(30,30,30, 0.3);
}
.text-shadow-small {text-shadow:#333 0 1px 3px;}
.radius-top {
	border-radius: 10px 10px 0 0; 
}

.radius-normal {
	border-radius: 10px; 
	-moz-border-radius: 10px;
	-khtml-border-radius: 10px;
	-webkit-border-radius: 10px;
}
.radius, .radius-small {
	border-radius: 5px; 
	-moz-border-radius: 5px;
	-khtml-border-radius: 5px;
	-webkit-border-radius: 5px;
}
.radius-small-right {
	border-radius: 0 5px 5px 0; 
	-moz-border-radius: 0 5px 5px 0;
	-khtml-border-radius: 0 5px 5px 0;
	-webkit-border-radius: 0 5px 5px 0;
}
.radius-mini {
	border-radius: 3px; 
	-moz-border-radius: 3px;
	-khtml-border-radius: 3px;
	-webkit-border-radius: 3px;
}
.circle {
	border-radius: 50%; 
	-ms-border-radius: 50%;
	-moz-border-radius: 50%;
	-khtml-border-radius: 50%;
	-webkit-border-radius: 50%;
}
.radius-small-bottom {
	border-radius: 0 0 5px 5px; 
	-moz-border-radius: 0 0 5px 5px;
	-khtml-border-radius: 0 0 5px 5px;
	-webkit-border-radius: 0 0 5px 5px;
}
.animar-slow {
	-webkit-animation: .5s ease;
	-moz-animation: .5s ease;
	-ms-animation: .5s ease;
	-o-animation: .5s ease;
	animation: .5s ease;
	-webkit-transition: all .5s ease-in-out;
	-moz-transition: all .5s ease-in-out;
	-o-transition: all .5s ease-in-out;
	-ms-transition: all .5s ease-in-out;
	transition: all .5s ease-in-out;
}
.animar, .animar-fast {
	-webkit-animation: .2s ease;
	-moz-animation: .2s ease;
	-ms-animation: .2s ease;
	-o-animation: .2s ease;
	animation: .2s ease;
	-webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	-ms-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
}
/* FIN Efectos */