
@import url("/_lcg/css/lcg.css");

/**
 * @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
 * articles:
 * - http://www.alistapart.com/articles/howtosizetextincss
 * - http://24ways.org/2006/compose-to-a-vertical-rhythm
 *
 * All modern browsers 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 */
  background-color:#ededed;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
}

#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 18px line height */
  /*font-size: 0.75em;*/ /* 16px x .75 = 12px */
  /*line-height: 1.5em;*/ /* 12px x 1.5 = 18px */

  /* Use a 14px base font size with a 21px line height */
  /*font-size: 0.875em;*/ /* 16px x .875 = 14px */
  /*line-height: 1.5em;*/ /* 14px x 1.5 = 21px */
}

/*
 * Instead of relying on the fonts that are available on a user's computer, you
 * can use web fonts which, like images, are resources downloaded to the user's
 * browser. Because of the bandwidth and rendering resources required, web fonts
 * should be used with care.
 *
 * Numerous resources for web fonts can be found on Google. Here are a few
 * websites where you can find Open Source fonts to download:
 * - http://www.fontsquirrel.com/fontface
 * - http://www.theleagueofmoveabletype.com
 *
 * In order to use these fonts, you will need to convert them into formats
 * suitable for web fonts. We recommend the free-to-use Font Squirrel's
 * Font-Face Generator:
 *   http://www.fontsquirrel.com/fontface/generator
 *
 * The following is an example @font-face declaration. This font can then be
 * used in any ruleset using a property like this:  font-family: Example, serif;

@font-face {
  font-family: 'Example';
  src: url('../fonts/example.eot');
  src: url('../fonts/example.eot?iefix') format('eot'),
    url('../fonts/example.woff') format('woff'),
    url('../fonts/example.ttf') format('truetype'),
    url('../fonts/example.svg#webfontOkOndcij') format('svg');
  font-weight: normal;
  font-style: normal;
}

 */

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
   * and Nimbus Sans 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, serif or
   * monospace) 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;

   */

  margin:0;
  padding:0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
}

pre,
code,
kbd,
samp,
tt,
var {
  font-family: "Courier New", "DejaVu Sans Mono", monospace;
}

/*
 * HTML5 rules for legacy browsers
 *
 * Corrects for missing block and inline-block display in IE6/7/8/9 and FF3.
 */
article, aside, footer, header, hgroup, nav, section,
details, figcaption, figure, menu, summary {
  display: block;
}
audio,
canvas,
video {
  display: inline-block;
}
.ie6-7 audio,
.ie6-7 canvas,
.ie6-7 video {
  display: inline;
  zoom: 1;
}

/*
 * Block-level elements
 *
 * To achieve a pleasant vertical rhythm, we use the 1.5em line height of our
 * base font as the top and bottom margins for our block level elements and make
 * the line heights of any larger fonts be a multiple of 1.5 ems. For more
 * information, see http://24ways.org/2006/compose-to-a-vertical-rhythm
 */
h1, h2, h3, h4, h5, h6,
p, blockquote, pre,
ul, ol, dl,
hr, table, fieldset {
  margin: 0;
  padding:0;
}

/* Headings */
h1 {
  font-size: 21px;
  margin: 0;
  color:#fff;
  font-family: Impact, Charcoal, sans-serif;
  font-weight:normal;
}

h2 {
  font-size: 24px;
  margin: 0;
  color:#f15922;
  font-family: Impact, Charcoal, sans-serif;
  font-weight:normal;
}

h3 {
  font-size: 18px;
  margin: 0;
  color:#3d3d3d;
  /*font-family: "Trebuchet MS", Helvetica, sans-serif;*/
  font-family: Arial, Helvetica, sans-serif;
  font-weight:bold;
}

p,
h4,
h5,
h6 {
  font-size: 12px;
  margin: 0;
  /*font-family: "Trebuchet MS", Helvetica, sans-serif;*/
  font-family: Arial, Helvetica, sans-serif;
}

/* Other block-level elements */
p {
}

blockquote {
  margin-left: 2em;
  margin-right: 2em;
}

pre {
  font-size: 1.1em; /* Monospace fonts can be hard to read */
  margin: 1.364em 0; /* Equivalent to 1.5em in the page's base font: 1.5 / 1.1 = 1.364 */
}

hr {
  height: 1px;
  border: 1px solid #666;
}

address {
}

/*
 * Lists
 *
 * We need to standardize the list item indentation.
 */
ul,
ol {
  margin-left: 0; /* LTR */
  padding-left: 2em; /* LTR */
}

.item-list ul /* Drupal overrides */ {
  margin: 1.5em 0;
  padding: 0 0 0 2em; /* LTR */
}

ul ul, ul ol,
ol ol, ol ul,
.item-list ul ul, .item-list ul ol,
.item-list ol ol, .item-list ol ul {
  margin: 0;
}

li,
.item-list ul li /* List items, including Drupal overrides */ {
  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; }

dl {
}

dt {
  margin: 0;
  padding: 0;
}

dd {
  margin: 0 0 0 2em; /* LTR */
  padding: 0;
}

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

th {
  text-align: left; /* LTR */
  padding: 0;
  border-bottom: none;
}

tbody {
  border-top: none;
}

thead {
}

tfoot {
}

caption {
}

colgroup {
}

col {
}

tr {
}

td {
}

/*
 * Forms
 */
form {
  margin: 0;
  padding: 0;
}

fieldset {
  padding: 0.5em;
  border:none;
}

legend {
}

label {
}

input {
}

select {
}

optgroup {
}

option {
}

textarea {
}

button {
}

/*
 * 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 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  /*font-family: "Trebuchet MS", Helvetica, sans-serif;*/
}
a:link {
  color:#595959;
  text-decoration:underline;
}
a:visited {
  color:#595959;
  text-decoration:underline;
}
a:hover,
a:focus {
  color:#3d3d3d;
  text-decoration:none;
}
a:active {
  color:#595959;
  text-decoration:underline;
}

#header div#sub-header a:link {
  color:#595959;
  font-weight:bold;
  font-size:11px;
  /*text-transform:uppercase;*/
  text-decoration:none;
}

#header div#sub-header a:visited {
  color:#595959;
  font-weight:bold;
  font-size:11px;
  /*text-transform:uppercase;*/
  text-decoration:none;
}

#header div#sub-header a:hover,
#header div#sub-header a:focus {
  color:#3d3d3d;
  font-weight:bold;
  font-size:11px;
  /*text-transform:uppercase;*/
  text-decoration:none;
}

#header div#sub-header a:active {
  color:#595959;
  font-weight:bold;
  font-size:11px;
  /*text-transform:uppercase;*/
  text-decoration:none;
}
#header div#sub-header a[href^=tel] {
  color:#F15922;
  font-size:20px;
  font-weight:bold;
}

#footer a:link {
  color:#ffffff;
  font-weight:bold;
  font-size:12px;
  /*text-transform:uppercase;*/
  text-decoration:none;
}

#footer a:visited {
  color:#ffffff;
  font-weight:bold;
  font-size:12px;
  /*text-transform:uppercase;*/
  text-decoration:none;
}

#footer a:hover,
#footer a:focus {
  color:#eeeeee;
  font-weight:bold;
  font-size:12px;
  /*text-transform:uppercase;*/
  text-decoration:underline;
}

#footer a:active {
  color:#595959;
  font-weight:bold;
  font-size:12px;
  /*text-transform:uppercase;*/
  text-decoration:none;
}

/*
 * Other inline elements
 */
img {
  border: 0;
  /* vertical-align: bottom; */ /* Suppress the space beneath the baseline */
}

abbr, /* Abbreviations */
acronym {
  border-bottom: 1px dotted #666;
  cursor: help;
  white-space: nowrap;
}

q {
}

cite {
}

strong, b {
}

em, i {
}

code,
kbd,
samp,
tt,
var /* Code, keyboard input, sample output, teletype, variable */ {
}

del {
}

ins {
}

big {
}

small {
}

sub {
}

sup {
}

div#featured-content-box {
  background-color:#cdcdcd;
  width:234px;
  height:318px;
  padding:8px 2px 8px 2px;
  margin:0;
  float:left;
}

.views-row-first div#featured-content-box {
  padding-left:6px;
}
.views-row-last div#featured-content-box {
  padding-right:6px;
}

div.article-body-date {
  size:12px;
}
div.article-body-date-sm {
  size:10px;
}
div.article-body-text {
  size:14px;
}

html.js body.html center div#page div.region div#block-lyons-db-content-global-page-header.block div#header-wrapper header#header.clearfix div#sub-header div#top-search div#block-search-form div.region div#block-search-form.block form#search-block-form.search-form div div.container-inline fieldset#edit-popup.custom_search-popup {
  border:none;
  display:none;
}






/* container element for tabs  */
div.the-search-results {
  margin-top:20px;
  margin-bottom:20px;
}

/* root element for tabs  */
div.the-search-results ul.css-tabs {
    margin:0 !important;
    padding:0;
    height:30px;
    border-bottom:1px solid #666;
}

/* single tab */
div.the-search-results ul.css-tabs li {
    float:left;
    padding:0;
    margin:0;
    list-style-type:none;
}

/* link inside the tab. uses a background image */
div.the-search-results ul.css-tabs a {
    float:left;
    font-size:13px;
    display:block;
    padding:5px 30px;
    text-decoration:none;
    border:1px solid #666;
    border-bottom:0px;
    height:18px;
    background-color:#efefef;
    color:#777;
    margin-right:2px;
    position:relative;
    top:1px;
    outline:0;
    -moz-border-radius:4px 4px 0 0;
}

div.the-search-results ul.css-tabs a:hover {
    background-color:#F7F7F7;
    color:#333;
}

/* selected tab */
div.the-search-results ul.css-tabs a.current {
    background-color:#fff;
    border-bottom:1px solid #fff;
    color:#000;
    cursor:default;
}


/* tab pane */
div.the-search-results div.css-panes div.pane {
    display:none;
    /*border:1px solid #666;*/
    border-width:0 1px 1px 1px;
    min-height:150px;
    padding:15px 20px;
    background-color:#fff;
}

div.the-search-results p.search-info {
  display:none;
}

div#main-content-large h2 {
  padding-left:10px;
}

div#main-content-large ol.search-results li.search-result div.search-snippet-info p.search-info {
  display:none;
}
