/*   

Theme Name: CSS inicial
Theme URI: http://rudeworks.com/blog/css-inicial-2/
Author: RUDE
Author URI: http://rudeworks.com
Version: 2.0
Description: CSS básico con arreglos y selectores pre-configurados.

*/

/* Elementos que queremos limpiar completamente: */

* {
	margin: 0;
	padding: 0;
	border: none;
}

html {
	text-shadow: #000 0px 0px 0px;/* Elimina el efecto bold en Safari */
}


/* Ajustes tipográficos */

h1, h2, h3, h4, h5, h6, p, pre,
blockquote, ul, ol, dl, address {
	font-weight: normal;
	margin: 0;
}

cite, em, dfn {
	font-style: italic;
}

sup {
	position: relative;
	bottom: 7px;
	vertical-align: baseline;
}

sub {
	position: relative;
	bottom: -0.6px;
	vertical-align: baseline;
}

li, dd, blockquote {
	margin-left: 16px;
}

del {
	text-decoration: line-through;
}

ins, dfn {
	border-bottom: 1px solid #ccc;
}

small, sup, sub {
	font-size: 85%;
}

abbr, acronym {
	text-transform: uppercase;
	font-size: 85%;
	letter-spacing: .4px;
	border-bottom-style: dotted;
	border-bottom-width: 1px;
}

a abbr, a acronym {
	border: none;
}

sup {
	vertical-align: super;
}

sub {
	vertical-align: sub;
}

h1 {
	font-size: 32px;
}

h2 {
	font-size: 29px;
}

h3 {
	font-size: 26px;
}

h4 {
	font-size: 22px;
}

h5 {
	font-size: 19px;
}

h6 {
	font-size: 16px;
}

/*** LINKS: Recuerda utilizar siempre la regla del LoVe-HAte ***/

a, a:link, a:visited, a:hover, a:active {
	/*
	Si quisieramos eliminar la línea de puntos que aparece al pulsar un enlace, aplicaríamos la siguiente propiedad:
	
	outline: 0;
	
	Sin embargo no se recomienda, por temas de accesibilidad para navegación con teclado (lo cual implica temas legales, un tema peliagudo).
	*/
	text-decoration: none;
}

a img {
	border: none;
	text-decoration: none;
}

img {
	border: none;
	text-decoration: none;
	/*
	Si añades un background aparecerá como fondo de la imagen, útil para imágenes de carga
	*/
}

/* Formularios */

label, button {
	cursor: pointer;
}

input:focus, select:focus, textarea:focus {
	background-color: #FFF;
}

fieldset {
	border: none;
}

/* Clases útiles */

.clear {
	clear: both;
}

.float-left {
	float: left;
}

.float-right {
	float: right;
}

/* Para empezar un layout centrado: */

body {
	text-align: center;/* Hack para que IE6 no de problemas */
	background-image:url(../images/fondo.jpg);
	background-repeat:repeat-x;
	background-color:#DB921A;
	height:100%;
}

.logo{
	margin:0 auto;
	margin-top:5px;
}

.wrapper{
	margin:0 auto;
	width:850px;
	height:auto;
	overflow:hidden;
	background-color:#FFF;
}

.encabezado{
	width:850px;
	height:215px;
}

.titulo{
	width:850px;
	height:78px;
	margin:0 auto;
}

.soprano{
	float:left;
	padding-left:155px;
	width:215px;
	}
.accent{
	float:left;
	padding-left:20px;
	width:235px;
	}
	
a.soprano{background:url(http://www.linelaser.com.ar/images/soprano-xl.jpg) no-repeat 0 0;
display:block;
margin: 35px 0 0 20px;
float:left;
width:107px;
height:397px;
overflow:hidden;
text-indent:-9999px;	
}

a.accent{background:url(http://www.linelaser.com.ar/images/accent-ultra.jpg) no-repeat 0 0;
display:block;
margin: 35px 0 0 20px;
float:left;
width:237px;
height:397px;
overflow:hidden;
text-indent:-9999px;	
}

.subwrapper{
	width:750px;
	height:595px;
	height:auto;
	overflow:hidden;
	padding:0 50px 15px 50px;
}

.columna{
	width:240px;
	margin-right:10px;
	float:left;
}

.dos_columnas_left{
	width:320px;
	float:left;
}

.dos_columnas_right{
	width:320px;
	float:right;
}

input, textarea{
	background-color:#EECB8A;
	border:2px solid #C6521E;
	padding:3px;
	font:Verdana, Arial, Helvetica, sans-serif;
	color:#333;
	font-size:15px;
}

input{
	width:351px;
	height:33px;
}

textarea{
	width:351px;
	height:113px;
	font:Verdana, Arial, Helvetica, sans-serif;
	color:#333;
	font-size:15px;
}

input.boton{
	background-color:none;
	border:none;
	text-transform:uppercase;
	background:none;
	font-size:13px;
	font-weight:bold;
	margin-top:20px;
	color:#666;
	cursor:pointer;
}


.pie{
	width:850px;
	height:70px;
	margin:0 auto;
}
ul{
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size:13px;
	line-height:150%;
	margin-top:15px;
	font-stretch:narrower;
	text-align:left;
}
p{
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size:13px;
	line-height:150%;
	margin-top:15px;
	font-stretch:narrower;
	text-align:left;
}

h1{
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size:30px;
	line-height:150%;
	margin-top:15px;
	font-stretch:narrower;
	text-align:left;
	color:#C9521E;
}

h2{
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size:20px;
	line-height:150%;
	margin-top:15px;
	font-stretch:narrower;
	text-align:left;
	color:#C9521E;
}

.resaltado{
	color:#C9521E;
	font-weight:bold;
}
