/*
 * @file
 * global.styles
 *
 * Styles you add here will load for all device sizes, they are "global", as
 * opposed to "responsive" styles, which only load for a given breakpoint (media
 * query) that you set in theme settings. See the README for more details.
 */
/* =============================================================================
 *   Base
 * ========================================================================== */
/*
 * To preserve theme settings never apply font properties to the HTML element.
 */
html {
  background: white;
  font-family: "Lucida Sans Unicode", "Lucida Sans", "Lucida Grande", Verdana, Geneva, sans-serif;
  color: #333;
}

body {
  font-family: "Trebuchet MS", "Helvetica Neue", Arial, Helvetica, sans-serif;
  font-size: 81.3%;
}

/* =============================================================================
 *   HTML Elements
 * ========================================================================== */
h1,
h2,
h3,
.views-field-title {
  font-family: Georgia, Baskerville, Palatino, "Palatino Linotype", "Book Antiqua", "Times New Roman", serif;
  color: #003300;
  font-weight: 400;
  margin-top: 0;
}

.view h2,
.block-title,
.node-title,
.comment-title {
  margin: 0;
  line-height: 1.25;
}

pre,
code,
tt,
samp,
kbd,
var {
  font-family: Consolas, Monaco, "Courier New", Courier, monospace, sans-serif;
}

ul li {
  list-style: square;
}

/* =============================================================================
 *   Wrappers
 * ========================================================================== */
/*
 * Wraps the header
 */
#header-wrapper {
  background: url(images/gray-background-tile.png) repeat #fefefe;
}

/*
 * Wraps the nav elements
 */
#nav-wrapper {
  background: url(images/green-background-tile.png) repeat-x #063906;
  margin-bottom: 10px;
}

/*
 * Wraps the secondary content/preface region
 */
#secondary-content-wrapper {
  background: url(images/green-background-tile.png) repeat #063906;
  margin-top: -20px;
  color: #fff;
}

/*
 * Footer wrapper
 */
#footer-wrapper {
  border-top: 1px solid #ddd;
  margin-top: 1px;
  background: #e5e5e5;
  background: -moz-linear-gradient(top, #e5e5e5 0%, #f6f6f6 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #e5e5e5), color-stop(100%, #f6f6f6));
  background: -webkit-linear-gradient(top, #e5e5e5 0%, #f6f6f6 100%);
  background: -o-linear-gradient(top, #e5e5e5 0%, #f6f6f6 100%);
  background: -ms-linear-gradient(top, #e5e5e5 0%, #f6f6f6 100%);
  background: linear-gradient(to bottom, #e5e5e5 0%, #f6f6f6 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#e5e5e5', endColorstr='#f6f6f6',GradientType=0 );
}
#footer-wrapper h2 {
  font-size: 1em;
  margin: 0;
  padding: 0;
  font-weight: 700;
}
#footer-wrapper ul {
  margin: 0;
  padding: 0;
}
#footer-wrapper ul li {
  list-style: none;
}
#footer-wrapper .gpanel .block {
  border-right: 1px solid #003300;
  margin-top: 20px;
  text-align: right;
}

/* =============================================================================
 *   Front page
 * ========================================================================== */
.front .at-panel h1, .front .at-panel h2 {
  margin: 0 0 10px;
}
.front .panel-row .region-inner {
  background: #f6f6f6;
  margin: 0 10px;
  padding: 15px 0 0;
  border-bottom: 4px solid #003300;
  -webkit-box-shadow: rgba(0, 0, 0, 0.1) 2px 2px 3px;
  -moz-box-shadow: rgba(0, 0, 0, 0.1) 2px 2px 3px;
  box-shadow: rgba(0, 0, 0, 0.1) 2px 2px 3px;
}
.front .region-ow-3col-leftfixed-third .region-inner {
  padding-top: 20px;
}

.not-front .columns-inner {
  margin-top: 30px;
}

/* Front page banners - remove styles from p for wysiwyg added banner images */
.region-ow-3col-leftfixed-third .block {
  margin-bottom: 15px;
}
.region-ow-3col-leftfixed-third .block-content {
  margin: 0 auto;
  text-align: center;
}
.region-ow-3col-leftfixed-third p {
  margin: 0;
  padding: 0;
  line-height: 1;
}

/* =============================================================================
 *   Events calendar
 * ========================================================================== */
.view-event-calendar .views-row {
  overflow: hidden;
  margin-bottom: 15px;
}
.view-event-calendar .views-field-field-event-date {
  float: left;
  width: 50px;
}
.view-event-calendar .views-field-field-event-date .c {
  margin-left: 10px;
}
.view-event-calendar .views-field-field-event-date .m {
  font-size: 1.1em;
}
.view-event-calendar .views-field-field-event-date .d {
  font-size: 1.75em;
  line-height: 1;
  font-family: Georgia, Baskerville, Palatino, "Palatino Linotype", "Book Antiqua", "Times New Roman", serif;
  color: #003300;
}
.view-event-calendar .views-field-title {
  margin: 0 0 0 50px;
  font-size: 1.1em;
}

/* =============================================================================
 *   Branding
 * ========================================================================== */
/*
 * Wraps all the branding elements, logo, name and slogan
 */
#branding {
  margin-top: 15px;
}

/*
 * Logo
 */
#logo {
  padding: 0;
}
#logo img {
  vertical-align: bottom;
}

/*
 * Site name (h1)
 */
#site-name {
  margin: 0;
}
#site-name a:link, #site-name a:visited {
  text-decoration: none;
}
#site-name a:hover, #site-name a:focus {
  text-decoration: underline;
}

/*
 * Site slogan (h2)
 */
#site-slogan {
  margin: 0;
}

/* =============================================================================
 *   Page content header
 * ========================================================================== */
/*
 * Main content header wraps the page title, tabs and actions links
 */
/*
 * The main page title (h1)
 */
#page-title {
  margin: 0;
}

/* =============================================================================
 *   Misc Global Styles
 * ========================================================================== */
/*
 * Aggregator feed source
 */
#aggregator .feed-source .feed-icon {
  display: inline;
  float: none;
  margin-right: 10px;
}

.feed-details dt,
.feed-details dd {
  display: inline;
  margin: 0;
}

/*
 * Generic styles for the more link
 */
/*
 * Generic styles for links. See the ul.links declaration in node and comment stylesheets
 */
ul.links {
  margin: 0;
  padding: 0;
}
ul.links.inline {
  display: block;
}
ul.links li {
  display: inline;
  list-style: none;
  padding: 0 10px 0 0;
}

/*
 * Search results are an ordered list so reset the margin
 */
.search-results {
  margin: 0;
  padding: 0;
}

/* =============================================================================
 *   Links
 * ========================================================================== */
#block-views-event-calendar-block-2 a,
a {
  text-decoration: none;
  color: #003400;
}
#block-views-event-calendar-block-2 a:hover,
a:hover {
  text-decoration: underline;
}
#block-views-event-calendar-block-2 a:focus,
a:focus {
  background: #ffffcc !important;
  text-decoration: none;
}

#block-views-event-calendar-block-2 a {
  display: inline-block;
}

#block-block-2 a:focus,
.region-ow-3col-leftfixed-third a:focus,
.field-type-image a:focus,
#logo a:focus {
  background: transparent !important;
}

/* =============================================================================
 *   Primary, Secondary and Menu Bar region menus
 * ========================================================================== */
/*
 * Use one of the following id's for granular control:
 *  - #menu-bar (menu bar region)
 *  - #primary-menu (main menu)
 *  - #secondary-menu (secondary/user menu)
 * You can target all of these with .nav or div[id$="menu-bar"]
 */
#menu-bar .block {
  margin-bottom: 0;
}

#om-menu-main-mega-menu {
  display: table;
  width: 100%;
}
#om-menu-main-mega-menu li.om-leaf {
  display: table-cell;
  float: none;
}
#om-menu-main-mega-menu li.om-leaf span.om-link {
  display: block;
  text-align: center;
}

/*
.nav {
  clear: both;
  margin: 0;

  ul,
  ul.menu {
    margin: 0;
    padding: 0;
  }

  li,
  ul.menu li {
    display: inline;
    float: left;
    list-style: none;
    margin: 0;
    padding: 0;
  }

  li a,
  ul.menu li a {
    display: block;
    white-space: nowrap;
    padding: 0 10px;

    &:visited {}
    &:hover,
    &:focus {}
  }

  .block {
    margin-bottom: 0;
  }
}
*/
/* =============================================================================
 *   Superfish
 * ========================================================================== */
ul.sf-menu {
  margin-bottom: 0;
}
ul.sf-menu a {
  border-left: 0;
  border-top: 0;
  padding: 0 10px;
  text-decoration: none;
  height: 2.5em;
  line-height: 2.5em;
  color: #fff;
}
ul.sf-menu li:hover, ul.sf-menu li.sfHover {
  outline: 0;
}
ul.sf-menu a:focus, ul.sf-menu a:hover, ul.sf-menu a:active {
  outline: 0;
}

/*
 * Superfish blocks
 */
.block-superfish ul {
  margin: 0 !important;
  padding: 0 !important;
}
.block-superfish li {
  margin: 0 !important;
  padding: 0 !important;
}

/*
 * Vertical style
 */
.sf-vertical {
  width: 100%;
}
.sf-vertical li {
  width: 100%;
}
.sf-vertical li:hover ul, .sf-vertical li.sfHover ul {
  left: 100%;
  top: 0;
  margin: 0;
  padding: 0;
}
.sf-vertical li a {
  padding: 0 10px;
}

/*
 * Navbar style
 */
.sf-navbar {
  padding-bottom: 0 !important;
}

/*
 * Sensible padding for the default style
 */
.sf-menu.sf-style-default a {
  padding: 0 10px;
}

.sf-menu.sf-horizontal.sf-shadow ul,
.sf-menu.sf-vertical.sf-shadow ul,
.sf-menu.sf-navbar.sf-shadow ul ul {
  background: #F6F6F6;
  color: #063906;
  border-bottom-left-radius: 0;
  border-top-right-radius: 0;
  padding: 0 8px 9px 0 !important;
}
.sf-menu.sf-horizontal.sf-shadow ul a,
.sf-menu.sf-vertical.sf-shadow ul a,
.sf-menu.sf-navbar.sf-shadow ul ul a {
  color: #063906;
}

.region-header h2 {
  border: 0;
  height: 1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  clip: rect(1px 1px 1px 1px);
  clip: rect(1px, 1px, 1px, 1px);
}

/* =============================================================================
 *   FlexSlider
 * ========================================================================== */
.region-secondary-content .block-views {
  margin: 0;
  padding: 10px 0 20px;
}
.region-secondary-content .flex-control-nav {
  bottom: 10px;
  padding: 0;
  right: 10px;
  text-align: left;
  width: auto;
  z-index: 10;
}
.region-secondary-content .flex-control-nav.flex-control-paging > li {
  margin: 0 3px;
}
.region-secondary-content .flex-control-paging li a:hover,
.region-secondary-content .flex-control-paging li a:focus,
.region-secondary-content .flex-control-paging li a.flex-active {
  background: none repeat scroll 0 0 rgba(255, 255, 255, 0.85);
  cursor: default;
}
.region-secondary-content img {
  line-height: 0;
  max-width: auto;
  width: auto;
}
.region-secondary-content .flexslider {
  background: none;
  border: 4px solid #030000;
  border-radius: 0;
  box-shadow: 0 0 0 transparent;
  margin: 0;
  padding: 0;
  position: relative;
}
.region-secondary-content .flexslider ul, .region-secondary-content .flexslider li {
  margin: 0;
  padding: 0;
}
.region-secondary-content .flexslider li {
  position: relative;
  overflow: hidden;
}
.region-secondary-content .flexslider .ribbon {
  display: none;
}
.region-secondary-content .flexslider .feature-text-overlay {
  background: none repeat scroll 0 0 rgba(0, 0, 0, 0.65);
  height: 240px;
  padding: 0;
  position: absolute;
  right: 0;
  text-align: right;
  top: 0;
  width: 305px;
  z-index: 10;
}
.region-secondary-content .flexslider .feature-text {
  padding: 20px 15px 0 10px;
}
.region-secondary-content .flexslider .feature-text h2 {
  font-size: 2em;
}
.region-secondary-content .flexslider .feature-text .slide-caption {
  font-size: 1.5em;
  line-height: 1.2;
}
.region-secondary-content .flexslider .feature-text h2,
.region-secondary-content .flexslider .feature-text p,
.region-secondary-content .flexslider .feature-text a {
  color: #fff;
  margin-bottom: 10px;
}

.region-secondary-content .flexslider li[style="display: list-item;"],
.region-secondary-content .flexslider li[style="display: list-item;"] .feature-image picture {
  display: block !important;
}

/* =============================================================================
 *   Menu Toggles
 * ========================================================================== */
.at-mt .at-menu-toggle,
.at-mt .at-menu-toggle ul,
.at-mt .at-menu-toggle ul.menu {
  margin-top: 0;
  margin-bottom: 0;
  padding: 0;
}
.at-mt .at-menu-toggle-button {
  margin: 0;
}
.at-mt .at-menu-toggle ul a {
  padding: 0 10px;
  white-space: nowrap;
}

/* =============================================================================
 *   Menus, usually blocks
 * ========================================================================== */
#columns .menu {
  padding: 0;
  list-style: none;
}
#columns .menu .menu {
  padding: 0;
  margin: 0 0 0 10px;
  background: rgba(0, 0, 0, 0.01);
}
#columns .menu .menu a {
  padding: 5px;
}
#columns .menu li {
  margin: 0;
  list-style: none;
}
#columns .menu li a {
  padding: 5px 0;
  border-bottom: 1px solid #eee;
  display: block;
}
#columns .menu li a.active {
  color: #078E07;
}
#columns .menu li.last a {
  border-top: 1px solid #eee;
  margin-top: -1px;
}

/* If li.content exists it's a problem, so reset the padding */
.block .menu li.content {
  padding: 0;
}

/* =============================================================================
 *   Book navigation menu
 * ========================================================================== */
.book-navigation .page-up {
  /* Prevent text wrapping to a new line, assumes English "up" is used (two characters) */
  min-width: 2em;
  white-space: nowrap;
}
.book-navigation .menu {
  margin-left: 0;
}

/* =============================================================================
 *   Breadcrumbs
 * ========================================================================== */
#breadcrumb {
  margin: 10px 0;
  /* If the label is set to show in theme settings the label class is added */
}
#breadcrumb .breadcrumb-label {
  font-size: 1em;
  display: inline;
  padding-right: 10px;
}
#breadcrumb .breadcrumb-label:after {
  content: ":";
}
#breadcrumb ol {
  margin: 0;
  padding: 0;
}
#breadcrumb .with-breadcrumb-label ol {
  display: inline;
}
#breadcrumb li {
  list-style: none;
  display: inline;
}

/* =============================================================================
 *   Pagers
 * ========================================================================== */
ul.pager {
  clear: both;
  margin: 0;
  text-align: center;
}

.item-list ul.pager li {
  margin: 0;
}

ul.pager li {
  background-image: none;
  display: inline;
  list-style-type: none;
  padding: .5em;
}
ul.pager li.pager-current {
  font-weight: 700;
}

.block ul.pager li {
  margin: 0;
}

/*
 * Theme the various states of pager links
 */
/* =============================================================================
 *   Skip Navigation
 * ========================================================================== */
#skip-link {
  left: 50%;
  margin-left: -6.5em;
  margin-top: 0;
  padding: 0 0.5em;
  position: absolute;
  width: 12em;
  z-index: 50;
}
#skip-link a {
  background: #444;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  display: block;
  line-height: 2;
  padding: 0;
  text-align: center;
  text-decoration: none;
}
#skip-link a:link, #skip-link a:visited {
  background: #444;
  background: rgba(0, 0, 0, 0.6) !important;
  color: white;
  display: block;
  line-height: 2;
  padding: 0;
  text-align: center;
  text-decoration: none;
}
#skip-link a:hover, #skip-link a:focus, #skip-link a:active {
  outline: 0;
}

/* =============================================================================
 *   Tabs (local tasks)
 * ========================================================================== */
#tasks {
  margin-bottom: 15px;
}

ul.primary {
  border-bottom-color: #cccccc;
  margin: 20px 0;
  padding: 0 0 0 5px;
}
ul.primary li {
  display: block;
  float: left;
  margin: 0 1px -1px;
}
ul.primary li a {
  background-color: whitesmoke;
  border-color: #cccccc;
  margin-right: 1px;
  padding: 0 10px;
  display: block;
  float: left;
  height: 1.5em;
  line-height: 1.5em;
}
ul.primary li a:hover, ul.primary li a:focus {
  background-color: #eeeeee;
  border-color: #cccccc;
}
ul.primary li.active a,
ul.primary li.active a:hover,
ul.primary li.active a:focus {
  background-color: white;
  border-bottom-color: white;
}

ul.secondary {
  border-bottom: 1px solid #cccccc;
  margin: 1em 0 0;
  padding: 0 .3em 1em;
}
ul.secondary li {
  border-right: 0;
  list-style: none;
  padding: 0 10px 0 0;
}
ul.secondary li a:hover, ul.secondary li a.active {
  border-bottom: none;
  text-decoration: underline;
}

/* =============================================================================
 *   Action links
 * ========================================================================== */
ul.action-links {
  margin: 20px 0 0;
  list-style: none;
}

/* =============================================================================
 *  Field Styling
 * ========================================================================== */
/*
 * When labels are set to inline in field display settings the clearfix class is automatically added
 */
.field-label-inline {
  /* Remove the margin on inline field lables to preserve vertical formatting */
}
.field-label-inline .field-label {
  margin: 0;
}

/*
 * Labels are h2 in Adaptivetheme. Use a strong selector to mitigate unwanted ineritance issues
 */
.field-label {
  font-size: 1em;
  font-weight: 700;
  font-family: inherit;
  line-height: inherit;
  margin-bottom: 0;
}

/*
 * Field types (Core)
 */
/*
 * Image fields use the <figure> and <figcaption> elements from HTML5
 */
.field-type-image .field-label {
  display: none;
}
.field-type-image figure {
  float: right;
  clear: right;
  margin: 5px 0 10px 10px;
}
.field-type-image img {
  border: 1px solid #003300;
  -webkit-box-shadow: rgba(0, 0, 0, 0.3) 2px 2px 3px;
  -moz-box-shadow: rgba(0, 0, 0, 0.3) 2px 2px 3px;
  box-shadow: rgba(0, 0, 0, 0.3) 2px 2px 3px;
}

/*
 * Taxonomy
 */
.field-type-taxonomy-term-reference {
  /* The same bottom margin as p, blockquote, ul, ol and dl */
  margin-bottom: 1.5em;
}
.field-type-taxonomy-term-reference.field-label-inline .field-items {
  margin: 0;
  padding: 0;
}
.field-type-taxonomy-term-reference.field-label-inline .field-item {
  display: inline;
  list-style: none;
  padding: 0 10px 0 0;
}

/*
 * Image Alignment Theme Settings - included here so you can easily override
 */
/*
 * Float none setting
 */
/*
 * Float left setting
 */
.ia-l .field-type-image figure,
.iat-l .field-type-image figure {
  margin: 5px 20px 15px 0;
}

/*
 * Centered setting
 */
.ia-c .field-type-image figure,
.iat-c .field-type-image figure {
  margin: 5px auto 15px;
}

/*
 * Float right setting
 */
.ia-r .field-type-image figure,
.iat-r .field-type-image figure {
  margin: 5px 0 15px 20px;
}

/* =============================================================================
 *   Block Styling
 * ========================================================================== */
/*
 * Main wrapper for most blocks, block_system_main does not have it
 */
.block {
  margin-bottom: 20px;
}

/*
 * Block title
 */
.block-title {
  margin: 0;
}

/*
 * Block content wrapper
 */
/*
 * Match item list and block menu margin and padding
 */
.block-content ul,
.block-content ol {
  padding: 0 0 0 15px;
}
.block-content li {
  margin: 0;
  padding: 0;
}

/*
 * "Search form" block
 */
#block-search-form #edit-submit {
  display: block !important;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  border: 0;
  font: 0/0 a;
  text-shadow: none;
  color: transparent;
  background-color: transparent;
  background: url(images/search-submit-button.png) no-repeat transparent 0 0;
  height: 27px;
  width: 29px;
}
#block-search-form .form-item,
#block-search-form .form-actions {
  float: left;
}
#block-search-form .form-actions {
  margin: 13px 0 0 5px;
}
#block-search-form .form-item input {
  width: 200px;
  border: 0;
  height: 23px;
  padding: 3px 3px 1px;
  color: #747474;
  background: #fff;
  background: -moz-linear-gradient(top, #f2f2f2 0%, rgba(244, 244, 244, 0.68) 18%, white 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #f2f2f2), color-stop(18%, rgba(244, 244, 244, 0.68)), color-stop(100%, white));
  background: -webkit-linear-gradient(top, #f2f2f2 0%, rgba(244, 244, 244, 0.68) 18%, white 100%);
  background: -o-linear-gradient(top, #f2f2f2 0%, rgba(244, 244, 244, 0.68) 18%, white 100%);
  background: -ms-linear-gradient(top, #f2f2f2 0%, rgba(244, 244, 244, 0.68) 18%, white 100%);
  background: linear-gradient(to bottom, #f2f2f2 0%, rgba(244, 244, 244, 0.68) 18%, #ffffff 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f2f2f2', endColorstr='#ffffff',GradientType=0 );
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
  -webkit-box-shadow: #bdcabd 2px 2px 3px;
  -moz-box-shadow: #bdcabd 2px 2px 3px;
  box-shadow: #bdcabd 2px 2px 3px;
}

#block-views-exp-search-page-1 label {
  border: 0;
  height: 1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  clip: rect(1px 1px 1px 1px);
  clip: rect(1px, 1px, 1px, 1px);
}
#block-views-exp-search-page-1 .views-exposed-form .views-exposed-widget .form-submit {
  margin-top: 0;
}

#block-block-1 .social-links {
  padding: 0;
}
#block-block-1 .social-links li {
  float: left;
  list-style: none outside none;
  margin: 0 4px 0 0;
  padding: 0;
}

/* =============================================================================
 *   Node Styling
 * ========================================================================== */
.node {
  margin-bottom: 20px;
}
.node .node-title {
  margin: 0;
}

/* =============================================================================
 *   Comment Styling - Comments, comment wrapper, comment form
 * ========================================================================== */
/*
 * Wrapper for the list of comments and its titles
 */
#comments {
  margin: 1.5em 0;
}
#comments h2.comment-title {
  margin: 0;
}
#comments h2.comment-form {
  margin: 0;
}

/*
 * Wrapper for a single comment
 */
.comment {
  margin-bottom: 20px;
}

/*
 * Comment title
 */
.comment-title {
  margin: 0;
}

/*
 * "New" marker for comments that are new for the current user
 */
.new {
  color: #cc0000;
}

/*
 * Nested comments are indented
 */
.indented {
  margin-left: 40px;
}

/* =============================================================================
 *   Forms
 * ========================================================================== */
/*
 * Wrapper for a form element (or group of form elements) and its label
 */
.form-item input.error,
.form-item textarea.error,
.form-item select.error {
  border: 1px solid #cc0000;
}
.form-item label {
  font-weight: 700;
}
.form-item .description {
  font-size: 0.85em;
}

/*
 * Highlight marks and form required mark
 */
.marker,
.form-required {
  color: #cc0000;
}

/*
 * The submit button
 */
.container-inline div,
.container-inline label {
  display: inline;
}

/*
 * Define consistent borders
 */
fieldset {
  border: 1px solid #cccccc;
}

/*
 * Tips for Drupal's input formats
 */
/*
 * Buttons used by contrib modules like Media
 */
a.button {
  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: button;
}

/*
 * Password confirmation
 */
.password-parent,
.confirm-parent {
  margin: 0;
}

/* =============================================================================
 *   Tables
 * ========================================================================== */
table {
  margin: 10px 0;
  padding: 0;
  width: 100%;
}
table.sticky-header {
  z-index: 10;
}

table,
thead,
tbody,
tr,
th,
td {
  border-color: #cccccc;
}

table,
td,
th {
  vertical-align: middle;
}

caption,
th,
td {
  text-align: left;
}

thead tr {
  font-weight: 700;
  background-color: #e5e5e5;
}

td,
th {
  border-bottom: 0;
  margin: 0;
  padding: 5px 7px;
}

tbody tr {
  border-top: 1px solid #cccccc;
}

tr {
  /* Table row striping */
}
tr.odd {
  background: white;
}
tr.info, tr.even, tr:nth-child(2n+2) {
  border-bottom: 0;
  background-color: whitesmoke;
}
tr.odd td.active {
  background: none repeat scroll 0 0 rgba(0, 0, 0, 0);
}
tr.even td.active {
  background-color: #ebebeb;
}

/*
 * Forum tables
 * Core sets white-space to nowrap, which makes no sense
 */
#forum td.created, #forum td.posts, #forum td.topics, #forum td.last-reply, #forum td.replies, #forum td.pager {
  white-space: normal;
}

/* =============================================================================
 *   Messages
 * ========================================================================== */
div.messages {
  margin: 0 !important;
  border: 0;
  border-bottom: 1px solid;
}
div.messages ul {
  margin-top: 0;
  margin-bottom: 0;
}

.node-unpublished p.unpublished,
.comment-unpublished p.unpublished {
  color: pink;
  color: rgba(239, 170, 170, 0.4);
  font-family: Impact, Haettenschweiler, "Franklin Gothic Bold", Charcoal, "Helvetica Inserat", "Bitstream Vera Sans Bold", "Arial Black", sans-serif;
  font-size: 50px;
  font-weight: 700;
  line-height: 1.2;
  height: 0;
  margin: 0;
  padding: 0;
  overflow: visible;
  text-align: center;
  text-transform: uppercase;
  word-wrap: break-word;
}
.ie6-7 .node-unpublished p.unpublished > *, .ie6-7
.comment-unpublished p.unpublished > * {
  position: relative;
}

/* =============================================================================
 *    Maintenance pages
 * ========================================================================== */
.maintenance-page .container {
  padding: 40px 0;
}
.maintenance-page #site-name,
.maintenance-page #page-title {
  margin: 0;
}

.db-offline .container {
  margin: 0 auto;
  padding: 40px 0;
  width: 100%;
  max-width: 960px;
}
.db-offline div.messages {
  margin: 20px 0 0;
}
.db-offline #content {
  padding: 20px 0;
}

/* =============================================================================
 *   Misc overrides for contrib modules
 * ========================================================================== */
/*
 * Admin menu overrides
 */
#admin-menu {
  margin: 0;
  padding: 0;
}

/*
 * Devel Module
 */
.dev-query {
  background: #eeeeee;
  padding: 30px;
}

/*
 * Styleguide module tweaks
 */
#styleguide-header {
  padding: 0 10px;
}
#styleguide-header .item-list {
  font-family: inherit;
  margin: 0 20px 20px 0;
  min-height: 260px;
  width: auto;
}

/* =============================================================================
 *   Library page search widgets
 * ========================================================================== */
#page-library h2 {
  margin-bottom: 0;
}
#page-library div[class*="search-"] {
  margin-bottom: 20px;
}

/* =============================================================================
 *   News
 * ========================================================================== */
.view-news-pages .views-row {
  padding: 10px 0;
  margin: 10px 0;
  border-bottom: 1px dotted #ccc;
}
.view-news-pages .views-row-first {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px dotted #ccc;
}

/* =============================================================================
 *   Admissions homepage
 * ========================================================================== */
.page-admissions-page #page-title {
  border: 0;
  height: 1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  clip: rect(1px 1px 1px 1px);
  clip: rect(1px, 1px, 1px, 1px);
}

#admissions-homepage .block-title {
  margin-bottom: 10px;
}
#admissions-homepage .block-inner {
  padding: 10px 20px;
}
#admissions-homepage .block-inner ul {
  margin: 0;
  padding: 0;
}
#admissions-homepage .block-inner li {
  list-style: none;
  background: url(images/recaro-green.png) no-repeat transparent left center;
  margin: 0 0 5px 0;
  padding: 0 0 0 18px;
}
#admissions-homepage .region-three-33-first .block-inner,
#admissions-homepage .region-three-33-second .block-inner,
#admissions-homepage .region-three-33-third .block-inner {
  background: #f6f6f6;
  -webkit-box-shadow: rgba(0, 0, 0, 0.1) 2px 2px 3px;
  -moz-box-shadow: rgba(0, 0, 0, 0.1) 2px 2px 3px;
  box-shadow: rgba(0, 0, 0, 0.1) 2px 2px 3px;
  min-height: 160px;
  border-bottom: 4px solid #003300;
}
#admissions-homepage .region-three-33-bottom #block-custom-1 .block-inner {
  background: url(images/thinking-about-finances.png) #f6e1a2 no-repeat right bottom;
}
#admissions-homepage .region-three-33-bottom #block-custom-1 .block-content {
  width: 66%;
}
#admissions-homepage .region-three-33-bottom #block-custom-2 .block-inner {
  background: url(images/school-building.png) #f6f6f6 no-repeat right bottom;
  -webkit-box-shadow: rgba(0, 0, 0, 0.1) 2px 2px 3px;
  -moz-box-shadow: rgba(0, 0, 0, 0.1) 2px 2px 3px;
  box-shadow: rgba(0, 0, 0, 0.1) 2px 2px 3px;
}
#admissions-homepage .region-three-33-bottom #block-custom-2 address {
  font-style: normal;
}
#admissions-homepage .region-three-33-bottom #block-custom-2 address span {
  display: block;
}

.view-filters {
  background: #f7f7f7;
  border-top: 2px solid #eee;
  padding: 5px 10px 10px;
  margin-bottom: 20px;
}

.view-event-calendar .views-row-first,
.view-og-people .views-row-first,
.view-people .views-row-first,
.view-academic-offerings .views-row-first,
.view-policies .views-row-first {
  border-top: 1px dotted #ccc;
}
.view-event-calendar .views-row,
.view-og-people .views-row,
.view-people .views-row,
.view-academic-offerings .views-row,
.view-policies .views-row {
  border-bottom: 1px dotted #ccc;
  padding: 15px 0;
  overflow: hidden;
  *overflow: visible;
  *zoom: 1;
}
.view-event-calendar .view-content > h3,
.view-og-people .view-content > h3,
.view-people .view-content > h3,
.view-academic-offerings .view-content > h3,
.view-policies .view-content > h3 {
  margin: 30px 0 15px;
  font-weight: 700;
  font-size: 1.25em;
}

.view-event-calendar .arrow-link,
.view-og-people .arrow-link,
.view-people .arrow-link,
.view-academic-offerings .arrow-link {
  text-align: right;
}

.view-og-people .views-row,
.view-people .views-row {
  overflow: hidden;
  *zoom: 1;
}
.view-og-people .views-row.with-user-picture > div,
.view-people .views-row.with-user-picture > div {
  overflow: hidden;
  margin-left: 180px;
}
.view-og-people .views-row.with-user-picture div.views-field-picture,
.view-people .views-row.with-user-picture div.views-field-picture {
  float: left;
  max-width: 160px;
  margin: 0;
}

.view-event-calendar {
  /* Retinaing this for now in case there is a shift back to the table code.
  ul {
    margin: 0;
    padding: 0;
  }

  table {
    border: 0;
  }

  tr, th, td {
    background: #fff;
  }

  td, th {
    padding: 15px 0;
  }

  tbody {
    border: none;

    tr {
      border-top: 1px dotted #ccc;
      padding: 0;
    }
  }
  tr.even, tr.odd {
    background-color: #fff;
    border-bottom: 1px dotted #ccc;
  }


  .views-field-field-event-date {
    min-width: 12em;
    color: #666;
    padding: 15px 0 15px 10px;
  }
  */
}
.view-event-calendar .views-row {
  margin: 0;
}
.view-event-calendar .views-field-title {
  font-weight: 700;
}

#block-views-event-calendar-block-2 .views-row {
  margin: 0;
}
#block-views-event-calendar-block-2 .views-field-title {
  font-weight: 400;
}
#block-views-event-calendar-block-2 .views-field-field-event-date {
  min-width: 1em;
  padding: 0;
  margin: 0;
}
