/* $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
  {
    /* The following font family declarations are based on the Microsoft core
     * web fonts which are common fonts available on most computer systems. The
     * Bitstream Vera fonts are commonly available on Linux systems where the MS
     * fonts are less common.
     *
     * A user's web browser will look at the comma-separated list and will
     * attempt to use each font in turn until it finds one that is available
     * on the user's computer. The final "generic" font (sans-serif or serif)
     * hints at what type of font to use if the web browser doesn't find any
     * of the fonts in the list.

    font-family: "Times New Roman", Times, Georgia, "Bitstream Vera Serif", serif;
    font-family: Times, "Times New Roman", Georgia, "Bitstream Vera Serif", serif;
    font-family: Georgia, "Times New Roman", "Bitstream Vera Serif", serif;

    font-family: Verdana, Tahoma, Arial, Helvetica, "Bitstream Vera Sans", sans-serif;
    font-family: Tahoma, Verdana, Arial, Helvetica, "Bitstream Vera Sans", sans-serif;
    font-family: Helvetica, Arial, "Bitstream Vera Sans", sans-serif;
    font-family: Arial, Helvetica, "Bitstream Vera Sans", sans-serif;

    font-family: "Bitstream Vera Sans Mono", "Courier New", monospace;

     */

    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-family: "Trebuchet MS", Arial, Helvetica;
    color: #333;
    font-size: 1.7em;
    line-height: 1.2em;
    margin-top: 0;
    margin-bottom: 0.5em; /* 0.5em is equavalent to 1em in the page's base font.
                             Remember, a margin specified in ems is relative to
                             the element's font-size, not to the pages' base
                             font size. So, for example, if we want a 1em margin
                             (relative to the base font), we have to divide that
                             length by the element's font-size:
                             1em / 2em = 0.5em */
  }

  h2
  {
    font-family: "Trebuchet MS", Arial, Helvetica;
    color: #333;
    font-size: 1.4em;
    line-height: 1.2em;
    margin-top: 0.667em; /* Equivalent to 1em in the page's base font: 1 / 1.5 = 0.667em */
    margin-bottom: 0.667em;
  }

  h3
  {
    font-family: "Trebuchet MS", Arial, Helvetica;
    font-size: 1.3em;
    color: #333;
    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-family: "Trebuchet MS", Arial, Helvetica;
    color: #333;
    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;
  }

/** 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: 1em 0;
    padding: 0 0 0 2em;
  }

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

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

  a:visited
  {
  }

  a:hover,
  a:focus
  {
  }

  a:active
  {
  }

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

  tbody
  {
    border-top: none;
  }

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



/* ADDITIONS */

#content #content-inner #content-area .node .node-inner .content{
	line-height: 1.5em;
	}
#content #content-inner #content-area .node .node-inner .content h2, #content #content-inner #content-area .node .node-inner .content h3{
	border-top: 1px solid #ccc;
	padding-top: 15px;
	}
	
#content #content-inner #content-area .node .node-inner .content p.photos{
	width: 750px;
	display: block;
	clear: both;
	}

#content #content-inner #content-area .node .node-inner .content p.photos img{
	height: 180px;
	margin-right: 15px;
	margin-bottom: 25px;
	border: 1px solid #000;
	float: left;
	}
	
#content #content-inner #content-area .node .node-inner .content p.photos_sml{
	width: 750px;
	display: block;
	clear: both;
	}

#content #content-inner #content-area .node .node-inner .content p.photos_sml img{
	height: 140px;
	margin-right: 15px;
	margin-bottom: 25px;
	border: 1px solid #000;
	float: left;
	}
  
  a:link
  {
  color: #c00;
  text-decoration: underline;
  }

  a:visited
  {
  color: #c00;
  text-decoration: underline;
  }

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

  a:active
  {
  }
  
 .bgOn{
 	background-color: #303030;
 	}
  
  
#sidebar-right .block-inner .content ul{
	margin: 0;
	padding: 0;
	margin-left: 15px;
	margin-top: 10px;
	}
#sidebar-right .block-inner .content ul li{
	margin-top: 14px;
	margin-bottom: 14px;
	line-height: 14px;
	}
	
body.front #sidebar-right #sidebar-right-inner #block-views-calendar-block_2 h2.title, body.front #sidebar-right #sidebar-right-inner #block-views-calendar-block_3 h2.title, body.front #sidebar-right #sidebar-right-inner #block-views-calendar-block_4 h2.title{
	font-size: 14px;
	margin-bottom: 1px;
	margin-top: 22px;
	}
	
body.front #sidebar-right #sidebar-right-inner div.view-id-calendar{
	margin-top: 2px;
	}

/* UPDATE CALENDAR VIEW */

/* HRIM */

.view-hrim-calendar .month-view table tr td.has-events .inner .view-item-hrim_calendar .monthview .view-field{
	background-color: #ffffe1;
	line-height: 12px;
	}
	
.view-hrim-calendar .month-view table tr td.has-events .inner .view-item-hrim_calendar .monthview .view-field a{
	background-color: #ffffe1;
	}

.view-hrim-calendar .month-view table tr td.has-events .inner .view-item-hrim_calendar .monthview .view-data-node-title{
	border-top: 1px solid #a0a0a0;
	border-right: 1px solid #a0a0a0;
	border-left: 1px solid #a0a0a0;
	padding-top: 5px;
	}

.view-hrim-calendar .month-view table tr td.has-events .inner .view-item-hrim_calendar .monthview .view-data-node-data-field-date-field-date-value{
	border-right: 1px solid #a0a0a0;
	border-left: 1px solid #a0a0a0;
	border-bottom: 1px solid #a0a0a0;
	}

.view-hrim-calendar .month-view table tr td.has-events .inner .view-item-hrim_calendar .monthview{
	margin-bottom: 5px;
	}

.calendar-calendar .month-view .date-nav .date-heading h3{
	font-size: 14px;
	}
	
div .view-display-id-calendar_block_1 .view-content .calendar-calendar .date-nav .date-heading h3{
	font-size: 13px;
	}
div .view-display-id-calendar_block_1 .view-content .calendar-calendar .date-nav .date-heading h3 a{
	text-decoration: none;
	}

#sidebar-right #sidebar-right-inner .block-views .block-inner .content .view-calendar{
	background-color: #fff;
	border: 1px solid #666;
	}

#sidebar-right #sidebar-right-inner .block-views .block-inner .content .view-calendar .item-list ul{
	margin: 0;
	padding: 0;
	}
	
#sidebar-right #sidebar-right-inner .block-views .block-inner .content .view-calendar .item-list ul li{
	line-height: 14px;
	padding: 4px 10px;
	display: block;
	background: none;
	list-style-type: none;
	}
	
.calendar-calendar .month-view table.mini tr td div.mini-day-on a{
	color: #000;
	font-weight: bold;
	}
	
#sidebar-right div.view-calendar{
	margin-top: 18px;
	}
	
#footer span.contact-links a.login{
	color: #373737;
	}
	
/*
div.monthview .view-data-node-title{
  margin-left: 0;
  padding-left: 0;
  text-indent: 0;
	}

div.monthview div.view-field{
  margin: 0;
  padding: 0;
	}
*/

div.monthview .view-data-node-title a:link, div.monthview .view-data-node-title a:visited, div.monthview .view-data-node-title a:active{
  margin-left: 0;
  color: #c00;
  text-decoration: underline;
  text-indent: 0;
	}


/* NEWS VIEWS */

.views-field-title .field-content h2{
	margin-bottom: 3px;
	margin-top: 15px;
	padding-top: 12px;
	border-top: 1px solid #ccc;
	}

body.not-front .view-content .views-row{
	border-top: 1px dashed #cccccc;
	}


.view-content .views-row .views-field-created{
	font-size: 11px;
	color #ccc;
	}

#sidebar-right .view-news-items .view-content .views-row .views-field-title .field-content a{
	display: block;
	font-size: 13px;
	font-weight: normal;
	margin-bottom: 2px;
	margin-top: 12px;
	line-height: 14px;
	}


#sidebar-right .view-news-items .view-content .views-row .views-field-teaser .field-content p{
	margin-top: 5px;
	line-height: 14px;
	}

ul.research_list{
	width: 180px;
	float: left;
	font-size: 13px;
	margin: 0;
	padding: 0;
	font-weight: bold;
	color: #3366cc;
	}

ul.research_list li{
	margin-left: 20px;
	list-style-type: none;
	margin-top: 6px;
	margin-bottom: 6px;
	padding: 5px 0;
	border-bottom: 1px dotted #ccc;
	}
	
ul.research_list li a{
	color: #3366cc;
	}
ul.space li{
	margin-bottom: 16px;
	}
	
span.labmember{
	position: absolute;
	left: 475px;
	margin-top: -60px;
	display: none;
	padding: 4px 4px 4px 15px;
	background-color: #efefef;
	border: 1px solid #ccc;
	width: 35%;
	height: 135px;
	}
	
span.labmember img{
	float: left;
	margin: 0 20px 100px 5px;
	border: 1px solid black;
	}
	
a.showMember{
	color: #c00;
	text-decoration: underline;
	}
	
p.figure{
	font-size: 12px;
	line-height: 14px;
	color: #fff;
	font-style: italic;
	padding: 5px;
	background-color: #666666;
	width: 550px;
	margin-left: auto;
	margin-right: auto;
	}
	
p.figure-img{
	width: 550px;
	margin-left: auto;
	margin-right: auto;
	}


/* EVENTS VIEW PAGE */	

body.not-front .view-events-calendar .view-content .item-list h3{
	font-size: 1.2em;
	}
	
body.not-front .view-events-calendar .view-content .item-list ul{
	margin: 0;
	padding: 0;
	list-style-type: none;
	}
	
body.not-front .view-events-calendar .view-content .item-list ul li{
	display: block;
	padding: 8px 10px;
	list-style-type: none;
	/*border-bottom: 1px dotted #cccccc;*/
	width: 60%;
	font-size: .9em;
	color: #666;
	}
body.not-front .view-events-calendar .view-content .item-list ul li a{
	/*font-weight: bold;*/
	}
	
body.not-front .block-views h2.title{
	border-top: 1px solid #ccc;
	margin-top: 30px;
	padding-top: 8px;
	padding-bottom: 8px;
	}
	

/* MMIG VIEW PAGE */

body.not-front #block-views-events_calendar-block_7 .views-field-title{
	color: #333;
	font-weight: normal;
	font-size: 1em;
	}


/* HOME PAGE EVENTS VIEW PAGE */

body.front #sidebar-right #sidebar-right-inner .block-views .block-inner h2.title{
	font-size: 1.3em;
	color: #333;
	border-top: 1px solid #ccc;
	width: 80%;
	padding-top: 10px;
	}

body.front #sidebar-right #sidebar-right-inner .block-views .block-inner .item-list h3{
	display: none;
	}
	
body.front #sidebar-right #sidebar-right-inner .block-views .block-inner .item-list ul{
	margin: 0;
	padding: 0;
	list-style-type: none;
	}
	
body.front #sidebar-right #sidebar-right-inner .block-views .block-inner .item-list ul li{
	list-style-type: none;
	display: block;
	font-size: .9em;
	}
body.front #sidebar-right #sidebar-right-inner .block-views .block-inner .item-list ul li a{
	font-weight: bold;
	}
	
body.front #sidebar-right #sidebar-right-inner a.button{
	display: block;
	width: 65px;
	background-color: #2675d1;
	color: #fff;
	text-decoration: none;
	margin-left: 110px;
	text-align: center;
	font-size: .8em;
	font-weight: bold;
	}

body.front #sidebar-right #sidebar-right-inner a.button{
	display: block;
	width: 65px;
	background-color: #2675d1;
	color: #fff;
	text-decoration: none;
	margin-left: 110px;
	text-align: center;
	font-size: .8em;
	font-weight: bold;
	}
	
#content-inner #content-area .submitted{
	display: none;
	}
	
body.not-front .block-views .block-inner h2.title{
	margin-bottom: 15px;
	}
	
/* EXPOSED FILTER */

.views-exposed-widgets{
	text-align: right;
	height: 55px;
	}

.views-exposed-form label, .views-exposed-form .form-select{
	float: left;
	}

.views-exposed-form .form-select{
	
	height: 23px;
	width: 200px;
	font-size: 12px;
	background-color: #333333;
	color: #ffffff;
	margin: 0;
	padding: 0;
	margin-left: 10px;
	float: left;
	}
	
.views-exposed-form .form-submit{
	height: 23px;
	font-size: 12px;
	background-color: #333333;
	color: #ffffff;
	float: right;
	}





