/* $Id: layout-fixed.css,v 1.5.2.3 2009/02/13 19:20:19 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 Zen Columns 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
  {
    padding:0;
	margin:0;
  }

  #page
  {
    /*
     * If you want to make the page a fixed width and centered in the viewport,
     * this is the standards-compliant way to do that. See also the ie.css file
     * for the necessary IE5 hack to center a div.
     */
    margin-left: auto;
    margin-right: auto;
    width: 960px;
  }

  #page-inner
  {
  }


/** header **/
  #header
  {
  }

  #header-inner
  {
  }

  #logo-title
  {
  }

  #logo
  {
    float: left;
  }



/** main (container for everything else) **/
  #main
  {
    /*position: relative;*/
	margin:0;
	padding:0;
  }

  #main-inner
  {
  }

/** content **/
  #content
  {
    float: left;
    width: 960px;
    margin-left: 0;
    padding: 0; 
  }

  #content-inner
  {
    margin: 0;
    padding: 0;
  }


/** footer **/
  #footer
  {
  }

  #footer-inner
  {
  }

.imagerow {
	text-align: center;
}
.imagerow img {
	margin: 0 5px;
	border: 1px solid #000235;
}

.merchtable {
	border: 1px solid #333;
}
.merchtable td, .merchtable th {
	padding: 5px;
	border: 1px solid #333;
}

