/**
 * @file
 * HTML Element Styling
 *
 * Ok, I admit it. I fooled you. This isn't a "reset" stylesheet. Instead this
 * is the place where you should set (not reset) the default styling for all
 * HTML elements.
 *
 * @see http://meiert.com/en/blog/20080419/reset-style-sheets-are-bad/
 * @see http://snook.ca/archives/html_and_css/no_css_reset/
 */


/*
 * 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 */
  margin:0;
  padding: 0;
}

#skip-link,
#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 */
}
#skip-link a,
#skip-link a:visited {
  position: absolute;
  display: block;
  left: 0;
  top: -500px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  text-align: center;
  background-color: #666;
  color: #fff;
}

#skip-link a:hover,
#skip-link a:active,
#skip-link a:focus {
  position: static;
  width: 100%;
  height: auto;
  padding: 2px 0 3px 0;
}
.controls {
  position: absolute;
  bottom: 0;
  right: 100px;
  z-index: 1000;
  display: block !important;
}
.slide-text {
  display: block !important
}
#content_container {
  width: 990px;
  padding-top: 0px;
}
#header_container {
  width: 990px;
  padding-top: 0px;
  padding-bottom: 0px;
}
#doe-logo /* Wrapping link for logo */ {
  float: right; /* LTR */
  margin: 0;
  padding-top: 0;
  margin-top: -20px;
}
#doe-logo img {
}
#jlab-logo /* Wrapping link for logo */ {
  float: left; /* LTR */
  padding-top: 20px;
  clear: none;
}
#jlab-logo img {
  margin: 0
}
p {
  margin-top: 5px !important
}
.link_list {
  margin-top: 40px;
  margin-bottom: 40px;
}
#wrapper {
  width: 100%;
  margin: 0px;
  padding: 0px;
}
#header_wrapper {
  width: 990px;
  padding-top: 20px;
}
#logo_container {
  width: 314px;
  height: 89px;
  float: left;
}
#logo /* Wrapping link for logo */ {
  float: left; /* LTR */
  margin: 0;
  padding: 0;
}
.feed-icons /* The links to the RSS or Atom feeds for the current list of content */ {
  margin: 1em 0;
}

#logo img {
  vertical-align: bottom;
}
h1#site-name,
div#site-name /* The name of the website */ {
  margin: 0;
  font-size: 2em;
  line-height: 1.3em;
}
#site-name a:link,
#site-name a:visited {
  color: #000;
  text-decoration: none;
}

#site-name a:hover,
#site-name a:focus {
  text-decoration: underline;
}
#energy_container {
  width: 85px;
  height: 21px;
  float: right;
  padding-top: 60px;
  padding-right: 3px;
}

.region-header {
  width: 590px;
  clear: both;
  float: left;
  z-index: 450;
}

.subtitle {
  color: #831422;
  font-size: 16px;
  margin-bottom: 0px !important;
}
.float-list ul {
  float: left;
  margin-right: 20px;
}

#search-form {
  padding-top: 30px
}
#search-form a {
  color: #821321 !important
}

.sidebar-first #content-area .title {
  display: block;
  clear: both;
  color: #262626 !important;
  font: Arial small-caps 24px !important;
  vertical-align: text-top !important;
  border-bottom: thick: border-bottom-color:#b3b3b3 !important;
}
/*
.sidebar-first #content-area div.title_h {
  float:right;
  clear:both;
}
*/
#content-area {
  text-align: left;
}

#content a:link {
  color: #C00;
  text-decoration: none;
}
#content a:visited {
  color: #C00;
  text-decoration: none;
}
#content img {
  border: #808080;
  border-width: thin;
}

x.region-header {
  xwidth: 620px;
  xpadding-left: 50px;
}
#slider_wrapper {
  width: 989px;
  height: 372px;
  background: url('../images-theme/slider-bg.png') bottom center no-repeat;
  padding: 15px 0 0 0;
}
#lower_wrapper {
  padding-top: 25px;
  width: 989px;
  position: relative;
  
}
#lower_left {
  width: 630px;
  float: left;
}
#lower_right {
  width: 324px;
  float: right;
  padding-top: 23px;
  padding-right: 23px;
}
.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}
/**
 * Hide elements from all users.
 *
 * Used for elements which should not be immediately displayed to any user. An
 * example would be a collapsible fieldset that will be expanded with a click
 * from a user. The effect of this class can be toggled with the jQuery show()
 * and hide() functions.
 */
.element-hidden {
  display: none;
}

/**
 * Hide elements visually, but keep them available for screen-readers.
 *
 * Used for information required for screen-reader users to understand and use
 * the site where visual display is undesirable. Information provided in this
 * manner should be kept concise, to avoid unnecessary burden on the user. Must
 * not be used for focusable elements (such as links and form elements) as this
 * causes issues for keyboard only or voice recognition users. "!important" is
 * used to prevent unintentional overrides.
 */
.element-invisible {
  position: absolute !important;
  clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
}
a#context-block-region-sidebar_first {
  display: none;
}
#story_container {
  width: 275px;
  padding-right: 23px;
  padding-top: 13px;
  float: left;
  text-align: left;
  color: #fff;
}
#story_container2 {
  width: 275px;
  padding-left: 23px;
  padding-top: 13px;
  float: left;
  text-align: left;
  color: #fff;
}
#story_container2 span {
  font-weight: bold;
}
#story_container2 img {
  padding-right: 15px;
}
#story_container span {
  font-weight: bold;
}
#story_container img {
  /* padding-right: 15px */
  margin-right: 15px;
  border:1px solid #7d7d7d;
}
#story_sep {
  height: 115px;
  width: 3px;
  float: left;
  background: url('../images-theme/story-sep.png') left center no-repeat;
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 15px;
}
#story_container a {
  color: #fff;
  display: block;
  font-size: 12px;
  font-weight: bold;
}
#icon_container {
  width: 652px;
  height: 58px;
  padding-top: 17px;
  padding-bottom: 10px;
  padding-left: 5px;
}
#icon_container a {
  width: 67px;
  height: 50px;
  display: block;
  float: left;
  padding-right: 5px;
  padding-left: 5px;
}
#icon_container .end_icon {
  padding-right: 0px !important;
}
#connect_container {
  padding-top: 50px;
  color: #fff;
}
#connect_container span {
  font-size: 12px;
}
#connect_container img {
  padding-top: 5px;
}
#footer_container {
  font-size: 12px;
  width: 640px;
  margin: 0 auto;
}
.footer_links {
  color: #9b1120;
  font-size: 14px;
}
.footer_links a {
  color: #9b1120 !important;
}
.footer_links a:hover {
  color: #fff !important;
}
#top_about_wrapper {
  width: 989px;
  height: 441px;
  text-align: left;
  background: url('../images-theme/about_landing/images/landingPage_About_03.png') top center no-repeat;
}
.standard {
  background: #fff;
  color: #000;
}

/* End Fix Styles */
.book-navigation .menu {
  border-top: 1px solid #888;
  padding: 1em 0 0 3em;
}
.book-navigation .page-links {
  border-top: 1px solid #888;
  border-bottom: 1px solid #888;
  text-align: center;
  padding: 0.5em;
}
.book-navigation .page-previous {
  text-align: left;
  width: 42%;
  display: block;
  float: left;
}
.book-navigation .page-up {
  margin: 0 5%;
  width: 4%;
  display: block;
  float: left;
}
.book-navigation .page-next {
  text-align: right;
  width: 42%;
  display: block;
  float: right;
}
#book-outline {
  min-width: 56em;
}
.book-outline-form .form-item {
  margin-top: 0;
  margin-bottom: 0;
}
#edit-book-bid-wrapper .description {
  clear: both;
}
#book-admin-edit select {
  margin-right: 24px;
}
#book-admin-edit select.progress-disabled {
  margin-right: 0;
}
#book-admin-edit tr.ahah-new-content {
  background-color: #ffd;
}
#book-admin-edit .form-item {
  float: left;
}
body.front {
  background: #000 url('../images-theme/body-bg.png') top center no-repeat ;
  margin: 0px;
}
body.landing {
  background: #000 url('../images-theme/body-bg.png') top center no-repeat;
  margin: 0px;
}
#superfish {
  float: left;
}
#page-wrapper {
}
#page {

}
#header {
  float: left;
}
#header .section {
  vertical-align: bottom;
  float: left;
  height: 100px;
  width: 990px;
  position: relative;
  z-index: 400;  
}
#main-wrapper .front {
  background-color: #000000
}
#main {
}
/*
 * Content
 */
#content {
}
#lower-area {
  /* all content between slideshow and find jlab...*/
  color: #FFF;
  height: 280px;
  width: 960px;
  float: left;
  margin-top: -5;
}
.region-content-low-left {

}
#vert-bar {
  width: 47px;
  padding: 0 20px;
}
#content-low-left {
  float: left;
  /*background-image: url(/sites/default/files/images/line.png);
  background-position: right;
  background-repeat: no-repeat;
  width: 200px;
  border-right: #808080;
  border-right-style: groove;
  border-right-width: thin;*/
}
#content-low-left .news-stories {
  float: left;
  display: inline;
  width: 638px;
}
#news-story1,
#news-story2 {
  float: left;
  color: #FFF;
  display: inline;
  margin: 50px 0 0 0;
  vertical-align: top;
}
#news-story1 img,
#news-story2 img {
  float: left;
  width: 144px;
  padding-right: 10px;
  padding-bottom: 40px;
}
.story-title {
  color: #FFF;
  vertical-align: top;
}
.story-text {
  color: #FFF;
  display: block;
  /* font-size: 9px;*/
}
#icon-buttons div {
  clear: both;
  margin-top: 40px;
  width: 638px;
  float: left;
  display: inline;
}
#icon-buttons img {
  padding-right: 20px;
}
#content-low-right {
  float: right;
  vertical-align: bottom;
}
.region-content-low-right /* Wrapper for any blocks placed in the "content_low_right" region */ {
  vertical-align: bottom;
  float: right;
  margin: 0;
  width: 324px;
  float: right;
  vertical-align: bottom;
}
#footer {
  vertical-align: bottom
}
#footer .section {
  vertical-align: bottom
}
 
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 DejaVu
   * fonts are commonly available on Linux systems where the MS fonts are less
   * common. Tahoma and Helvetica are also widely available.
   *
   * 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, "DejaVu Serif", serif;
  font-family: Times, "Times New Roman", Georgia, "DejaVu Serif", serif;
  font-family: Georgia, "Times New Roman", "DejaVu Serif", serif;

  font-family: Verdana, Tahoma, "DejaVu Sans", sans-serif;
  font-family: Tahoma, Verdana, "DejaVu Sans", sans-serif;
  font-family: Helvetica, Arial, "Nimbus Sans L", sans-serif;
  font-family: Arial, Helvetica, "Nimbus Sans L", sans-serif;

  font-family: "Courier New", "DejaVu Sans Mono", monospace;

   */

  font-family: Arial, Helvetica, Verdana, Tahoma, "DejaVu Sans", sans-serif;
}

pre,
code {
  font-size: 1.1em; /* Monospace fonts can be hard to read */
  font-family: "Courier New", "DejaVu Sans Mono", monospace;
}

/*
 * Headings
 */
h1 {
  font-size: 1.5em;
  color: #262626;
  line-height: 1.3em;
  margin: 0;
  padding: 0;
  /*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-size: 1.2em;
  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;
}
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 */ {
  border-bottom: medium none #B3B3B3;
  color: #262626;
  margin: 0;
}
/*
 * Block-level elements
 */
p,
ul,
ol,
dl,
pre,
table,
fieldset {
  margin: 1em 0;
}

blockquote {
  margin: 1em 2em;
}

/*
 * Lists
 *
 * We need to standardize the list item indentation.
 */
ul,
ol {
  margin-left: 0;
  padding-left: 2em; /* LTR */
}

.block ul,
.item-list ul /* Drupal overrides */ {
  margin: 1em 0;
  padding: 0 0 0 2em; /* LTR */
}

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;
  xmargin: 0;
}

li {
  margin: 0;
  xmargin: 0;
  padding: 0;
  xpadding: 0;
}

.item-list ul li /* Drupal override */ {
  margin: 0;
  xmargin: 0;
  padding: 0;
  xpadding: 0;
  list-style: inherit;
}

ul.menu li,
li.expanded,
li.collapsed,
li.leaf /* Drupal override */ {
  margin: 0;
  xmargin: 0;
  padding: 0;
  xpadding: 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 {
  color: #831422;
  text-decoration: none;
}

a:visited {
  color: #FF0000;
  text-decoration: none;
}

a:hover,
a:focus {
  color: #FF0000;
  text-decoration: none;
}

a:active {
  color: #FF0000;
  text-decoration: none;
}

/*
 * Tables
 *
 * Drupal provides table styling which is only useful for its admin section
 * forms, so we override this default CSS. (We set it back in forms.css.)
 */
table {
  border-collapse: collapse;
  /* width: 100%; */ /* Prevent cramped-looking tables */
  margin-left: 30px;
}

th,
thead th,
tbody th {
  text-align: left; /* LTR */
  padding: 0;
  border-bottom: none;
}

tbody {
  border: 0 none;
}

/*
 * Abbreviations
 */
abbr {
  border-bottom: 1px dotted #666;
  cursor: help;
  white-space: nowrap;
}

abbr.created /* Date-based "abbreviations" show computer-friendly timestamps which are not human-friendly. */ {
  border: none;
  cursor: auto;
  white-space: normal;
}

/*
 * Images
 */
img {
  border: 0;
}

/*
 * Horizontal rules
 */
hr {
  height: 2px solid #b3b3b3;
  margin: 0;
  padding: 0;
}

/*
 * Forms
 */

fieldset {
  margin: 1em 0;
  padding: 0.5em;
}

.node /* Node wrapper */ {
}

.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,
.comment-unpublished div.unpublished /* The word "Unpublished" displayed underneath the content. */ {
  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-by-viewer /* 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 */ {

  color: #fff;
}

.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 */ {
  display: none;
}

.node .submitted /* The "posted by" information */ {
  display: none;
}

.node .terms /* Node terms (taxonomy) */ {
}

.node .content /* Node's content wrapper */ {
}

.node ul.links /* Node links. See also the ul.links declaration in the pages.css. */ {
}

.preview .node /* Preview of the content before submitting new or updated content */ {
  background-color: #ffffea;  /* Drupal core uses a #ffffea background */
}

#node-admin-filter ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  width: 100%;
}
#node-admin-buttons {
  float: left;
  margin-left: 0.5em;
  clear: right;
}
td.revision-current {
  background: #ffc
}


#secondary-menu {

}

/*
 * Menu blocks
 */
.block-menu {

}

/*
 * "Menu block" blocks. See http://drupal.org/project/menu_block
 */
.block-menu_block {

}

body.not-front{
  background-image:url('../images-theme/jl_header_bg.png');
  background-repeat:repeat-x;
  background-color:#ffffff;
}

#header .section {
  /*background-image:url('../images-theme/jl_in_header_bg.png');
  background-repeat:repeat-x;
  background-color:#ffffff;*/
}

#title .section {
  color: #262626;
}

#main-wrapper .not-front{
  background-color:#ffffff;
}
.node-form .form-text {
  display: block;
  width: 95%;
}
.node-form .container-inline .form-text {
  display: inline;
  width: auto;
}
.node-form .standard {
  clear: both
}
.node-form textarea {
  display: block;
  width: 95%;
}
.node-form .attachments fieldset {
  float: none;
  display: block;
}
.terms-inline {
  display: inline
}
fieldset {
  margin-bottom: 1em;
  padding: .5em;
}
form {
  margin: 0;
  padding: 0;
}
hr {
  height: 1px;
  border: 1px solid gray;
}
img {
  border: 0
}
table {
  border-collapse: collapse
}
th {
  text-align: left;
  padding-right: 1em;
  border-bottom: 3px solid #ccc;
}
.clear-block:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}
.clear-block {
  display: inline-block
}
/*_\*/
* html .clear-block {
  height: 1%;
}
.clear-block {
  display: block;
}
/* End hide from IE-mac _NO__DOTCOMMA__AFTER__*/
body.drag {
  cursor: move
}
th.active img {
  display: inline
}
tr.even,
tr.odd {
  background-color: #eee;
  border-bottom: 1px solid #ccc;
  padding: 0.1em 0.6em;
}
tr.drag {
  background-color: #fffff0
}
tr.drag-previous {
  background-color: #ffd
}
td.active {
  background-color: #ddd
}
td.checkbox,
th.checkbox {
  text-align: center
}

tbody th {
  border-bottom: 1px solid #ccc
}
thead th {
  text-align: left;
  padding-right: 1em;
  border-bottom: 3px solid #ccc;
}
.breadcrumb {
  padding-bottom: .5em
  
}
div.indentation {
  width: 20px;
  height: 1.7em;
  margin: -0.4em 0.2em -0.4em -0.4em;
  padding: 0.42em 0 0.42em 0.6em;
  float: left;
}
div.tree-child {
  background: url(/misc/tree.png) no-repeat 11px center
}
div.tree-child-last {
  background: url(/misc/tree-bottom.png) no-repeat 11px center
}
div.tree-child-horizontal {
  background: url(/misc/tree.png) no-repeat -11px center
}
.error {
  color: #e55
}
div.error {
  border: 1px solid #d77
}
div.error,
tr.error {
  background: #fcc;
  color: #200;
  padding: 2px;
}
.warning {
  color: #e09010
}
div.warning {
  border: 1px solid #f0c020
}
div.warning,
tr.warning {
  background: #ffd;
  color: #220;
  padding: 2px;
}
.ok {
  color: #008000
}
div.ok {
  border: 1px solid #00aa00
}
div.ok,
tr.ok {
  background: #dfd;
  color: #020;
  padding: 2px;
}
.item-list .icon {
  color: #555;
  float: right;
  padding-left: 0.25em;
  clear: right;
}
.item-list .title {
  font-weight: bold
}
.item-list ul {
  margin: 0 0 0.75em 0;
  padding: 0;
}
.item-list ul li {
  margin: 0 0 0.25em 1.5em;
  padding: 0;
  list-style: disc;
}
ol.task-list li.active {
  font-weight: bold
}
.form-item {
  margin-top: 1em;
  margin-bottom: 1em;
}
tr.odd .form-item,
tr.even .form-item {
  margin-top: 0;
  margin-bottom: 0;
  white-space: nowrap;
}
tr.merge-down,
tr.merge-down td,
tr.merge-down th {
  border-bottom-width: 0 !important
}
tr.merge-up,
tr.merge-up td,
tr.merge-up th {
  border-top-width: 0 !important
}
.form-item input.error,
.form-item textarea.error,
.form-item select.error {
  border: 2px solid red
}
.form-item .description {
  font-size: 0.85em
}
.form-item label {
  display: block;
  font-weight: bold;
}
.form-item label.option {
  display: inline;
  font-weight: normal;
}
.form-checkboxes,
.form-radios {
  margin: 1em 0
}
.form-checkboxes .form-item,
.form-radios .form-item {
  margin-top: 0.4em;
  margin-bottom: 0.4em;
}
.marker,
.form-required {
  color: #f00
}
.more-link {
  text-align: right
}
.more-help-link {
  font-size: 0.85em;
  text-align: right;
}
.help /* Help text on a page */ {
  margin: 1em 0;
}
.nowrap {
  white-space: nowrap
}
.item-list .pager {
  clear: both;
  text-align: center;
}
.item-list .pager li {
  background-image: none;
  display: inline;
  list-style-type: none;
  padding: 0.5em;
}
.pager-current {
  font-weight: bold
}
.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 /* Each page number in the pager list */ {
  padding: 0.5em;
}
.tips {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
  font-size: 0.9em;
}
dl.multiselect dd.b,
dl.multiselect dd.b .form-item,
dl.multiselect dd.b select {
  font-family: inherit;
  font-size: inherit;
  width: 14em;
}
dl.multiselect dd.a,
dl.multiselect dd.a .form-item {
  width: 10em
}
dl.multiselect dt,
dl.multiselect dd {
  float: left;
  line-height: 1.75em;
  padding: 0;
  margin: 0 1em 0 0;
}
dl.multiselect .form-item {
  height: 1.75em;
  margin: 0;
}
ul.primary {
  border-collapse: collapse;
  padding: 0 0 0 1em;
  white-space: nowrap;
  list-style: none;
  margin: 5px;
  height: auto;
  line-height: normal;
  border-bottom: 1px solid #bbb;
}
ul.primary li {
  display: inline
}
ul.primary li a {
  background-color: #ddd;
  border-color: #bbb;
  border-width: 1px;
  border-style: solid solid none solid;
  height: auto;
  margin-right: 0.5em;
  padding: 0 1em;
  text-decoration: none;
}
ul.primary li.active a {
  background-color: #fff;
  border: 1px solid #bbb;
  border-bottom: #fff 1px solid;
}
ul.primary li a:hover {
  background-color: #eee;
  border-color: #ccc;
  border-bottom-color: #eee;
}
ul.secondary {
  border-bottom: 1px solid #bbb;
  padding: 0.5em 1em;
  margin: 5px;
}
ul.secondary li {
  display: inline;
  padding: 0 1em;
  border-right: 1px solid #ccc;
}
ul.secondary a {
  padding: 0;
  text-decoration: none;
}
ul.secondary a.active {
  border-bottom: 4px solid #999
}
#autocomplete {
  position: absolute;
  border: 1px solid;
  overflow: hidden;
  z-index: 100;
}
#autocomplete ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
#autocomplete li {
  background: #fff;
  color: #000;
  white-space: pre;
  cursor: default;
}
#autocomplete li.selected {
  background: #0072b9;
  color: #fff;
}
html.js input.form-autocomplete {
  background-image: url(/misc/throbber.gif);
  background-repeat: no-repeat;
  background-position: 100% 2px;
}
html.js input.throbbing {
  background-position: 100% -18px
}
html.js fieldset.collapsed {
  border-bottom-width: 0;
  border-left-width: 0;
  border-right-width: 0;
  margin-bottom: 0;
  height: 1em;
}
html.js fieldset.collapsed * {
  display: none
}
html.js fieldset.collapsed legend {
  display: block
}
html.js fieldset.collapsible legend a {
  padding-left: 15px;
  background: url(/misc/menu-expanded.png) 5px 75% no-repeat;
}
html.js fieldset.collapsed legend a {
  background-image: url(/misc/menu-collapsed.png);
  background-position: 5px 50%;
}
* html.js fieldset.collapsed legend,
* html.js fieldset.collapsed legend *,
* html.js fieldset.collapsed table * {
  display: inline
}
html.js fieldset.collapsible {
  position: relative
}
html.js fieldset.collapsible legend a {
  display: block
}
html.js fieldset.collapsible .fieldset-wrapper {
  overflow: auto
}
.resizable-textarea {
  width: 95%
}
.resizable-textarea .grippie {
  height: 9px;
  overflow: hidden;
  background: #eee url(/misc/grippie.png) no-repeat center 2px;
  border: 1px solid #ddd;
  border-top-width: 0;
  cursor: s-resize;
}
html.js .resizable-textarea textarea {
  margin-bottom: 0;
  width: 100%;
  display: block;
}
.draggable a.tabledrag-handle {
  cursor: move;
  float: left;
  height: 1.7em;
  margin: -0.4em 0 -0.4em -0.5em;
  padding: 0.42em 1.5em 0.42em 0.5em;
  text-decoration: none;
}
a.tabledrag-handle:hover {
  text-decoration: none
}
a.tabledrag-handle .handle {
  margin-top: 4px;
  height: 13px;
  width: 13px;
  background: url(/misc/draggable.png) no-repeat 0 0;
}
a.tabledrag-handle-hover .handle {
  background-position: 0 -20px
}
.joined + .grippie {
  height: 5px;
  background-position: center 1px;
  margin-bottom: -2px;
}
.teaser-checkbox {
  padding-top: 1px
}
div.teaser-button-wrapper {
  float: right;
  padding-right: 5%;
  margin: 0;
}
.teaser-checkbox div.form-item {
  float: right;
  margin: 0 5% 0 0;
  padding: 0;
}
textarea.teaser {
  display: none
}
html.js .no-js {
  display: none
}
.progress {
  font-weight: bold
}
.progress .bar {
  background: #fff url(/misc/progress.gif);
  border: 1px solid #00375a;
  height: 1.5em;
  margin: 0 0.2em;
}
.progress .filled {
  background: #0072b9;
  height: 1em;
  border-bottom: 0.5em solid #004a73;
  width: 0%;
}
.progress .percentage {
  float: right
}
.progress-disabled {
  float: left
}
.ahah-progress {
  float: left
}
.ahah-progress .throbber {
  width: 15px;
  height: 15px;
  margin: 2px;
  background: transparent url(/misc/throbber.gif) no-repeat 0px -18px;
  float: left;
}
tr .ahah-progress .throbber {
  margin: 0 2px
}
.ahah-progress-bar {
  width: 16em
}
#first-time strong {
  display: block;
  padding: 1.5em 0 .5em;
}
tr.selected td {
  background: #ffc
}
table.sticky-header {
  margin-top: 0;
  background: #fff;
}
#clean-url.install {
  display: none
}
html.js .js-hide {
  display: none
}
#system-modules div.incompatible {
  font-weight: bold
}
#system-themes-form div.incompatible {
  font-weight: bold
}
span.password-strength {
  visibility: hidden
}
input.password-field {
  margin-right: 10px
}
div.password-description {
  padding: 0 2px;
  margin: 4px 0 0 0;
  font-size: 0.85em;
  max-width: 500px;
}
div.password-description ul {
  margin-bottom: 0
}
.password-parent {
  margin: 0 0 0 0
}
input.password-confirm {
  margin-right: 10px
}
.confirm-parent {
  margin: 5px 0 0 0
}
span.password-confirm {
  visibility: hidden
}
span.password-confirm span {
  font-weight: normal
}
ul.menu {
  list-style: none;
  border: none;
  text-align: left;
}
ul.menu li {
  margin: 0 0 0 0.5em
}
li.expanded {
  list-style-type: circle;
  list-style-image: url(/misc/menu-expanded.png);
  padding: 0.2em 0.5em 0 0;
  margin: 0;
}
li.collapsed {
  list-style-type: disc;
  list-style-image: url(/misc/menu-collapsed.png);
  padding: 0.2em 0.5em 0 0;
  margin: 0;
}
li.leaf {
  list-style-type: square;
  list-style-image: url(/misc/menu-leaf.png);
  padding: 0.2em 0.5em 0 0;
  margin: 0;
}
li a,
a:active,
a:hover,
a:visited {
  color: #f00
}
li a.active {
  color: #000
}
td.menu-disabled {
  background: #ccc
}
ul.links {
  margin: 0;
  padding: 0;
}
ul.links.inline {
  display: inline
}
ul.links li {
  display: inline;
  list-style-type: none;
  padding: 0 0.5em;
}
.block ul {
  margin: 0;
  padding: 0 0 0.25em 1em;
}

.with-wireframes #header .section,
.with-wireframes #content .section,
.with-wireframes #navigation .section,
.with-wireframes .region-sidebar-first .section,
.with-wireframes .region-sidebar-second .section,
.with-wireframes #footer .section {
  margin: 1px;
  padding: 2px;
  border: 1px solid #ccc;
}
.with-wireframes .region-page-closure {
  margin-top: 1px;
  padding: 2px;
  border: 1px solid #ccc;
}

#page-wrapper,
.region-page-closure {
  margin-left: auto;
  margin-right: auto;
  width: 960px;
  z-index: 50;
}
#page {
  z-index: 200
}
#header {
  position: relative;
  height: 100px;
  float: left;
  z-index: 300;
}
#search-box {
  float: right;
  height: 50px;
}

#main-wrapper {
  position: relative;
  z-index: 100;
}
#main {
  margin-left: 5px;
  margin-right: 5px;
  z-index: 99;
}
#content,
.no-sidebars #content {
  float: left;
  width: 960px;
  margin-left: 0;
  margin-right: -960px;
  padding: 0;
  margin: 0;
}
.sidebar-first #content {
  width: 760px;
  margin-left: 200px;
  margin-right: -960px;
  margin: 0;
}
.sidebar-first #content-area {
  margin: 0;
  padding: 0;
  float: right;
  width: 810px;
  text-align: left;
  /* overflow: visible; */
  /* word-wrap: break-word; */
}
.sidebar-second #content {
  width: 760px;
  margin-left: 0;
  margin-right: -760px;
  margin: 0;
}
.two-sidebars #content {
  width: 560px;
  margin-left: 200px;
  margin-right: -760px;
}
#content .section {
  margin: 0;
  padding: 0;
  border: 0;
}
#superfish {
  margin-left: 0;
  padding: 0;
  height: 0px;
  z-index: 500;
}
.with-navigation #content,
.with-navigation .region-sidebar-first,
.with-navigation .region-sidebar-second {
  margin-top: 0
}
.region-sidebar-first {
  float: left;
  width: 200px;
  margin-left: 30;
  margin-right: -230px;
  padding: 0;
  margin-top: 0;
}
.region-sidebar-first .section {
  padding: 0 10px 0 0;
}
.region-sidebar-second {
  float: left;
  width: 200px;
  margin-left: 760px;
  margin-right: -960px;
  padding: 0;
  margin-top: 0;
}
.region-sidebar-second .section {
  margin: 0 0 0 0;
  padding: 0;
}
#footer {
  /* height: 150px; */
  vertical-align: bottom;
  padding: 25px 0 0 0;
}
#footer .section {
  /* height: 150px; */
  vertical-align: bottom;
}
.region-page-closure {

}
#footer_container .section p {
  color:#808080;
  font-size:10px;
  text-align:center;
  padding-top: 10px;
}

#header,
#content,
#title,
#superfish,
.region-sidebar-first,
.region-sidebar-second,
#footer,
.region-page-closure {
  overflow: visible;
  word-wrap: break-word;
}
#superfish {

}
#page-wrapper {

}
.image-page {
  border: #808080;
  border-width: thin;
  max-width: 420px;
  min-width: 400px;
}
.red {
  color: #9b1120;
}
div.messages,
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 {

}
div.warning {
  border-color: #fc0;
  background-image: url(../images/messages-warning.png);
}
div.warning,
tr.warning {
  color: #000;
  background-color: #ffc;
}
div.error {
  border-color: #c00;
  background-image: url(../images/messages-error.png);
}
div.error,
tr.error {
  color: #900;
  background-color: #fee;
}
div.messages ul {
  margin-top: 0;
  margin-bottom: 0;
}
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: 0.75em;
  background-color: #fff;
}
div.block.with-block-editing:hover div.edit {
  display: block;
}
.node-unpublished div.unpublished,
.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;
}
.marker {
  color: #c00;
}
.node.node-unpublished .picture,
.comment.comment-unpublished .picture {
  position: relative;
}
#comments {
  margin: 1em 0;
}
.new {
  color: #c00;
}
.form-item,
.form-checkboxes,
.form-radios {
  margin: 1em 0;
}
.form-item input.error,
.form-item textarea.error,
.form-item select.error {
  border: 2px solid #c00;
}
.form-item label {
  display: block;
  font-weight: bold;
}
.form-item label.option {
  display: inline;
  font-weight: normal;
}
.form-required {
  color: #c00;
}
.form-item .description {
  font-size: 0.85em;
}
.form-checkboxes .form-item,
.form-radios .form-item {
  margin: 0.4em 0;
}
.form-submit {
}
.container-inline div,
.container-inline label {
  display: inline;
}
#edit-search-theme-form-1-wrapper label {
  display: none;
}
#search-block-form {
}
#edit-search-block-form-1-wrapper label {
  display: none;
}
user-login-form {
  text-align: left;
}
#user-admin-filter ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  width: 100%;
}
  #user-admin-buttons {
  float: left;
  margin-left: 0.5em;
  clear: right;
}
#user-admin-settings fieldset .description {
  font-size: 0.85em;
  padding-bottom: .5em;
}
#user-login-form ul {
  margin-bottom: 0;
}
#user-login-form li.openid-link {
  margin-top: 1em;
  margin-left: -20px;
}
#user-login-form li.user-link {
  margin-top: 1em;
}
#user-login ul {
  margin: 1em 0;
}
#user-login li.openid-link,
#user-login li.user-link {
  margin-left: -2em;
}
form tbody {
  border-top: 1px solid #ccc;
}
form th,
form thead th {
  text-align: left;
  padding-right: 1em;
  border-bottom: 3px solid #ccc;
}
form tbody th {
  border-bottom: 1px solid #ccc;
}
.slide-title-inner p {
  margin-top: 5px !important;
}
.hp_list_icons {
}
.hp_list_icons ul {
  list-style: none;
  margin: 0px;
  margin-top: 21px;
  padding: 0px;
}
.hp_list_icons li {
  float: left;
  width: 67px;
  height: 52px;
  color: #FFFFFF;
  margin-right: 13px;
}
.hp_list_icons h2 {
  color: #FFFFFF;
  font-size: 10px;
  margin-top: 37px;
}
.last_margin {
}
.list_icons1 a {
  display: block;
  color: #c60013;
  border: 1px solid #2d2d2d;
  width: 65px;
  height: 50px;
  background: url('../images-theme/icons/1.jpg') -70px 0px;
}
.list_icons1 a:hover {
  display: block;
  color: #FFFFFF;
  border: 1px solid #c60013;
  width: 65px;
  height: 50px;
  background: url('../images-theme/icons/1.jpg') 0px 0px;
}
.list_icons2 a {
  display: block;
  color: #c60013;
  border: 1px solid #2d2d2d;
  width: 65px;
  height: 50px;
  background: url('../images-theme/icons/2.jpg') -70px 0px;
}
.list_icons2 a:hover {
  display: block;
  color: #FFFFFF;
  border: 1px solid #c60013;
  width: 65px;
  height: 50px;
  background: url('../images-theme/icons/2.jpg') 0px 0px;
}
.list_icons3 a {
  display: block;
  color: #c60013;
  border: 1px solid #2d2d2d;
  width: 65px;
  height: 50px;
  background: url('../images-theme/icons/3.jpg') -70px 0px;
}
.list_icons3 a:hover {
  display: block;
  color: #FFFFFF;
  border: 1px solid #c60013;
  width: 65px;
  height: 50px;
  background: url('../images-theme/icons/3.jpg') 0px 0px;
}
.list_icons4 a {
  display: block;
  color: #c60013;
  border: 1px solid #2d2d2d;
  width: 65px;
  height: 50px;
  background: url('../images-theme/icons/4.jpg') -70px 0px;
}
.list_icons4 a:hover {
  display: block;
  color: #FFFFFF;
  border: 1px solid #c60013;
  width: 65px;
  height: 50px;
  background: url('../images-theme/icons/4.jpg') 0px 0px;
}
.list_icons5 a {
  display: block;
  color: #c60013;
  border: 1px solid #2d2d2d;
  width: 65px;
  height: 50px;
  background: url('../images-theme/icons/5.jpg') -70px 0px;
}
.list_icons5 a:hover {
  display: block;
  color: #FFFFFF;
  border: 1px solid #c60013;
  width: 65px;
  height: 50px;
  background: url('../images-theme/icons/5.jpg') 0px 0px;
}
.list_icons6 a {
  display: block;
  color: #c60013;
  border: 1px solid #2d2d2d;
  width: 65px;
  height: 50px;
  background: url('../images-theme/icons/6.jpg') -70px 0px;
}
.list_icons6 a:hover {
  display: block;
  color: #FFFFFF;
  border: 1px solid #c60013;
  width: 65px;
  height: 50px;
  background: url('../images-theme/icons/6.jpg') 0px 0px;
}
.list_icons7 a {
  display: block;
  color: #c60013;
  border: 1px solid #2d2d2d;
  width: 65px;
  height: 50px;
  background: url('../images-theme/icons/7.jpg') -70px 0px;
}
.list_icons7 a:hover {
  display: block;
  color: #FFFFFF;
  border: 1px solid #c60013;
  width: 65px;
  height: 50px;
  background: url('../images-theme/icons/7.jpg') 0px 0px;
}
.list_icons8 {
  margin: 0px !important
}
.list_icons8 a {
  display: block;
  color: #c60013;
  border: 1px solid #2d2d2d;
  width: 65px;
  height: 50px;
  background: url('../images-theme/icons/8.jpg') -70px 0px;
}
.list_icons8 a:hover {
  display: block;
  color: #FFFFFF;
  border: 1px solid #c60013;
  width: 65px;
  height: 50px;
  background: url('../images-theme/icons/8.jpg') 0px 0px;
}

/* misc fix-ups for logged-in users */
html.js body.front div#wrapper div#content_container div#header_wrapper div#navigation_container div.region a#context-block-region-header.context-block-region,
html.js body.front div#wrapper div#content_container div#marquee_wrapper div.region a#context-block-region-marquee.context-block-region,
html.js body.front div#wrapper div#content_container div#lower_wrapper div#lower_left div.region a#context-block-region-fp_stories.context-block-region,
html.js body.front div#wrapper div#content_container div#slider_wrapper div.region a#context-block-region-content_top.context-block-region {
  display: none;
}


/** ABOUT LANDING PAGE **/
#about-content-area {
  width: 989px;
  color: #fff;
  text-align: left;
  background:url('../images-theme/about_landing/images/landingPage_About_03.png') 
top center no-repeat;
  font-size: 14px;
}
#about-content-area h1 {
  padding-bottom: 5px;
  padding-top: 5px;
  background:url('../images-theme/about_landing/images/landing_h1bg.png') 
top left repeat;
}
#about-content-area .content {
  padding-right: 5px
}
#about-content-area .image-caption-container {
  float: left;
  width: 536px;
  padding-right: 10px;
}
#about-content-area .image-caption-container .caption {
  font-size: 12px;
  color: #000;
  padding-left: 10px;
}
/** RESOURCES LANDING PAGE **/
#resources-content-area {
  width: 989px;
  color: #fff;
  text-align: left;
  background:url('../images-theme/resources_landing/images/landingPage_Resources_03.png') 
top center no-repeat;
  font-size: 14px;
}
#resources-content-area h1 {
  xborder: none !important;
  padding-bottom: 5px;
  padding-top: 5px;
  background: url('../images-theme/about_landing/images/landing_h1bg.png') top left repeat;
}
#resources-content-area .content {
  padding-right: 5px
}
#resources-content-area .image-caption-container {
  float: left;
  width: 536px;
  padding-right: 10px;
}
#resources-content-area .image-caption-container .caption {
  font-size: 12px;
  color: #000;
  padding-left: 10px;
}
/** RESEARCH LANDING PAGE **/
#research-content-area {
  width: 989px;
  color: #fff;
  text-align: left;
  background: url('../images-theme/research_landing/images/landingPage_Research_03.png') 
top center no-repeat;
  font-size: 14px;
}
#research-content-area h1 {
  padding-bottom: 5px;
  padding-top: 5px;
  background:url('../images-theme/about_landing/images/landing_h1bg.png') 
top left repeat;
}
#research-content-area .content {
  padding-right: 5px
}
#research-content-area .image-caption-container {
  float: left;
  width: 536px;
  padding-right: 10px;
}
#research-content-area .image-caption-container .caption {
  font-size: 12px;
  color: #000;
  padding-left: 10px;
}
/** CAREERS LANDING PAGE **/
#careers-content-area {
  width: 989px;
  color: #fff;
  text-align: left;
  background: url('../images-theme/careers_landing/images/landingPage_Careers_03.png') 
top center no-repeat;
  font-size: 14px;
}
#careers-content-area h1 {
  padding-bottom: 5px;
  padding-top: 5px;
  background: url('../images-theme/about_landing/images/landing_h1bg.png') 
top left repeat;
}
#careers-content-area .content {
  padding-right: 5px
}
#careers-content-area .image-caption-container {
  float: left;
  width: 536px;
  padding-right: 10px;
}
#careers-content-area .image-caption-container .caption {
  font-size: 12px;
  color: #000;
  padding-left: 10px;
}
/** SEARCH LANDING PAGE **/
#search-content-area #edit-keys-wrapper input {
  width: 370px;
  height: 34px;
  background: #5e5e5e;
  border-top: #4a4a4a 2px solid;
  border-left: #4a4a4a 2px solid;
  border-right: #848484 2px solid;
  border-bottom: #848484 2px solid;
  color: #fff;
  font-size: 16px;
     }
#search-content-area label {
  padding-bottom: 5px;
  padding-top: 5px;
}
.image-caption-container p {
  margin: 5px !important
}
.image-caption-container {
 width: 515px;
}
.image-caption-container2 {
  float: left;
  width: 260px;
  padding-right: 10px;
}
.image-caption-container3 {
  float: left;
  width: 250px;
}
#search-content-area {
  width: 978px;
  color: #fff;
  text-align: left;
  background: url('../images-theme/search_landing/images/landingPage_Search_main.png') 
top center repeat-y;
  font-size: 14px;
  padding-bottom: 30px;
}
.image-caption {
  font-size: 12px;
  color: #666;
}
#search-content-foot {
  width: 978px;
  height: 93px;
  color: #fff;
  text-align: left;
  background: url('../images-theme/search_landing/images/landingPage_Search_foot.png') 
top center no-repeat;
  font-size: 14px;
}
#search-content-area h1 {
  padding-top: 10px;
  background: url('../images-theme/about_landing/images/landing_h1bg.png') 
top left repeat;
}
#search-content-area .content {
  padding-right: 5px
}
#search-content-area .image-caption-container {
  float: left;
  width: 536px;
  padding-right: 10px;
}
#search-content-area .image-caption-container .caption {
  font-size: 12px;
  color: #000;
  padding-left: 10px;
}
.landing_bottom {
  width: 989px;
  padding-top: 30px;
  padding-bottom: 30px;
}
.red_menu {
  float: left;
  width: 214px;
  height: 190px;
  background: url('../images-theme/about_landing/images/red_box.png') 
top left repeat;
  padding-left: 10px;
}
 .red_menu ul {
  list-style: none;
  margin: 0px;
  padding: 0px;
  color: #fff;
  text-align: left;
  font-size: 12px;
}
.red_menu li {
  background: url('../images-theme/about_landing/images/red_box_line.png') 
bottom left no-repeat;
  padding: 8px;
}
.red_menu ul a {
  color: #fff
}
.link_list ul {
  list-style: none;
  margin: 0px;
  padding: 0px;
  color: #fff;
  text-align: left;
  font-size: 14px;
}
.link_list li {
  padding-right: 10px;
  padding-left: 20px;
  margin-top: 10px;
  margin-bottom: 10px;
}
.link_list li a {
  color: #fff !important;
  padding-left: 20px;
}
.link_list li a .visited {
  color: #fff !important
}
.landing_icon_container {
  width: 222px;
  height: 112px;
  float: left;
  padding-left: 20px;
  text-align: left;
}
.landing_icon_container span img {
  padding-left: 5px
}
.landing_icon_container p {
  color: #fff;
  margin: 0px;
  font-size: 12px;
}
.landing_icon_container span {
  color: #821321;
  font-weight: bold;
  font-size: 12px;
}
 /* End Fix Styles */

.content p {
  padding-right: 10px
}
#main-wrapper .front {
  background-color: #000000
}
#permissions td.module {
  font-weight: bold
}
#permissions td.permission {
  padding-left: 1.5em
}
#access-rules .access-type,
#access-rules .rule-type {
  margin-right: 1em;
  float: left;
}
#access-rules .access-type .form-item,
#access-rules .rule-type .form-item {
  margin-top: 0
}
#access-rules .mask {
  clear: both
}
.profile {
  clear: both;
  margin: 1em 0;
}
.profile .picture {
  float: right;
  margin: 0 1em 1em 0;
}
.profile h3 {
  border-bottom: 1px solid #ccc
}
.profile dl {
  margin: 0 0 1.5em 0
}
.profile dt {
  margin: 0 0 0.2em 0;
  font-weight: bold;
}
.profile dd {
  margin: 0 0 1em 0
}

.field .field-label,
.field .field-label-inline,
.field .field-label-inline-first {
  font-weight: bold
}
.field .field-label-inline,
.field .field-label-inline-first {
  display: inline
}
.field .field-label-inline {
  visibility: hidden
}
.node-form .content-multiple-table td.content-multiple-drag {
  width: 30px;
  padding-right: 0;
}
.node-form .content-multiple-table td.content-multiple-drag a.tabledrag-handle {
  padding-right: .5em
}
.node-form .content-add-more .form-submit {
  margin: 0
}
.node-form .number {
  display: inline;
  width: auto;
}
.node-form .text {
  width: auto
}
.form-item #autocomplete .reference-autocomplete {
  white-space: normal
}
.form-item #autocomplete .reference-autocomplete label {
  display: inline;
  font-weight: normal;
}
#content-field-overview-form .advanced-help-link,
#content-display-overview-form .advanced-help-link {
  margin: 4px 4px 0 0
}
#content-field-overview-form .label-group,
#content-display-overview-form .label-group,
#content-copy-export-form .label-group {
  font-weight: bold
}
table#content-field-overview .label-add-new-field,
table#content-field-overview .label-add-existing-field,
table#content-field-overview .label-add-new-group {
  float: left
}
table#content-field-overview tr.content-add-new .tabledrag-changed {
  display: none
}
table#content-field-overview tr.content-add-new .description {
  margin-bottom: 0
}
table#content-field-overview .content-new {
  font-weight: bold;
  padding-bottom: .5em;
}
.advanced-help-topic h3,
.advanced-help-topic h4,
.advanced-help-topic h5,
.advanced-help-topic h6 {
  margin: 1em 0 .5em 0
}
.advanced-help-topic dd {
  margin-bottom: .5em
}
.advanced-help-topic span.code {
  background-color: #EDF1F3;
  font-family: "Bitstream Vera Sans Mono",Monaco,"Lucida Console",monospace;
  font-size: 0.9em;
  padding: 1px;
}
.advanced-help-topic .content-border {
  border: 1px solid #AAA
}


.list_end {
  background: none !important
}
.search-results {
  margin-top: 0px !important;
  padding: 20px;
}
.search-results a {
  color: #661c2b !important;
  font-weight: bold;
}
.item-list {
  clear: both
}

ul,
ol {
  xmargin-left: 0;
  xpadding-left: 2em;
}
.block ul,
.item-list ul {
  xmargin: 1em 0;
  xpadding: 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 {
  xmargin: 0
}

.item-list ul li {
  xmargin: 0;
  xpadding: 0;
  xlist-style: inherit;
}
ul.menu li,
li.expanded,
li.collapsed,
li.leaf {
  xmargin: 0;
  xpadding: 0;
}
.image-caption-container {
  float: left;
}
.image-caption-container p {
  margin: 0px
}
.caption {
  font-size: 12px;
  color: #808080;
}


.image-caption-container2 {
  float: left;
  width: 260px;
  padding-right: 10px;
}
.image-caption-container3 {
  float: left;
  width: 250px;
}


.image-caption {
  font-size: 12px;
  color: #666;
}

.boxtitle {
  text-transform: uppercase;
  padding-top: 10px;
}
hr {
  border: none !important;
  background: #bababa !important;
  height: 5px !important;
}

.rteindent1 {
  margin-left: 40px
}
.rteindent2 {
  margin-left: 80px
}
.rteindent3 {
  margin-left: 120px
}
.rteindent4 {
  margin-left: 160px
}
.rteleft {
  text-align: left
}
.rteright {
  text-align: right
}
.rtecenter {
  text-align: center
}
.rtejustify {
  text-align: justify
}
.ibimage_left {
  float: left
}
.ibimage_right {
  float: right
}
table.cke_editor fieldset {
  padding: 0 !important
}
.cke_editor {
  display: table !important
}
.cke_editor,
#ie#bug {
  display: inline-table !important
}
.ctools-locked {
  color: red;
  border: 1px solid red;
  padding: 1em;
}
.ctools-owns-lock {
  background: #FFFFDD none repeat scroll 0 0;
  border: 1px solid #F0C020;
  padding: 1em;
}
a.ctools-ajaxing,
input.ctools-ajaxing,
button.ctools-ajaxing,
select.ctools-ajaxing {
  padding-right: 18px !important;
  background: url(sites/all/modules/ctools/images/status-active.gif) right center no-repeat;
}
div.ctools-ajaxing {
  float: left;
  width: 18px;
  background: url(/sites/all/modules/ctools/images/status-active.gif) center center no-repeat;
}

/*Montages*/
/* sidebar control */

.region-sidebar-first {
  width: 175px !important;
}

#contentcontainer {
        font-size:12px;
        }

#contentcontainer h1{
        text-align:center;
        }

#contentcontainer h2 a{
        color:#000;
        }
#contentcontainer h3 a{
        color:#000;
        }
#BTF a {
        color:#000;
        }
h4 {
        font-size:16px;
        }

/* end of jlab_info_staff_memos.css */

/*Weekfly Briefs*/
h4 {
  background-color: #000;
  color: #FFF;
  font-size: 12px;
  padding: 2px 2px 2px 5px;
}

.content #TableText {
  font-size: 12px;
}

.content #TableText td {
  padding: 4px;
}
.field-content #TableText {
  font-size: 12px;
}

.field-content #TableText td {
  padding: 4px;
}

#TableText {
  margin: 0;
}
div.tabs {
  margin: 0 0 5px 0
}

.image-caption-links{
        width:505px;
        padding:0px;
        margin:15px 0px 0px 5px;
        font-size: 12px;
        color: #000;
        height:104px;
}

#img-cap-hr{
        width:97%;
        height:1px !important;
        background-color:#9b1120 !important;
}

#FirstTable ul {
                list-style: disc;
                padding: 0px 0px 0px 20px;
                margin: 0;
}
#FirstTable li {
                float: left;
                padding:4px 0px;
                list-style: disc;
                display: block;
}
#FirstTable a {
                display: block;
                background: none;
                xpadding: 0.25em 1.25em;
                color: #000; /* was: #831422 */
                width: 149px;
                xtext-align: center;
                font-family:Arial, Helvetica, sans-serif;
                font-size:12px;
                list-style: disc;
}

#FirstTable a:visited,
#FirstTable a:hover,
#FirstTable a:active {
                color: #000; /* was: #FF0000; */
}

/*
#FirstTable a {
                display: inline-table;
                background: none;
                width: 11em;
                font-family:Arial, Helvetica, sans-serif;
                font-size:12px;
                color: #000;
}
*/
.TableText {
font-family:Arial, Helvetica, sans-serif;
font-size:12px;
}
.TableText td{
padding:10px;
}
/* misc fixups for logged-in users */

html.js body.not-front div#wrapper div#lower_wrapper div.region a#context-block-region-highlight.context-block-region,
html.js body.not-front div#wrapper div#header_wrapper div#header_container div#navigation_container div.region a#context-block-region-header.context-block-region {
  display: none;
}
/* internal general page fixes for image swap without drop shadow, caption and additional links expandability */

#interior-content-wrapper { 
  height:100%; 
  width:960px; 
  margin: 0 auto; 
}

.galleryphoto {
height:auto;
width:515px;
float:left;
margin:5px;
padding:5px;
background-image: url("/sites/default/files/images/interior-image-drop-shadow.png");
background-repeat:no-repeat;
background-position:2px 4px;
}

.galleryphoto img { 
  margin:2px 2px 15px;  
}
#FirstTable img {
        height:auto;
        width:auto;
        margin:0px;
        border:0px;
        margin-bottom:auto;
        background-position:0px 0px;
        }
.ALbottom {
        background-image: url("/sites/default/files/images/additional-links-bkrnd-bottom-tile.jpg");
        background-repeat:repeat-x;
        }
.ALside-top-right {
        background-image: url("/sites/default/files/images/additional-links-bkrnd-side-tile.jpg");
        background-repeat: repeat-y;
        margin:0px;
        padding:0px;
        }
.ALbottom-right {
        padding:0px;
        margin:0px;
        }
.TableText td img {
        margin:0px;
        padding:0px;
        }
.image-caption-links {
        height:auto;
        width:auto;
        }
.TableText td {
        margin:0px;
        padding:0px;
        }

/* ***** activate CSS below when all pages are completed and remove old background CSS reference and adjust LI of additional links from 11em to 149px********** */
.TableText {
        width:494px;
        margin-left: 3px;
        }

h3 {
    font-size: 1.2em !important;
    margin-bottom: 0 !important;
}
div#SubStories h4{
	color:#000;
	font-size:16px;
	background-color:#FFF;
	}
div#SubStories h1{
	font-size:22px;
	}
div#MainStory h1 {
	font-size:22px;
	}
/* end of file (html-reset.css) */
