/* $Id: zen.css,v 1.14.2.1 2009/02/13 07:46:04 johnalbin Exp $ */

/*
 * ZEN STYLES
 *
 * This is an example stylesheet. Sub-themes should NOT include the zen/zen.css
 * file, but instead copy this CSS to their own stylesheets.
 *
 * In this stylesheet, we have included all of the classes and IDs from this
 * theme's tpl.php files. We have also included many of the useful Drupal core
 * styles to make it easier for theme developers to see them.
 *
 * Many of these styles are over-riding Drupal's core stylesheets, so if you
 * remove a declaration from here, the styles may still not be what you want
 * since Drupal's core stylesheets are still styling the element. See the
 * drupal6-reference.css file for a list of all Drupal 5.x core styles.
 *
 * In addition to the style declarations in this file, other Drupal styles that
 * you might want to override or augment are those for:
 *
 *   Book Navigation  See line 74  of Zen's drupal6-reference.css file
 *   Forum            See line 197 of Zen's drupal6-reference.css file
 *   Menus            See line 667 of Zen's drupal6-reference.css file
 *   News Aggregator  See line 20  of Zen's drupal6-reference.css file
 *   Polls            See line 287 of Zen's drupal6-reference.css file
 *   Search           See line 320 of Zen's drupal6-reference.css file
 *   User Profiles    See line 945 of Zen's drupal6-reference.css file
 */

/* *******************************************************************************************************************
html-elements.css 
******************************************************************************************************************* */

/* $Id: html-elements.css,v 1.1.2.2 2009/02/13 19:42:10 johnalbin Exp $ */

/****
 **** HTML ELEMENT STYLING
 ****/


/** fonts **/
  /*
   * Our font size and line height declarations are based on the following ALA
   * article:
   *   http://www.alistapart.com/articles/howtosizetextincss
   *
   * All modern browsrs use a 16px default font size. Specifying the font-size
   * and line-height in ems (relative to the 16px default font) allows the user
   * to resize the font in the browser and produces the most consistent results
   * across different browsers.
   */
  body
  {
    font-size: 100%; /* Fixes exaggerated text resizing in IE6 and IE7 */
  }

  #page
  {
    /*
     * To use a 12px font size on the page, delete the 14px declarations.
     * to use a 14px font size on the page, delete the 12px declarations.
     */

    /* Use a 12px base font size with a 16px line height */
    font-size: 0.75em; /* 16px x .75 = 12px */
    line-height: 1.333em; /* 12px x 1.333 = 16px */

    /* Use a 14px base font size with a 18px line height */
    font-size: 0.875em; /* 16px x .875 = 14px */
    line-height: 1.286em; /* 14px x 1.286 = 18px */
  }

  body, caption, th, td, input, textarea, select, option, legend, fieldset
  {
    font-family: Arial, Helvetica, "Bitstream Vera Sans", sans-serif;
  }

  pre, code
  {
    font-size: 1.1em; /* Monospace fonts can be hard to read */
    font-family: "Bitstream Vera Sans Mono", "Courier New", monospace;
  }

/** headings **/
  h1
  {
    font-size: 2em;
    line-height: 1.3em;
    margin-top: 0;
    margin-bottom: 0.5em;
  }

  h2
  {
    font-size: 1.5em;
    line-height: 1.3em;
    margin-top: 0.667em; /* Equivalent to 1em in the page's base font: 1 / 1.5 = 0.667em */
    margin-bottom: 0.667em;
  }

  h3
  {
    font-size: 1.3em;
    line-height: 1.3em;
    margin-top: 0.769em; /* Equivalent to 1em in the page's base font: 1 / 1.3 = 0.769 */
    margin-bottom: 0.769em;
  }

  h4, h5, h6
  {
    font-size: 1.1em;
    line-height: 1.3em;
    margin-top: 0.909em; /* Equivalent to 1em in the page's base font: 1 / 1.1 = 0.909 */
    margin-bottom: 0.909em;
  }

  .big 
  {
    font-size:1.231em; 
    line-height:1.125em;
  }

/** block-level elements **/
  p, ul, ol, dl, pre, table, fieldset, blockquote
  {
    margin: 1em 0;
  }

/** lists **/
  /* standardize list item indentation */
  ul, ol
  {
    margin-left: 0;
    padding-left: 2em;
  }

  .block ul, /* Drupal overrides */
  .item-list ul
  {
    margin: 0.2em 0;
    padding: 0 0 0 2em;
  }
  /**
   * Don't indent lists within tabular views fields
   * Views-field list items have vertical margins, so subtract from them at the borders
   */
  tr .views-field .item-list ul
  {
    margin: -0.1em 0;
    padding: 0;
  }


  ul ul, ul ol,
  ol ol, ol ul,
  .block ul ul, .block ul ol,
  .block ol ol, .block ol ul,
  .item-list ul ul, .item-list ul ol,
  .item-list ol ol, .item-list ol ul
  {
    margin: 0;
  }

  li
  {
    margin: 0;
    padding: 0;
  }

  .item-list ul li /* Drupal override */
  {
    margin: 0;
    padding: 0;
    list-style: inherit;
  }
  /* define specific list item style for display within tabular Views fields */
  tr .views-field .item-list ul li
  {
    margin: 0.2em 0;
    padding: 0 .3em;
    list-style-type: none;
    /**
     * background color is 25% lighter than the average of odd & even row colours
     * This is still darker than the selected row colour, which is 50% lighter than the average.
     */
    background-color: #F9F0DF;
  }
  /* For tables with even/odd rows (most) use the average of the two colours. */
  tr.even .views-field .item-list ul li,
  tr.odd .views-field .item-list ul li 
  {
    background-color: #F8EBD5;
  }

  ul.menu li, /* Drupal override */
  li.expanded,
  li.collapsed,
  li.leaf
  {
    margin: 0;
    padding: 0;
  }

  ul          { list-style-type: disc; }
  ul ul       { list-style-type: circle; }
  ul ul ul    { list-style-type: square; }
  ul ul ul ul { list-style-type: circle; }
  ol          { list-style-type: decimal; }
  ol ol       { list-style-type: lower-alpha; }
  ol ol ol    { list-style-type: decimal; }

  dt
  {
    margin: 0;
    padding: 0;
  }

  dd
  {
    margin: 0 0 0 2em;
    padding: 0;
  }

/** links **/
  a
  {
  }

  /* The order of link states are based on Eric Meyer's article:
   * http://meyerweb.com/eric/thoughts/2007/06/11/who-ordered-the-link-states
   */
  a:link
  {
    color: #000022;
  }

  a:visited
  {
    color: #110011;
  }

  a:hover,
  a:focus
  {
  }

  a:active
  {
    text-decoration: none;
  }
  a.active
  {
    text-decoration: none;
  }

/** tables **/
  /* Override Drupal default CSS */
  table
  {
    border-collapse: collapse;
    width: 100%; /* Prevent cramped-looking tables */
  }

  th,
  thead th,
  tbody th
  {
    text-align: left;
    /* padding-right: 0; */
    border-bottom: none;
  }

  td,
  th
  {
    padding-left: 0.4em;
    padding-right: 0.4em;
  }


  tbody
  {
    border-top: none;
  }

  thead th { border-bottom: 3px solid #578094; }
  /* table header background is a 70%-lighter version of the border colour */
  thead tr { background: #CCD8DE; }
  tbody { border-top: 1px solid #578094; }
  tr.even, tr.odd { border-bottom: 1px solid #578094; }
  /* if the table does not delineate even and odd rows, use an average of the even&odd row colors. */
  tr { background: #F8EBD5; } 
  /* even and odd row background colours are taken directly from the globe in the header image */
  tr.even { background: #F2DBD3; }
  tr.odd { background: #FFFBD8; }
  /* even and odd rows are 50% lighter when active */
  td.active         { background-color: #FBF5EA; } 
  tr.even td.active { background-color: #F8EDE9; }
  tr.odd  td.active { background-color: #FFFDEB; }
  /* sticky header background is the same as the even rows */
  table.sticky-header { background: #F2DBD3; }

/** abbreviations **/
  abbr
  {
    border-bottom: 1px dotted #666;
    cursor: help;
    white-space: nowrap;
  }

  /* Date-based "abbreviations" show computer-friendly timestamps which are not
     human-friendly. */
  abbr.created
  {
    border: none;
    cursor: auto;
    white-space: normal;
  }

/** images **/
  img
  {
    border: 0;
  }

/** horizontal rules **/
  hr
  {
    height: 1px;
    border: 1px solid #666;
  }

/** forms **/
  form
  {
    margin: 0;
    padding: 0;
  }

  fieldset
  {
    margin: 1em 0;
    padding: 0.5em;
  }


/** addresses **/
  /* I don't understand why the addresses have a bottom margin anywhere, but they certainly don't need it in the tables. */
  td dl.adr
  {
    margin: 0;
  }
	
	/* $Id: tabs.css,v 1.2 2008/09/08 02:35:29 johnalbin Exp $ */
	
/* *******************************************************************************************************************
zen/tabs.css 
******************************************************************************************************************* */

/*
 * Tabs CSS
 *
 * Adds styles for the primary and secondary tabs.
 *
 * Compare this with default CSS found in the system module's stylesheet (a copy
 * of which is in drupal6-reference.css, line 510.)
 *
 */

  div.tabs
  {
    margin: 0 0 5px 0;
  }

  ul.primary
  {
    margin: 0;
    padding: 0 0 0 10px;
    border-width: 0;
    list-style: none;
    white-space: nowrap;
    line-height: normal;
    background: url(images/tab-bar.png) repeat-x left bottom;
  }

  ul.primary li
  {
    float: left;
    margin: 0;
    padding: 0;
  }

  ul.primary li a
  {
    display: block;
    height: 24px;
    margin: 0;
    padding: 0 0 0 5px; /* width of tab-left.png */
    border-width: 0;
    font-weight: bold;
    text-decoration: none;
    color: #777;
    background-color: transparent;
    background: url(images/tab-left.png) no-repeat left -38px;
  }

  ul.primary li a .tab
  {
    display: block;
    height: 20px; /* 24px (parent) - 4px (padding) */
    margin: 0;
    padding: 4px 13px 0 6px;
    border-width: 0;
    line-height: 20px;
    background: url(images/tab-right.png) no-repeat right -38px;
  }

  ul.primary li a:hover
  {
    border-width: 0;
    background-color: transparent;
    background: url(images/tab-left.png) no-repeat left -76px;
  }

  ul.primary li a:hover .tab
  {
    background: url(images/tab-right.png) no-repeat right -76px;
  }

  ul.primary li.active a,
  ul.primary li.active a:hover
  {
    border-width: 0;
    color: #000;
    background-color: transparent;
    background: url(images/tab-left.png) no-repeat left 0;
  }

  ul.primary li.active a .tab,
  ul.primary li.active a:hover .tab
  {
    background: url(images/tab-right.png) no-repeat right 0;
  }

  ul.secondary
  {
    margin: 0;
    padding: 0 0 0 5px;
    border-bottom: 1px solid #c0c0c0;
    list-style: none;
    white-space: nowrap;
    background: url(images/tab-secondary-bg.png) repeat-x left bottom;
  }

  ul.secondary li
  {
    float: left;
    margin: 0 5px 0 0;
    padding: 5px 0;
    border-right: none;
  }

  ul.secondary a
  {
    display: block;
    height: 24px;
    margin: 0;
    padding: 0;
    border: 1px solid #c0c0c0;
    text-decoration: none;
    color: #777;
    background: url(images/tab-secondary.png) repeat-x left -56px;
  }

  ul.secondary a .tab
  {
    display: block;
    height: 18px; /* 24px (parent) - 6px (padding) */
    margin: 0;
    padding: 3px 8px;
    line-height: 18px;
  }

  ul.secondary a:hover
  {
    background: url(images/tab-secondary.png) repeat-x left bottom;
  }

  ul.secondary a.active,
  ul.secondary a.active:hover
  {
    border: 1px solid #c0c0c0;
    color: #000;
    background: url(images/tab-secondary.png) repeat-x left top;
  }/* $Id: messages.css,v 1.1.2.2 2009/02/13 07:46:04 johnalbin Exp $ */

/* *******************************************************************************************************************
zen/messages.css 
******************************************************************************************************************* */

/*
 * MESSAGES STYLE
 *
 * Add sensible messages styling.
 */


  div.messages, /* Important messages (status, warning, and error) for the user */
  div.status,
  div.warning,
  div.error
  {
    min-height: 21px;
    margin: 0 1em 5px 1em;
    border: 2px solid #ff7;
    padding: 5px 5px 5px 35px;
    color: #000;
    background-color: #ffc;
    background-image: url(images/messages-status.png);
    background-repeat: no-repeat;
    background-position: 5px 5px;
  }

  div.status /* Normal priority messages */
  {
  }

  div.warning /* Medium priority messages */
  {
    border-color: #fc0;
    background-image: url(images/messages-warning.png);
  }

  div.warning,
  tr.warning
  {
    color: #000; /* Drupal core uses #220 */
    background-color: #ffc;
  }

  div.error /* High priority messages. See also the .error declaration below. */
  {
    /* border: 1px solid #d77; */ /* Drupal core uses: 1px solid #d77 */
    border-color: #c00;
    background-image: url(images/messages-error.png);
  }

  div.error,
  tr.error
  {
    color: #900; /* Drupal core uses #200 */
    background-color: #fee;
  }

  div.messages ul
  {
    margin-top: 0;
    margin-bottom: 0;
  }/* $Id: block-editing.css,v 1.2 2008/09/14 12:50:55 johnalbin Exp $ */

/* *******************************************************************************************************************
zen/block-editing.css 
******************************************************************************************************************* */

/*
 * Rollover edit links for blocks
 */

  div.block.with-block-editing
  {
    position: relative;
  }

  div.block.with-block-editing div.edit
  {
    display: none;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 40;
    border: 1px solid #eee;
    padding: 0 2px;
    font-size: 9px;
    background-color: #fff;
  }

  div.block.with-block-editing:hover div.edit
  {
    display: block;
  }/* $Id: wireframes.css,v 1.3 2008/09/14 13:01:32 johnalbin Exp $ */

/* *******************************************************************************************************************
zen/wireframes.css 
******************************************************************************************************************* */

/*
 * WIREFRAMES STYLE
 *
 * Add wireframes to the basic layout elements.
 */


  .with-wireframes #header-inner,
  .with-wireframes #content-inner,
  .with-wireframes #content-inner>*,
  .with-wireframes #navbar-inner,
  .with-wireframes #sidebar-left-inner,
  .with-wireframes #sidebar-right-inner,
  .with-wireframes #footer-inner
  {
    margin: 1px;
    padding: 2px;
    border: 1px solid #ccc;
  }

  .with-wireframes #closure-blocks
  {
    margin-top: 1px;
    padding: 2px;
    border: 1px solid #ccc;
  }

/* *******************************************************************************************************************
layout.css 
******************************************************************************************************************* */
 
/* $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
  {
  }

  #page,
  #closure-blocks
  {
    /*
     * 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: 866px;
  }

  #page-inner
  {
  }

/** header **/
  #header
  {
    height: 120px;
    height: 107px;/*  */
  }

  #logo
  {
    float: left;
  }

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

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

/** content **/
  #content,
  .no-sidebars #content
  {
    width: 866px;
    margin-left: 0;
    padding: 0; /* DO NOT CHANGE. Add padding or margin to #content-inner. */
  }

  .sidebar-left #content
  {
    width: 760px;
    margin-left: 200px; /* The width of #sidebar-left. */
    margin-right: -866px; /* Negative value of #content's width + left margin. */
  }

  .sidebar-right #content
  {
    width: 760px;
    margin-left: 0;
    margin-right: -760px; /* Negative value of #content's width + left margin. */
  }

  .two-sidebars #content
  {
    width: 560px;
    margin-left: 200px; /* The width of #sidebar-left */
    margin-right: -760px; /* Negative value of #content's width + left margin. */
  }

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

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

  #primary
  {
    height: 64px;
  }

  #secondary
  {
    height: 32px;
  }

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

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

/** sidebar-left **/
  #sidebar-left
  {
    float: left;
    width: 200px;
    margin-left: 0;
    margin-right: -200px; /* 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: 0 20px 0 0;
    padding: 0;
  }

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

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

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

/* *******************************************************************************************************************
cccs.css 
******************************************************************************************************************* */
 
/** body **/
  body {
    margin: 0;
    background: #1F2B34;
  }

/** header **/
  #header {
    color: #FFF;
    background: transparent url(images/header_trimmed_bg.jpg) no-repeat;
  }
  #header a {
    color: #FFF;
  }

  #logo-title /* Wrapper for logo, website name, and slogan */ {
    padding: 24px 0 0 20px;
    padding: 17px 0 0 20px;/*  */
    width: 571px;
    float: left;
  }

  #logo /* Wrapper for logo */ {
    margin: 0 6px 0 0;
  }

  h1#site-name, div#site-name /* The name of the website */ {
    margin: 0 0 10px 0;
    margin: 0 0 7px 0;/*  */
    font-size: 2em;
    font-size: 18px;
    line-height: 23px;
  }

  #site-name a:link,
  #site-name a:visited {
    text-decoration: none;
  }
  
  #above {
    width: 275px;
    float: left;
    margin-top: 35px;
    margin-top: 28px;/*  */
  }
  
  #footer { 
    margin: 70px 0 0;
  }
  
  #footer .menu { 
    _width: 100%;
  }

/** content **/
  #content-inner {
    background: #1E2A33 url(images/middle_tile.gif) repeat-x scroll center top;
  }

  .breadcrumb /* The path to the current page in the form of a list of links */ {
    padding-bottom: 0; /* Undo system.css */
  }

  h1.title, /* The title of the page */
  h2.title, /* Block title or the title of a piece of content when it is given in a list of content */
  h3.title /* Comment title */ {
    margin: 0;
  }

  .help /* Help text on a page */ {
    margin: 1em 0;
  }

  .more-help-link /* Link to more help */ {
    font-size: 0.85em;
    text-align: right;
  }

  .pager /* A list of page numbers when more than 1 page of content is available */ {
    clear: both;
    margin: 1em 0;
    text-align: center;
  }

  .pager a, .pager strong.pager-current {
    padding: 0.5em;
  }

  .feed-icons /* The links to the RSS or Atom feeds for the current list of content */ {
    margin: 1em 0;
  }

	#content {
		z-index: 1;
		position: relative;
		top: 64px;
		top: 57px;/*  */
		left: 0;
	}
	
	#main {
    background: transparent url(images/primary_links_trimmed_bg.jpg) no-repeat;
	}
	
	#main-inner {
		position: relative;
	}
	
/** navbar **/
  #navbar {
    color: #FFF;
    position:absolute;
		top: 0;
		left: 0;
  }
  #navbar, #navbar * {
		z-index: 1000;
  }
  #navbar a {
    color: #FFF;
  }

  #edit-search-theme-form-1-wrapper label /* Label that says "Search this site:" */ {
    display: none;
  }
  
  #block-search-0 {
    text-align: right;
    margin-right: 20px;
  }
  #block-search-0 label {
    display: none;
  }
	
  #block-nice_menus-1 /* Primary links */ {
		margin: 0;
		padding-left: 20px;
	}
  #block-nice_menus-1 ul#nice-menu-1 {
    position:relative;
    text-align:center;
    padding-top: 20px;
    padding-top: 17px;/*  */
		text-align: center;
  }
  #block-nice_menus-1 ul#nice-menu-1 > li {
    display:block;
    position:relative;
		padding-right: 15px;
		margin-right: 5px;
  }
  #block-nice_menus-1 ul {
    list-style:none;
    margin:0;
    padding:0;
    border: none;
		text-align: left;
  }
  #block-nice_menus-1 ul li {
    list-style:none;
    border: none;
  }
	
	ul.nice-menu-down li {
		background-color: transparent;
		border: none;
	}
	ul.nice-menu-down li {
		background-color: transparent;
		border: none;
	}
	ul.nice-menu-down .menuparent a {
		padding-right: 0;
	}
	ul.nice-menu-down li.menuparent, ul.nice-menu-down li.menuparent:hover {
  	background-position: left center;
  }
	#block-nice_menus-1 ul#nice-menu-1 > li.menuparent {
		background-color: transparent;
		padding-left: 10px;
	}
	#block-nice_menus-1 ul#nice-menu-1 > li.menuparent:hover {
		background-color: transparent;
		padding-left: 10px;
		background-color: #121921;
	}
	ul.nice-menu-down li ul {
		background-color: #121921;
		border: 1px solid #121921;
	}

  ul.nice-menu-down li.menuparent {
    background-image: url(images/arrow-down.png);
  }
  
  ul.nice-menu-down li.menuparent:hover {
    background-image: url(images/arrow-down.png);
  }
  
  ul.nice-menu-down li li.menuparent {
    background-image: url(images/arrow-right.png);
  }
  
  ul.nice-menu-down li li.menuparent:hover {
    background-image: url(images/arrow-right.png);
	}
	
  #secondary /* Secondary links */ {
    background: transparent url(images/secondary_links_trimmed_bg.jpg) no-repeat;
  }
  #secondary .links-title {
    float: left;
    font-size: 140%;
    padding-left: 33px;
    padding-top: 4px;
  }
  #secondary ul {
    padding-top: 6px;
    float: right;
    padding-right: 33px;
  }
  #secondary li {
    padding-right: 0;
    padding-left: 2em;
  }
  
  #block-menu-secondary-links { 
    text-align: center;
  }
  
  #block-menu-secondary-links, #block-menu-secondary-links a { 
    color: white;
  }
  
  #block-menu-secondary-links ul { 
    margin: 0 auto;
    padding: 0;
    text-align: center;
    display: table;
  }
  * html #block-menu-secondary-links ul { 
    display: inline-block;
    width:1px;
  }

  #block-menu-secondary-links li { 
    list-style-type: none;
    list-style-image: none;
    margin: 0;
    padding: 0;
    display: inline;
    float: left;
  }
  
  #block-menu-menu-management-links, #block-menu-menu-management-links a {
    color: white;
  }

/** Drupal nodes **/
  .node /* Node wrapper */ {
    padding-bottom: 1.5em;
    padding-top: 1.5em;
    margin-bottom: 1.5em;
    border-bottom: 1px solid #d4d4d4;
  }

  .node-unpublished div.unpublished, /* The word "Unpublished" displayed beneath the content. */
  .comment-unpublished div.unpublished {
    height: 0;
    overflow: visible;
    color: #d8d8d8;
    font-size: 75px;
    line-height: 1;
    font-family: Impact, "Arial Narrow", Helvetica, sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
    word-wrap: break-word; /* A very nice CSS3 property */
  }

  .marker /* "New" or "Updated" marker for content that is new or updated for the current user */ {
    color: #c00;
  }

  .node.node-unpublished .picture,
  .comment.comment-unpublished .picture {
    position: relative; /* Otherwise floated pictures will appear below the "Unpublished" text. */
  }

  .node .content /* Node's content wrapper */ {
    margin-bottom: 0.6em;
    margin-top: 0.6em;
  }

  .node div.links /* Wrapper for node links */ {
    margin: 1em 0;
  }

  ul.links /* Taxonomy links, node links, comment links */ {
    margin: 0;
    padding: 0;
  }

  ul.links.inline {
    display: inline;
  }

  ul.links li {
    display: inline;
    list-style-type: none;
    padding: 0 0.5em;
  }

/** Drupal comments **/
  #comments /* Wrapper for the list of comments and its title */ {
    margin: 1em 0;
  }

  .new /* "New" marker for comments that are new for the current user */ {
    color: #c00;
  }

  .comment .content /* Comment's content wrapper */ {
    margin-bottom: 0.6em;
    margin-top: 0.6em;
  }

  .comment div.links /* Wrapper for comment links. See also the ul.links declaration in the node section above. */ {
    margin: 1em 0;
  }

/** Drupal blocks **/
  .block /* Block wrapper */ {
    margin-bottom: 1em;
  }

  #block-ad-2 /* horizontal advertising block */ {
    text-align: center;
    margin: 3em 0 0;
  }
  #block-ad-2 .image-advertisement /* horizontal advertising block */ {
    padding: 0;
  }

  #header-blocks {
    overflow: auto;
  }
  
  /**
   * Styles for the "Member login" block
   */
    #block-cccsmtl_membership-0 div.block-inner 
    {
      padding-right:  1em;
      padding-bottom: 1em;
    }
    #member-login-form .form-item { margin: 0; }
    #member-login-form a.active { font-weight: bold; }
    #block-cccsmtl_membership-0 h2.title
    {
      display: none;  /* never display the title of this block */
    }
    /* item-list styles */
      #block-cccsmtl_membership-0 div.item-list               { text-align: right;  }
      #block-cccsmtl_membership-0 div.item-list ul            {   margin: 0;        }
      #block-cccsmtl_membership-0 div.item-list li            {   list-style: none; margin: .5em 0 .5em 0; display: inline; margin-right: 1em; }
      #block-cccsmtl_membership-0 div.item-list li.first      {     margin-top: 0; }
      #block-cccsmtl_membership-0 div.item-list li.last       {     margin-bottom: 0; }
      #block-cccsmtl_membership-0 div.item-list #profile-link {   font-size: 140%; font-size: 1.1em;  }
  /* styles specific to the 'trimmed' version of the header */
    #block-cccsmtl_membership-0 /* "Member login" block */
    {
      width: 440px; /* align the right side of the block with the left edge of the globe */
      float: right;
    }
    #block-cccsmtl_membership-0 div.block-inner 
    {
      float: right; /* float the inner div right so that elements will be right-aligned to the globe */
    }
      

  #block-locale-0 /* "Language Switcher" block */ {
    text-align: left;
    width: 413px;
    float: left;
    margin-right: 0;
    margin-left: 20px;
  }
  #block-menu-menu-login-menu {
    float: right;
    text-align: right;
    margin-right: 20px;
  }
  #block-menu-menu-login-menu a {
    color: black;/*  */
  }
  #block-locale-0 ul,
  #block-menu-menu-login-menu ul {
    padding: 0;
  }
  #block-locale-0 ul li,
  #block-menu-menu-login-menu ul li {
    display: inline;
    list-style-type: none;
    font-size: large;
    font-size: 1.1em;
  }
  #block-locale-0 ul li {
    margin-right: 1em;
  }
  #block-menu-menu-login-menu ul li {
    margin-left: 1em;
  }

  .more-link /* Aggregator, blog, and forum more link */ {
    text-align: right;
  }

  #user-login-form /* Drupal's default login form */ {
    text-align: left;
  }

  li a.active /* The active item in a Drupal menu */ {
    color: #000;
    text-decoration: none;
  }


/** Drupal forms **/
  .form-item, /* Wrapper for a form element (or group of form elements) and its label */
  .form-checkboxes,
  .form-radios {
    margin: 1em 0;
  }

  .form-item input.error, /* Highlight the form elements that caused a form submission error */
  .form-item textarea.error,
  .form-item select.error {
    border: 2px solid #c00;
  }

  .form-item label /* The label for a form element */ {
    display: block;
    font-weight: bold;
  }

  .form-item label.option /* The label for a radio button or checkbox */ {
    display: inline;
    font-weight: normal;
  }

  .form-required /* The part of the label that indicates a required field */ {
    color: #c00;
  }

  .form-item .description /* The descriptive help text (separate from the label) */ {
    font-size: 0.85em;
  }

  .form-checkboxes .form-item, /* Pack groups of checkboxes and radio buttons closer together */
  .form-radios .form-item {
    margin: 0.4em 0;
  }

  .container-inline div, .container-inline label /* Inline labels and form divs */ {
    display: inline;
  }

  .tips /* Tips for Drupal's input formats */ {
    margin: 0;
    padding: 0;
    font-size: 0.9em;
  }

/** OpenID **/
  /* The default styling for the OpenID login link seems to assume Garland's
   * styling of list items.
   */
  #user-login-form ul /* OpenID creates a new ul above the login form's links. */ {
    margin-bottom: 0; /* Position OpenID's ul next to the rest of the links. */
  }

  #user-login-form li.openid-link, /* The "Log in using OpenID" links. */
  #user-login li.openid-link {
    margin-top: 1em;
    margin-left: -20px; /* Un-do some of the padding on the ul list. */
  	padding-left: 20px;
  	background-position: left center;
  }

  #user-login-form li.user-link, /* The "Cancel OpenID login" links. */
  #user-login li.user-link {
    margin-top: 1em;
  	list-style-type: disc;
  	list-style-position: outside;
  }

  #user-login li.openid-link, /* The OpenID links on the /user form. */
  #user-login li.user-link {
    margin-left: -2em; /* Un-do all of the padding on the ul list. */
  }

/** Drupal admin tables **/
  /* We overrode these styles in html-elements.css, but restore them for the
   * forms on the site.
   */
  form tbody {
    border-top: 1px solid #ccc;
  }

  form th {
    text-align: left;
    padding-right: 1em;
    border-bottom: 3px solid #ccc;
  }

  form tbody th {
    border-bottom: 1px solid #ccc;
  }

  form thead th {
    text-align: left;
    padding-right: 1em;
    border-bottom: 3px solid #ccc;
  }


/**
 * randomly-located event hacks
 */
div.node-type-member-event-registration div.sell { display: none; }
div.node-type-member-event-registration div.field-field-event { display: none; }
div.node-type-visitor-event-registration div.sell { display: none; }
div.node-type-visitor-event-registration div.field-field-event { display: none; }


/**
 * Prevent dates from being broken in mid-line
 */
span.date-display-start, span.date-display-end {
  white-space: nowrap;
}

/**
 * Display views table-cell menu items appropriately
 */
div.inline-menu-item {
  white-space: nowrap;
  display:inline;
  float:none;
}
div.inline-menu-item div {
  display:inline;
  float:none;
}
div.inline-menu-item div {
  display:inline;
  float:none;
}

div.nowrap-menu-item {
  white-space: nowrap;
}


/* tabs styles */
div.tabs li {
  _width: 100px;
}
div.tabs li a:link,
div.tabs li a:visited {
  color: #52788B;
  font-style: italic;
}
div.tabs li.active a:link,
div.tabs li.active a:visited {
  color: #000;
  font-style: normal;
}


/* user form field styles */
.node-form .form-text, .node-form .text {
  width: 275px;
}


dl.adr dd { margin-left: 0; }

div.block.with-block-editing div.edit,
div.views-admin-links,
div.views-admin-links:hover {
  background-color: #FAFFBD;
  border: 1px solid #A7A6AA;
  margin-top: -2em;
}
div.block.with-block-editing div.edit a.block-config,
div.block.with-block-editing div.edit a.block-edit-menu,
div.views-admin-links a {
  color: #000 !important;
}


div.indent {
  overflow: auto;
}
/* #primarycontentblock {
  width: 597px;
  float: left;
  overflow: auto;
} */
#content-inner {
  overflow: auto;
	padding: 33px 19px 20px 20px;
	padding: 23px 19px 20px 20px;/*  */
}
.main_box {
  width: 675px !important;
  .width: 672px !important;
  _width: 672px !important;
  float: left;
	height: auto;
  margin-right: 10px;
}
#largebanner {
  text-align: center;
}
#largebanner iframe {
  margin: 0;
	border: none;
	border-width: 0;
  width: 480px;
	height: 75px;
	.height: 75px;
	_height: 75px;
}
#smallbanners {
  float: left;
  width: 142px;
  padding-top: 75px;
  text-align: left;
}
#smallbanners iframe {
  margin: 0;
	border: none;
	border-width: 0;
  width: 142px;
	height: 195px;
	.height: 182px;
	_height: 182px;
}

div.image-advertisement {
  padding-bottom: 1em;
}

#content-header {
  position: relative;
}
#content-header div.help span.print-syslink {
  
  position: absolute;
  top: 0;
  right: 0;
  font-size: 11px;
  margin: 2px 0 0;
}
.print_html, .print_mail, .print_pdf, .print-syslink {
  margin:0;
}
#content-header div.help a:link,
#content-header div.help a:visited
{
  color: #c00;
}

th.views-field-sell-price,
td.views-field-sell-price,
th.views-field-buyitnowbutton,
td.views-field-buyitnowbutton {
	text-align: right;
}



/* $Id$ */

/*
 * Rounded corners and other styles taken from the template on the CD.
 */

.main_box {background:#fefefe url(images/main_box_tile_top.gif) top repeat-x; width:100%;}
.main_box .tile_bottom {background:url(images/main_box_tile_bottom.gif) bottom repeat-x;}
.main_box .tile_right {background:url(images/main_box_tile_right.gif) right repeat-y;}
.main_box .tile_left {background:url(images/main_box_tile_left.gif) left repeat-y;}
.main_box .corner_bottom_right {background:url(images/main_box_corner_bottom_right.gif) bottom right no-repeat;}
.main_box .corner_bottom_left {background:url(images/main_box_corner_bottom_left.gif) bottom left no-repeat;}
.main_box .corner_top_right {background:url(images/main_box_corner_top_right.gif) top right no-repeat;}
.main_box .corner_top_left {background:url(images/main_box_corner_top_left.gif) top left no-repeat; width:100%;}
.main_indent {padding:20px 21px 20px 21px;}

.indent {padding:13px 10px 10px 17px;}
.indent2 {padding:13px 10px 27px 17px;}


.box {background:#f4f4f4 url(images/box_tile_bottom.gif) bottom repeat-x; color:#646464; font-size:0.923em; line-height:1.5em; width:100%;}
.box .tile_top {background:url(images/box_tile_top.gif) top repeat-x;}
.box .corner_top_right {background:url(images/box_corner_top_right.gif) top right no-repeat;}
.box .corner_top_left1 {background:url(images/box_corner_top_left1.gif) top left no-repeat;}
.box .corner_top_left2 {background:url(images/box_corner_top_left2.gif) top left no-repeat;}
.box .corner_bottom_right {background:url(images/box_corner_bottom_right.gif) bottom right no-repeat;}
.box .corner_bottom_left {background:url(images/box_corner_bottom_left.gif) bottom left no-repeat; width:100%;}
.box .indent {padding:8px 5px 22px 17px;}
.main_box .box {background-image:none;background-color: inherit;}
.main_box .box .tile_top {background-image:none;}
.main_box .box .corner_top_right {background-image:none;}
.main_box .box .corner_top_left1 {background-image:none;}
.main_box .box .corner_top_left2 {background-image:none;}
.main_box .box .corner_bottom_right {background-image:none;}
.main_box .box .corner_bottom_left {background-image:none;}

.box2 {background:#fff url(images/box2_tile_bottom.gif) bottom repeat-x; color:#646464; font-size:0.923em; line-height:1.5em; width:100%;}
.box2 .corner_top_right {background:url(images/box2_corner_top_right.gif) top right no-repeat;}
.box2 .corner_top_left1 {background:url(images/box2_corner_top_left1.gif) top left no-repeat;}
.box2 .corner_bottom_right {background:url(images/box2_corner_bottom_right.gif) bottom right no-repeat;}
.box2 .corner_bottom_left {background:url(images/box2_corner_bottom_left.gif) bottom left no-repeat; width:100%;}
.box2 .indent {padding:3px 5px 22px 17px;}

.imgindent {margin:0 20px 0 0; float:left;}
.title {margin-bottom:10px;}
.titlex {height: 60px; padding:8px 0 10px 0; }
.title1 {height: 60px; padding:8px 0 10px 0; background:url(images/title1_bg.jpg) top right no-repeat;}
.title2 {height: 60px; padding:8px 0 10px 0; background:url(images/title2_bg.jpg) top right no-repeat;}
.title3 {height: 60px; padding:8px 0 10px 0; background:url(images/title3_bg.jpg) top right no-repeat;}
.title4 {height: 60px; padding:8px 0 10px 0; background:url(images/title4_bg.jpg) top right no-repeat;}
.title5 {height: 60px; padding:8px 0 10px 0; background:url(images/title5_bg.jpg) top right no-repeat;}
.title6 {height: 60px; padding:8px 0 10px 0; background:url(images/title6_bg.jpg) top right no-repeat;}
.title7 {height: 60px; padding:9px 0 19px 0; background:url(images/title7_bg.jpg) top right no-repeat;}
.title8 {height: 60px; padding:9px 0 13px 0; background:url(images/title8_bg.jpg) top right no-repeat;}

/* *******************************************************************************************************************
membership_login.css
******************************************************************************************************************* */
/* $Id$ */

/**
 * customize the login form that displays in the membership section.
 */
div#membership-login-form-container {
  width:100%;
}
div#membership-login-form-title {
  float:left;
/*  margin: 30px 10px 0px 0px; */
  font-weight:bold;
}
div#membership-login-form-body {
  float:right;
  display:inline;
}
div#membership-login-form-body div {
  float:left;
}
/* submit button and related text */
div#membership-login-form-submitsection {
  text-align:center;
  margin-left:6px;
}
div#membership-login-form-clear {
  clear:both;
}
