form-submit/*
 * @file
 * global.styles
 *
 * Styles you add here will load for all device sizes, they are "global", as
 * opposed to "responsive" styles, which only load for a given breakpoint (media
 * query) that you set in theme settings. See the README for more details.
 *
 *
 * How to use this file:
 * --------------------
 *
 * There are many empty selectors and some basic styles to act as a guide.
 * Nothing is set in stone and you can change anything - even delete all of it
 * and start with your own clean slate.
 *
 * See global.base also which includes normalize.css and some additional
 * helper classes and base styles.
 */

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

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

html {
  background: #fff;
}


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


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

h1 {}
h2 {
  color: #3883bb;
}
h3 {}
h4 {}
h5 {}
h6 {}
p {}
b, strong {}
i, em {}
dfn {}
sup {}
sub {}
del {}
ins {}
blockquote {}
cite {}
q {}
address {}
ul {}
ol {}
li {}
dl {}
dd {}
dt {}
abbr {}
acronym {}
pre, code, tt, samp, kbd, var {
  font-family: Consolas, Monaco, 'Courier New', Courier, monospace, sans-serif;
}


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

/*
 * Outer wrappers:
 * - #page-wrapper: body > #page-wrapper
 * - #page: body > #page-wrapper > #page
 * - .container: body > #page-wrapper > #page.container
 *
 * The .container class holds the page width value from theme settings.
 */
#page-wrapper {}
#page {}
#page .container {}

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

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

/*
 * Main content column wrapper
 */
#content-column {
  background: rgba(255, 255, 255, 0.92) none repeat scroll 0 0;
}

/*
 * Wraps the main-content-header, the content region and feed-icons. Use this
 * wrapper to style the entire main content column
 */

#main-content {}

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

#content {}

/*
 * Footer wrapper
 */

#footer {}

/*
 * Panels may need additional margin wrangling when in the $content region
 */

#content .panel-display {}

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



/*
 * Wraps the leaderboard
 */

#leaderboard-wrapper {}
#leaderboard-wrapper .container {}

/*
 * Wraps the header
 */

#header-wrapper {
  /* 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 {
   display: none;
}

#breadcrumb-wrapper .container {}

/*
 * Wraps messages and help
 */

#messages-help-wrapper {}
#messages-help-wrapper .container {}

/*
 * Wraps the secondary content/preface region
 */

#secondary-content-wrapper {}
#secondary-content-wrapper .container {}

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

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

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

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

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

#branding {}

/*
 * Logo
 */
#logo {
  padding: 10px 0;
}


#logo img {
  vertical-align: bottom;
}

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

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

#site-name a {}

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

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

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

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

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


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

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

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


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


/*
 * Generic styles for the more link
 */
.more-link {}

/*
 * Generic styles for links. See the ul.links declaration in node and comment
 * stylesheets
 */

ul.links {
  margin: 0;
  padding: 0;
}

ul.links.inline {
  display: block;
}


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


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


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

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

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


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

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

.region {}

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

.region-inner {}

/*
 * Regions can be nested, such as when using Panels
 */

.region-inner .region-inner {}

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

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

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

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

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

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

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

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

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

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


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

a {
  text-decoration: none;
}

a:link,
a:visited {
  text-decoration: none;
  color: inherit;
}

a:active,
a.active {}

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


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

.nav {
  clear: both;
  margin: 10px 0;
}

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

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

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

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

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

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

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

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

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

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

ul.sf-menu li {}

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

ul.sf-menu a {}

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

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

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

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

.block-superfish ul ul {}

.block-superfish ul ul ul {}

.block-superfish ul ul ul ul {}

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

/*
 * Vertical style
 */

.sf-vertical {
  width: 100%;
}

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

.sf-vertical li.last {}

.sf-vertical li:hover ul,
.sf-vertical li.sfHover ul {
  left: 100%;
  top: 0;
  margin: 0;
  padding: 0;
}

.sf-vertical li a {
  padding: 0 10px;
}


/*
 * Navbar style
 */

.sf-navbar {
  padding-bottom: 0 !important;
}

/*
 * Sensible padding for the default style
 */

.sf-menu.sf-style-default a {
  padding: 0 10px;
}

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

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

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

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


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

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

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

ul.menu ul ul {}

ul.menu ul ul ul {}

ul.menu li {
  margin: 0;
}

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

ul.menu li a {}

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

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

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

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

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

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


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

.book-navigation {}

.book-navigation .page-links {}

.book-navigation .page-previous {}

.book-navigation .page-next {}

.book-navigation .page-up {
  /* Prevent text wrapping to a new line, assumes the string is two chars */
  min-width: 2em;
  white-space: nowrap;
}

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

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

#breadcrumb {
  margin: 10px 0;
}


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

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

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

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

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

#breadcrumb li.crumb-first {}

#breadcrumb li.crumb-last {}

#breadcrumb a {}

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

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

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

#breadcrumb .crumb-separator {}

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

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

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

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

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

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

/*
 * Theme the various states of pager links
 */
ul.pager li {}

ul.pager li a {}

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

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

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

ul.pager li.pager-item {}

ul.pager li.first {}

ul.pager li.last {}

ul.pager li.pager-current {}

ul.pager li.pager-first {}

ul.pager li.pager-previous {}

ul.pager li.pager-next {}

ul.pager li.pager-last {}

/* =============================================================================
 *   Skip Navigation
 * ========================================================================== */

#skip-link {
  left: 50%;
  margin-left: -6.5em;
  margin-top: 0;
  padding: 0 0.5em;
  position: absolute;
  width: 12em;
  z-index: 50;
}

#skip-link a {
  background: #444;
  background: rgba(0,0,0,0.6);
  color: #fff;
  display: block;
  line-height: 2;
  padding: 0;
  text-align: center;
  text-decoration: none;
}

#skip-link a:link,
#skip-link a:visited {
  background: #444;
  background: rgba(0,0,0,0.6);
  color: #fff;
  display: block;
  line-height: 2;
  padding: 0;
  text-align: center;
  text-decoration: none;
}

#skip-link a:hover,
#skip-link a:focus,
#skip-link a:active {
  outline: 0;
}



/* =============================================================================
 *   Tabs (local tasks)
 * ========================================================================== */

#tasks {
  margin-bottom: 15px;
}

ul.primary {
  border-bottom-color: #ccc;
  margin: 20px 0;
  padding: 0 0 0 5px;
}


ul.primary li {
  display: block;
  float: left;
  margin: 0 1px
}

/************ IQ SPECIFIC CODE STARTS HERE ghost buttons *************/


#iqtop-wrap {
    background: rgba(255, 255, 255, 0.97) none repeat scroll 0 0;
    box-shadow: 0 0 10px -5px rgba(50, 50, 50, 0.4);
    height: 112px;
    left: 0;
    position: fixed;   
    right: 0;
    z-index: 550;
    max-width: 1960px;
    width: 100%;  
}

#logo img {
    position: absolute;
    top: 10px;
}

#block-search-form {
    float: right;
    padding-top: 1em;
    padding-right: 7px;
}

#banner-content-wrapper {
   display: none;
   /*padding-top: 125px;*/
   height: 300px;
   background-color: #FFFFFF !important;
   background: url(/sites/default/files/images/pictures/front/futurebannerv2.jpg);
   background-repeat: no-repeat !important;
   background-attachment: scroll !important;
   background-position: right top !important;
   background-size: cover !important;
   -webkit-background-size: cover !important;
   -moz-background-size: cover !important;
   -o-background-size: cover !important;
}

#block-block-9 .container {
    max-width: 1160px;
    width: 100%;
    }




#block-block-9 .block-content {
 /*   position: absolute; */
  /*  bottom: 0; */
 /*   right: 0; */
    padding-top: 20px;
    }

#block-block-9 .frontblocktext {
    background: rgba(210, 1, 110, 0.75) none repeat scroll 0 0;
    color: white;
    font-family: "rooney-web",sans-serif;
    font-size: 1.0rem;
    font-weight: normal;
    padding-left: 20px;
    padding-top: 5px;
    padding-bottom: 5px;
    width: 500px;
}

#block-block-9 .frontblocktext h1 {
    color: white;
    font-family: "proxima-nova",sans-serif;
    font-size: 1.6rem;
    font-weight: heavy;
    padding-left: 0px;
    padding-top: 0px;
    padding-bottom: 0px;
    margin-top: 10px;
    margin-bottom: 0px;
}   

#block-block-9 .frontblocktext h2 {
    color: white;
    font-family: "proxima-nova",sans-serif;
    font-size: 1.35rem;
    font-weight: normal;
    padding-left: 0px;
    padding-top: 0px;
    padding-bottom: 0px;
    margin-top: 0px;
    margin-bottom: 0px;
}  

#block-block-9 .frontblocktext h5 {
    margin-top: 0px;
    margin-bottom: 10px;
}  

#block-block-9 .frontblocktext p {
    color: white;
    font-family: "proxima-nova",sans-serif; 
    line-height: 1.2;   
}  

#banner-wrap {
   padding-top: 125px;
}

#footer-wrapper {
   background-color: #eee;
   border: none;
   font-family: "proxima-nova",sans-serif;
   font-size: 0.8rem;
   line-height: 1.1rem;    
}

.block-client-block-3030 h2 {
   margin-top: 0px;
   line-height: 1.2rem;
}

a:link {
    font-family: "proxima-nova",sans-serif;
    color: #d7017a;
    font-weight: bold;
}

a:visited {
    font-family: "proxima-nova",sans-serif;
    color: #d7017a;
    font-weight: bold;
}

.region-three-33-third .item-list a:link,.region-three-33-third .item-list a:visited {
   color: black;
}

.region-two-66-33-top a:link,.region-two-66-33-top a:visited {
   color: white;
}

.view-iq-report-block .views-field-title a:link,.view-iq-report-block .views-field-title a:visited {
   color: black;
}

.view-id-similarterms .views-field-title a:link,.view-id-similarterms .views-field-title a:visited {
   color: black;
}

.view-id-similarterms .views-field-title a:hover, .view-iq-report-block .views-field-title a:hover, .region-three-33-third .item-list a:hover {
   color: #d7017a;
}
/****************** above modded after cache fix ******************************/

.ghost-button {
  display: inline-block;
  padding: 8px 24px;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 10px;
  text-align: center;
  outline: none;
  text-decoration: none;
}

.ghost-button:link,.ghost-button:visited {
  color: #fff;
}

.ghost-button:hover,
.ghost-button:active {
  background-color: #fff;
  color: #d7017a;
  text-decoration: none;
}

.ghost-button a:link, .ghost-button a:visited {
 color: #fff;
}

.ghost-button-pink {
  display: inline-block;
  padding: 5px 10px;
  color: #d7017a;
  border: 2px solid #d7017a;
  border-radius: 8px;
  text-align: center;
  outline: none;
  text-decoration: none;
  margin: 2px;
  font-weight: bold;
}

.ghost-button-pink:link,.ghost-button-pink:visited {
  color: #d7017a;
}

.ghost-button-pink:hover,
.ghost-button-pink:active {
  background-color: #d7017a;
  color: #fff;
  text-decoration: none;
}

.ghost-button-pink a:link, .ghost-button-pink a:visited {
 color: #d7017a;
}

.ghost-button-pink-small {
  display: inline-block;
  font-size: 0.8rem;
  padding: 0px 8px;
  color: #d7017a;
  border: 2px solid #d7017a;
  border-radius: 10px;
  text-align: center;
  outline: none;
  text-decoration: none;
  margin-bottom: 8px;
}

.ghost-button-pink-small:link,.ghost-button-pink-small:visited {
  color: #d7017a;
}

.ghost-button-pink-small a:link, .ghost-button-pink-small a:visited {
 color: #d7017a;
}

.ghost-button-pink-small:hover,
.ghost-button-pink-small:active {
  background-color: #d7017a;
  color: #fff;
  text-decoration: none;
}

.ghost-button-pink-small a:hover,
.ghost-button-pink-small a:active {
  color: #fff;
  text-decoration: none;
}

.form-submit {
  display: inline-block;
  padding: 5px 10px;
  color: #d7017a;
  background-color: #fff;
  border: 2px solid #d7017a;
  border-radius: 8px;
  text-align: center;
  outline: none;
  text-decoration: none;
  margin: 2px;
  font-weight: bold;
}

.form-submit:link,.form-submit:visited {
  color: #d7017a;
}

.form-submit:hover,.form-submit:active {
  background-color: #d7017a;
  color: #fff;
  text-decoration: none;
}

#webform-client-form-13097 .form-submit {
  display: inline-block;
  padding: 5px 10px;
  color: #ffffff;
  background-color: #da202a;
  border: 2px solid #da202a;
  border-radius: 8px;
  text-align: center;
  outline: none;
  text-decoration: none;
  margin: 2px;
  font-weight: bold;
}

/*************** reports tdl link rewrite ******************/

div.dafiles a {
  color:transparent;
  position:absolute;
  top:1%;
}

div.dafiles span {
  display:inline-block;
}

/************* VVVVVVV  all css VVVVVV *****************************/


/************************ home page content - content boxes ****************/

.viewbox, .newsheading, .viewboxtop {
    padding-left: 15px;
    padding-right: 15px;
}

.viewbox, .newsheading {
    background-color: #fff;
    border: 1px solid #e7e7e6;
    border-radius: 3px;
    box-shadow: 1px 1px 5px 0 rgba(100, 100, 100, 0.12);
    /*font-size: 14px;*/
    line-height: 1.4em;
    margin-bottom: 10px;
}

.viewbox .views-field-field-articleimage, .viewbox .views-field-field-newsimage {
   padding-left: 0px;
   padding-right: 0px;
   padding-top: 0px;
   padding-bottom: 5px;      
   margin-left: -15px;
   float: left;		
}

.viewbox .views-field-body, .viewbox .views-field-field-l-basic-listing, .views-field-field-short-desc, .views-field-view-node {
   padding-top: 0px;
   padding-bottom: 10px;		 
}

.viewbox .views-field-title {
   padding-top: 0px;
   padding-bottom: 0px;     
}

.viewbox .views-field-title H2 {
  margin-bottom: 0.3rem;  	
  font-size: 1.5rem;
  color: #000000;	
}

.viewbox .views-field-field-article-date, .views-field-comment-count {
   padding-top: 0px;
   padding-bottom: 10px;
   font-family: "proxima-nova",sans-serif;
   font-size: 0.8rem;
   font-weight: bold;
   line-height: 1.1rem;   
}


.newsheading .views-field-body {
   padding-top: 0px;
   padding-bottom: 10px;		
   padding-left: 15px;
   padding-right: 15px;
}

.newsheading .views-field-title {
   padding-top: 0px;
   padding-bottom: 0px; 
   padding-left: 15px;
   padding-right: 15px;  		
}

.newsheading .views-field-title H2 {  
  margin: 0px;
  padding-left: 15px; 
  color: #000000; 		
}

.newsheading .views-field-field-article-date, .views-field-comment-count {
   padding-top: 0px;
   padding-bottom: 10px;
   font-family: "proxima-nova",sans-serif;
   font-size: 0.8rem;
   font-weight: bold;
   line-height: 1.1rem;
   padding-left: 15px;
   padding-right: 15px;		
}

.newsheading .image-style-headline-box-355x300 {
   float: right;
   padding-left: 15px;
}

.newsheading a:link {
    font-family: "proxima-nova",sans-serif;
    color: #d7017a;
    font-weight: bold;
}

.newsheading a:visited {
    font-family: "proxima-nova",sans-serif;
    color: #d7017a;
    font-weight: bold;
}

.views-more-link, .more-link, .morelink{
    font-family: "proxima-nova",sans-serif;
    color: #d7017a;       
}

.xxviewbox a:link, .xxviewbox a:visited  {
    font-family: "proxima-nova",sans-serif;
    color: #d7017a;
    font-weight: bold;
}
 


.viewboxtop {
    background-color: #fff;
    border: 1px solid #e7e7e6;
    border-radius: 3px;
    box-shadow: 1px 1px 5px 0 rgba(100, 100, 100, 0.12);
    /*font-size: 14px;*/
    line-height: 1.5em;
    margin-bottom: 10px;
    padding-left: 25px;
    padding-right: 25px;
    margin-right: -13px;
    min-height: 315px;
}

.viewboxtop .views-field-body {
   padding-top: 10px;
   padding-bottom: 10px;		
}

.viewboxtop .views-field-title {
   padding-top: 0px;
   padding-bottom: 0px;		
}

.viewboxtop .views-field-title H2 {
  margin-bottom: 0.3rem;  		
}

.viewboxtop .views-field-field-articleimage {
   padding-left: 10px;
   padding-right: 0px;
   padding-top: 10px;
   padding-bottom: 5px;
   float: right;	 
}

.viewboxtop .views-field-field-article-date {
   padding-top: 0px;
   padding-bottom: 10px;
   font-family: "proxima-nova",sans-serif;
   font-size: 0.8rem;
   font-weight: bold;
   line-height: 1.1rem;		
}

.homerightbox {
   font-family: "proxima-nova",sans-serif;
   background-color: #eee;
   width: 360px;
   margin-left: 8px;
}

.homerightbox .views-field-field-articleimage {
   padding-left: 0px;
   padding-right: 10px;
   padding-top: 10px;
   padding-bottom: 5px;  
   margin-right: 10px; 
   float: left;		
}

.homerightbox .image-style-mini-covers-75 {
   border: 1px solid #bbb;
   margin-left: 10px;
}

.pane-webform-client-block-13085 form {
   font-size: 0.9rem;
   margin-left: 10px;
}

.pane-views-exp-iq-news-panel-pane-1 {
     margin: 10px;
}

.adboxright {   
    background-color: #eee;
    padding: 35px 30px 30px;
    margin-top: 20px;  
    margin-left: 8px;
    width: 300px
}

.networkad {   
    background-color: #eee;
    padding: 35px 30px 30px;
    margin-top: 20px;  
    margin-left: 8px;
    width: 300px
}

.networkad p {   
   margin: 0px;
   padding: 0px;
}

.block-title H2 {  
  color: #000000; 		
}


/******************* report page *****************************************************/
.view-id-iq_report_page .views-field-field-articleimage img {
   border: 1px solid #bbb;   
}

/****************** news page *******************************************************/
#newspage .region-three-33-top .pane-1 .block-inner { 
   background-image: linear-gradient( rgba(210, 1, 110, 0.25), rgba(210, 1, 110, 0.25)), url('/sites/default/files/images/backgrounds/wash/back5.jpg'); 
   border: medium none;
    font-weight: bold;
    width: 100%;
    margin-bottom: 20px;
    margin-left: 10px;
    margin-right: 0;
    padding-bottom: 20px;
    padding-top: 5px;
    text-align: center;
    color: #fff;
    font-family: "proxima-nova",sans-serif;
    background-repeat: no-repeat !important;
    background-attachment: scroll !important;
    background-position: left top !important;
    background-size: cover !important;
   -webkit-background-size: cover !important;
   -moz-background-size: cover !important;
   -o-background-size: cover !important;
}

#newspage .region-three-33-top .pane-1 .block-inner H2 {
  color: #fff;
} 

#newspagex .view-display-id-panel_pane_3 .views-row {
   height: 300px;
   width: 100%;
}

#newspage .viewboxtop {
    background-color: #fff;
    border: 1px solid #e7e7e6;
    border-radius: 3px;
    box-shadow: 1px 1px 5px 0 rgba(100, 100, 100, 0.12);
    line-height: 1.5em;
    margin-bottom: 15px;
    min-height: 290px;
    padding-left: 15px;
    padding-right: 0px;
}

#newspage .viewboxtop .views-field-field-newsimage {
   padding-left: 15px;
   padding-right: 0px;
   padding-top: 0px;
   padding-bottom: 0px;
   float: right;	 
}

/******************* Node rendering css - articles, reports and blogs *****************/


.image-style-250-cover-render {
   float: none;
   margin: auto;   
   border: 1px solid #bbb;  	
}

.rightback .image-style-square-300 {
   margin-left: 18px;   
   border: 1px solid #bbb;  	
}

.rightback {
   background-color: #eee;
   border: none;
   margin-bottom: 20px;
   padding: 10px;
   text-align: left;
   font-family: "proxima-nova",sans-serif;
   font-size: 0.8rem;
   font-weight: bold;
   line-height: 1.1rem;    
}

.centerit {
   background-color: none;
   border: none;
   margin-bottom: 20px;
   padding: 10px;
   text-align: center;
   font-family: "proxima-nova",sans-serif;
   font-size: 0.8rem;
   font-weight: bold;
   line-height: 1.1rem;    
}

.rightback img {
   border: 1px solid #bbb; 
}

.rightback .image-style-medium {
   margin-left: 65px;
   display: block;     
}

.rightback .view-content {
   text-align: left;
   font-family: "proxima-nova",sans-serif;
   font-size: 0.8rem;
   font-weight: bold;
   line-height: 1.1rem;    
}


.rightback .image-ad img {
    margin-bottom: 15px;
    margin-left: 18px;
    margin-top: 18px;
}

.one-column .region, div.at-panel .region-conditional-stack {
    clear: both;
    display: block;
    float: none;
    width: 98.5%;
}


.region-two-66-33-top {
    background-color: #eee;
    border: none;
    margin-left: 10px;
    margin-right: 0px;
    margin-bottom: 20px;
    padding-top: 5px;
    padding-bottom: 20px;    
    text-align: center;  
    font-family: "proxima-nova",sans-serif;
    font-weight: bold;      
    background-repeat: no-repeat !important;
    background-attachment: scroll !important;
    background-position: left top !important;
    background-size: cover !important;
   -webkit-background-size: cover !important;
   -moz-background-size: cover !important;
   -o-background-size: cover !important;
    color: #fff;   
}

.region-two-66-33-top h1 {    
    color: fff;
}

.node-reportsX .region-two-66-33-top { 
   background-image: linear-gradient( rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.25)), url('/sites/default/files/images/backgrounds/wash/back6.jpg'); 
}

.node-reports .pinklink {
    background-color: #d7017a;
    border: medium none;
    color: white;
    font-family: "proxima-nova",sans-serif;
    font-size: 1.0rem;
    font-weight: bold;
    height: auto !important;
    line-height: 1.2rem;
    margin-bottom: 20px;
    padding: 10px 10px !important;
    text-decoration: underline;
    text-align: center;
}  

.pinklink .file-displayed-counter {
    display: block;
    float: right;
    font-size: 0.6rem;
    font-weight: normal;
}

/*********************** big 100 index page ***************************************/
#node-2199 .one-column .region, div.at-panel .region-conditional-stack{
    clear: both;
    display: block;
    float: none;
    width: 100%;
} 

#node-13416 .one-column .region {
    clear: both;
    display: block;
    float: none;
    width: 100%;
} 

#node-14243 .one-column .region {
    clear: both;
    display: block;
    float: none;
    width: 100%;
} 

#node-14997 .one-column .region {
    clear: both;
    display: block;
    float: none;
    width: 100%;
} 

div.at-panel .region-conditional-stack{
    clear: both;
    display: block;
    float: none;
    width: 98%;
} 

/************************ big 100 profile pages *************************************/

.node-big100 .region-two-66-33-top { 
   background-image: linear-gradient( rgba(50, 150, 250, 0.9), rgba(255, 255, 255, 0.9)), url('/sites/default/files/images/backgrounds/wash/big100blur.jpg'); 
}

.node-big100 .field-name-field-articleimage {
   height: 180px;
   margin-left: 25px;
}

.node-big100 .rightback .image-style-medium {
  margin-left: 55px;
    margin-top: 30px;  
   display: block;     
}

/************************ contributor page **********************************/

.node-contributor .region-two-66-33-top { 
   background-image: linear-gradient( rgba(210, 1, 110, 0.5), rgba(0, 0, 0, 0.5)), url('/sites/default/files/images/backgrounds/wash/script850.jpg');   
}

.view-contributor-content-list .viewbox .views-field-field-articleimage {
   float: left;
   padding-top: 10px;
   padding-bottom: 10px;		
   padding-right: 10px;  
   padding-left: 10px;
   margin: 15px;
   background-color: #eee;
   border: none;
}


.view-id-contributor_content_list .views-row {
   min-height: 155px;
}

/****************************************************************************/

#footer {
   padding-top: 1em;
}


.pinklink {
    background-color: #d7017a;
    border: medium none;
    color: white;
    font-family: "proxima-nova",sans-serif;
    font-size: 1.2rem;
    font-weight: bold;
    height: auto !important;
    line-height: 1.5rem;
    margin-bottom: 20px;
    padding: 10px 10px !important;
    text-decoration: none;
}    

.pinklink H2 {    
    color: white;
    text-align: center;
}    

.pinklink a:link {
    font-family: "proxima-nova",sans-serif;
    color: #fff;
    font-weight: bold;
}

.pinklink a:visited {
    font-family: "proxima-nova",sans-serif;
    color: #fff;
    font-weight: bold;
}

.taglist {
    font-family: "proxima-nova",sans-serif;
    color: #d7017a;
}

.taglist .label-inline {
    font-family: "proxima-nova",sans-serif;
    color: #000;
    float: left;
}
/****************** contributor block ******************************/

.viewcontr {
   font-family: "proxima-nova",sans-serif;
   font-size: 0.8rem;
   font-weight: bold;
   line-height: 1.1rem; 
   height: 110px;
}	

.viewcontr .views-field-field-author-image {
   float: left;
   margin-right: 10px;   
}

.viewcontr .views-field-title {
   color: #d7017a;
}

.viewcontr .views-field-field-short-desc {
   font-weight: normal;
}

/****************** related reports ******************************/

.relatedrep {
   font-family: "proxima-nova",sans-serif;
   font-size: 0.8rem;
   font-weight: bold;
   line-height: 1.1rem; 
   /*height: 110px;*/
}	

.relatedrep .views-field-field-articleimage {
   float: left;
   margin-right: 10px;   
}

.relatedrep .views-field-title a{
   color: #000;
}

.relatedrep .views-field-field-short-desc {
   font-weight: normal;
}

/********* network directory content *************************/

.node-listings .rightback {
    background-color: #fff;
    border: none;
    margin-bottom: 0px;
    padding-left: 20px;
    padding-right:10px;
    padding-top: 5px;
    padding-bottom: 5px;
    text-align: left;
    font-family: "proxima-nova",sans-serif;
    font-size: 0.8rem;
    font-weight: bold;
    line-height: 1.1rem;
    float: none;    
}

.node-listings .field-type-image {
    padding-top: 2em;
    /*min-height: 210px;*/
    padding-bottom: 30%; 
    float: none;
}

.node-listings .field-name-field-postcode {
    padding-bottom: 2em;
}

.node-listings a:link,.node-listings a:visited {
    color: #000;   
    text-decoration: underline; 
}


.view-directory-listing .views-field-field-l-logo {
     
}

.view-directory-listing .views-field-title {
   width: 75%;
}

#network .views-exposed-form .views-exposed-widget {
    padding-left: 1em;
    padding-right: 1em;
    float: none;
    font-family: "proxima-nova",sans-serif;
    font-size: 0.9rem;
    font-weight: bold;
    line-height: 1.1rem; 
}

#network .views-exposed-form .views-exposed-widget .form-submit {
    margin-top: 0px; 
} 

#network .views-widget a:link {
    color: #d7017a;
    padding-bottom: 10px;
}

#network .views-widget a:visited {
    color: #d7017a;
    padding-bottom: 10px;
}

#network .homerightbox .pane-title {
  margin-bottom: 0em; 
  margin-left: 15px; 
  margin-top: 15px;		
}

.viewbox .views-field-field-l-basic-listing {
   padding-top: 0px;
   padding-bottom: 10px;		
    padding-left: 0px;
    padding-right: 15px;
}

#network .viewbox .views-field-field-l-logo {
   padding-top: 10px;
   padding-bottom: 10px;		
   padding-right: 10px;
    float: right;
   padding-left: 10px;   
}

.node-listings .rightback img {
   border: none; 
   float: none; 
}

#network .viewbox .views-field-title H2 {
   padding-top: 10px;
   padding-bottom: 10px; 
   padding-left: 0px;
   padding-right: 0px;
   margin: 0px;  		
}

#network .viewbox .views-field-view-node {
   padding-top: 0px;
   padding-bottom: 5px; 
   padding-left: 0px;
   padding-right: 15px; 
  
}

/********* report page content *************************/

.view-iq-report-page .viewbox .views-field-field-articleimage {
   float: left;
   padding-top: 15px;
   padding-bottom: 5px;		
   padding-right: 15px;  
   padding-left: 5px;
   margin: 5px;
   background-color: none;
   border: none;
}

.view-iq-report-page .views-row {
   min-height: 180px;
}

#iqreport .region-two-66-33-top { 
   background-image: linear-gradient( rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.25)), url('/sites/default/files/images/backgrounds/wash/back6.jpg'); 
   border: medium none;
    font-weight: bold;
    width: 99%;
    margin-bottom: 20px;
    margin-left: 10px;
    margin-right: 0;
    padding-bottom: 20px;
    padding-top: 5px;
    text-align: center;
}



#iqreport .region-two-66-33-top H2 {
   color: #fff;    
}

/*************** blog index page **************/

#iqblog .region-three-33-top .pane-1 .block-inner { 
   background-image: linear-gradient( rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.25)), url('/sites/default/files/images/backgrounds/wash/back5.jpg'); 
   border: medium none;
    font-weight: bold;
    width: 100%;
    margin-bottom: 20px;
    margin-left: 10px;
    margin-right: 0;
    padding-bottom: 20px;
    padding-top: 5px;
    text-align: center;
    color: #fff;
    font-family: "proxima-nova",sans-serif;
    background-repeat: no-repeat !important;
    background-attachment: scroll !important;
    background-position: left top !important;
    background-size: cover !important;
   -webkit-background-size: cover !important;
   -moz-background-size: cover !important;
   -o-background-size: cover !important;
}

#iqblog .region-three-33-top .pane-1 .block-inner H2 {
  color: #fff;
} 

#iqblog .region-three-33-third .block-inner H2 {
  margin-top: 0px;
} 

/********************** styling Big 100 ad block **********************/

#ad_groups_92 .simplead-container {
   margin-top: 20px; 
}

#ad_groups_92 .simplead-container img {
   border: 1px solid #bbb;
}

/******************* webforms ****************************/
.fieldset-legend {
   font-family: "proxima-nova",sans-serif;
   color: #d7017a;
}

.webform-container-inline label {
    color: #111;
    display: block;
    float: left;
    font-family: "proxima-nova",sans-serif;
    width: 220px;
}

.webform-component-textarea label {
    color: #111;
    font-family: "proxima-nova",sans-serif;    
}

.form-item .description {
    font-family: "proxima-nova",sans-serif;  
    color: #d7017a;
}

.rightback .webform-client-form {
   text-align: left;
   font-family: "proxima-nova",sans-serif;
   font-size: 0.8rem;
   font-weight: bold;
   line-height: 1.1rem;    
}

/*********** vendor or news page ************************/
.view-iq-vendor-page .viewbox .views-field-field-articleimage {
   float: left;
   padding: 10px;
   margin: 15px;
   background-color: #eee;
   border: none;
}

#iqvendor .views-field-field-newsimage {
   float: left;
   padding: 10px;
   margin-top: 0px;
   margin-left: 0px;
   margin-right: 15px;
   margin-bottom: 15px;
   background-color: #eee;
   border: none;
}

#iqvendor .view-iq-vendor-page .views-row {
   height: 200px;
}

#iqvendor .region-two-66-33-top { 
   background-image: linear-gradient( rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.25)), url('/sites/default/files/images/backgrounds/wash/back6.jpg'); 
   border: medium none;
    font-weight: bold;
    width: 99%;
    margin-bottom: 20px;
    margin-left: 10px;
    margin-right: 0px;
    margin-top: 0px
    padding-bottom: 20px;
    padding-top: 5px;
    text-align: center;
}

#iqvendor .region-two-66-33-top H2 {
    color: #fff;
}

#iqvendor .views-field-title H2 {
   margin: 0px;    
}

#iqvendor .views-field-view-node {
  text-align: right;
}

/*********** GDPR Digest ************************/

#gdpr .views-field-field-newsimage {
   float: left;
   padding: 10px;
   margin-top: 0px;
   margin-left: 0px;
   margin-right: 15px;
   margin-bottom: 15px;
   background-color: #eee;
   border: none;
}

#gdpr .views-field-field-articleimage {
   float: left;
   padding: 10px;
   margin-top: 0px;
   margin-left: 0px;
   margin-right: 15px;
   margin-bottom: 15px;
   background-color: #eee;
   border: none;
}

#gdpr .view-iq-vendor-page .views-row {
   height: 200px;
}

#gdpr .region-two-66-33-top { 
   background-image: linear-gradient( rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.25)), url('/sites/default/files/images/backgrounds/wash/euflag.jpg'); 
   border: medium none;
    font-weight: bold;
    width: 99%;
    margin-bottom: 20px;
    margin-left: 10px;
    margin-right: 0px;
    margin-top: 0px
    padding-bottom: 20px;
    padding-top: 5px;
    text-align: center;
}

#gdpr .region-two-66-33-top H2 {
    color: #fff;
}

#gdpr .views-field-title H2 {
   margin: 0px;  
   line-height: 1.4rem;  
}

#gdpr .views-field-view-node {
  text-align: right;
}

#gdpr .views-field-field-article-date {
   font-family: "proxima-nova",sans-serif;
   font-size: 0.8rem;
   font-weight: bold;
   line-height: 1.1rem;   
}
   

/******************************** user page **********************************************/

.user-profile .field-label-inline .field-label {
    display: inline-block;
    width: 50%;
}

.user-profile h2 {
   font-family: "proxima-nova",sans-serif;
   font-size: 1.0rem;
   font-weight: bold;
   line-height: 1.0rem; 
    margin: 0.5em 0;
}

.user-profile .field-label-inline .field-items {
    display: inline-block;
    width: 50%;
    font-family: "proxima-nova",sans-serif;
    font-size: 1.0rem;
}

.view-mode-event_report_list .image-style-portraitcover {
   float: left;
   padding-top: 10px;
   padding-bottom: 10px;
   padding-right: 10px;
   padding-left: 10px;
   margin: 10px;
   border: solid;
   border-width: 1px;
   border-color: #000;   
}

/*********************************** report landing pages ************************/

.permstate {
   font-family: "proxima-nova",sans-serif;
   font-size: 0.8rem;
   font-weight: normal;
}
#webform-component-i-agree .form-required {
    display: none;
}

.form-item-submitted-i-agree-Y {
   display: none;
}

/********************************* comment formating *******************************/
.cominfo {
   font-family: "proxima-nova",sans-serif;
   font-size: 0.7rem;
   font-weight: bold;
}

.comment-title h3 {
   color: #000;
}

/******************************** big 100 *************************************/

   
.centerit {
   background: none;
}

.view-mode-iconlist {
   display: inline-block; 
   float: none;
   padding: 0px;
   margin: 0px;
}

.view-mode-iconlist img{
   width: 70px;   
}

 .field-name-field-interests {
   text-align: center;
   float: none;
}   

#node-14997 .enable h2 {
   color: #3883bb;
} 

#node-14997 .titans h2 {
   color: #d7017a;
} 

#node-14997 .power10 h2 {
   color: #000;
}

li#power10 {
    color: #fff;
    background: #000;
}

.power10 li {
    color: #fff;
    background: #000;
}

#power10 li {
    color: #fff;
    background: #000;
}

li#titans {
    color: #fff;
    background: #d7017a;
}

li#enable {
    color: #fff;
    background: #3883bb;
}

li#enable .filter-active {
    border: 3px solid #3883bb !important;
}

/************************************* tag results **********************************/

.tagfact {
   font-family: "proxima-nova",sans-serif;
   font-size: 0.8rem;
   font-weight: bold;
}