/*
 * @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.
 */

/* Page on sticky footer (http://ryanfait.com/resources/footer-stick-to-bottom-of-page/) 
 * and other pages suggests initializing all margins and padding as 0. 
 */
* {
  margin:0;
  padding:0;
} 
 
html {
  background: #f6ecdc;
}


body {
  font-family: "nimbus-sans", "Helvetica Neue", Arial, Helvetica, sans-serif;
  font-size: 87.5%;
}

body:not(.front) #content-column {
  background-color:#C5D3D4;
  margin-top:10px;
}

/* Set the height to 100% so we can use a sticky footer. */
html, body {
  height: 100%;
}


/* =============================================================================
 *   HTML Elements
 * ========================================================================== */

h1 {
   padding: 10px;
   background-color: #8D9D9F;
   margin-bottom: 20px;
}

h1 a {
  font-family: 'nimbus-sans', sans-serif;
  font-size: 38px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
}

h1.node-title a {
  color: #fff;
}

h1 a:hover {
  text-decoration: none;
}

h2 {
  font-family: 'chaparral-pro';
}

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
 * ========================================================================== */

/*
 * 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!
 */

/* 
 * Added a page wrapper div around all page content to get sticky footer to work correctly.
 */
#page-wrapper {
  min-height: 100%;
  height: auto !important;
  height: 100%;
  margin: 0 auto -200px;
}

#page {
/*   min-height: 100%;
  height: auto !important;
  height: 100%;
  margin: 0 auto -200px; */
}

#page .container {}

#brandingwrapper{
  background-color:#e9e9e4;
}

/*
 * Wraps all header elements - branding and .region-header
 */
#header {
  margin-left: auto;
  margin-right: auto;
  max-width: 1140px;
  width:100%;
  display:block;
}

.region-header .block-search .form-type-textfield input{
  width:100px;
  color:rgb(136, 136, 136);
  padding-top: 3px;
padding-bottom: 3px;
padding-left: 10px;
padding-right: 10px;
  border: none;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  padding-left: 7px;
  box-shadow: 0px 0px 10px black;

  -webkit-transition: width .5s;
  -moz-transition: width .5s;
  transition: width .5s;
}

.region-header .block-search .form-type-textfield input:focus{
  width:300px;

}

.region-header .block-search #edit-submit{
  display:none;
}

.region-header .block-search .block-content {
  padding-top: 5px;
}

/*
 * 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 {}

/*
 * Added this div to make sure the footer does not overlap anything.
 */
#push-footer {
  height: 200px;
  clear: both;
}
/*
 * Footer wrapper
 */
#footer {
  background-color: #004750;
  box-shadow: 0 4px 4px -2px #000000;
  color: #F6ECDC;
  height: 180px;
  padding-top: 10px;
  margin-top: 10px;
}

#footer .block-menu {
  float: left;
  width: 33%;
}

#footer .block-title {
  /* text-align: center; */
/*   margin-bottom: 10px;
  margin-top: 10px; */
}

#footer .region-inner {
  margin-left: auto;
  margin-right: auto;
  /* margin-top: 30px; */
  max-width: 1140px;
}

#footer h2,
#footer a,
#footer a:link,
#footer a:visited {
  color: #F7F7F5;
}

/*
 * 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
 */
div.fullwidth {
  width:100%;
}

#branding {
  display:inline-block;
}

/*
 * Logo
 */
#logo {
  padding: 10px 0;
  display:inline-block;
}

#logo img {
  vertical-align: bottom;
  height:103px;
  width:222px;
}

/*
 * Wrapper for the site name and slogan (hgroup)
 */
#name-and-slogan {}

/*
 * Site name (h1)
 */
#site-name {
  margin: 0;
  display:inline-block;
  background-image:url('../images/border-dot.png');
  background-repeat:repeat-x;
  background-position:center;
  vertical-align:top;
  width:150px;
  margin-top:25px;
  font-family:museo-sans, "Helvetica Neue", Arial, Helvetica, sans-serif;
  font-weight:500;
  line-height:1.15em;
  font-size:30px;

}

#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 {
display: inline-block;
padding-left: 10px;
font-size: 17px;
max-width: 400px;
padding-top: 40px;
vertical-align: top;
color: #7B5C5A;
}


/* =============================================================================
 *   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;
}


/* =============================================================================
 *   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 {
  display: inline-block;
  max-width:600px;
  vertical-align: top;
  text-align:right;
}

/*
 * 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 {
  text-decoration: none;
}

a:link,
a:visited {}

.info-wrapper-networking-wrapper a:link,
.info-wrapper-networking-wrapper a:visited,
.info-wrapper-entrepreneurship-wrapper a:link,
.info-wrapper-entrepreneurship-wrapper a:visited,
.info-wrapper-econdevel-wrapper a:link,
.info-wrapper-econdevel-wrapper a:visited {
  color: rgb(246,236,220);
}

a:active,
a.active {}

a:hover,
a:focus {
  text-decoration: underline;
}

a.primary-button {
  background-color: #07373C;
  border: 2px solid #07373C;
  font-size: 16px;
  font-family: 'chaparral-pro';
  font-weight: bold;
  color: #C5D3D4;
  padding: 3px 5px;
}

a:hover.primary-button {
  background: transparent;
  color: #07373C;
}


/* =============================================================================
 *   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;
  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;
}


/* =============================================================================
 *   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.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 English "up" is used (two characters) */
  min-width: 2em;
  white-space: nowrap;
}

.book-navigation .menu {
  margin-left: 0;
}


/* =============================================================================
 *   Breadcrumbs
 * ========================================================================== */

#breadcrumb {
  margin: 10px 0;
}

/* If the label is set to show in theme settings the label class is added */
#breadcrumb .breadcrumb-label {
  font-size: 1em;
  display: inline;
  padding-right: 10px;
}

#breadcrumb .breadcrumb-label:after {
  content: ":";
}

#breadcrumb ol {
  margin: 0;
  padding: 0;
}

#breadcrumb .with-breadcrumb-label ol {
  display: inline;
}

#breadcrumb li {
  list-style: none;
  display: inline;
}

#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;
}

.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: 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: 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 {}

/*
 * 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: 5px;
}

/*
 * 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 {}

/*
 * "Search forum" block
 */
.view-forum-search {}

.view-forum-search .view-content {
/*   border: solid;
  border-width: 1px; */
}

.view-forum-search .views-row {
  border-top: solid;
  border-width: 1px;
}

.view-forum-search .views-row-first {
  border-top: 0;
}

.view-forum-search .region-two-33-66-first {
  border-right: solid;
  border-width: 1px;
  /* This keeps the boarder from messing with the placement of region-two-33-66-second */
  margin-left: -1px;
}

.view-forum-search .region-two-33-66-bottom{
  border-top: solid;
  border-width: 1px;
}

#content .view-id-forum_search .panel-display {
  margin-left: 0px;
  margin-right: 0px;
}

/*
 * "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 {
  width:100%;
}

.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.views-view-grid {
  table-layout: fixed;
  width: 100%;
}

table.views-table caption {
  font-size: 1.17em;
  margin: 1em 0;
  font-weight: bold;
}

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;
}


/*
 OM navigation settings
 */

#header .topright_wrapper{
  display:inline;
  float:right;
  text-align:right;
}

#header .topmenu_wrapper{
}

.topmenu_wrapper .topmenu_button{
  display:inline-block;
  height:85px;
  width:50px;
  padding-left:20px;
  padding-right:20px;
}

.topmenu_wrapper .topmenu_smallbutton{
    display:inline-block;
  height:40px;
  width:40px;
  padding-left:20px;
  padding-right:20px;
}

.region-header #om-menu-top-menu .om-leaf {
  display:inline-block;
  min-width:60px;
  min-height:50px;
  height:0px;
  padding-right:10px;
}

.region-header .leaf-networking a img {
  padding-top:5px;

}
.region-header .leaf-entrepreneur a img {

}
.region-header .leaf-economic-development a img {
  padding-top:15px;

}



.region-header .block-om-maximenu {
  float:right;
  padding-top:20px;
  padding-left:15px;
}

.region-header #om-menu-top-menu{
  float:none;
}

.region-header #om-menu-top-menu .leaf-settings img{
  min-height:0px;
  width:40px;
  padding-top:10px;
  padding-left:10px;
}

.region-header #om-menu-top-menu .leaf-settings .om-maximenu-content{
  top:60px;
}

.leaf-settings .om-maximenu-content{
  left:-25px;
  /*width:100px;*/
  min-width:25px;
}


.om-maximenu ul.om-menu {
  height:0px;
}

.om-maximenu ul.om-menu li.om-leaf .om-link{
  height:0px;
}

/*
  can update this with displace option on phone
 */

.om-maximenu .om-maximenu-content {
  top: 57px;
}



/*
 The front page edits
 */
body.page-home div.homepage-middlecontent{
  max-height:100px;
  overflow:hidden;
}

body.page-home img.home-screenfold-image{

}

/* Business Ecosystem Map styling */
.view-gmap-key-icon {
  padding-left: 14px;
  padding-right: 14px;
  margin-right: 10px;
}
.page-business-ecosystem-map .pane-custom.pane-1 .block-inner .block-content {
  margin-left: 10px;
}
.page-business-ecosystem-map .pane-custom.pane-1 .block-inner .block-content h2{
  margin: 0;
}
.page-business-ecosystem-map .pane-custom.pane-1, 
.pane-views-b8b8b9f5f796217fe03087352b57a51a {
  border-radius: 25px;
  border: 2px solid #8D9D9F;
  padding: 10px;
}

.view-gmap-key-icon-line {
  padding-top: 10px;
  margin-right: 10px;
}

.view-gmap-key-icon-endpoint {
  padding-top: 10px;
  padding-left: 16px;
  padding-right: 16px;
  margin-right: 10px;
}

.page-business-ecosystem-map .view-gmap-key-icon {
  /* padding-right: 10px; */
}

/* Business Entity styling */
[class*='business'] #html_form fieldset,
[class*='supporter'] #html_form fieldset,
[class*='community-asset'] #html_form fieldset {
  border: 1px solid #fff;
}

[class*='business'] fieldset span,
[class*='supporter'] fieldset span,
[class*='community-asset'] fieldset span{
  font-weight: bold;
}
 
.node-type-working-groups  .membership-actions,
.node-type-business-case .membership-actions,
.node-type-working-groups .view-cbn-associated .views-field-nothing,
.node-type-business-supporters .membership-actions {
  font-size: 10px;
}

.node-type-working-groups .full-list {
  vertical-align: top;
}

.node-type-working-groups .full-list,
.node-type-working-groups .membership-roles,
.node-type-working-groups .view-cbn-associated .views-field-php,
.node-type-business-case .membership-roles,
.node-type-business-supporters .membership-roles {
  font-size: 12px;
}

.node-type-business-case tr {
  border-top: 0;
}

.node-type-business-case .view-mode-editable tr:nth-child(2n+2), 
.node-type-business-case .view-mode-editable_partial tr:nth-child(2n+2) {
  border-bottom: 0;
  background-color: #f6ecdc;
}

.node-type-working-groups .view-cbn-associated tr:nth-child(2n+2),
.node-type-working-groups .view-group-members tr:nth-child(2n+2),
.node-type-networking-groups .view-group-members tr:nth-child(2n+2) {
  border-bottom: 0;
  background-color: transparent;
}

.node-type-business-case .view-mode-non_editable tr:nth-child(2n+2){
  border-bottom: 0;
  background-color: #C5D3D4;
}

.page-entrepreneur-section .section_head,
.page-networking-section .section_head,
[class*='business'] .section_head,
[class*='supporter'] .section_head,
[class*='community-asset'] .section_head {
  border-top:thick solid #004750;
  padding:10px;
  margin-top:5px;
  font-size: 20px;
  text-transform: uppercase;
}

.node-type-business-case-tracking fieldset{
/*   border-top:thick solid #004750; */
/*   padding:10px; */
/*   margin-top:5px; */
/*   font-size: 20px; */
/*   text-transform: uppercase; */
}

.page-networking-section .section_content.content_expanded,
.page-entrepreneur-section .section_content.content_expanded,
[class*='business']  .section_content.content_expanded{
  display: block;
}

.page-entrepreneur-section span.expandbutton,
.page-networking-section span.expandbutton,
[class*='supporter']  span.expandbutton,
[class*='business']  span.expandbutton,
[class*='community-asset']  span.expandbutton{	
  background-image: url('../images/expandbutton.png');
  display:inline-block;
  margin-right:15px;
  height:20px;
  width:20px;
  background-position: 0px 0px;
  cursor:pointer;
}

.node-type-business-case-tracking span.fieldset-legend{	
/*   background-image: url('../images/expandbutton.png'); */
/*   display:inline-block; */
/*   margin-right:15px; */
/*   height:20px; */
/*   width:20px; */
/*   background-position: 0px 0px; */
/*   cursor:pointer; */
}

.header_title {
  font-family: 'chaparral-pro';
  font-weight: bold;
  color: #07373C;
  cursor:pointer;
}

.node-type-business-case-tracking legend a{
/*   font-family: 'chaparral-pro'; */
/*   font-weight: bold; */
/*   color: #07373C; */
/*   cursor:pointer; */
}

.page-entrepreneur-section span.image_expanded,
.page-networking-section span.image_expanded,
[class*='business']  span.image_expanded,
[class*='supporter'] span.image_expanded,
[class*='community-asset'] span.image_expanded{
  background-position: 20px 0px;
}

/* .page-entrepreneur-section div.section_content, */
.page-entrepreneur-section section.section_content,
.page-networking-section section.section_content.hg_content,
.page-networking-section section.section_content.forum_content,
.page-networking-section section.section_content.ng_content,
.page-networking-section section.section_content.cbn_content,
.page-networking-section div.section_content.cbn_content,
[class*='supporter'] div.section_content,
[class*='business'] div.section_content,
[class*='business'] section.section_content.bccbn_content,
[class*='business'] section.section_content.bcconnections_content,
[class*='business'] section.section_content.bcactivity_content,
[class*='community-asset'] div.section_content{
  max-height:0px;
  overflow:hidden;
}

/* .page-entrepreneur-section div.content_expanded, */
.page-entrepreneur-section section.content_expanded,
.page-networking-section section.content_expanded.hg_content,
.page-networking-section section.content_expanded.forum_content,
.page-networking-section section.content_expanded.ng_content,
.page-networking-section section.content_expanded.cbn_content,
.page-networking-section div.content_expanded.cbn_content,
[class*='supporter'] div.content_expanded,
[class*='business'] div.content_expanded,
[class*='business'] section.content_expanded.bccbn_content,
[class*='business'] section.content_expanded.bcconnections_content,
[class*='business'] section.content_expanded.bcactivity_content,
[class*='community-asset'] div.content_expanded{
  max-height:inherit;
  overflow:hidden;
}

[class*='business'] .node-business-case fieldset,
[class*='business'] .node-business fieldset{
  float: left;
  padding: 0;
  margin: 0;
}

/* .section_content a { */
/*   color: #07373C; */
/* } */

/* .page-entrepreneur-section a.primary-button, */
/* .page-node-members a.primary-button, */
/* .page-node-is-working-with a.primary-button, */
/* .page-networking-section a.primary-button, */
/* .cbn_panel_left_above a.primary-button, */
/* .cbn_panel_right_above a.primary-button, */
/* .bchelp_content.section_content + a.primary-button, */
/* .page-node-message-list a.primary-button, */
/* .page-node-to-do-list a.primary-button, */
/* .page-node-post-list a.primary-button, */
/* .page-node-events-list a.primary-button, */
/* [class*='business'] .container.page a.new-businesscase.primary-button, */
/* [class*='business'] .container.page a.new-cbn.primary-button, */
/* [class*='business'] .container.page .bcpopup-button a, */
/* [class*='business'] .container.page .layerfilter a, */
/* [class*='business'] .container.page a.primary-button, */
/* [class*='business'] .ui-dialog a.primary-button, */
/* [class*='supporter'] .container.page a.new-businesscase.primary-button, */
/* [class*='supporter'] .container.page a.new-cbn.primary-button, */
/* [class*='supporter'] .container.page .bcpopup-button a, */
/* [class*='supporter'] .container.page .layerfilter a, */
/* [class*='supporter'] .container.page a.primary-button, */
/* [class*='supporter'].ui-dialog a.primary-button, */
/* [class*='community-asset'] .container.page a.new-cbn.primary-button, */
/* [class*='community-asset'] .container.page .bcpopup-button a, */
/* [class*='community-asset'] .container.page .layerfilter a, */
/* [class*='community-asset'] .container.page a.primary-button, */
/* [class*='community-asset'].ui-dialog a.primary-button, */
/* .bchelp_content.section_content + a.primary-button { */
/*   background-color: #07373C; */
/*   border: 2px solid #07373C; */
/*   font-size: 16px; */
/*   font-family: 'chaparral-pro'; */
/*   font-weight: bold; */
/*   color: #C5D3D4; */
/*   padding: 3px 5px; */
/* } */

/* Add some padding to the right of the buttons in the connection section */
.page-entrepreneur-section a.primary-button,
.page-node-is-working-with a.primary-button,
.cbn_panel_right_above a.primary-button.connection-button,
[class*='business'] .container.page a.new-businesscase.primary-button,
[class*='business'] .container.page a.primary-button.connection-button,
[class*='business'] .ui-dialog a.primary-button.connection-button,
[class*='community-asset'] .container.page a.primary-button.connection-button,
[class*='community-asset'] .ui-dialog a.primary-button.connection-button,
[class*='supporter'] .container.page a.primary-button.connection-button,
[class*='supporter'] .ui-dialog a.primary-button.connection-button {
  margin-right: 5px;
}

/* Align the buttons in this section. */
.cbn_panel_right_above .view-header p,
.cbn_panel_right_above .view-empty p {
  margin: 0 0 0;
  width: 100%;
  display: table;
  table-layout: fixed;
  border-spacing: 5px;
}

/* .page-entrepreneur-section a.primary-button:hover, */
/* .page-node-members a.primary-button:hover, */
/* .page-node-is-working-with a.primary-button:hover, */
/* .page-networking-section a.primary-button:hover, */
/* .page-node-message-entry-list a.primary-button:hover, */
/* .page-node-to-do-list a.primary-button:hover, */
/* .cbn_panel_left_above a.primary-button:hover, */
/* .cbn_panel_right_above a.primary-button:hover, */
/* [class*='business'] .container.page a:hover.new-businesscase.primary-button, */
/* [class*='business'] .container.page a:hover.new-cbn.primary-button, */
/* [class*='business'] .container.page .bcpopup-button a:hover, */
/* [class*='business'] .container.page .layerfilter a:hover, */
/* [class*='business'] .container.page a.primary-button:hover, */
/* [class*='business'] .ui-dialog a.primary-button:hover, */
/* [class*='supporter'] .container.page a:hover.new-cbn.primary-button, */
/* [class*='supporter'] .container.page .bcpopup-button a:hover, */
/* [class*='supporter'] .container.page .layerfilter a:hover, */
/* [class*='supporter'] .container.page a:hover.primary-button, */
/* [class*='supporter'] .ui-dialog a:hover.primary-button, */
/* [class*='community-asset'] .container.page a:hover.new-cbn.primary-button, */
/* [class*='community-asset'] .container.page .bcpopup-button a:hover, */
/* [class*='community-asset'] .container.page .layerfilter a:hover, */
/* [class*='community-asset'] .container.page a:hover.primary-button, */
/* [class*='community-asset'] .ui-dialog a:hover.primary-button, */
/* .bchelp_content.section_content + a:hover.primary-button { */
/*   background: transparent; */
/*   color: #07373C; */
/* } */

.node-type-business-case .ui-dialog .field-label-inline .field-items {
  margin-top: 0.83em;
}

.bchelp_content.section_content + a.primary-button {
  float: right;
  position: relative;
  top: -30px;
  text-transform: uppercase;
}

.bchelp_content.section_content.content_expanded + a.primary-button {
  top: -90px;
}


/*h1 Node Title Styles*/
/* .page-cbn-is-working-with h1.node-title, */
/* .page-node-is-working-with h1, */
/* .page-business-entity-map h1, */
/* .page-business-ecosystem-map h1, */
/* .page-member-search h1, */
/* .page-dashboard h1, */
/* .page-about h1, */
/* .page-contact h1, */
/* .page-my-groups h1, */
/* .page-node-members h1, */
/* .view-help-index h1, */
/* .view-header h1, */
/* .node-type-help-page h1, */
/* [class*='working'] .pane-node-title h1, */
/* [class*='business'] .node-working-groups h1.node-title, */
/* [class*='business'] .node-business-case h1.node-title, */
/* [class*='business'] .node-business h1.node-title, */
/* [class*='business'] .node-business-community-asset h1.node-title, */
/* [class*='business'] .node-business-supporters h1.node-title, */
/* [class*='business'] [id*='businesscaseapp-form-new-business-entity-form'] h1.node-title, */
/* [class*='supporter'] .node-business-case h1.node-title, */
/* [class*='supporter'] .node-business h1.node-title, */
/* [class*='supporter'] .node-business-supporters h1.node-title,  */
/* [class*='supporter'] .node-working-groups h1.node-title, */
/* [class*='community-asset'] .node-business-community-asset h1.node-title, */
/* [class*='community-asset'] .node-business-case h1.node-title, */
/* [class*='community-asset'] .node-business h1.node-title, */
/* [class*='community-asset'] .node-business-supporters h1.node-title,  */
/* [class*='community-asset'] .node-working-groups h1.node-title */
/* { */
/*     padding: 10px; */
/*     background-color: #8D9D9F; */
/*     margin-bottom: 20px; */
/* } */

.page-networking-section h2.pane-title.block-title,
.page-entrepreneur-section h2.pane-title.block-title,
[class*='working'] .pane-node-title h2.pane-title {
  display:none;
}

/* [class*='working'] .pane-node-title h1 a, */
/* .page-node-is-working-with h1 a, */
/* .page-business-entity-map h1, */
/* .page-business-ecosystem-map h1, */
/* .page-member-search h1, */
/* .page-dashboard h1, */
/* .page-about h1, */
/* .page-contact h1, */
/* .page-my-groups h1, */
/* .page-node-members h1 a, */
/* .view-help-index h1, */
/* .view-header h1 a, */
/* .view-header h1, */
/* .node-type-help-page h1, */
/* [class*='business'] .node-business-case h1.node-title a, */
/* [class*='business'] .node-business h1.node-title a, */
/* [class*='business'] .node-business-community-asset h1.node-title a, */
/* [class*='business'] .node-business-supporters h1.node-title a , */
/* [class*='business'] .node-working-groups h1.node-title a, */
/* [class*='business'] [id*='businesscaseapp-form-new-business-entity-form'] h1.node-title, */
/* .page-cbn-is-working-with h1.node-title, */
/* [class*='supporter'] .node-business-case h1.node-title a, */
/* [class*='supporter'] .node-business h1.node-title a, */
/* [class*='supporter'] .node-business-supporters h1.node-title a,  */
/* [class*='supporter'] .node-working-groups h1.node-title a, */
/* [class*='community-asset'] .node-business-community-asset h1.node-title a, */
/* [class*='community-asset'] .node-business-case h1.node-title a, */
/* [class*='community-asset'] .node-business h1.node-title a, */
/* [class*='community-asset'] .node-business-supporters h1.node-title a,  */
/* [class*='community-asset'] .node-working-groups h1.node-title a { */
/*   font-family: 'nimbus-sans', sans-serif; */
/*   font-size: 38px; */
/*   color: #fff; */
/*   text-transform: uppercase; */
/*   letter-spacing: 1px; */
/* } */

/* [class*='business'] .node-business-case h1.node-title a:hover, */
/* [class*='business'] .node-business-community-asset h1.node-title a:hover, */
/* [class*='business'] .node-working-groups h1.node-title a:hover, */
/* [class*='business'] .node-business h1.node-title a:hover { */
/*   text-decoration: none; */
/* } */

/* Business Entity ajax view results */
.page-supporterapp .view-business-entity-cbn-connections .view-content,
.page-entrepreneur-section .view-business-entity-cbn-connections .view-content,
[class*='business'] .view-business-entity-cbn-connections .view-content,
.page-supporterapp .view-business-entity-connections .view-content,
.page-entrepreneur-section .view-business-entity-connections .view-content,
[class*='business'] .view-business-entity-connections .view-content {
  width: 45%;
  display: inline-block;
  vertical-align: top;
  min-height: 300px
}

.page-supporterapp .view-business-entity-cbn-connections .item-list.item-list-pager,
.page-entrepreneur-section .view-business-entity-cbn-connections .item-list.item-list-pager,
[class*='business'] .view-business-entity-cbn-connections .item-list.item-list-pager,
.page-supporterapp .view-business-entity-connections .item-list.item-list-pager,
.page-entrepreneur-section .view-business-entity-connections .item-list.item-list-pager,
[class*='business'] .view-business-entity-connections .item-list.item-list-pager {
  max-width: 45%;
  position: absolute;
  bottom: 1px;
  vertical-align: bottom;
}

.page-supporterapp .view-business-entity-cbn-connections .attachment.attachment-after,
.page-entrepreneur-section .view-business-entity-cbn-connections .attachment.attachment-after,
[class*='business'] .view-business-entity-cbn-connections .attachment.attachment-after,
.page-supporterapp .view-business-entity-connections .attachment.attachment-after,
.page-entrepreneur-section .view-business-entity-connections .attachment.attachment-after,
[class*='business'] .view-business-entity-connections .attachment.attachment-after {
  width: 50%;
  display: inline-block;
  vertical-align: top;
  /* float: right; */
}

.page-supporterapp .view-business-entity-cbn-connections .attachment.attachment-after .view-content,
.page-entrepreneur-section .view-business-entity-cbn-connections .attachment.attachment-after .view-content,
[class*='business'] .view-business-entity-cbn-connections .attachment.attachment-after .view-content,
.page-supporterapp .view-business-entity-connections .attachment.attachment-after .view-content,
.page-entrepreneur-section .view-business-entity-connections .attachment.attachment-after .view-content,
[class*='business'] .view-business-entity-connections .attachment.attachment-after .view-content {
  width: 100%;
}

[class*='business'] section.pane-quicktabs-business-entity-cbn h2,
[class*='business'] section.pane-quicktabs-business-entity-activity h2,
[class*='business'] section.pane-quicktabs-business-entity-business-entity h2.pane-title.block-title {
  display: none;
}

/*Field Group Styles*/
/*.page-businesscaseapp .node-business-case .group-case-info {
  float: left;
}

.page-businesscaseapp .node-business-case .group-security {
  clear: left;
}*/

/*Tabs*/
.section_content .horizontal-tabs {
  border: none;
  margin: 0;
  float: left;
  width: 100%;
}

.section_content .horizontal-tabs ul.horizontal-tabs-list {
  width: auto;
  background: transparent;
  border-right: none;
}

.section_content .horizontal-tabs ul.horizontal-tabs-list li {
  padding-right: 20px;
  background: transparent url(../images/tab-normal.png) top right no-repeat;
  border-right: none;
  position: relative;
  height: 32px;
}

.section_content .horizontal-tabs ul.horizontal-tabs-list li.selected {
  background: url(../images/tab-selected.png) top right no-repeat;
  z-index: 2;
}

.section_content .horizontal-tabs ul.horizontal-tabs-list li a {
  background-color: #6B9196;
  color: #F6ECDC;
  border-left: 1px solid #07373C;
  border-top: 1px solid #07373C;
}

.section_content .horizontal-tabs ul.horizontal-tabs-list li.selected a {
  background-color: #07373C;
  border-left: 1px solid #07373C;
  border-top: 1px solid #07373C;
}

.section_content .horizontal-tabs ul.horizontal-tabs-list li.selected a strong {
  color: #F6ECDC;
}

/*Tab Panes*/
.section_content .horizontal-tabs-panes {
  border-top: 3px solid #07373C;
  padding: 20px 0 0 0;
  margin-top: -6px;
}


/*Broad Field Styles*/
/* .cbn_33_field,  */
.bcprofile_content section.view-mode-editable,
.bcprofile_content section.view-mode-editable_partial,
.bcprofile_content section.view-mode-non_editable,
.bcprofile_content section.view-mode-teaser {
  float: left;
  margin-right: 1%;
  width: 31%;
}

.bcprofile_content section.field-name-field-supplychain,
.bcprofile_content section.field-name-field-members  {
  clear: left;
}

.bcprofile_content fieldset section.view-mode-editable,
.bcprofile_content fieldset section.view-mode-editable_partial,
.bcprofile_content fieldset section.view-mode-non_editable,
.bcprofile_content fieldset section.view-mode-teaser,
.bcprofile_content fieldset {
  width: 100%;
}

.bcprofile_content section.field, 
.bcprofile_content fieldset{
  min-width:300px;
}

.cbn_panel_top form.editable-field,
.cbn_panel_left_above form.editable-field,
.cbn_panel_right_above form.editable-field,
.section_content form.editable-field,
.section_content .view-mode-editable .view-group-members,
.section_content.view-mode-editable .view-group-members,
.section_content .view-mode-editable_partial .view-group-members,
.bcprofile_content section.view-mode-teaser .field-items,
.bcprofile_content section.view-mode-non_editable  .field-items {
  float: left;
  width: 100%;
  padding: 15px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

.cbn_panel_top form.editable-field,
.section_content form.editable-field,
.section_content .view-mode-editable .view-group-members,
.section_content .view-mode-editable_partial .view-group-members,
.bcprofile_content section.view-mode-teaser .field-items,
.bcprofile_content section.view-mode-non_editable  .field-items{
  margin-bottom: 40px;
}

/* Some additional formatting that only editable fields should have. */
.block-content form.editable-field,
.section_content form.editable-field,
/* .section_content .view-business-supporters-supporting, */
.section_content .view-mode-editable_partial .view-group-members,
.section_content .view-mode-editable .view-group-members,
.section_content.view-mode-editable .view-group-members,
/* body.not-logged-in .section_content div.field-items, */
.bcprofile_content section.view-mode-teaser .field-items{
  background-color: #F6ECDC;
  ebkit-box-shadow: inset 1px 1px 3px #7F7564;
  box-shadow: inset 1px 1px 3px #7F7564;
}

.page-node-is-working-with .view-header h2,
.page-networking-section .three-inset-left h2,
.cbn_panel_left_below h2,
.cbn_panel_right_above h2,
.cbn_panel_left_above h2,
.cbn_panel_top h2,
.cbn_panel_middle h2,
.section_content h2  {
  padding: 5px;
  background-color: #8D9D9F;
  color: #fff;
  font-family: 'nimbus-sans', sans-serif;
  font-weight: bold;
  font-size: 18px;
  margin-top: 0;
  /* float: left; */
  width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}
.node-type-business-case .section_content h2  {
  float: left;
}

.section_content h3 {
  float: left;
  width: 100%;
  clear: left;
}

.section_content h3,
.view-og-networking-front-page caption,
.view-og-cbn-front-page caption  {
  padding: 5px;
  background-color: #8D9D9F;
  color: #fff;
  font-family: 'nimbus-sans', sans-serif;
  font-weight: bold;
  font-size: 18px;
  margin-top: 0;
  margin-bottom: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

.section_content ul.field-items {
  margin: 0;
  padding-left: 0;
  list-style: none;
}

.section_content table {
  border: none;
  float: left;
  width: 98%;
}

.section_content table thead {
  border-color: transparent;
  background-color: #8D9D9F;
  color: #fff;
}

.section_content table thead tr {
  background-color: #8D9D9F;
}


/*Specific Field Styles*/

  /*Help Guidence*/
  .bchelp_content {
    /* padding: 15px; */
    /* background-color: #F6ECDC; */
    /* -webkit-box-shadow: inset 1px 1px 3px #7F7564; */
    /* box-shadow: inset 1px 1px 3px #7F7564; */
  }

  /*BC Logo Related*/
  .section_content .field-name-field-bclogo.view-mode-editable .field-items {
/*     float: left; */
  }

  .section_content .field-name-field-bclogo img {
    max-height: 165px;
  }

  /*BC Location Related*/
/*  .page-businesscaseapp .node-business-case #editablefields-field-location form.editable-field {
    margin-right: 0;
    clear: left;
  }*/

  /*Input and Output*/
  .section_content .field-type-taxonomy-term-reference {
    margin-bottom: 0;
  }

  /*View Organizations*/

  /*Filter Map*/
  #filter_map input#edit-textslider {
    width: 30px;
    text-align: center;
  }

/*Select Business Case*/

.bcdraft_content .views-field-title a ,
.bcselect_content .views-field-title a {
  display: block;
  font-family: 'nimbus-sans', sans-serif;
  font-weight: bold;
  font-size: 14px;
  margin-top: 0;
}

/*Business Case Map*/
.section_content div.olMap {
  margin-bottom: 50px !important;
  padding: 15px;
  background-color: #F6ECDC;
  -webkit-box-shadow: inset 1px 1px 3px #7F7564;
  box-shadow: inset 1px 1px 3px #7F7564;
}

.buscasetag {
  padding: 15px;
  background-color: #F6ECDC;
  -webkit-box-shadow: inset 1px 1px 3px #7F7564;
  box-shadow: inset 1px 1px 3px #7F7564;
  display: block;
  float: left;
/*  position: relative;
  top: 13px;*/
}

/*Connections*/
.view-my-support-organizations.view-display-id-block_3 {
  padding-top: 15px;
  clear: both;
}

.view-input-output-word-cloud {
  padding-bottom: 15px;
}

.bcconnections_content .views-exposed-form .views-exposed-widget .form-submit {
  margin-top: 2.3em;
}

.bcconnections_content .views-row {
  margin-bottom: 1em;
}

.bcconnections_content .suggested_results a:hover.primary-button {
  color: #07373c;
  background-color: transparent;
}

.bcconnections_content .coninfo {
  margin: 10px 0;
}

.bcconnections_content .suggested_results section {
  display: block;
  width: 100%;
  float: left;
  margin-bottom: 20px !important;
}

.bcconnections_content .suggested_results .field-items {
  padding: 5px;
  background-color: #F6ECDC;
  -webkit-box-shadow: inset 1px 1px 3px #7F7564;
  box-shadow: inset 1px 1px 3px #7F7564;
  display: block;
  float: left;
  min-height: 27px
}

.bcconnections_content .suggested_results .field-name-body {
  float: left;
  margin-bottom: 20px;
}

.bcconnections_content .suggested_results .field-items p {
  margin-bottom: 0;
}

.bcconnections_content .suggested_results .field-name-field-bclogo {
  clear: left;
  margin-bottom: 20px;
  float: left;
}

.bcconnections_content .suggested_results h2 {
  clear: left;
}

.bcconnections_content .suggested_results .field-type-taxonomy-term-reference ul.field-items {
  margin: 0;
  padding: 10px;
  list-style: none;
}

/*Collaborative Business Networks*/
.bccbn_content .view-cbn-bc-working-groups {
  padding: 5px;
  background-color: #F6ECDC;
  -webkit-box-shadow: inset 1px 1px 3px #7F7564;
  box-shadow: inset 1px 1px 3px #7F7564;
}

.cbn_panel_right_above .block-inner,
.cbn_panel_left_above .block-inner,
.cbn_panel_middle .block-inner {
  border-radius: 12px;
  border: 1px solid #8D9D9F;
  padding: 5px;
}

/*BC Activity*/

.view-business-case-timeline .heartbeat-activity a {
  margin-right: 3px;
  padding: 2px 5px;
  background-color: #07373C;
  color: #C5D3D4;
  margin-bottom: 3px;
}

.view-business-case-timeline .heartbeat-activity a:hover {
  background-color: #8D9D9F;
  color: #07373C;
}

.view-business-case-timeline .views-row {
  margin-bottom: 10px;
}

.view-business-case-timeline .heartbeat-activity .heartbeat-time-ago a, .view-business-case-timeline .heartbeat-activity .hover-delete a {
  background-color: transparent;
  color: #07373C;
}

/*BC Supporter App Specifics*/
.section_content .infospace h2 {
  float: none;
}

/*Adjustments for Anonymous Users*/
.not-logged-in .bcconnections_content {

}

.bcactivity_header.section_head {
  padding: 10px 9px;
}



/*
Editable fields helper
 */
.editable-field .field-item p{
  margin:0;
  padding:10px;
}

.editable-field .field-label{
  display:none;
}




/*
FRONT PAGE STYLES
 */

 .front .pane-custom.pane-1 .block-inner {
  margin: 0;
 }

.info-wrapper {
  width:100%;
  min-width:320px;
  color: rgb(246,236,220);
  position:relative;
  z-index:0;
}

.info-wrapper .info-wrapper-networking-wrapper{
  background-color: rgb(147,50,53);
}

.info-wrapper .info-wrapper-econdevel-wrapper{
  background-color: rgb(123,92,90);
}

.info-wrapper .info-wrapper-entrepreneurship-wrapper{
  background-color: rgb(0,149,120);
}

.info-wrapper .subwrapper{
  width:98.65%;
  height:100px;
  padding: 10px 0 10px 15px;
  border-top: 7px solid rgb(246,236,220);
  border-bottom: 7px solid rgb(246,236,220);
  cursor:pointer;
}

.info-wrapper .header{
  margin:0px;
  font-family: 'chaparral-pro', serif;
}

.info-wrapper .subtext {
  font-size:14px;
  font-family: 'nimbus-sans';
  font-weight: 600;
  max-width:550px;
  margin:0px;
}

.info-wrapper .localeconomy-image{
  float:right;
  height:350px;
  margin-top:50px;
  padding-right:20px;
}

.info-wrapper .icon-image{
  float:right;
  margin-right: 70px;
  margin-top: 15px;
}

.info-wrapper .minorline{
  background-color: rgb(246,236,220);
  position: absolute;
  width: 11px;
  height: 57px;
  right: 398px;
}

.info-wrapper .info-wrapper-networking-wrapper .minorline{
  top: 132px;
}

.info-wrapper .info-wrapper-econdevel-wrapper .minorline{
  top: 266px;
}


.info-wrapper .mainline{
  background-color: rgb(246,236,220);
  position: absolute;
  width: 95px;
  height: 11px;
  right: 270px;
  top: 222px;
}

.info-wrapper .localeconomy-image-gear{
  position: absolute;
  top: 170px;
  right: 105px;
  width:100px;
  height:100px;

  -webkit-transition-duration: 4s;
  -moz-transition-duration: 4s;
  -o-transition-duration: 4s;
  transition-duration: 4s;

  -webkit-transition-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
  -o-transition-property: -o-transform;
  transition-property: transform;
}


.box-rotate
{
  -webkit-transform:rotate(360deg);
  -moz-transform:rotate(360deg);
  -o-transform:rotate(360deg);
  transform:rotate(360deg);
}

.box-shadow{
   -moz-box-shadow:    0 0 10px #000000;
   -webkit-box-shadow: 0 0 10px #000000;
   box-shadow:         0 0 10px #000000;
}

.has-lightning-hoz{
  background-image: url("../images/lightning_hoz.gif");
}

.has-lightning{
  background-image: url("../images/lightning.gif");
}

.lightning-rot{
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
}

.hightlightbox{
  background-color:gray;
}

.region-three-33-first .region-inner, .region-three-33-second .region-inner, .region-three-33-third .region-inner {
  padding: 10px;
  margin-top: 20px;
  background-color: #BEB1A1;
}

body.page-home section.activitybox {
  background-color: #F6ECDC;
  box-shadow: inset 1px 1px 3px #7F7564;
  /* min-height: 250px; min height is now handled by Equal Heights module.*/
}

body.page-home section.activitybox h2 {
  font-family: 'chaparral-pro', serif;
  font-size: 28px;
  color: #6B6251;
  text-shadow: 1px 1px 1px;
  margin-bottom: 12px;
  border-bottom: 1px solid #BEB1A1;
}

body.page-home .view-business-case-timeline .heartbeat-activity a {
  background-color: #6B6251;
  color: #F6ECDC;
}

body.page-home .view-business-case-timeline .heartbeat-activity a:hover {
  background-color: #BEB1A1;
  color: #6B6251;
}

body.page-home .heartbeat-activity {
  line-height: 1.75em;
}

body.page-home .view-networking-activity .views-field-field-bclogo{
  min-height: 75px;
  display: table;
  width:100%;
}

body.page-home .view-networking-activity .field-content {
  display: table-cell;
  vertical-align: bottom;
}

/**
 * Here is the management section css
 */

.sideload-wrapper .view{
  width: 45%;
  display: inline-block;
  vertical-align: top;
}

.sideload-wrapper .sideload-results{
  display: inline-block;
  /* max-width: 50%; */
  width: 50%;
}

.sideload-wrapper {
  position:relative;
}

.node-readmore a{
  display:none;
}

/**
 * User Dashboard
 */
.view-group-invitations .views-row .views-field-field-mailhash-1 {
  padding-bottom:20px;
}

.view-group-invitations .views-row.views-row-last .views-field-field-mailhash-1 {
  padding-bottom:0px;
}

/**
 * Business Case application
 */
/* .page-entrepreneur-section  #columns, */
/* [class*='business'] #columns, */
/* [class*='supporter'] #columns, */
/* [class*='community-asset'] #columns, */
/* [class*='working'] #columns, */
/* [class*='cbn'] #columns */
/* { */
/*   background-color:#C5D3D4; */
/*   margin-top:10px; */
/* } */

[class*='business'] .leaderrunner-wrapper li.active-leaf
{
  background-color: #C5D3D4;
  padding-bottom: 10px;
}


/* Tags cloud. */
.view-input-output-word-cloud { line-height:180%; }
.view-input-output-word-cloud .views-field-name { float:left; padding:0 2px 0 0; }
.view-input-output-word-cloud .views-field-tid { float:left; padding:0 10px 0 0;  }


/**
 * Leader runner
 */

div.leaderrunner {
  background-color:#004750;
  min-height:30px;
-webkit-box-shadow: 0 4px 4px -2px #000000;
   -moz-box-shadow: 0 4px 4px -2px #000000;
        box-shadow: 0 4px 4px -2px #000000;
  color:#F6ECDC;
}

div.leaderrunner div.leaderrunner-wrapper{
    max-width:1140px;
  margin:auto;
}

div.leaderrunner ul.menu{
  display:inline-block;
}

div.leaderrunner-wrapper div.om-maximenu-block{
  display:inline-block;
  vertical-align:top;
}



div.leaderrunner-wrapper div.om-maximenu-block ul.om-menu li a.om-link {
  color:#F6ECDC;
  font-size:16px;
}



div.leaderrunner-wrapper div.om-maximenu-block ul.om-menu li.active-leaf a.om-link{
  text-decoration:underline
}

[class*='business'] div.leaderrunner-wrapper div.om-maximenu-block ul.om-menu li.active-leaf a.om-link,
.node-type-business-case div.leaderrunner-wrapper div.om-maximenu-block ul.om-menu li.active-leaf a.om-link{
  color:#004750;
}


div.leaderrunner-wrapper ul.sf-menu{
  display:inline-block;
}
div.leaderrunner-wrapper ul.sf-menu li a{
  color:#F6ECDC;
  margin-left:20px;
  font-size:12px;
}
div.leaderrunner-wrapper ul.sf-menu li a:active{
  color:blue;
}

div.leaderrunner-wrapper div.om-maximenu-block ul.om-menu li div.om-maximenu-content{
  /*
  box-shadow: 0px 0px 10px black;
  top:30px;
  */
}

div.leaderrunner-wrapper div.om-maximenu-block ul.om-menu li div.om-maximenu-content div.block h3.title{
  display:none;
}

div.leaderrunner-wrapper .login_form{
  float: right;
  display: inline-block;
  color:#F6ECDC;
  font-size:12px;
}

div.leaderrunner-wrapper div.loginform_wrapper{
  position:absolute;

}

div.leaderrunner-wrapper ul.menu{
  margin:0px;
}
div.leaderrunner-wrapper ul.menu li a{
  color:#F6ECDC;
  font-size:12px;
  padding-left:20px;
}
div.leaderrunner-wrapper ul.menu li a:active{
  color:blue;
}

div.leaderrunner-wrapper span.welcomeboard {
  color:#F6ECDC;
  float:right;
  font-size:12px;
}

div.leaderrunner-wrapper #om-maximenu-login-menu ul.om-menu li{
  color:white;
}

ul.menu li.active a,
ul.menu li.active-trail a {}

div.leaderrunner-wrapper ul.menu li.active a,
div.leaderrunner-wrapper ul.menu li.active-trail a {
  background-color: #C5D3D4;
  padding-bottom: 17px;
  padding-right: 25px;
  color:#004750;
}

[class*='supporter'] div.leaderrunner-wrapper ul.menu li.active a,
[class*='supporter'] div.leaderrunner-wrapper ul.menu li.active-trail a, 
[class*='community-asset'] div.leaderrunner-wrapper ul.menu li.active a,
[class*='community-asset'] div.leaderrunner-wrapper ul.menu li.active-trail a, 
[class*='business'] div.leaderrunner-wrapper ul.menu li.active a,
[class*='business'] div.leaderrunner-wrapper ul.menu li.active-trail a {
  padding-top: 10px;
  font-weight: 900;
}

div.leaderrunner ul.menu li{
  display:inline-block;
  font-size:16px;
}


/*
Fade Bottom
 */
/*.fade_bottom {
  width: 100%;
  height: 85px;
  z-index: 99;
  background: url("/sites/all/modules/businesscaseapp/image/fade_bottom.png") bottom center repeat;
  position: relative;
  margin-left: -10px;
  margin-bottom: -84px;
  left: 10px;
}*/

.new-businesscase,
.new-forum,
.new-ng,
.new-cbn{
  float:right;
}

.cbn_panel_right_above .new-businesscase.primary-button.connection-button {
  float: none;
  margin-bottom: 2px;
  font-size: 12px;
  display: table-cell;
  text-align: center;
}

.header_title{
  display:inline-block;
}

.hidden{
  display:none;
}

/*Jquery UI Tabs Override*/

.ui-widget-content {
  background-color: #fff;
  border: none;
}

.ui-widget-header {
  border: none;
  background: #C5D3D4;
}

#map_filter_slider_div .ui-widget-header {
  background-color: #fff;
}

.ui-tabs {
  padding: 0;
}

.quicktabs-tabs.quicktabs-style-nostyle,
.ui-tabs .ui-tabs-nav {
  margin: 0 0 6px 0;
  padding: 0;
}

.quicktabs-tabs.quicktabs-style-nostyle li {
	list-style: none;
	float: left;
	top: 0;
	margin: 1px .2em 0 0;
	padding: 0;
	white-space: nowrap;
}

.quicktabs-tabs.quicktabs-style-nostyle li,
.ui-tabs .ui-tabs-nav li.ui-state-default {
  padding-right: 20px;
  margin-bottom: 0;
  background: transparent url(../images/tab-normal.png) top right no-repeat;
  border-right: none;
  position: relative;
  height: 29px;
  border: none;
}

.quicktabs-tabs.quicktabs-style-nostyle li a {
	height: 18px;
	text-decoration: none;
}

.quicktabs-tabs.quicktabs-style-nostyle {
	height: 31px;
}

.quicktabs-tabs.quicktabs-style-nostyle li a,
.ui-tabs .ui-tabs-nav li.ui-state-default a {
  float: left;
  padding: 0.5em 0.6em 0.2em 0.6em;
  background-color: #6B9196;
  color: #F6ECDC;
  border-left: 1px solid #07373C;
  border-top: 1px solid #07373C;
  font-size: 14px;
  font-family: 'Trebuchet MS', sans-serif;
}

.ui-tabs .ui-tabs-nav li.ui-tabs-selected {
  padding-bottom: 0;
}

.quicktabs-tabs.quicktabs-style-nostyle li.active {
	padding-bottom: 1px;
}

.quicktabs-tabs.quicktabs-style-nostyle li.active,
.ui-tabs .ui-tabs-nav li.ui-state-default.ui-state-active {
  background: url(../images/tab-selected.png) top right no-repeat;
}

.quicktabs-tabs.quicktabs-style-nostyle li.active a,
.ui-tabs .ui-tabs-nav li.ui-state-default.ui-state-active a {
  background-color: #07373C;
}

.quicktabs_main.quicktabs-style-nostyle,
.ui-tabs .ui-tabs-panel {
  background-color: #C5D3D4;
  border-top: 3px solid #07373C;
  padding: 20px 0 0 0;
  margin-top: -6px;
}

/* Error Message Overrides */

div.error {
  margin-top: 30px;
  margin-bottom: 30px;
  background-color: #F3DC87;
  box-shadow: 0 0 40px orange;
  color: #BC180C;
  font-family: 'nimbus-sans', sans-serif;
  font-weight: bold;
}

/* Filedepot */
div.view-cbn-filedepot-folders .view-content,
div.view-group-filedepot-folders .view-content {
  padding: 10px 0px
}

div.view-cbn-filedepot-folders .views-row,
div.view-group-filedepot-folders .views-row {
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
  border-bottom: 0px;
  background: #f5f5f5;
}

div.view-cbn-filedepot-folders .views-row-odd,
div.view-group-filedepot-folders .views-row-odd {
  background: #fff;
  border-bottom: 1px solid #ccc;
}

a.folder {
  display: inline-block;
  vertical-align: middle;
  background: url(../images/folder.png) no-repeat center;
  height: 40px;
  width: 40px;
}

/* Atrium Folder Overrides for Organic Groups */

body.node-type-folder .node-folder {
  background: #BEB1A1;
}

body.node-type-folder .atrium-folders-navigator {
  background: none;
  -webkit-border-radius: 0;
  border-radius: 0;
  box-shadow: none;
  -webkit-box-shadow: 0;
}

body.node-type-folder .atrium-folders-navigator .navigator {
  background-color: transparent;
  width: 100%;
}

body.node-type-folder .atrium-folders-navigator.inner {
  float: left;
}

/* Add inset shadow and background color to main content sections */
body.node-type-folder .atrium-folders-navigator .toolbar, 
body.node-type-folder .atrium-folders-navigator .navigator .left, 
body.node-type-folder .atrium-folders-navigator .navigator .right {
  float: left;
  width: 100%;
  box-sizing: border-box;
  padding: 15px;
  background: #F6ECDC;
  -webkit-box-shadow: inset 1px 1px 3px #7F7564;
  box-shadow: inset 1px 1px 3px #7F7564;
  margin-bottom: 20px;
}

body.node-type-folder .atrium-folders-navigator .navigator .left {
  width: 25%;
  margin-right: 20px;
}

body.node-type-folder .atrium-folders-navigator .navigator .right {
  width: 70%;
}

body.node-type-folder .toolbar .buttons {
  margin-bottom: 15px;
}

body.node-type-folder .atrium-folders-navigator .navigator {
  float: left;
}

body.node-type-folder .right .view-folders-folders.view-id-folders_folders a {
  padding: 10px;
  margin-bottom: 15px;
  float: left;
  color: #fefcf2;
  background-color: #07373c;
  border: 6px solid #07373c;
  -webkit-box-shadow: 1px 1px 5px #000;
  box-shadow: 1px 1px 5px #000;
  font-weight: bold;
}

body.node-type-folder .right .view-folders-folders.view-id-folders_folders a:hover {
  background-color: transparent;
  color: #07373c;
}

body.node-type-folder .view-folders-files.view-id-folders_files .view-content {
  float: left;
}

/* Maxi-Menu Styling */

.om-maximenu-no-style .om-maximenu-top {
  position: relative;
  top: -23px;
  height: 20px;
  background: url(/sites/all/modules/om_maximenu/skin/bubble/images/bubble1.png) 50px -77px no-repeat;
}


.om-maximenu-content {
  background-color: #07373C;
  border-radius: 5px;
  border: 4px solid #fff;
  -webkit-box-shadow: 1px 1px 5px #000;
  box-shadow: 1px 1px 5px #000;
  font-weight: bold;
  top: 15px;
}

.om-maximenu-no-style .om-maximenu-middle {
  background: transparent;
  position: relative;
  top: -20px;
}

.om-maximenu-content h3 {
  font-size: 18px;
  font-weight: bold;
  color: #07373C;
  margin: .5em 0;
  background-color: #ACBEBF;
  padding-left: 8px;
}

.om-maximenu-content a {
  color: #FEFCF2;
}

.om-maximenu-content a.active {
  color: #FEFCF2;
  font-weight: bold;
  text-decoration: underline;
}

.om-maximenu-content .views-row-last {
  margin-bottom: 2em;
}

.om-maximenu .om-maximenu-open {
  bottom: 0px;
  right: 5px;
}



