/*
 * RP International
 *
 * Style sheet: board.css
 * Style sheet for our board page
 *
 * By Andy Smith, Preview Graphics Modified by James Lester, Preview
 * www.preview.co.uk
 */


/*
 * No JavaScript - all jobs displayed
 */

#jobs .job {
  margin-bottom: 0em;
}

#jobs .job .description {
  margin: 0 0 0 0;
  padding: 0 0 0 0;
}

#jobs h2 {
  font-size: 12px;
  margin: 0 0 0 0;
  padding: 0 0;
}

#jobs h3 {
  font-style: normal;
  margin: 0 0 0 0;
}


/*
 * JavaScript - all jobs start off with class 'collapsed', and toggle
 * between that and 'expanded' with clicks. The H2 of each job is
 * made into a link (an A is added inside it).
 */

#jobs .job.collapsed h2, #jobs .job.expanded h2 {
  padding: 0;
}

#jobs .job.collapsed h2 a, #jobs .job.expanded h2 a {
  display: block;
  padding: 0 0 0 0;
}

#jobs .job.collapsed h2 {
  margin: 0;
}

#jobs .job.expanded h2 {
  padding-bottom: 0;
}

#jobs .job.collapsed .description {
  display: none;
}

#jobs .job.collapsed {
  margin-bottom: 0;
}

#jobs .job.expanded {
  padding-top: 0em;
  padding-bottom: 10px;
  margin: 0px 0px 0px 0px;
}

#jobs .job.expanded .description {
  /* Margin below is 112% * 2em - should match the 2em padding on
     the heading link, which has font size 112%. */
  margin-left: 27px;
}


/*
 * Holly hack - needed to get IE to show borders, backgrounds, etc
 * correctly. Not applied by other browsers because of * at start
 * (it shouldn't match any elements, but in IE it incorrectly does).
 */

/* Hides from IE5-mac \*/
* html #jobs h2,
* html #jobs .job {
  height: 1%;
}
/* End hide from IE5-mac */
