body, html {
	 width:100%;
	height:100%;
}

body {
	font: 24px 'Raleway', sans-serif;
	font-weight:200;
	overflow-x:hidden;
	/* background: url(../img/bg6.jpg) no-repeat fixed; */
	/* background: url(../img/bg33.jpg) no-repeat fixed; */
	/* background: url(../img/bg333.jpg) no-repeat fixed; */
	background-size:cover;

}

#main {
	min-height: 800px;
	margin: 0px;
	padding: 0px;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-flow: row;
	flex-flow: row;
}

#main > article {
	margin: 4px;
	padding: 5px;
	border: 0px solid gold;
	border-radius: 3pt;
	background: rgba(255,255,255, .5);
	background: rgba(148, 0, 211, .5);
	background: rgba(80, 0, 115, .5);
	background: rgba(0,0,0, .6);
	-webkit-flex: 3 1 60%;
	flex: 3 1 60%;
	-webkit-order: 2;
	order: 2;		
}

#main > nav {
	margin: 4px;
	padding: 5px;
	border: 0px solid gold;
	border-radius: 3pt;
	background: rgba(255,255,255, .6);
	background: rgba(148, 0, 211, .5);
	background: rgba(80, 0, 115, .5);
	background: rgba(0,0,0, .6);
	-webkit-flex: 1 6 17%;
	flex: 1 6 17%;
	-webkit-order: 1;
	order: 1;
}
	
#main > aside {
	margin: 4px;
	padding: 5px;
	border: 0px solid gold;
	border-radius: 3pt;
	background: rgba(255,255,255, .6);
	/* background: rgba(80, 0, 115, .5); */
	background: rgba(0,0,0, .6);
	-webkit-flex: 1 6 17%;
	flex: 1 6 17%;
	-webkit-order: 3;
	order: 3;
}

header, footer {
	font-family: 'Raleway', sans-serif;
	text-align:center;
	font:small-caps;
	display: block;
	margin: 4px;
	padding: 5px;
	min-height: 100px;
	height: 120px;
	border-radius: 3pt;
	-moz-box-shadow   : 1px 1px 2px #666;
	-webkit-box-shadow: 1px 1px 2px #666;
	box-shadow        : 1px 1px 2px #666;
}

header {
	padding:10px;
	color:gold;
	background: url(../img/header_bg.png) no-repeat; 				
	background-size:cover;
	border:0;
}				

header, footer {
	opacity:.9;
}

article > p {
	font: 400 14px 'Ubuntu Condensed', 'Raleway', 'Verdana';	
	color:#eee;
	width:90%;
	padding:12px;
	text-align:center;
	font-size:16px;	
}

footer {
	color:gold;
	background: url(../img/footer_bg.jpg) repeat;
	height:40px;
	text-align:left;
	position:relative;
	bottom:0;
	widows:100%;
}

footer .logo {
	background: url(../img/papersellsolo.png);
	background-size:cover;
	margin-left:20px;
	margin-top:10px;
	height:48px;
	width:48px;
	
}

footer > p {
	color:#fff;
	width:100%;
	padding:12px;
	text-align:center;
	font: 10px Verdana;
}

header > .logo {
	background: url(../img/papersellsolo.png) no-repeat;
	background-size:cover;
	margin-left:20px;
	margin-top:15px;
	height:68px;
	width:74px;	
}
header > .psell {
	text-shadow:5px 5px 5px #000000;
	text-align:right;
	font-size:46px;
	font-weight:100;
	width:95%;
	position:absolute;
	top:10px;
	padding-right:20px;
	
}

header > .psell > p {
	font-size:14px;
	margin:0;
	padding:-10px;
	color:#fff;
	width:100%;
	line-height:140%;
}

.sucursal {
	font-size:17px;
	text-align:left;
	width:85%;
	padding:10px;
	font-weight:bolder;
	text-decoration: underline;
	border:4px solid blue;
}

.sucursal_:hover {
	color:#000;
	background: #febf04;
	background: -moz-linear-gradient(left, #febf04 0%, #ffd65e 100%);
	background: -webkit-linear-gradient(left, #febf04 0%,#ffd65e 100%);
	background: linear-gradient(to right, #febf04 0%,#ffd65e 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#febf04', endColorstr='#ffd65e',GradientType=1 );
}

nav > p {
	font-size:12px;
	text-align:left;
	width:90%;
	margin:0 auto;
	padding-left:20px;
	color:#000;
	font-weight:bolder;
}

nav > p:hover {
	text-decoration: underline;
}

#main > aside {
	-moz-box-shadow   : 1px 1px 2px #666;
	-webkit-box-shadow: 1px 1px 2px #666;
	box-shadow        : 1px 1px 2px #666;
}

aside > h1, nav > h1 {
	font-family: 'Raleway', sans-serif;
	text-align:center;
	font:small-caps;
	font-size:26px;
	font-weight:300;
	color:#fff;
}

aside > h1 {
	-moz-animation-fill-mode    : both;
    -moz-animation-duration     : 1s; 
    -webkit-animation-fill-mode : both;
    -webkit-animation-duration  : 1s;
    -o-animation-fill-mode      : both;
    -o-animation-duration       : 1s;
    -ms-animation-fill-mode     : both;
    -ms-animation-duration      : 1s;
    animation-duration          : 1s;		
}

/* Too narrow to support three columns */
@media all and (max-width: 640px) {
	
	#main, #page {
		-webkit-flex-flow: column;
		flex-flow: column;
	}
	
	#main > article, #main > nav, #main > aside {
		/* Return them to document order */
		-webkit-order: 0;
		order: 0;
	}
	
	#main > nav, #main > aside, header, footer {
		min-height: 50px;
		max-height: 50px;
		
	}
	footer .logo {
		display:none
	}
}

ul{
	font-family: 'Raleway', sans-serif;
	font-size:14px;
	width:85%;
	margin-bottom:20px;
	overflow:hidden;
}

li{
	line-height:27px; /* 1.5em; */
	border-bottom:0px solid red;
	float:left;
	display:inline;
	margin-left:-20px;
	color:#FFF;
}

#double li  { width:100%;}

li:hover{
	background-color:#ead6b7;
	background: url(../img/footer_bg.jpg);
	color:gold;
	padding-left:10px;
}

.nota {
	font-size:30px;
	font-weight:200;
	color:#fff;
	padding:4px;
	margin:0 auto;	
	background: rgba(255,255,255, .8);
	background:transparent;
    /* border: 1px solid #08c; */
	background-origin: border-box;
    width: 90%;
    height: 70px;
	line-height: 34px;
    text-align: center;
	text-shadow:5px 5px 5px #000000;
    -moz-animation-fill-mode    : both;
    -moz-animation-duration     : 1s; 
    -webkit-animation-fill-mode : both;
    -webkit-animation-duration  : 1s;
    -ms-animation-fill-mode     : both;
    -ms-animation-duration      : 1s;
    animation-duration          : 1s;
}



.slider {
	z-index:3000;
}

/* nosotros */ 
.nosotros {
	z-index:1200;
	display:none;
	font-size:28px;
	font-weight:200;
	color:#000;
	padding:0px;
	background: rgba(255,255,255, .9);
 	/* background: rgba(148, 0, 211, .5); morado */
	border: 2px solid #35004c;
	position:absolute;
    top:20px;
	right:20px;
	bottom:20px;
	left:20px;
	line-height: 28px; 
    text-align: center;
	text-shadow:0px 1px 1px #000000;
	-moz-box-shadow: 4px 4px 5px #000000;
	-webkit-box-shadow: 4px 4px 5px #000000;
	box-shadow: 4px 4px 5px #000000;
	overflow:auto;
	-moz-animation-fill-mode    : both;
    -moz-animation-duration     : 1s; 
    -webkit-animation-fill-mode : both;
    -webkit-animation-duration  : 1s;
    -o-animation-fill-mode      : both;
    -o-animation-duration       : 1s;
    -ms-animation-fill-mode     : both;
    -ms-animation-duration      : 1s;
    animation-duration          : 1s;
}
.nosotros > .valores {
	font-size:50px;
	color:black;
	text-align:left;
	margin:.4em;
	-moz-animation-fill-mode    : both;
    -moz-animation-duration     : 1s; 
    -webkit-animation-fill-mode : both;
    -webkit-animation-duration  : 1s;
    -o-animation-fill-mode      : both;
    -o-animation-duration       : 1s;
    -ms-animation-fill-mode     : both;
    -ms-animation-duration      : 1s;
    animation-duration          : 1s;
}

.nosotros > p {
	text-align:justify;
	width:95%;
	margin:0 auto;
	-moz-animation-fill-mode    : both;
    -moz-animation-duration     : 1s; 
    -webkit-animation-fill-mode : both;
    -webkit-animation-duration  : 1s;
    -o-animation-fill-mode      : both;
    -o-animation-duration       : 1s;
    -ms-animation-fill-mode     : both;
    -ms-animation-duration      : 1s;
    animation-duration          : 1s;	
}

.nosotros > .mvv {
	text-align:center;
}
.backleft, .backleftcouche {
	padding:0;
	cursor:pointer;
	height:64px;
	width:64px;
	position:absolute;
	top:20px;
	right:20px;
	background-image: url(../img/arrow-left.png);
	background-size:cover;
}

/* tablas de articulos */
	.couche, .autocopiantecortado, .autocopianteextendido, .sulfatada, .contacto {
		z-index:201;
		display:none;
		font-size:28px;
		font-weight:200;
		color:#000;
		padding:12px;
		background: rgba(255,255,255, 1);
		opacity:1;
		border: 2px solid #35004c;
		position:absolute;
		top:20px;
		right:20px;
		bottom:20px;
		left:20px;
		line-height: 28px; 
		text-align: center;
		text-shadow:0px 1px 1px #000000;
		-moz-box-shadow: 4px 4px 5px #000000;
		-webkit-box-shadow: 4px 4px 5px #000000;
		box-shadow: 4px 4px 5px #000000;
		overflow:hidden;
		-moz-animation-fill-mode    : both;
		-moz-animation-duration     : 1s; 
		-webkit-animation-fill-mode : both;
		-webkit-animation-duration  : 1s;
		-o-animation-fill-mode      : both;
		-o-animation-duration       : 1s;
		-ms-animation-fill-mode     : both;
		-ms-animation-duration      : 1s;
		animation-duration          : 1s;
	}

