/*
 * @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.
 */

html {
  background: #fff;
}


body {
  font-family: "Trebuchet MS", "Helvetica Neue", Arial, Helvetica, sans-serif;
  font-size: 87.5%;
  background: url(none) center top no-repeat #000000;
  background-size: contain;
}

.base {background-color: #5e2483 !important;} 
.red {background-color: #f3342f !important; color: #fff !important} 
.lime {background-color: #9ecc54 !important;} 
.purple {background-color: #373575 !important;} 
.sky-blue {background-color: #078bc8 !important;} 
.royal-blue {background-color: #0814b8 !important;} 
.cerise {background-color: #f231a0 !important;} 
.orange {background-color: #faa72d !important;} 
.teal {background-color: #0fb4ae !important;}
.dark-green {background-color: #067a49 !important;} 


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

.region-default-page-layout-page-title h1,
.region-default-page-layout-content-left h1,
.region-default-page-layout-content-left h2,
.region-default-page-layout-content-left h3,
.region-default-page-layout-content-left h4,
.region-default-page-layout-content-left h5,
.region-default-page-layout-content-left h6 {
  color: #5e2483;
}

h1 {}

h2 {}

h3 {}

h4 {}

h5 {}

h6 {}

p {}

b,
strong {}

i,
em {}

dfn {}

sup {}

sub {}

del {}

ins {}

blockquote {}

cite {}

q {}

address {}

ul {}

ol {}

li {}

dl {}

dd {}

dt {}

abbr {}

acronym {}

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


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

/*
 * Outer wrappers:
 * - #page-wrapper: body > #page-wrapper
 * - #page: body > #page-wrapper > #page
 * - .container: body > #page-wrapper > #page.container
 *
 * The .container class holds the page width value from theme settings.
 */
#leaderboard-wrapper,
#menu-wrapper,
#header-wrapper,
#page-title-wrapper,
#page-wrapper,
#footer-top-wrapper,
#footer-middle-wrapper,
#footer-bottom-wrapper {
  margin-left: auto;
  margin-right: auto;
  padding-left: 66px;
  padding-right: 66px;
}

#hero-wrapper {
  margin-left: auto;
  margin-right: auto;
}


#header-wrapper, #page-wrapper, #page-title-wrapper, #footer-top-wrapper {background-color: #ffffff;}
#menu-wrapper, #footer-middle-wrapper {background-color: #444444;}
#leaderboard-wrapper, #footer-bottom-wrapper {background-color: #000000;}

#page {}
#page .container {}

/*
 * Wraps all header elements - branding and .region-header
 */
#header {}

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

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

/*
 * 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 - you can style this but never
 * add any width/margin/padding/borders etc to .container
 */

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

/*
 * Wraps the header
 */
#header-wrapper {

}
#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 {
  padding: 10px 0;
}

#logo img {
  vertical-align: bottom;
}

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

/*
 * Site name (h1)
 */
#site-name {
  margin: 0;
}

#site-name a {}

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

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

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


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

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

/*
 * The main page title (h1)
 */
#page-title {
  margin: 0;
}


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

/*
 * Generic styles for links. See the ul.links declaration in node and comment
 * stylesheets
 */
ul.links {
  margin: 0;
  padding: 0;
}

ul.links.inline {
  display: block;
}

ul.links li {
  display: inline;
  list-style: none;
  padding: 0 10px 0 0;
}

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

/*
 * Attribution message and link
 */
.attribution {
  display: block;
  opacity: 0.65;
  padding: 1em 0;
  text-align: center;
}

.attribution a {
  text-decoration: none;
  color: inherit;
}

.attribution a:hover,
.attribution a:focus {
  text-decoration: underline;
}


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

/*
 * Header region, embedded in the #header
 */
.region-header {}

/*
 * Generally used to output Drupals help block, if the help module is enabled
 */
.region-help {}

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

/*
 * Sits above the main content header, like a content-top region
 */
.region-highlighted {}

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

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

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

/*
 * Second sidebar
 */
.region-sidebar-second {}

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

/*
 * Footer region
 */
.region-footer {}


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

a {
  color: #5e2483;
  text-decoration: none;
}

a:link,
a:visited {color: #5e2483;}

a:active,
a.active {}

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


/* =============================================================================
 *   Primary, Secondary and Menu Bar region menus
 * ========================================================================== */

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

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


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

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

ul.sf-menu a {
  border-left: 0;
  border-top: 0;
  padding: 0 10px;
  text-decoration: none;
  height: 2.5em;
  line-height: 2.5em;
}

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

/*
 * Superfish blocks
 */
.block-superfish {}

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

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

.block-superfish ul ul {}

.block-superfish ul ul ul {}

.block-superfish ul ul ul ul {}

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

/*
 * Vertical style
 */
.sf-vertical {
  width: 100%;
}

.sf-vertical li {
  width: 100%;
}

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




/* =============================================================================
 *   Menu Toggles
 * ========================================================================== */

.at-mt .at-menu-toggle,
.at-mt .at-menu-toggle ul,
.at-mt .at-menu-toggle ul.menu {
  margin-top: 0;
  margin-bottom: 0;
  padding: 0;
}

.at-mt .at-menu-toggle-button {
  margin: 0;
}

.at-mt .at-menu-toggle ul a {
  padding: 0 10px;
  white-space: nowrap;
}




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

ul.menu {
  padding-left: 15px;
}

ul.menu ul {
  padding-left: 15px;
}

ul.menu ul ul {}

ul.menu ul ul ul {}

ul.menu li {
  margin: 0;
}

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

ul.menu li a {}

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

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

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

ul.menu li.active a,
ul.menu li.active-trail a {}

ul.menu li.first,
ul.menu li.last {}

/* 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 the string is two chars */
  min-width: 2em;
  white-space: nowrap;
}

.book-navigation .menu {
  margin-left: 0;
}


/* =============================================================================
 *   Breadcrumbs
 * ========================================================================== */

#breadcrumb {
  margin: 10px 0;
}

/* If the label is set to show in theme settings the label class is added */
#breadcrumb .breadcrumb-label {
  font-size: 1em;
  display: inline;
  padding-right: 10px;
}

#breadcrumb .breadcrumb-label:after {
  content: ":";
}

#breadcrumb ol {
  margin: 0;
  padding: 0;
}

#breadcrumb .with-breadcrumb-label ol {
  display: inline;
}

#breadcrumb li {
  list-style: none;
  display: inline;
}

#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 {}

#breadcrumb .crumb-separator {}


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

ul.pager {
  clear: both;
  margin: 0;
  text-align: center;
}

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

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

ul.pager li.pager-current {
  font-weight: 700;
}

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

/*
 * Theme the various states of pager links
 */
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)
 * ========================================================================== */

#tasks {
  margin-bottom: 15px;
}

ul.primary {
  border-bottom-color: #ccc;
  margin: 0;
  padding: 10px 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: underline;
}


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

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

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

.field-label-inline .field-label {
  margin: 0;
}

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




/*
 * Field types (Core)
 */

/*
 * Image fields use the <figure> and <figcaption> elements from HTML5
 */
.field-type-image {}

.field-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: 1.5em;
}

.field-type-taxonomy-term-reference.field-label-inline .field-items {
  margin: 0;
  padding: 0;
}

.field-type-taxonomy-term-reference.field-label-inline .field-item {
  display: inline;
  list-style: none;
  padding: 0 10px 0 0;
}

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

.field-name-field-tags {}

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


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

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

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

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

/*
 * "Search form" block
 */
#block-search-form {}

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

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

/*
 * "Main menu" block
 */
#block-system-main-menu {}

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

.node.node-full {}

.node.odd {}

.node.even {}

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

.node .user-picture {}

.node .submitted {}

.node .submitted .username {}

.node .submitted time {}

.node .node-content {}

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

.comment.first {}

.comment.last {}

.comment.odd {}

.comment.even {}

.comment .user-picture {}

.comment .submitted {}

.comment .submitted p {}

.comment .submitted .username {}

.comment .submitted time {}

.comment .user-signature {}

.comment ul.links {}

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

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

.comment-by-anonymous {}

.comment-by-node-author {}

.comment-by-viewer {}

.comment-title-hidden {}

.comment-with-picture {}

.comment-with-signature {}

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

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

.form-item label {
  font-weight: 700;
}

.form-item label.option {}

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

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

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

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


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

table {
  margin: 10px 0;
  padding: 0;
  width: 100%;
}

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

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

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

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

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

}

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

tbody {}

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

tr.odd {
  background: #fff;
}

tr.info,
tr.even,
tr:nth-child(2n+2) {
  border-bottom: 0;
  background-color: #f5f5f5;
}

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



/* =============================================================================
 *   Default Page Layout
 * ========================================================================== */

/* LEADERBOARD */
.region-plain-box-leaderboard,
.region-plain-box-footer-middle {
  margin-bottom: 0px !important;
}

.region-default-page-layout-leaderboard .panel-pane {
  margin: 0;
}

.region-default-page-layout-leaderboard .panel-pane .block-inner .block-content {
  padding: 13px;
}

.region-default-page-layout-leaderboard .panel-pane .block-inner .block-content p {
  margin: 0;
  padding: 0;
  text-align: center;
}
/* END: LEADERBOARD */


/* MENU */
.region-default-page-layout-menu {
  position: relative;
}

.region-default-page-layout-menu .block {
  margin-bottom: 0px;
}
.region-default-page-layout-menu .block {
    margin-bottom: 0px!important;
}

.region-default-page-layout-menu .site-logo {
  position: absolute;
  top: 0px;
  z-index: 1;
}

.region-default-page-layout-menu .top-menu-block {
  height: 40px;
  padding-left: 229px !important;
  (-bracket-:hack;
    padding-left: 245px !important;
  );
  margin: 0;
  border: 0;
  background-color: #444444;
}

.region-default-page-layout-menu .top-menu-block .menu,
.region-default-page-layout-menu .pane-menu-menu-social-media-menu .menu {
  margin: 0px;
  padding: 0px;
}

.region-default-page-layout-menu .nice-menu-menu-top-menu  {
  z-index: 6;
}

.region-default-page-layout-menu .nice-menu-menu-top-menu ul {
  z-index: 6;
}

.region-default-page-layout-menu .nice-menu-menu-top-menu.nice-menu ul {
  top: 40px;
  left: -1px;
  border: 0;
  border-top: none;
  margin-right: 0;
}

.region-default-page-layout-menu .nice-menu-menu-top-menu.nice-menu li {
  border: none;
  border-top: 0;
  float: left;
  display: inline-block;
  padding: 5.5px 9.5px 5.5px 9.5px !important;
  background-color: #444444;
}

.region-default-page-layout-menu .nice-menu-menu-top-menu.nice-menu li.menuparent {
  padding: 5.5px 23.5px 5.5px 9.5px !important;
}

.region-default-page-layout-menu .nice-menu-menu-top-menu.nice-menu li:hover,
.region-default-page-layout-menu .nice-menu-menu-top-menu.nice-menu li.menuparent li  {
  background-color: #000000;
}

.region-default-page-layout-menu .nice-menu-menu-top-menu.nice-menu li.menuparent li.menuparent  {
  background: #000 url("/sites/ice_totallygaming/themes/at_gaming/images/top_menu_arrow_right.png") 92% center no-repeat;
  margin-right: 15px;
}

.region-default-page-layout-menu .nice-menu-menu-top-menu.nice-menu li.menuparent ul ul {
  left: 208px;
  top: 0px;
  border: 0;
  border-top: none;
  margin-right: 0;
}

.region-default-page-layout-menu .nice-menu-menu-top-menu.nice-menu-down li.menuparent {
  background: #444 url("/sites/ice_totallygaming/themes/at_gaming/images/top_menu_arrow_down.png") 92% center no-repeat;
}

.region-default-page-layout-menu .nice-menu-menu-top-menu.nice-menu-down li.menuparent:hover {
  background-color: #000;
}

.region-default-page-layout-menu .nice-menu-menu-top-menu.nice-menu-down li.menuparent a {
  padding-right: 10px;
}

.region-default-page-layout-menu .nice-menu-menu-top-menu.nice-menu a {
  color: #ffffff;
  font-size: 14px;
  font-weight: bold;
  padding: 0.3em 4.5px 0.3em 4.5px;
}

.region-default-page-layout-menu .nice-menu-menu-top-menu.nice-menu .menu-depth-1.last {
  /*padding-right: 0px !important;*/
}

.region-default-page-layout-menu ul li.menu-search {
  background: url(/sites/ice_totallygaming/themes/at_gaming/images/search_icon.png) no-repeat;
  text-indent: -9999px;
  width: 30.5px;
  height: 29px;
  display: inline-block;
  padding: 10px 0px 0px 0px !important;
  background-color: #777777;
}

.region-default-page-layout-menu .pane-menu-menu-social-media-menu {
  position: absolute;
  top: 0px;
  right: 0px;
  padding-right: 66px;
}

.region-default-page-layout-footer-middle .pane-menu-menu-social-media-menu .menu {
    margin-top: 24px;
}

.region-default-page-layout-menu .pane-menu-menu-social-media-menu ul li,
.region-default-page-layout-footer-middle .pane-menu-menu-social-media-menu ul li {
  list-style-image: none;
  list-style-type: none;
  margin-left: 0;
  display: inline-block;
  vertical-align: middle;
  white-space: nowrap;
}

.region-default-page-layout-menu .pane-menu-menu-social-media-menu ul li a,
.region-default-page-layout-footer-middle .pane-menu-menu-social-media-menu ul li a {
  font-size: 22px;
  margin: 0;
  color: #FFF;
  display: block;
  overflow: hidden;
  padding: 10px;
  width: 20px;
  height: 20px;
  text-decoration: none;
}

.region-default-page-layout-menu .pane-menu-menu-social-media-menu ul li a:before,
.region-default-page-layout-footer-middle .pane-menu-menu-social-media-menu ul li a:before {
  padding-right: 40px;
}

.region-default-page-layout-menu .pane-menu-menu-social-media-menu ul li.menu-facebook a:before,
.region-default-page-layout-footer-middle .pane-menu-menu-social-media-menu ul li.menu-facebook a:before {
  padding-left: 4px;
}
.region-default-page-layout-menu ul li.menu-facebook,
.region-default-page-layout-footer-middle ul li.menu-facebook {
  background: #3b5998 !important;
}

.region-default-page-layout-menu ul li.menu-twitter,
.region-default-page-layout-footer-middle ul li.menu-twitter {
  background-color: #4099ff;
}

.region-default-page-layout-menu ul li.menu-linkedin,
.region-default-page-layout-footer-middle ul li.menu-linkedin {
  background-color: #007bb6;
}

.region-default-page-layout-menu ul li.menu-youtube,
.region-default-page-layout-footer-middle ul li.menu-youtube {
  background-color: #bb0000;
}
/* END: MENU */


/* HEADER */
.region-default-page-layout-header {
  position: relative;
  padding-top: 6px;
  padding-bottom: 16px;
}

/*
.region-default-page-layout-header .site-logo {
  position: absolute;
  top: 0px;
}

.region-default-page-layout-header .site-logo .block-inner .block-content {
  background-color: #ffffff;
}

.region-default-page-layout-header .panel-pane .block-inner .block-content {
  background-color: #444444;
}
*/





.region-default-page-layout-header ul li a {
  color: #ffffff;
}

.region-default-page-layout-header .pane-block-1 .block-inner .block-content {
  background-color: transparent;
}

.region-default-page-layout-header .event-details {
  text-align: right;
  color: #5e2483;
  font-size: 22px;
  font-weight: bold;
  margin-top: 7px;
}

/* MEGA MENU */
.pane-tb-megamenu-main-menu {
  position: absolute;
  top: 65px;
  right: 0px;
  padding-right: 66px;
}

.tb-megamenu {
  background-color: transparent !important;
}

.tb-megamenu .nav li.dropdown.active > .dropdown-toggle,
.tb-megamenu .nav li.dropdown.open.active > .dropdown-toggle,
.tb-megamenu .nav > li.dropdown.open.active > a:hover {
  background-color: #444 !important;
  border-color: #444 !important;
  color: #fff !important;
}

.tb-megamenu .nav > li > a {
  border-right: none;
  border-top: 0;
  color: #000;
  font-weight: bold;
  padding: 8px 12px;
  text-shadow: none;
  font-size: 18px;
}

.tb-megamenu .nav > li > a:focus,
.tb-megamenu .nav > li > a:hover {
  background-color: #444444 !important;
  color: #fff !important;
}

.tb-megamenu .nav > .active > a,
.tb-megamenu .nav > .active > a:hover,
.tb-megamenu .nav > .active > a:focus {
  background-color: #444444 !important;
  color: #fff !important;
}

.tb-megamenu .tb-block ul li a,
.tb-megamenu .tb-block .nav li a {
  display: inline;
  padding: 0;
  margin: 0;
  border: 0;
  font-size: 18px !important;
  background: none;
  font: inherit;
  white-space: normal;
}

.tb-megamenu .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 160px;
  list-style: none;
  background-color: #444444 !important;
  border: none !important;
  border: none !important;
  border-bottom: none !important;
  border-top: none;
  *border-right-width: 2px;
  *border-bottom-width: 2px;
  padding: 0;
  margin: 0;
  -webkit-border-radius:0;
  -moz-border-radius: 0;
  border-radius: 0;
  -webkit-box-shadow: 0 5px 10px rgba(0,0,0,0.2);
  -moz-box-shadow: 0 5px 10px rgba(0,0,0,0.2);
  box-shadow: 0 5px 10px rgba(0,0,0,0.2);
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
}

.tb-megamenu .dropdown-menu li > a {
  clear: both;
  color: #fff !important;
  display: block;
  line-height: 20px;
  font-weight: normal;
  padding: 3px 20px;
  text-shadow: none;
  white-space: nowrap;
}

.tb-megamenu .dropdown-menu li > a:hover,
.tb-megamenu .dropdown-menu li > a:focus,
.tb-megamenu .dropdown-submenu:hover > a {
  background-color: inherit;
  background-image: none;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  color: #9ecc54 !important;
  text-decoration: none;
}

.tb-megamenu .dropdown-menu .active > a,
.tb-megamenu .dropdown-menu .active > a:hover {
	color: #000 !important;
	text-decoration: none;
	outline: 0;
	background-color: #ffffff;
	background-image: -moz-linear-gradient(top,#fff,#ffffff);
	background-image: -webkit-gradient(linear,0 0,0 100%,from(#fff),to(#ffffff));
	background-image: -webkit-linear-gradient(top,#fff,#ffffff);
	background-image: -o-linear-gradient(top,#fff,#ffffff);
	background-image: linear-gradient(to bottom,#fff,#ffffff);
	background-repeat: repeat-x;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0076b2', GradientType=0);
}

.tb-megamenu .nav li.dropdown > .dropdown-toggle .caret {
  margin-top: 8px;
  background: url("/sites/ice_totallygaming/themes/at_gaming/images/arrow-down.png") right center no-repeat;
  border: none;
  width: 15px;
  height: 13px;
}

.tb-megamenu .nav li.dropdown.open > .dropdown-toggle .caret,
.tb-megamenu .nav li.dropdown.active > .dropdown-toggle .caret,
.tb-megamenu .nav li.dropdown.open.active > .dropdown-toggle .caret {
  background: url("/sites/ice_totallygaming/themes/at_gaming/images/arrow_down_white.png") right center no-repeat;
  width: 15px;
  height: 13px;
}

.tb-megamenu input,
.tb-megamenu button,
.tb-megamenu select,
.tb-megamenu textarea {
  font-family: 'Open Sans', sans-serif !important;
}

/* END: MEGA MENU */




.region-default-page-layout-header .pane-nice-menus-1 {
  position: absolute;
  top: 65px;
  right: 0px;
  padding-right: 66px;
}

.region-default-page-layout-header ul.nice-menu li {
  border: none;
  border-top: 0;
  float: left;
  background-color: #ffffff;
}

.region-default-page-layout-header ul.nice-menu li:hover,
.region-default-page-layout-header .nice-menu-main-menu.nice-menu-down li.menuparent {
  background-color: #444444;
}

.region-default-page-layout-header .nice-menu-main-menu.nice-menu-down li.menuparent {
  background: #fff url("/sites/ice_totallygaming/themes/at_gaming/images/arrow-down.png") right center no-repeat;
}

.region-default-page-layout-header .nice-menu-main-menu.nice-menu-down li.menuparent a {
  padding-right: 20px;
}

.region-default-page-layout-header .nice-menu-main-menu.nice-menu a {
  color: #000000;
  font-size: 18px;
  font-weight: bold;
  padding: 0.3em 20px 0.3em 20px;
}

.region-default-page-layout-header ul.nice-menu ul  {
  border: none;
  border-top: 0;
}

.region-default-page-layout-header .nice-menu-main-menu.nice-menu-down li.menuparent li {
  background-color: #444444;
  color: #ffffff;
}

.region-default-page-layout-header .nice-menu-main-menu.nice-menu li.menuparent li a {
  color: #ffffff;
  font-size: 14px;
}
/* END: HEADER */


/* HERO IMAGE */
.region.region-default-page-layout-hero-image .block {
  margin-bottom: 0px;
}

.region-default-page-layout-hero-image .block-inner {
  margin: 0;
}

.region-default-page-layout-hero-image .field-name-field-section-banner-image img {
  max-width: none;
}

.front .region-default-page-layout-hero-image .field-name-field-section-banner-image {
  position: absolute;
  height: 440px;
  margin-left: -66px;
}

.not-front .region-default-page-layout-hero-image .field-name-field-section-banner-image {
  position: absolute;
  height: 300px;
  overflow-y: hidden;
  margin-left: -66px;
}

.not-front .region-default-page-layout-hero-image #node-136 .field-name-field-section-banner-image,
.not-front .region-default-page-layout-hero-image #node-34691 .field-name-field-section-banner-image {
  height: 215px;
}

.region-default-page-layout-hero-image .banner-container {
  margin-left: 15px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  top: 0px;
  color: #FFFFFF;
  background-color: rgba(68, 68, 68, 0.7);
  width: 428px;
  height: 300px;
  font-size: 17px;
}

.front .region-default-page-layout-hero-image .banner-container {
  height: 440px;
}

.region-default-page-layout-hero-image #node-136 .banner-container,
.region-default-page-layout-hero-image #node-34691 .banner-container,
.region-default-page-layout-hero-image #node-34841 .banner-container {
  height: 215px;
}

.region-default-page-layout-hero-image .field-name-field-section-banner-title {
  font-size: 26px;
  color: #FFFFFF;
  line-height: 32px;
  padding-top: 45px
}

.front .region-default-page-layout-hero-image .field-name-field-section-banner-title {
  padding-top: 55px !important;
}

.region-default-page-layout-hero-image .field-name-field-section-banner-content {
  margin-top: 8px;
  color: #FFFFFF;
}

.region-default-page-layout-hero-image .field-name-field-section-banner-content a {
  color: #ffffff;
  background-color: #e74c3c;
  padding: 10px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}

.front .region-default-page-layout-hero-image .field-name-field-section-banner-content {
  margin-top: 22px;
}

.region-default-page-layout-hero-image .field-name-field-partner-logo {
  /*margin-top: -20px;*/
}

.region-default-page-layout-hero-image .node-section-banner {
  margin-bottom: 0px;
}
/* END: HERO IMAGE */

#page-wrapper {padding-top: 30px;}

/* PAGE TITLE */
.region-default-page-layout-page-title .page-title,
.region-default-page-layout-page-title h1 {
  padding-bottom: 24px;
  border-bottom: 2px solid #5e2483;
  margin-top: 0;
  margin-bottom: 0px;
}
/* END: PAGE TITLE */


/* CONTENT RIGHT */
/* CUSTOM BUTTON STYLES */
.region-default-page-layout-content-right ul li.book-a-stand {
  background: url(/sites/ice_totallygaming/files/book_a_stand.png) no-repeat;
  background-size: 100% auto;
}

.region-default-page-layout-content-right ul li.book-your-place {
  background: url(/sites/ice_totallygaming/files/book_your_place.png) no-repeat;
  background-size: 100% auto;
}

.region-default-page-layout-content-right ul li.download-brochure {
  background: url(/sites/ice_totallygaming/files/download_brochure.png) no-repeat;
  background-size: 100% auto;
}

.region-default-page-layout-content-right ul li.register-now {
  background: url(/sites/ice_totallygaming/files/register_now.png) no-repeat;
  background-size: 100% auto;
}

.region-default-page-layout-content-right ul li.register-for-all-webinars {
  background: url(/sites/ice_totallygaming/files/register_for_all_webinars.png) no-repeat;
  background-size: 100% auto;
}

.region-default-page-layout-content-right ul li.sponsorship-opportunities {
  background: url(/sites/ice_totallygaming/files/sponsorship_opportunities.png) no-repeat;
  background-size: 100% auto;
}

.region-default-page-layout-content-right ul li.sponsor {
  background: url(/sites/ice_totallygaming/files/sponsor.png) no-repeat;
  background-size: 100% auto;
}

.region-default-page-layout-content-right ul li.sponsor-the-conference {
  background: url(/sites/ice_totallygaming/files/sponsor_the_conference.png) no-repeat;
  background-size: 100% auto;
}

.region-default-page-layout-content-right ul li.register-your-interest {
  background: url(/sites/ice_totallygaming/files/register_your_interest.png) no-repeat;
  background-size: 100% auto;
}

.region-default-page-layout-content-right ul.menu li a {
  text-decoration: none;
  display: block;
  text-indent: -9999px;
  overflow: hidden;
  height: 66px;
}

.region-default-page-layout-content-right .pane-custom {
  text-align: center;
}

.region-default-page-layout-content-right .block {
  margin-bottom: 15px;
}

.region-default-page-layout-content-right ul.menu {
  padding-left: 0px;
  margin: 0px;
}

.region-default-page-layout-content-right ul.menu li {
  list-style: none;
  background-color: #000000;
  margin-bottom: 15px;
}

.region-default-page-layout-content-right ul.menu li.last,
.region-default-page-layout-content-right .pane-custom p {
  margin-bottom: 0px;
}
/* END: CUSTOM BUTTON STYLES */
/* END: CONTENT RIGHT */


/* FOOTER TOP */
.region-default-page-layout-footer-top .pane-sponsors-and-partners-buttons {
  border-bottom: 1px solid #cccccc;
}

.region-default-page-layout-footer-top .pane-sponsors-and-partners-buttons .block-inner {
  display: table;
  margin: 0 auto;
}

.region-default-page-layout-footer-top .tab {
  text-align: center;
}

.region-default-page-layout-footer-top .tab {
  width: 174px;
  float: left;
  text-align: center;
  padding: 10px 0;
  cursor: pointer;
  background-color: #cccccc;
  color: #444444;
  border: 1px solid #ffffff;
}

.region-default-page-layout-footer-top .tab.active {
  background-color: #5e2483;
  color: #ffffff;
}

.region-default-page-layout-footer-top #sponsors,
.region-default-page-layout-footer-top #exhibitor {display: none;}

.region-default-page-layout-footer-top .views-field-field-exhibitor-logo {
  display: table-cell;
  text-align: center;
  width: 163px;
  height: 78px;
  vertical-align: middle;
}

.region-default-page-layout-footer-top .owl-theme .owl-controls .owl-page span {
  opacity: 1;
  margin: 4px;
  width: 15px;
  height: 15px;
  background-color: #ffffff;
  border: 1px solid #cccccc;
}

.region-default-page-layout-footer-top .owl-theme .owl-controls .owl-page.active span, .owl-theme .owl-controls.clickable .owl-page:hover span {
  opacity: 1;
  background-color: #5e2483;
  border: 1px solid #5e2483;
}
/* END: FOOTER TOP */

/* FOOTER MIDDLE */
.region-default-page-layout-footer-middle .region-plain-box-footer-bottom {
  margin-bottom: 0px;
}

.region-default-page-layout-footer-middle  h2 {
  font-size: 18px;
  margin-top: 39px;
  margin-bottom: 18px;
}
 
.region-default-page-layout-footer-middle  ul {
  margin-top: 0px;
  padding-left: 0px;
}

.region-default-page-layout-footer-middle  li {
  list-style: none !important;
}

.region-default-page-layout-footer-middle  a,
.region-default-page-layout-footer-middle  a:active,
.region-default-page-layout-footer-middle  a:visited {
  color: #FFFFFF;
}
/* END: FOOTER MIDDLE */

/* FOOTER BOTTOM */
.region-default-page-layout-footer-bottom .region-plain-box-footer-bottom {
  margin-bottom: 0px;
}

.region-default-page-layout-footer-bottom .pane-footer-bottom {
  margin-bottom: 0px;
}

.pane-block.pane-menu-menu-footer-links {
  margin-bottom: 0px;
}

.region-default-page-layout-footer-bottom  ul {
  padding-left: 0px;
  margin-top: 6px;
  margin-bottom: 8px;
}

.region-default-page-layout-footer-bottom  li {
  list-style: none !important;
  display: inline;
  padding-right: 15px;
}

.region-default-page-layout-footer-bottom  a,
.region-default-page-layout-footer-bottom  a:active,
.region-default-page-layout-footer-bottom  a:visited {
  color: #FFFFFF;
}

.region-default-page-layout-footer-bottom .copyright-text {
  font-size: 10px;
}

.region-default-page-layout-footer-bottom .copyright-logo {
    text-align: right;
    margin-top: 7px;
}
/* END: FOOTER BOTTOM */


/* END: DEFAULT LAYOUT */


/* =============================================================================
 *   Page Content Layout
 * ========================================================================== */
/* SECTION LANDING PAGE */
.pane-section-landing-page-blocks  > .block-inner {
  margin: 0;
}

.section-conferences .pane-section-landing-page-blocks > .block-inner {
  margin-left: 15px !important;
  margin-right: 15px !important;
}

#mini-panel-section_landing_page_blocks .pane-node-field-page-content-top {
  margin-bottom: 8px;
}

#mini-panel-section_landing_page_blocks .paragraphs-items .one-column .region .region-inner {
  position: relative;
  margin-left: 0px;
  margin-right: 0px;
}

#mini-panel-section_landing_page_blocks .node-section-landing-page,
#mini-panel-section_landing_page_blocks .node-section-content-page,
#mini-panel-section_landing_page_blocks .node-video {
  min-height: 307px;
  max-height: 307px;
}

#mini-panel-section_landing_page_blocks .field-name-field-page-content p {
  margin-bottom: 0.7em;
}

#mini-panel-section_landing_page_blocks .title-wrapper {
  position: absolute;
  margin-left: -10px !important;
  top: 61px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 10px 10px 0;
  border-color: transparent #777777 transparent transparent;
  z-index: 1;
}

#mini-panel-section_landing_page_blocks .title-wrapper .title-background {
  position: absolute;
  padding: 2px 20px 5px 20px;
  color: #FFF;
  top: -40px;
  background-color: #444444;
  font-size: 22px;
  min-height: auto;
}

#mini-panel-section_landing_page_blocks .title-wrapper .title-background p {
  display: block;
  color: #ffffff;
  text-decoration: none;
  font-size: 22px;
  white-space: nowrap;
  margin: 0px;
}

#mini-panel-section_landing_page_blocks .field-name-field-featured-text div,
#mini-panel-section_landing_page_blocks .field-name-node-link div {
  display: inline;
}

#mini-panel-section_landing_page_blocks .field-name-field-featured-image {
  margin-bottom: 5px;
}

#mini-panel-section_landing_page_blocks .player {
    padding-bottom: 56.25%;
    padding-top: 7px; 
    height: 0; 
    overflow: hidden;
}

#mini-panel-section_landing_page_blocks .field-name-field-featured-text {
  display: inline;
}

#mini-panel-section_landing_page_blocks .field-name-field-featured-text p,
#mini-panel-section_landing_page_blocks .field-name-field-para-video-caption {
  margin-bottom: 6px;
  display: inline;
  background-color: transparent;
  color: #444;
  margin: 0 0 1.5em;
}

#mini-panel-section_landing_page_blocks .field-name-node-link {
  font-weight: bold;
  display: inline
}

#mini-panel-section_landing_page_blocks .field-name-node-link a {
  display: inline
}

#mini-panel-section_landing_page_blocks .field-name-field-para-block-title {
    border-top: 2px solid #5e2483;
    padding-top: 8px;
    font-size: 18px;
    color: #5e2483;
    font-weight: 700;
    margin-bottom: 8px;
}

.node-section-speakers-landing-page {
  width: 50%;
  float: left;
  border: 0 !important;
  padding-bottom: 7px !important;
}

article.node-section-speakers-landing-page .region-two-33-66-top .region-inner {
  margin-left: 15px;
}

.node-section-speakers-landing-page h2 {
  font-size: 14px;
  color: #000000;
  margin-top: 5px !important;
  margin-bottom: 0px;
}

.node-section-speakers-landing-page .speaker-role {
  font-weight: normal !important;
}

.pane-testimonials .pane-title {
  border-top: 2px solid #5e2483;
  padding-top: 10px;
  font-size: 22px;
  margin-bottom: 16px;
}

.view-testimonials .testimonial-quote {
  position: absolute;
  top: 0;
  height: 224px;
  background-color: rgba(0, 0, 0, 0.4);
  padding-top: 10%;
  font-size: 30px;
  text-align: center;
  color: #ffffff;
  line-height: 30px;
}

.view-testimonials .testimonial-source {
  position: absolute;
  width: 100%;
  top: 65%;
  color: #ffffff;
  text-align: center;
  font-size: 16px;
}

.view-sponsors-and-partners .no-logo {
  text-transform: uppercase;
  vertical-align: middle;
  font-weight: 700;
  color: #444;
  font-size: 13px;
  text-align: center;
  background-color: #fff;
  display: table-cell;
  height: 96px;
  width: 150px;
  border: 1px solid #444;
}

/* CONFERENCE LANDING PAGE */
.section-conferences #mini-panel-section_landing_page_blocks .pane-node-field-page-content-left-above .block-inner {
    margin-left: 0px;
}

.section-conferences #mini-panel-section_landing_page_blocks .pane-node-field-page-content-right-above .block-inner {
    margin-right: 0px;
}

.section-conferences #mini-panel-section_landing_page_blocks .node-section-content-page {
  min-height: auto;
  max-height: inherit;
  padding: 15px;
  border: 1px solid #000;
  border-top: 0;
  margin-bottom: 30px;
}

.section-conferences #mini-panel-section_landing_page_blocks .title-wrapper {
  position: relative;
  margin-left: 0px !important;
  top: 0px;
  width: auto;
  height: auto;
  border: none;
  border-style: solid;
  border-width: 0;
  border-color: transparent;
}

.section-conferences #mini-panel-section_landing_page_blocks .title-wrapper .title-background {
  position: relative;
  padding: 6px 15px 8px 15px;
  color: #FFF;
  top: 0px;
  background-color: #444444;
  font-size: 22px;
  min-height: 66px !important;
}

.section-conferences #mini-panel-section_landing_page_blocks .title-wrapper .title-background p,
#mini-panel-section_landing_page_blocks .field-name-title h2 {
  display: block;
  color: #ffffff;
  text-decoration: none;
  font-size: 22px;
  white-space: normal;
  margin-bottom: 0px;
}

.section-conferences #mini-panel-section_landing_page_blocks .field-name-field-featured-text div,
.section-conferences #mini-panel-section_landing_page_blocks .field-name-node-link div {
  display: inline;
}

.section-conferences #mini-panel-section_landing_page_blocks .field-name-field-featured-image {
  margin-bottom: 15px;
}

.section-conferences #mini-panel-section_landing_page_blocks .field-name-field-featured-text {
  display: inline;
}

.section-conferences #mini-panel-section_landing_page_blocks .field-name-field-featured-text p {
  margin-bottom: 6px;
  display: inline;
}

.section-conferences #mini-panel-section_landing_page_blocks .field-name-node-link {
  font-weight: bold;
  display: inline
}

.section-conferences #mini-panel-section_landing_page_blocks .field-name-node-link a {
  display: inline
}

.section-conferences #mini-panel-section_landing_page_blocks .conference-links i {
  font-size: 11px;
  line-height: 2.4px;
}

.section-conferences #mini-panel-section_landing_page_blocks .conference-links a,
.section-conferences #mini-panel-section_landing_page_blocks .conference-links a:visited,
.section-conferences #mini-panel-section_landing_page_blocks .conference-links a:link {
  color: #5e2483;
  margin-right: 15px;
}

.node-type-section-landing-page .region-default-page-layout-content-right .view-tweets table,
.node-type-section-landing-page .region-default-page-layout-content-right .view-tweets table tr,
.node-type-section-landing-page .region-default-page-layout-content-right .view-tweets table tr td,
.node-type-section-landing-page .region-default-page-layout-content-right .view-tweets table tbody {
  border: 0 !important;
}

.node-type-section-landing-page .region-default-page-layout-content-right .view-tweets .odd .twitter-icon {
  position: relative;
  width: 19%;
  background-color: #029cd6;
  text-align: center;
}

.node-type-section-landing-page .region-default-page-layout-content-right .view-tweets .odd .twitter-icon:after {
    right: -27%;
    top: 50%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: rgba(2,156,214,0);
    border-left-color: #029cd6;
    border-width: 10px;
    margin-top: -10px;
    z-index: 1;
}

.node-type-section-landing-page .region-default-page-layout-content-right .view-tweets .even .twitter-icon {
  position: relative;
  width: 19%;
  background-color: #017faf;
  text-align: center;
}

.node-type-section-landing-page .region-default-page-layout-content-right .view-tweets .even .twitter-icon:after {
    right: -27%;
    top: 50%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: rgba(1,127,175,0);
    border-left-color: #017faf;
    border-width: 10px;
    margin-top: -10px;
    z-index: 1;
}

.node-type-section-landing-page .region-default-page-layout-content-right .view-tweets .odd .twitter-message {
  width: 72%;
  padding: 10px 10px 10px 20px;
  margin: 0;
  background: #00aced; 
}

.node-type-section-landing-page .region-default-page-layout-content-right .view-tweets .even .twitter-message {
  width: 72%;
  padding: 10px 10px 10px 20px;
  margin: 0;
  background: #0194cc;
}

.node-type-section-landing-page .region-default-page-layout-content-right .view-tweets .twitter-message,
.node-type-section-landing-page .region-default-page-layout-content-right .view-tweets .twitter-message a {
  color: #ffffff;
}

/* END: SECTION CONFERENCES LANDING PAGE */

/* SEMINARS LANDING PAGE */
.section-seminars #mini-panel-section_landing_page_blocks .node-section-content-page {
  min-height: auto;
  max-height: inherit;
  padding: 15px;
  border: 1px solid #000;
  border-top: 0;
  margin-bottom: 30px;
}

.section-seminars #mini-panel-section_landing_page_blocks .title-wrapper {
  position: relative;
  margin-left: 0px !important;
  top: 0px;
  width: auto;
  height: auto;
  border: none;
  border-style: solid;
  border-width: 0;
  border-color: transparent;
}

.section-seminars #mini-panel-section_landing_page_blocks .title-wrapper .title-background {
  position: relative;
  padding: 6px 15px 8px 15px;
  color: #FFF;
  top: 0px;
  background-color: #444444;
  font-size: 22px;
  min-height: 66px !important;
}

.section-seminars #mini-panel-section_landing_page_blocks .title-wrapper .title-background p,
#mini-panel-section_landing_page_blocks .field-name-title h2 {
  display: block;
  color: #ffffff;
  text-decoration: none;
  font-size: 22px;
  white-space: normal;
  margin-bottom: 0px;
}

.section-seminars #mini-panel-section_landing_page_blocks .node-section-content-page p {
  min-height: 105px;
}

.section-seminars #mini-panel-section_landing_page_blocks .field-name-field-featured-text div,
.section-seminars #mini-panel-section_landing_page_blocks .field-name-node-link div {
  display: inline;
}

.section-seminars #mini-panel-section_landing_page_blocks .field-name-field-featured-image {
  margin-bottom: 15px;
}

.section-seminars #mini-panel-section_landing_page_blocks .field-name-field-featured-text {
  display: inline;
}

.section-seminars #mini-panel-section_landing_page_blocks .field-name-field-featured-text p {
  margin-bottom: 6px;
  display: inline;
}

.section-seminars #mini-panel-section_landing_page_blocks .field-name-node-link {
  font-weight: bold;
  display: inline
}

.section-seminars #mini-panel-section_landing_page_blocks .field-name-node-link a {
  display: inline
}

.section-seminars #mini-panel-section_landing_page_blocks .conference-links i {
  font-size: 11px;
  line-height: 2.4px;
}

.section-seminars #mini-panel-section_landing_page_blocks .conference-links a,
.section-seminars #mini-panel-section_landing_page_blocks .conference-links a:visited,
.section-seminars #mini-panel-section_landing_page_blocks .conference-links a:link {
  color: #5e2483;
  margin-right: 15px;
}
/* END: SEMINARS LANDING PAGE */

/* WEBINARS LANDING PAGE */
.section-glws #mini-panel-section_landing_page_blocks .node-section-content-page {
  min-height: auto;
  max-height: inherit;
  padding: 15px;
  border: 1px solid #000;
  border-top: 0;
  margin-bottom: 30px;
}

.section-glws #mini-panel-section_landing_page_blocks .title-wrapper {
  position: relative;
  margin-left: 0px !important;
  top: 0px;
  width: auto;
  height: auto;
  border: none;
  border-style: solid;
  border-width: 0;
  border-color: transparent;
}

.section-glws #mini-panel-section_landing_page_blocks .title-wrapper .title-background {
  position: relative;
  padding: 6px 15px 8px 15px;
  color: #FFF;
  top: 0px;
  background-color: #444444;
  font-size: 22px;
  min-height: 66px !important;
}

.section-glws #mini-panel-section_landing_page_blocks .title-wrapper .title-background p,
#mini-panel-section_landing_page_blocks .field-name-title h2 {
  display: block;
  color: #ffffff;
  text-decoration: none;
  font-size: 22px;
  white-space: normal;
  margin-bottom: 0px;
}

.section-glws #mini-panel-section_landing_page_blocks .node-section-content-page p {
  min-height: 105px;
}

.section-glws #mini-panel-section_landing_page_blocks .field-name-field-featured-text div,
.section-glws #mini-panel-section_landing_page_blocks .field-name-node-link div {
  display: inline;
}

.section-glws #mini-panel-section_landing_page_blocks .field-name-field-featured-image {
  margin-bottom: 15px;
}

.section-glws #mini-panel-section_landing_page_blocks .field-name-field-featured-text {
  display: inline;
}

.section-glws #mini-panel-section_landing_page_blocks .field-name-field-featured-text p {
  margin-bottom: 6px;
  display: inline;
}

.section-glws #mini-panel-section_landing_page_blocks .field-name-node-link {
  font-weight: bold;
  display: inline
}

.section-glws #mini-panel-section_landing_page_blocks .field-name-node-link a {
  display: inline
}

.section-glws #mini-panel-section_landing_page_blocks .conference-links i {
  font-size: 11px;
  line-height: 2.4px;
}

.section-glws #mini-panel-section_landing_page_blocks .conference-links a,
.section-glws #mini-panel-section_landing_page_blocks .conference-links a:visited,
.section-glws #mini-panel-section_landing_page_blocks .conference-links a:link {
  color: #5e2483;
  margin-right: 15px;
}
/* END: WEBINARS LANDING PAGE */

/* PRODUCT SECTORS LANDING PAGE */
.section-product-sectors #mini-panel-section_landing_page_blocks .node-section-content-page {
  min-height: 127px;
  max-height: 127px;
  padding: 15px;
  border: 1px solid #000;
  border-top: 0;
  margin-bottom: 30px;
}

.section-product-sectors #mini-panel-section_landing_page_blocks .title-wrapper {
  position: relative;
  margin-left: 0px !important;
  top: 0px;
  width: auto;
  height: auto;
  border: none;
  border-style: solid;
  border-width: 0;
  border-color: transparent;
}

.section-product-sectors #mini-panel-section_landing_page_blocks .title-wrapper .title-background {
  position: relative;
  padding: 6px 15px 8px 15px;
  color: #FFF;
  top: 0px;
  background-color: #444444;
  font-size: 22px;
  min-height: 66px !important;
}

.section-product-sectors #mini-panel-section_landing_page_blocks .title-wrapper .title-background p,
#mini-panel-section_landing_page_blocks .field-name-title h2 {
  display: block;
  color: #ffffff;
  text-decoration: none;
  font-size: 22px;
  white-space: normal;
  margin-bottom: 0px;
}

.section-product-sectors #mini-panel-section_landing_page_blocks .node-section-content-page p {
  min-height: 84px;
}

.section-product-sectors #mini-panel-section_landing_page_blocks .field-name-field-featured-text div,
.section-product-sectors #mini-panel-section_landing_page_blocks .field-name-node-link div {
  display: inline;
}

.section-product-sectors #mini-panel-section_landing_page_blocks .field-name-field-featured-image {
  margin-bottom: 15px;
}

.section-product-sectors #mini-panel-section_landing_page_blocks .field-name-field-featured-text {
  display: inline;
}

.section-product-sectors #mini-panel-section_landing_page_blocks .field-name-field-featured-text p {
  margin-bottom: 6px;
  display: inline;
}

.section-product-sectors #mini-panel-section_landing_page_blocks .field-name-node-link {
  font-weight: bold;
  display: inline
}

.section-product-sectors #mini-panel-section_landing_page_blocks .field-name-node-link a {
  display: inline
}

.section-product-sectors #mini-panel-section_landing_page_blocks .conference-links i {
  font-size: 11px;
  line-height: 2.4px;
}

.section-product-sectors #mini-panel-section_landing_page_blocks .conference-links a,
.section-product-sectors #mini-panel-section_landing_page_blocks .conference-links a:visited,
.section-product-sectors #mini-panel-section_landing_page_blocks .conference-links a:link {
  color: #5e2483;
  margin-right: 15px;
}
/* END: PRODUCT SECTORS LANDING PAGE */

/* SECTION CONTENT PAGE */
.section-content-page div > .block-inner {
  /*
  margin: 0px;
  border-top: 2px solid #5e2483;
  */
}

.section-content-page .pane-menu-block-3 .block-inner {
  margin-left: 0px !important;
}

.region-default-page-layout-content-left h2 {
  margin-top: -12px;
}

.region-default-page-layout-content-left .region-two-33-66-first .menu {
  margin-top: 0px;
  padding-left: 0px;
}

.region-default-page-layout-content-left .region-two-33-66-first .menu li {
  list-style: none !important;
  font-size: 14px;
  font-weight: bold;
  border-bottom: 1px solid #cccccc;
}

.region-default-page-layout-content-left .region-two-33-66-first .menu .menu-depth-3 {
  border-bottom: none;
  padding-top: 2px;
  padding-right: 0px;
  padding-bottom: 2px;
  padding-left: 15px;
}

.region-default-page-layout-content-left .region-two-33-66-first .menu .menu-depth-3 a {
  padding: 2px 0px 2px 15px;
}

.region-default-page-layout-content-left .region-two-33-66-first .menu li a {
  color: #000000;
  padding: 12px 12px 12px 15px;
  white-space: pre-wrap;
  display: block;
  background-color: #fff;
}

.region-default-page-layout-content-left .region-two-33-66-first .menu li a.active {
  color: #ffffff;
  padding: 12px 12px 12px 15px;
  background-color: #5e2483;
}

.region-default-page-layout-content-left .region-two-33-66-first .menu li a.active:hover {
  text-decoration:none;
}

.region-default-page-layout-content-left .region-two-33-66-first .menu li a.active:after {
  content: "\203A";
  float:right;
  margin-right: 15px;
  color: #ffffff;
}

.region-default-page-layout-content-left .region-two-33-66-first .block-inner {
  margin-top: -17px;
}

.region-default-page-layout-content-left .region-two-33-66-second .one-column .region-inner{
  margin-left: 0px;
  margin-right: 0px;
}
/* END: SECTION CONTENT PAGE */


/* EXHIBITOR LISTING PAGE */
/* A-Z FILTER */

.section-exhibitor-list .region-default-page-layout-content-left .exhibitor-text-search,
.section-exhibitor-list .region-default-page-layout-content-left .exhibitor-gaming-search,
.section-exhibitor-list .region-default-page-layout-content-left .exhibitor-channel-search {
  margin-bottom: 8px;
}

.section-exhibitor-list .region-default-page-layout-content-left .exhibitor-gaming-search select,
.section-exhibitor-list .region-default-page-layout-content-left .exhibitor-channel-search select {
    width: 100%;
    margin-top: 12px;
    height: 35px;
}

.section-exhibitor-list .region-default-page-layout-content-left .exhibitor-gaming-search .form-item,
.section-exhibitor-list .region-default-page-layout-content-left .exhibitor-channel-search .form-item {
    margin-bottom: 0;
}

.exhibitor-text-search .form-item input {
  height: 25px;
  width: 81%;
  padding: 4px;
}

.exhibitor-text-search .views-exposed-widget {
  padding: 0;
  position: relative;
}

.exhibitor-text-search .views-exposed-widget label {
  font-size: 18px;
  color: #5e2483;
  margin-bottom: 6px;
  margin-top: -7px;
}

#views-exposed-form-exhibitor-listing-panel-pane-1 .views-submit-button input {
  background: #5e2483 url(/sites/totallygaming/themes/ws/images/search.png) no-repeat center;
  color: #FFF;
  text-indent: -119988px;
  overflow: hidden;
  text-align: left;
  text-transform: capitalize;
  height: 35px;
  width: 35px;
  top: 26px;
  left: -31px;
  position: absolute;
  padding: 0 15px;
  margin: 0;
  border: 0;
}

.section-exhibitor-list .region-default-page-layout-content-left .exhibitor-filter {
  margin-bottom: 3px;
}

.exhibitor-filter .facetapi-facet-title-az-glossary {
  /*width: 100%;*/
  overflow: hidden;
  display: table;
  border-spacing: 0px;
  margin-left: -15px;
  margin-right: -5px;
  clear: left;
}

.exhibitor-filter .facetapi-facet-title-az-glossary .leaf {
  display: table-cell;
  width: 26px;
  height: 26px;
  vertical-align: middle;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-align: center;
  text-transform: uppercase;
  margin: 0;
  padding: 0;
  border: 1px solid #fff;
  font-size: 12px;
}

.exhibitor-filter .facetapi-facet-title-az-glossary .leaf a {
    display: block;
    /*width: 100%;
    height: 100%;*/
    text-decoration: none;
    color: #777;
    text-align: center;
    padding-top: 1px;
}

.exhibitor-filter .facetapi-facet-title-az-glossary .leaf a.active {
  display:none;
}

.exhibitor-filter .facetapi-facet-title-az-glossary .leaf.active, 
.exhibitor-filter .facetapi-facet-title-az-glossary .leaf:hover {
    border: 1px solid #5e2483;
    color: #5e2483;
}

.exhibitor-filter .facetapi-facet-title-az-glossary .leaf.active a, .page-directory .facetapi-facet-title-az-glossary .leaf:hover a {
    padding-top: 5px;
    border: 1px solid #777777;
    color: #777777;
}

/* END: A-Z FILTER */
.view-exhibitor-listing h2 {
  font-size: 22px;
  margin-bottom: 20px;
}

.view-exhibitor-listing  .standard {
  position: relative;
  background-color: #ffffff;
  padding: 25px 15px 28px 15px;
  margin-bottom: 15px;
  border-top: 1px solid #5e5e5e;
  border-bottom: 1px solid #5e5e5e;
}

.view-exhibitor-listing  .enhanced {
  background-color: #dddddd;
  padding: 15px;
  margin-bottom: 15px;
  min-height: 96px;
}

.view-exhibitor-listing  .super-enhanced {
  background-color: #5e2483;
  padding: 15px;
  margin-bottom: 15px;
}

.view-exhibitor-listing .exhibitor-logo {
  float: left;
  min-width: 150px;
  min-height: 15px;
}

.view-exhibitor-listing .exhibitor-logo .no-logo {
  text-transform: uppercase;
  vertical-align: middle;
  font-weight: 700;
  color: #444;
  font-size: 13px;
  text-align: center;
  background-color: #fff;
  display: table-cell;
  height: 96px;
  width: 150px;
}

.view-exhibitor-listing .standard .exhibitor-title {
  float: left;
  position: absolute;
  top: 1px;
  margin: 0px;
  width: 470px;
  color: #5e2483;
  font-size: 20px;
  font-weight: 700;
}

.view-exhibitor-listing .enhanced .exhibitor-title {
  float: left;
  margin-left: 30px;
  margin-top: -7px;
  margin-bottom: 2px;
  width: 506px;
  color: #5e2483;
  font-size: 20px;
  font-weight: 700;
}

.view-exhibitor-listing .super-enhanced .exhibitor-title {
  float: left;
  margin-left: 30px;
  margin-top: -7px;
  margin-bottom: 2px;
  width: 506px;
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
}

.view-exhibitor-listing .exhibitor-stand {
  float: left;
  width: 506px;
  margin-left: 30px;
  margin-top: -5px;
  margin-bottom: 10px;
  text-align: left;
  color: #5e2483;
  font-weight: 700;
  min-height: 20px;
}

.view-exhibitor-listing .standard .exhibitor-stand {
  float: left;
  width: 506px;
  margin-left: 0px;
  margin-top: 4px;
  margin-bottom: 10px;
  text-align: left;
  color: #5e2483;
  font-weight: 700;
  min-height: 20px;
}

.view-exhibitor-listing .exhibitor-description {
  margin-left: 180px;
}

.view-exhibitor-listing .exhibitor-description a.more-link {
    font-weight: bold;
}

/* END: EXHIBITOR LISTING PAGE */

/* EXHIBITOR PROFILE PAGE */
.node-exhibitor-profile-page .region .region-inner {
  margin: 0px !important;
}

.exhibitor-profile-page .exhibitor-profile-title {
  width: 470px;
  color: #5e2483;
  font-size: 36px;
  font-weight: 700;
}

.exhibitor-profile-page .exhibitor-profile-stand {
  min-height: 100px;
  margin-top: -7px;
  color: #000000;
  font-size: 22px;
  font-weight: 700;
}

.exhibitor-profile-page .exhibitor-profile-logo {
  text-align: right;
  min-height: 100px;
  margin-top: -5px;
}

.exhibitor-profile-page .exhibitor-profile-website i,
.exhibitor-profile-page .exhibitor-profile-telephone i,
.exhibitor-profile-page .exhibitor-profile-email i,
.exhibitor-profile-page .exhibitor-profile-location i  {
  color: #5e2483;
  margin-right: 10px;
  margin-bottom: 9px;
  width: 20px;
  text-align: center;
}

.exhibitor-profile-page .exhibitor-profile-website a,
.exhibitor-profile-page .exhibitor-profile-telephone,
.exhibitor-profile-page .exhibitor-profile-email a,
.exhibitor-profile-page .exhibitor-profile-location {
  color: #000000;
  font-family: 'Open Sans';
  font-size: 18px;
  font-weight: 700;
}

.exhibitor-profile-page .exhibitor-profile-description {
  padding-top: 17px;
}

.pane-exhibitor-profile-panel-pane-1 {
  margin-bottom: 6px;
}

.default-page-layout .pane-tab-buttons {
  border-bottom: 1px solid #cccccc;
}

.default-page-layout .pane-tab-buttons .block-inner {
  display: table;
  margin: 0 auto;
}

.default-page-layout .tab {
  text-align: center;
}

.default-page-layout .tab {
  width: 174px;
  float: left;
  text-align: center;
  padding: 10px 0;
  cursor: pointer;
  background-color: #cccccc;
  color: #444444;
  border: 1px solid #ffffff;
}

.default-page-layout .tab.active {
  background-color: #5e2483;
  color: #ffffff;
}

.section-conferences .default-page-layout #media-partners {display: block !important;}

.section-conferences .default-page-layout #global-partners,
.section-conferences .default-page-layout #supporters,
.section-conferences .global-partners,
.section-conferences .sponsors {display: none !important;}

.default-page-layout #global-partners,
.default-page-layout #supporters,
.default-page-layout #media-partners {display: none;}

.default-page-layout #press-releases,
.default-page-layout #case-studies,
.default-page-layout #videos {display: none;}
/* END: EXHIBITOR PROFILE PAGE */

/* EXHIBITOR ZONE PROFILE PAGE */

.section-users .pane-1 .block-content div {
  font-size: 22px;
  margin-bottom: 10px;
}

.exhibitor-zone-page .views-field.views-field-nothing {
  background-color: #5e2483;
  color: #ffffff;
  font-size: 18px;
  padding: 6px;
}

.exhibitor-zone-page .views-field-edit-node {
  background-color: #5e2483;
  color: #ffffff;
  font-size: 18px;
  padding: 6px;
  text-align: right;
  padding-right: 10px;
}

.exhibitor-zone-page .views-field-edit-node a {
  color: #ffffff;
}

.exhibitor-zone-page .views-field-edit-node i {
  margin-right: 5px;
}

.exhibitor-zone-page .exhibitor-zone-title {
  width: 470px;
  color: #5e2483;
  font-size: 36px;
  font-weight: 700;
}

.exhibitor-zone-page .exhibitor-zone-logo {
  text-align: right;
  min-height: 100px;
  margin-top: -5px;
}

.exhibitor-zone-page .exhibitor-zone-stand,
.exhibitor-zone-page .exhibitor-zone-website,
.exhibitor-zone-page .exhibitor-zone-telephone,
.exhibitor-zone-page .exhibitor-zone-email,
.exhibitor-zone-page .exhibitor-zone-location  {
  border-bottom: 1px solid #cccccc;
  padding-bottom: 4px;
  padding-top: 11px;
}

.exhibitor-zone-page .exhibitor-zone-stand i,
.exhibitor-zone-page .exhibitor-zone-website i,
.exhibitor-zone-page .exhibitor-zone-telephone i,
.exhibitor-zone-page .exhibitor-zone-email i,
.exhibitor-zone-page .exhibitor-zone-location i  {
  color: #5e2483;
  margin-right: 10px;
  margin-bottom: 9px;
  width: 20px;
  text-align: center;
}

.exhibitor-zone-page .exhibitor-zone-stand,
.exhibitor-zone-page .exhibitor-zone-website a,
.exhibitor-zone-page .exhibitor-zone-telephone,
.exhibitor-zone-page .exhibitor-zone-email a,
.exhibitor-zone-page .exhibitor-zone-location {
  color: #5e2483;
  font-family: 'Open Sans';
  font-size: 14px;
  font-weight: 700;
}

.exhibitor-zone-page .exhibitor-zone-description {
  padding-top: 17px;
  margin-right: 30px;
}

.section-users .pane-exhibitor-zone-profile-panel-pane-2 .pane-title,
.section-users .pane-tab-buttons .pane-title,
.section-users .pane-2 .pane-title {
  margin-bottom: 10px;
  font-size: 22px;
  color: #000000;
}

.section-users .views-field-edit-node,
.section-users .views-field-delete-node {
  background-color: #5e2483;
  padding: 6px;
  margin-bottom: 15px;
}

.section-users .views-field-delete-node {
  text-align: right;
}

.section-users .views-field-edit-node a,
.section-users .views-field-delete-node a {
  color: #ffffff;
}

.section-users .moderation-state {
  float: left;
  width: 161px;
  background-color: #cccccc;
  padding: 6px;
  text-align: center;
  margin-top: 15px;
}

.section-users .moderation-timestamp,
.section-users .moderation-date {
  float: left;
  width: 276px;
  background-color: #cccccc;
  padding: 6px;
  text-align: center;
  margin-top: 15px;
}

.section-users .moderation-field {
  font-weight: 700;
  font-style: italic;
}

.section-users .pane-2 p:first-child {
  margin-bottom: 11px;
  border: none;
  padding: 0;
}

.section-users .pane-2 p:last-child {
  border: 0 !important;
}

.section-users .pane-2 p {
    border-bottom: 1px solid #cccccc;
    padding-bottom: 11px;
    padding-top: 9px;
}

.section-users .region-default-page-layout-content-right .pane-custom {
  text-align: left;
}

.exhibitor-zone-page .exhibitor-links {
  background-color: #5e2483;
  padding: 20px;
  margin-bottom: 10px;
}

.exhibitor-zone-page .exhibitor-links a {
    color: #ffffff;
    font-size: 22px;
}

.exhibitor-zone-page .exhibitor-links i {
  float: right;
  padding-top: 9px;
}


/* END: EXHIBITOR ZONE PROFILE PAGE */


/* CONFERENCE SPEAKERS */
.node-section-content-page .conference-links {
  float: left;
  font-weight: 700;
  margin-top: 2px;
}

.node-section-content-page .conference-links a {
  margin-right: 15px;
}

.section-conferences .node-section-content-page .field-name-field-key-speakers {
  margin-top: -10px;
}

.node-section-content-page .field-name-field-key-speakers {
  float: left;
  margin-top: 34px;
}

.node-section-content-page .field-name-field-key-speakers .label-above {
  font-weight: 700;
  font-size: 22px;
  margin-bottom: 12px;
}

.node-speaker-profile-page,
.view-conference-speaker-list .views-row {
  border-bottom: 1px solid #cccccc;
  margin-bottom: 16px;
  padding-bottom: 11px;
}

.node-speaker-profile-page .region {
  clear: none;
}

.view-conference-speaker-list  .region-inner {
  margin-left: 0px;
  margin-right: 15px;
}

.node-speaker-profile-page .region-two-33-66-first {
  width: 20% !important;
}

.node-speaker-profile-page .region-two-33-66-second {
  width: 80% !important;
}

.view-conference-speaker-list .region-two-33-66-first {
  width: 28% !important;
}

.view-conference-speaker-list .region-two-33-66-second {
  width: 72% !important;
}

.node-speaker-profile-page .speaker-name,
.view-conference-speaker-list .speaker-name
 {
  color: #5e2483;
  font-weight: bold;
  margin-top: -6px;
  margin-bottom: 0px;
}

.node-speaker-profile-page .speaker-role,
.view-conference-speaker-list .speaker-role {
  font-weight: bold;
  margin-bottom: 0px;
}

.node-speaker-profile-page .speaker-link a,
.view-conference-speaker-list .speaker-link a {
  font-weight: 700;
}

.node-section-speakers-list .speaker-summary,
.node-section-speakers-list .speaker-link {
  display: inline;
}
/* END: CONFERENCE SPEAKERS */

/* CONFERENCE AGENDA */
.ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active,
.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default  {
  border: none;
  background: #fff url(none);
  font-weight: bold;
  color: #000000;
}

.ui-accordion .ui-accordion-header .ui-accordion-header-icon {
  position: absolute;
  right: .5em;
  left: inherit;
  top: 30%;
  margin-top: 0px;
}

.ui-accordion .ui-accordion-header {
  padding: 16px 0px 16px 0px !important;
  border-bottom: 1px solid #cccccc;
  border-radius: 0;
}

.ui-widget-content {
  border: none;
}

.ui-accordion .ui-accordion-content {
  padding: 0px 0px 0 86px;
  overflow: visible !important;
  height: 100% !important;
}

.ui-accordion .ui-accordion-content p,
.ui-accordion .ui-accordion-content li {
  font-size: 14px;
}

.ui-state-default .ui-icon {
  background-image: url(/sites/ice_totallygaming/files/plus_icon.png);
}

.ui-state-active .ui-icon {
  background-image: url(/sites/ice_totallygaming/files/minus_icon.png);
}

.ui-icon {
  width: 19px;
  height: 19px;
}

.ui-icon-triangle-1-e,
.ui-icon-triangle-1-s {
  background-position: 100%;
}

.views-accordion-conference_agenda-block-header {
  font-size: 18px;
  color: #fff !important;
  padding: 6px 10px 7px;
  margin-bottom: 0px;
  background-color: #5e2483;
  font-weight: normal !important;
  margin-top: 0px;
}

.pane-conference-agenda .programme-title {
  padding-left: 21px;
  padding-top: 4px;
  color: #000000;
  font-size: 14px;
  font-weight: bold;
  display: table-cell;
  vertical-align: top;
  padding-right: 27px;
}

.pane-conference-agenda .programme-time {
  color: #5e2483;
  font-size: 24px;
  display: table-cell;
}


/* END: CONFERENCE AGENDA */

/* PRESS RELEASES */
.node-press-release .region-inner {
  margin: 0 !important;
}

.press-release-date {
  color: #5e2483;
  font-size: 16px;
  font-weight: bold;
  margin-top: 6px;
}

.freepager-nav {
  float: right;
  margin-top: -24px;
}

.freepager-next, .freepager-previous {
  background-color: #5e2483;
  padding: 8px 60px;
  float: none;
}

.freepager-previous {
  margin-right: 20px;
}

.freepager-next a, .freepager-previous a {
  color: #ffffff;
  font-size: 16px;
  letter-spacing: 1px;
}

.node-press-release .paragraphs-items-field-content {
    margin-top: 40px;
}

.press-release-title {
  color: #5e2483;
  font-size: 18px;
  font-weight: bold;
}

.press-release-content {
  margin-top: 8px;
  border-bottom: 1px solid #ccc;
  margin-bottom: 13px;
}

.press-release-content p {
  margin-bottom: 16px;
}

.press-release-content a {
  text-decoration: none;
  font-weight: 700;
}

.pager-show-more-next a {
  color: #fff;
  padding: 5px 10px;
  background-color: #5e2483;
  text-decoration: none;
  font-weight: bold;
}
/* END: PRESS RELEASES */

.grid-column {
  width: 50%;
  display: inline;
  float: left;
}

.grid-column .column-inner {
  margin-right: 30px;
  margin-bottom: 30px;
}

.player {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px; height: 0; overflow: hidden;
}
 
.player iframe,
.player object,
.player embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.field-name-field-para-video-caption {
  background-color: #444444;
  color: #fff;
  padding: 7.5px 7.5px 0 15px;
  height: 50px;
}

body.fade-in-hidden .default-page-layout{
    opacity:0;
}