/*
 * @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.
 *
 *
 * How to use this file:
 * --------------------
 *
 * There are many empty selectors and some basic styles to act as a guide.
 * Nothing is set in stone and you can change anything - even delete all of it
 * and start with your own clean slate.
 *
 * See global.base also which includes normalize.css and some additional
 * helper classes and base styles.
 */

/* =============================================================================
 *   Base
 * ========================================================================== */

/*
 * To preserve theme settings never apply font properties to the HTML element.
 * This is critically important if you are using the Responsive JavaScript
 * feature as this relies on being able to set a pseudo font family on the HTML
 * element. If you need to set default font properties of any kind use the BODY
 * element as these can be overridden using font theme settings.
 */

.mobile-only {
  display: none;
}

@media (max-width: 720px) {
  .mobile-only {
    display: block;
  }
}

html {
  background: #fff;
  font-size: 100%;
}

body {
  font-weight: normal;
  font-style: normal;
  word-wrap: break-word;
  border: 0;
  outline: 0;
  border-top: 12px solid;
}

body, input, textarea, select, a.button, fieldset legend {
  font-family: "PT Sans", "Trebuchet MS", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

/* =============================================================================
 *   HTML Elements
 * ========================================================================== */

h1, h2, h3, h4, h5, h6 {
  letter-spacing: -1px;
  margin: 0;
}

h1 {
  font-weight: normal;
  font-style: normal;
  line-height: 140%;
}

h2 {
  font-weight: normal;
  font-style: normal;
  line-height: 130%;
}

.block h2, #footer h2 {
  font-size: 1.8em;	/* TITANIA Mod Set this for all views to 1.8em was not here before  */
  font-weight: 300;
  font-style: normal;
  line-height: 130%;
}

h3 {
  font-weight: normal;
  font-style: normal;
  line-height: 130%;
}

h4 {
  font-weight: normal;
  font-style: normal;
  line-height: 125%;
}

h5 {
  font-weight: bold;
  font-style: bold;
  line-height: 120%;
}

h6 {
  font-weight: bold;
  font-style: bold;
  line-height: 110%;
}

h1 a, h2 a, h3 a, h4 a, h5 a {
  font-weight: inherit;
  text-decoration: none;
}
p {  padding: 0 20px 0 0; } /*  TITANIA MOD TO ADD SPACE AFTER BLOCKS OF TEXT  */

b,
strong {}

i,
em {}

dfn {}

sup {}

sub {}

del {
  text-decoration: line-through;
}

ins {}

blockquote {}

cite {}

q {}

address {}

ul {}

ol {}

.block-system-main ul, .block-system-main ol {
  margin: 1em 0;
  padding: 0 0 0.25em 2.5em;
}

li {}

dl {}

dd {}

dt {}

abbr {}

acronym {}

hr {
  border: solid #DDD;
  clear: both;
  margin: 10px 0 30px;
  height: 0;
  border-width: 1px 0 0;
}

pre,
code,
tt,
samp,
kbd,
var {
  white-space: pre;
  background-color: #ededed;
  border-bottom: 1px solid #d9d9d9;
  border-top: 1px solid #d9d9d9;
  display: block;
  margin: 5px 0;
  padding: 5px;
  line-height: 125%;
  overflow: hidden;
  font-family: Consolas, "Andale Mono WT","Andale Mono","Lucida Console","Lucida Sans Typewriter","DejaVu Sans Mono","Bitstream Vera Sans Mono","Liberation Mono","Nimbus Mono L"Monaco, 'Courier New', Courier, monospace, sans-serif;
}


/* =============================================================================
 *   Wrappers
 * ========================================================================== */

/*
 * Page wrapper, includes the .container class which sets the overall page or section width
 * Main wrapper in page.tpl.php, the .container class sets the width of the page, do not add width to it!
 */
#page {}
#page .container {}

/*
 * Wraps all header elements - branding and .region-header
 */
#header {
 clear: both;
  position: relative;
 /*  margin-top: 16px;  TITANIA MOD Make green bar touch logo image  */
}

#header .inner {
  padding-top: 15px;
  padding-bottom: 20px;
}

/*
 * Wraps the sidebars the content column
 */
#columns {}

/*
 * Main content column wrapper
 */
#content-column {

}

/*
 * Wraps the main-content-header, the content region and feed-icons. Use this wrapper to style the entire main content column
 */
#main-content {
  margin-bottom: 20px;
}

#main-content a {
  text-decoration: none; /* TITANIA MOD: Changed from underline for links to none */
}

#main-content a:hover {
  text-decoration: none;
}

#main-content h1 a, #main-content h2 a, #main-content h3 a, #main-content h4 a, #main-content h5 a {
  text-decoration: none;
}

/*
 * Wraps the content region, avoid applying styles to this wrapper, its used mainly for position and invisible gutters and can be problematic to style
 */
#content {}

/*
 * Footer wrapper
 */
#footer {
  clear: both;
  padding: 20px 0 0 0;
  border-top: 0px solid #d6d6d6;
  font-size: .9em;
}

#footer .block {
    font-size: 0.85em;
    line-height: 1em;
    text-align: left;
    color: #444444;
    margin-bottom: 10px }

#footer .block-title { text-align: left; }

/**
 * SEGD Desktop Footer: Style Overrides
 */
@media (min-width: 768px) {
  #footer .block {
    padding: 0.5em 4em 0;
  }
}


/*       ------TITANIA MOD: Changed font size from 0.75 and margin bottom from 20px------      */
/*
 * Panels may need additional margin wrangling when in the $content region
 */
#content .panel-display {}

/*
 * Full Width Wrappers
 * These are used in the optional page--full-width-wrappers.tpl.php template.
 * All have internal .container classes. In the full width wrapper template the
 * .container classes set the width or max-width of the contained element - you
 * can style this but never add any width/margin/padding/borders etc to .container
 */
/*
 * Wraps #page
 */
#page-wrapper {}
#page-wrapper .container {}

/*
 * Wraps the leaderboard
 */
#leaderboard-wrapper {}
#leaderboard-wrapper .container {}

/*
 * Wraps the header
 */
#header-wrapper {
  /* Debug styles, is this working */
  background: rgba(255, 192, 203, 0.5);
}
#header-wrapper .container {}

/*
 * Wraps the nav elements
 */
#nav-wrapper {}
#nav-wrapper .container {}

/*
 * Wraps breadcrumb
 */
#breadcrumb-wrapper {}
#breadcrumb-wrapper .container {}

/*
 * Wraps messages and help
 */
#messages-help-wrapper {}
#messages-help-wrapper .container {}

/*
 * Wraps the secondary content/preface region
 */
#secondary-content-wrapper {}
#secondary-content-wrapper .container {}

/*
 * Wraps the main content column
 */
#content-wrapper {}
#content-wrapper .container {}

/*
 * Wraps the tertiary content/postfix region
 */
#tertiary-content-wrapper {}
#tertiary-content-wrapper .container {}

/*
 * Footer wrapper
 */
#footer-wrapper {
  /* Debug styles, is this working? */
  background: rgba(255, 192, 203, 0.5);
}
#footer-wrapper .container {}


/* =============================================================================
 *   Branding
 * ========================================================================== */

/*
 * Wraps all the branding elements, logo, name and slogan
 */
#branding {}

/*
 * Logo
 */

#logo {
  float: left;
  padding: 0 0px;
}  /* TITANIA MOD: Changed padding (second) from 20 to 0 to butt the header image up against the margin  */

#logo img {
  vertical-align: bottom;
}

/*
 * Wrapper for the site name and slogan (hgroup)
 */
#name-and-slogan {}

/*
 * Site name (h1)
 */
#site-name {
  margin: 0;
  padding: 0;
  font-size: 55px;
  line-height: 55px;
  letter-spacing: -1px;
}

#site-name a {
  margin: 0;
  padding: 0;
  line-height: 55px;
  text-decoration: none;
  font-weight: bold;
  letter-spacing: -2px;
  text-shadow: 0px 1px 0px #FFF;
}

#site-name a:link,
#site-name a:visited {
  text-decoration: none;
}

#site-name a:hover,
#site-name a:focus {
  text-decoration: underline;
  color: #3253ad;
}

/*
 * Site slogan (h2)
 */
#site-slogan {
  margin: 0;
  padding: 0;
  font-size: 22px;
  line-height: 28px;
  cletter-spacing: -1px;
}

/* =============================================================================
 *   Page content header
 * ========================================================================== */

/*
 * Main content header wraps the page title, tabs and actions links
 */
#main-content-header {}

/*
 * The main page title (h1)
 */
#page-title {  margin: 0;  background: #40a4e5;   color: #ffffff;
  padding: 4px 0 4px 12px;    margin-bottom: 12px; }
/*    TITANIA MOD: Added this styling for the main article Heading block color       */

/* =============================================================================
 *   Misc Global Styles
 * ========================================================================== */

/*
 * Feed icons
 */
.feed-icon {}

/*
 * 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
 */
.more-link { color; #40a4e5 }

/*
 * Item lists
 */
.item-list ul li {
  margin: 0;
  padding: 0.2em 0.5em 0 0;
}

/*
 * Generic styles for links. See the ul.links declaration in node and comment stylesheets
 */
ul.links {
  margin: 0;
  padding: 0;
  font-size: 0.77em;
  color: #666666;
}

ul.links.inline {
  display: block;
}

ul.links.inline li {
  padding: 0 5px 0 0;
  margin: 0 5px 0 0;
  border-right: 1px solid #666666;
}

ul.links.inline li.last {
  border: none;
}

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


/* =============================================================================
 *   Regions
 * ========================================================================== */

/*
 * Standard region wrapper, don't add width to any regions, you will bork the layout - no margin, padding or borders etc
 */
.region {}

/*
 * Regions have an inner div - perfect for adding margin, padding or borders
 */
.region-inner {}

/*
 * Regions can be nested, such as when using Panels
 */
.region-inner .region-inner {}


/*      TITANIA MOD to shift the search box up right next to the Branding box      */

/*
 * Generally used to output Drupals help block, if the help module is enabled
 */
.region-help {
  border: 1px solid #d3d7d9;
  padding: 20px;
  margin: 20px 0;
}

/*
 * Secondary content
 */
.region-secondary-content {}

/*
 * Sits above the main content header, like a content-top region
 */
.region-highlighted {
  padding: 20px 0;
}

/*
 * Front page mobile styles
 */
@media (max-width: 768px) {
  .front .views-field-field-content-image,
  .front .views-field-field-up-coming-events-banner {
    text-align: center;
  }
}

/*
 * Sits below the main content, like a content-bottom region
 */
.region-content-aside {}

/*
 * Sidebars - targets both
 */
.sidebar {}

@media (max-width: 768px) {
  .sidebar .views-field-field-content-image {
    text-align: center;
  }
}

/*
 * First sidebar
 */
.region-sidebar-first {}

/*
 * Second sidebar
 */
.region-sidebar-second { background: #f2f2f2; }   /*   TITANIA MOD: Added background color to the righthand column  */

/*
 * Tertiary content
 */
.region-tertiary-content {}

.region-tertiary-content .block {
  margin-left: 10px;
  margin-right: 10px;
  padding: 10px 10px 20px 10px;
  background-color: #f2f2f2;
  border: 1px solid #dcdcdc;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  text-shadow: #fff 1px 1px 0;
  box-shadow: 1px 1px 0 #fff inset, -1px -1px 0 #fff inset;
  -moz-box-shadow: 1px 1px 0 #fff inset, -1px -1px 0 #fff inset;
  -webkit-box-shadow: 1px 1px 0 #fff inset, -1px -1px 0 #fff inset;
}

/*
 * Footer region
 */
.region-footer { background: #f2f2f2; }

@media (max-width: 768px) {
  .region-footer {
    padding: 1rem;
  }
}


/* =============================================================================
 *   Links
 * ========================================================================== */

a {
  text-decoration: none;
  margin-right: 6px;     /* TITANIAGD MOD: added this to space the 32px new social icons   */
}

a:link,
a:visited {}

a:active,
a.active {}

a:hover,
a:focus {
  text-decoration: none;
}

/*      TITANIA MOD text decoration changed from underline to none      */


/* =============================================================================
 *   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"]
 */
.nav {
  clear: both;
  margin: 10px 0;
}

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

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

.nav li a,
.nav ul.menu li a {
  display: block;
  white-space: nowrap;
}

.nav li a:visited,
.nav ul.menu li a:visited {}

.nav li a:hover,
.nav li a:focus,
.nav ul.menu li a:hover,
.nav ul.menu li a:focus {}

.nav .block {
  margin-bottom: 0;
}

#menu-bar {
  margin-bottom: 20px;
  clear: both;
}

#menu-bar ul,
#menu-bar ul li {
  float: left;
  margin: 0;
  padding: 0;
}

/*  TITANIA MOD:  Menu bar adjusted from 100% width of page  */

#menu-bar ul {
  width: 100%;
}

#menu-bar ul,
#menu-bar ul li:hover li a { /*   TITANIA: Removed all Gradients (ading width 6em here changes it to a vertical menu instead of horizontal  */ }

#menu-bar ul ul {  max-width: 6em; }

#menu-bar .block-menu ul.menu ul {  display: none;  width: 6em; }

#menu-bar ul li {
  list-style:none;
  background-image: none;
  background-color: #ffffff;
  min-width: 6em;
  margin-right: 2px;
}    /*     TITANIA Menu Bar Background White and dropdown width. This changed the drop down to side by side 6em    */

#menu-bar ul li.right {
  float: right;
}

#menu-bar ul li a {
  padding: 12px 12px 12px 4px;
  text-decoration: none;
  background-image: none;
  display: block;
  float: left;
  font-weight: bold;
  text-shadow: 1px 1px 0px #fff;
  outline:none;
  border-left: none;
  border-top: medium solid #929497; /* TITANIA MOD This sets the menu bar line above the words */
  min-width: 80px;
  width: auto;
}

#menu-bar ul li:hover > a,
#menu-bar ul li > a:hover,
#menu-bar ul li li:hover a,
#menu-bar ul li li a:hover { color: #545454; background: #f1f1f1; }

#menu-bar a.sf-expanded {
  margin-bottom: 20px;
  display: inline-block;
}

#menu-bar ul.sf-hidden {
  display: none !important;
}

#menu-bar ul.sf-expanded {
  display: block !important;
}

/* TITANIA MOD to add the color bar above the menu items and remove all gradients */
#menu-bar ul li:hover li a {
  color: #595959;
  font-weight: normal;
  border-top: medium solid #40a4e5; }

#menu-bar ul li.active a, #menu-bar ul li a.active {
  color: #333;
  border-top: medium solid #40a4e5;
  background: #fff;
  text-shadow: 0px 0px 0px #fff;
}

/* CHANGES TO MENU TO CORRECT SHADOW AND MAKE DROP DOWN VERTICAL */

.nav .sf-menu li > ul { min-width: 6em !important; }

div.sf-accordion-toggle.sf-style-default > a {
  background: white;
  border: 0;
  position: relative;
  display: inline-block;
}

div.sf-accordion-toggle.sf-style-default > a:before {
  position: absolute;
  top: 0;
  content: '';
  width: 2rem;
  height: .075rem;
  -webkit-box-shadow: -.85rem 1.625rem 0 0 black, -.85rem 2.125rem 0 0 black, -.85rem 2.625rem 0 0 black;
  -moz-box-shadow: -.85rem 1.625rem 0 0 black, -.85rem 2.125rem 0 0 black, -.85rem 2.625rem 0 0 black;
  box-shadow: -.85rem 1.625rem 0 0 black, -.85rem 2.125rem 0 0 black, -.85rem 2.625rem 0 0 black;
}

div.sf-accordion-toggle.sf-style-default > a span {
  color: transparent;
  text-indent: -999999px;
  font-size: 0;
}

div.sf-accordion-toggle.sf-style-default a,
div.sf-accordion-toggle.sf-style-default a:focus,
div.sf-accordion-toggle.sf-style-default a:link,
div.sf-accordion-toggle.sf-style-default a:visited,
div.sf-accordion-toggle.sf-style-default a.sf-expanded {
  background-color: transparent !important;
  color: transparent !important;
}

/**
 * SEGD Mobile Header: Style Overrides
 */
@media (max-width: 320px) {
  .region-header #block-search-form .container-inline > div.form-item {
    width: 60%;
  }
  .region-header #block-search-form .container-inline > div.form-actions {
    width: 40%;
  }
}
@media (min-width: 320px) and (max-width: 768px) {
  .region-header #block-search-form .container-inline > div.form-item {
    width: 65%;
  }

  .region-header #block-search-form .container-inline > div.form-actions {
    width: 35%;
  }
}
@media (max-width: 768px) {
  .region-header #block-search-form {
    text-align: right;
    width: 85%;
    float: right;
    position: relative;
    z-index: 999;
  }
  .region-header #block-search-form .container-inline {
    width: 100%;
  }
  .region-header #block-search-form .container-inline > div {
    display: inline-block;
    margin: 0;
    padding: 0;
    margin-left: -.25rem;
  }
  .region-header #block-search-form .container-inline > div.form-item input {
    -webkit-appearance: none;
    -webkit-border-radius: 0 !important;
    -moz-border-radius: 0 !important;
    border-radius: 0 !important;
    width: 90%;
    padding-left: 5%;
    padding-right: 5%;
  }
  .region-header #block-search-form .container-inline > div.form-actions input {
    -webkit-appearance: none;
    -webkit-border-radius: 0 !important;
    -moz-border-radius: 0 !important;
    border-radius: 0 !important;
    width: 90%;
    padding-left: 0;
    padding-right: 0;
    margin: 0 0 0 5%;
  }
  .block-superfish {
    margin-right: 10px !important;
    height: 0px;
  }
  #menu-bar {
    margin-top: 0;
    position: relative;
    top: -75px;
    margin-bottom: 0;
  }
  #menu-bar ul {
    max-width: 100%;
  }
  .nav .sf-menu li > ul {
    max-width: 100%;
    width: 100% !important;
  }
  #menu-bar ul, #menu-bar ul li, #menu-bar ul li a {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
    text-align: center;
  }
  #menu-bar ul ul {
    max-width: 100%;
    width: 100%;;
  }
  #menu-bar .block-menu ul.menu ul {
    max-width: 100%;
    width: 100%;
  }
}

/* =============================================================================
 *   Contextual links
 * ========================================================================== */

.contextual-links-wrapper {
  font-size: small !important;
}

ul.contextual-links {
  font-size: 0.923em;
}

.contextual-links-wrapper a {
  text-shadow: 0 0 0 !important;
}

/* =============================================================================
 *   Superfish
 * ========================================================================== */

/*      TITANIA MOD: I had to comment out lines 104-113 in the
home/profiles/openoutreach/libraries/superfish/css/superfish.css file to stop the shadows on
the roll over second level
.sf-menu.sf-navbar.sf-shadow ul ul {
    background: url("../images/shadow.png") no-repeat scroll right bottom rgba(0, 0, 0, 0);
    border-bottom-left-radius: 8px;
    border-top-right-radius: 0;
    padding: 0 8px 0 0 !important;
} */

ul.sf-menu {
  margin-bottom: 0;
}

ul.sf-menu a {
  border-left: 0;
  border-top: 0;
  text-decoration: none;
}

ul.sf-menu a:link,
ul.sf-menu a:visited {}

ul.sf-menu li {}

ul.sf-menu li:hover,
ul.sf-menu li.sfHover {
  outline: 0; }

ul.sf-menu a {}

ul.sf-menu a:focus,
ul.sf-menu a:hover,
ul.sf-menu a:active {
  outline: 0;
}

.sf-menu.sf-horizontal.sf-shadow ul, .sf-menu.sf-vertical.sf-shadow ul, .sf-menu.sf-navbar.sf-shadow ul ul {
  padding: 0 !important;
  overflow: hidden !important;
  -webkit-border-radius: 0 !important;
  -moz-border-radius: 0 !important;
  border-radius: 0 !important;
}

/*
 * Superfish blocks
 */
.block-superfish {
  margin-right: 0px;
}

.block-superfish .block-inner .content {}

.block-superfish ul {
  margin: 0 !important;
  padding: 0 !important;}

.block-superfish ul ul {}

.block-superfish ul ul ul { width: 1em; }

.block-superfish ul ul ul ul {}

.block-superfish li {
  margin: 0 !important;
  padding: 0 !important; }

/*
 * Vertical style
 */
.sf-vertical {}

.sf-vertical li {}

.sf-vertical li.last {}

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

/* =============================================================================
 *   Menus, usually blocks
 * ========================================================================== */

ul.menu {
  padding: 0;
  padding-left: 15px;
  margin: 0;
  list-style: none;
}

ul.menu ul {
  padding-left: 15px;
  margin:0 0 0 1.3em;
}

ul.menu ul ul {}

ul.menu ul ul ul {}

ul.menu li {
  margin: 0;
  list-style: none;
}

ul.menu li.collapsed,
ul.menu li.expanded,
ul.menu li.leaf {}

ul.menu li a {
  display: block;
  /* border-bottom: 1px solid #eee; TITANIA MOD this removed the line at the bottom of the menu  */
  padding: 8px 0px 8px 24px;
  line-height: 120%; width: 6em;  }

ul.menu li a:link,
ul.menu li a:visited {/* width: 6em; */}

ul.menu li a:active,
ul.menu li a.active {/* width: 6em;*/ }

ul.menu li a:hover,
ul.menu li a:focus {/*  width: 6em; */
/*  color:#333333;
  background: url(images/dark/arrow_bullet.png) no-repeat 10px; */
}

ul.menu li.active a,
ul.menu li.active-trail a { width: 6em; }

/*ul.menu li active { width: 6em; }*/

ul.menu li.first,
ul.menu li.last {/* width: 6em; */}

ul.menu ul li a {
  border:none;
  padding: 4px 0;
  font-size:13px;
  color:#0099cc; background:none; /* width: 6em; */
}

ul.menu ul li a:hover {
  color:#333333;
  background:none; /* width: 6em; */ }

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


/* =============================================================================
 *   Book navigation menu
 * ========================================================================== */

.book-navigation {}

.book-navigation .page-links {}

.book-navigation .page-previous {}

.book-navigation .page-next {}

.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 {
  padding:0;
}

#breadcrumb {
  margin-bottom: 10px;
  padding: 0px 3px 3px 8px;
  font-size: 0.92em;
  color: #999 !important;
/*  background-color: #f1f1f1;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  border: 1px solid #e9e9e9;
  text-shadow: 1px 1px 0px #fff; */
}

#breadcrumb a {
  color: #797979;
  margin-right: 6px;
  text-shadow: none;
  text-decoration:underline;
}

#breadcrumb .sep {
  margin-right: 6px;
}

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

#breadcrumb li.crumb-first {}

#breadcrumb li.crumb-last {}

#breadcrumb a {}

#breadcrumb a:link,
#breadcrumb a:visited {}

#breadcrumb a:active,
#breadcrumb a.active {}

#breadcrumb a:hover,
#breadcrumb a:focus {}


/* =============================================================================
 *   Pagers
 * ========================================================================== */

ul.pager {
  clear: both;
  margin: 0;
  text-align: center;
  font-size: 0.929em;
}

.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
 */
ul.pager li {}

ul.pager li a {}

ul.pager li a:link,
ul.pager li a:visited {}

ul.pager li a:active,
ul.pager li a.active {}

ul.pager li a:hover,
ul.pager li a:focus {}

ul.pager li.pager-item {}
ul.pager li.first {}
ul.pager li.last {}
ul.pager li.pager-current {}
ul.pager li.pager-first {}
ul.pager li.pager-previous {}
ul.pager li.pager-next {}
ul.pager li.pager-last {}


/* =============================================================================
 *   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: #fff;
  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);
  color: #fff;
  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)
 * ========================================================================== */
/*          ------TITANIA MOD TO CHANGE THE TAB MENU IN AWARDS------          */
#tasks {  margin-bottom: 5px; font-size: 0.72em; }

ul.primary {
  border-bottom-color: #ccc;
  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: #f5f5f5;
  border-color: #ccc;
  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: #eee;
  border-color: #ccc;
}

ul.primary li.active a,
ul.primary li.active a:hover,
ul.primary li.active a:focus {
  background-color: #fff;
  border-bottom-color: #fff;
}

ul.secondary {
  border-bottom: 1px solid #ccc;
  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 {}

ul.secondary li a:hover,
ul.secondary li a.active {
  border-bottom: none;
  text-decoration: none;
}
/*      TITANIA MOD: Removed the text decoration underline      */

/* =============================================================================
 *   Action links
 * ========================================================================== */

ul.action-links {
  margin: 10px 0 0;
  list-style: none;
}    /*    TITANIA Changed from 20 to move the action post blog in blog page    */

ul.action-links li {}


/* =============================================================================
 *  Field Styling
 * ========================================================================== */

/*
 * Wrapper for any field */
.field {}

/* * Above and inline classes are on the field wrapper */
.field-label-above {}

/* When labels are set to inline in field display settings the clearfix class is automatically added */
.field-label-inline {}

/* 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 { /* float: left; */ }   /* TITANIA MOD Try to change the right float to a left float */

.field-type-image .caption {}

.field-type-image .full-caption {}

.field-type-image .teaser-caption {}

/*
 * Taxonomy
 */
.field-type-taxonomy-term-reference {
  /* The same bottom margin as p, blockquote, ul, ol and dl */
  margin-bottom: 6em; } /*TITANIA Mod to provide space under the tags when there are multiple lines of tags */

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

/*
 * Text
 */
.field-type-text {}

/*
 * Long text
 */
.field-type-text-long {}

/*
 * Text with summary
 */
.field-type-text-with-summary {}

/*
 * File
 */
.field-type-file {}

/*
 * Number/Integer
 */
.field-type-number-integer {}

/*
 * Decimal
 */
.field-type-number-decimal {}

/*
 * Number float
 */
.field-type-number-float {}

/*
 * List
 */
.field-type-list-text {}

/*
 * List boolean
 */
.field-type-list-boolean {}

/*
 * List integer
 */
.field-type-list-integer {}

/*
 * List float
 */
.field-type-list-float {}

/*
 * Field types (Contrib)
 */
.field-type-datetime {}

.field-type-node-reference {}

.field-type-user-reference {}

/*
 * Named fields
 */
.field-name-body {}

.field-name-field-image { clear: both;
    float: right;
    margin-bottom: 12px;
    margin-left: 12px;
}  /* TITNIA MOD: Right align the images in the article Awards type */

.field-name-field-tags { padding: 8px; } /* TITANIA MOD TO DROP THE TAG TITLE DOWN  */

/*
 * Underscores in field name are replaced with dashes
 */
.field-name-field-FIELDNAME {}

/*
 * Image Alignment Theme Settings - included here so you can easily override
 */
/*
 * Float none setting
 */
.ia-n .field-type-image,
.iat-n .field-type-image {}

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

.field-type-taxonomy-term-reference .field-item {
  float: left;
  padding: 0 1em 0 0;
  white-space: nowrap;
}

/* =============================================================================
 *   Block Styling
 * ========================================================================== */

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

.block ol, .block ul {
  margin: 0; padding: 0 0 0.25em 1em;
}

/*
 * Inner wrapper for most blocks, good for margin, padding and borders, block_system_main does not have it
 */
.block-inner {}

/*
 * The first block in the region
 */
.block.first {}

/*
 * The last block in the region
 */
.block.last {}

/*
 * Zebra striping for each block in the region
 */
.block.odd {}

/*
 * Zebra striping for each block in the region
 */
.block.even {}

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

/*
 * Block content wrapper
 */
.block-content {}
@media (max-width: 768px) {
  .sidebar .block-content {
    margin-top: 1rem;
  }
}

/*
 * Match item list and block menu margin and padding
 */
.block-content {}

.block-content ul,
.block-content ol {
  padding: 0 0 0 15px;
}

.block-content li {
  margin: 0;
  padding: 0;
}

/*
 * Block for the latest news items in the first category
 */
#block-aggregator-category-1 {}

/*
 * Block for the latest news items in the first feed
 */
#block-aggregator-feed-1 {}

/*
 * First block created with "Add block" link
 */
#block-block-1 {}

/*
 * "Recent blog posts" block
 */
#block-blog-recent {}

/*
 * "Book navigation" block for the current book's table of contents
 */
#block-book-navigation {}

/*
 * "Recent comments" block
 */
#block-comment-recent {}

/*
 * "Active forum topics" block
 */
#block-forum-active {}

/*
 * "New forum topics" block
 */
#block-forum-new {}

/*
 * Language switcher block
 */
#block-locale-language {}

/*
 * Custom menu block
 */
#block-menu-menu-NAME {}

/*
 * "Recent content" block
 */
#block-node-recent {}

/*
 * "Syndicate" block for primary RSS feed; see also page.css's .feed-icon
 */
#block-node-syndicate {}

/*
 * "Most recent poll" block
 */
#block-poll-recent {}

/*
 * "Author information" block for the profile of the page's author
 */
#block-profile-author-information {}

/*
 * "Shortcuts" block
 */
#block-shortcut-shortcuts {}

/*
 * "Popular content" block
 */
#block-statistics-popular {}

/*
 * "Main menu" block
 */
#menu-bar {}

/*
 * "Management" block for Drupal management menu
 */
#block-system-management {}

/*
 * "Navigation" block for Drupal navigation menu
 */
#block-system-navigation {}

/*
 * "User menu" block for Drupal user menu
 */
#block-system-user-menu {}

/*
 * "System help" block
 */
#block-system-help {}

/*
 * "Main page content" block
 */
#block-system-main {}

/*
 * "Powered by Drupal" block
 */
#block-system-powered-by {}

/*
 * "User login form" block
 */
#block-user-login {}

/*
 * "Who's new" block for a list of the newest users
 */
#block-user-new {}

/*
 * "Who's online" block for a list of the online users
 */
#block-user-online {}


/* =============================================================================
 *   Node Styling
 * ========================================================================== */

.node {
  margin-bottom: 20px;
}

.node.node-promoted {}

.node.node-sticky {}

.node.node-by-viewer {}

.node.node-teaser {
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #d6d6d6;
}

.node.node-full {}

.node.odd {}

.node.even {}

.node .node-title {
  margin: 0;
}

.node .user-picture {}

.node .submitted {
  font-size: 11px;
  color: #666666;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.node .submitted .username {}

.node .submitted time {}

.node .node-content { font-size: 14px; } /*   TITANIAGD MOD; added a font size to reduce the font size on articles. */

.node .field-label {font-size: 14px; padding: 1px 10px 0px 0px; }  /*   TITANIAGD MOD; added to remove H2 wrapper and reduce size from 24 to 14  */

.node ul.links {}

.node ul.links li {}

.node ul.links li a {}

.node ul.links li.node-read-more a {}

.node ul.links li.comment-add a {}

.node ul.links li.comment-comments a {}

.node ul.links li.comment-new-comments a {}

.node ul.links li.blog-sernames-blog a {}

.node ul.links li.print-html a {}

.node ul.links li.print-email a {}

.node ul.links li.print-pdf a {}

.preview .node {}

/*
 * All nodes are given a node-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-my-custom-type" class.
 */
.node-page {}

.node-article {}

.node-book {}

.node-forum {}

.node-poll {}


/* =============================================================================
 *   Comment Styling - Comments, comment wrapper, comment form
 * ========================================================================== */

/*
 * Wrapper for the list of comments and its titles
 */
#comments {
  margin: 1.5em 0;
}

#comments h2 {}

#comments h2.comment-title {
  margin: 0;
}

#comments h2.comment-form {
  margin: 0;
}

/*
 * Wrapper for a single comment
 */
.comment {
  margin-bottom: 20px;
  display: table;
  vertical-align: top;
}

.comment.first {}

.comment.last {}

.comment.odd {}

.comment.even {}

.comment .user-picture {}

.comment .user-picture img {
  margin-left: 0;
}

.comment .comment-arrow {
  background: url(images/comment-arrow.gif) no-repeat 0 center transparent;
  border-left: 1px solid;
  border-right: 1px solid;
  height: 40px;
  margin-left: -36px;
  margin-top: 15px;
  position: absolute;
  width: 20px;
}

.comment .comment-text .comment-arrow {
  border-left: 1px solid #ffffff;
  border-right: 1px solid #ffffff;
}

.comment .comment-text {
  padding: 0 25px 10px 35px;
  display: table-cell;
  vertical-align: top;
  position: relative;
  width: 100%;
  border-left: 1px solid #d3d7d9;
}

.comment .attribution {
  display: table-cell;
  padding: 0 35px 0 0;
  vertical-align: top;
  overflow: hidden;
}

.comment .attribution img {
  margin: 0;
  border: 1px solid #d3d7d9;
}

.comment .attribution .username { white-space: nowrap; }

.comment .content {
  font-size: 0.929em;
  line-height: 1.6;
}

.comment .indented {
  margin-left: 40px;
}

.comment .submitted {}

.comment .submitted p {
  margin: 4px 0;
  font-size: 1.071em;
  line-height: 1.2;
}

.comment .submitted .comment-time {
  font-size: 0.786em;
}

.comment .submitted .comment-permalink {
  font-size: 0.786em;
  text-transform: lowercase;
}

.comment .submitted .username {}

.comment .submitted time {}

.comment .user-signature {}

.comment ul.links {}

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

/*
 * Comment states
 */
.comment-new {}

.comment-by-anonymous {}

.comment-by-node-author {}

.comment-by-viewer {}

.comment-title-hidden {}

.comment-with-picture {}

.comment-with-signature {}

.comment-unpublished {
  margin-right: 5px;
  padding: 5px 2px 5px 5px;
}

/*
 * Preview of the comment before submitting new or updated comment
 */
.comment-preview {}

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

/*
 * Nested comments are indented
 */

.indented {
  margin-left: 40px;
}


/* =============================================================================
 *   Forms
 * ========================================================================== */

/*
 * Wrapper for a form element (or group of form elements) and its label
 */
.form-item {
  margin-bottom: 1em;
  margin-top: -10px;
}
/* TITANIA MOD: changed from 2 to -10 px for the MESSAGES subscribe block */

.form-item input.error,
.form-item textarea.error,
.form-item select.error {
  border: 1px solid #c00;
}

.form-item label {
  font-weight: 700;
  font-size: 0.929em;
  margin-top: 20px;    /* SEGD Mod to space the Quantity label for products  */
}

.form-item label.option {}

.form-type-radio label, .form-type-checkbox label {
  margin-left: 4px;
}

.form-type-radio .description, .form-type-checkbox .description {
  margin-left: 2px;
}

.form-actions {
  padding-top: 10px;
}


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

.form-item .description {
  font-size: 0.85em;
}

.form-checkboxes .form-item,
.form-radios .form-item {}

/*
 * The submit button
 */
.form-submit {}

button,
input[type="submit"],
input[type="reset"],
input[type="button"] { /* TITANIA MOD Change the appearance of the Search block and button  */
  background: none repeat scroll 0 0 #000000;
  border: 1px solid #f4f4f4;
  color: #FFFFFF;
  margin-right: 4px;
  padding: 4px 1em 4px;
}

button:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover {
  /* IE10 */
/*  background-image: -ms-linear-gradient(top, #DBDBDB 0%, #F2F2F2 100%); */
  /* Mozilla Firefox */
/*  background-image: -moz-linear-gradient(top, #DBDBDB 0%, #F2F2F2 100%); */
  /* Opera */
/*  background-image: -o-linear-gradient(top, #DBDBDB 0%, #F2F2F2 100%); */
  /* Webkit (Safari/Chrome 10) */
/*  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #DBDBDB), color-stop(1, #F2F2F2)); */
  /* Webkit (Chrome 11+) */
/*  background-image: -webkit-linear-gradient(top, #DBDBDB 0%, #F2F2F2 100%); */
  /* Proposed W3C Markup */
/*  background-image: linear-gradient(top, #DBDBDB 0%, #F2F2F2 100%); */
  /* IE6-9 */
/*  filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#DBDBDB', endColorstr='#F2F2F2'); */
 /* -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
  -o-border-radius: 6px;
  -ms-border-radius: 6px;
  -khtml-border-radius: 6px;
  border-radius: 6px;
  -moz-box-shadow: inset 0 1px 0 0 white;
  -webkit-box-shadow: inset 0 1px 0 0 white;
  -o-box-shadow: inset 0 1px 0 0 white;
  box-shadow: inset 0 1px 0 0 white;
  cursor: pointer;
  background: #0099cc;*/
}
*/
button.full-width,
input[type="submit"].full-width,
input[type="reset"].full-width,
input[type="button"].full-width {
  width: 100%;
  padding-left: 0 !important;
  padding-right: 0 !important;
  text-align: center;
}

a.button, #main a.button  {
  text-decoration:none;
}

.button-alt,
.button,
.button.small,
.button.large,
.button.medium {
  background-image: none;
  padding: 8px 1em 9px 1em;
  margin: 0;
  display: inline-block;
  font-stretch: narrower;
  font-weight: bolder;
  text-align: center;
  text-decoration: none;
}

.button.left {
  float: left;
}

.button.right {
  float: right;
}

.button.center,.button.middle {
  margin: 0px auto;
  text-align: center;
  display: inherit;
}

.button-alt a,.button a,.button.small a {
  font-size: .9em;
  line-height: 14px;
  text-decoration:none;
}

.button.medium a {
  font-size: 1.2em;
  line-height: 20px;
}

.button.large a {
  font-size: 1.5em;
  line-height: 24px;
}

.container-inline div,
.container-inline label {
  display: inline;
}

fieldset {
  background: #ffffff;
  border: 1px solid #cccccc;
  margin-top: 10px;
  margin-bottom: 32px;
  padding: 0 0 10px;
  position: relative;
  top: 12px; /* Offsets the negative margin of legends */
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
}

.fieldset-wrapper {
  margin-top: 25px;
}

fieldset.collapsed {
  background: transparent;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
}

fieldset legend {
  background: #dbdbdb;
  border: 1px solid #ccc;
  border-bottom: none;
  display: block;
  height: 2em;
  left: -1px;
  line-height: 2;
  padding: 0;
  position: absolute;
  text-indent: 10px;
  text-shadow: 0 1px 0 #fff;
  top: -12px;
  width: 100%;
  -moz-border-radius-topleft: 4px;
  -webkit-border-top-left-radius: 4px;
  border-top-left-radius: 4px;
  -moz-border-radius-topright: 4px;
  -webkit-border-top-right-radius: 4px;
  border-top-right-radius: 4px;
}

fieldset.collapsed legend {
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
}

fieldset .fieldset-wrapper {
  padding: 0 10px;
}

fieldset .fieldset-description {
  margin-top: 5px;
  margin-bottom: 1em;
  line-height: 1.4;
  font-style: italic;
}

input {
  margin: 2px 2px;
  padding: 4px;
}  /*  TITANIA MOD spacing between the input and the search button. */

input, textarea {
   font-size: 0.929em;
}

textarea {
  line-height: 1.5;
}

textarea.form-textarea, select.form-select {
  padding: 4px;
}

input.form-text, textarea.form-textarea, select.form-select {
/*  background: none repeat scroll 0 0 #F2F2F2; */
 border: 1px solid #e2e2e2;
}

select, select.form-select, .chosen-container-single .chosen-single, .chosen-container-single.chosen-processed .chosen-single {
  border: 1px solid #e2e2e2;
  font-size: 15px;
  margin: 2px 2px;
  padding: 0 4px;
  background: #ffffff;
  border-radius: 0 !important;
  box-shadow: none;
  height: 29px;
  line-height: 29px;
  font-family: "PT Sans", "Trebuchet MS", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

select, select.form-select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
  background-color: #ffffff;
  background-image: url(../images/select-arrow.svg);
  -webkit-background-origin: content-box;
  background-origin: content-box;
  background-position: right .25rem center;
  background-repeat: no-repeat;
  -webkit-background-size: 7px 5px;
  background-size: 7px 5px;
 }

.chosen-container-single .chosen-drop, .chosen-container-single.chosen-processed .chosen-drop {
  border: 1px solid #e2e2e2;
  box-shadow: none;
  padding: 0;
  border-radius: 0;
  margin: 0 2px;
  width: calc(100% - 4px);
}
.chosen-container-single .chosen-single div b {
  background-position: 0 5px;
}

/* TITANIA MOD Change the background color of the Search box to grey */
.password-suggestions ul li {
  margin-left: 1.2em;
}

.node-form .vertical-tabs .fieldset-wrapper {
  margin-top: 0;
}

.filter-wrapper {
  -moz-border-radius-topright: 0;
  -moz-border-radius-topleft: 0;
  -webkit-border-top-left-radius: 0;
  -webkit-border-top-right-radius: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  position: inherit;
}

.filter-wrapper label {
  width: auto;
  float: none;
}

.filter-wrapper .form-select {
  min-width: 120px;
}

.filter-help a {
  font-size: 0.857em;
  padding: 2px 20px 0;
}

.filter-wrapper .form-item label {
  margin-right: 10px;
}

.filter-wrapper .form-item {
  padding: 0 0 0.5em 0.5em;
}

.filter-guidelines {
  padding: 0 1.5em 0 0.5em;
}

#edit-actions input {
  margin-right: 0.6em;
}

/*
 * Tips for Drupal's input formats
 */
.tips {}

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

/* Contact Form */

.contact-form #edit-name {
  width: 100%;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
}

.contact-form #edit-mail {
  width: 100%;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
}

.contact-form #edit-subject {
  width: 100%;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
}

.contact-form #edit-message {
  width: 100%;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -moz-border-radius-topleft: 4px;
  -moz-border-radius-topright: 4px;
  -webkit-border-top-left-radius: 4px;
  -webkit-border-top-right-radius: 4px;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}

.contact-form .resizable-textarea .grippie {
   width: 100%;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -moz-border-radius-bottomleft: 4px;
  -moz-border-radius-bottomright: 4px;
  -webkit-border-bottom-left-radius: 4px;
  -webkit-border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}


/* Animated throbber */

html.js input.form-autocomplete {
  background-position: 100% 4px;
}

html.js input.throbbing {
  background-position: 100% -16px;
}

/* Comment form */

.comment-form label {
  float: left;
  font-size: 0.929em;
}

.comment-form a.username {
  display: inline-block;
  margin: 20px 0 0 5px;
}

.comment-form .field-name-comment-body {
  margin-bottom: 30px;
}

.comment-form input, .comment-form .form-select {
  margin: 0;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
}

.comment-form .form-type-textarea label {
  float: none;
}

.comment-form .form-item,
.comment-form .form-select {
  margin-bottom: 10px;
  overflow: hidden;
}

.comment-form .form-type-checkbox label,
.comment-form .form-radios label {
  float: none;
  margin-top: 0;
}

.comment-form input.form-file {
  width: auto;
}

.comment-form .form-text {
  display: block;
  margin: 0;
  width: 100%;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.comment-form .form-item .description {
  font-size: 0.786em;
  line-height: 1.2;
  margin-left: 120px;
}

#content h2.comment-form {
  margin-bottom: 0.5em;
}

.comment-form .form-textarea {
  -moz-border-radius-topleft: 4px;
  -moz-border-radius-topright: 4px;
  -webkit-border-top-left-radius: 4px;
  -webkit-border-top-right-radius: 4px;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}

.comment-form fieldset.filter-wrapper .fieldset-wrapper,
.comment-form .text-format-wrapper .form-item {
  margin-top: 0;
  margin-bottom: 0;
}

.comment-form fieldset.filter-wrapper .tips {
  font-size: 0.786em;
}

.comment-form fieldset.filter-wrapper label {
  margin-top: 3px;
}

#comment-body-add-more-wrapper .form-type-textarea label {
  margin-bottom: 0.4em;
}

/* =============================================================================
 *   Tables
 * ========================================================================== */

table {
  margin: 0px 0;  /* TITANIA MOD: Changed the first value to 0 from 10 to reduce the spaces under all the titles to the tables in Views. */
  padding: 0;
  width: 100%;
  border: 0;
}

table table {
  font-size: 1em;
}

table.sticky-header {
  z-index: 10;
}

table,
thead,
tbody,
tr,
th,
td {
/* TITANIA MOD border-color: #ccc; */
}

table tr th {
  border-bottom: 1px solid white;
  border-top: 1px solid #dddddd;
  font-weight: normal;
  color: #707070;
  text-shadow: white 1px 1px 0;
  background: #dddddd url(images/gradient_small_trans.png) repeat-x 0 top;
}


table tr th, table tr th a, table tr th a:hover {
  font-weight: bold;
}

th {
  padding:5px 5px;  /* TITANIA MOD: Changed from 15 between images to 5  */
  border:none;
  vertical-align: top;
}

td {
  padding:15px;
  border:none;
}

table,
td,
th {
  vertical-align: top;   /* TITANIA MOD: changed alignment of images from middle to top  */
}

caption,
th,
td {
  font-size: 12px; /* TITANIA MOD: added a text size of 12 to reduce these from large text */
  text-align: left;
}

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

}

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

tbody {}

tbody tr {
  border-top: 0px solid #ccc;
}

tr.odd {
  background-color: #F4F4F4;
  border-bottom: 0px solid #EBEBEB;
  border-top: 0px solid white;
}

tr.info,
tr.even,
tr:nth-child(2n+2) {
 /* background-color: #F9F9F9;    TITANIA MOD: remove color of second rows of tables allows the default color to work on the second row as well  */
  border-bottom: 0px solid #EDEDED;
  border-top: 0px solid white;
}

tr.drag {}

tr.drag-previous {}

tr.odd td.active {
  background-color: #eee;
}

tr.even td.active {
  background-color: #ebebeb;
}

.lt-ie8 tr {}

.lt-ie8 tr.even,
.lt-ie8 tr.odd {}

.lt-ie8 tr.even th,
.lt-ie8 tr.even td,
.lt-ie8 tr.odd th,
.lt-ie8 tr.odd td {
}

/*
 * Forum tables
 * Core sets white-space to nowrap, which makes no sense
 */
#forum td {}

#forum td .created,
#forum td .posts,
#forum td .topics,
#forum td .last-reply,
#forum td .replies,
#forum td .pager {
  white-space: normal;
}


/* =============================================================================
 *   Messages
 * ========================================================================== */

/* Left and right margin are set by the global gutter width */
div.messages {
  margin-bottom: 10px;
  margin-top: 10px;
}

div.messages ul {
  margin-top: 0;
  margin-bottom: 0;
}

div.status {}

div.warning {}

tr.warning {}

div.error,
tr.error {}

.error {}

.warning {}

/*
 * Unpublished nodes
 */
.node-unpublished,
.comment-unpublished {}

.node-unpublished,
.comment-unpublished {}

.node-unpublished p.unpublished,
.comment-unpublished p.unpublished {
  color: pink;
  color: rgba(239, 170, 170, 0.4);
  font-family: Impact,"Arial Narrow",Helvetica,sans-serif;
  font-size: 75px;
  font-weight: bold;
  height: 0;
  line-height: 1.2;
  margin: 0;
  padding: 0;
  overflow: visible;
  text-align: center;
  text-transform: uppercase;
  word-wrap: break-word;
}

/*
 * Otherwise these elements will appear below the "Unpublished" text
 */
.lt-ie8 {}

.lt-ie8 .node-unpublished > *,
.lt-ie8 .comment-unpublished > * {
  position: relative;
}


/* =============================================================================
 *    Maintenance pages
 * ========================================================================== */

.maintenance-page {}
.maintenance-page .container {
  padding: 40px 0;
}

.maintenance-page #site-name,
.maintenance-page #page-title {
  margin: 0;
}

.db-offline {}

.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: #eee;
  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;
}

/* Other Overrides */

div.password-suggestions {
  border: 0;
}

.ui-widget-overlay {
  background: #222222;
  opacity: 0.7;
}

div.vertical-tabs .vertical-tabs-panes fieldset.vertical-tabs-pane {
  padding: 1em;
}

#forum .name {
  font-size: 1.083em;
}

#forum .description {
  font-size: 1em;
}


/*  ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++  */



/*  ********************              SEGD MODS                ************************  */



/*  ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++  */

/*  SEGD sidebar second background color is set on line 564  */

/*  Move the Search block to align with the second sidebar right edge  */
#block-search-form {
  position: inherit;
}

/*      ------LOGINTOBOGGAN BLOCKS------      */

#block-logintoboggan-logintoboggan-logged-in { float: right; padding: 12px 0 12px 0; margin-right: 4px; margin-top: -46px; border-top: medium solid #929497; }

#block-user-login { float: right; border-top: medium solid #929497; margin-right: 4px;
 padding: 12px 0; margin-top: -35px; }

 /*      ------Superfish Hidden Drop Down Menu Width------      */

/* Changes to the dropdown menu widths and shadows made in Outreach/Libraries/Superfish/CSS comment out lines 104-113
element.style {
    display: block;
    float: none;
    width: 1em;
} */

/* .service-links { padding: 20px 0 20px 0; } */

/*      ------HOME PAGE THEMING------       */

/*      ------Navigation Theming is on line 723, xxx ------       */

/*      ------Debut Highlight------      */

div.view-highlighted .views-slideshow-overlay { margin-right: 5px; }

/*      ------NODE HEADER BLOCK------      */

/*      ------MEMBER NEWS - home page------      */

.view-front-page-top-stories .view-content { font-size: 13px; margin-top: 12px; }
.view-front-page-top-stories .views-field-created { font-size: 11px; }
.view-front-page-top-stories .views-field-title { font-size: 0.8em; }

/*      ------NODE PANEL STYLES ------      */

.node--panel .panel-display { font-size: 14px; }

.node--panel .pane-node-field-tags h2 {
  font-size: 14px;
  font-weight: bold;
}

.node--panel .service-links li {
  display: inline-block;
  list-style: none;
}

.node--panel .service-links li a {
  font-size: 0;
}

.node--panel ul.links {
  font-size: 1em;
}

/*      ------NODE FEATURE ARTICLE------      */

.node-feature-article .field-name-field-content-image { float: right; padding: 0px 0px 20px 20px; }
.node-feature-article .field-label { padding: 40 0 8px 0; }
.node-feature-article .field-name-body { padding: 20px 0 0 0; }
.galleryformatter-greenarrows .gallery-thumbs .wrapper { margin-left: -45px; margin-right: 45px; }
.galleryformatter-greenarrows .gallery-thumbs .arrow { width: 134px; }
.galleryformatter-greenarrows .gallery-slides .panel-overlay .overlay-inner {
    color: #FFFFFF; font-size: 1.3em; font-weight: normal; padding: 10px; }
.galleryformatter * { color: #FFFFFF; }


/*      ------NODE BLOG------      */

.view-blog .views-field-field-content-image img .textwrap { float: right; margin-bottom: 15px; }
.view-blog .views-field-title { font-size: 2.4em; line-height: 1.2em; margin-top: 20px; margin-bottom: 10px; }
.view-blog .views-field-nothing { font-size: 11px; font-style: italic; }
.view-blog .views-field-created { font-size: 11px; font-style: italic; }
.view-blog .views-row { margin-bottom: 30px; }

#content-inner .ul {padding: 0 0 0 -40px; }

/*      ------NODE EDUCATION------      */

.node-education .field-name-field-content-image { float: right; padding: 0 0 8px 20px; }

/*      ------NODE COMMUNICATION + PLACE------      */

.node-article-research .field-name-field-communication-place { font-size: 1.1em; font-weight: bold;
margin-top: 20px; }

/*      ------VIEW EDUCATION-EGD TAXONOMY------      */

.education-egd-taxonomy { font-size: 0.9em; }
.education-feature-taxonomy { font-size: 0.9em; }

/*      ------Member News------                   */

.pane-member-news .block-title { font-size: 1.5em; margin-bottom: 18px; margin-top: 4px; }
.view-member-news .views-field-title { margin-top: 6px; margin bottom: 4px; }
.view-member-news .view-content { font-size: 0.8em; margin-top; 12px;}
.view-member-news .view-footer { font-size: 0.8em; margin-top:12px; }

/*      ------RECENT BLOG POSTS------             */

#block-views-blog-block-1 .views-field-title { font-size: 0.8em; font-weight: normal; line-height: 1.5em; }
#block-views-blog-block-1 .view-content { margin-top: 25px; }
#block-views-blog-block-1 .block-title { font-size: 1.5em; }

/*      ------RECENT BLOGS BY THE SAME AUTHOR------      */

#block-views-blog-block-2 .views-field-title { font-size: 0.8em; font-weight: normal; line-height: 1.5em; font-weight: 700; }
#block-views-blog-block-2 .view-content { margin-top: 25px; }
#block-views-blog-block-2 .block-title { font-size: 1.5em; }

/*      -------VIEW CHAPTER EVENTS------      */

.views-field-field-event-date { margin-bottom: 20px; font-size: 0.9em; }

/*      ------VIEW THE BUZZ------      */

.buzz-body { font-size: 13px; margin-bottom: -20px; }

/*      ------RECENT MEMBER NEWS------      */

.view-id-member_news .views-field-title { font-size: 1.7em; line-height: 1.2em; font-weight: 300; margin-bottom: 10px; }

/*      ------NEWS RELEASES------      */

.pane-news .block-title { font-size: 1.5em; }
.pane-news .views-field-title {  font-size: 0.8em; font-weight: normal; line-height: 1.5em; margin-top: 12px; }

/*      ------RECENT ARTICLES------                */

#block-views-article-block-1 .block-title { font-size: 1.2em; margin-top: 48px; }
#block-views-article-block-1 .views-field-title { font-size: 0.8em; }

/*      ------RECENT ARTICLES BY THE SAME AUTHOR------      */

#block-views-article-block-2 .views-field-title { font-size: 1em; font-weight: normal;  line-height: 1.5em; }
#block-views-article-block-2 .view-content { font-size: 0.8em; margin-top: 25px; }
#block-views-article-block-2 .block-title { font-size: 1.2em; }

/*      ------MEMBER CONTENT------      */

#block-menu-menu-member .block-title { padding: 4px 0 4px 10px; border: 4px solid #e74f37;
font-size: 1.2em; border-bottom: none; border-right: none; border-left: none; }
#block-menu-menu-member .block-title { font-size: 1.2em; color: #666666; margin-right: -10px; margin-left: -10px; }
#block-menu-menu-member .block-content {font-size: 0.8em; }

/*     This is an example of a View within a Mini Panel. Use the Pane, not block format!!      */

.pane-front-page-top-stories-panel-pane-2 { font-weight: normal; color: #fefef4; }
.pane-front-page-top-stories-panel-pane-3 .views-field-title {  font-size: 13px; font-weight: bold; }

.pane-blog h2 { margin-bottom: 16px; font-weight: bold; /* margin-top: -14px; */ }
.view-members-only { background: #e74f37; font-weight:normal; }

#mini-panel-front_page_upper_section div.view-display-id-panel_pane_2 .views-field-title { font-size: 100%; font-weight: bold; }
#mini-panel-front_page_upper_section div.view-display-id-panel_pane_3 .views-field-title { font-size: 100%; font-weight: bold; }

/*      ------VIEW  Awards Index------       */

#block-views-awards-index-block { margin: 4px; border-top: 4px solid f2b323; }
#block-views-awards-index-block .h2 { font-size: 0.6em; padding: 0 0 10px 0; }
#block-views-awards-index-block .field-content { font-size: 0.8em; padding: 0 0 8px 8px; margin-bottom: 80px; }
#block-views-awards-index-block h2 { padding: 10px 0 10px 0px; }

/*      ------VIEW Hightlighted Right------        */

#block-views-highlighted-right-block .block-content { margin-right: -10px; margin-left: -10px; padding: 0 0 0px 0; background: #ffffff; margin-bottom: 2px; }

/*      ------VIEW HIGHLIGHTED RIGHT SEGD EVENT PROMO------      */

#block-views-highlighted-right-block-9 { margin-right: -10px; margin-left: -10px; padding: 0 0 0px 0; background: #ffffff; margin-bottom: 10px; margin-top: -10px; }

/*      ------VIEW Highlighted Right 2------      */

/* #block-views-banner-right-block-2 { margin-right: -10px; margin-left: -10px; padding: 0 0 0px 0; background: #ffffff; margin-bottom: 2px; /*margin-top: -50px:*/ } */
#block-views-banner-right-block-2 .block-inner {margin-left:0; margin-right:0;}

/*      ------VIEW HIGHLIGHTED RIGHT SEGD EVENT PUSH PROMO------      */

#block-views-highlighted-right-block-11 { margin-right: -10px; margin-left: -10px; padding: 19px 0 0px 0; background: #ffffff; margin-bottom: 10px; margin-top: -10px; }

/*      ------VIEW HIGHLIGHTED RIGHT BANNER XPLORE HOME------      */

#block-views-highlighted-right-block-12 { margin-right: -10px; margin-left: -10px; padding: 0 0 0px 0; background: #ffffff; margin-bottom: 10px; margin-top: -10px; }

/*      ------VIEW HIGHLIGHTED RIGHT BANNER XPLORE DIGITAL------      */

#block-views-highlighted-right-block-13 { margin-right: -10px; margin-left: -10px; padding: 0 0 0px 0; background: #ffffff; margin-bottom: 10px; margin-top: -10px; }

/*      ------VIEW BANNER HOME------      */

#block-views-banner-right-block .views-field-field-content-image { margin-top: 57px; background: #ffffff; }

/*      ------VIEW BANNER IMG - XPLORE CORPORATE------      */

#block-views-banner-right-block-4 .block-inner {margin-left:0; margin-right:0;}

/*      ------VIEW BANNER 3A - XPLORE EXHIBITION------      */

#block-views-banner-right-block-5 .block-inner {margin-left:0; margin-right:0;}

/*      ------VIEW BANNER 3A - XPLORE PLACEMAKING------      */

#block-views-banner-right-block-6 .block-inner {margin-left:0; margin-right:0;}

/*      ------VIEW BANNER 3A - XPLORE WAYFINDING------      */

#block-views-banner-right-block-7 .block-inner {margin-left:0; margin-right:0;}

/*      ------VIEW BANNER DAKTRONICS DIGITAL SIGNAGE AND DIGITAL TECHNOLOGY------      */

#block-views-banner-right-block-8 .block-inner {margin-left:0; margin-right:0;}

/*      ------VIEW BANNER REALITY------      */

#block-views-banner-right-block-15 .block-inner {margin-left:0; margin-right:0;}

/*      ------VIEW DYNAMIC BANNER------      */

#block-views-banner-right-block-16 .block-inner {margin-left:0; margin-right:0;}

/*   
/*      ------VIEW SKETCHBOOK BANNER PLACEMENT------      */

#block-views-banner-right-block-12 .block-inner {margin-left:0; margin-right:0;}

/*     ------              -----               ------
        ------      RIGHTHAND MENU BUTTONS      ------
        ------              -----               ------      */

/*      ------VIEW STORE MENU------      */

#block-views-store-shelves-block-11 .field-content{ margin-left: -10px; margin-top: -2px; margin-right: 10px; }

/*      ------VIEW SEGD Buttons: Join------      */

#block-views-highlighted-right-block-2 .block-content { margin-top: -22px; margin-right: -10px; margin-left: -10px; margin-bottom: -12px; padding: 0 0 12px 0; background: #ffffff; }

/*      ------VIEW SEGD Buttons: Events------      */

#block-views-highlighted-right-block-4 .block-content { margin-top: -21px; margin-right: -10px; margin-left: -10px; margin-bottom: -14px; padding: 0 0 12px 0; background: #ffffff; }

/*      ------VIEW SEGD Buttons: Chapter------      */

#block-views-highlighted-right-block-1 .block-content { margin-top: -20px; margin-right: -10px; margin-left: -10px; margin-bottom: -14px; padding: 0 0 12px 0; background: #ffffff; }

/*      ------VIEW SEGD Buttons: Awards------      */

#block-views-highlighted-right-block-3 .block-content { margin-top: -21px; margin-right: -10px; margin-left: -10px; margin-bottom: -12px; padding: 0 0 12px 0; background: #ffffff; }

/*      ------VIEW SEGD Buttons: Jobs------      */

#block-views-highlighted-right-block-5 .block-content { margin-top: -20px; margin-right: -10px; margin-left: -10px; margin-bottom: -12px; padding: 0 0 12px 0; background: #ffffff; }

/*      ------VIEW SEGD Buttons: Referrals------      */

#block-views-highlighted-right-block-6 .block-content { margin-top: -20px; margin-right: -10px; margin-left: -10px; margin-bottom: -11px; padding: 0 0 20px 0; background: #ffffff; }

/*      ------VIEW SEGD Buttons: Education------      */

#block-views-highlighted-right-block-7 .block-content { margin-top: -20px; margin-right: -10px; margin-left: -10px; margin-bottom: -12px; padding: 0 0 12px 0; background: #ffffff; }

/*      ------VIEW SEGD Buttons: eg Magazine------      */

#block-views-highlighted-right-block-8 .block-content { margin-top: -20px; margin-right: -10px; margin-left: -10px; margin-bottom: -14px; padding: 0 0 13px 0; background: #ffffff; }

/*      ------VIEW SEGD Buttons: CART------      */

#block-views-highlighted-right-block-10 .block-content { margin: 0 -10px -30px; padding: 0 0 13px 0; background: #ffffff; }

 /*      ------VIEW AWARDS TABS------      */

.pane-awards-tabs .views-field-title { padding: 0 0 20px 0; }

/*      ------View FIRMS SEARCH AWARDS BUTTON------      */

#block-views-firms-block-4 .block-content { margin-top: 0px; margin-right: -10px; margin-left: -10px; margin-bottom: 0px; padding: 0 0 12px 0; background: #ffffff; }

/*      ------VIEW RANDOMIZER------      */

#block-views-meet-segd-member-block-8 { margin-top: 12px; }
#block-views-meet-segd-member-block-8 { margin-bottom: -4px; }
#block-views-meet-segd-member-block-8 .block-title { color: #000000;  padding: 4px 0 4px 4px; border-top: 4px solid #e74f37; font-size: 1.2em; }

#block-views-firms-block-1 .block-title { border: none; }

#block-views-awards-teaser-block-2 .block-title { border: none; }
#block-views-awards-teaser-block-2 { margin-top: -25px; margin-bottom: -3px;}

#block-views-chapters-wall-block-21 {  margin-bottom: 0px; margin-top: 0px; }

/*      ------VIEW: PEOPLE------  */

#block-views-2015-home-block-3 .field-content { font-size: 0.8em; }
#block-views-2015-home-block-4 .field-content { margin-right: -10px; margin-left: -10px; }  /* PEOPLE HEADER */
#block-views-meet-segd-member-block { margin-top: 12px; margin-bottom: -5px; }
#block-views-meet-segd-member-block .block-title { padding: 16px 0 12px 4px; border-top: 4px solid #e74f37; font-size: 1.2em; }
#block-views-meet-segd-member-block .view-footer { font-size: 0.8em; }
#block-views-meet-segd-member-block .field-content { font-size: 0.8em }

/*      ------VIEW:   View Chapter Button TOp Right Hand Column for Chairs------      */

#block-views-og-chapter-blocks-block-1 .block-content { margin: -14px -10px -20px -10px;
 padding: 12px 0 12px 0; background: #ffffff; }

/*      ------VIEW:   HOME BANNER------      */

#block-views-banner-right-block .block-content { margin: -28px -10px -20px -10px;
 padding: 12px 0 12px 0; background: #ffffff; }

/*      ------VIEW:   EVENTS BANNER------      */

#block-views-banner-right-block-1 .block-content { margin: -22px -10px -20px -10px;
 padding: 12px 0 12px 0; background: #ffffff; }

/*      ------VIEW:   ABOUT BANNER------      */

#block-views-banner-right-block-2 .block-content { margin: -50px -10px -20px -10px;
 padding: 12px 0 12px 0; background: #ffffff; }

/*      ------VIEW:   BANNER DESIGN AWARDS------      */

#block-views-banner-right-block-10 .block-content { margin: -22px -10px -20px -10px;
 padding: 12px 0 12px 0; background: #ffffff; }

/*      ------VIEW:   BANNER SITEWIDE BANNER------      */

#block-views-banner-right-block-18 .block-content { margin: -22px -10px -20px -10px;
 padding: 12px 0 12px 0; background: #ffffff; }

/*      ------VIEW:  FIRMS------        */

#block-views-2015-home-block-6 .field-content { margin-right: -10px; margin-left: -10px; } 

 /* FIRMS HEADER */
#block-views-firms-block .block-title { padding: 16px 0 12px 4px;
border: 4px solid #40a4e5; font-size: 1.2em;
border-bottom: none; border-right: none; border-left: none; }
#block-views-firms-block { margin-bottom: -5px; }
#block-views-firms-block .view-footer { font-size: 0.8em; }
field-name-field-website .field-label {font-size: 1.1em; }

/*      ------VIEW:  FIRMS INDEX------      */

#pane-firms-pane-2 .tbody {margin-right: 10px; background: #f4f4f4; }

/*      ------VIEW:  AWARDS------      */

#block-views-2015-home-block-7 .field-content { margin-right: -10px; margin-left: -10px; }  /* PROJECTS HEADER */
#block-views-2015-home-block-8 .field-content { margin-right: -10px; margin-left: -10px; }  /* CONNECT HEADER */
#block-views-2015-home-block-12 .field-content { margin-right: -10px; margin-left: -10px; } /* MESSAGES HEADER */
#block-views-awards-teaser-block .block-title { padding: 16px 0 12px 4px;
border: 4px solid #564497; font-size: 1.2em; border-bottom: none;
border-right: none; border-left: none; }
#block-views-awards-teaser-block { margin-bottom: -5px; }
#block-views-awards-teaser-block .view-footer { font-size: 0.8em; }
#block-views-awards-teaser-block .p {margin-bottom: -15px; }

#block-views-gdap-design-block-1 .field-content {margin-left: -10px; }
/* ENTER GDAP AWARDS BANNER  */

/*      ------VIEW CHAPTER SOCIAL LINKS------      */

.pane-chapter-social-links .block-content { background: #f2f2f2; padding: 4px 2px 0px 6px;
margin-top: -26px; border: none; }
#views-field-field-facebook-icon .block {padding: 0px; }

/*      ------WEBFORM: PLEASE TELL US WHO YOU ARE------      */

#block-webform-client-block-499 .block-title { padding: 16px 0 12px 0px;
border-top: 4px solid #40A4E5; font-size: 1.2em; }
#block-webform-client-block-499 .font-item label { font-size: 0.6em; font-weight: 300; }

/*      ------PANE CHAPTER BLOGS------      */

.pane-chapter-blogs .views-field-title { font-size: 1.5em; padding: 12px 0px 20px 0; margin-top: 12px; margin-right: 4px; }
.pane-chapter-blogs .views-field-field-content-image { padding: 12px 0 0 0;  border-top: 2px solid #564497; }
.pane-chapter-blogs .field-content {padding: 0 8px 0 0; }

/*      ------VIMEO MEDIA------      */

#media-vimeo-video .field-name-field-tags { font-size: 1.2em; }

/*      ------VIEW: Follow------      */

#block-follow-site .block-title{padding: 4px 0 4px 4px;
border: 4px solid #f2b323; font-size: 1.2em; border-bottom: none;
border-right: none; border-left: none; }
#block-follow-site .a {  margin-right: 6px; }

/*      ------VIEW WALLS OF LARGE IMAGES EVENTS WALL + CHAPTERS WALL------      */

.pane-events-wall .block-content { background: #f2f2f2; padding: 10px 11px 5px 11px; overflow: hidden;}
.pane-events-wall .block-title  { background: #f2f2f2; padding: 4px 2px 0px 10px; }

.pane-chapters-wall .block-content { background: #f2f2f2; padding: 10px 10px 4px 10px; }
.pane-chapters-wall .block { margin-bottom: 0px; }
.pane-chapter-blog-banner .block-content { background: #f2f2f2; padding: 10px 10px 4px 10px; }

.pane-chapters-wall .block {margin right: -12px; }

/*      ------VIEW: WHAT IS SEGD------      */

#block-views-what-is-segd-block { padding: 0 0 0 0; background: #bdbdbd; }
#pane-views-what-is-segd { background: #0099cc; }

/*      ------VIEW Footer Contact------      */

/*      ------VIEW: Messages (Mailchimp)------      */

#block-mailchimp-lists-messages-weekly-newsmail .block-title { padding: 4px 0 4px 10px;
border: 4px solid #78787b; font-size: 1.2em; border-bottom: none; border-right: none;
border-left: none; }

/*   ------TITANIA MOD: Justify the main/teaser image in the Awards articles------  */

.field-name-field-main-image { clear: both; float: left; margin-top: 12px
    margin-bottom: 12px; margin-right: 16px; }


/*       ------FIRMS CONTENT TYPE------       */

.node-firms .field-name-field-content-image { float: none; padding: 0px 0px 20px 0px; }
.node-firms .field-name-field-firm-logo {  clear: both;
    float: left; padding: 6px 40px 20px 0; }
.node-firms .field-name-field-website { padding: 20px 10px 20px 0; }

/*     TITANIA MOD: This set no justification for the full width Image used in the Firms type content.
       .node .field-label for tags is on line 1672 changed from 24 to 14px */

/*  TITANIA MOD: Change the width of the GalleryFormater module to fit the content size for the awards */

#views-awards_slider .gallery-thumbs { width: 740px; }

/*      ------AWARDS------      */

.node-article-awards .field-name-field-award-type {font-size: 1.5em; font-weight: bold; }

/*      ------CHAPTER WALL------      */

#pane-views-chapters-wall-pane {margin-bottom: -20px; }

/*      ------CHAPTER NODE------      */

.node-chapters .field-name-field-content-image {float: right; padding: 0 0 10px 10px; }
.node-chapters


.field-type-taxonomy-term-reference { margin-bottom: 6em; }

/*      ------NODE CHAPTER EVENT------      */

.node-chapter-event .field-name-field-tags { visibility: hidden; }

/*      ------NODE PEOPLE------      */

.node-people .field-name-field-content-image { float: right; padding: 0px 20px 20px 20px; }

/*      ------NODE EVENTS------      */

.node-event .field-name-field-compelling-reason-to-purch {font-size: 1.5em; font-weight: bold; }
.node-event .field-name-field-event-date { font-size:1.3; }

#block-views-events-workshops-hero-image-block .block-content { margin-bottom: -36px; }
#block-views-events-workshops-hero-image-block .field-content { margin-bottom: -36px; }
#pane-events-workshop-header .field-content { margin-bottom: -16px; }
#pane-events-workshop-header .field-content { margin-bottom: -160px; }



#view-events-workshops-hero-image { margin-bottom: 60px; }
#block-views-events-workshops-hero-image-block-2 .field-content { margin-bottom: -40px; }


/*      ------FOOTER------       Main styling of the footer is on line 255-260
        Background color is on line 600      */

#mini-panel-footer_mini_panel .block-title { color: #444444; }
#view-footer-block-1 { background: #f2f2f2; }
#mini-panel-footer_mini_panel .block td { border color: #f2f2f2; }
#mini-panel-footer_mini_panel .block tbody { border-top: 0px solid #CCCCCC; }
#pane-footer-block .block-title { text-align: center; color: #444444; padding: opx 0px 10px 0px; }

/*      -------Footer Sponsor View------      */

#footer .block .view-footer.view-display-id-block_4 { text-align: right; }

.page-news .node .links,
.page-node-431 .node .links,
.page-node-176 .node .links { display: block; }

/*      ------Firms Teaser View adjust Image to right------      */

.node-firms-teaser {background: #0099cc; }

/*      ------BLOGGER CREATE BLOG FORM------      */

.form-blog-node-form .edit-title { padding: 15px 0 0 0; }

/*      ------CHAPTERS NODE FORM------      */

.chapters-node-form {background; #0099cc; }

/*      ------CHAPTER EVENT NODE FORM------       */

#block-chapter-event-node-form { background: #0099cc; }

/*      ------ LANDING PAGE: XLab2014 ------      */

#block-views-events-workshop-header-block-7 .field-content { margin-bottom: -20px; }

/*      ------      ------      ------
        ------       STORE      ------
        ------      ------      ------      */

.store-header { margin-bottom: -20px; }
/*.store-width-slideshow { margin-top: -18px; }*/
.store-membership-highlight {margin-top: -18px; }
.store-conference-highlight {margin-top: -18px; }
.store-workshop-highlight {margin-top: -18px; }
.store-webinar-highlight {margin-top: -18px; }
.store-courses-highlight {margin-top: -18px; }
.store-eg-highlight {margin-top: -18px; }

#block-views-store-shelves-block-10 .block { margin-bottom: -16px; }
#block-views-store-shelves-block-10 .field-content { margin-bottom: -16px; }
#block-views-store-shelves-block-10 .block-content { margin-bottom: -16px; }

#views-field .views-label-field-member-price { background: #0099cc; display: inline; }
#block-views-store-shelves-block .views-label-field-member-price { background: #0099cc; display: inline; }
#block-views-store-shelves-block .views-field-field-non-members-price { display: inline; }
#block-views-store-shelves-block .views-field-field-students { display: inline; }
#block-views-store-shelves-block .views-label-field-registration { display: inline; }
/**
*Search Styles setting up right justify and stack
*/
.view-2015-segd-search-firms .views-field-field-firm-logo { margin-left: 10px; float: right;
  width: 40%;
}
.view-2015-segd-search-people .views-field-field-content-image { margin-left: 10px; float: right;
  width: 40%;
}

/* TITANIA MODS
1. In Debut_Blog Module,line 16 changed float left images to no float for full width images
2. Lines 2466-2481 for the lines in tables. Changed the width from 1px to 0px */

/**
 * SEGD Videos
 */
.segd-video-permission-denied a {
  background: none repeat scroll 0 0 #000000;
  border: 1px solid #f4f4f4;
  color: #FFFFFF !important;
  margin-right: 4px;
  padding: 4px 1em 4px;
  font-weight: bold;
  padding: 5px 10px;
}

/**
 * SEGD Rollover Image Feature
 */
.rollover-feature {
  width: 100%;
  float: left;
  overflow: hidden;
  position: relative;
}
@media (min-width: 720px) {
  .rollover-feature {
    width: 95%;
  }
}
.rollover-feature--image {
  position: relative;
}
.rollover-feature--image img {
  width: 100%;
}
.rollover-feature--image__default {
  width: 100%;
}
.rollover-feature--image__hover {
  width: 100%;
  -webkit-transition: all .5s;
  -moz-transition: all .5s;
  -ms-transition: all .5s;
  -o-transition: all .5s;
  transition: all .5s;
  opacity: 0;
  position: absolute;
  top: 0;
}
.rollover-feature--image:hover .rollover-feature--image__hover {
  opacity: 1;
}
a .rollover-feature--image--caption, .rollover-feature--image--caption {
  color: #fff;
}
.rollover-feature--image--caption {
  -webkit-transition: all .5s;
  -moz-transition: all .5s;
  -ms-transition: all .5s;
  -o-transition: all .5s;
  transition: all .5s;
  opacity: 0;
  position: absolute;
  bottom: 5px;
  padding: .5em;
  background: rgba(0,0,0,.5);
  width: 95%;
}
.rollover-feature--image:hover .rollover-feature--image--caption {
  opacity: 1;
}
a .rollover-feature--title, .rollover-feature--title {
  color: #000;
  position: relative;
}

/**
 * Firms - View Style Overrides
 */
.view-firms.view-display-id-block .view-content a {
  display: block;
  width: 100%;
}
@media (max-width: 720px) {
  .view-firms.view-display-id-block .views-field-field-firm-logo {
    text-align: center;
  }
  .view-firms.view-display-id-block .views-field-field-firm-logo img {
    width: auto;
  }
}

/**
 * Meet SEGD Member - View Style Overrides
 */
.view-meet-segd-member.view-display-id-block .view-content a,
.view-meet-segd-member.view-display-id-block_2 .view-content a,
.view-meet-segd-member.view-display-id-block_17 .view-content td,
.view-meet-segd-member.view-display-id-block_17 .view-content img {
  display: block;
  width: 100%;
}
@media (max-width: 720px) {
  .view-meet-segd-member .view-header {
    font-size: 12px;
  }
  .view-meet-segd-member.view-display-id-block .rollover-feature--image,
  .view-meet-segd-member.view-display-id-block .rollover-feature--title,
  .view-meet-segd-member.view-display-id-block_13 .rollover-feature--image {
    text-align: center;
  }
  .view-meet-segd-member.view-display-id-block .rollover-feature--image img,
  .view-meet-segd-member.view-display-id-block_13 .rollover-feature--image img {
    width: auto;
  }
}
@media (min-width: 720px) {
  .view-meet-segd-member.view-display-id-block a .rollover-feature--title {
    max-width: 80px;
  }

  .view-meet-segd-member.view-display-id-block_1 a .rollover-feature--title,
  .view-meet-segd-member.view-display-id-block_2 a .rollover-feature--title,
  .view-meet-segd-member.view-display-id-block_6 a .rollover-feature--title,
  .view-meet-segd-member.view-display-id-block_10 a .rollover-feature--title {
    max-width: 120px;
  }

  .view-explore-all-.view-display-id-block_7 a .rollover-feature--title {
    max-width: 105px;
  }
}

/**
 * View Explore All - View Style Overrides
 */
@media (max-width: 720px) {
  .view-explore-all-.view-display-id-block_2 .views-field-body,
  .view-explore-all-.view-display-id-block_9 .views-row {
    font-size: 12px;
  }
  .view-explore-all- .more-link {
    clear: both;
  }
}

/**
 * View Explore - View Style Overrides
 */
@media (max-width: 720px) {
  .view-explore.view-display-id-block_1 .views-field-body {
    font-size: 12px;
  }
}

/**
 * Meet 2015 Home - View Style Overrides
 */
.view-2015-home.view-display-id-block_3 .views-field-field-content-image img {
  width: 100%;
}
.view-2015-home.view-display-id-block_3 .view-content a,
.view-2015-home.view-display-id-block_5 .view-content a {
  display: block;
  width: 100%;
}

@media (max-width: 720px) {
  .view-2015-home.view-display-id-block_5 .views-field-field-firm-logo {
    text-align: center;
  }
}

/**
 * Testimonials - View Style Overrides
 */
@media (max-width: 720px) {
  .view-testimonials.view-display-id-block .views-row {
    float: left;
    width: 50%;
  }
}

/**
 * Events Wall - View Style Overrides
 */
@media (max-width: 720px) {
  .view-events-wall .views-field-field-up-coming-events-banner {
    text-align: center;
  }
}

/**
 * Chapters - View Style Overrides
 */
@media (max-width: 720px) {
  .view-2015-chapter-blocks.view-display-id-block_3 {
    text-align: center;
  }
}

/**
 * Banner Right - View Style Overrides
 */
@media (max-width: 720px) {
  .view-banner-right.view-display-id-block_13 .views-field-field-content-image {
    text-align: center;
  }
}

/**
 * Xplore Page - View Style Overrides
 */
@media (max-width: 720px) {
  .view-explore .views-view-grid.cols-2 tr td.col-1 {
  }
  .view-explore .views-view-grid.cols-2 tr td.col-2 {
    text-align: right;
  }
  .view-explore .views-view-grid.cols-2 tr td a {
    margin: 0;
  }
  .view-explore .views-view-grid.cols-2 tr td img {
    max-width: 97.5%
  }
}

/**
 * 2015 Dynamic Galleries - View Style Overrides
 */
@media (max-width: 720px) {
  .view-2015-dynamic-galleries.view-display-id-block_1 .views-field-field-content-image {
    text-align: center;
  }
}

/**
 * 2015 SEGD Dymanic Awards - View Style Overrides
 */
@media (max-width: 720px) {
  .view-2015-segd-dymanic-awards.view-display-id-panel_pane_2 img {
    width: 95%;
  }
}

/**
 * View Footer - View Style Overrides
 */
@media (max-width: 720px) {
  .view-footer.view-display-id-block_4,
  .view-footer.view-display-id-mobile_sponsor_block {
    margin-bottom: 1rem;
  }

  .view-footer.view-display-id-block_4 .views-field-title,
  .view-footer.view-display-id-mobile_sponsor_block .views-field-title {
    text-align: center;
    margin: .25rem 0;
  }

  .view-footer.view-display-id-block_4 .views-field-field-content-image,
  .view-footer.view-display-id-mobile_sponsor_block .views-field-field-content-image {
    text-align: center;
  }
}

/**
 * Ensure that logos and images have white space for mobile;
 */
@media (max-width: 720px) {
  .view-meet-segd-member.view-display-id-block_1 .views-view-grid.cols-2 tbody tr td img,
  .view-meet-segd-member.view-display-id-block_2 .views-view-grid.cols-4 tbody tr td img,
  .view-meet-segd-member.view-display-id-block_6 .views-view-grid.cols-2 tbody tr td img,
  .view-meet-segd-member.view-display-id-block_8 .views-view-grid.cols-4 tbody tr td img,
  .view-meet-segd-member.view-display-id-block_10 .views-view-grid.cols-2 tbody tr td img,
  .view-meet-segd-member.view-display-id-block_11 .views-view-grid.cols-6 tbody tr td img,
  .view-meet-segd-member.view-display-id-block_14 .views-view-grid.cols-6 tbody tr td img,
  .view-meet-segd-member.view-display-id-block_18 .views-view-grid.cols-6 tbody tr td img,
  .view-meet-segd-member.view-display-id-block_19 .views-view-grid.cols-6 tbody tr td img,
  .view-meet-segd-member.view-display-id-block_20 .views-view-grid.cols-6 tbody tr td img,
  .view-conference-templates.view-display-id-block_4 .views-view-grid.cols-6 tbody tr td img,
  .view-workshop-templates.view-display-id-block_4 .views-view-grid.cols-6 tbody tr td img,
  .view-workshop-templates.view-display-id-block_7 .views-view-grid.cols-2 tbody tr td img,
  .view-awards-teaser.view-display-id-block .views-view-grid.cols-3 tbody tr td img,
  .view-awards-tabs .views-view-grid tbody tr td .views-field-field-main-image img,
  .view-testimonials.view-display-id-block .views-row img,
  .view-meet-segd-member.view-display-id-block_12 .views-view-grid.cols-4 tbody tr td img,
  .view-explore-all- .views-view-grid.cols-2 tbody tr td img,
  .view-explore-all- .views-view-grid.cols-4 tbody tr td img,
  .view-2015-chapter-blocks.view-display-id-block_2 .views-view-grid.cols-2 tbody tr td img,
  .view-2015-chapter-blocks.view-display-id-block_6 .views-view-grid.cols-2 tbody tr td img,
  .view-2015-chapter-blocks.view-display-id-block_7 .views-view-grid.cols-3 tbody tr td img,
  .view-2015-dynamic-galleries.view-display-id-block .views-view-grid.cols-4 tbody tr td img,
  .view-segdtalks-blocks.view-display-id-block_2 .views-view-grid.cols-2 tbody tr td img,
  .view-store-shelves.view-display-id-block_19 .views-view-grid.cols-6 tbody tr td img,
  .view-store-view-membership.view-display-id-block_4 .views-view-grid.cols-4 tbody tr td img,
  .view-2015-dynamic-galleries.view-display-id-block_3 .views-view-grid.cols-3 tbody tr td img {
    width: 95%;
  }
}

/**
 * SEGD View Grid: Default Styles
 */
.views-view-grid,
.views-view-grid tbody,
.views-view-grid tbody tr {
  width: 100%;
  display: block;
}
.views-view-grid:after {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
  height: 0;
}

.views-view-grid tbody tr {
  clear: both;
}

.views-view-grid tbody tr td {
  float: left;
}

/* Set Column Width */
.views-view-grid.cols-1 tbody tr td {
  width: 100%;
}
.views-view-grid.cols-2 tbody tr td {
  width: 50%;
}
.views-view-grid.cols-3 tbody tr td {
  width: 33.33%;
}
.views-view-grid.cols-4 tbody tr td {
  width: 25%;
}
.views-view-grid.cols-5 tbody tr td {
  width: 20%;
}
.views-view-grid.cols-6 tbody tr td {
  width: 16.66%;
}
.views-view-grid.cols-7 tbody tr td {
  width: 14.28%;
}
.views-view-grid.cols-8 tbody tr td {
  width: 12.5%;
}
.views-view-grid.cols-9 tbody tr td {
  width: 11.111%;
}
.views-view-grid.cols-10 tbody tr td {
  width: 10%;
}

/**
 * SEGD Views Grid: Specific Style Overrides
 */
@media (max-width: 720px) {
  .view-conference-templates.view-display-id-block_3 .views-view-grid.cols-4 tbody tr td,
  .view-2015-dynamic-galleries.view-display-id-block_3 .views-view-grid.cols-3 tbody tr td {
    width: 100%;
  }

  .view-meet-segd-member.view-display-id-block_1 .views-view-grid.cols-2 tbody tr td,
  .view-meet-segd-member.view-display-id-block_2 .views-view-grid.cols-4 tbody tr td,
  .view-meet-segd-member.view-display-id-block_6 .views-view-grid.cols-2 tbody tr td,
  .view-meet-segd-member.view-display-id-block_8 .views-view-grid.cols-4 tbody tr td,
  .view-meet-segd-member.view-display-id-block_10 .views-view-grid.cols-2 tbody tr td,
  .view-meet-segd-member.view-display-id-block_11 .views-view-grid.cols-6 tbody tr td,
  .view-meet-segd-member.view-display-id-block_14 .views-view-grid.cols-6 tbody tr td,
  .view-meet-segd-member.view-display-id-block_18 .views-view-grid.cols-6 tbody tr td,
  .view-meet-segd-member.view-display-id-block_19 .views-view-grid.cols-6 tbody tr td,
  .view-meet-segd-member.view-display-id-block_20 .views-view-grid.cols-6 tbody tr td,
  .view-conference-templates.view-display-id-block_4 .views-view-grid.cols-6 tbody tr td,
  .view-workshop-templates.view-display-id-block_4 .views-view-grid.cols-6 tbody tr td,
  .view-workshop-templates.view-display-id-block_7 .views-view-grid.cols-2 tbody tr td,
  .view-meet-segd-member.view-display-id-block_12 .views-view-grid.cols-4 tbody tr td,
  .view-2015-chapter-blocks.view-display-id-block_2 .views-view-grid.cols-2 tbody tr td,
  .view-2015-chapter-blocks.view-display-id-block_6 .views-view-grid.cols-2 tbody tr td,
  .view-explore-all- .views-view-grid.cols-4 tbody tr td,
  .view-explore-all- .views-view-grid.cols-6 tbody tr td,
  .view-store-shelves.view-display-id-block_19 .views-view-grid.cols-6 tbody tr td,
  .view-store-view-membership.view-display-id-block_4 .views-view-grid.cols-4 tbody tr td,
  .view-2015-dynamic-galleries.view-display-id-block .views-view-grid.cols-4 tbody tr td {
    width: 50%;
  }

  .view-meet-segd-member.view-display-id-block .views-view-grid.cols-3 tbody tr td,
  .view-firms.view-display-id-block .views-view-grid.cols-3 tbody tr td,
  .view-awards-teaser.view-display-id-block .views-view-grid.cols-3 tbody tr td {
    width: 33.333%;
  }

  .view-workshop-templates.view-display-id-block_4 .views-view-grid.cols-5 tbody tr td {
    width: 20%;
  }

  .view-2015-home.view-display-id-block_13 .views-view-grid.cols-6 tbody tr td {
    max-width: 16.66%;
  }

  .view-awards-tabs.view-display-id-block_2 .views-view-grid.cols-3 tbody tr td,
  .view-awards-tabs.view-display-id-block_3 .views-view-grid.cols-3 tbody tr td {
    width: auto;
  }
}
@media (max-width: 720px) and (orientation: landscape) {
  .view-meet-segd-member.view-display-id-block .views-view-grid.cols-3 tbody tr,
  .view-firms.view-display-id-block .views-view-grid.cols-3 tbody tr {
    width: 50%;
    float: left;
    clear: none;
  }
}

/**
 * SEGD Views Grid: Default Styles For Desktop
 */
@media (min-width: 720px) {
  .views-view-grid,
  .views-view-grid tbody,
  .views-view-grid tbody tr {
    width: auto;
    max-width: 100%;
  }
}

/**
 * SEGD Views Grid: Specific Style Overrides Desktop
 */
@media (min-width: 720px) {
  .views-view-grid tbody tr td .views-field-field-content-image,
  .views-view-grid tbody tr td .views-field-field-firm-logo,
  .views-view-grid tbody tr td .views-field-field-content-image img,
  .views-view-grid tbody tr td .views-field-field-firm-logo img,
  .views-view-grid tbody tr td .views-field-field-main-image img {
    width: auto;
  }

  .view-explore-all- .views-view-grid.cols-4 tbody tr td .views-field-field-main-image img,
  .view-explore-all- .views-view-grid.cols-6 tbody tr td .views-field-field-main-image img,
  .view-explore-all- .views-view-grid.cols-4 tbody tr td .views-field-field-firm-logo img,
  .view-explore-all- .views-view-grid.cols-6 tbody tr td .views-field-field-firm-logo img {
    width: 95%;
  }

  .view-conference-templates.view-display-id-block_3 .views-view-grid.cols-4 tbody tr td,
  .view-meet-segd-member.view-display-id-block_8 .views-view-grid.cols-4 tbody tr td {
    width: 25%;
  }

  .view-meet-segd-member.view-display-id-block_11 .views-view-grid.cols-6 tbody tr td,
  .view-meet-segd-member.view-display-id-block_14 .views-view-grid.cols-6 tbody tr td,
  .view-meet-segd-member.view-display-id-block_18 .views-view-grid.cols-6 tbody tr td,
  .view-meet-segd-member.view-display-id-block_19 .views-view-grid.cols-6 tbody tr td,
  .view-meet-segd-member.view-display-id-block_20 .views-view-grid.cols-6 tbody tr td {
    width: 16.66%;
  }

  .view-awards-tabs.view-display-id-block_2 .views-view-grid.cols-3 tbody tr td,
  .view-awards-tabs.view-display-id-block_3 .views-view-grid.cols-3 tbody tr td {
    width: auto;
  }
}

/**
 * SEGD Conference Page Styles
 */
.view-conference-templates img {
  width: 100%;
}

@media (max-width: 720px) {
  .page-segdconference .sidebar {
    display: none;
  }
}

@media (min-width: 720px) {
  .view-conference-templates.view-display-id-block_4 .views-view-grid.cols-6 tbody tr td .views-field-field-content-image img {
    width: 95%;
  }
}

/**
 * SEGD Workshop Page Styles
 */
.view-workshop-templates img {
  width: 100%;
}

@media (max-width: 720px) {
  .page-workshop .sidebar {
    display: none;
  }
}

@media (min-width: 720px) {
  .view-workshop-templates.view-display-id-block_4 .views-view-grid.cols-6 tbody tr td .views-field-field-content-image img {
    width: 95%;
  }
}

/**
 * SEGD Search Styles
 */
.segd-search--content .content-inner ul.facetapi-facetapi-checkbox-links,
.segd-search--users .content-inner ul.facetapi-facetapi-checkbox-links{
  list-style: none;
  padding: .5rem 0 0 0;
}
.segd-search--content .content-inner ul.facetapi-facetapi-checkbox-links li,
.segd-search--users .content-inner ul.facetapi-facetapi-checkbox-links li {
  list-style: none;
  padding: 0;
  text-transform: capitalize;
}
.segd-search--content .content-inner .view-header,
.segd-search--users .content-inner .view-header {
  padding-bottom: .5rem;
  font-size: 1.2em
}
.view-segd-search-content .views-field-field-content-image { margin-left: 10px; float: right;
  width: 40%;
}
.view-2015-segd-search-awards .views-field-field-main-image { margin-left: 10px; float: right;
  width: 40%;
}
.view-2015-segd-search-firms .views-field-field-firm-logo { margin-left: 10px; float: right;
  width: 40%;
}.view-2015-segd-search-people .views-field-field-content-image { margin-left: 10px; float: right;
  width: 40%;
}
.segd-search--content .content-inner .views-row,
.segd-search--users .content-inner .views-row {
  margin: .5rem 0;
  padding: .5rem 0;
  border-top: 1px solid #ECECEC;
  clear: both;
}
.segd-search--content .content-inner .views-exposed-widgets,
.segd-search--users .content-inner .views-exposed-widgets {
  margin-bottom: 0;
  padding-bottom: 2rem;
  border-bottom: 1px solid #ECECEC;
}
.segd-search--content .content-inner .views-widget-filter-search_api_views_fulltext_1,
.segd-search--users .content-inner .views-widget-filter-search_api_views_fulltext {
  width: 90%;
  padding: 0;
}
.segd-search--content .content-inner .views-widget-filter-search_api_views_fulltext_1 .views-widget,
.segd-search--users .content-inner .views-widget-filter-search_api_views_fulltext .views-widget {
  width: 98%;
}
.segd-search--content .content-inner .views-widget-filter-search_api_views_fulltext_1 input,
.segd-search--users .content-inner .views-widget-filter-search_api_views_fulltext input,
.segd-search--content .content-inner .views-submit-button input,
.segd-search--users .content-inner .views-submit-button input {
  width: 97.5%;
  padding: 5px 1.25%;
}
.segd-search--content .content-inner .views-submit-button,
.segd-search--users .content-inner .views-submit-button {
  width: 10%;
  padding: 0;
  margin-top: .125rem;
}

a.facetapi-limit-link {
  margin-top: .25rem;
  display: block;
}
.segd-search--content .block-title {
  font-size: 1.1em
}
.segd-search--content .views-field-title {font-size: 0.7em;
}
.segd-search--content .views-field-created { font-size: 0.8em;
}
.segd-search--content .facetapi-facetapi-checkbox-links {font-size: 0.9em;
}
.segd-search--content .views-field-body { font-size: 1em; 
}
.segd-search--content .view-header { font-size: 0.6em; 
}
.view-2015-segd-crm-id-block_4 .views-field-field-content-image { width: 100%;
}

/**
 * SEGD Views Slideshow Mobile Overrides
 */

@media (max-width: 768px) {
  .view-highlighted .views-field-nothing {
    display: none;
  }
  div.view-highlighted .views-slideshow-pager-fields {
    padding: 10px;
    bottom: 5px;
    top: inherit;
    font-size: 65%;
  }
}

/**
 * SEGD Awards Page Mobile Overrides
 */
@media (max-width: 768px) {
  .page-awards #tasks ul.tabs.primary {
    padding: 0;
  }
  .page-awards #tasks ul.tabs.primary li {
    float: left;
    width: 20%;
    margin: 0;
  }
  .page-awards #tasks ul.tabs.primary li a {
    text-align: center;
    width: 90%;
    margin: 0 5% 5% 5%;
    padding: 0;
  }
  .page-awards #tasks ul.tabs.primary li a.active {
    border-bottom: none;
  }
}


/**
 * SEGD User Login/Register/Password Mobile Overrides
 */
@media (max-width: 768px) {
  .not-logged-in #user-login input[type="text"],
  .not-logged-in #user-pass input[type="text"],
  .not-logged-in #user-register-form input[type="text"],
  .not-logged-in #user-login input[type="password"],
  .not-logged-in #user-pass input[type="password"],
  .not-logged-in #user-register-form input[type="password"] {
    width: 95%;
  }
  .not-logged-in.page-user ul.tabs.primary {
    border-bottom: none;
    padding: 0;
  }
  .not-logged-in.page-user ul.tabs.primary li {
    text-align: center;
    padding: 0;
    margin: 0;
    width: 100%;
    margin-top: 5px;
  }
  .not-logged-in.page-user ul.tabs.primary li a {
    border-bottom: 1px solid #bbb;
    width: 100%;
    padding: 5px 0;
  }
}

/**
 * SEGD Chapter Page's Mobile Overrides
 */
@media (max-width: 768px) {
  .page-chapters .block-system > .panel-display {
    display: flex;
    flex-flow: column;
  }
  .page-chapters .block-system > .panel-display > div:nth-child(1) {
    order: 1;
  }
  .page-chapters .block-system > .panel-display > div:nth-child(2) {
    order: 3;
  }
  .page-chapters .block-system > .panel-display > div:nth-child(3) {
    order: 2;
  }
}

/**
 * Unpublished node styles for nodes using panels
 */
.content--unpublished #block-system-main > .panel-display,
.content--unpublished #block-system-main > div > .panel-display {
  position: relative;
  overflow: hidden;
}

.content--unpublished #block-system-main > .panel-display:before,
.content--unpublished #block-system-main > div > .panel-display:before {
  content: 'UNPUBLISHED';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  color: rgba(247, 180, 180, 0.5);
  font-family: Impact,"Arial Narrow",Helvetica,sans-serif;
  font-size: 75px;
  font-weight: bold;
  height: 0;
  line-height: 1.2;
  margin: 0;
  padding: 0;
  overflow: visible;
  text-align: center;
  text-transform: uppercase;
  word-wrap: break-word;
  z-index: 9;
}

.content--unpublished #block-system-main > .panel-display:after,
.content--unpublished #block-system-main > div > .panel-display:after {
  background: #fff4f4;
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  content: '';
  top: 0;
  left: 0;
  z-index: -1;
  visibility: visible !important;
}

/* View: view-membership overrides on join page */
.page-join .view-membership.view-display-id-block_4 .views-field-body p {
  padding-right: 0;
}

/*
 * View: view-masonry-gallery defaults as seen on members/gallery
 */
.view-masonry-gallery .views-field-rendered-entity span {
  display: block;
  text-align: center;
}
.view-masonry-gallery .masonry-item {
  border: 0;
}
.view-masonry-gallery .masonry-item > div {
  padding: 5px;
}

/* View: view-masonry-gallery responsive styles */
.view-masonry-gallery .masonry-item {
  width: 100%;
  padding: 10px 0;
  margin: 10px 0;
}
.view-masonry-gallery .masonry-item > div {
  padding: 0 10px;
}
@media (min-width: 480px) {
  .view-masonry-gallery .masonry-item {
    width: 45%;
    padding: 1.25%;
    margin: 1.25%;
  }
  .view-masonry-gallery .masonry-item > div {
    padding: 1.25%;
  }
}
@media (min-width: 768px) {
  .view-masonry-gallery .masonry-item {
    width: 30.5%;
    padding: .625%;
    margin: .625%;
  }
  .view-masonry-gallery .masonry-item > div {
    padding: .625%;
  }
}
@media (min-width: 1024px) {
  .view-masonry-gallery .masonry-item {
    width: 22.5%;
    padding: .625%;
    margin: .625%;
  }
  .view-masonry-gallery .masonry-item > div {
    padding: .625%;
  }
}

a.icon--sharing-pinterest {
  background-image: url(images/pin-it.png);
  background-repeat: no-repeat;
  background-size: contain;
  height: calc(45px / 2);
  width: calc(90px / 2);
  display: block;
}

/* View: segd_toolbox block_30 styles */
.view-segd-toolbox--project-directory table.views-table th,
.view-segd-toolbox--project-directory table.views-table td {
  padding: 10px;
}
.view-segd-toolbox--project-directory table.views-table .views-field-field-main-image {
  min-width: 170px;
}
