/*======================================================================*/
/* Work Stylesheet                                                      */
/*======================================================================*/
/* 
  I was having troubles with collapsible margins not working in Firefox
  3.0.4, so I took a different approach. I mostly use margin-bottom for
  block elements and then sometimes add a padding-top if an element
  needs a bit more room above it (eg. headers). I also had to use table
  as opposed to floats for side-by-side positioning because floats were
  just not consistent enough across browsers especially since I want
  equal height columns.

  Author : Christopher Batten
  Date   : 2008-12-03, 2010-02-06
*/

/*----------------------------------------------------------------------*/
/* Main Body Block                                                      */
/*----------------------------------------------------------------------*/

BODY 
{
  width            : 100%;
  margin           : 0px;
  padding          : 0px;
  background-color : white;
  background-image : none; 
  color            : black;
  line-height      : 1.25;
  overflow-y       : scroll;
}

DIV#main-body
{
  max-width        : 725px;
  margin-left      : auto;
  margin-right     : auto; 
  padding          : 25px;
}

/*----------------------------------------------------------------------*/
/* Header                                                               */
/*----------------------------------------------------------------------*/

DIV#header
{
  text-align       : center;
  margin-bottom    : 20px;
}

DIV#header H2 
{
  margin           : 0px;
  margin-bottom    : 5px;
  padding          : 0px;
  font-weight      : normal;
  text-align       : center;
  font-size        : 1.17em;
}

DIV#header P
{
  margin           : 0px;
  margin-bottom    : 5px;
  padding          : 0px;
  font-weight      : normal;
  text-align       : center;
  font-size        : 1.17em;
}

/*----------------------------------------------------------------------*/
/* Paragraphs                                                           */
/*----------------------------------------------------------------------*/

P
{
  margin           : 0px;
  margin-bottom    : 10px;
  padding          : 0px;
/* border : 1px solid black; */
}

/*----------------------------------------------------------------------*/
/* Links                                                                */
/*----------------------------------------------------------------------*/

A:link     { color: #0000CC; text-decoration: none      }
A:visited  { color: #0000CC; text-decoration: none      }
A:hover    { color: #0000CC; text-decoration: underline }
A:active   { color: #0000CC; text-decoration: underline }

/*----------------------------------------------------------------------*/
/* Headings                                                             */
/*----------------------------------------------------------------------*/

H1 
{
  margin           : 0px; 
  margin-top       : 10px;
  margin-bottom    : 10px;
  padding          : 0px;
  font-weight      : bold;
  text-align       : center;
  font-size        : 1.75em;
}

H2 
{
  margin           : 0px;
  margin-bottom    : 10px;
  padding          : 0px;
  padding-top      : 5px;
  font-weight      : bold;
  font-size        : 1.3em;
}

H3 
{
  margin           : 0px;
  margin-bottom    : 6px;
  padding          : 0px;
  padding-top      : 3px;
  font-weight      : bold;
  text-align       : left;
  font-size        : 1em;
/* border : 1px solid green; */
}

/*----------------------------------------------------------------------*/
/* Lists                                                                */
/*----------------------------------------------------------------------*/

UL
{
  display          : block;
  margin           : 0px;
  margin-left      : 1.6em;
  margin-bottom    : 5px;
  padding          : 0px;
/* border : 1px solid red; */
}

UL LI
{
  margin-bottom    : 10px;
  padding          : 0px;
}

UL LI BR
{
  margin           : 0px;
  margin-bottom    : 3px;
  padding          : 0px;
}

.tightlist
{
  margin           : 0px;
  margin-left      : 1.6em;
  margin-bottom    : 10px;
  padding          : 0px;
}

.tightlist LI
{
  margin           : 0px;
  padding          : 0px;
}

/*----------------------------------------------------------------------*/
/* Topo Image                                                           */
/*----------------------------------------------------------------------*/

IMG#top
{
  display          : block;
  width            : 100%;
  max-width        : 725px;
  margin           : 0px;
  margin-left      : auto;
  margin-right     : auto;
  margin-bottom    : 15px;
  padding          : 0px;
  border           : 1px solid black;
}

IMG#iot
{
  display          : block;
  width            : 100%;
  max-width        : 725px;
  margin           : 0px;
  margin-left      : auto;
  margin-right     : auto;
  margin-top       : 15px;
  margin-bottom    : 15px;
  padding          : 0px;
}

/*----------------------------------------------------------------------*/
/* Hardware Photos                                                      */
/*----------------------------------------------------------------------*/

TABLE.side-by-side-photos
{
  margin           : 0px;
  margin-top       : 15px;
  margin-bottom    : 15px;
  padding          : 0px;
  border-collapse  : collapse;
  border           : 0px;
  width            : 100%;
}

TABLE.side-by-side-photos TR
{
  margin           : 0px;
  padding          : 0px;
}

TABLE.side-by-side-photos TD
{
  margin           : 0px;
  padding          : 0px;
}

TABLE.side-by-side-photos TD:first-child
{ 
  margin           : 0px;
  padding          : 0px;
  padding-right    : 15px;
}

TABLE.side-by-side-photos IMG
{
  border           : 1px solid black;
  margin           : 0em;
  padding          : 0em;
  display          : inline;
}

/*----------------------------------------------------------------------*/
/* Code                                                                 */
/*----------------------------------------------------------------------*/

PRE.prettyprint
{
  border           : none !important;
  margin-left      : 5px !important;
}

/*----------------------------------------------------------------------*/
/* Sponsor Page                                                         */
/*----------------------------------------------------------------------*/

TABLE#sponsors
{
 margin            : 0px;
 margin-top        : 35px;
 width             : 100%;
}

TABLE#sponsors TD IMG
{
  display          : block;
  margin-left      : auto;
  margin-right     : auto;
}

TABLE#sponsors TD.info
{
 padding           : 15px;
 width             : 50%;
 text-align        : center;
}

DIV#acknowledgments
{
  margin           : 0px;
  margin-top       : 15px;
  padding          : 0px;
  padding-top      : 15px;
  border-top       : 1px solid black;
}

/*----------------------------------------------------------------------*/
/* Schedule Table                                                       */
/*----------------------------------------------------------------------*/

TABLE#schedule
{
  margin           : 0px;
  margin-top       : 15px;
  margin-bottom    : 15px;
  border-collapse  : collapse;
  border-top       : 2px solid black;
  border-bottom    : 2px solid black;
  width            : 100%;
}

TABLE#schedule TH
{
  margin           : 0px;
  padding          : 5px;
  border-bottom    : 2px solid black;
  font-weight      : bold;
  text-align       : left;
}

TABLE#schedule TD
{
  margin           : 0px;
  padding          : 5px;
  padding-top      : 10px;
  padding-bottom   : 10px;
  border-bottom    : 1px solid black;
  text-align       : left;
}

TABLE#schedule TR.top TD
{ 
  background-color : #ffffff; 
  border-bottom    : none;
  padding-bottom   : 0px;
  white-space      : nowrap;
}

TABLE#schedule TR.description TD
{ 
  background-color : #ffffff; 
  padding-top      : 5px;
}

TABLE#schedule TR.presentation TD 
{ 
  background-color : #f0f0ff;
  white-space      : nowrap;
}

TABLE#schedule .tightlist
{
  margin           : 0px;
  margin-left      : 1.6em;
  padding          : 0px;
}

TABLE#schedule TD:first-child + TD + TD { text-align : center; }

/*----------------------------------------------------------------------*/
/* Misc                                                                 */
/*----------------------------------------------------------------------*/

DIV.topnote
{
  text-align       : center;
  color            : red;
}

/*----------------------------------------------------------------------*/
/* Default Table                                                        */
/*----------------------------------------------------------------------*/

TABLE
{
  margin           : 0px;
  padding          : 0px;
  margin-left      : 10px;
  margin-bottom    : 10px;
  border-collapse  : collapse;
}

TABLE TH
{
  margin           : 0px;
  padding          : 5px;
  font-weight      : bold;
  text-align       : left;
  vertical-align   : text-top;
}

TABLE TD
{
  margin           : 0px;
  padding          : 5px;
  text-align       : left;
  vertical-align   : text-top;
}

TABLE.tighttable TD
{
  margin           : 0px;
  padding          : 1px;
  padding-right    : 10px;
}

/*----------------------------------------------------------------------*/
/* Readings                                                             */
/*----------------------------------------------------------------------*/

UL.reading-review
{
  list-style-type  : square;
  margin-bottom    : 0px;
}

UL.reading-review LI
{
  margin           : 0px;
  padding          : 0px;
}

UL.reading-required
{
  list-style-type : disc;
  margin-bottom    : 0px;
}

UL.reading-required LI
{
  margin           : 0px;
  padding          : 0px;
}

UL.reading-optional
{
  list-style-type : circle;
  margin-bottom    : 0px;
}

UL.reading-optional LI
{
  margin           : 0px;
  padding          : 0px;
}
