/* -------------------------------------------------------------- 
  
   buttons.css
   * Gives you some great CSS-only buttons.
   
   Created by Kevin Hale [particletree.com]
   * particletree.com/features/rediscovering-the-button-element

   See Readme.txt in this folder for instructions.

-------------------------------------------------------------- */

a.button, button {
  display:block;
  float:left;
  margin:0.6em 0.583em;
  padding:5px 10px 5px 7px;   /* Links */
  
  border:1px solid #dedede;
  border-top:1px solid #eee;
  border-left:1px solid #eee;

  background-color:#CB0808;
  font-family:"Lucida Grande", Tahoma, Arial, Verdana, sans-serif;
  font-size:0.9em;
  line-height:1.2em;
  text-decoration:none;
  font-weight:bold;
  color:#fff;
  cursor:pointer;
}
button {
  width:auto;
  overflow:visible;
  padding:4px 10px 3px 7px;   /* IE6 */
}
button[type] {
  padding:4px 10px 4px 7px;   /* Firefox */
  line-height:17px;           /* Safari */
}
*:first-child+html button[type] {
  padding:4px 10px 3px 7px;   /* IE7 */
}
button img, a.button img{
  margin:0 3px -3px 0 !important;
  padding:0;
  border:none;
  width:16px;
  height:16px;
  float:none;
}

/* Button colors
-------------------------------------------------------------- */

/* Standard */
button:hover, a.button:hover{
  background-color:#660404;
  border:1px solid #c2e1ef;
  color:#fff;
  margin:0.6em 0.583em;
  padding:5px 10px 5px 7px;  
}
a.button:active{
  background-color:#fff;
  border:1px solid #c2e1ef;
  color:#660404;
  margin:0.6em 0.583em;
  padding:5px 10px 5px 7px;
}

a.button:visited{
  background-color:#CC0000;
  border:1px solid #EEE;
  color:#CCC;
  margin:0.6em 0.583em;
  padding:5px 10px 5px 7px;
}

/* Positive */
body .positive {
  color:#529214;
}
a.positive:hover, button.positive:hover {
  background-color:#E6EFC2;
  border:1px solid #C6D880;
  color:#529214;
}
a.positive:active {
  background-color:#FF0000;
  border:1px solid #529214;
  color:#fff;
}

/* Negative */
body .negative {
  color:#d12f19;
}
a.negative:hover, button.negative:hover {
  background:#fbe3e4;
  border:1px solid #fbc2c4;
  color:#d12f19;
}
a.negative:active {
  background-color:#d12f19;
  border:1px solid #d12f19;
  color:#fff;
}
/* -------------------------------------------------------------- 
   
   forms.css
   * Sets up some default styling for forms
   * Gives you classes to enhance your forms
   
   Usage:
   * For text fields, use class .title or .text
   
-------------------------------------------------------------- */

label       { /*font-weight: bold; text-decoration:none; list-style:none; font-family:Arial, Helvetica, sans-serif; color:#666;*/text-decoration:none; list-style:none; font-family:Arial, Helvetica, sans-serif; font-size:0.95em; color:#666; padding-top:0.3em;}
fieldset    { /*padding:10px 0 10px 10px; margin: 0 0 2em 0; border: 1px solid #ccc; color:#333;*/clear:both; dispaly:block; background:#F8F8F8; border: 1px solid #D2D2D2; color:#333; padding:5px; margin:0.5em 0.3em }
legend      { /*font-weight: bold; font-size:0.9em; padding:5px; font-family:Arial, Helvetica, sans-serif; color:#666;*/font-weight: bold; font-size:1.2em; font-family:Arial, Helvetica, sans-serif; color:#666; margin :0; padding:0.5em;}


/* Form fields
-------------------------------------------------------------- */

input.text, input.title,
textarea, select {
  margin:0;
  border:1px solid #bbb;
  font-family:Arial, Helvetica, sans-serif;
  font-size:0.95em;
  clear:both;
}

input.text:focus, input.title:focus,
textarea:focus, select:focus {
  border:1px solid #666;
}

input.text, 
input.title   { /*width: 350px;*/ padding:5px}
input.title   { font-size:0.7em; }
textarea      { width: 92%; padding:5px; margin:0.3em 0; font-family:Arial, Helvetica, sans-serif; font-size:1em;}
input.checkbox {margin-right:5px;} 
/* Success, notice and error boxes
-------------------------------------------------------------- */

.error,
.notice, 
.success    { padding: .8em; margin-bottom: 1em; border: 2px solid #ddd; }

.error      { background: #FBE3E4; color: #8a1f11; border-color: #FBC2C4; }
.notice     { background: #FFF6BF; color: #514721; border-color: #FFD324; }
.success    { background: #E6EFC2; color: #264409; border-color: #C6D880; }
.error a    { color: #8a1f11; }
.notice a   { color: #514721; }
.success a  { color: #264409; }


/* --------------------------------------------------------------  
   grid.css
   * Sets up an easy-to-use grid of 24 columns.
   
   By default, the grid is 974px wide, with 24 columns 
   spanning 31px, and a 10px margin between columns.
-------------------------------------------------------------- */

/* A container should group all your columns. */
.container {
  width: 974px;
  margin: 0 auto;
  margin-top:0;
  background:#FFF;
}
/* Use this class on any div.span / container to see the grid. */
.showgrid { 
  /*background: url(grid.png);*/
}

/* Columns
-------------------------------------------------------------- */

/* Sets up basic grid floating and margin. */
div.span-1, div.span-2, div.span-3, div.span-4, div.span-5, 
div.span-6, div.span-7, div.span-8, div.span-9, div.span-10, 
div.span-11, div.span-12, div.span-13, div.span-14, div.span-15, 
div.span-16, div.span-17, div.span-18, div.span-19, div.span-20, 
div.span-21, div.span-22, div.span-23, div.span-24 {
  float: left;
  margin-right: 10px;
  overflow:hidden;
  position:relative;
}

/* The last column in a row needs this class. */
div.last { margin-right: 0; }

div.span{
  float: left;
  margin-right: 5px;
  overflow:hidden;
  position:relative;
}

/* Use these classes to set the width of a column. */
.span-1  { width: 31px; }
.span-2  { width: 72px; }
.span-3  { width: 113px; }
.span-4  { width: 154px; }
.span-5  { width: 195px; }
.span-6  { width: 236px; }
.span-7  { width: 277px; }
.span-8  { width: 318px; }
.span-9  { width: 359px; }
.span-10 { width: 400px; }
.span-11 { width: 441px; }
.span-12 { width: 482px; }
.span-13 { width: 523px; }
.span-14 { width: 564px; }
.span-15 { width: 605px; }
.span-16 { width: 646px; }
.span-17 { width: 687px; }
.span-18 { width: 728px; }
.span-19 { width: 769px; }
.span-20 { width: 810px; }
.span-21 { width: 851px; }
.span-22 { width: 892px; }
.span-23 { width: 933px; }
.span-24, div.span-24 { width: 974px; margin: 0; }

/* Add these to a column to append empty cols. */
.append-0  { padding-right: 10px; }
.append-1  { padding-right: 41px; }  
.append-2  { padding-right: 82px; } 
.append-3  { padding-right: 123px; } 
.append-4  { padding-right: 164px; } 
.append-5  { padding-right: 205px; } 
.append-6  { padding-right: 246px; } 
.append-7  { padding-right: 287px; } 
.append-8  { padding-right: 328px; } 
.append-9  { padding-right: 369px; } 
.append-10 { padding-right: 410px; } 
.append-11 { padding-right: 451px; } 
.append-12 { padding-right: 492px; } 
.append-13 { padding-right: 533px; } 
.append-14 { padding-right: 574px; } 
.append-15 { padding-right: 615px; } 
.append-16 { padding-right: 656px; } 
.append-17 { padding-right: 697px; } 
.append-18 { padding-right: 738px; } 
.append-19 { padding-right: 779px; } 
.append-20 { padding-right: 820px; } 
.append-21 { padding-right: 861px; } 
.append-22 { padding-right: 902px; } 
.append-23 { padding-right: 943px; } 

/* Add these to a column to prepend empty cols. */
.prepend-0  { padding-left: 10px; } 
.prepend-1  { padding-left: 41px; }  
.prepend-2  { padding-left: 82px; } 
.prepend-3  { padding-left: 123px; } 
.prepend-4  { padding-left: 164px; } 
.prepend-5  { padding-left: 205px; } 
.prepend-6  { padding-left: 246px; } 
.prepend-7  { padding-left: 287px; } 
.prepend-8  { padding-left: 328px; } 
.prepend-9  { padding-left: 369px; } 
.prepend-10 { padding-left: 410px; } 
.prepend-11 { padding-left: 451px; } 
.prepend-12 { padding-left: 492px; } 
.prepend-13 { padding-left: 533px; } 
.prepend-14 { padding-left: 574px; } 
.prepend-15 { padding-left: 615px; } 
.prepend-16 { padding-left: 656px; } 
.prepend-17 { padding-left: 697px; } 
.prepend-18 { padding-left: 738px; } 
.prepend-19 { padding-left: 779px; } 
.prepend-20 { padding-left: 820px; } 
.prepend-21 { padding-left: 861px; } 
.prepend-22 { padding-left: 902px; } 
.prepend-23 { padding-left: 943px; } 


/* Border on right hand side of a column. */
div.border {
  padding-right: 4px;
  margin-right: 5px;
  border-right: 1px solid #eee;
}

div.borderPorta {
  padding-right: 4px;
  margin-right: 5px;
  border-right: 1px solid #ccc;
}

/* Border with more whitespace, spans one column. */
div.colborder {
  padding-right: 24px;
  margin-right: 25px;
  border-right: 1px solid #ccc;
}

/* Misc classes and elements
-------------------------------------------------------------- */

/* Gerenic box for complete site*/
.box{
	clear:both;
	overflow:hidden;
	position:relative; 
	padding: 0; 
	margin-bottom: 1em;
}
.boxPorta{
	clear:both;
	overflow:hidden;
	position:relative; 
	padding: 5px 10px; 
}
.boxHead{
	position:relative; 
}
.boxBody{
	position:relative;
}
.boxFoot{
	position:relative; 
}
/*Use this to create an images box*/

div.imgSet {
	margin: 0;
	padding: 0.5em 0;
	display:block;
	position: relative;
}
/*IMG SET NORMAL Y RIGHT*/
div.imgSet.A {
	float:right;
	margin-left:10px;
}
div.imgSet.B {
	float:left;
	margin-right:10px;
}
div.imgSet img{
	padding:0;
	border:0;
}
div.imgSet p {
	font-size: 0.83em; margin:0;text-align:right;color: #999;
}
div.imgSet b {
	display:block; position:absolute; bottom:-4px; right:10px;
}
div.imgSet.C{
	overflow:hidden;
	border:none;
	width:auto;
	height:110px;
	margin:0 0.5em 1em 0.5em;
}
div.imgSet.C p {
	display:block;
	position:absolute;
	overflow:hidden;
	right:0;
	bottom:0;
	width:65%;
	margin:0 1em;
	text-align:left;
	font-size: 0.95em;
	font-family: Georgia, "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-weight: normal;
	color:#484A55;
}
div.imgSet.C img {float:left;}

img{
	border:0;
}
/* Use this to create a horizontal ruler across a column. */
hr {
  background: #ddd; 
  color: #666;
  clear: both; 
  float: none; 
  width: 100%; 
  height: 4px;
  margin: 3px 0;
  border: none; 
}
hr.articulo{
  background: #DDD; 
  color: #DDD;
  clear: both; 
  float: none; 
  width: 100%; 
  height: 1px;
  margin: 6px 0;
  border: none; 
}
hr.space {
  background: #FFF; 
  color: #FFF;
  clear: both; 
  float: none; 
  width: 100%; 
  height: 1px;
  margin: 3px 0;
  border: none; 
}
hr.sep {
  background: #FFF; 
  color: #FFF;
  clear: both; 
  float: none; 
  width: 100%; 
  height: 4px;
  margin: 3px 0;
  border: none; 
}
hr.footer {
  background: #EEE; 
  color: #EEE;
  clear: both; 
  float: none; 
  width: 100%; 
  height: 1px;
  margin: 3px 0;
  padding:0;
  border: none; 
}

hr.separacion {
  background: url(i/bg_sep.gif)left top repeat-x; 
  color: #FFF;
  clear: both; 
  float: none; 
  width: 100%; 
  height: 1px;
  margin: 3px 0;
  padding:3px 0;
  border: none; 
}

/* Clearing floats without extra markup
   Based on How To Clear Floats Without Structural Markup by PiE
   [http://www.positioniseverything.net/easyclearing.html] */

.clearfix:after, .container:after {
    content: "."; 
    display: block; 
    height: 0; 
    clear: both; 
    visibility: hidden;
}
.clearfix, .container {display: inline-block;}
* html .clearfix,
* html .container {height: 1%;}
.clearfix, .container {display: block;}


/* Regular clearing
   apply to column that should drop below previous ones. */

.clear { clear:both; }

