/* $Id: zen.css,v 1.14.2.1 2009/02/13 07:46:04 johnalbin Exp $ */

/*
 * ZEN STYLES
 *
 * This is an example stylesheet. Sub-themes should NOT include the zen/zen.css
 * file, but instead copy this CSS to their own stylesheets.
 *
 * In this stylesheet, we have included all of the classes and IDs from this
 * theme's tpl.php files. We have also included many of the useful Drupal core
 * styles to make it easier for theme developers to see them.
 *
 * Many of these styles are over-riding Drupal's core stylesheets, so if you
 * remove a declaration from here, the styles may still not be what you want
 * since Drupal's core stylesheets are still styling the element. See the
 * drupal6-reference.css file for a list of all Drupal 5.x core styles.
 *
 * In addition to the style declarations in this file, other Drupal styles that
 * you might want to override or augment are those for:
 *
 *   Book Navigation  See line 74  of Zen's drupal6-reference.css file
 *   Forum            See line 197 of Zen's drupal6-reference.css file
 *   Menus            See line 667 of Zen's drupal6-reference.css file
 *   News Aggregator  See line 20  of Zen's drupal6-reference.css file
 *   Polls            See line 287 of Zen's drupal6-reference.css file
 *   Search           See line 320 of Zen's drupal6-reference.css file
 *   User Profiles    See line 945 of Zen's drupal6-reference.css file
 */

/** body **/
  body
  {
    margin: 0;
	font-family:Arial,Helvetica,sans-serif;
	font-size:12px;
	color:#333; /* #888; */
	background:#FFF;
  }

  #page
  {
	font-size:12px;
	margin-left:auto;
	margin-right:auto;
	width:100%;
  }

  #page-inner
  {
  }

  a
  {
	color:#0099CC;
	text-decoration:none;
	}

  a:hover
  {
  text-decoration:underline;
  }

p {
margin: 0 0 1em 0;
}

/** header **/
  #header
  {
background:#6a747c;
padding-top:25px;
  }

  #header-inner
  {
  margin: 0 auto;
  width:949px;
  position: relative;
  }

  #logo-title /* Wrapper for logo, website name, and slogan */
  {
  }

  #logo /* Wrapper for logo */
  {
    margin: 0 10px 0 0;
    padding: 0;
  }

  #logo-image /* The actual logo image */
  {
  }

  h1#site-name, div#site-name /* The name of the website */
  {
    margin: 0;
    font-size: 2em;
    line-height: 1.3em;
  }

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

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

  #site-slogan /* The slogan (or tagline) of a website */
  {
  }

#header-blocks /* Wrapper for any blocks placed in the header region */ {

  margin-top:20px;
  width:100%;
  z-index: 1;
  background:url(images/nice-bg.png) repeat-x top #808b92;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  display:block;
  float:left;
  position:relative;
}

body.front #header-blocks {
  z-index: 100000;
}

#header-blocks-inner {
  width:100%;
  z-index: 1;
  display:block;
}

/** main (container for everything else) **/
  #main
  {
  }

#main-inner,
#postscript-inner,
#preface-inner
  {
  width:949px;
  margin:0 auto;
  }

/** content **/
  #content
  {
    padding-top: 15px;
  }

  #content-inner
  {
  }

  #mission /* The mission statement of the site (displayed on homepage) */
  {
  }

  #content-top /* Wrapper for any blocks placed in the "content top" region */
  {
  }

  #content-header /* Wrapper for breadcrumb, title, messages, tabs, and help */
  {
  }

  #breadcrumb /* The path to the current page in the form of a list of links */
  {
padding:0 0 0 12px;
height:39px;
line-height:50px;
color:#FFF;
float: left;
  }

body.front #breadcrumb, body.node-type-intl-landing-page #breadcrumb {
height: 24px;
line-height: 24px;
}

.breadcrumb a {
color:#FFF;
}

.breadcrumb {
padding:0;
}

  h1.title, /* The title of the page */
  h2.title, /* Block title or the title of a piece of content when it is given in a list of content */
  h3.title /* Comment title */
  {
    margin: 0;
	color:#000;
  }

h1.title {
font-size:28px;
}

body.node-type-intl-landing-page .field-title h2,
body.node-type-intl-landing-page .views-field-title,
body.node-type-intl-product .field-title h2,
body.node-type-intl-product .views-field-title
{
font-size:24px;
font-weight:bold;
}

body.node-type-intl-landing-page .field-title h2 a,
body.node-type-intl-landing-page .views-field-title a,
body.node-type-intl-product .field-title h2 a,
body.node-type-intl-product .views-field-title a
{
color:#000;
}

body.node-type-intl-landing-page h1.title {
margin:30px 0 15px 0;
}

  div.messages /* Important messages (status, warning, and error) for the user */
  {
  }

  div.status /* Normal priority messages */
  {
  }

  div.warning, tr.warning /* Medium priority messages */
  {
    /* border: 1px solid #f0c020; */ /* Drupal core uses: 1px solid #f0c020 */
  }

  div.error, tr.error /* High priority messages. See also the .error declaration below. */
  {
  }

  div.tabs /* See also the tabs.css file. */
  {
  }

  .help /* Help text on a page */
  {
    margin: 1em 0;
  }

  .more-help-link /* Link to more help */
  {
    font-size: 0.85em;
    text-align: right;
  }

  #content-area /* Wrapper for the actual page content */
  {
  }

.front #content-area {
  display: none;
  visibility: hidden;
}

  .pager /* A list of page numbers when more than 1 page of content is available */
  {
    clear: both;
    margin: 1em 0;
    text-align: center;
  }

  .pager a, .pager strong.pager-current
  {
    padding: 0.5em;
  }

  .feed-icons /* The links to the RSS or Atom feeds for the current list of content */
  {
    margin: 1em 0;
  }

  #content-bottom /* Wrapper for any blocks placed in the "content bottom" region */
  {
  }

/** navbar **/
  #navbar
  {
  }

  #navbar-inner
  {
  }

  #search-box /* Wrapper for the search form */
  {
  float:right;
  width:318px;
  }

  #edit-search-theme-form-1-wrapper label /* Label that says "Search this site:" */
  {
    display: none;
  }

#edit-search-theme-form-1-wrapper {
float:left;
margin:0;
}

  #primary /* Primary links */
  {
  }

  #secondary /* Secondary links */
  {
  }

/** sidebar-left **/
  #sidebar-left
  {
    padding-top: 15px;
  }

  #sidebar-left-inner
  {
  }

/** sidebar-right **/
  #sidebar-right
  {
    padding-top:15px;
  }

  #sidebar-right-inner
  {
  }

/** footer **/
  #footer
  {
width:949px;
margin: 0 auto;
clear: both;
  }

  #footer-inner
  {
	border-top:1px solid #CCC;
	clear:both;
	padding:6px 6px 15px 6px;
	text-align:left;
	width:939px;
  }

  #footer-message /* Wrapper for the footer message from Drupal's "Site information"
                     and for any blocks placed in the footer region */
  {
  }

/** closure **/
  #closure-blocks /* Wrapper for any blocks placed in the closure region */
  {
  }

/** Drupal nodes **/
  .node /* Node wrapper */
  {
  }

  .node-inner /* Additional wrapper for node */
  {
  }

  .sticky /* A sticky node (displayed before others in a list) */
  {
  }

  .node-unpublished /* Unpublished nodes */
  {
    /* background-color: #fff4f4; */ /* Drupal core uses a #fff4f4 background */
  }

  .node-unpublished div.unpublished, /* The word "Unpublished" displayed beneath the content. */
  .comment-unpublished div.unpublished
  {
    height: 0;
    overflow: visible;
    color: #d8d8d8;
    font-size: 75px;
    line-height: 1;
    font-family: Impact, "Arial Narrow", Helvetica, sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
    word-wrap: break-word; /* A very nice CSS3 property */
  }

  .node-mine /* A node created by the current user */
  {
  }

  .node-teaser /* A node displayed as teaser */
  {
  }

.node-teaser .product-image {
  float: left;
}

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

  .node-type-story /* Story content node */
  {
  }

  .node h2.title /* Node title */
  {
  }

  .marker /* "New" or "Updated" marker for content that is new or updated for the current user */
  {
    color: #c00;
  }

  .node .picture /* The picture of the node author */
  {
  }

  .node.node-unpublished .picture,
  .comment.comment-unpublished .picture
  {
    position: relative; /* Otherwise floated pictures will appear below the "Unpublished" text. */
  }

  .node .meta /* Wrapper for submitted and terms data */
  {
  }

  .node .submitted /* The "posted by" information */
  {
  }

  .node .terms /* Node terms (taxonomy) */
  {
  }

  .node .content /* Node's content wrapper */
  {
  }

  .node div.links /* Wrapper for node links */
  {
    margin: 1em 0;
  }

  ul.links /* Taxonomy links, node links, comment links */
  {
    margin: 0;
    padding: 0;
  }

  ul.links.inline
  {
    display: inline;
  }

  ul.links li
  {
    display: inline;
    list-style-type: none;
    padding: 0 0.5em;
  }

  .preview .node /* Preview of the content before submitting new or updated content */
  {
    /* background-color: #ffffea; */ /* Drupal core uses a #ffffea background */
  }

/** Drupal comments **/
  #comments /* Wrapper for the list of comments and its title */
  {
    margin: 1em 0;
  }

  #comments-title /* Heading for the list of comments */
  {
  }

  .comment /* Wrapper for a single comment */
  {
  }

  .comment-inner /* Additional wrapper for a single comment */
  {
  }

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

  .comment.new /* A new comment since the user last viewed the page. */
  {
  }

  .comment.odd /* An odd-numbered comment in the list of comments */
  {
  }

  .comment.even /* An even-numbered comment in the list of comments */
  {
  }

  .comment.first /* The first comment in the list of comments */
  {
  }

  .comment.last /* The last comment in the list of comments */
  {
  }

  .comment-unpublished /* Unpublished comments */
  {
    /* background-color: #fff4f4; */ /* Drupal core uses a #fff4f4 background */
  }

  .comment-unpublished div.unpublished /* The word "Unpublished" displayed beneath the content. See also the div.unpublished declaration in the node section above. */
  {
  }

  .comment-published /* Published comments */
  {
  }

  .comment-by-anon /* A comment created by an anonymous user */
  {
  }

  .comment-by-author /* A comment created by the node's author */
  {
  }

  .comment-mine /* A comment created by the current user */
  {
  }

  .comment h3.title /* Comment title */
  {
  }

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

  .comment .picture /* The picture of the comment author */
  {
  }

  .comment .submitted /* The "posted by" information */
  {
  }

  .comment .content /* Comment's content wrapper */
  {
  }

  .comment .user-signature /* The user's signature */
  {
  }

  .comment div.links /* Wrapper for comment links. See also the ul.links declaration in the node section above. */
  {
    margin: 1em 0;
  }

  .indented /* Nested comments are indented */
  {
    /* margin-left: 25px; */ /* Drupal core uses a 25px left margin */
  }

  .preview .comment /* Preview of the comment before submitting new or updated comment */
  {
    /* background-color: #ffffea; */ /* Drupal core uses a #ffffea background */
  }

/** Drupal blocks **/
  .block /* Block wrapper */
  {
    margin-bottom: 1em;
  }

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

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

  .block.odd /* Zebra striping independent of each region */
  {
  }

  .block.even /* Zebra striping independent of each region */
  {
  }

  .region-count-1 /* Incremental count for each block in the region */
  {
  }

  .count-1 /* Incremental count independent of each region */
  {
  }

  .block-inner /* Additional wrapper for block */
  {
  }

  #sidebar-left .block-inner /* Additional wrapper for block */
  {
    background:url(images/leftrightborder.jpg) repeat-y left top;
  }

  .block h2.title /* Block title */
  {
  }

  #sidebar-right .block h2.title
  {
  margin-bottom:5px;
  }

  .block .content /* Block's content wrapper */
  {
  }

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

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

  #block-block-1 /* First administrator-defined block */
  {
  }

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

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

  #block-comments-0 /* "Recent comments" block */
  {
  }

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

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

  #block-menu-2 /* "Primary links" block */
  {
  }

  #block-node-0 /* "Syndicate" block for primary RSS feed */
  {
  }

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

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

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

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

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

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

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

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

/** Drupal boxes **/
  /* Wrapper for Comment form, Comment viewing options, Menu admin, and
   * Search results.
   */
  .box /* Wrapper for box */
  {
  }

  .box-inner /* Additional wrapper for box */
  {
  }

  .box h2.title /* Box title */
  {
  }

  .box .content /* Box's content wrapper */
  {
  }

/** Miscellaneous Drupal styles **/
  .error /* Errors that are separate from div.messages status messages (see above.) */
  {
    /* color: #e55; */ /* Drupal core uses a #e55 background */
  }

  .warning /* Warnings that are separate from div.messages status messages (see above.) */
  {
    /* color: #e09010; */ /* Drupal core uses a #e09010 background */
  }

  .more-link /* Aggregator, blog, and forum more link */
  {
    text-align: right;
  }

  #user-login-form /* Drupal's default login form */
  {
    text-align: left;
  }

  tr.even /* Some tables have rows marked even or odd. */
  {
    /* background-color: #eee; */ /* Drupal core uses a #eee background */
  }

  tr.odd
  {
    /* background-color: #eee; */ /* Drupal core uses a #eee background */
  }

  li a.active /* The active item in a Drupal menu */
  {
    color: #000;
  }


/** Drupal forms **/
  .form-item, /* Wrapper for a form element (or group of form elements) and its label */
  .form-checkboxes,
  .form-radios
  {
    margin: 1em 0;
  }

  .form-item input.error, /* Highlight the form elements that caused a form submission error */
  .form-item textarea.error,
  .form-item select.error
  {
    border: 2px solid #c00;
  }

  .form-item label /* The label for a form element */
  {
    display: block;
    font-weight: bold;
  }

  .form-item label.option /* The label for a radio button or checkbox */
  {
    display: inline;
    font-weight: normal;
  }

  .form-required /* The part of the label that indicates a required field */
  {
    color: #c00;
  }

  .form-item .description /* The descriptive help text (separate from the label) */
  {
    font-size: 0.85em;
  }

  .form-checkboxes .form-item, /* Pack groups of checkboxes and radio buttons closer together */
  .form-radios .form-item
  {
    margin: 0.4em 0;
  }

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

  #search .form-submit /* The submit button */
  {
  background: transparent url(images/btn_search.png) no-repeat; /* transparent url(images/gosearch_but.jpg) no-repeat; */
  line-height: 0; font-size: 0;  padding: 0; margin: 0;
  text-indent: -9000px;
  width:24px;
  height:24px;
  border:none;
  vertical-align:top;
  cursor:pointer;
  float:left;
  }

  #edit-search-theme-form-1
  {
	background-color:#FFFFFF;
	border:0;
	color: #999;
	font-size:12px;
	height:22px;
    line-height: 22px;
	margin:0;
	padding: 1px 4px;
	width:150px;
	float: left;
 }

   #edit-search-theme-form-1:focus
  {
	color: #333;
 }

 #block-downloads-0 #edit-keys {
  width: 300px;
 }

  .container-inline div, .container-inline label /* Inline labels and form divs */
  {
    display: inline;
  }

  .tips /* Tips for Drupal's input formats */
  {
    margin: 0;
    padding: 0;
    font-size: 0.9em;
  }

/** OpenID **/
  /* The default styling for the OpenID login link seems to assume Garland's
   * styling of list items.
   */
  #user-login-form ul /* OpenID creates a new ul above the login form's links. */
  {
    margin-bottom: 0; /* Position OpenID's ul next to the rest of the links. */
  }

  #user-login-form li.openid-link, /* The "Log in using OpenID" links. */
  #user-login li.openid-link
  {
    margin-top: 1em;
    margin-left: -20px; /* Un-do some of the padding on the ul list. */
  	padding-left: 20px;
  	background-position: left center;
  }

  #user-login-form li.user-link, /* The "Cancel OpenID login" links. */
  #user-login li.user-link
  {
    margin-top: 1em;
  	list-style-type: disc;
  	list-style-position: outside;
  }

  #user-login li.openid-link, /* The OpenID links on the /user form. */
  #user-login li.user-link
  {
    margin-left: -2em; /* Un-do all of the padding on the ul list. */
  }

/** Drupal admin tables **/
  /* We overrode these styles in html-elements.css, but restore them for the
   * forms on the site.
   */
  form tbody
  {
    border-top: 1px solid #ccc;
  }

  form th
  {
    text-align: left;
    padding-right: 1em;
    border-bottom: 3px solid #ccc;
  }

  form tbody th
  {
    border-bottom: 1px solid #ccc;
  }

  form thead th
  {
    text-align: left;
    padding-right: 1em;
    border-bottom: 3px solid #ccc;
  }

  #sidebar-left .block h2.title
  {
  background:url(images/product_block_header_bg.jpg) no-repeat top left;
  color:#FFF;
  font-size:14px;
  padding-left:10px;
  line-height:26px;
  }

  #sidebar-left #block-menu-menu-products h2.title
  {
  background: url(images/product_block_header_bg.jpg) no-repeat top left;
  color:#FFF;
  font-size:14px;
  padding-left:10px;
  line-height:26px;
  }

  #sidebar-left #block-menu-menu-contract-interior-solutions h2.title, #sidebar-left #block-cis-1 h2.title
  {
  background:url(images/contract_block_header_bg.jpg) no-repeat top left;
  color:#FFF;
  font-size:14px;
  padding-left:10px;
  line-height:26px;
  }


  #sidebar-left li
  {
  list-style-image:none;
  list-style-type:none;
  font-weight:bold;
  }

  #sidebar-left li a
  {
  text-decoration:none;
  color:#000;
  }

  #sidebar-left li a:hover, #sidebar-left li a.active
  {
  color:#0099CC;
  }

  #sidebar-left li.active-trail a
  {
  color:#0099CC;
  }

  #sidebar-left li.expanded ul li.leaf a:hover
  {
  color:#0099CC;
  }

  #sidebar-left li.expanded ul li.leaf a.active, #sidebar-left ul.expanded li.expanded a.active
  {
  font-weight:normal;
  color:#0099CC;
  }




  #block-menu-menu-contract-interior-solutions li a:hover, #block-cis-1 li a:hover
  {
  color:#339933;
  }

  #block-menu-menu-contract-interior-solutions li.active-trail a, #block-cis-1 li.expanded a.active
  {
  color:#339933;
  }

  #block-menu-menu-contract-interior-solutions li.expanded ul li.leaf a:hover, #block-cis-1 li.expanded ul li.leaf a:hover
  {
  color:#339933;
  }

  #block-menu-menu-contract-interior-solutions li.expanded ul li.leaf a.active, #block-cis-1 li.expanded ul li.leaf a.active
  {
  font-weight:normal;
  color:#339933;
  }

  #sidebar-left li.expanded ul li.leaf a
  {
  font-weight:normal;
  color: #58595B; /* #888888; */
  }

  #sidebar-left ul.menu li
  {
  margin:6px 0;
  line-height:14px;
  }

  #sidebar-left .block ul
  {
  padding:0 0 0 10px;
  }

  #sidebar-left .block .content
  {
  background:url(images/product_block_bottom_corner.jpg) no-repeat left bottom;
  padding-top:0;
  padding-right:3px;
  padding-bottom:5px;
  }

#sidebar-right li.leaf
{
list-style-image:none;
list-style-type:none;
}

#sidebar-right li.expanded
{
padding:0;
}



#sidebar-right .block ul, #sidebar-right ul.menu li
{
padding-left:0;
margin-left:0;
}

#sidebar-right li a
{
color: #58595B; /* #888888; */
/*line-height:18px;*/
}

body.sidebar-left #main-inner
{
background:url(images/body-sidebar-left-dash.gif) repeat-y 227px 4px;
}

body.two-sidebars #main-inner
{
background:url(images/body-two-sidebars-dash.gif) repeat-y center 4px;
}

body.no-sidebars #content {
margin-left:0;
}

#feeds{
float:right;

}

.rss{
padding-left:20px;
}

.twitter, .linkedin, .pinterest{
padding-left:5px;
}

#block-block-7 tr.even, #block-block-7 tr.odd, tbody {
background:none;
border:none;
}
#block-block-7 table tbody tr td {
vertical-align:top;
}
#block-block-7 table tbody tr td.col1 {
padding-right:10px;
}
#block-block-7 .col1 {
font-weight:bold;
}
#block-block-7 .col2 {
font-weight:normal;
}





#block-block-11 {
  background: #fff url(images/considered_bg.png) repeat-y top left;
}
#block-block-11 ul {
  padding: 5px;
}
#block-block-11 li {
  list-style: none;
}
#block-block-11 .content a {
  text-decoration: underline;
  color: #007CB2;
}
#block-block-11 .block-inner {
  background: transparent url(images/considered_footer.png) no-repeat bottom left;
}
#block-block-11 h2.title {
  background: #999999 url(images/considered_header.png) no-repeat top left;
  color: white;
  text-align: left;
  font-weight: bold;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 10pt;
  padding: 5px 15px;
}

.node-type-productalpha .node-inner .item-list ul li {
display:block;
float:left;
list-style-type:none;
margin:0 5px 0 0;
padding:0;
}

.node-type-productalpha .node-inner .item-list ul li a img {
height:45px;
padding:0 0 5px 0;
display:block;
}

.node-type-parentalpha .product-image img {
border:1px solid #999;
margin:0 15px 0 0;
}

.node-type-parentalpha .field-field-teaser p {
padding:5px 0 6px 0;
margin:0;
}

.node-type-parentalpha h2.title a {
color:#000;
font-size:14px;
}

.node-type-parentalpha .view-more {
padding-top:3px;
}

.node-type-parentalpha .view-more a {
color: #333; /* #888888; */
font-weight:bold;
padding-left:18px;
background:url(images/more.jpg) left no-repeat;
}
.node-type-parentalpha div.node-teaser {
padding:14px 0;
border-top:1px #CCC solid;
}

body.node-type-parentalpha.sidebar-left div.col {
width:315px;
float:left;
margin-right:15px;
}

body.node-type-parentalpha.sidebar-left div.region-content_bottom div.content {
margin-top:15px;
}

body.node-type-parentalpha.sidebar-left div.region-content_bottom div.node-inner div.content {
margin-top:0;
}

body.sidebar-left.node-type-parentalpha div.col-1 {
padding-left:15px;
border-left:dashed 1px #CCC;
}


.two-sidebars #content-bottom div.block-order_products, .two-sidebars #content-bottom div#block-cis-0 {
  background:url(images/image-bg.png) left top repeat-y;
}
.two-sidebars #content-bottom div.block-order_products div.block-inner, .two-sidebars #content-bottom div#block-cis-0 div.block-inner {
  background:url(images/image-bg-top.png) left top no-repeat;
}
.two-sidebars #content-bottom div.block-order_products div.block-inner-inner, .two-sidebars #content-bottom div#block-cis-0 div.block-inner-inner {
  background:url(images/image-bg-bottom.png) left bottom no-repeat;
  padding:20px 20px 10px 20px;
}


.sidebar-left #content-bottom div.block-order_products, .sidebar-left #content-bottom div#block-cis-0 {
  background:url(images/bg-main.png) left top repeat-y;
}
.sidebar-left #content-bottom div.block-order_products div.block-inner, .sidebar-left #content-bottom div#block-cis-0 div.block-inner {
  background:url(images/bg-top.png) left top no-repeat;
}
.sidebar-left #content-bottom div.block-order_products div.block-inner-inner, .sidebar-left #content-bottom div#block-cis-0 div.block-inner-inner {
  background:url(images/bg-bottom.png) left bottom no-repeat;
  padding:20px 0 10px 20px;
}


input#back {
background:url(images/back.gif) no-repeat left top;
font-size:14px;
font-weight:bold;
color:#FFF;
padding:5px 17px 10px 35px;
display:block;
text-decoration:none;
border:none;
cursor:pointer;
float:right;
}

/*table#hotspots {
background:url(images/home-hotspot-bg.gif) left top no-repeat;
padding-top:7px;
}

#hotspots h2 {
margin:0 0 2px 0;
font-size:14px;
}

#hotspots h2 a {
color:#000;
}

#hotspots p {
margin:0 0 17px 0;
padding:0 7px;
line-height:18px;
}

#hotspots td{
padding-top:7px;
}*/

.view-frontpage-links table td {
  background:url(images/home-hotspot-bg.gif) no-repeat center top;
  text-align: center;
  height: 248px;
  position: relative;
  vertical-align: top;
}
.view-frontpage-links table td.col-1 {
/* width:235px; */
  width: 224px;
}
.view-frontpage-links table td.col-2 {
/* width:235px; */
  width: 249px;
}
.view-frontpage-links table td.col-3 {
/* width:234px; */
  width: 225px;
}

.view-frontpage-links table td .frontpage-link {
  width: 209px;
  height: 201px;
  margin: auto;
  margin-top: 9px;
}

#block-views-frontpage_links-block_1 p  {
  margin-top: 0px;
  margin-bottom: 7px;
}


.view-frontpage-links table td.col-1 img.imagecache-frontpage_thumb {
/* padding:7px 7px 0 7px; */
}
.view-frontpage-links table td.col-2 img.imagecache-frontpage_thumb {

}
.view-frontpage-links table td.col-3 img.imagecache-frontpage_thumb {
}
.view-frontpage-links .views-field-field-fp-image-fid,
.view-frontpage-links .views-field-title,
.view-frontpage-links .views-field-field-fp-teaser-value {
  width: 209px; margin: auto;
}
.view-frontpage-links .views-field-field-fp-teaser-value {
  line-height: 1.3em;
}
.view-frontpage-links .views-field-edit-node {
  position: absolute;
  top: 0px;
  text-align: left;
}
.view-frontpage-links .views-field-title {
  color: #09C;
  display: inline;
  font-size: 1.1em;
  font-weight: bold;
  line-height: 2.2em;
  margin: 0.83em auto;
}
.view-frontpage-links .views-field-title a, .view-frontpage-links .views-field-title a:hover {
  color: black; text-decoration: none;
}



#basketarea #login a {
background:url(images/basket-area-arrow.gif) left no-repeat;
padding-left:20px;
color: #333; /* #888888; */
font-size:14px;
font-weight:bold;
text-decoration:none;
vertical-align:middle;
margin-right:20px;
}

ul.nice-menu-right, ul.nice-menu-left, ul.nice-menu-right li, ul.nice-menu-left li {
width:auto;
}

.block-nice_menus a {
color:#FFF;
font-size:13px;
font-weight:bold;
text-decoration:none;
vertical-align:middle;
}

.block-nice_menus ul.nice-menu  li:hover, .block-nice_menus ul.nice-menu  li.menuparent:hover, .block-nice_menus ul.nice-menu  li a.active, .block-nice_menus ul.nice-menu  li.menuparent a.active {
background:url(images/nice-hover.png) repeat-x top #2a2c2f;
color:#FFF;
}

.block-nice_menus ul.nice-menu li {
border:1px solid #7c858d;
border-width:0 1px 0 0;
}

ul.nice-menu {
margin-left:10px;
border: 1px solid #7C858D;
border-width:0 0 0 1px;
}

ul.nice-menu ul {
border:0;
}

#navbar-inner a:hover, #navbar-inner a.active {
color:#0099CC;
}

body.front #content-area p {
margin-top:6px;
}

.bold {
font-weight:bold;
}

ul.nice-menu ul {
border:0;
}

ul.nice-menu a, ul.nice-menu-down .menuparent a {
padding: 9px 11px;
display:block;
}

#block-nice_menus-2 ul.nice-menu a, #block-nice_menus-2 ul.nice-menu-down .menuparent a {
padding: 9px 6px;
font-size:12px;
}

body.i18n-en #block-nice_menus-2 ul.nice-menu a, body.i18n-en #block-nice_menus-2 ul.nice-menu-down .menuparent a {
padding: 9px 10px;
}

body.i18n-es #block-nice_menus-2 ul.nice-menu a, body.i18n-es #block-nice_menus-2 ul.nice-menu-down .menuparent a {
padding: 9px 11px;
}

body.i18n-fr #block-nice_menus-2 ul.nice-menu a, body.i18n-fr #block-nice_menus-2 ul.nice-menu-down .menuparent a {
padding: 9px 4px;
}

.view-all-colourways-carpetrange {
margin-bottom:12px;
}

.block-nice_menus ul.nice-menu li, .block-nice_menus ul.nice-menu-down li.menuparent {
background:none;
}

.block-nice_menus ul.nice-menu-down li.menuparent ul {
margin-top:13px;
}

.block-nice_menus ul.nice-menu-down li.menuparent ul li {
width: 180px;
border:1px solid #7c858d;
border-width:0 1px 0 1px;
}

.block-nice_menus ul.nice-menu-down li.menuparent ul li a {
font-size:12px;
font-weight:normal;
text-decoration:none;
vertical-align:left;
padding: 5px 8px;
background:#f3f3f4;
border-bottom: 1px #6A747C solid;
color:#6A747C;
}

.block-nice_menus ul.nice-menu-down li.menuparent ul li a:hover {
color:#FFF;
background:#0096d2 url(images/nice-sub-bg.png) repeat-x top;
}

.block-nice_menus {
float:left;
margin:0;
}

#navbar-inner .block {
margin:0;
}

body.node-type-productalpha .field-field-description {
clear:both;
}

/*-- download-- */

/*
#block-views-download_pdf-block_1 .field-content{
background:url(images/down_tab.jpg) no-repeat right 4px;
padding-right:20px;
}
#block-views-download_pdf-block_1 .views-row {
min-height: 30px;
border-bottom:1px dashed #CCC;
}
#block-views-download_pdf-block_1 .view-download-doc .field-content{
  background: url(download_icons/docicon-thumb.png) no-repeat left center;
  padding:10px 0 10px 42px;
}
#block-views-download_pdf-block_1 .view-download-pdf .field-content {
  background: url(download_icons/pdficon-thumb.png) no-repeat left center;
  padding:10px 0 10px 42px;
}
#block-views-download_pdf-block_1 .view-download-zip .field-content {
  background: url(download_icons/zipicon-thumb.png) no-repeat left center;
  padding:10px 0 10px 42px;
}
*/

#block-block-6 .item-list ul li, #block-views-download_pdf-block_1 .item-list ul li{
list-style-type:none;
border-bottom:1px dashed #CCC;
margin-left: 0px;
}
#block-block-6 .item-list ul li, #block-views-download_pdf-block_1 .item-list ul li .download{
background:url(download_icons/icon-thumb.png) left 11px no-repeat;/*images/dl-icon.jpg*/
padding:10px 0 10px 42px;
min-height: 30px;
}

#block-block-6 .item-list ul li.download-doc, #block-views-download_pdf-block_1 .item-list ul li .download-doc  {
  background-image: url(download_icons/docicon-thumb.png)
}
#block-block-6 .item-list ul li.download-pdf, #block-views-download_pdf-block_1 .item-list ul li .download-pdf {
  background-image: url(download_icons/pdficon-thumb.png)
}
#block-block-6 .item-list ul li.download-zip, #block-views-download_pdf-block_1 .item-list ul li .download-zip {
  background-image: url(download_icons/zipicon-thumb.png)
}



.downloadpage{
margin-left:120px;
margin-top:120px;
}
.downloadpage h1.title{
margin-bottom:25px;
}
.downloadicon{
  float:left;
  width:160px;
}
.downloadcontent{
  position:relative;
  padding-bottom:32px;
  float:left;
  width:390px;
  height:90px;
  font-size:11px;
  line-height:1.5em;
}
.downloadbutton{
  position:absolute;
  bottom:0px;
  left:0px;
}
.backbutton{
  position:absolute;
  bottom:0px;
  left:120px;
}

.node-teaser.node-type-download {
  padding: 1em 0;
  border-bottom: 1px dashed #999;
}
.download-teaser-image {
  float: left;
  width: 105px;
}
.download-teaser-image img {
  border: 1px solid #666;
}
.download-teaser-content {
  margin-left: 120px;
}


/* img.imagefield-field_cat_image, */
/* img#main_product_image, */
img.imagecache-prmainImage,
img.imagefield-field_prod_image {
padding:8px;
background:url(images/cat-img-bg.gif) top left no-repeat;
}
.showcase-image {
  background: url(images/image-bg.png) top left repeat-y;
  margin: 1em 0;
}
.showcase-image-upper {
  background: url(images/image-bg-top.png) top left no-repeat;
}
.showcase-image-lower {
  background: url(images/image-bg-bottom.png) bottom left no-repeat;
}
.showcase-image-inner {
  padding: 8px;
}
.showcase-image img {
  vertical-align: middle; /* To get rid of leading */
}
.image-enlarge {
text-align: right;
width: 463px;
}
.homebanner-title {
font-size:24px;
color:#000;
font-weight:bold;
}

.homebanner-subtitle {
font-size:12px;
color:#000;
font-weight:bold;
}

#block-views-home_banner-block_1-block_1 {
padding:6px;
border:1px solid #CCC;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
border-radius: 5px;
}

.views-field-field-mainimage-fid {
float:left;
}

.views-field-field-banner-teaser-value {
float:left;
width:215px;
background-color: #fff;
}

.views-field-field-banner-teaser-value .field-content {
padding:40px 10px 10px 20px;
}

.view-colourways .view-content {
  /* margin-left: 190px; */
}
.view-colourways .view-header {
  /* width: 180px; float: left; */
}
.view-colourways .node {
  border-top: 1px solid #ccc;
}
.view-colourways h2.title {
  font-size: 10pt;
}
.view-colourways h2.title a {
  color: black;
}

.node.node-type-carpet-colourway .colourway {
  float: left;
  width: 230px;
  text-align: right;
}
.node.node-type-carpet-colourway .colourway-0 {
  width: 217px;
}
.colourway-label {
}
.view-all-colourways {
  /* text-align: right; */
}

.threecol-col-inner {
  padding: 5px;
}
.threecol-col {
  float: left;
}
.view-colourways .threecol-col-1 {
  width: 150px;
}
.view-colourways .threecol-col-2 {
  width: 270px;
  color: #808080;
}
.colourways-table tbody {
  border: none;
}
.colourways-table td {
  /* font-size: 8pt; */
}
.colourways-table tr.odd, .colourways-table tr.even {
  background-color: #fff;
  border-bottom: none;
}
.view-colourways .more-details {
  margin-top: 7px;
}
.view-colourways .more-details a {
  font-size: 8pt; color: #808080;
}
.view-colourways .more-details a img {
  vertical-align: middle;
  margin-right: 4px;
}

.checkcell-row {
  position: relative;
  padding-left: 1.5em;
}
.checkcell-row a, .checkcell-row a:hover {
  color: #808080;
  text-decoration: none;
}
.checkcell-row label {
  cursor: pointer;
}
.checkcell-row .db-more, .checkcell-row .db-remove, .checkcell-row .imgCheckboxImg {
  position: absolute;
  top: 2px;
  left: 0px;
}

.designboard h2 a, .designboard h2 a:hover {
  color: black;
  text-decoration: none;
}

.designboard #edit-submit {
  background: #71b350 url(images/btn_ordersample.png) top left no-repeat;
  width: 177px;
}
.designboard #edit-save {
  background: #71b350 url(images/btn_savedesignboard.png) top left no-repeat;
  width: 177px;
}
.designboard #edit-submit, .designboard #edit-save {
  text-indent: -7000px;
  font-size: 0px;
  line-height: 0em;
  display: block;
  float: left;
  margin-right: 15px;
}
.designboard .form-submit {
  border: 0px;
  background: #fe9e3d;
  height: 24px;
  color: #fff;
  cursor: pointer;
}
#block-order_products-0 {
  position: relative;
}

#op-carpet-application-selector {
  position: absolute;
  /* top: 25px;
  right: 25px; */
  top: 0px;
  right: 23px;
  width: 170px;
}
#op-carpet-application-selector #edit-area-wrapper {
  float: left;
  margin: 0px;
  padding: 0px;
}
#op-carpet-application-selector #edit-area-wrapper label {
  font-size: 1.2em;
  line-height: 1.5em;
}
#op-carpet-application-selector .form-submit {
  float: right;
  background: url(images/basket-area-arrow.gif) top left no-repeat;
  height: 15px;
  width: 15px;
  padding: 0px; margin: 0px; border: 0px;
  font-size: 0px;
  line-height: 0px;
  display: block;
  text-indent: -5000px;
  position: absolute; top: 22px; right: 0px;
}
select.op-carpet-selector {
  width: 150px; /* Width of the form - width of the button + 10 */
  font-size: 0.85em;
}

#TB_overlay {
  z-index: 1050;
}
#TB_window {
  text-align: center;
  z-index: 1100;
}
#TB_window img#TB_Image {
  display: inline; margin: 0px;
  border: none;
}
#TB_caption {
  float: none;
}
#TB_closeWindow {
  position: absolute;
  top: 0px;
  right: 0px;
}
#TB_window #TB_ImageOff {
  display: block;
  margin-top: 30px;
}

.designboard-checkboxes {
  border-bottom: 1px solid #B2B2B2;
}
.designboard-checkboxes .node {
  border-top: 1px solid #B2B2B2;
  height: 125px;
}
.designboard-col1 {
  width: 180px;
  float: left;
}
.designboard-col2 {
  float: right;
  width: 507px;
}

.designboard .threecol-col-1 {
  width: 207px;
}
.designboard .threecol-col-2 {
  width: 223px;
  color: #808080;
}
.designboard .threecol-col-3 {
  width: 300px;
}
.designboard-image {
  float: right;
  /*
  float: left;
  width: 112px;
  height: 112px;
  */
}
.designboard-image img {
  border: 1px solid #999;
}
.designboard-colourbox {
  /*
  margin-left: 117px;
  */
  width: 40px;
  height: 40px;
}
.designboard-colourbox-channel {
  margin-bottom: 8px;
}

.designboard td.firstcol, .designboard td.secondcol {
  font-weight: bold;
}
.designboard td.firstcol {
  width: 90px;
  text-align: center;
}
.designboard td.secondcol a, .designboard td.secondcol a:hover {
  color:  #58595B; /* #888888; */
}
.designboard .checkcell-checkers {
  height: 80px;
}
.designboard .itemdisplaytable {
  padding: 5px 0px 5px 98px;
}
.imgCheckboxImg {
  height: 12px;
  width: 12px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  float: left;
}
.imgCheckboxImg img {
  position: absolute;
  top: -12px;
  left: 0px;
}
.imgCheckboxContainer-checked .imgCheckboxImg img {
  top: 0px;
}

.ginserts-intro, .inserts-type {
  border-bottom: 1px solid #BBB;
}
.inserts-type {
  padding: 0.5em 0;
}
.inserts-type h3 {
  float: left;
  width: 250px;
  margin: 1.5em 0;
}
.inserts-type-link {
  float: right;
  width: 190px;
  height: 60px;
}
.inserts-description {
  clear: both;  /* margin-left: 200px; */
}

.view-Expert-Views {
  margin-top: 10px;
}
.view-Expert-Views table.views-table {
width:100%;
}

.view-Expert-Views table.views-table tr.even, .view-Expert-Views table.views-table tr.odd {
background:none;
}

.view-Expert-Views table.views-table td.views-field {
padding:10px 0;
vertical-align:top;
}

.view-Expert-Views table.views-table td.views-field-title a {
font-weight:bold;
font-size:14px;
}

.view-Expert-Views table.views-table thead th {
border-width:1px;
}

.node-type-hidden, .ginserts-intro {
  position: relative;
}
.hidden-edit, .ginserts-intro .edit {
  position: absolute;
  right: 0px;
}


/************
 * COLOURING THE WEBFORM
 * *********/

.webform-client-form, #enquire-submit-form {
}

.webform-client-form input, #enquire-submit-form input, .webform-component-textarea textarea {
  font-size: 11px;
}
.webform-client-form select, #enquire-submit-form select {
  font-size: 11px;
}
.webform-client-form .form-item label, #enquire-submit-form .form-item label {
  color:#0099CC;
}

.webform-client-form .webform-component-select .form-item label,
.webform-client-form .webform-component-textfield .form-item label,
.webform-client-form .webform-component-webform_email .form-item label,
.webform-client-form .webform-component-email .form-item label,
.webform-client-form .webform-component-textarea .form-item label,
.webform-client-form .webform-component-checkboxes .form-item label,
.webform-client-form .webform-component-radios .form-item label,
#enquire-submit-form .form-item label {
  color:#0099CC;
  width:100px;
  padding-right:5px;
  text-align:right;
  display: inline-block;
  vertical-align: top;
}

.webform-client-form .webform-component-checkboxes .form-item label.option,
.webform-client-form .webform-component-radios .form-item label.option {
  width: auto;
}

.webform-client-form .webform-component-select .form-item,
.webform-client-form .webform-component-textfield .form-item,
.webform-client-form .webform-component-webform_email .form-item,
.webform-client-form .webform-component-email .form-item,
.webform-client-form .webform-component-textarea .form-item,
.webform-client-form .webform-component-checkboxes .form-item,
.webform-client-form .webform-component-radios .form-item,
#enquire-submit-form .form-item {
  margin-left:auto;
}

.webform-client-form .webform-component.webform-container-inline {
  margin: 1em 0;
}

.webform-client-form .resizable-textarea,
#enquire-submit-form .resizable-textarea,
#enquire-submit-form #edit-address2 {
  display: inline-block;
  width: 463px;
}

.webform-client-form .form-item .form-text,
#enquire-submit-form .form-item .form-text {
  border:none;
  height:16px;
  padding:2px 5px 2px 5px;
  background:url(images/textbox_bg.jpg) no-repeat top left;
  width:174px;
}

.webform-client-form .form-item .form-textarea,
#enquire-submit-form .form-item .form-textarea {
  /* border:none; */
  /*height:74px;*/
  padding:2px 5px 2px 5px;
  /* background:url(images/textarea_bg.jpg) no-repeat top left; */
  /*width:235px;*/
  width: 463px;
  height: 147px;
  background-color: #F0EEEF;
  border: 1px solid #CCCACB;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}

.webform-client-form .webform-component-markup {
  width: 463px;
  margin-left: 110px;
}

.webform-client-form .form-submit{
  text-align: left;
  color: #fff;
  font-size:12px;
  font-weight: bold;
  width: 137px;
  height: 24px;
  margin-bottom: 1.5em;
  border: none;
  background: url(images/submit_bg.jpg) no-repeat top left;
/*  float: right; */
  position: relative;
  left: 105px;
  cursor: pointer;
}

.webform-client-form .form-item {
margin-left:110px;
}

.webform-client-form .form-item .form-item {
margin-left:auto;
}

.webform-client-form .form-item .form-item label {
color:#898989;
}

/************
 * CONTACT WEBFORM
 * *********/

#webform-client-form-13 #webform-component-what-would-you-like-to-hear-about input {
  display: block;
  margin: auto auto .5em;
}

#webform-client-form-13 #webform-component-choose-job-role label {
  width: auto;
  margin-bottom: .5em;
}


/*************************
 *ENQUIRY FORM
 **************************/

.enquiry-colourbox {
  width: 25px;
  height: 23px;
}
.enquiry-colourbox-channel {
  margin-bottom: 3px;
}
table.mydesignbasket{
font-family:Arial, Helvetica, sans-serif;
font-size:11px;
border-bottom:7px solid #d7d7d7;
border-top:1px solid #d7d7d7;
margin-bottom:8px;
}
table.mydesignbasket tr {
  background-color: #fff;
}
table.mydesignbasket td{
padding-top:10px;
padding-bottom:10px;
background-color: #ffffff;
}

table.mydesignbasket tr, .itemdisplaytable{
border-bottom:1px solid #d7d7d7;
}
#enquire-submit-form .form-submit{
text-align:left;
color:#fff;
font-weight:bold;
width:124px;
height:20px;
border:none;
background:url(images/enquiry_but.jpg) no-repeat top left;
margin-left:110px;
}


#block-products-0 {
  position: absolute;
  top:-52px;
/*  right: 285px;*/
  left: 476px;
}
#products-block-form .form-item {
  float: left;
  margin: 0;
}
#products-block-form .form-text {
  background-color: white;
  border: 0;
  color: #333;
  font-size: 12px;
  line-height: 22px;
  height: 22px;
  margin: 0px;
  padding: 1px 4px;
  width: 100px;
  float:left;
}

#products-block-form .form-text.inactive {
  color: #999;
}
#products-block-form .form-submit {
  background: url(images/btn_product_search.png) top left no-repeat;
  border: 0px; padding: 0px; margin: 0px;
  height: 24px;
  width: 24px;
  text-indent: -9000px;
  overflow: hidden;
  cursor: pointer;
  font-size:0;
  line-height:0;
  color:transparent;
  float:left
}

#block-products-0 .block-inner-inner {
position:relative;
}

#downloads-block-form .greybox {
  background-color: #DBDCDD;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  border-radius: 12px;
  padding: 25px 150px;
  color: #000;
}
#downloads-block-form .greybox p {
  margin-top: 0px;
}
#downloads-block-form .form-item {
  float: left;
  margin: 0px 15px 0px 0px;
}
#downloads-block-form #edit-keys {
  background-color: #FFF;
  border: 1px solid #999;
  font-size: 12px;
  line-height: 22px;
  height: 22px;
  margin: 0px;
  padding: 0px 4px;
}
#downloads-block-form .form-submit {
  background: transparent url(images/btn_search_grey.png) no-repeat;
  border: none;
  cursor: pointer;
  font-size: 0px;
  height: 24px;
  line-height: 0;
  margin: 0px;
  padding: 0px;
  text-indent: -9000px;
  vertical-align: top;
  width: 80px;
}

#webform-component-i_would_like_this_information_for_a_specific_project {
	padding-top: 20px;
}


/************
 * CASHBACK PROMO WEBFORM
 * *********/

#webform-client-form-10137 input {
  font-size: 10px;
}
#webform-client-form-10137 select {
  font-size: 11px;
}

#webform-client-form-10137 .webform-component-select .form-item .form-radios .form-item label,
#webform-client-form-10137 .webform-component-select .form-item .form-checkboxes .form-item label {
	color: #ef383f;
	font-weight: bold;
}

#webform-client-form-10137 .form-item label {
  color:#6d6e70;
  float:left;
  width:142px;
  padding-right:5px;
  text-align:right;
}

#webform-client-form-10137 .webform-component-select .form-item label,
#webform-client-form-10137 .webform-component-radios .form-item label,
#webform-client-form-10137 .webform-component-checkboxes .form-item label {
	float: none;
  display: block;
  width: auto;
  text-align: left;
}

#webform-client-form-10137 .webform-component-select .form-item,
#webform-client-form-10137 .webform-component-radios .form-item,
#webform-client-form-10137 .webform-component-checkboxes .form-item {
	margin-left: 28px;
}

#webform-client-form-10137 .webform-component-radios .form-item .form-radios,
#webform-client-form-10137 .webform-component-checkboxes .form-item .form-checkboxes {
	margin-left: 113px;
}

#webform-client-form-10137 .webform-component-radios .form-item .form-radios ,
#webform-client-form-10137 .webform-component-checkboxes .form-item .form-checkboxes {
  margin-left: 113px;
}

#webform-client-form-10137 .webform-component-markup {
	padding: 0 0px 0 75px;
	font-size: 11px;
}

#webform-client-form-10137 #edit-submitted-tel-inc-std-code-wrapper,
#webform-client-form-10137 #edit-submitted-fax-inc-std-code-wrapper,
#webform-client-form-10137  #edit-submitted-email-wrapper {
	margin: 20px 0;
}

#webform-client-form-10137 #webform-component-preferred_method_of_contact .form-item label {
	float: left;
	width: 110px;
}

#webform-client-form-10137 #webform-component-preferred_method_of_contact .form-item select {
	width: 146px;
	padding: 3px;
}

#webform-client-form-10137 fieldset {
	border: none;
	margin: 30px 0 10px 0;
}

#webform-client-form-10137 fieldset legend {
	padding: 0 10px 0 25px;
	font-weight: bold;
	color: #ef383f;
}

#webform-client-form-10137 fieldset .webform-component-select label {
	width: 100%;
	text-align: left;
}

#webform-client-form-10137 fieldset .webform-component-select .form-item .form-radios,
#webform-client-form-10137 fieldset .webform-component-select .form-item .form-checkboxes {
	margin-bottom: 20px;
}

#webform-client-form-10137.webform-component-select .form-item,
#webform-client-form-10137 .webform-component-textfield .form-item,
#webform-client-form-10137 .webform-component-email .form-item,
#webform-client-form-10137 .webform-component-textarea .form-item {
  margin-left:auto;
}

#webform-client-form-10137 .resizable-textarea {
  margin-left: 105px;
}

#webform-client-form-10137 .form-item .form-text {
  border:none;
  height:16px;
  padding:2px 5px 2px 5px;
  background:url(images/cashback_textbox_bg.gif) no-repeat top left;
  width:250px;
}

#webform-client-form-10137 .form-submit{
  text-align: left;
  color: #fff;
  font-weight: bold;
  width: 86px;
  /*height: 21px;*/
  padding: 10px 0 10px 5px;
  border: none;
  background: url(images/cashback-submit_bg.gif) no-repeat center center;
/*  float: right; */
  position: relative;
  left: 65px;
  cursor: pointer;
  margin-left: 8px;
  /*text-align: right;
  text-indent: 86px;*/

}

#webform-client-form-10137 .form-item {
margin-left:110px;
}

#webform-client-form-10137 .form-item .form-item {
margin-left:auto;
}

#webform-client-form-10137.form-item .form-item label {
color:#898989;
}

#block-block-16 {
	margin: 30px 0;
}

#block-block-16 .content table {
	margin: 0 auto;
}

#block-block-16 .content table tr td p a {
	color: #EF383F;
	font-weight: bold;
	font-size: 22px;
	background: url(images/cashback-pdf-icon.gif) no-repeat center right;
	padding: 32px 96px 32px 0px;
}

#webform-client-form-10137 #webform-component-address_2 .form-item label {
	width: 134px;
	padding-right: 13px;
}

#webform-client-form-10137 #webform-component-please_specify label {
	margin-top: 3px;
}

/************
 * SUMMER 2016 PRIZE DRAW COMPETITION
 * *********/
#webform-client-form-12313 #webform-component-mandatory-text, #webform-client-form-12313 #webform-component-distributors-you-purchase-from {
  padding-left: 25px;
}

#webform-client-form-12313 .webform-component-checkboxes {
  margin-top: 2em;
}

#webform-client-form-12313 #webform-component-data-protection-notice, #webform-client-form-12313 #webform-component-terms-and-conditions, #webform-client-form-12313 #webform-component-i-have-read-and-agree-to-the-terms--conditions {
  padding: 0 4em;
}

#webform-client-form-12313 #webform-component-data-protection-notice {
  margin-top: 2em;
}

#webform-client-form-12313 #edit-actions {
  padding-bottom: 2em;
}

/************
 * IPAD2 COMPETITION WEBFORM
 * *********/

#webform-client-form-10512 input {
  font-size: 10px;
}
#webform-client-form-10512 select {
  font-size: 11px;
}

#webform-client-form-10512 .webform-component-select .form-item .form-radios .form-item label,
#webform-client-form-10512 .webform-component-select .form-item .form-checkboxes .form-item label {
	color: #ef383f;
	font-weight: bold;
}

#webform-client-form-10512 .form-item label {
  color:#6d6e70;
  float:left;
  width:142px;
  padding-right:5px;
  text-align:right;
}

#webform-client-form-10512 .webform-component-select .form-item label {
	float: none;
}

#webform-client-form-10512 .webform-component-select .form-item {
	margin-left: 28px;
}

#webform-client-form-10512 .webform-component-select .form-item .form-radios,
#webform-client-form-10512 .webform-component-select .form-item .form-checkboxes {
	margin-left: 113px;
}

#webform-client-form-10512 .webform-component-markup {
	padding: 0 0px 0 25px;
	font-size: 12px;
}

#webform-client-form-10512 #edit-submitted-tel-inc-std-code-wrapper,
#webform-client-form-10512 #edit-submitted-fax-inc-std-code-wrapper,
#webform-client-form-10512  #edit-submitted-email-wrapper {
	margin: 20px 0;
}

#webform-client-form-10512 #webform-component-preferred_method_of_contact .form-item label {
	float: left;
	width: 110px;
}

#webform-client-form-10512 #webform-component-preferred_method_of_contact .form-item select {
	width: 146px;
	padding: 3px;
}

#webform-client-form-10512 fieldset {
	border: none;
	margin: 30px 0 10px 0;
}

#webform-client-form-10512 fieldset legend {
	padding: 0 10px 0 25px;
	font-weight: bold;
	color: #ef383f;
}

#webform-client-form-10512 fieldset .webform-component-select label {
	width: 100%;
	text-align: left;
}

#webform-client-form-10512 fieldset .webform-component-select .form-item .form-radios,
#webform-client-form-10512 fieldset .webform-component-select .form-item .form-checkboxes {
	margin-bottom: 20px;
}

#webform-client-form-10512.webform-component-select .form-item,
#webform-client-form-10512 .webform-component-textfield .form-item,
#webform-client-form-10512 .webform-component-email .form-item,
#webform-client-form-10512 .webform-component-textarea .form-item {
  margin-left:auto;
}

#webform-client-form-10512 .resizable-textarea {
  margin-left: 105px;
}

#webform-client-form-10512 .form-item .form-text {
  border:none;
  height:16px;
  padding:2px 5px 2px 5px;
  background:url(images/cashback_textbox_bg.gif) no-repeat top left;
  width:250px;
}

#webform-client-form-10512 .form-submit{
  text-align: left;
  color: #fff;
  font-weight: bold;
  width: 86px;
  /*height: 21px;*/
  padding: 10px 0 10px 5px;
  border: none;
  background: url(images/cashback-submit_bg.gif) no-repeat center center;
/*  float: right; */
  position: relative;
  left: 20px;
  cursor: pointer;
  margin-left: 8px;
  /*text-align: right;
  text-indent: 86px;*/

}

#webform-client-form-10512 #webform-component-i_have_read_and_agree_to_the_terms__conditions {
  margin-left: 0px;
}

#webform-client-form-10512 #webform-component-i_have_read_and_agree_to_the_terms__conditions .form-checkboxes {
  margin-left: 0 !important;
  display: inline;
}

#webform-client-form-10512 #webform-component-i_have_read_and_agree_to_the_terms__conditions label,
#webform-client-form-10512 #webform-component-i_have_read_and_agree_to_the_terms__conditions .form-checkboxes * {
  display: inline;
  color: #f00;
}

#webform-client-form-10512 .form-item {
margin-left:110px;
}

#webform-client-form-10512 .form-item .form-item {
margin-left:auto;
}

#webform-client-form-10512.form-item .form-item label {
color:#898989;
}

#block-block-17 {
	margin: 30px 0;
}

#block-block-17 .content table {
	margin: 0 auto;
}

#block-block-17 .content table tr td p a {
	color: #63717A;
  cursor: pointer;
	font-weight: bold;
	font-size: 18px;
	background: url(images/cashback-pdf-icon.gif) no-repeat center right;
	padding: 32px 96px 32px 0px;
}

#webform-client-form-10512 #webform-component-please_specify label {
	margin-top: 3px;
}

#webform-client-form-10512 #webform-component-mandatory_text {
  padding-left: 25px;
  font-size: 12px;
}

#webform-client-form-10512 #webform-component-for_your_chance_to_win {
  padding-left: 12px;
  font-size: 12px;
  color: #f00;
  font-weight: bold;
}

#webform-client-form-10512 #webform-component-how_many_accidents_occur_on_non_domestic_stairs_every_year label {
  text-align: left;
  width: auto;
}

#webform-client-form-10512 #webform-component-2_fill_in_the_missing {
  font-size: 12px;
  padding-left: 28px;
  font-weight: bold;
}

#webform-client-form-10512 #webform-component-a_choose_the_right__________for_the_step label,
#webform-client-form-10512 #webform-component-b_select_the_correct__________for_the_conditions label,
#webform-client-form-10512 #webform-component-c_make_sure_youve_chosen_a_colour_that_________ label {
  text-align: left;
  width: auto;
  padding-left: 15px;
}

#webform-client-form-10512 #webform-component-a_choose_the_right__________for_the_step input,
#webform-client-form-10512 #webform-component-b_select_the_correct__________for_the_conditions input,
#webform-client-form-10512 #webform-component-c_make_sure_youve_chosen_a_colour_that_________ input {
  margin-left: -10px
}

#webform-client-form-10512 #webform-component-3_what_range_of_gradus_stair_edgings_includes_an_extended_insert_to_increase_slip_resistance_at_the_leading_edge_of_the_profile label {
  float: none;
  width: auto;
  text-align: left;
  padding-left: 28px;
}

#webform-client-form-10512 #webform-component-4_a_pendulum_test_value_ptv_ {
  font-size: 12px;
  font-weight: bold;
  padding-left: 28px;
}

#webform-client-form-10512 #edit-submitted-3-what-range-of-gradus-stair-edgings-includes-an-extended-insert-to-increase-slip-resistance-at-the-leading-edge-of-the-profile {
  margin-top: 10px;
  margin-left: 145px;
}

body.node-type-intl-landing-page h1.title,
body.node-type-intl-product h1.title
{
margin:20px 0 10px 0;
}

body.node-type-intl-landing-page #content {
padding:0;
width:100%;
}

body.node-type-intl-landing-page #main,
body.node-type-intl-product #main,
#preface
{
background:#E2E6E9;
}

#preface {
padding-bottom:3px;
}

#preface h2.title {
font-size:28px;
padding:30px 0 12px 0;
}

body.node-type-intl-landing-page .nd-region-left, body.node-type-intl-product .nd-region-left {
width:52%;
}

body.node-type-intl-landing-page .nd-region-right, body.node-type-intl-product .nd-region-right {
width:48%;
}

.view-intl-products-landing-page-tease .views-row, .view-intl-product-related-products .views-row {
margin-bottom:20px;
padding-bottom:20px;
border-bottom:1px solid #CCC;
}

.view-intl-products-landing-page-tease .views-row-last, .view-intl-product-related-products .views-row-last {
margin-bottom:0;
border-bottom:0;
}

.view-intl-products-landing-page-tease .views-row h2 {
margin:0;
}

.view-intl-products-landing-page-tease,
#block-views-a6fbd7eab5f9ced4472b2c9193e964dc
{
margin-top:30px;
}

body.node-type-intl-landing-page .field-image,
body.node-type-intl-product .field-main-int-image
{
width:463px;
float:left;
}

.node-type-intl-product .views-field-field-teaser-image-fid {
width:463px;
float:left;
}

.node-type-intl-product .views-field-field-int-description-value {
margin-left: 494px;
width:455px;
}

body.node-type-intl-landing-page .field-image .field-items,
.node-type-intl-product .field-main-int-image .field-items,
.node-type-intl-product .views-field-field-image-fid .field-content
{
padding:7px;
border:1px solid #CCC;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
border-radius: 5px;
float:left;
position:relative;
z-index:1;
}

.views-field-title,
.node-type-intl_product .field-title,
.views-field-field-int-title-value
{
margin-bottom:10px;
}

.views-field-field-int-title-value a {
color:#000;
font-size:24px;
font-weight:bold;
}

.node-type-intl-product .views-row {
float:left;
clear:both;
width:100%;
}

body.node-type-intl-landing-page .field-image .field-items a {
display:block;
}

.field-downloads {
width:50%;
float:left;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
border-radius: 5px;
border:1px solid #CCC;
margin-top: 14px;
clear:left;
}

#content-area .field-downloads {
background:#FFF;
}

body.node-type-intl-landing-page .field-image-zoom {
text-align:right;
}

.field-downloads .field-label {
padding:10px 10px 10px 12px;
font-size:18px;
color:#000;
}

.field-downloads .field-items {
padding:0 10px 12px 10px;
}

.field-downloads .field-items a {
padding:0 0 0 42px;
background: url(download_icons/pdficon-thumb.png) no-repeat left 2px;
display:block;
color:#333;
font-size:11px;
}

.field-contact-us {
font-size:12px;
font-weight:bold;
background:#0096d2 url(images/nice-sub-bg.png) repeat-x top;
float:left;
position:relative;
z-index:1;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
border-radius: 5px;
margin-top: 10px;
}

.field-contact-us a {
color:#FFF;
background: url(images/white-arrow.png) no-repeat right;
padding:4px 40px 5px 10px;
display:block;
}

.field-read-more {
font-size:12px;
font-weight:bold;
background:#f79625 url(images/orange-bg.png) repeat-x top;
float:left;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
border-radius: 5px;
margin-top: 10px;
}

.node-type-intl-product .views-field-view-node {
margin-left: 494px;
padding-top: 10px;
}

.node-type-intl-product .views-field-view-node .view-node {
font-size:12px;
font-weight:bold;
background:#0096d2 url(images/orange-bg.png) repeat-x top;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
border-radius: 5px;
width: 130px;
height:24px;
float:left;
margin-right:20px;
}

.node-type-intl-product.i18n-fr .views-field-view-node .view-node {
width: 140px;
}

.node-type-intl-product .views-field-view-node .contact-link {
font-size:12px;
font-weight:bold;
background:#0096d2 url(images/nice-sub-bg.png) repeat-x top;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
border-radius: 5px;
width: 130px;
height:24px;
float:left;
}

.node-type-intl-product.i18n-fr .views-field-view-node .contact-link {
width: 209px;
}

.field-read-more a, .node-type-intl-product .views-field-view-node a, .node-type-intl-product .views-field-nothing a {
color:#FFF;
background: url(images/white-arrow.png) no-repeat right;
padding:4px 40px 5px 10px;
display:block;
}

.field-read-more a:hover, .field-contact-us a:hover, .node-type-intl-product .views-field-view-node a:hover, .node-type-intl-product .views-field-nothing a:hover {
text-decoration:none;
}

body.node-type-intl-landing-page #postscript {
background:url(images/ps-bg.png) repeat-x top;
}

#postscript h2.title {
color:#6A737B;
background:#FFF;
font-size:22px;
width:160px;
padding-right:2px;
margin:0 auto;
text-align:center;
line-height:55px;
display: block;
clear: both;
height: 55px;
}

body.i18n-de #postscript h2.title {
width: 205px;
}

body.i18n-es #postscript h2.title {
width: 233px;
}

.image-enlarge img,
.image-enlarge-2 img
{
vertical-align: middle;
margin-right:2px;
}

.image-enlarge-2 {
clear:left;
margin: 1em 0;
text-align:right;
float:left;
width:463px;
}

.field-ds-group-intl-product-extras {
clear:both;
width: 463px;
text-align: right;
padding: 1em 0;
}

.views-field-field-int-description-value ul,
.field-landing-page-body ul
{
padding-left: 17px;
}

.views-field-field-int-description-value ul li, .field-landing-page-body ul li {
margin-bottom: 1em;
}

.node-type-homebanner {
position:relative;
}

.node-type-homebanner .nd-region-header {
position:absolute;
background:url(images/banner-trans.png) repeat;
width:400px;
right:0;
top:40px;
}

.node-type-homebanner .nd-region-header h1 {
margin:0;
color:#FFF;
font-size: 28px;
}

.node-type-homebanner .nd-region-header .field-title {
padding:15px 15px 15px 17px;
}

.node-type-homebanner .nd-region-header .field-banner-teaser {
padding:0 15px 50px 17px;
color:#FFF;
font-size:16px;
font-weight:bold;
}

.node-type-homebanner .nd-region-header .field-banner-link {
color:#FFF;
font-weight:bold;
position:absolute;
left:0;
bottom:0;
width:400px;
}

.node-type-homebanner .nd-region-header .field-banner-link a {
padding:119px 15px 15px 17px;
display:block;
}

.node-type-homebanner .nd-region-header .field-banner-link a {
color:#FFF;
font-size:16px;
}

#block-views-pressreleasesall-block_1 h2.title {
color:#FFF;
background:url(images/red-grad.png) repeat-x top #ff0404;
-moz-border-radius: 2px 3px 3px 2px;
-webkit-border-radius: 2px 3px 3px 2px;
border-radius: 2px 3px 3px 2px;
text-transform:uppercase;
font-size:14px;
float:left;
padding:4px 10px;
}

#block-views-pressreleasesall-block_1 {
float:left;
clear:both;
width:100%;
border: 1px solid #CCC;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
border-radius: 5px;
height:24px;
}

#block-views-pressreleasesall-block_1 ul, #block-views-pressreleasesall-block_1 li {
list-style:none;
padding:0;
margin:0;
}

#block-views-pressreleasesall-block_1 li a {
color:#231F20;
font-size:14px;
padding-top:4px;
display:block;
}

#block-views-pressreleasesall-block_1 .content {
float:right;
width:580px;
vertical-align:middle;
}

#block-views-a6fbd7eab5f9ced4472b2c9193e964dc {
float:left;
clear:both;
width:100%;
}

#block-gradus_lang-language-selector {
float:right;
margin:0;
z-index:100;
width:197px;
}

body.i18n-de #block-gradus_lang-language-selector {
width:92px;
}

body.i18n-es #block-gradus_lang-language-selector {
width:92px;
}

body.i18n-fr #block-gradus_lang-language-selector {
width:100px;
}

#block-gradus_lang-language-selector .form-item {
margin:0;
}

div.jquery_dropdown_header {
border:0;
background:none;
height:auto;
font-size: 14px;
color: white;
padding: 9px 28px 9px 11px;
background:url(images/btn-lang.png) no-repeat right center;
}

div.jquery_dropdown_container {
border: 1px solid #7C858D;
border-width: 0 0 0 1px;
padding-right:10px;
}

ul.jquery_dropdown_list {
top:34px;
width:196px;
border:0;
}

ul.jquery_dropdown_list li {
list-style: none;
background: #F3F3F4;
padding: 0;
border: 1px solid #7C858D;
border-width: 0 1px 0 1px;
}

ul.jquery_dropdown_list li a, ul.jquery_dropdown_list li a:link, ul.jquery_dropdown_list li a:visited {
border-bottom: 1px #6A747C solid;
padding: 5px 8px 5px 28px;
font-size: 12px;
font-weight: normal;
text-decoration: none;
color: #6A747C;
width:auto;
background:none;
}

ul.jquery_dropdown_list li.en a {
background:url(images/en.png) no-repeat 6px center;
}

ul.jquery_dropdown_list li.fr a {
background:url(images/fr.png) no-repeat 6px center;
}

ul.jquery_dropdown_list li.es a {
background:url(images/es.png) no-repeat 6px center;
}

ul.jquery_dropdown_list li.de a {
background:url(images/de.png) no-repeat 6px center;
}

ul.jquery_dropdown_list li:hover {
background:#0096d2 url(images/nice-sub-bg.png) repeat-x top;
}

ul.jquery_dropdown_list li a:hover {
color:#FFF;
}

.gradus-lang-chosen-icon {
float:left;
padding-top: 1px;
}

p.gradus-lang-chosen-native {
float:left;
margin:0 0 0 5px;
font-size:12px;
font-weight:bold;
}

.gradus-lang-chosen {
background:url(images/nice-hover.png) repeat-x top #2a2c2f;
color:#FFF;
float:right;
font-size:14px;
padding: 9px 7px;
margin-right:7px;
}

#block-views-home_banner-block_1-block_1 {
z-index:0;
}

.bre-title {
color:#4fb057;
}

.node-type-webform form tbody {
border:0;
}

#webform-component-i-have-read-and-agree-to-the-terms--conditions label,
#webform-component-i-have-read-and-agree-to-the-terms--conditions .form-checkboxes
{
display:inline;
float:left;
margin: 0 0 1em 0;
}

#webform-component-i-have-read-and-agree-to-the-terms--conditions .form-item,
#webform-component-photos .form-item
{
margin:0;
}

#webform-component-i-have-read-and-agree-to-the-terms--conditions {
clear:both;
width:100%;
float: left;
}

#header {
  position: relative;
  z-index: 999;
}

#admin-menu, #admin-menu ul  {
  z-index: 9999;
}

#webform-client-form-10915 #edit-actions input.form-submit {
width:150px;
height:35px;
background:url(images/submit.gif) no-repeat left top;
color:transparent;
text-indent:-9999px;
font-size:0px;
line-height:0px;
left:146px;
margin-top:50px;
}

#webform-client-form-10915 .form-item label {
color:#666;
width: 140px;
}

#webform-client-form-10915 {
padding-left:40px;
padding-top:30px;
}

body.page-camera-competition h1.title {
display:none;
}

body.page-camera-competition #webform-component-competition-details,
body.page-camera-competition #webform-component-photos,
body.page-camera-competition #webform-component-please-state-the-following
{
padding-left: 146px;
}

body.page-camera-competition #webform-component-terms-and-conditions
{
padding-left: 122px;
}

.block-order_products .node-type-parentalpha .field-teaser p {
  margin: 0;
  padding: 5px 0 6px 0;

}

/**
 * Why are we putting the styles in here? Well because Gradus uses private files, we cannot compress the CSS files.
 * IE will then complain and won't be able to load up some stylesheets because of its CSS file limit
 * So, we've had to throw it in here.
 *
 * I tried throwing it into an IE only stylesheet but on some content types that stylesheet wasn't being loaded.
 * - SH.
 */

/* TinyMCE Style */
/* Reset */
.defaultSkin table, .defaultSkin tbody, .defaultSkin a, .defaultSkin img, .defaultSkin tr, .defaultSkin div, .defaultSkin td, .defaultSkin iframe, .defaultSkin span, .defaultSkin *, .defaultSkin .mceText {border:0; margin:0; padding:0; background:transparent; white-space:nowrap; text-decoration:none; font-weight:normal; cursor:default; color:#000; vertical-align:baseline; width:auto; border-collapse:separate; text-align:left}
.defaultSkin a:hover, .defaultSkin a:link, .defaultSkin a:visited, .defaultSkin a:active {text-decoration:none; font-weight:normal; cursor:default; color:#000}
.defaultSkin table td {vertical-align:middle}

/* Containers */
.defaultSkin table {direction:ltr;background:transparent}
.defaultSkin iframe {display:block;}
.defaultSkin .mceToolbar {height:26px}
.defaultSkin .mceLeft {text-align:left}
.defaultSkin .mceRight {text-align:right}

/* External */
.defaultSkin .mceExternalToolbar {position:absolute; border:1px solid #CCC; border-bottom:0; display:none;}
.defaultSkin .mceExternalToolbar td.mceToolbar {padding-right:13px;}
.defaultSkin .mceExternalClose {position:absolute; top:3px; right:3px; width:7px; height:7px; background:url(/sites/all/libraries/tinymce/jscripts/tiny_mce/themes/advanced/img/icons.gif) -820px 0}

/* Layout */
.defaultSkin table.mceLayout {border:0; border-left:1px solid #CCC; border-right:1px solid #CCC}
.defaultSkin table.mceLayout tr.mceFirst td {border-top:1px solid #CCC}
.defaultSkin table.mceLayout tr.mceLast td {border-bottom:1px solid #CCC}
.defaultSkin table.mceToolbar, .defaultSkin tr.mceFirst .mceToolbar tr td, .defaultSkin tr.mceLast .mceToolbar tr td {border:0; margin:0; padding:0;}
.defaultSkin td.mceToolbar {background:#F0F0EE; padding-top:1px; vertical-align:top}
.defaultSkin .mceIframeContainer {border-top:1px solid #CCC; border-bottom:1px solid #CCC}
.defaultSkin .mceStatusbar {background:#F0F0EE; font-family:'MS Sans Serif',sans-serif,Verdana,Arial; font-size:9pt; line-height:16px; overflow:visible; color:#000; display:block; height:20px}
.defaultSkin .mceStatusbar div {float:left; margin:2px}
.defaultSkin .mceStatusbar a.mceResize {display:block; float:right; background:url(/sites/all/libraries/tinymce/jscripts/tiny_mce/themes/advanced/img/icons.gif) -800px 0; width:20px; height:20px; cursor:se-resize; outline:0}
.defaultSkin .mceStatusbar a:hover {text-decoration:underline}
.defaultSkin table.mceToolbar {margin-left:3px}
.defaultSkin span.mceIcon, .defaultSkin img.mceIcon {display:block; width:20px; height:20px}
.defaultSkin .mceIcon {background:url(/sites/all/libraries/tinymce/jscripts/tiny_mce/themes/advanced/img/icons.gif) no-repeat 20px 20px}
.defaultSkin td.mceCenter {text-align:center;}
.defaultSkin td.mceCenter table {margin:0 auto; text-align:left;}
.defaultSkin td.mceRight table {margin:0 0 0 auto;}

/* Button */
.defaultSkin .mceButton {display:block; border:1px solid #F0F0EE; width:20px; height:20px; margin-right:1px}
.defaultSkin a.mceButtonEnabled:hover {border:1px solid #0A246A; background-color:#B2BBD0}
.defaultSkin a.mceButtonActive, .defaultSkin a.mceButtonSelected {border:1px solid #0A246A; background-color:#C2CBE0}
.defaultSkin .mceButtonDisabled .mceIcon {opacity:0.3; -ms-filter:'alpha(opacity=30)'; filter:alpha(opacity=30)}
.defaultSkin .mceButtonLabeled {width:auto}
.defaultSkin .mceButtonLabeled span.mceIcon {float:left}
.defaultSkin span.mceButtonLabel {display:block; font-size:10px; padding:4px 6px 0 22px; font-family:Tahoma,Verdana,Arial,Helvetica}
.defaultSkin .mceButtonDisabled .mceButtonLabel {color:#888}

/* Separator */
.defaultSkin .mceSeparator {display:block; background:url(/sites/all/libraries/tinymce/jscripts/tiny_mce/themes/advanced/img/icons.gif) -180px 0; width:2px; height:20px; margin:2px 2px 0 4px}

/* ListBox */
.defaultSkin .mceListBox, .defaultSkin .mceListBox a {display:block}
.defaultSkin .mceListBox .mceText {padding-left:4px; width:70px; text-align:left; border:1px solid #CCC; border-right:0; background:#FFF; font-family:Tahoma,Verdana,Arial,Helvetica; font-size:11px; height:20px; line-height:20px; overflow:hidden}
.defaultSkin .mceListBox .mceOpen {width:9px; height:20px; background:url(/sites/all/libraries/tinymce/jscripts/tiny_mce/themes/advanced/img/icons.gif) -741px 0; margin-right:2px; border:1px solid #CCC;}
.defaultSkin table.mceListBoxEnabled:hover .mceText, .defaultSkin .mceListBoxHover .mceText, .defaultSkin .mceListBoxSelected .mceText {border:1px solid #A2ABC0; border-right:0; background:#FFF}
.defaultSkin table.mceListBoxEnabled:hover .mceOpen, .defaultSkin .mceListBoxHover .mceOpen, .defaultSkin .mceListBoxSelected .mceOpen {background-color:#FFF; border:1px solid #A2ABC0}
.defaultSkin .mceListBoxDisabled a.mceText {color:gray; background-color:transparent;}
.defaultSkin .mceListBoxMenu {overflow:auto; overflow-x:hidden}
.defaultSkin .mceOldBoxModel .mceListBox .mceText {height:22px}
.defaultSkin .mceOldBoxModel .mceListBox .mceOpen {width:11px; height:22px;}
.defaultSkin select.mceNativeListBox {font-family:'MS Sans Serif',sans-serif,Verdana,Arial; font-size:7pt; background:#F0F0EE; border:1px solid gray; margin-right:2px;}

/* SplitButton */
.defaultSkin .mceSplitButton {width:32px; height:20px; direction:ltr}
.defaultSkin .mceSplitButton a, .defaultSkin .mceSplitButton span {height:20px; display:block}
.defaultSkin .mceSplitButton a.mceAction {width:20px; border:1px solid #F0F0EE; border-right:0;}
.defaultSkin .mceSplitButton span.mceAction {width:20px; background-image:url(/sites/all/libraries/tinymce/jscripts/tiny_mce/themes/advanced/img/icons.gif);}
.defaultSkin .mceSplitButton a.mceOpen {width:9px; background:url(/sites/all/libraries/tinymce/jscripts/tiny_mce/themes/advanced/img/icons.gif) -741px 0; border:1px solid #F0F0EE;}
.defaultSkin .mceSplitButton span.mceOpen {display:none}
.defaultSkin table.mceSplitButtonEnabled:hover a.mceAction, .defaultSkin .mceSplitButtonHover a.mceAction, .defaultSkin .mceSplitButtonSelected a.mceAction {border:1px solid #0A246A; border-right:0; background-color:#B2BBD0}
.defaultSkin table.mceSplitButtonEnabled:hover a.mceOpen, .defaultSkin .mceSplitButtonHover a.mceOpen, .defaultSkin .mceSplitButtonSelected a.mceOpen {background-color:#B2BBD0; border:1px solid #0A246A;}
.defaultSkin .mceSplitButtonDisabled .mceAction, .defaultSkin .mceSplitButtonDisabled a.mceOpen {opacity:0.3; -ms-filter:'alpha(opacity=30)'; filter:alpha(opacity=30)}
.defaultSkin .mceSplitButtonActive a.mceAction {border:1px solid #0A246A; background-color:#C2CBE0}
.defaultSkin .mceSplitButtonActive a.mceOpen {border-left:0;}

/* ColorSplitButton */
.defaultSkin div.mceColorSplitMenu table {background:#FFF; border:1px solid gray}
.defaultSkin .mceColorSplitMenu td {padding:2px}
.defaultSkin .mceColorSplitMenu a {display:block; width:9px; height:9px; overflow:hidden; border:1px solid #808080}
.defaultSkin .mceColorSplitMenu td.mceMoreColors {padding:1px 3px 1px 1px}
.defaultSkin .mceColorSplitMenu a.mceMoreColors {width:100%; height:auto; text-align:center; font-family:Tahoma,Verdana,Arial,Helvetica; font-size:11px; line-height:20px; border:1px solid #FFF}
.defaultSkin .mceColorSplitMenu a.mceMoreColors:hover {border:1px solid #0A246A; background-color:#B6BDD2}
.defaultSkin a.mceMoreColors:hover {border:1px solid #0A246A}
.defaultSkin .mceColorPreview {margin-left:2px; width:16px; height:4px; overflow:hidden; background:#9a9b9a}
.defaultSkin .mce_forecolor span.mceAction, .defaultSkin .mce_backcolor span.mceAction {overflow:hidden; height:16px}

/* Menu */
.defaultSkin .mceMenu {position:absolute; left:0; top:0; z-index:1000; border:1px solid #D4D0C8}
.defaultSkin .mceNoIcons span.mceIcon {width:0;}
.defaultSkin .mceNoIcons a .mceText {padding-left:10px}
.defaultSkin .mceMenu table {background:#FFF}
.defaultSkin .mceMenu a, .defaultSkin .mceMenu span, .defaultSkin .mceMenu {display:block}
.defaultSkin .mceMenu td {height:20px}
.defaultSkin .mceMenu a {position:relative;padding:3px 0 4px 0}
.defaultSkin .mceMenu .mceText {position:relative; display:block; font-family:Tahoma,Verdana,Arial,Helvetica; color:#000; cursor:default; margin:0; padding:0 25px 0 25px; display:block}
.defaultSkin .mceMenu span.mceText, .defaultSkin .mceMenu .mcePreview {font-size:11px}
.defaultSkin .mceMenu pre.mceText {font-family:Monospace}
.defaultSkin .mceMenu .mceIcon {position:absolute; top:0; left:0; width:22px;}
.defaultSkin .mceMenu .mceMenuItemEnabled a:hover, .defaultSkin .mceMenu .mceMenuItemActive {background-color:#dbecf3}
.defaultSkin td.mceMenuItemSeparator {background:#DDD; height:1px}
.defaultSkin .mceMenuItemTitle a {border:0; background:#EEE; border-bottom:1px solid #DDD}
.defaultSkin .mceMenuItemTitle span.mceText {color:#000; font-weight:bold; padding-left:4px}
.defaultSkin .mceMenuItemDisabled .mceText {color:#888}
.defaultSkin .mceMenuItemSelected .mceIcon {background:url(img/menu_check.gif)}
.defaultSkin .mceNoIcons .mceMenuItemSelected a {background:url(img/menu_arrow.gif) no-repeat -6px center}
.defaultSkin .mceMenu span.mceMenuLine {display:none}
.defaultSkin .mceMenuItemSub a {background:url(img/menu_arrow.gif) no-repeat top right;}

/* Progress,Resize */
.defaultSkin .mceBlocker {position:absolute; left:0; top:0; z-index:1000; opacity:0.5; -ms-filter:'alpha(opacity=50)'; filter:alpha(opacity=50); background:#FFF}
.defaultSkin .mceProgress {position:absolute; left:0; top:0; z-index:1001; background:url(img/progress.gif) no-repeat; width:32px; height:32px; margin:-16px 0 0 -16px}

/* Formats */
.defaultSkin .mce_formatPreview a {font-size:10px}
.defaultSkin .mce_p span.mceText {}
.defaultSkin .mce_address span.mceText {font-style:italic}
.defaultSkin .mce_pre span.mceText {font-family:monospace}
.defaultSkin .mce_h1 span.mceText {font-weight:bolder; font-size: 2em}
.defaultSkin .mce_h2 span.mceText {font-weight:bolder; font-size: 1.5em}
.defaultSkin .mce_h3 span.mceText {font-weight:bolder; font-size: 1.17em}
.defaultSkin .mce_h4 span.mceText {font-weight:bolder; font-size: 1em}
.defaultSkin .mce_h5 span.mceText {font-weight:bolder; font-size: .83em}
.defaultSkin .mce_h6 span.mceText {font-weight:bolder; font-size: .75em}

/* Theme */
.defaultSkin span.mce_bold {background-position:0 0}
.defaultSkin span.mce_italic {background-position:-60px 0}
.defaultSkin span.mce_underline {background-position:-140px 0}
.defaultSkin span.mce_strikethrough {background-position:-120px 0}
.defaultSkin span.mce_undo {background-position:-160px 0}
.defaultSkin span.mce_redo {background-position:-100px 0}
.defaultSkin span.mce_cleanup {background-position:-40px 0}
.defaultSkin span.mce_bullist {background-position:-20px 0}
.defaultSkin span.mce_numlist {background-position:-80px 0}
.defaultSkin span.mce_justifyleft {background-position:-460px 0}
.defaultSkin span.mce_justifyright {background-position:-480px 0}
.defaultSkin span.mce_justifycenter {background-position:-420px 0}
.defaultSkin span.mce_justifyfull {background-position:-440px 0}
.defaultSkin span.mce_anchor {background-position:-200px 0}
.defaultSkin span.mce_indent {background-position:-400px 0}
.defaultSkin span.mce_outdent {background-position:-540px 0}
.defaultSkin span.mce_link {background-position:-500px 0}
.defaultSkin span.mce_unlink {background-position:-640px 0}
.defaultSkin span.mce_sub {background-position:-600px 0}
.defaultSkin span.mce_sup {background-position:-620px 0}
.defaultSkin span.mce_removeformat {background-position:-580px 0}
.defaultSkin span.mce_newdocument {background-position:-520px 0}
.defaultSkin span.mce_image {background-position:-380px 0}
.defaultSkin span.mce_help {background-position:-340px 0}
.defaultSkin span.mce_code {background-position:-260px 0}
.defaultSkin span.mce_hr {background-position:-360px 0}
.defaultSkin span.mce_visualaid {background-position:-660px 0}
.defaultSkin span.mce_charmap {background-position:-240px 0}
.defaultSkin span.mce_paste {background-position:-560px 0}
.defaultSkin span.mce_copy {background-position:-700px 0}
.defaultSkin span.mce_cut {background-position:-680px 0}
.defaultSkin span.mce_blockquote {background-position:-220px 0}
.defaultSkin .mce_forecolor span.mceAction {background-position:-720px 0}
.defaultSkin .mce_backcolor span.mceAction {background-position:-760px 0}
.defaultSkin span.mce_forecolorpicker {background-position:-720px 0}
.defaultSkin span.mce_backcolorpicker {background-position:-760px 0}

/* Plugins */
.defaultSkin span.mce_advhr {background-position:-0px -20px}
.defaultSkin span.mce_ltr {background-position:-20px -20px}
.defaultSkin span.mce_rtl {background-position:-40px -20px}
.defaultSkin span.mce_emotions {background-position:-60px -20px}
.defaultSkin span.mce_fullpage {background-position:-80px -20px}
.defaultSkin span.mce_fullscreen {background-position:-100px -20px}
.defaultSkin span.mce_iespell {background-position:-120px -20px}
.defaultSkin span.mce_insertdate {background-position:-140px -20px}
.defaultSkin span.mce_inserttime {background-position:-160px -20px}
.defaultSkin span.mce_absolute {background-position:-180px -20px}
.defaultSkin span.mce_backward {background-position:-200px -20px}
.defaultSkin span.mce_forward {background-position:-220px -20px}
.defaultSkin span.mce_insert_layer {background-position:-240px -20px}
.defaultSkin span.mce_insertlayer {background-position:-260px -20px}
.defaultSkin span.mce_movebackward {background-position:-280px -20px}
.defaultSkin span.mce_moveforward {background-position:-300px -20px}
.defaultSkin span.mce_media {background-position:-320px -20px}
.defaultSkin span.mce_nonbreaking {background-position:-340px -20px}
.defaultSkin span.mce_pastetext {background-position:-360px -20px}
.defaultSkin span.mce_pasteword {background-position:-380px -20px}
.defaultSkin span.mce_selectall {background-position:-400px -20px}
.defaultSkin span.mce_preview {background-position:-420px -20px}
.defaultSkin span.mce_print {background-position:-440px -20px}
.defaultSkin span.mce_cancel {background-position:-460px -20px}
.defaultSkin span.mce_save {background-position:-480px -20px}
.defaultSkin span.mce_replace {background-position:-500px -20px}
.defaultSkin span.mce_search {background-position:-520px -20px}
.defaultSkin span.mce_styleprops {background-position:-560px -20px}
.defaultSkin span.mce_table {background-position:-580px -20px}
.defaultSkin span.mce_cell_props {background-position:-600px -20px}
.defaultSkin span.mce_delete_table {background-position:-620px -20px}
.defaultSkin span.mce_delete_col {background-position:-640px -20px}
.defaultSkin span.mce_delete_row {background-position:-660px -20px}
.defaultSkin span.mce_col_after {background-position:-680px -20px}
.defaultSkin span.mce_col_before {background-position:-700px -20px}
.defaultSkin span.mce_row_after {background-position:-720px -20px}
.defaultSkin span.mce_row_before {background-position:-740px -20px}
.defaultSkin span.mce_merge_cells {background-position:-760px -20px}
.defaultSkin span.mce_table_props {background-position:-980px -20px}
.defaultSkin span.mce_row_props {background-position:-780px -20px}
.defaultSkin span.mce_split_cells {background-position:-800px -20px}
.defaultSkin span.mce_template {background-position:-820px -20px}
.defaultSkin span.mce_visualchars {background-position:-840px -20px}
.defaultSkin span.mce_abbr {background-position:-860px -20px}
.defaultSkin span.mce_acronym {background-position:-880px -20px}
.defaultSkin span.mce_attribs {background-position:-900px -20px}
.defaultSkin span.mce_cite {background-position:-920px -20px}
.defaultSkin span.mce_del {background-position:-940px -20px}
.defaultSkin span.mce_ins {background-position:-960px -20px}
.defaultSkin span.mce_pagebreak {background-position:0 -40px}
.defaultSkin span.mce_restoredraft {background-position:-20px -40px}
.defaultSkin span.mce_spellchecker {background-position:-540px -20px}


/**
 * TinyMCE 3.x
 */
table.mceLayout {
  clear: left;
}

/**
 * Align all buttons and separators in a single row, so they wrap into multiple
 * rows if required.
 */
.mceToolbar td {
  display: inline;
}
.mceToolbar a,
.mceSeparator {
  float: left;
}
.mceListBox,
.mceSplitButton {
  float: left;
  margin-bottom: 1px;
}

#webfm-progress, #webfm-alert {
  position: absolute;
}

/**
 * STYLE BIM BLOCK TABS
 */
.bim-tabs {

}

#bim-tabs ul.bim-tabs {
  margin: 0;
  padding: 0;
}

#bim-tabs ul.bim-tabs li {
  display: inline-block;
  margin: 0; /* Inline block means SPACES between elements pad */
  padding: 0;
}

#bim-tabs .bim-tabs li a {
  display: block;
  padding: 0.6em;
  font-weight: bold;
  font-size: 1.2em;
  font-family: Arial, Helvetica, sans-serif;
  color: white;
  background-color: #72797A;

}

#bim-tabs .bim-tabs li a.current-bim {
  background-color: #273233;
  border-bottom: 3px solid #67C9D7;
}

#bim-items-wrapper {
  overflow: hidden;
}
#bim-items {
  margin-left: -20px;
}

/**
 * Gradus Blog
 */
body.section-blog #content-header .title, body.section-taxonomy #content-header .title {
  padding-bottom: .5em;
  margin-bottom: 1em;
  border-bottom: 1px solid #000000;
}

body.section-blog .term .title, body.section-taxonomy .term .title {
  display: none;
}

.view-blog.view-display-id-page_1 *, .view-taxonomy-term * {
  box-sizing: border-box;
}

.view-blog.view-display-id-page_1 .views-row, body.section-taxonomy .view-taxonomy-term .views-row {
  clear: both;
  overflow: hidden;
  margin-bottom: 1.5em;
}

.view-blog.view-display-id-page_1 .nd-region-left, .view-taxonomy-term .nd-region-left {
  width: 42%;
  padding-right: 1.5em;
}
.view-blog.view-display-id-page_1 .nd-region-right, .view-taxonomy-term .nd-region-right {
  width: 58%;
}

body.section-blog .field.title h2, .view-taxonomy-term .node-type-corporateblog .field-title h2 {
  margin: 0;
}
body.section-blog .field.title a, .view-taxonomy-term .node-type-corporateblog .field-title a {
  color: #000000;
}

body.section-blog .field-blog-image-fid img, body.section-blog .node-type-corporateblog .field-blog-image img, .view-taxonomy-term .node-type-corporateblog .field-blog-image img {
  width: 100%;
  height: auto;
}

body.section-blog .field.created, .view-taxonomy-term .node-type-corporateblog .field-post-date {
  color: #878787;
}

body.node-type-corporateblog .field-post-date {
  margin-bottom: 1.5em;
}

body.section-blog .field.body, .view-taxonomy-term .node-type-corporateblog .field-body {
  margin-top: 1em;
}

body.section-blog .field.body p, .view-taxonomy-term .node-type-corporateblog .field-body p {
  margin-bottom: 0;
}

body.section-blog .field-blog-image-fid, .view-taxonomy-term .node-type-corporateblog .field-blog-image {
  margin-bottom: 1em;
}

/**
 * Newsletter Sign Up Form
 */
.newsletter-sign-up-button {
  float: right;
  padding: 1em 0 .5em;
  color: #ffffff;
}

.newsletter-sign-up-button--link {
  width: 61px;
  padding: .5em;
  margin-left: 1em;
  background: url(images/sign-up-bg--small.png) no-repeat top left;
  background-size: cover;
  color: #ffffff;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
}

.newsletter-sign-up-button p, .newsletter-sign-up-button a {
  display: inline-block;
  font-weight: 600;
}

.newsletter-sign-up-button p {
  color: #f8cde2;
}


.blocker {
  z-index: 999;
}

#block-webform-client-block-12674 {
  max-width: 1000px;
}

#webform-client-form-12674 .form-item label , #webform-client-form-12674-1 .form-item label {
  color: #2d2f30;
}

#block-webform-client-block-12674 h2.title {
  display: block;
  margin: 1em 0;
  font-size: 22px;
  color: #2d2f30;
}

#webform-client-form-12674, #webform-client-form-12674-1 {
  padding: 2em 1em 1em;
  margin: 2em 0 0;
  border-top: 1px solid rgb(169, 169, 169);
}

#webform-client-form-12674 .form-item label, #webform-client-form-12674-1 .form-item label {
  width: auto;
  text-align: left;
  font-weight: 600;
}

#webform-client-form-12674 .form-item input, #webform-client-form-12674 .webform-client-form .form-item select, #webform-client-form-12674-1 .form-item input, #webform-client-form-12674-1 .webform-client-form .form-item select {
  cursor: pointer;
}

#webform-client-form-12674 #webform-component-first-name, #webform-client-form-12674 #webform-component-email, #webform-client-form-12674 #webform-component-agree-privacy-terms, #webform-client-form-12674 #edit-actions, #webform-client-form-12674-1 #webform-component-first-name, #webform-client-form-12674-1 #webform-component-email, #webform-client-form-12674-1 #webform-component-agree-privacy-terms, #webform-client-form-12674-1 #edit-actions {
  display: inline-block;
  margin-right: 3em;
}

#webform-client-form-12674 .form-item , #webform-client-form-12674-1 .form-item {
  margin-left: 0;
}

#webform-client-form-12674 .form-item .form-text, #webform-client-form-12674-1 .form-item .form-text {
  background: #ffffff;
  border: 1px solid rgb(169, 169, 169);
}

#webform-client-form-12674 .webform-component-checkboxes .form-checkboxes .form-item, #webform-client-form-12674-1 .webform-component-checkboxes .form-checkboxes .form-item {
  display: inline-block;
  margin-right: 2em;
  text-align: center;
}

#webform-client-form-12674 .webform-component-checkboxes .form-checkboxes .form-item input, #webform-client-form-12674-1 .webform-component-checkboxes .form-checkboxes .form-item input {
  display: block;
  width: 16px;
  height: 16px;
  margin: 0 auto .5em;
}

#webform-client-form-12674 #webform-component-select-job-role, #webform-client-form-12674-1 #webform-component-select-job-role {
  padding-bottom: 1em;
  margin-bottom: 2em;
  border-bottom: 1px solid rgb(169, 169, 169);
}

#webform-client-form-12674 .webform-component-select .form-item label, #webform-client-form-12674-1 .webform-component-select .form-item label {
  width: 100%;
  margin: 1em 0;
  text-align: left;
}

#webform-client-form-12674 .webform-component-select .form-item select, #webform-client-form-12674-1 .webform-component-select .form-item select {
  padding: 2px 5px 2px 5px;
  color: #2d2f30;
  font-size: 12px;
  font-weight: 600;
}

#webform-client-form-12674 .webform-component-radios .form-radios .form-item label a, #webform-client-form-12674-1 .webform-component-radios .form-radios .form-item label a {
  color: #2d2f30;
  text-decoration: underline;
}

#webform-client-form-12674 .webform-component-radios .form-radios .form-item input, #webform-client-form-12674-1 .webform-component-radios .form-radios .form-item input {
  width: 16px;
  height: 16px;
  vertical-align: middle;
  margin-top: -2px;
}

#webform-client-form-12674 .form-submit, #webform-client-form-12674-1 .form-submit {
  float: none;
  width: 87px;
  left: 0;
  background: url(images/sign-up-bg.png) no-repeat top left;
  text-align: center;
  text-transform: uppercase;
}

/**
 * Gradus GDPR Form
 */
body.page-update-my-preferences .title {
  margin-top: 1em;
  font-size: 18px;
}

body.page-update-my-preferences #content {
  float: none;
}

.modal {
  display: none;
}

.gradus-gdpr-form__title {
  display: none;
}
.gradus-gdpr-form__description {
  padding: 2em 0;
  margin-bottom: 2em;
  border-bottom: 1px dotted #606060;
}

.gradus-gdpr-form input[type="checkbox"], .gradus-gdpr-form select, .gradus-gdpr-form input[type="submit"] {
  cursor: pointer;
}

.gradus-gdpr-form__email, .gradus-gdpr-form__checkbox-section, .gradus-gdpr-form__select-section {
  margin-bottom: 2em;
}

.gradus-gdpr-form__checkbox-section p, .gradus-gdpr-form__select-section p {
  font-weight: 600;
}

.gradus-gdpr-form__checkbox-section div {
  display: inline-block;
  margin-right: 1em;
}

.gradus-gdpr-form input[type="checkbox"] {
  width: 17px;
  height: 17px;
  vertical-align: middle;
}

.gradus-gdpr-form input[type="submit"] {
  width: 112px;
  margin-top: 1em;
  padding: .5em 2em;
  background: url(images/submit-background.png) no-repeat top left;
  border: 0;
  color: #ffffff;
}

.gradus-gdpr-form--opt-out {
  margin-top: 2em;
}

.gradus-gdpr-form--opt-out h3 {
  display: none;
}

.gradus-gdpr-form--opt-out .opt-out__message {
  font-weight: 600;
}

.gradus-gdpr-form--opt-out .gradus-gdpr-form--row {
  display: inline-block;
  margin-right: 1em;
}

.gradus-gdpr-form--opt-out input[type="submit"] {
  width: 112px;
  padding: .5em 2em;
  cursor: pointer;
  background: url(images/submit-white-bg.png) no-repeat top left;
  border: 0;
}

/**
 * Shadowbox
 */
#sb-body {
  background-color: #FFF;
}
#sb-body #sb-player.html {
  padding: 2em;
}
