@charset "UTF-8";
/* Neat 1.7.0.pre
 * http://neat.bourbon.io
 * Copyright 2012-2014 thoughtbot, inc.
 * MIT License */
/**
 * Returns a media context (media query / grid context) that can be stored in a variable and passed to `media()` as a single-keyword argument. Media contexts defined using `new-breakpoint` are used by the visual grid, as long as they are defined before importing Neat.
 *
 * @param {List} $query
 *   - A list of media query features and values. Each `$feature` should have a corresponding `$value`. If there is only a single `$value` in `$query`, `$default-feature` is going to be used. The number of total columns in the grid can be set by passing `$columns` at the end of the list (overrides `$total-columns`). For a list of valid values for `$feature`, click [here](http://www.w3.org/TR/css3-mediaqueries/#media1).
 *
 * @param {Number (unitless)} $total-columns ($grid-columns)
 *   - Number of columns to use in the new grid context. Can be set as a shorthand in the first parameter.
 *
 * @example scss - Usage
 *   $mobile: new-breakpoint(max-width 480px 4);
 *
 *   .element {
 *     @include media($mobile) {
 *       @include span-columns(4);
 *     }
 *   }
 *
 * @example css - CSS Output
 *   @media screen and (max-width: 480px) {
 *     .element {
 *       display: block;
 *       float: left;
 *       margin-right: 7.42297%;
 *       width: 100%;
 *     }
 *     .element:last-child {
 *       margin-right: 0;
 *     }
 *   }
 */
/**
 * Sets the relative width of a single grid column. The unit used should be the same one used to define `$gutter`. To learn more about golden-ratio() see [Bourbon docs](http://bourbon.io/docs/#golden-ratio). Set with a `!global` flag.
 *
 * @type Number (Unit)
 */
/**
 * Sets the relative width of a single grid gutter. The unit used should be the same one used to define `$column`. To learn more about golden-ratio() see [Bourbon docs](http://bourbon.io/docs/#golden-ratio). Set with the `!global` flag.
 *
 * @type Number (Unit)
 */
/**
 * Sets the total number of columns in the grid. Its value can be overridden inside a media query using the `media()` mixin. Set with the `!global` flag.
 *
 * @type Number (Unitless)
 */
/**
 * Sets the max-width property of the element that includes `outer-container()`. To learn more about `em()` see [Bourbon docs](http://bourbon.io/docs/#px-to-em). Set with the `!global` flag.
 *
 * @type Number (Unit)
 */
/**
 * When set to true, it sets the box-sizing property of all elements to `border-box`. Set with a `!global` flag.
 *
 * @type Bool
 *
 * @example css - CSS Output
 *   * {
 *     -webkit-box-sizing: border-box;
 *     -moz-box-sizing: border-box;
 *     box-sizing: border-box;
 *   }
 */
/**
 * Sets the default [media feature](http://www.w3.org/TR/css3-mediaqueries/#media) that `media()` and `new-breakpoint()` revert to when only a breakpoint value is passed. Set with a `!global` flag.
 *
 * @type String
 */
/**
 * Sets the default layout direction of the grid. Can be `LTR` or `RTL`. Set with a `!global` flag.
 *
 * @type String
 */
/**
 * Displays the visual grid when set to true. The overlaid grid may be few pixels off depending on the browser's rendering engine and pixel rounding algorithm. Set with the `!global` flag.
 *
 * @type Bool
 */
/**
 * Sets the visual grid color. Set with `!global` flag.
 *
 * @type Color
 */
/**
 * Sets the `z-index` property of the visual grid. Can be `back` (behind content) or `front` (in front of content). Set with `!global` flag.
 *
 * @type String
 */
/**
 * Sets the opacity property of the visual grid. Set with `!global` flag.
 *
 * @type Number (unitless)
 */
/**
 * Disable all deprecation warnings. Defaults to `false`. Set with a `!global` flag.
 *
 * @type Bool
 */
@import url(/products/css/flaticon-components.css);
html {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
*, *:before, *:after {
	-webkit-box-sizing: inherit;
	-moz-box-sizing: inherit;
	box-sizing: inherit;
}
/**
 * Removes the element's gutter margin, regardless of its position in the grid hierarchy or display property. It can target a specific element, or every `nth-child` occurrence. Works only with `block` layouts.
 *
 * @param {List} $query (block)
 *   List of arguments. Supported arguments are `nth-child` selectors (targets a specific pseudo element) and `auto` (targets `last-child`).
 *
 *   When passed an `nth-child` argument of type `*n` with `block` display, the omega mixin automatically adds a clear to the `*n+1` th element. Note that composite arguments such as `2n+1` do not support this feature.
 *
 *   **Deprecation warning**: The omega mixin will no longer take a `$direction` argument. To change the layout direction, use `row($direction)` or set `$default-layout-direction` instead.
 *
 * @example scss - Usage
 *   .element {
 *     @include omega;
 *   }
 *
 *   .nth-element {
 *     @include omega(4n);
 *   }
 *
 * @example css - CSS Output
 *   .element {
 *     margin-right: 0;
 *   }
 *
 *   .nth-element:nth-child(4n) {
 *     margin-right: 0;
 *   }
 *
 *   .nth-element:nth-child(4n+1) {
 *     clear: left;
 *   }
 */
/**
 * Makes an element a outer container by centring it in the viewport, clearing its floats, and setting its `max-width`.
 * Although optional, using `outer-container` is recommended. The mixin can be called on more than one element per page, as long as they are not nested.
 *
 * @param {Number (unit)} $local-max-width ($max-width)
 *   Max width to be applied to the element. Can be a percentage or a measure.
 *
 * @example scss - Usage
 *   .element {
 *     @include outer-container(100%);
 *   }
 *
 * @example css - CSS Output
 *   .element {
 *     *zoom: 1;
 *     max-width: 100%;
 *     margin-left: auto;
 *     margin-right: auto;
 *   }
 *
 *   .element:before, .element:after {
 *     content: " ";
 *     display: table;
 *   }
 *
 *   .element:after {
 *     clear: both;
 *   }
 */
/**
 * Specifies the number of columns an element should span. If the selector is nested the number of columns of its parent element should be passed as an argument as well.
 *
 * @param {List} $span
 *   A list containing `$columns`, the unitless number of columns the element spans (required), and `$container-columns`, the number of columns the parent element spans (optional).
 *
 *   If only one value is passed, it is assumed that it's `$columns` and that that `$container-columns` is equal to `$grid-columns`, the total number of columns in the grid.
 *
 *   The values can be separated with any string such as `of`, `/`, etc.
 *
 * @param {String} $display (block)
 *   Sets the display property of the element. By default it sets the display propert of the element to `block`.
 *
 *   If passed `block-collapse`, it also removes the margin gutter by adding it to the element width.
 *
 *   If passed `table`, it sets the display property to `table-cell` and calculates the width of the element without taking gutters into consideration. The result does not align with the block-based grid.
 *
 * @example scss - Usage
 *   .element {
 *     @include span-columns(6);

 *    .nested-element {
 *      @include span-columns(2 of 6);
 *    }
 *  }
 *
 * @example css - CSS Output
 *   .element {
 *     display: block;
 *     float: left;
 *     margin-right: 2.35765%;
 *     width: 48.82117%;
 *   }
 *
 *   .element:last-child {
 *     margin-right: 0;
 *   }
 *
 *   .element .nested-element {
 *     display: block;
 *     float: left;
 *     margin-right: 4.82916%;
 *     width: 30.11389%;
 *   }
 *
 *   .element .nested-element:last-child {
 *     margin-right: 0;
 *   }
 */
/**
 * Designates the element as a row of columns in the grid layout. It clears the floats on the element and sets its display property. Rows can't be nested, but there can be more than one row element—with different display properties—per layout.
 *
 * @param {String} $display (default)
 *   Sets the display property of the element and the display context that will be used by its children. Can be `block` or `table`.
 *
 * @param {String} $direction ($default-layout-direction)
 *   Sets the layout direction. Can be `LTR` (left-to-right) or `RTL` (right-to-left).
 *
 * @example scss - Usage
 *   .element {
 *     @include row();
 *   }
 *
 * @example css - CSS Output
 *   .element {
 *     *zoom: 1;
 *     display: block;
 *   }
 *
 *  .element:before, .element:after {
 *    content: " ";
 *    display: table;
 *  }
 *
 *  .element:after {
 *    clear: both;
 *  }
 */
/**
 * Translates an element horizontally by a number of columns. Positive arguments shift the element to the active layout direction, while negative ones shift it to the opposite direction.
 *
 * @param {Number (unitless)} $n-columns (1)
 *   Number of columns by which the element shifts.
 *
 * @example scss - Usage
 *   .element {
 *     @include shift(-3);
 *   }
 *
 * @example css - CSS output
 *   .element {
 *     margin-left: -25.58941%;
 *   }
 */
/**
 * Translates an element horizontally by a number of columns, in a specific nesting context.
 *
 * @param {List} $shift
 *   A list containing the number of columns to shift (`$columns`) and the number of columns of the parent element (`$container-columns`).
 *
 *   The two values can be separated with any string such as `of`, `/`, etc.
 *
 * @example scss - Usage
 *   .element {
 *     @include shift(-3 of 6);
 *   }
 *
 * @example css - CSS output
 *   .element {
 *     margin-left: -52.41458%;
 *   }
 */
/**
 * Adds padding to the element.
 *
 * @param {List} $padding (flex-gutter())
 *   A list of padding value(s) to use. Passing `default` in the list will result in using the gutter width as a padding value.
 *
 * @example scss - Usage
 *   .element {
 *     @include pad(30px -20px 10px default);
 *   }
 *
 * @example css - CSS Output
 *   .element {
 *     padding: 30px -20px 10px 2.35765%;
 *   }
 */
/**
 * Forces the element to fill its parent container.
 *
 * @example scss - Usage
 *   .element {
 *     @include fill-parent;
 *   }
 *
 * @example css - CSS Output
 *   .element {
 *     width: 100%;
 *     -webkit-box-sizing: border-box;
 *     -moz-box-sizing: border-box;
 *     box-sizing: border-box;
 *   }
 */
/**
 * Outputs a media-query block with an optional grid context (the total number of columns used in the grid).
 *
 * @param {List} $query
 *   A list of media query features and values, where each `$feature` should have a corresponding `$value`.
 *   For a list of valid values for `$feature`, click [here](http://www.w3.org/TR/css3-mediaqueries/#media1).
 *
 *   If there is only a single `$value` in `$query`, `$default-feature` is going to be used.
 *
 *   The number of total columns in the grid can be set by passing `$columns` at the end of the list (overrides `$total-columns`).
 *
 *
 * @param {Number (unitless)} $total-columns ($grid-columns)
 *   - Number of columns to use in the new grid context. Can be set as a shorthand in the first parameter.
 *
 * @example scss - Usage
 *   .responsive-element {
 *      @include media(769px) {
 *        @include span-columns(6);
 *      }
 *   }
 *
 *  .new-context-element {
 *    @include media(min-width 320px max-width 480px, 6) {
 *      @include span-columns(6);
 *    }
 *  }
 *
 * @example css - CSS Output
 *  @media screen and (min-width: 769px) {
 *    .responsive-element {
 *      display: block;
 *      float: left;
 *      margin-right: 2.35765%;
 *      width: 48.82117%;
 *    }
 *
 *    .responsive-element:last-child {
 *      margin-right: 0;
 *    }
 *  }
 *
 *  @media screen and (min-width: 320px) and (max-width: 480px) {
 *    .new-context-element {
 *      display: block;
 *      float: left;
 *      margin-right: 4.82916%;
 *      width: 100%;
 *    }
 *
 *    .new-context-element:last-child {
 *      margin-right: 0;
 *    }
 *  }
 */
/**
 * Resets the active display property to `block`. Particularly useful when changing the display property in a single row.
 *
 * @example scss - Usage
 *   .element {
 *     @include row(table);
 *     // Context changed to table display
 *   }
 *
 *   @include reset-display;
 *   // Context is reset to block display
 */
/**
 * Resets the active layout direction to the default value set in `$default-layout-direction`. Particularly useful when changing the layout direction in a single row.
 *
 * @example scss - Usage
 *   .element {
 *     @include row($direction: RTL);
 *     // Context changed to right-to-left
 *   }
 *
 *   @include reset-layout-direction;
 *   // Context is reset to left-to-right
 */
/**
 * Resets both the active layout direction and the active display property.
 *
 * @example scss - Usage
 *   .element {
 *     @include row(table, RTL);
 *     // Context changed to table table and right-to-left
 *   }
 *
 *   @include reset-all;
 *   // Context is reset to block display and left-to-right
 */
/**
 * Changes the display property used by other mixins called in the code block argument.
 *
 * @param {String} $display (block)
 *   Display value to be used within the block. Can be `table` or `block`.
 *
 * @example scss
 *   @include display(table) {
 *    .display-table {
 *      @include span-columns(6);
 *     }
 *   }
 *
 * @example css
 *   .display-table {
 *      display: table-cell;
 *      ...
 *   }
 */
/**
 * Changes the direction property used by other mixins called in the code block argument.
 *
 * @param {String} $direction (left-to-right)
 *   Layout direction to be used within the block. Can be `left-to-right` or `right-to-left`.
 *
 * @example scss - Usage
 *   @include direction(right-to-left) {
 *    .right-to-left-block {
 *      @include span-columns(6);
 *     }
 *   }
 *
 * @example css - CSS Output
 *   .right-to-left-block {
 *     float: right;
 *      ...
 *   }
 */
.home .section-title.studiofx-light-title {
	font-size: 36px;
}
.corporate-hero.playback-stopped {
	max-height: 600px;
}
.corporate-hero.playback-stopped video {
	min-height: 500px;
}
.corporate-hero.playback-stopped .overlay-layer {
	opacity: 1;
}
.corporate-hero.playback-stopped .overlay-layer .intro-message {
	-webkit-transition: all 1s;
	-moz-transition: all 1s;
	transition: all 1s;
	padding-top: 2.5rem;
}
.corporate-hero {
	overflow: hidden;
	position: relative;
	text-align: center;
	background: url("/products/media/home-video-bg.jpg") no-repeat center center;
	background-size: cover;
}
.corporate-hero video {
	margin: 0 auto;
	margin-bottom: -10px;
	z-index: 1;
	min-width: 100%;
	box-shadow: 0 0 80px 40px rgba(0, 0, 0, 0.6);
}
.corporate-hero .video-buttons {
	position: absolute;
	top: 50px;
	z-index: 10;
	right: 20px;
}
.corporate-hero .video-buttons > div {
	border: 2px solid white;
	width: 40px;
	height: 40px;
	border-radius: 5px;
	display: inline-block;
	margin: 0 10px;
	box-shadow: 0 4px 0 0 rgba(0, 0, 0, 0.5);
	cursor: pointer;
	opacity: .7;
}
.corporate-hero .video-buttons > div:hover {
	opacity: 1;
}
.corporate-hero .video-buttons i {
	color: #fff;
	font-size: 24px;
	line-height: 36px;
	text-align: center;
}
.corporate-hero .overlay-layer {
	-webkit-transition: all 1s;
	-moz-transition: all 1s;
	transition: all 1s;
	background: rgba(0, 144, 255, 0.5);
	width: 100%;
	height: 100%;
	vertical-align: middle;
	text-align: left;
	position: absolute;
	display: block;
	opacity: 0;
	color: #fff;
	z-index: 2;
	top: 0;
}
.corporate-hero .overlay-layer * {
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
	color: rgba(255, 255, 255, 0.95);
	font-weight: 100;
}
.corporate-hero .overlay-layer *:hover {
	color: #fff;
}
.corporate-hero .overlay-layer h1 {
	font-weight: 100;
	font-size: 1.875rem;
	line-height: 1.60em;
	margin-left: 0.625rem;
	margin-bottom: 0;
}
.corporate-hero .overlay-layer h1 strong {
	font-size: 3.75rem;
}
.corporate-hero .overlay-layer h4 {
	font-weight: 100;
	line-height: 1.5em;
	display: inline-block;
	color: rgba(255, 255, 255, 0.8);
	margin-bottom: 1.25rem;
	margin-left: 0.625rem;
}
.corporate-hero .overlay-layer h4 strong {
	font-weight: 600;
}
.corporate-hero .overlay-layer .button {
	margin-bottom: 1.25rem;
}
.corporate-hero .overlay-layer .intro-p {
	background: rgba(255, 255, 255, 0.2);
	border-radius: 5px;
	padding: 1.25rem;
	border: none;
	text-align: inherit;
	margin-bottom: 1.25rem;
	box-shadow: inset 0 2px 0 0 rgba(0, 0, 0, 0.1);
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.corporate-hero .overlay-layer .w-nav-menu {
	float: none;
	position: absolute;
	bottom: 1.25rem;
	left: 50%;
	margin-left: -430px;
}
.corporate-hero .overlay-layer .w-nav-menu a {
	opacity: .5;
}
.corporate-hero .overlay-layer .w-nav-menu a:hover {
	opacity: .8;
}
.corporate-hero .overlay-layer .intro-message {
	-webkit-transition: all 1s;
	-moz-transition: all 1s;
	transition: all 1s;
	padding-top: 15%;
}

@media (max-width: 990px) {
.corporate-hero .overlay-layer .intro-message {
	padding-top: 12%;
}
.corporate-hero .overlay-layer .intro-message h1 {
	font-size: 1.5rem;
}
.corporate-hero .overlay-layer .intro-message h1 strong {
	font-size: 3rem;
}
.corporate-hero .overlay-layer .intro-message h4 {
	font-size: 1.125rem;
}
.corporate-hero .overlay-layer .intro-message .w-nav-link {
	margin-left: 10px;
}
}

@media (max-width: 720px) {
.corporate-hero .overlay-layer .intro-message {
	padding-top: 10%;
}
.corporate-hero .overlay-layer .intro-message h1 {
	font-size: 0.875rem;
}
.corporate-hero .overlay-layer .intro-message h1 strong {
	font-size: 1.75rem;
}
.corporate-hero .overlay-layer .intro-message h4 {
	font-size: 0.75rem;
}
.corporate-hero .overlay-layer .intro-message .w-nav-menu {
	display: none !important;
}
}
.news-block-container {
	padding-top: 2.5rem;
	box-shadow: inset 0 5px 20px 0 rgba(0, 0, 0, 0.3);
	background: url("/products/images/bg-news-blur.jpg") no-repeat center center;
	background-size: cover;
}
.news-block-container h3, .news-block-container a, .news-block-container h3 span {
	color: #054c8d;
}
.news-block ul {
	list-style: none;
	margin: 0;
}
.news-block ul h4 {
	font-size: 16px;
}
.news-block ul .media-blurp {
	height: 230px;
	overflow: hidden;
}
.news-block ul .media-blurp div {
	clear: both;
}
.news-block ul .media-blurp img {
	border-radius: 100px;
	box-shadow: none;
	width: 25%;
	float: left;
}

@media screen and (max-width: 905px) {
.news-block ul .media-blurp img {
	padding: 20px;
}
}
.news-block ul .media-blurp p {
	width: 70%;
	display: inline-block;
	float: left;
}
/* ========== CLIENTS BAR ====================== */
/* ------- Fortune 500 Clients Area - Chart FX Home ----- */
.f500Clients ul.featuredC li {
	height: 53px;
	margin: 30px 15px;
	background: transparent url(/masterfiles/images/content/f500_clients.png) 0 0 no-repeat;
	text-indent: -9999px;
}
.bx-viewport {
	height: 120px !important;
}
.f500Clients ul.featuredC li.americanAL {
	background-position: 0 0;
	width: 55px;
}
.f500Clients ul.featuredC li.americanAL:hover {
	background-position: 0 -385px;
}
.f500Clients ul.featuredC li.allstate {
	background-position: -84px 0px;
	width: 170px;
}
.f500Clients ul.featuredC li.allstate:hover {
	background-position: -84px -385px;
}
.f500Clients ul.featuredC li.aol {
	background-position: -280px 0px;
	width: 76px;
}
.f500Clients ul.featuredC li.aol:hover {
	background-position: -280px -385px;
}
.f500Clients ul.featuredC li.boeing {
	background-position: -379px 0px;
	width: 165px;
}
.f500Clients ul.featuredC li.boeing:hover {
	background-position: -379px -385px;
}
.f500Clients ul.featuredC li.cisco {
	background-position: -576px 0px;
	width: 75px;
}
.f500Clients ul.featuredC li.cisco:hover {
	background-position: -576px -385px;
}
.f500Clients ul.featuredC li.citi {
	background-position: 0 -62px;
	width: 160px;
}
.f500Clients ul.featuredC li.citi:hover {
	background-position: 0 -447px;
}
.f500Clients ul.featuredC li.exxon {
	background-position: -205px -62px;
	width: 156px;
	margin-left: 25px;
}
.f500Clients ul.featuredC li.exxon:hover {
	background-position: -205px -447px;
}
.f500Clients ul.featuredC li.gm {
	background-position: -401px -62px;
	width: 50px;
	margin-left: 25px;
}
.f500Clients ul.featuredC li.gm:hover {
	background-position: -401px -447px;
}
.f500Clients ul.featuredC li.gecapital {
	background-position: -493px -62px;
	width: 158px;
	margin-left: 25px;
}
.f500Clients ul.featuredC li.gecapital:hover {
	background-position: -493px -447px;
}
.f500Clients ul.featuredC li.hp {
	background-position: 0 -130px;
	width: 80px;
}
.f500Clients ul.featuredC li.hp:hover {
	background-position: 0 -515px;
}
.f500Clients ul.featuredC li.ibm {
	background-position: -135px -130px;
	width: 94px;
	margin-left: 40px;
}
.f500Clients ul.featuredC li.ibm:hover {
	background-position: -135px -515px;
}
.f500Clients ul.featuredC li.microsoft {
	background-position: -285px -130px;
	width: 144px;
	margin-left: 40px;
}
.f500Clients ul.featuredC li.microsoft:hover {
	background-position: -285px -515px;
}
.f500Clients ul.featuredC li.motorola {
	background-position: -483px -130px;
	width: 168px;
	margin-left: 35px;
}
.f500Clients ul.featuredC li.motorola:hover {
	background-position: -483px -515px;
}
.f500Clients ul.featuredC li.oracle {
	background-position: 0 -193px;
	width: 148px;
}
.f500Clients ul.featuredC li.oracle:hover {
	background-position: 0 -578px;
}
.f500Clients ul.featuredC li.panasonic {
	background-position: -181px -193px;
	width: 129px;
}
.f500Clients ul.featuredC li.panasonic:hover {
	background-position: -181px -578px;
}
.f500Clients ul.featuredC li.pepsi {
	background-position: -341px -193px;
	width: 140px;
}
.f500Clients ul.featuredC li.pepsi:hover {
	background-position: -341px -578px;
}
.f500Clients ul.featuredC li.prudential {
	background-position: -513px -193px;
	width: 138px;
}
.f500Clients ul.featuredC li.prudential:hover {
	background-position: -513px -578px;
}
.f500Clients ul.featuredC li.rockwell {
	background-position: 0 -257px;
	width: 132px;
}
.f500Clients ul.featuredC li.rockwell:hover {
	background-position: 0 -642px;
}
.f500Clients ul.featuredC li.samsung {
	background-position: -168px -257px;
	width: 132px;
}
.f500Clients ul.featuredC li.samsung:hover {
	background-position: -168px -642px;
}
.f500Clients ul.featuredC li.tdAmeritrade {
	background-position: -346px -257px;
	width: 200px;
}
.f500Clients ul.featuredC li.tdAmeritrade:hover {
	background-position: -346px -642px;
}
.f500Clients ul.featuredC li.toyota {
	background-position: -585px -257px;
	width: 66px;
}
.f500Clients ul.featuredC li.toyota:hover {
	background-position: -585px -642px;
}
.f500Clients ul.featuredC li.usps {
	background-position: 0 -324px;
	width: 160px;
}
.f500Clients ul.featuredC li.usps:hover {
	background-position: 0 -709px;
}
.f500Clients ul.featuredC li.ups {
	background-position: -185px -324px;
	width: 43px;
}
.f500Clients ul.featuredC li.ups:hover {
	background-position: -185px -709px;
}
.f500Clients ul.featuredC li.airforce {
	background-position: -253px -324px;
	width: 66px;
}
.f500Clients ul.featuredC li.airforce:hover {
	background-position: -253px -709px;
}
.f500Clients ul.featuredC li.volvo {
	background-position: -344px -324px;
	width: 54px;
}
.f500Clients ul.featuredC li.volvo:hover {
	background-position: -344px -709px;
}
.f500Clients ul.featuredC li.vw {
	background-position: -422px -324px;
	width: 53px;
}
.f500Clients ul.featuredC li.vw:hover {
	background-position: -422px -709px;
}
.f500Clients ul.featuredC li.xerox {
	background-position: -501px -324px;
	width: 150px;
}
.f500Clients ul.featuredC li.xerox:hover {
	background-position: -501px -709px;
}
.f500Clients div#fadeIn {
	display: block;
	height: 22px;
	width: 660px;
	background: transparent url(/masterfiles/images/topBox_fadeIn.png) top left no-repeat;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 6000;
}
.f500Clients div#viewAll {
	display: block;
	height: 20px;
	width: 53px;
	position: absolute;
	bottom: 13px;
	right: 15px;
	z-index: 6000;
}
.f500Clients div#viewAll a {
	display: block;
	font-size: 14px;
	line-height: 20px;
	font-weight: 600;
	color: #0066CC;
	text-decoration: none;
}
.f500Clients div#viewAll a:hover {
	color: #2085E7;
}
.misconceptions h3 {
	height: auto !important;
}
.misconceptions .corporate-hero {
	height: auto;
	background: url("/products/images/misconceptions-header.jpg") no-repeat center right;
	background-size: cover;
}
.misconceptions .corporate-hero h1 {
	font-size: 5em;
	line-height: 1.5em;
}
.misconceptions .corporate-hero h2 {
	font-weight: 300;
	font-size: 3.5em;
	line-height: 1.5em;
}
.misconceptions .corporate-hero h6 {
	line-height: 1.5em;
	margin-top: 2em;
}
.misconceptions .corporate-hero .overlay-layer {
	opacity: 1;
	position: relative;
	padding: 0;
	margin: 0;
	width: 100%;
	min-height: 300px;
	height: auto;
	background: rgba(0, 144, 255, 0.7);
}
.misconceptions .corporate-hero .overlay-layer > div {
	position: relative;
	height: 100%;
	padding: 80px 0;
}
.misconceptions .unstyled {
	list-style: none;
}
.misconceptions .unstyled h6 {
	font-weight: 300;
	font-size: 18px;
	text-transform: uppercase;
}
.misconceptions .unstyled > li {
	margin-bottom: 40px;
	padding: 20px;
	-webkit-transition: all 1s;
	-moz-transition: all 1s;
	transition: all 1s;
}
.misconceptions .unstyled > li:hover {
	background: rgba(0, 0, 0, 0.03);
	border-radius: 10px;
}
.misconceptions .unstyled > li:nth-of-type(even) {
	text-align: right;
}
.misconceptions .unstyled > li:nth-of-type(even) p, .misconceptions .unstyled > li:nth-of-type(even) ul {
	text-align: right;
}
.misconceptions .unstyled > li:nth-of-type(even) .round-feature-icon {
	float: left;
}
.misconceptions .unstyled > li:nth-of-type(odd) .round-feature-icon {
	float: right;
}

@media screen and (max-width: 769px) {
.misconceptions .unstyled > li {
	text-align: left;
}
.misconceptions .unstyled > li * {
	text-align: left !important;
}
.misconceptions .unstyled > li .round-feature-icon {
	float: none;
	display: block;
	text-align: center !important;
}
}
.misconceptions .bullets {
	list-style: disc outside none;
}
.misconceptions .bullets li {
	margin-bottom: 20px;
}
.misconceptions .round-feature-icon {
	margin: 40px;
	border-radius: 200px;
	padding-top: 50px;
	background-color: #46bafa;
	display: inline-block;
	width: 250px;
	height: 250px;
	text-align: center;
	vertical-align: bottom;
}
.misconceptions .round-feature-icon i {
	color: #fff;
}
.misconceptions blockquote {
	border-left: 4px solid #0090e1;
	margin: 20px;
	padding: 20px;
	background-color: rgba(0, 144, 225, 0.1);
	font-style: italic;
}
.misconceptions .rounded-icon1 {
	-webkit-transition: all 1s;
	-moz-transition: all 1s;
	transition: all 1s;
	background-color: #54c7fc;
	opacity: .7;
}
.misconceptions .rounded-icon1 i {
	color: #02243e;
}
.misconceptions li:hover .round-feature-icon {
	opacity: 1;
	box-shadow: 0 8px 1px 0 rgba(0, 0, 0, 0.2);
}
.misconceptions .rounded-icon2 {
	-webkit-transition: all 1s;
	-moz-transition: all 1s;
	transition: all 1s;
	background-color: #FFCD00;
	opacity: .7;
}
.misconceptions .rounded-icon2 i {
	color: #4d370a;
}
.misconceptions li:hover .round-feature-icon {
	opacity: 1;
	box-shadow: 0 8px 1px 0 rgba(0, 0, 0, 0.2);
}
.misconceptions .rounded-icon3 {
	-webkit-transition: all 1s;
	-moz-transition: all 1s;
	transition: all 1s;
	background-color: #FF9600;
	opacity: .7;
}
.misconceptions .rounded-icon3 i {
	color: #4c2108;
}
.misconceptions li:hover .round-feature-icon {
	opacity: 1;
	box-shadow: 0 8px 1px 0 rgba(0, 0, 0, 0.2);
}
.misconceptions .rounded-icon4 {
	-webkit-transition: all 1s;
	-moz-transition: all 1s;
	transition: all 1s;
	background-color: #FF2851;
	opacity: .7;
}
.misconceptions .rounded-icon4 i {
	color: #fb9eb9;
}
.misconceptions li:hover .round-feature-icon {
	opacity: 1;
	box-shadow: 0 8px 1px 0 rgba(0, 0, 0, 0.2);
}
.misconceptions .rounded-icon5 {
	-webkit-transition: all 1s;
	-moz-transition: all 1s;
	transition: all 1s;
	background-color: #0076FF;
	opacity: .7;
}
.misconceptions .rounded-icon5 i {
	color: #7fc4fc;
}
.misconceptions li:hover .round-feature-icon {
	opacity: 1;
	box-shadow: 0 8px 1px 0 rgba(0, 0, 0, 0.2);
}
.misconceptions .rounded-icon6 {
	-webkit-transition: all 1s;
	-moz-transition: all 1s;
	transition: all 1s;
	background-color: #44DB5E;
	opacity: .7;
}
.misconceptions .rounded-icon6 i {
	color: #0a4e0c;
}
.misconceptions li:hover .round-feature-icon {
	opacity: 1;
	box-shadow: 0 8px 1px 0 rgba(0, 0, 0, 0.2);
}
.misconceptions .rounded-icon7 {
	-webkit-transition: all 1s;
	-moz-transition: all 1s;
	transition: all 1s;
	background-color: #FF3824;
	opacity: .7;
}
.misconceptions .rounded-icon7 i {
	color: #fdb3a9;
}
.misconceptions li:hover .round-feature-icon {
	opacity: 1;
	box-shadow: 0 8px 1px 0 rgba(0, 0, 0, 0.2);
}
.misconceptions .rounded-icon8 {
	-webkit-transition: all 1s;
	-moz-transition: all 1s;
	transition: all 1s;
	background-color: #8E8E93;
	opacity: .7;
}
.misconceptions .rounded-icon8 i {
	color: #e2e0ea;
}
.misconceptions li:hover .round-feature-icon {
	opacity: 1;
	box-shadow: 0 8px 1px 0 rgba(0, 0, 0, 0.2);
}
.misconceptions .rounded-icon9 {
	-webkit-transition: all 1s;
	-moz-transition: all 1s;
	transition: all 1s;
	background-color: #7f66fc;
	opacity: .7;
}
.misconceptions .rounded-icon9 i {
	color: #312764;
}
.misconceptions li:hover .round-feature-icon {
	opacity: 1;
	box-shadow: 0 8px 1px 0 rgba(0, 0, 0, 0.2);
}
.misconceptions .rounded-icon10 {
	-webkit-transition: all 1s;
	-moz-transition: all 1s;
	transition: all 1s;
	background-color: #46cdba;
	opacity: .7;
}
.misconceptions .rounded-icon10 i {
	color: #216158;
}
.misconceptions li:hover .round-feature-icon {
	opacity: 1;
	box-shadow: 0 8px 1px 0 rgba(0, 0, 0, 0.2);
}
/* Necessary CSS */
.slider {
	overflow: hidden;
	position: relative;
}
.slider ul {
	margin: 0;
	padding: 0;
}
.slider li {
	float: left;
	margin: 0 5px 0 0;
	list-style: none;
}
/* IE6 issues */
.slider ul {
	width: 100%;
}


@media screen and (max-width: 479px) {
.video-buttons 
{
    display:none;
}
.corporate-hero .overlay-layer .button 
{
    margin-bottom:5px;
}
.intro-p {
    font-size: 12px!important;
}
}