/* $Id: layout-liquid.css,v 1.5 2008/09/14 10:39:32 johnalbin Exp $ */

/*
 * LAYOUT STYLES
 *
 * Define CSS classes to create a table-free, 3-column, 2-column, or single
 * column layout depending on whether blocks are enabled in the left or right
 * columns.
 *
 * This layout is based on the Border Politics Layout Method.
 *   http://drupal.org/node/201428
 *
 * Only CSS that affects the layout (positioning) of major elements should be
 * listed here.  Such as:
 *   display, position, float, clear, width, height, min-width, min-height
 *   margin, border, padding, overflow
 */


/** body **/
  body
  {
    background:#000000;
  }

  #page
  {
  }

  #page-inner
  {
  }

  #navigation-top,
  #navigation
  {
    position: absolute; /* Take the named anchors out of the doc flow    */
    left: -10000px;     /* and prevent any anchor styles from appearing. */
  }

  #skip-to-nav
  {
    float: right;
    margin: 0 !important;
    font-size: 0.8em;
  }

  #skip-to-nav a:link, #skip-to-nav a:visited
  {
    color: #fff; /* Same as background color of page */
  }

  #skip-to-nav a:hover
  {
    color: #000;
    text-decoration: none;
  }

  /* Alternatively, the skip-to-nav link can be completely hidden until a user tabs
     to the link. Un-comment the following CSS to use this technique. */
  /*
  #skip-to-nav a, #skip-to-nav a:hover, #skip-to-nav a:visited
  {
    position: absolute;
    left: 0;
    top: -500px;
    width: 1px;
    height: 1px;
    overflow: hidden;
  }

  #skip-to-nav a:active, #skip-to-nav a:focus
  {
    position: static;
    width: auto;
    height: auto;
  }
  */

/** header **/
  #header
  {
	  background:#838382 url(images/bkg_head.gif) no-repeat 50% bottom;
  }
  
  body.front #header
  {
	  background:#f50008;
  }

  #header-inner
  {
	background: url(images/bkg_left.gif) repeat-y left top;
	border-top:14px solid #cecece;
	border-right:14px solid #cecece;
	border-left:14px solid #cecece;
  }
  
  body.front #header-inner {
	  background:#f50008;
  }

  #logo-title
  {
  }

  #logo
  {
    float: left;
  }

  #site-name
  {
  }

  #site-slogan
  {
  }

  #header-blocks
  {
    clear: both; /* Clear the logo */
  }

/** main (container for everything else) **/
  #main
  {
    position: relative;
	border-left:14px solid #cecece;
	border-right:14px solid #cecece;
	border-bottom:14px solid #cecece;
  }

  #main-inner
  {
  }

/** content **/
  #content
  {
    float: left;
    width: 100%;
    margin-left: 0;
    margin-right: -100%; /* Negative value of #content's width + left margin. */
    padding: 0; /* DO NOT CHANGE. Add padding or margin to #content-inner. */
  }
  
  .sidebar-left #main-inner {
  	background:#FFFFFF url(images/bkg_left.gif) repeat-y left top;
  }

  #content-inner,
  .no-sidebars #content-inner
  {
    margin: 0;
    padding: 0;
  }
  
  .no-sidebars #content-inner
  {
	background:#FFFFFF;
  }
  
  body.front #content-inner
  {
	background:#f50008;
	padding:50px 0px;
	font-size:1.2em;
  }
  
  body.front #content-area a,
  body.front #content-area a:link,
  body.front #content-area a:visited,
  body.front #content-area a:active {
	text-decoration:none;
  }
  
  body.front #content-area a:hover, 
  body.front #content-area a:focus {
	text-decoration:underline;
  }

  a.link_white,
  a.link_white:link,
  a.link_white:visited,
  a.link_white:active {
	  color:#FFF;
  }

  .sidebar-left #content-inner
  {
    padding-left: 210px; /* The width + left margin of #sidebar-left. */
    padding-right: 0;
  }
  

  .sidebar-right #content-inner
  {
    padding-left: 0;
    padding-right: 210px; /* The width + right margin of #sidebar-right. */
  }

  .two-sidebars #content-inner
  {
    padding-left: 210px; /* The width + left margin of #sidebar-left. */
    padding-right: 210px; /* The width + right margin of #sidebar-right. */
  }

/** navbar **/
  #navbar
  {
    float: left;
    width: 100%;
    margin-left: 0;
    margin-right: -100%; /* Negative value of #navbar's width + left margin. */
    padding: 0; /* DO NOT CHANGE. Add padding or margin to #navbar-inner. */
    height: 3.6em; /* The navbar can have any arbritrary height. We picked one
                      that is twice the line-height pluse 1em: 2 x 1.3 + 1 = 3.6
                      Set this to the same value as the margin-top below. */
  }

  .with-navbar #content,
  .with-navbar #sidebar-left,
  .with-navbar #sidebar-right
  {
    margin-top: 3.6em; /* Set this to the same value as the navbar height above. */
  }

  #navbar-inner
  {
  }

  #search-box
  {
    width: 200px;
    margin-right: -200px; /* Negative value of #search-box's width. */
    float: left;
  }

  #primary
  {
    margin-left: 200px; /* Width of search-box */
  }

  #secondary
  {
    margin-left: 200px; /* Width of search-box */
  }

  #navbar ul /* Primary and secondary links */
  {
    margin: 0;
    padding: 0;
    text-align: left;
  }

  #navbar li /* A simple method to get navbar links to appear in one line. */
  {
    float: left;
    padding: 0 10px 0 0;
  }

  /* There are many methods to get navbar links to appear in one line.
   * Here's an alternate method: */
  /*
  #navbar li
  {
    display: inline;
    padding: 0 10px 0 0;
  }
  */

/** sidebar-left **/
  #sidebar-left
  {
    float: left;
    width: 210px;
    margin-left: 0;
    margin-right: -210px; /* Negative value of #sidebar-left's width + left margin. */
    padding: 0; /* DO NOT CHANGE. Add padding or margin to #sidebar-left-inner. */
  }

  #sidebar-left-inner
  {
    margin: 40px 20px 0 13px;
    padding: 0;
  }

/** sidebar-right **/
  #sidebar-right
  {
    float: right;
    width: 200px;
    margin-left: -200px; /* Negative value of #sidebar-right's width + right margin. */
    margin-right: 0;
    padding: 0; /* DO NOT CHANGE. Add padding or margin to #sidebar-right-inner. */
  }

  #sidebar-right-inner
  {
    margin: 0 0 0 20px;
    padding: 0;
  }

/** footer **/
  #footer
  {
    background:#cecece;
	padding:0px 20px 20px;
  }
  
  #footer p, #footer .block {
  	margin:0px;
  }

  #footer-inner
  {
  }

/** closure **/
  #closure-blocks
  {
  }

/** Prevent overflowing content **/
  #header,
  #content,
  #navbar,
  #sidebar-left,
  #sidebar-right,
  #footer,
  #closure-blocks
  {
    overflow: visible;
    word-wrap: break-word; /* A very nice CSS3 property */
  }

  #navbar
  {
    overflow: hidden; /* May need to be removed if using a dynamic drop-down menu */
  }

  /* If a div.clear-block doesn't have any content after it, Firefox and Safari
     will mistakenly place several pixels worth of space between the bottom of
     the div and the bottom of the viewport. This fixes it. */
  #page { overflow-y: hidden; width:900px; margin:0px auto; } /* CSS3 property */
  
  .page-noticias .view-content, .page-noticias .views-row-odd, .page-noticias .views-row-odd {
    margin:1em 0;
  }
  
  /* LOGIN */
  .head_wrap_login_form {
	  text-align: left; 
	  width:200px;
	  float:right;
  }
  
  .head_wrap_user_form {
	  text-align:right;
	  /*width:200px;*/
	  float:right;
  }

  .login_title {
	  background:#000;
	  color:#FFF;
	  line-height:23px;
	  font-weight:bold;
	  text-align:center;
  }
  
  #header-inner #user-login-form {
	  font-size:9px;
	  background:#cecece;
	  padding:3px 5px;
	  margin-bottom:10px;
  }
  
  #header-inner #user-login-form .form-item {
	  margin:0 0 0 0;
  }
  
  #header-inner #user-login-form .form-item label {
	  width:85px;
	  line-height:20px;
	  float:left;
  }
  
  #header-inner #user-login-form #edit-name,
  #header-inner #user-login-form #edit-pass,
  #header-inner #user-login-form #edit-pass-1,
  #header-inner #user-login-form #edit-name-1
  {
	  width:95px;
  }
	  
  
  #header-inner #user-login-form .form-submit {
	  margin-left:85px;
	  font-size:9px;
	  width:95px;
	  color:#FFF;
	  background:#F50008;
	  border:1px solid #000;
	  font-weight:bold;
  }
  
  #header-inner #user-login-form #edit-pass-wrapper,
  #header-inner #user-login-form #edit-pass-1-wrapper {
	  margin:3px 0 3px;
  }

 
  #block-phplist-0 {
	  background:#CECECE;
  }
  
  #block-phplist-0 .form-item {
	  margin:4px 2px 2px 3px;
	  font-weight: normal;
  }

  #block-phplist-0 .form-item  label {
	  font-weight: normal;
	  font-size:0.9em;
	  margin-left: 3px;
  }  
  
  #block-phplist-0 .content {
	  padding:0px;
	  font-weight: normal;
  }
  
  #block-phplist-0 #edit-mail {
	  width:163px;
	  font-weight:normal;
		margin-left: 2px;
		margin-right: 2px;	  
  }
  
  #block-phplist-0 #edit-mail-1 {
	  width:163px;
	  font-weight:normal;
		margin-left: 2px;
		margin-right: 2px;	  
  }  
  
  #block-phplist-0 h2 {
	background:#000000 none repeat scroll 0 0;
	color:#FFFFFF;
	font-weight:bold;
	line-height:18px;
	font-size:1em;
	text-transform:uppercase;
	text-align: center;
	padding-top: 3px;
	padding-bottom: 3px;
  }
  
  #block-phplist-0 #phplist-subscribe-form .form-submit {
	background:#F50008 none repeat scroll 0 0;
	border:1px solid #000000;
	color:#FFFFFF;
	font-size:9px;
	font-weight:bold;
	width:167px;
	margin-left: 5px;
	margin-right: 5px;
	margin-bottom: 5px;
  }
  
  .node-type-corto span.print {
	  display:block;
	  text-align:right;
  }
  
  #block-block-2 {
	  margin-left:30px;
	  margin-top:-0.8em;
  }
  
  #account-balance {
	  float:right;
	  border:1px dashed #999;
	  padding:10px;
	  font-size:2em;
  }
  
  #cuenta-history {
	  clear:both;
	  margin:5px;
	  
  }
  
