/* $Id: zen.css,v 1.14 2008/09/15 10:36:22 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
 */

/* #content        { background: #ffd; }
 #header         { background: #fdf; }
 #sidebar-left   { background: #dff; }
 #sidebar-right  { background: #dfd; }
 #content-header { background: #ddf; }
 #content-top    { background: #ddd; }*/

/** body **/
  body
  {
    margin: 0;
    padding: 0;
    background: #9cc;
    color: #666;
    font-family: Helvetica, sans-serif;
  }
  body.section-print-fair {
    background: #fff;
  }

  #page
  {
    background-image: url(images/bg-1080.png);
    overflow: hidden;
		/* using the smaller of the two font size declarations from html-elements.css */
    font-size: 0.75em; /* 16px x .75 = 12px */
    line-height: 1.333em; /* 12px x 1.333 = 16px */
  }
  body.section-print-fair #page {
    background-image: url(images/printfair/printfair-bg.png);
  }


  #page-inner
  {
  }

/** admin area **/

#admin 
{
  background: #cf6;
  /* text slightly smaller than body type */
  font-size: 0.67em;
  line-height: 1.5em;
}

#admin-inner
{
}

/** header **/
  #header
  {
  }

  #header-inner
  {
  }

  #logo-title /* Wrapper for logo, website name, and slogan */
  {
  }

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

  #logo-image /* The actual logo image */
  {
  }
  
	/** primary nav menu */
	
  #ifpda-mailing-list a, #ifpda-primary-nav a
  {
    color: #999;
    text-transform: uppercase;
  }
  
  #ifpda-mailing-list a:hover, #ifpda-primary-nav a:hover
  {
    color: #0073ae;
  }
  
  #ifpda-mailing-list
  {
    font-size: 65%;
    padding-right: 0.75em; /*force align with primary nav*/
  }
  
  #ifpda-primary-nav 
  {
    font-size: 80%;
    text-align: right;
    font-weight: bold;
  }

  #ifpda-mailing-list a:hover,
  #ifpda-primary-nav a:hover
  {
    text-decoration: none;
  }

	/** primary nav menu: highlighting per section */
	
	body.section-about_us          #ifpda-primary-nav li.menu-516 a { color: #0073ae; }
	body.section-members           #ifpda-primary-nav li.menu-515 a { color: #0073ae; }
	body.section-artists           #ifpda-primary-nav li.menu-517 a { color: #0073ae; }
	body.section-collecting_prints #ifpda-primary-nav li.menu-518 a { color: #0073ae; }
	body.section-whats-on          #ifpda-primary-nav li.menu-519 a { color: #0073ae; }

	/** search - header-search region **/

  #header-search 
  {
		padding-top: 10px;
  }

  #header-search-inner
  {
		text-align: left;
		float: right;
  }

  #header-search .edit
  {
		display: none; /* hide the configure popup menu since it obscures the search button */
  }

  #header-search #edit-search-block-form-1-wrapper label
	{
		display: none; /* hide the "Search this site" label */
	}

  #header-search input#edit-search-block-form-1
  {
		width: 200px;
		border: solid 1px #9cc;
  }

  #header-search p#search-note
  {
		margin: 0;
		font-weight: normal;
  }

  #header-blocks /* Wrapper for any blocks placed in the header region */
  {
  }

/** main (container for everything else) **/
  #main
  {
  }

  #main-inner
  {
  }

/** content **/
  #content
  {
  }

  #content-inner
  {
  }

  #mission /* The mission statement of the site (displayed on homepage) */
  {
  }

  #content-top /* Wrapper for any blocks placed in the "content top" region */
  {
  }

  #content-header /* Wrapper for breadcrumb, title, messages, tabs, and help */
  {
  }

  .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;
    color: #0073ae;
  }
  
  h1.title {
    font-weight: normal;
  }

  div.messages /* Important messages (status, warning, and error) for the user */
  {
  }

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

  div.warning, tr.warning /* Medium priority messages */
  {
    /* border: 1px solid #f0c020; */ /* Drupal core uses: 1px solid #f0c020 */
  }

  div.error, tr.error /* High priority messages. See also the .error declaration below. */
  {
  }

  div.tabs /* See also the tabs.css file. */
  {
  }

  div.tabs + h1, /* when tabs are followed by headings, close up the space between them */
  div.tabs + h2,
  div.tabs + h3
  {
    margin-top: 0;
  }

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

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

  #content-area /* Wrapper for the actual page content */
  {
  }

  .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-bottom /* Wrapper for any blocks placed in the "content bottom" region */
  {
  }

/** navbar **/
  #navbar
  {
  }

  #navbar-inner
  {
  }

  #search-box /* Wrapper for the search form */
  {
  }

  #edit-search-theme-form-1-wrapper label /* Label that says "Search this site:" */
  {
    display: none;
  }

  #primary /* Primary links */
  {
  }

  #secondary /* Secondary links */
  {
  }

/** sidebar-left **/
  #sidebar-left
  {
    background: #cf6;
    font-size: smaller;
    line-height: 200%;
    text-transform: uppercase;
  }

  #sidebar-left-inner
  {
  }

  #sidebar-left ul.menu
  {
		padding-left: 40px;
  }

  #sidebar-left ul.menu li
  {
    list-style-image: none;
    list-style-type: none;
  }

  #sidebar-left ul.menu li a
  {
		color: #666;
  }

  #sidebar-left ul.menu li.active-trail a
  {
		color: #0073ae;
  }

/** sidebar-right **/
  #sidebar-right
  {
  }

  #sidebar-right-inner
  {
  }

/** footer **/
  #footer
  {
	background: #9cc url(images/bg-1080-bottom.png) no-repeat;
	padding: 2em 0;
  }
  
  body.section-print-fair #footer
  {
  	background: #fff url(images/printfair/printfair-bg-bottom.png) no-repeat;
  }
  

  #footer-inner
  {
  }

  body.section-print-fair #footer-inner
  {
  }
  
  #footer-message /* Wrapper for the footer message from Drupal's "Site information"
                     and for any blocks placed in the footer region */
  {
		color: #0073ae;
		text-align: center;
		text-transform: uppercase;
		font-size: 90%;
  }
  
/** closure **/
  #closure-blocks /* Wrapper for any blocks placed in the closure region */
  {
  }

/** Drupal nodes **/
  .node /* Node wrapper */
  {
  }

  .node-inner /* Additional wrapper for node */
  {
  }

  .sticky /* A sticky node (displayed before others in a list) */
  {
  }

  .node-unpublished /* Unpublished nodes */
  {
    /* background-color: #fff4f4; */ /* Drupal core uses a #fff4f4 background */
  }

  .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 */
  }

  .node-mine /* A node created by the current user */
  {
  }

  .node-teaser /* A node displayed as teaser */
  {
  }

  /* All nodes are given a node-type-FOO class that describes the type of
   * content that it is. If you create a new content type called
   * "my-custom-type", it will receive a "node-type-my-custom-type" class.
   */
  .node-type-page /* Page content node */
  {
  }

  .node-type-story /* Story content node */
  {
  }

  .node h2.title /* Node title */
  {
  }

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

  .node .picture /* The picture of the node author */
  {
  }

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

  .node .meta /* Wrapper for submitted and terms data */
  {
  }

  .node .submitted /* The "posted by" information */
  {
  }

  .node .terms /* Node terms (taxonomy) */
  {
  }

  .node .content /* Node's content wrapper */
  {
  }

  .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;
  }

  .preview .node /* Preview of the content before submitting new or updated content */
  {
    /* background-color: #ffffea; */ /* Drupal core uses a #ffffea background */
  }

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

  #comments-title /* Heading for the list of comments */
  {
  }

  .comment /* Wrapper for a single comment */
  {
  }

  .comment-inner /* Additional wrapper for a single comment */
  {
  }

  .comment-preview /* Preview of the comment before submitting new or updated comment */
  {
  }

  .comment.new /* A new comment since the user last viewed the page. */
  {
  }

  .comment.odd /* An odd-numbered comment in the list of comments */
  {
  }

  .comment.even /* An even-numbered comment in the list of comments */
  {
  }

  .comment.first /* The first comment in the list of comments */
  {
  }

  .comment.last /* The last comment in the list of comments */
  {
  }

  .comment-unpublished /* Unpublished comments */
  {
    /* background-color: #fff4f4; */ /* Drupal core uses a #fff4f4 background */
  }

  .comment-unpublished div.unpublished /* The word "Unpublished" displayed beneath the content. See also the div.unpublished declaration in the node section above. */
  {
  }

  .comment-published /* Published comments */
  {
  }

  .comment-by-anon /* A comment created by an anonymous user */
  {
  }

  .comment-by-author /* A comment created by the node's author */
  {
  }

  .comment-mine /* A comment created by the current user */
  {
  }

  .comment h3.title /* Comment title */
  {
  }

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

  .comment .picture /* The picture of the comment author */
  {
  }

  .comment .submitted /* The "posted by" information */
  {
  }

  .comment .content /* Comment's content wrapper */
  {
  }

  .comment .user-signature /* The user's signature */
  {
  }

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

  .indented /* Nested comments are indented */
  {
    /* margin-left: 25px; */ /* Drupal core uses a 25px left margin */
  }

  .preview .comment /* Preview of the comment before submitting new or updated comment */
  {
    /* background-color: #ffffea; */ /* Drupal core uses a #ffffea background */
  }

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

  .block.region-odd /* Zebra striping for each block in the region */
  {
  }

  .block.region-even /* Zebra striping for each block in the region */
  {
  }

  .block.odd /* Zebra striping independent of each region */
  {
  }

  .block.even /* Zebra striping independent of each region */
  {
  }

  .region-count-1 /* Incremental count for each block in the region */
  {
  }

  .count-1 /* Incremental count independent of each region */
  {
  }

  .block-inner /* Additional wrapper for block */
  {
  }

  .block h2.title /* Block title */
  {
  }

  .block .content /* Block's content wrapper */
  {
  }

  #block-aggregator-category-1 /* Block for the latest news items in the first category */
  {
  }

  #block-aggregator-feed-1 /* Block for the latest news items in the first feed */
  {
  }

  #block-block-1 /* First administrator-defined block */
  {
  }

  #block-blog-0 /* "Recent blog posts" block */
  {
  }

  #block-book-0 /* "Book navigation" block for the current book's table of contents */
  {
  }

  #block-comments-0 /* "Recent comments" block */
  {
  }

  #block-forum-0 /* "Active forum topics" block */
  {
  }

  #block-forum-1 /* "New forum topics" block */
  {
  }

  #block-menu-2 /* "Primary links" block */
  {
  }

  #block-node-0 /* "Syndicate" block for primary RSS feed */
  {
  }

  #block-poll-0 /* "Most recent poll" block */
  {
  }

  #block-profile-0 /* "Author information" block for the profile of the page's author */
  {
  }

  #block-search-0 /* "Search form" block */
  {
  }

  #block-search-0 h2.title
  {
		display: none;
  }

  #block-statistics-0 /* "Popular content" block */
  {
  }

  #block-user-0 /* "User login form" block */
  {
  }

  #block-user-1 /* "Navigation" block for Drupal navigation menu */
  {
  }

  #block-user-2 /* "Who's new" block for a list of the newest users */
  {
  }

  #block-user-3 /* "Who's online" block for a list of the online users */
  {
  }

/** Drupal boxes **/
  /* Wrapper for Comment form, Comment viewing options, Menu admin, and
   * Search results.
   */
  .box /* Wrapper for box */
  {
  }

  .box-inner /* Additional wrapper for box */
  {
  }

  .box h2.title /* Box title */
  {
  }

  .box .content /* Box's content wrapper */
  {
  }

/** Miscellaneous Drupal styles **/
  .error /* Errors that are separate from div.messages status messages (see above.) */
  {
    /* color: #e55; */ /* Drupal core uses a #e55 background */
  }

  .warning /* Warnings that are separate from div.messages status messages (see above.) */
  {
    /* color: #e09010; */ /* Drupal core uses a #e09010 background */
  }

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

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

  tr.even, tr.odd /* Some tables have rows marked even or odd. See also the ".section-admin tr.even" declaration below. */
  {
    border-bottom: none;
    padding: 0;
  }

  tr.even
  {
    /* background-color: #eee; */ /* Drupal core uses a #eee background */
  }

  tr.odd
  {
    /* background-color: #eee; */ /* Drupal core uses a #eee background */
  }

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


/** 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;
  }

  .form-submit /* The submit button */
  {
  }

  .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;
  }

	fieldset 
	{
		padding: 1em;
		border: solid 1px #ccc;
	}

	fieldset legend
	{
		font-size: 125%;
	}

/** 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
   * admin section of the site.
   */
  .section-admin tbody
  {
    border-top: 1px solid #ccc;
  }

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

  .section-admin tbody th
  {
    border-bottom: 1px solid #ccc;
  }

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

  .section-admin tr.even,
  .section-admin tr.odd
  {
    background-color: #eee;
    border-bottom: 1px solid #ccc;
    padding: 0.1em 0.6em;
  }

  .section-admin td
  {
    padding: 0.5em;
  }

  /********************************************* IFPDA CUSTOMIZATION ********************************************************/

  /** general overrides and misc styles **/

  hr 
  {
    border: none;
    height: 2px;
    background: #9cc;
  }

  .clear-float {
    clear: both;
  }

  /** links **/
    /* 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
    {
      color: #0073ae;
      text-decoration: none;
    }

    a:link
    {
    }

    a:visited
    {
      color: #08B;
    }

    a:hover,
    a:focus
    {
      text-decoration: underline;
    }

    a:active
    {
    }

  td {
    font-family: Helvetica, sans-serif;
  }

  h1, h2, h3, h4
  {
    font-weight: normal;
		margin-top: 1.25em;
  }

  h1, h2
  {
    color: #0073ae;
  }

  h3
  {
/*    color: red;*/
  }

  .section-header
  {
    color: #0073ae;
  }

  .introductory-text {
    font-size: 117%;
    line-height: 140%;
    margin-top: 0.5em;
  }

  /** multi-column common styles **/

  .column
  {
    float: left;
  }

  /** front page **/

  body.front h1.title
  {
    display: none;
  }

  body.front h1#homepage-title
  {
    font-size: 205%;
    margin-bottom: 0;
  }

  body.front #content #tabs
  {
    text-align: right;
  }

  body.front #animation
  {
    border: solid 0px red;
    float: right;
    margin-right: 35px;
    /* Jason's original dims
    width: 630px; 
    height: 525px;*/
  }

  body.front #white-disc
  {
    border: solid 0px green;
    float: right;
    margin-right: 5px;
    padding-top: 40px;
  }

  body.front #text-content
  {
    border: solid 0px orange;
    float: right;
    width: 340px;
    margin-right: -40px;
  }

  body.front #introduction
  {
    line-height: 150%;
  }

  body.front #introduction-inner
  {
    padding-right: 40px;
    padding-top: 40px;
  }

  body.front #introduction-inner h1
  {
		margin-top: 0;
  }

  body.front #introduction .node p
  {
    margin-top: 0; /*get close to h1*/
    line-height: 150%;
  }

  body.front #introduction ul
  {
    list-style-type: none;
    padding: 0;
/*    font-size: 85%;*/
  }

  body.front #introduction ul li
  {
    margin-top: 0.25em;
  }

  body.front #whats-on
  {
    margin-top: 3em;
    background: #d4ff7d;
  }

  body.front #whats-on-inner
  {
    padding: 1em;
  }

  body.front h2
  {
    font-size: 200%;
    margin: 0;
  }

  /** member landing page **/

  table#member-listing 
  {
  	color: #0073ae;
  }

  table#member-listing tr 
  {
  	vertical-align: top;
  }

  table#member-listing td 
  {
  	border-top: solid 2px #e5f2f2;
  	padding: 0.75em 0;
  	line-height: 140%;
  }

  table#member-listing td.col1
  {
  	width: 40%;
  }

  table#member-listing td.col2
  {
  	width: 35%;
  	padding: 1em;
  }

  table#member-listing td.col3
  {
  	width: 25%;
  }

  table#member-listing .member-name
  {
  	font-weight: bold;
  }

  table#member-listing .telephone,
  table#member-listing .city,
  table#member-listing .country
  {
  	color: #666;
  }

	table#member-listing tr.tabs td,
	table#member-listing tr.tabs td .tabs,
	table#member-listing tr.tabs td ul.primary
	{ 
		margin: 0;
		padding: 0;
		border: none;
	}

	form#ifpda-member-filter { }
	form#ifpda-member-filter div { float: left; margin-right: 0.5em;}
	form#ifpda-member-filter .form-item { margin-top: 0; margin-bottom: 0.5em;}
	form#ifpda-member-filter #location-filters div { float: none; }
	form#ifpda-member-filter select { border: solid 1px #9cc; }
	form#ifpda-member-filter select#edit-genre { width: 200px; }



  #member-login 
  {
  	background: #dee;
  	padding: 1em 2em;
  }

  #member-login h2
  {
  	color: #0073ae;
		margin-top: 0.5em;
  }

  #featured-member
  {
  	margin-top: 2em;
  }

  #featured-member h2
  {
  	color: #0073ae;
  	font-size: 175%;
  	margin-bottom: 0;
  }

  #featured-member h3
  {
  	color: #0073ae;
  	margin-top: 0.5em;
  	font-size: 140%;
  }

  /** member profile page **/

  body.node-type-profile #shortcuts
  {
    border-top: dotted 1px #9cc;
    border-bottom: dotted 1px #9cc;
  	margin-bottom: 1.5em;
  	padding: 0.25em 0;
  }

  body.node-type-profile #shortcuts #previous
  {
    width: 50%;
  	float: left;
  }

  body.node-type-profile #shortcuts #next
  {
    width: 50%;
  	float: right;
  	text-align: right;
  }

  div.node-type-profile .profile-section,
  div.node-type-artist .profile-section
  {
  	clear: both;
  	border-top: solid 2px #9cc;
    margin: 0.25em 0 1em 0;
    padding: 0.25em 0;
  }

  div.node-type-profile .profile-section h2,
  div.node-type-artist .profile-section h2
  {
  	font-size: 130%;
  	margin: 0.5em 0 0.25em 0;
  }

  div.node-type-profile #website  
  {
    margin: 1em 0;
  }

  div.node-type-profile #member-statement  
  {
    padding-bottom: 0;
  }

  div.node-type-profile .location .column  
  {
    padding-top: 1em;
  }

  div.node-type-profile .location .column  
  {
  	width: 250px;
  	margin-bottom: 1em;
  }

  div.node-type-profile .contact-section
  {
  	margin-bottom: 1em;
  }
  
  div.node-type-profile #specialties p,
  div.node-type-profile #artists p,
  div.node-type-profile #fairs p
  {
    margin: 0.5em 0;
  }
  

  div.node-type-profile #specialties .column,
  div.node-type-profile #exhibitions .column, 
  div.node-type-profile #fairs .column,
  div.node-type-profile #artists .column
  {
  	width: 159px; 
  	margin-right: 20px;
  }

	div.node-type-profile #exhibitions .exhibition, 
	div.node-type-profile #fairs .fair
	{
/*    margin: 1.5em 0;*/
	} 

	div.node-type-profile #exhibitions .exhibition .title
	{
		font-weight: bold;
		font-style: italic;
		color: #666;
		margin-bottom: 0;
	} 

	div.node-type-profile #exhibitions .exhibition .dates,
	div.node-type-profile #exhibitions .exhibition .location,
	div.node-type-profile #exhibitions .exhibition .description,
	div.node-type-profile #exhibitions .exhibition .description p
	{
		margin: 0;
	} 

  /* shared caption styles */

  body.node-type-profile .member-image,
  body.node-type-artist .artist-image,
  .random-artwork
  {
  	padding-bottom: 2em
  }

  .standard-image
  {
  }

  .standard-caption
  {
  	font-size: 90%;
  	text-transform: uppercase;
  	margin-top: 0.25em;
  }

  body.node-type-artist .standard-caption /* CURRENTLY HIDING THESE TITLES */
  {
  	display: none;
  }

  /** artist landing page (shares some styles with member landing page) **/

  body.page-artists #left-column
  {
    width: 515px; 
    margin-right: 30px; 
    float: left;
  }

  body.page-artists #right-column
  {
    width: 395px; 
    float: left;
  }

  body.page-artists #below-columns
  {
    clear: both;
  }

  body.page-artists #artist-landing-intro p
  {
  	margin-top: 0;
  }

  body.page-artists #quotation
  {

  }

  body.page-artists #quotation #quote
  {
  	font-size: 200%;
  	line-height: 120%;
  	margin: 0 0 0 40px;
  }

  body.page-artists #quotation #attribution
  {
  	font-size: 120%;
  	margin: 0.5em 0 0 40px;
  }

  body.page-artists .specialty
  {
  	float: left;
  	width: 16.5%;
  }

  body.page-artists .specialty .name a
  {
  	font-size: 120%;
  }

  body.page-artists .specialty .image
  {
  	width: 145px;
  	height: 196px;
  }

  /** artist alphabetical listing page */

  body.section-artists #artists-alpha-listing .column {
  	width: 240px;
  }

  /** artist alphabetical index nav (for landing and listings) */

  body.section-artists .alpha-index 
  {
  	margin: 2em 0;
  	font-size: 120%;
  	color: #0073ae;
  }

  body.section-artists .alpha-index #letters
  {
  	font-size: 105%;
  	margin-left: 1em;
  	color: #9cc;
  }

	/** artist section - expore genre page (also used for artwork spillover page )*/
	
  body.section-artists-explore #backnav,
  body.page-artwork-spillover #backnav
  {
		margin-top: 1em;
  }

  body.section-artists-explore table.artwork,
  body.page-artwork-spillover table.artwork
  {
		background: #fff; 
		/*margin: 0 10px 4em 0;*/
		margin: 0 10px 2em 0;
		width: 230px; 
		text-align: center; 
		float: left;
  }

  body.section-artists-explore table.artwork td.image,
  body.page-artwork-spillover table.artwork td.image
  {
		height: 210px; 
		vertical-align: bottom;
  }

  body.section-artists-explore table.artwork td.title,
  body.page-artwork-spillover table.artwork td.title
  {
		height: 3em; 
		vertical-align: bottom;
  }

  body.section-artists-explore table.artwork td.artist,
  body.page-artwork-spillover table.artwork td.artist
  {
		height: 1em; 
		vertical-align: top;
  }

  body.section-artists-explore table.artwork td.genre,
  body.page-artwork-spillover table.artwork td.dealer
  {
		height: 4em; 
		vertical-align: top;
		font-size: 90%;
		font-style: italic;
		color: #999;
  }
  
  body.page-artwork-spillover.node-type-artist table.artwork td.artist {
    display: none;
  }
  
  body.page-artwork-spillover.node-type-profile table.artwork td.dealer {
    display: none;
  }
  

  /** artist profile page (shares some styles with member profile page) **/


  div.node-type-artist .artist-biodata 
  {
    color: #0073ae;
    font-size: 1.2em;
  }

  div.node-type-artist #artist-dealers 
  {
    color: #0073ae;
    border-top: solid 2px #9cc;
    border-bottom: solid 2px #9cc;
    margin: 1em 0;
  }

  div.node-type-artist #artist-dealers .column
  {
  	width: 159px; 
  	margin-right: 10px;
  }


  /* artwork page */ 

  body.ifpda-node-type-artwork-display h1.title
  {
  	display: none; /* hide h1 on enlarged artwork page */
  }

  body.node-type-artwork #nav-caption
  { 
  	float: left; 
  	position: relative; 
  	width: 185px; 
  	height: 462px;
  }

  body.node-type-artwork #backnav      
  { 
  }

  body.node-type-artwork #caption      
  { 
  	position: absolute; 
  	width: 180px;
  	bottom: 0px; 
  	font-size: 120%;
  	line-height: 150%;
  }

  body.node-type-artwork #caption h2    
  { 
  	margin-bottom: 0.25em;
  }

  body.node-type-artwork #caption p    
  { 
  	margin: 0.5em 0;
  	line-height: 1.3em;
  }

  body.node-type-artwork #caption p#title
  { 
  	font-style: italic;
  }

  body.node-type-artwork #image        
  { 
  	float: left; 
  	width: 597px; 
  	height: 462px; 
  	text-align: center;
  }


  /** search - results **/

  table.search-results 
  {
		border-collapse: separate;
		border-spacing: 0.5em;
  }

  table.search-results tr.result td
  {
    padding-top: 0.25em;
  }

  table.search-results td
  {
  }

  table.search-results td.type
  {
    text-align: right;
		width: 10em;
		background: #e4f4ff;
		color: #69c;
		padding-right: 0.5em;
  }

  table.search-results td.title
  {
    font-size: 120%;
  }

  table.search-results td.snippet img
  {
		margin-right: 0.5em;
  }

  /** member admin pages - general form styles */

  .node-form input,
  .node-form select
  {
  	font-size: 133%;
  	/*color: #666;*/
  }

  .node-form label
  {
  }

  #content-header .help, 
  .node-form .description 
  {
  	color: #0073ae;
  	font-size: 100%;
  	margin-bottom: 1em;
  }

  #content-header .help
  {
  	font-weight: bold;
  }

  /** member admin pages - profile */

  body.node-type-profile .node-form fieldset.group-internal-use
  {
  	display: none;
  }

  /** member admin pages - exhibition list */

	table#member-exhibitions td
	{
		padding: 0.75em;
		border-top: solid 1px #ddd;
		vertical-align: bottom;
	}

	table#member-exhibitions td.dates
	{
		text-align: right;
	}

	table#member-exhibitions td.title
	{
		font-weight: bold;
		font-size: 125%;
	}

  /** member admin pages - exhibition form */

  form.member-exhibition textarea.exhibition-description
	{
  	height: 4em;
		font-size: large;
  }

  form.member-exhibition .teaser-checkbox
	{
  	display: none;
  }

  /** member admin pages - locations */

  body.page-ifpda-member-locations .member-location
  {
  	/*background: #eee;*/
  	width: 300px;
  	float: left;
  	margin-right: 20px;
  }

  body.page-ifpda-member-locations .member-location-inner
  {
    padding: 0 1em 1em 1em;
  }

  body.page-ifpda-member-locations .member-location .section
  {
    margin-top: 1em;
  }

  /** member admin pages - artworks */

  body.page-ifpda-member-artworks .member-artwork
  {
  	/*background: #eee;*/
  	width: 180px;
  	height: 360px;
  	float: left;
  	margin-right: 20px;
  }

  body.page-ifpda-member-artworks .member-artwork .member-artwork-inner
  {
  	width: 155px;
  	margin: auto;
  }

  body.page-ifpda-member-artworks .member-artwork .image
  {
  	position: relative;
  	width: 155px;
  	height: 205px;
  }

  body.page-ifpda-member-artworks .member-artwork img
  {
  	position: absolute;
  	bottom: 0;
  	border: solid 2px #09c;
  	margin-bottom: 5px;
  }

  body.page-ifpda-member-artworks .member-artwork .caption p
  {
  	margin: 0.5em 0 0 0;
  }

  body.page-ifpda-member-artworks .member-artwork .caption .title
  {
  	font-weight: bold;
  }

	/** about us: grant and book awards */

	#block-ifpda-0 h2
	{
		padding-left: 30px;
	}

	#grant-awards,
	#book-awards
	{
		padding-left: 30px;
	}
	
	.grant-award,
	.book-award
	{
		margin: 1em 0;
	}

	.grant-award .title,
	.grant-award .institution,
	.book-award .title,
	.book-award .byline
	{
		margin: 0.25em 0;
		font-size: 1.1em;
	}

	.grant-award .title,
	.book-award .title
	{
		font-weight: bold;
	}

	.grant-award .institution,
	.book-award .byline
	{
		font-style: italic;
	}

	.grant-award .thumbnail,
	.book-award .thumbnail
	{
		float: left;
		margin-right: 1em;
	}
	
	#previous-grants-link 
	{
		padding-left: 30px;
		margin-top: 2em;
		font-size: 1.3em;
	}
	
	/** about us: grant awards: previous */

	#previous-grant-awards h2.award-year
	{
		margin: 1em 0;
		font-size: 1.6em; /*nudge it up from 1.5*/
	}
	
	#previous-grant-awards #year-index
	{
		margin: 1em 0;
	}

	#previous-grant-awards #year-index a
	{
		margin-right: 1em;
	}
	
	/** collecting prints */
	
	/** collecting prints - Basics */

	/** collecting prints - FAQ module*/
	
	body.page-faq .faq-ul-questions-top /* can actually be an OL or UL depending on settings */
	{
	}

	body.page-faq .faq-ul-questions-top li
	{
  	color: #0073ae;
		margin-top: 0.5em;
	}

	body.page-faq .faq-ul-questions-top li a
	{
		color: #0073ae;
	}

	body.page-faq .faq-question
	{
		color: #0073ae;
		padding: 0;
		font-weight: bold;
	}

	body.page-faq .faq-answer
	{
		padding: 0;
	}
	
	body.page-faq .faq-header.answer-area
	{
		border-top: solid 2px #9cc;
		padding-top: 1em;
	}
	
	body.page-faq #menu-24, 
	body.page-faq #category-24
	{
		display: none;
	}
	
	

	/** collecting prints - Glossary */
	
	body.page-collecting_prints-glossary #glossary-links
	{
		margin-top: 1em;
		line-height: 150%;
	}
	
	body.page-collecting_prints-glossary #glossary-links .column
	{
		width: 150px;
	}
	
	body.page-collecting_prints-glossary .glossary-link
	{
	}
	
	body.page-collecting_prints-glossary #glossary-terms
	{
	}
	
	body.page-collecting_prints-glossary .glossary-image
	{
	}

	body.page-collecting_prints-glossary .glossary-image img
	{
  	float: left;
		position: relative;
		top: 5px;
		margin: 0 1em 0.5em 0;
	}
	
	body.page-collecting_prints-glossary .glossary-term
	{
  	margin: 0;
	}
	
	body.section-collecting_prints ul#category-links
	{
		list-style-type: none;
		padding: 0;
	}
	
	body.section-collecting_prints #category-links li
	{
		margin: 0.25em 0;
	}
	
	body.section-collecting_prints #category-links li a,
	body.section-collecting_prints #glossary-links a
	{
		color: #0073ae;
	}
	
	body.page-collecting_prints-links #content h2,
	body.page-collecting_prints-bibliography #content h2
	{
		border-top: solid 2px #9cc;
		padding-top: 1em;
	}
	
	body.page-collecting_prints-links .annotated-link,
	body.page-collecting_prints-bibliography .bibliography-entry
	{
	  margin-bottom: 1.2em;
	}
	
	body.page-collecting_prints-links .annotated-link h3.name,
	body.page-collecting_prints-bibliography .bibliography-entry h3.name
	{
		margin-top: 0;
		margin-bottom: 0;
    font-size: 1.2em;
	}
	
	body.page-collecting_prints-bibliography .bibliography-entry h3.name
	{
	  font-weight: bold;
	  color: #666;
	}
	
	body.page-collecting_prints-links .annotated-link h3.name
	{
	}
	
	body.page-collecting_prints-links .annotated-link .description
	{
		margin: 0.25em 0;
	}
	
	body.page-collecting_prints-bibliography .bibliography-entry .byline
	{
		font-style: italic;
		margin: 0.125em 0;
	}
	
	/** collecting prints - newsletter */
	
	body.page-collecting_prints-newsletters .archived-newsletter
	{
		margin-bottom: 1em;
	}
	
	body.page-collecting_prints-newsletters .archived-newsletter .volume
	{
		font-weight: bold;
	}
	
	body.page-collecting_prints-newsletters .archived-newsletter .title
	{
	}
	
  /** 404 message */

  body.page-not_found #content .content
  {
  	background: #ffd;
  	margin: 1em 0;
  	padding: 1em;
  	font-size: 125%;
  	line-height: 150%;
  }

	/** What's On listing */
	
	table#whats-on-listing 
	{
		width: 100%;
		clear: both;
	}

	table#whats-on-listing tr 
	{
		vertical-align: top;
	}

	table#whats-on-listing td 
	{
		padding: 1em;
		border-top: solid 2px #9cc;
	}

	table#whats-on-listing td.first { padding-left: 0; }
	table#whats-on-listing td.last { padding-right: 0; }

	table#whats-on-listing td.title 			{ width: 40%; font-weight: bold; }
	table#whats-on-listing td.dates 			{ width: 20%; text-align: right; }
	table#whats-on-listing td.institution { width: 20%; font-weight: bold; }
	table#whats-on-listing td.location 		{ width: 20%; }
	
	tr.node-type-exhibition td.title a { color: #653366; }
	tr.node-type-event      td.title a { color: #cc6733; }
	tr.node-type-fair 			td.title a { color: #676735; }

	table#whats-on-listing tr.description td 
	{
		padding: 0 1em 0 2em;
		border-top: none;
		color: #888;
	}

	table#whats-on-listing tr.description td p
	{
		margin-top: 0;
	}

	table#whats-on-listing tr.tabs td,
	table#whats-on-listing tr.tabs td .tabs,
	table#whats-on-listing tr.tabs td ul.primary
	{ 
		margin: 0;
		padding: 0;
		border: none;
	}

	form#ifpda-calendar-filter { }
	form#ifpda-calendar-filter div { float: left; margin-right: 0.5em;}
	form#ifpda-calendar-filter .form-item { margin-top: 0; margin-bottom: 0.5em;}
	form#ifpda-calendar-filter #location-filters div { float: none; }

	form#ifpda-calendar-filter select { border: solid 1px #9cc; }
	form#ifpda-calendar-filter option[value=exhibitions]	{ color: #653366; }
	form#ifpda-calendar-filter option[value=events]				{ color: #cc6733; }
	form#ifpda-calendar-filter option[value=fairs]				{ color: #676735; }

	 .exhibition-color  { color: #653366 }
	 .event-color       { color: #cc6733 }
	 .fair-color        { color: #676735 }
	
	/** What's On: Fair page */
	
	body.page-node.node-type-fair h2#fair-title
	{
		color: #666;
		margin: 1em 0 0 0;
	}

	body.page-node.node-type-fair #dates
	{
		margin: 0.5em 0;
		font-weight: bold;
	}

	body.page-node.node-type-fair h3#attendees
	{
		margin: 1.5em 0 0 0;
	}

	body.page-node.node-type-fair ul#attendees
	{
		margin-top: 0.5em;
		list-style-type: none;
		padding: 0;
	}

	body.page-node.node-type-fair ul#attendees li
	{
		padding: 0.25em 0;
	}
	
	body.page-node.node-type-fair #backnav
	{
		margin: 0.5em 0;
	}

  /** IFPDA ADMIN module styles **/

  table.admin-listing tr 
  {
  	vertical-align: top;
  }

  table.admin-listing tr.featured,
  table.admin-listing tr.print-week
  {
  	font-weight: bold;
  }

  table.admin-listing th
  {
  	border-bottom: solid 2px #ccc;
  }

  table.admin-listing td.thumbnail 
  {
  	text-align: right;
  }

  table.admin-listing td 
  {
  	border-top: solid 1px #ddd;
  	padding: 1em 0.5em;
  }

  table#members.admin-listing tr.in-print-fair {
  	font-weight: bold;
  	color: #555;
  }

  table#members.admin-listing tr.not-in-print-fair {
  }

  table#members.admin-listing tr.invalid-email {
  	background: #edd;
  }

  table#members.admin-listing tr.alternate-address {
  	background: #eec;
  }

  table.admin-listing tr.description td {
  	border-top: none;
		padding: 0 1em 1em 2em;
		color: #999;
  }

  table.admin-listing td.year-header { /* for grant award reordering table */
    background: #ddd;
    font-weight: bold;
    text-align: center;
  }

	.orphan-artwork-warning
	{
		background: #ffc;
		border: solid 1px #996;
		padding: 1em;
		margin: 1em 0;
	}

	.orphan-artwork-warning p, 
	.orphan-artwork-warning ul 
	{
		margin: 0;
	}

	.orphan-artwork-warning .red
	{
		color: red;
	}

	.orphan-artwork-warning ul li
	{
		margin-top: 1em;
	}

  /** IFPDA office admin pages */

  body.page-ifpda-admin 
  {
  }

  body.page-ifpda-admin ul#ifpda-content-count
  {
  	font-size: 150%;
  	line-height: 200%;
  	list-style-type: none;
  	color: #999;
  	padding: 0;
  	margin: 1em 0;
  }

  body.page-ifpda-admin li
  {
  }

	/** floating sidebar */
  
  #floating-sidebar /* make a version for print fair animations - 216px wide */
  {
    width: 395px;
    margin-left: 30px;
    float: right;
  }

	/** right sidebar static (non-cms) texts */
  
  #sidebar-right .static-text
  {
		margin-right: 40px;
  }
  
  /** PRINT FAIR -- GENERAL */
  
  body.section-print-fair #animation {
    float: right;
  }
  
  body.section-print-fair h1, 
	body.section-print-fair h2, 
	body.section-print-fair h3 {
    color: #306;
  }
  
  body.section-print-fair #footer-message
  {
    color: #306;
  }

	body.section-print-fair ul.printfair-downloads {
		list-style-type: none;
		padding: 0;
	}

	body.section-print-fair ul.printfair-downloads li {
		margin: 0.25em 0;
	}
	
	ul.printfair-downloads .filemime {
		display: none;
	}

	body.page-print-fair-press ul.printfair-downloads .filemime {
		display: inline;
	}

  /** PRINT FAIR -- primary navigation */

	body.section-print-fair #ifpda-primary-nav { margin-top: 5px; }
	body.section-print-fair #ifpda-primary-nav { }
	body.section-print-fair #ifpda-primary-nav li { }
	body.section-print-fair #ifpda-primary-nav li.last  { 
		background-image: url(images/printfair/buy-tickets.png); 
		background-repeat: no-repeat;
    background-position: center center;
    width: 75px;
    height: 15px;
    text-align: center;
		padding: 10px;
	}
	body.section-print-fair #ifpda-primary-nav li.last a { color: #000; }
	body.section-print-fair #ifpda-primary-nav li.last a:hover { color: #c60; }

	/** primary nav menu: highlighting per section */
	
	body.section-print-fair					 		#ifpda-primary-nav li.active a 		{ color: #0073ae; } /* will catch all top-level highlights */
	body.subsection-at-the-fair 				#ifpda-primary-nav li.menu-3689 a { color: #0073ae; } /* will catch at the fair highlights */
	body.subsection-visitor-information #ifpda-primary-nav li.menu-3690 a { color: #0073ae; } /* will catch vis info highlights */
	body.subsection-press #ifpda-primary-nav li.menu-3694 a { color: #0073ae; } /* will catch press highlights */
  
  /** PRINT FAIR -- homepage */
  
  body.page-print-fair-front p
  {
    font-size: 1.08em;
  }

  body.page-print-fair-front #columns
  {
    position: relative;
    left: 20px;
  }

  body.page-print-fair-front .column
  {
    float: left;
    width: 30%;
    margin-top: 40px;
    margin-right: 5%;
  }

  body.page-print-fair-front .column h1
  {
    margin-top: 0;
  }

  body.page-print-fair-front .column.last
  {
    margin-right: 0%;
  }

  body.page-print-fair-front #logos
  {
    clear: both;
    text-align: left;
    margin-left: 40px;
  }

  body.page-print-fair-front #printfair-social-media
  {
		margin: 1em 0;
  }

  body.page-print-fair-front #printfair-social-media a
  {
		margin-right: 1em;
  }

  /** PRINT FAIR -- Exhibitor list */
  
  /*#content-area div{border: solid 1px red;}*/
  
  body.page-print-fair-exhibitors #left-column
  {
    width: 515px; 
    margin-right: 30px; 
    float: left;
  }

  body.page-print-fair-exhibitors #right-column
  {
    width: 395px; 
    float: left;
  }

  body.page-print-fair-exhibitors #below-columns
  {
    clear: both;
  }

  body.page-print-fair-exhibitors #exhibitors
  {
    clear: both;
  }
  
  body.page-print-fair-exhibitors #exhibitors .column 
  {
    width: 30%;
    margin-right: 3%;
  }

  body.page-print-fair-exhibitors #exhibitors .exhibitor
  {
    margin-bottom: 1em;
  }

  /** PRINT FAIR -- PIC committee */
  
  body.page-print-fair-at-the-fair-pic p
  {
		width: 345px;
  }

  body.page-print-fair-at-the-fair-pic #members
  {
		clear: both;
  }

  body.page-print-fair-at-the-fair-pic #members .column
  {
		width: 180px;
		margin-right: 10px;
		line-height: 160%;
		margin-bottom: 4em;
  }

  /** PRINT FAIR -- PIC committee */

	body.page-print-fair-sponsors #sponsor-logos {
		margin-top: 1em;
		margin-bottom: 8em;
	}

	body.page-print-fair-sponsors #sponsor-logos .sponsor-category {
		border-bottom: solid 1px #ccc;
		margin: 40px 0;
	}

	body.page-print-fair-sponsors #sponsor-logos .logo-row {
		margin: 4em 0;
	}

	body.page-print-fair-sponsors #sponsor-logos .logo-row img {
		margin-right: 40px;
		vertical-align: middle;
	}

  /** PRINT FAIR -- visitor information */

	body.page-print-fair-visitor-information #gmap-caption {
		margin-top: 2em;
	}

	body.page-print-fair-visitor-information .garage {
		margin: 1em 0;
	}

	body.page-print-fair-visitor-information .garage .name {
		font-weight: bold;
	}

	body.page-print-fair-visitor-information #links {
		line-height: 150%;
	}

  /** PRINT FAIR -- visitor information: amenities */

  body.page-print-fair-visitor-information-amenities #intro 
  {
		float: left;
		width: 347px;
  }

  body.page-print-fair-visitor-information-amenities #animation 
  {
  }

  body.page-print-fair-visitor-information-amenities #restaurants
  {
		float: left;
		width: 100%;
		clear: both;
		margin: 0 0 2em 0;
  }

  body.page-print-fair-visitor-information-amenities #restaurants .column
  {
		width: 30%;
		margin-right: 2%;
  }

  body.page-print-fair-visitor-information-amenities #restaurants .restaurant
  {
		margin: 1em 0;
  }

  body.page-print-fair-visitor-information-amenities #restaurants .restaurant .name
  {
		font-weight: bold;
  }

  /** PRINT FAIR -- print week page */

  body.page-print-fair-print-week #left-column
  {
    width: 515px; 
    margin-right: 30px; 
    float: left;
  }

  body.page-print-fair-print-week #right-column
  {
    width: 395px; 
    float: left;
  }

  body.page-print-fair-print-week #below-columns
  {
    clear: both;
  }

	body.page-print-fair-print-week .local-nav
	{
		margin-top: 2em;
		padding-top: 0.5em;
		font-size: %90;
	}

	body.page-print-fair-print-week .local-nav a
	{
		color: #777;
		text-decoration: underline;
		margin-right: 1em;
	}

	#print-week-schedule table.day 
	{
		width: 100%;
		clear: both;
		margin-bottom: 4em;
	}

	#print-week-schedule table.day tr 
	{
		vertical-align: top;
	}

	#print-week-schedule table.day td 
	{
		padding: 1em;
		border-top: solid 2px #9cc;
	}

	#print-week-schedule table.day td.first { padding-left: 0; }
	#print-week-schedule table.day td.last { padding-right: 0; }

	#print-week-schedule table.day td.title 			{ width: 40%; font-weight: bold; }
	#print-week-schedule table.day td.dates 			{ width: 20%; text-align: right; }
	#print-week-schedule table.day td.institution { width: 20%; font-weight: bold; }
	#print-week-schedule table.day td.location 		{ width: 20%; }
	
	tr.node-type-exhibition td.title a { color: #653366; }
	tr.node-type-event      td.title a { color: #cc6733; }
	tr.node-type-fair 			td.title a { color: #676735; }

	#print-week-schedule table.day tr.description td 
	{
		padding: 0 1em 0 2em;
		border-top: none;
		color: #888;
	}

	#print-week-schedule table.day tr.description td p
	{
		margin-top: 0;
	}

	#print-week-schedule table.day tr.tabs td,
	#print-week-schedule table.day tr.tabs td .tabs,
	#print-week-schedule table.day tr.tabs td ul.primary
	{ 
		margin: 0;
		padding: 0;
		border: none;
	}

  /** PRINT FAIR -- press page */

  body.page-print-fair-press
  {
  }

  /** PRINT FAIR -- faq page */

  body.page-print-fair-faq .faq h2
  {
		display: none;
  }

  body.page-print-fair-faq .faq-question
  {
		font-weight: bold;
		color: #306;
		padding-left: 0;
  }

  body.page-print-fair-faq .faq-answer
  {
		padding-left: 0;
  }

  body.page-print-fair-faq .faq-ul-questions-top
  {
		margin: 2em 0 3em 0;
  }

  body.page-print-fair-faq .faq-ul-questions-top li
  {
		margin: 0.75em 0;
  }

  body.page-print-fair-faq .faq-ul-questions-top a
  {
		color: #306;
  }


  /** TEMP STYLES -- TODO: DELETEME **/
