@charset "UTF-8";
/**
 * The `base-font-size` is what's used when calculating `em()`s.
 *
 * @group settings
 * @type Number
 * @access public
 */
/**
 * The default border-radius for components
 *
 * @group settings
 * @type Number
 * @access public
 */
/**
 * The default color of text
 *
 * @group settings
 * @type Color
 * @access public
 *
 * @todo Deprecate this
 */
/**
 * The default color of links
 *
 * @group settings
 * @type Color
 * @access public
 *
 * @todo Deprecate this
 */
/**
 * The default color of the background
 *
 * @group settings
 * @type Color
 * @access public
 *
 * @todo Deprecate this
 */
/**
 * Whether or not the project has JS-based feature detection
 *
 * @group settings
 * @type Boolean
 * @access public
 */
/**
 * A map containing the names and paths to places assets could live. Defaults to false as this must be set on a per-project basis
 *
 * @group settings
 * @type {Map|Boolean}
 * @access public
 */
/**
 * The class to use for IE7
 *
 * @group ie
 *
 * @type String
 *
 * @access public
 *
 */
/**
 * The class to use for IE8
 *
 * @group ie
 *
 * @type String
 *
 * @access public
 *
 */
/**
 * Output styles only for IE7/8
 *
 * @group ie
 *
 * @access public
 *
 * @requires $ie7-selector
 * @requires $ie8-selector
 *
 */
/**
 * Output styles only for IE7
 *
 * @group ie
 *
 * @access public
 *
 * @requires $ie7-selector
 *
 */
/**
 * Output styles only for IE8
 *
 * @group ie
 *
 * @access public
 *
 * @requires $ie8-selector
 *
 */
/**
 * IE7 hack for the `inherit` value. Uses expressions.
 *
 * @group ie
 *
 * @access public
 *
 * @param {String} $property - CSS property  whose value should be set to `inherit`
 *
 * @requires {mixin} ie7
 *
 */
/**
 * IE7 hack for the `inline-block`.
 *
 * @group ie
 *
 * @access public
 *
 * @requires {mixin} ie7
 *
 */
/**
 * Removes units from a value
 *
 * @group utilities
 *
 * @param {Number} $value 
 *
 * @return {Number} Value without units
 *
 */
/**
 * Converts a Number to em units
 *
 * @group utilities
 *
 * @param {Number} $value
 * @param {Number} $context ($base-font-size)
 *
 * @requires $base-font-size
 * @requires strip-units
 *
 * @return {Number} The $value converted to em's
 *
 */
/**
 * Converts a Number to rem units
 *
 * @group utilities
 *
 * @param {Number} $value
 *
 * @requires strip-units
 * @requires em
 *
 * @return {Number} The $value converted to rem's
 *
 */
/**
 * Returns the first item in a list
 *
 * @group utilities
 *
 * @param {List} $list
 *
 * @return {Number | String | Color | Boolean | List | Map} First value in the list
 *
 */
/**
 * Returns the last item in a list
 *
 * @group utilities
 *
 * @param {List} $list
 *
 * @return {Number | String | Color | Boolean | List | Map} Last value in the list
 *
 */
/**
 * Converts rgba/hsla to an opaque color
 *
 * @group utilities
 *
 * @param {Color} $alpha - The alpha color
 * @param {Boolean | Color} $mix (false) - A color to mix with
 *
 * @return {Color} An opaque color
 *
 */
/**
 * Get the full path of an asset with a base path from `$path-urls`
 *
 * @param {String} $asset - The relative asset path
 * @param {String} $base ('default') - Which base path to use
 *
 * @return {String} A full asset path
 *
 */
/**
 * Get the full `url()` of an asset with a base path from `$path-urls`
 *
 * @param {String} $asset - The relative asset path
 * @param {String} $base ('default') - Which base path to use
 * 
 * @requires path
 *
 * @return {String} A full asset path wraped in `url()`
 *
 */
/**
 * Convenience method for setting a key-value pair in an existing map
 *
 * @group utilities
 *
 * @param {Map} $map - An existing map
 * @param {String} $key - The value's key
 * @param {Number | String | Color | Boolean | List | Map} $value - The value
 *
 * @returns {Map} A new map with the additional key-value pair
 *
 */
/**
 * Center an element or offset it if it's large than the content-width
 *
 * @group helpers
 *
 * @access public
 *
 * @param {Boolean|Number} $width (false) - width of element to be centered
 * @param {Number} $content-width (980px ) - width of parent element
 */
/**
 * Center an element and the text within it
 *
 * @group helpers
 *
 * @access public
 *
 * @param {Boolean|Number} $width (false) - width of element to be centered
 * @param {Number} $content-width (980px) - width of parent element
 *
 * @requires {mixin} center
 *
 */
/**
 * Self clear an element (a clearfix)
 *
 * @group helpers
 *
 * @access public
 *
 * @link http://nicolasgallagher.com/micro-clearfix-hack/
 */
/**
 * Visually hide an element
 *
 * @group helpers
 *
 * @access public
 *
 */
/**
 * Hide text for image replacement
 *
 * @group helpers
 *
 * @access public
 *
 */
/**
 * CSS3 cursor fallbacks
 *
 * @group helpers
 *
 * @access public
 *
 * @param {String} $value - cursor property value
 *
 */
/**
 * Add a selector on the `html` element
 *
 * @group helpers
 *
 * @access public
 *
 * @param {String} $selector - selector to append to the HTML element
 *
 */
/**
 * Target SVG Support
 *
 * @group helpers
 *
 * @access public
 *
 * @param {Boolean} $support  (true) - False for `.no-svg`
 *
 */
/**
 * Target Touch Devices
 *
 * @group helpers
 *
 * @access public
 *
 * @param {Boolean} $support (true) -  False for `.no-touch`
 *
 */
/**
 * Mouse-hover only, ingnore touch events
 *
 * @group helpers
 *
 * @access public
 */
/**
 *
 * 1. Media queries in em's are always relative to 16px,
 * regardless of the <html> or <body> font size
 *
 * @group media
 *
 */
/**
 * Returns a string for min-width conditions
 *
 * @group media
 *
 * @param {Number} $width - The width
 *
 * @returns {String}
 *
 */
/**
 * Returns a string for max-width conditions
 *
 * @group media
 *
 * @param {Number} $width - The width
 *
 * @returns {String}
 *
 */
/**
 * Returns a string for min-height conditions
 *
 * @group media
 *
 * @param {Number} $height - The height
 *
 * @returns {String}
 *
 */
/**
 * Returns a string for max-height conditions
 *
 * @group media
 *
 * @param {Number} $height - The height
 *
 * @returns {String}
 *
 */
/**
 * Returns a string for portrait conditions
 *
 * @group media
 *
 * @returns {String}
 *
 */
/**
 * Returns a string for landscape conditions
 *
 * @group media
 *
 * @returns {String}
 *
 */
/**
 * Returns a string for retina conditions
 *
 * @group media
 *
 * @returns {List}
 *
 */
/**
 * Output a media query with the specified conditions
 *
 * @group media
 *
 * @param {String} $query - The media query conditions
 * @param {Boolean} $screen (true) - Add `only screen` condition
 *
 */
/**
 * Apply CSS only to viewports of max-width
 *
 * @group media
 *
 * @param {Number} $width - The max-width of the viewport
 *
 * @requires {mixin} media
 * @requires max-width
 *
 */
/**
 * Apply CSS only to viewports of min-width
 *
 * @group media
 *
 * @param {Number} $width - The min-width of the viewport
 *
 * @requires {mixin} media
 * @requires min-width
 *
 */
/**
 * Apply CSS only to viewports of max-height
 *
 * @group media
 *
 * @param {Number} $height - The max-height of the viewport
 *
 * @requires {mixin} media
 * @requires max-height
 *
 */
/**
 * Apply CSS only to viewports of min-height
 *
 * @group media
 *
 * @param {Number} $height - The min-height of the viewport
 *
 * @requires {mixin} media
 * @requires min-height
 *
 */
/**
 * Apply CSS only to viewports in portrait orientation
 *
 * @group media
 *
 * @requires {mixin} media
 * @requires portrait
 *
 */
/**
 * Apply CSS only to viewports in landscape orientation
 *
 * @group media
 *
 * @requires {mixin} media
 * @requires landscape
 *
 */
/**
 * The base-width for viewports. This determines whether to us `min-width` or `max-width` when using `viewport()`
 * @group viewports
 * @type Number
 * @access public
 */
/**
 * Use percentages for this viewport (and down)
 * @group viewports
 * @type List
 * @access public
 */
/**
 * Each viewport defintion includes a `width` and `content-width` for that viewport. Optionally a custom `query` can be defined, as well as being able to __always__ output styles for IE `oldie:true`
 *
 * @group viewports
 *
 * @type Viewport Dictionary
 *
 * @access private
 *
 * @param {Number} $width - Viewport width; min/max determined from base width; can be a range with `to` or `through`
 * @param {Number} $width - Content width for the viewport-content() mixin
 * @param {String|Boolean} $query - A custom query or `false` for no media query
 * @param {Boolean} $oldie - `@content` for this viewport should always apply for oldie
 */
/**
 * Check if a viewport with the given name exists
 *
 * @group viewports
 *
 * @access public
 *
 * @param {String} $name - the name of the viewport
 *
 * @requires $-viewports
 *
 * @returns {Boolean} - Whether the viewport exists or not
 */
/**
 * Get viewport of a given name
 *
 * @group viewports
 *
 * @access public
 *
 * @param {String} $name - The name of the viewport
 *
 * @requires $-viewports
 * @requires viewport-exists
 *
 * @returns {Map|Boolean} - Viewport or False
 */
/**
 * Get dpr for a viewport of a given name
 *
 * @group viewports
 *
 * @access public
 *
 * @param {String} $name - The name of the viewport
 *
 * @requires $-viewports
 * @requires viewport-exists
 *
 * @returns {String|Boolean} - dpr or False
 */
/**
 * Add a viewport to the Viewports Dictionary
 *
 * @group viewports
 *
 * @access public
 *
 * @param {String} $name - The name of the viewport
 * @param {Map} $properties - A map of viewport properties
 *
 * @requires map-set
 * @requires $-viewports
 *
 */
/**
 * Remove a viewport from the Viewports Dictionary
 *
 * @group viewports
 *
 * @access public
 *
 * @param {String} $name - The name of the viewport
 *
 * @requires $-viewports
 *
 */
/**
 * Outputs the CSS at a viewport
 *
 * @group viewports
 *
 * @access public
 *
 * @param {String} $name - The name of the viewport
 *
 * @requires viewport-get
 * @requires $viewport-base-width
 * @requires {mixin} media
 * @requires {mixin} supports-touch
 *
 */
/**
 * Outputs the CSS property at each viewport
 *
 * @group viewports
 *
 * @access public
 *
 * @param {String} $property - The name of the property
 * @param {Map} $values - The values in the form `viewport: value`
 *
 * @requires viewport-exists
 * @requires {mixin} viewport
 *
 */
/**
 * Get the min-width of a viewport
 *
 * @group viewports
 *
 * @param {String} $name - name of viewport
 *
 * @requires viewport-exists
 * @requires viewport-get
 *
 */
/**
 * Get the max-width of a viewport
 *
 * @group viewports
 *
 * @param {String} $name - name of viewport
 *
 * @requires viewport-exists
 * @requires viewport-get
 *
 */
/**
 * Sets the width of the element to the content-width at each viewport
 *
 * @group viewports
 *
 * @access public
 *
 * @requires $-viewports
 * @requires {mixin} viewport-property
 *
 */
/**
 * Gets the content width for a specific viewport
 *
 * @group viewports
 *
 * @access public
 *
 * @requires $-viewports
 * @requires {function} viewport-get
 *
 * @returns {Number|String} - Viewport content width or "auto" if viewport is not defined
 *
 */
/**
 * Gets the content padding for a specific viewport
 *
 * @group viewports
 *
 * @access public
 *
 * @param {String | List} $name - name of viewport
 *
 * @requires viewport-exists
 * @requires viewport-get
 * @requires viewport-get-min
 * @requires viewport-get-max
 * @requires viewport-content-width-for
 * @requires $viewports-flexible-from
 *
 */
/**
 * The number of columns to use in the outputted grid
 * @group grid
 * @type Number
 * @access public
 */
/**
 * The column float direction
 * @group grid
 * @type Number
 * @access public
 */
/**
 * The column class name
 * @group grid
 * @type String
 * @access public
 */
/**
 * Row width
 * @group grid
 * @type Percentage
 * @access private
 */
/**
 * Row width for IE&/8 (oldie)
 * @group grid
 * @type Percentage
 * @access private
 */
/**
 * Make your own grid system
 *
 * @group grid
 *
 * @access public
 *
 * @param {Number} $columns ($grid-columns) -  Number of columns
 * @param {String} $class ($grid-default-class) - Class to denote columns
 * @param {String} $oldie ($grid-oldie-class) - Class name for columns in IE7/8
 *
 */
/**
 * Include column widths on an element without using the grid system's classes
 *
 * @group grid
 *
 * @access public
 *
 * @param {Number} $column-count ($grid-columns) - Width of the column in _n_ columns
 * @param {Number} $total-columns ($grid-columns) - Total number of columns in the grid
 * @param {String} $oldie ($grid-oldie-class) - Class name for columns in IE7/8
 *
 * @requires $grid-column-float
 * @requires $grid-full-width
 * @requires $grid-full-width-oldie
 *
 */
/**
 * Create a new row without using the grid system's classes
 *
 * @group grid
 *
 * @access public
 *
 */
/**
 * Helpers for show/hide and auto positioning classes.
 *
 * @group grid
 *
 * @access public
 *
 * @param {String} $class ($grid-default-class) - The prefix for the helper classes
 *
 */
/**
 * Each image defintion is a map of supported viewports for that image key. Each of those maps contain a `src`, `width` and `height` property.
 *
 * @group images
 *
 * @type Image Dictionary
 *
 * @access private
 *
 */
/**
 * Check if a image with the given name exists
 *
 * @group images
 *
 * @access public
 *
 * @param {String} $name - the name of the image
 *
 * @requires $-images
 *
 * @returns {Boolean} - Whether the images exists or not
 */
/**
 * Check if a image by the given name exists for a given type (usually viewport-name or svg)
 *
 * @group images
 *
 * @access public
 *
 * @param {String} $name - The name of the image
 * @param {String} $type - The name of the viewport or 'svg'
 *
 * @requires $-images
 * @requires image-get
 *
 * @returns {Boolean} - Whether the images exists or not
 */
/**
 * Get image data for a given name
 *
 * @group images
 *
 * @access public
 *
 * @param {String} $name - The name of the image
 *
 * @requires -images
 * @requires image-exists
 *
 * @returns {Map|Boolean} - Image object or False
 */
/**
 * Get image data for a given name and a given type (usually a viewport or 'svg')
 *
 * @group images
 *
 * @access public
 *
 * @param {String} $name - The name of the image
 * @param {String} $type - The name of the viewport or 'svg'
 *
 * @requires image-get
 * @requires image-exists-for
 *
 * @returns {Map|Boolean} - Image object or False
 */
/**
 * Get the width for a given image of a given type (usually viewport-name or 'svg')
 *
 * @group images
 *
 * @access public
 *
 * @param {String} $name - The name of the image
 * @param {String} $type - The name of the viewport or 'svg'
 *
 * @requires image-get-for
 * @requires image-exists-for
 *
 * @returns {Number|Boolean} - Image width or False
 */
/**
 * Get the height for a given image of a given type (usually viewport-name or 'svg')
 *
 * @group images
 *
 * @access public
 *
 * @param {String} $name - The name of the image
 * @param {String} $type - The name of the viewport or 'svg'
 *
 * @requires image-get-for
 * @requires image-exists-for
 *
 * @returns {Number|Boolean} - Image height or False
 */
/**
 * Get the src for a given image of a given type (usually viewport-name or 'svg')
 *
 * @group images
 *
 * @access public
 *
 * @param {String} $name - The name of the image
 * @param {String} $type - The name of the viewport or 'svg'
 *
 * @requires image-get-for
 * @requires image-exists-for
 *
 * @returns {String|Boolean} - Image src or False
 */
/**
 * Check if a 2x asset exists for a given image and viewport
 *
 * @group images
 *
 * @access public
 *
 * @param {String} $name - The name of the image
 * @param {String} $type - The name of the viewport or 'svg'
 *
 * @requires image-get-for
 * @requires image-exists-for
 *
 * @returns {Boolean} - Image src or False
 */
/**
 * Get the 2x-src for a given image of a given viewport
 *
 * @group images
 *
 * @access public
 *
 * @param {String} $name - The name of the image
 * @param {String} $type - The name of the viewport or 'svg'
 *
 * @requires image-get-for
 * @requires image-exists-for
 *
 * @returns {String|Boolean} - Image src or False
 */
/**
 * Output the image dimensions for a given image name at each viewport
 *
 * @group images
 *
 * @access public
 *
 * @param {String} $name - The name of the image
 *
 * @requires image-exists
 * @requires image-exists-for
 * @requires image-width-for
 * @requires image-height-for
 * @requires $-viewports
 * @requires {mixin} viewport
 *
 */
/**
 * Add an image to the Image Dictionary of a type (usually viewport-name or 'svg')
 *
 * @group images
 *
 * @access private
 *
 * @param {String} $name - The name of the image
 * @param {String} $type - The name of the viewport
 * @param {Map} $properties - The image properties (`src`, `width`, `height`)
 *
 * @requires $-images
 * @requires image-exists
 * @requires image-exists-for
 * @requires image-get
 * @requires map-set
 *
 * @returns {Image Dictionary}
 */
/**
 * Add an image to the Image Dictionary
 *
 * @group images
 *
 * @access public
 *
 * @param {String} $name - The name of the image
 * @param {Map} $attributes - A map of viewports, each containing a map of image properties (`src`, `width`, `height`) for that viewport
 *
 * @requires image-add-of-type
 *
 */
/**
 * Output retina media query with _2x image path
 *
 * @group images
 *
 * @access public
 *
 * @param {String} $path - The path to the image
 *
 * @requires {mixin} retina
 *
 */
/**
 * Output size for element with background-image
 *
 * @group images
 *
 * @param {Number} $width - The width of the image
 * @param {Number} $height - The height of the image
 * @param {Boolean} $size - Should we make the size of the element the size of the image
 * @param {Boolean} $center - Should we center the element in the content width. (Requires content-width to be passed.)
 * @param {Number} $viewport-content-width - The content width of a viewport
 * @access private
 *
 * @requires {mixin} retina
 *
 */
/**
 * Generates the CSS for a background image at each viewport
 *
 * @group images
 *
 * @access public
 *
 * @param {String} $name - The name of the image
 * @param {Boolean} $size (true) - Output the image size. Defaults to true.
 * @param {Boolean} $center (false) - Center image in each viewport. Defaults to false.
 *
 * @requires $-viewports
 * @requires {mixin} viewport
 * @requires viewport-dpr
 * @requires image-exists
 * @requires image-exists-for
 * @requires image-width-for
 * @requires image-height-for
 * @requires image-src-for
 * @requires center
 *
 * @todo Use `image-get-for` instead of `map-get($image, $viewport-name)`
 */
/**
 * Generates the CSS for a SVG background image at each viewport
 *
 * @group images
 *
 * @access public
 *
 * @param {String} $name - The name of the image
 * @param {String} $sizes - Map of the image ratios at each viewport (xlarge: 1.2, large: 1, medium: .7, small: .4, xsmall: .3 )
 * @param {Boolean} $size (true) - Output the image size. Defaults to true.
 * @param {Boolean} $center (false) - Center image in each viewport. Defaults to false.
 *
 * @requires $-viewports
 * @requires {mixin} viewport
 * @requires image-exists
 * @requires image-exists-for
 * @requires image-width-for
 * @requires image-height-for
 * @requires image-src-for
 * @requires center
 *
 * @todo Use `image-get-for` instead of `map-get($image, $viewport-name)`
 */
/**
 * Generates the CSS for a SVG headline based upon defined typography sizes
 *
 * @group images
 *
 * @access public
 *
 * @param {String} $image - The name of the image
 * @param {String} $typography-style-name - The name of the typography style to grab ratios from
 * @param {Boolean} $default (large) - The default viewport size (native SVG size)
 *
 * @requires $-viewports
 * @requires {mixin} image-svg
 * @requires typography-get-fontsize-withoutunit-for
 *
 */
/**
 * Apply CSS only to retina devices
 *
 * @group retina
 *
 */
/**
 * AC Retina Equivalent Media Query
 *
 * @group retina
 *
 */
/**
 * A list of font stacks to use for different locales
 *
 * @group typography
 *
 * @type Map
 *
 * @access private
 *
 */
/**
 * Outputs font-family with the correct Applecom font stack for all locales
 *
 * @group typography
 *
 * @access public
 *
 */
/**
 * Outputs font-weight with IE support
 *
 * @group typography
 *
 * @access public
 *
 * @param {String} $weight - The desired font-weight
 *
 */
/**
 * Each typography defintion is a map of supported viewports for that typography key. Each of those maps contain the properties for that type style (each property maps to a CSS property.)
 *
 * @group typography
 *
 * @type Typography Dictionary
 *
 * @access private
 *
 */
/**
 * Check if a typography style with the given name exists
 *
 * @group typography
 *
 * @access public
 *
 * @param {String} $name - the name of the typography style
 *
 * @requires $-typography
 *
 * @returns {Boolean} - Whether the typography style exists or not
 */
/**
 * Check if a typography style by the given name exists for a given viewport
 *
 * @group typography
 *
 * @access public
 *
 * @param {String} $name - The name of the typography style
 * @param {String} $viewport - The name of the viewport
 *
 * @requires $-typography
 * @requires typography-get
 *
 * @returns {Boolean} - Whether the typography style exists or not
 */
/**
 * Get typography style of a given name
 *
 * @group typography
 *
 * @access public
 *
 * @param {String} $name - The name of the typography style
 *
 * @requires $-typography
 * @requires typography-exists
 *
 * @returns {Map|Boolean} - Typography Style or False
 */
/**
 * Get a unitless font-size for a style of a given name for a given viewport
 *
 * @group typography
 *
 * @access public
 *
 * @param {String} $name - The name of the typography style
 * @param {String} $viewport-name - The name of the viewport
 *
 * @requires typography-get
 *
 * @returns {Number} - Unitless font-size for type-style at a given viewport.
 */
/**
 * Add a typography style to the Typography Dictionary for a particular viewport
 *
 * @group typography
 *
 * @access private
 *
 * @param {String} $name - The name of the typography style
 * @param {String} $viewport - The name of the viewport
 * @param {Map} $styles - The style properties (`font-size`, `line-height`, `font-weight`)
 *
 * @requires $-typography
 * @requires typography-exists
 * @requires typography-exists-for-viewport
 * @requires typography-get
 * @requires map-set
 *
 * @todo Use `typography-get-for-viewport` instead of `map-get(typography-get($name), $viewport)`
 *
 * @returns {Typography Dictionary}
 */
/**
 * Add a typography style to the Typography Dictionary
 *
 * @group typography
 *
 * @access public
 *
 * @param {String} $name - The name of the typography style
 * @param {Map|List} $styles - A map of viewports, each containing a map of style properties (`font-size:`, `line-height:`, `font-weight:`) for that viewport or a list of 2x pt values from the PSD _(font size, line-height, font weight)_.
 *
 * @requires typography-add-to-viewport
 *
 */
/**
 * Generates the CSS for a typography style at each viewport
 *
 * @group typography
 *
 * @access public
 *
 * @param {String} $name - The name of the typography style
 *
 * @requires $-viewports
 * @requires {mixin} viewport
 * @requires typography-get
 * @requires typography-exists-for-viewport
 *
 * @todo Use `typography-get-for-viewport` instead of `map-get($typography-styles, $viewport-name)`
 */
/* line 11, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/base/_reset.scss */
html {
  font-size: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

/* line 20, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/base/_reset.scss */
body {
  margin: 0;
  padding: 0;
}

/* line 28, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/base/_reset.scss */
ul, ol, li,
dl, dt, dd,
h1, h2, h3, h4, h5, h6, hgroup,
p, blockquote, figure,
form, fieldset, input, legend,
pre, abbr {
  margin: 0;
  padding: 0;
}

/* line 43, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/base/_reset.scss */
pre, code,
address, caption,
th,
figcaption {
  font-size: 1em;
  font-weight: normal;
  font-style: normal;
}

/* line 56, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/base/_reset.scss */
fieldset, iframe,
img {
  border: none;
}

/* line 64, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/base/_reset.scss */
caption,
th {
  text-align: left;
}

/* line 72, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/base/_reset.scss */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* line 82, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/base/_reset.scss */
article, aside, footer, header, nav, main, section,
summary, details,
hgroup,
figure, figcaption {
  display: block;
}

/* line 94, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/base/_reset.scss */
audio, canvas, video,
progress {
  display: inline-block;
  vertical-align: baseline;
}

/* line 104, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/base/_reset.scss */
button {
  font: inherit;
  vertical-align: middle;
}

@media print {
  /* line 115, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/base/_reset.scss */
  body,
  #main, #content {
    color: #000;
  }

  /* line 120, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/base/_reset.scss */
  a, a:link, a:visited {
    color: #000;
    text-decoration: none;
  }

  /* line 124, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/base/_reset.scss */
  #globalheader, #globalfooter, #directorynav,
  #tabs, .noprint, .hide {
    display: none;
  }
}
/* line 31, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/base/_typography.scss */
html {
  font-size: 112.5%;
}

/* line 36, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/base/_typography.scss */
body {
  background-color: white;
  color: #333333;
  font-style: normal;
  font-family: "Myriad Set Pro", "Lucida Grande", "Helvetica Neue", "Helvetica", "Arial", "Verdana", "sans-serif";
  font-size: 1em;
  line-height: 1.4444;
  font-weight: 400;
}
/* line 157, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_helpers.scss */
html[lang=ja-JP] body {
  font-family: "Apple TP", "Helvetica Neue", "Helvetica", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "Arial", "Verdana", "sans-serif";
}
/* line 157, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_helpers.scss */
html[lang=zh-CN] body {
  font-family: "PingHei", "Helvetica Neue", "Helvetica", "Arial", "Verdana", "sans-serif";
}
/* line 157, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_helpers.scss */
html[lang=zh-TW] body {
  font-family: "MHei", "Helvetica Neue", "Helvetica", "Arial", "Verdana", "sans-serif";
}
/* line 157, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_helpers.scss */
html[lang=zh-HK] body {
  font-family: "MHei", "Helvetica Neue", "Helvetica", "Arial", "Verdana", "sans-serif";
}
/* line 157, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_helpers.scss */
html[lang=th-TH] body {
  font-family: "Sukhumvit Set", "Helvetica Neue", "Helvetica", "Arial", "Verdana", "sans-serif";
}
/* line 157, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_helpers.scss */
html[lang=ko-KR] body {
  font-family: "Yoon Gothic", "Helvetica Neue", "Helvetica", "Dotum", "Arial", "Verdana", "sans-serif";
}

/* line 47, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/base/_typography.scss */
body, input, textarea, select, button {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -moz-font-feature-settings: "liga", "kern";
}

/* line 54, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/base/_typography.scss */
a {
  color: #0088cc;
}
/* line 57, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/base/_typography.scss */
a:visited, a:link, a:active {
  text-decoration: none;
}
/* line 63, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/base/_typography.scss */
a:hover {
  text-decoration: underline;
}

/* line 68, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/base/_typography.scss */
h1 {
  font-size: 4em;
  line-height: 1;
  font-weight: 200;
}
/* line 157, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_helpers.scss */
html.oldie h1 {
  font-weight: normal;
  font-family: "Myriad Set Pro 200", "Myriad Set Pro", "Lucida Grande", "Helvetica Neue", "Helvetica", "Arial", "Verdana", "sans-serif";
}
/* line 157, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_helpers.scss */
html.oldie[lang=ja-JP] h1 {
  font-family: "Apple TP 200", "Apple TP", "Helvetica Neue", "Helvetica", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "Arial", "Verdana", "sans-serif";
}
/* line 157, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_helpers.scss */
html.oldie[lang=zh-CN] h1 {
  font-family: "PingHei 200", "PingHei", "Helvetica Neue", "Helvetica", "Arial", "Verdana", "sans-serif";
}
/* line 157, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_helpers.scss */
html.oldie[lang=zh-TW] h1 {
  font-family: "MHei 200", "MHei", "Helvetica Neue", "Helvetica", "Arial", "Verdana", "sans-serif";
}
/* line 157, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_helpers.scss */
html.oldie[lang=zh-HK] h1 {
  font-family: "MHei 200", "MHei", "Helvetica Neue", "Helvetica", "Arial", "Verdana", "sans-serif";
}
/* line 157, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_helpers.scss */
html.oldie[lang=th-TH] h1 {
  font-family: "Sukhumvit Set 200", "Sukhumvit Set", "Helvetica Neue", "Helvetica", "Arial", "Verdana", "sans-serif";
}
/* line 157, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_helpers.scss */
html.oldie[lang=ko-KR] h1 {
  font-family: "Yoon Gothic 200", "Yoon Gothic", "Helvetica Neue", "Helvetica", "Dotum", "Arial", "Verdana", "sans-serif";
}
@media only screen and (max-width: 767px) and (max-device-width: 768px) {
  /* line 68, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/base/_typography.scss */
  h1 {
    font-size: 2.6667em;
    line-height: 1.0833;
    font-weight: 200;
  }
}

/* line 71, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/base/_typography.scss */
h2 {
  font-size: 2.7778em;
  line-height: 1.06;
  font-weight: 200;
}
/* line 157, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_helpers.scss */
html.oldie h2 {
  font-weight: normal;
  font-family: "Myriad Set Pro 200", "Myriad Set Pro", "Lucida Grande", "Helvetica Neue", "Helvetica", "Arial", "Verdana", "sans-serif";
}
/* line 157, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_helpers.scss */
html.oldie[lang=ja-JP] h2 {
  font-family: "Apple TP 200", "Apple TP", "Helvetica Neue", "Helvetica", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "Arial", "Verdana", "sans-serif";
}
/* line 157, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_helpers.scss */
html.oldie[lang=zh-CN] h2 {
  font-family: "PingHei 200", "PingHei", "Helvetica Neue", "Helvetica", "Arial", "Verdana", "sans-serif";
}
/* line 157, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_helpers.scss */
html.oldie[lang=zh-TW] h2 {
  font-family: "MHei 200", "MHei", "Helvetica Neue", "Helvetica", "Arial", "Verdana", "sans-serif";
}
/* line 157, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_helpers.scss */
html.oldie[lang=zh-HK] h2 {
  font-family: "MHei 200", "MHei", "Helvetica Neue", "Helvetica", "Arial", "Verdana", "sans-serif";
}
/* line 157, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_helpers.scss */
html.oldie[lang=th-TH] h2 {
  font-family: "Sukhumvit Set 200", "Sukhumvit Set", "Helvetica Neue", "Helvetica", "Arial", "Verdana", "sans-serif";
}
/* line 157, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_helpers.scss */
html.oldie[lang=ko-KR] h2 {
  font-family: "Yoon Gothic 200", "Yoon Gothic", "Helvetica Neue", "Helvetica", "Dotum", "Arial", "Verdana", "sans-serif";
}
@media only screen and (max-width: 767px) and (max-device-width: 768px) {
  /* line 71, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/base/_typography.scss */
  h2 {
    font-size: 2.2222em;
    line-height: 1.1;
    font-weight: 200;
  }
}

/* line 74, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/base/_typography.scss */
h3 {
  font-size: 2.2222em;
  line-height: 1.1;
  font-weight: 200;
}
/* line 157, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_helpers.scss */
html.oldie h3 {
  font-weight: normal;
  font-family: "Myriad Set Pro 200", "Myriad Set Pro", "Lucida Grande", "Helvetica Neue", "Helvetica", "Arial", "Verdana", "sans-serif";
}
/* line 157, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_helpers.scss */
html.oldie[lang=ja-JP] h3 {
  font-family: "Apple TP 200", "Apple TP", "Helvetica Neue", "Helvetica", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "Arial", "Verdana", "sans-serif";
}
/* line 157, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_helpers.scss */
html.oldie[lang=zh-CN] h3 {
  font-family: "PingHei 200", "PingHei", "Helvetica Neue", "Helvetica", "Arial", "Verdana", "sans-serif";
}
/* line 157, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_helpers.scss */
html.oldie[lang=zh-TW] h3 {
  font-family: "MHei 200", "MHei", "Helvetica Neue", "Helvetica", "Arial", "Verdana", "sans-serif";
}
/* line 157, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_helpers.scss */
html.oldie[lang=zh-HK] h3 {
  font-family: "MHei 200", "MHei", "Helvetica Neue", "Helvetica", "Arial", "Verdana", "sans-serif";
}
/* line 157, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_helpers.scss */
html.oldie[lang=th-TH] h3 {
  font-family: "Sukhumvit Set 200", "Sukhumvit Set", "Helvetica Neue", "Helvetica", "Arial", "Verdana", "sans-serif";
}
/* line 157, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_helpers.scss */
html.oldie[lang=ko-KR] h3 {
  font-family: "Yoon Gothic 200", "Yoon Gothic", "Helvetica Neue", "Helvetica", "Dotum", "Arial", "Verdana", "sans-serif";
}
@media only screen and (max-width: 767px) and (max-device-width: 768px) {
  /* line 74, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/base/_typography.scss */
  h3 {
    font-size: 2em;
    line-height: 1.1111;
    font-weight: 200;
  }
}

/* line 77, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/base/_typography.scss */
h4 {
  font-size: 2.2222em;
  line-height: 1.1;
  font-weight: 200;
}
/* line 157, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_helpers.scss */
html.oldie h4 {
  font-weight: normal;
  font-family: "Myriad Set Pro 200", "Myriad Set Pro", "Lucida Grande", "Helvetica Neue", "Helvetica", "Arial", "Verdana", "sans-serif";
}
/* line 157, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_helpers.scss */
html.oldie[lang=ja-JP] h4 {
  font-family: "Apple TP 200", "Apple TP", "Helvetica Neue", "Helvetica", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "Arial", "Verdana", "sans-serif";
}
/* line 157, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_helpers.scss */
html.oldie[lang=zh-CN] h4 {
  font-family: "PingHei 200", "PingHei", "Helvetica Neue", "Helvetica", "Arial", "Verdana", "sans-serif";
}
/* line 157, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_helpers.scss */
html.oldie[lang=zh-TW] h4 {
  font-family: "MHei 200", "MHei", "Helvetica Neue", "Helvetica", "Arial", "Verdana", "sans-serif";
}
/* line 157, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_helpers.scss */
html.oldie[lang=zh-HK] h4 {
  font-family: "MHei 200", "MHei", "Helvetica Neue", "Helvetica", "Arial", "Verdana", "sans-serif";
}
/* line 157, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_helpers.scss */
html.oldie[lang=th-TH] h4 {
  font-family: "Sukhumvit Set 200", "Sukhumvit Set", "Helvetica Neue", "Helvetica", "Arial", "Verdana", "sans-serif";
}
/* line 157, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_helpers.scss */
html.oldie[lang=ko-KR] h4 {
  font-family: "Yoon Gothic 200", "Yoon Gothic", "Helvetica Neue", "Helvetica", "Dotum", "Arial", "Verdana", "sans-serif";
}
@media only screen and (max-width: 767px) and (max-device-width: 768px) {
  /* line 77, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/base/_typography.scss */
  h4 {
    font-size: 1.7778em;
    line-height: 1.125;
    font-weight: 200;
  }
}

/* line 80, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/base/_typography.scss */
h5 {
  font-size: 1.7778em;
  line-height: 1.125;
  font-weight: 200;
}
/* line 157, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_helpers.scss */
html.oldie h5 {
  font-weight: normal;
  font-family: "Myriad Set Pro 200", "Myriad Set Pro", "Lucida Grande", "Helvetica Neue", "Helvetica", "Arial", "Verdana", "sans-serif";
}
/* line 157, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_helpers.scss */
html.oldie[lang=ja-JP] h5 {
  font-family: "Apple TP 200", "Apple TP", "Helvetica Neue", "Helvetica", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "Arial", "Verdana", "sans-serif";
}
/* line 157, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_helpers.scss */
html.oldie[lang=zh-CN] h5 {
  font-family: "PingHei 200", "PingHei", "Helvetica Neue", "Helvetica", "Arial", "Verdana", "sans-serif";
}
/* line 157, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_helpers.scss */
html.oldie[lang=zh-TW] h5 {
  font-family: "MHei 200", "MHei", "Helvetica Neue", "Helvetica", "Arial", "Verdana", "sans-serif";
}
/* line 157, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_helpers.scss */
html.oldie[lang=zh-HK] h5 {
  font-family: "MHei 200", "MHei", "Helvetica Neue", "Helvetica", "Arial", "Verdana", "sans-serif";
}
/* line 157, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_helpers.scss */
html.oldie[lang=th-TH] h5 {
  font-family: "Sukhumvit Set 200", "Sukhumvit Set", "Helvetica Neue", "Helvetica", "Arial", "Verdana", "sans-serif";
}
/* line 157, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_helpers.scss */
html.oldie[lang=ko-KR] h5 {
  font-family: "Yoon Gothic 200", "Yoon Gothic", "Helvetica Neue", "Helvetica", "Dotum", "Arial", "Verdana", "sans-serif";
}
@media only screen and (max-width: 767px) and (max-device-width: 768px) {
  /* line 80, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/base/_typography.scss */
  h5 {
    font-size: 1.5556em;
    line-height: 1.1429;
    font-weight: 200;
  }
}

/* line 83, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/base/_typography.scss */
h6 {
  font-size: 1.5556em;
  line-height: 1.1429;
  font-weight: 200;
}
/* line 157, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_helpers.scss */
html.oldie h6 {
  font-weight: normal;
  font-family: "Myriad Set Pro 200", "Myriad Set Pro", "Lucida Grande", "Helvetica Neue", "Helvetica", "Arial", "Verdana", "sans-serif";
}
/* line 157, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_helpers.scss */
html.oldie[lang=ja-JP] h6 {
  font-family: "Apple TP 200", "Apple TP", "Helvetica Neue", "Helvetica", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "Arial", "Verdana", "sans-serif";
}
/* line 157, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_helpers.scss */
html.oldie[lang=zh-CN] h6 {
  font-family: "PingHei 200", "PingHei", "Helvetica Neue", "Helvetica", "Arial", "Verdana", "sans-serif";
}
/* line 157, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_helpers.scss */
html.oldie[lang=zh-TW] h6 {
  font-family: "MHei 200", "MHei", "Helvetica Neue", "Helvetica", "Arial", "Verdana", "sans-serif";
}
/* line 157, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_helpers.scss */
html.oldie[lang=zh-HK] h6 {
  font-family: "MHei 200", "MHei", "Helvetica Neue", "Helvetica", "Arial", "Verdana", "sans-serif";
}
/* line 157, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_helpers.scss */
html.oldie[lang=th-TH] h6 {
  font-family: "Sukhumvit Set 200", "Sukhumvit Set", "Helvetica Neue", "Helvetica", "Arial", "Verdana", "sans-serif";
}
/* line 157, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_helpers.scss */
html.oldie[lang=ko-KR] h6 {
  font-family: "Yoon Gothic 200", "Yoon Gothic", "Helvetica Neue", "Helvetica", "Dotum", "Arial", "Verdana", "sans-serif";
}
@media only screen and (max-width: 767px) and (max-device-width: 768px) {
  /* line 83, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/base/_typography.scss */
  h6 {
    font-size: 1.3333em;
    line-height: 1.1667;
    font-weight: 200;
  }
}

/* line 87, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/base/_typography.scss */
h1, h2, h3, h4, h5, h6 {
  margin: 0.5em 0 0 0;
}
/* line 91, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/base/_typography.scss */
h1:first-child, h2:first-child, h3:first-child, h4:first-child, h5:first-child, h6:first-child {
  margin: 0 0 0 0;
}
/* line 96, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/base/_typography.scss */
h1 img, h2 img, h3 img, h4 img, h5 img, h6 img {
  display: block;
  margin: 0;
}

/* line 102, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/base/_typography.scss */
strong, b {
  font-weight: bold;
}

/* line 106, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/base/_typography.scss */
em, i, cite, dfn {
  font-style: italic;
}

/* line 110, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/base/_typography.scss */
p {
  margin: 1em 0 0 0;
}
/* line 114, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/base/_typography.scss */
p:first-child {
  margin: 0 0 0 0;
}

/* line 121, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/base/_typography.scss */
li li {
  font-size: 1em;
}

/* line 126, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/base/_typography.scss */
ul,
ol {
  margin: 1em 0 1em 1.1111em;
}
/* line 130, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/base/_typography.scss */
ul ul,
ul ol,
ol ul,
ol ol {
  margin-top: 0;
  margin-bottom: 0;
}
/* line 136, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/base/_typography.scss */
nav ul, nav
ol {
  list-style: none;
  margin: 0;
}

/* line 142, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/base/_typography.scss */
sup {
  font-size: .6em;
  opacity: .8;
  vertical-align: top;
  position: relative;
  bottom: -.2em;
}
/* line 149, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/base/_typography.scss */
.oldie sup {
  font-size: 10px;
  font-weight: normal;
  line-height: 1;
}
/* line 155, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/base/_typography.scss */
h1 sup, h2 sup, h3 sup {
  font-size: .4em;
}
/* line 157, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/base/_typography.scss */
.oldie h1 sup, .oldie h2 sup, .oldie h3 sup {
  font-size: .4em;
}
/* line 162, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/base/_typography.scss */
sup a {
  color: #333333;
}
/* line 165, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/base/_typography.scss */
sup a:hover {
  color: #0088cc;
  text-decoration: none;
}

/* line 172, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/base/_typography.scss */
sub {
  line-height: 1;
}

/* line 176, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/base/_typography.scss */
abbr {
  border: 0;
}

/* line 63, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_helpers.scss */
.selfclear:before, .selfclear:after {
  content: " ";
  display: table;
}
/* line 68, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_helpers.scss */
.selfclear:after {
  clear: both;
}
/* line 157, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_helpers.scss */
html.oldie .selfclear {
  zoom: 1;
}

/* line 5, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/base/_helpers.scss */
.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

/* line 9, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/base/_helpers.scss */
.imagereplace {
  font: 0/0 a;
  color: transparent;
}

/* line 13, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/base/_helpers.scss */
.nowrap {
  white-space: nowrap;
}

/* line 17, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/base/_helpers.scss */
.clear {
  clear: both;
}

/* line 21, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/base/_helpers.scss */
#top {
  position: absolute;
  top: 0;
}

/* line 26, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/base/_helpers.scss */
.cursor-grab {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}

/* line 30, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/base/_helpers.scss */
.cursor-grabbing {
  cursor: move;
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

/* line 9, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/base/_grid.scss */
.row {
  position: relative;
  z-index: 1;
}
/* line 63, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_helpers.scss */
.row:before, .row:after {
  content: " ";
  display: table;
}
/* line 68, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_helpers.scss */
.row:after {
  clear: both;
}
/* line 157, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_helpers.scss */
html.oldie .row {
  zoom: 1;
}

/* line 13, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/base/_grid.scss */
.column {
  position: relative;
  z-index: 1;
  min-height: 2px;
  margin: 0;
  padding: 0;
  float: left;
  width: 100%;
}

/* line 61, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_grid.scss */
.large-1 {
  width: 8.3333%;
}
/* line 157, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_helpers.scss */
html.oldie .large-1 {
  width: 8.325%;
}

/* line 65, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_grid.scss */
.large-centered-1 {
  margin-left: 45.8333%;
}
/* line 157, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_helpers.scss */
html.oldie .large-centered-1 {
  margin-left: 45.7875%;
}

/* line 69, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_grid.scss */
.large-offset-1 {
  margin-left: 8.3333%;
}
/* line 157, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_helpers.scss */
html.oldie .large-offset-1 {
  margin-left: 8.325%;
}

/* line 73, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_grid.scss */
.large-push-1 {
  left: 8.3333%;
  right: auto;
}

/* line 77, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_grid.scss */
.large-pull-1 {
  right: 8.3333%;
  left: auto;
}

/* line 61, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_grid.scss */
.large-2 {
  width: 16.6667%;
}
/* line 157, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_helpers.scss */
html.oldie .large-2 {
  width: 16.65%;
}

/* line 65, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_grid.scss */
.large-centered-2 {
  margin-left: 41.6667%;
}
/* line 157, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_helpers.scss */
html.oldie .large-centered-2 {
  margin-left: 41.625%;
}

/* line 69, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_grid.scss */
.large-offset-2 {
  margin-left: 16.6667%;
}
/* line 157, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_helpers.scss */
html.oldie .large-offset-2 {
  margin-left: 16.65%;
}

/* line 73, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_grid.scss */
.large-push-2 {
  left: 16.6667%;
  right: auto;
}

/* line 77, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_grid.scss */
.large-pull-2 {
  right: 16.6667%;
  left: auto;
}

/* line 61, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_grid.scss */
.large-3 {
  width: 25%;
}
/* line 157, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_helpers.scss */
html.oldie .large-3 {
  width: 24.975%;
}

/* line 65, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_grid.scss */
.large-centered-3 {
  margin-left: 37.5%;
}
/* line 157, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_helpers.scss */
html.oldie .large-centered-3 {
  margin-left: 37.4625%;
}

/* line 69, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_grid.scss */
.large-offset-3 {
  margin-left: 25%;
}
/* line 157, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_helpers.scss */
html.oldie .large-offset-3 {
  margin-left: 24.975%;
}

/* line 73, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_grid.scss */
.large-push-3 {
  left: 25%;
  right: auto;
}

/* line 77, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_grid.scss */
.large-pull-3 {
  right: 25%;
  left: auto;
}

/* line 61, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_grid.scss */
.large-4 {
  width: 33.3333%;
}
/* line 157, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_helpers.scss */
html.oldie .large-4 {
  width: 33.3%;
}

/* line 65, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_grid.scss */
.large-centered-4 {
  margin-left: 33.3333%;
}
/* line 157, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_helpers.scss */
html.oldie .large-centered-4 {
  margin-left: 33.3%;
}

/* line 69, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_grid.scss */
.large-offset-4 {
  margin-left: 33.3333%;
}
/* line 157, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_helpers.scss */
html.oldie .large-offset-4 {
  margin-left: 33.3%;
}

/* line 73, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_grid.scss */
.large-push-4 {
  left: 33.3333%;
  right: auto;
}

/* line 77, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_grid.scss */
.large-pull-4 {
  right: 33.3333%;
  left: auto;
}

/* line 61, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_grid.scss */
.large-5 {
  width: 41.6667%;
}
/* line 157, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_helpers.scss */
html.oldie .large-5 {
  width: 41.625%;
}

/* line 65, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_grid.scss */
.large-centered-5 {
  margin-left: 29.1667%;
}
/* line 157, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_helpers.scss */
html.oldie .large-centered-5 {
  margin-left: 29.1375%;
}

/* line 69, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_grid.scss */
.large-offset-5 {
  margin-left: 41.6667%;
}
/* line 157, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_helpers.scss */
html.oldie .large-offset-5 {
  margin-left: 41.625%;
}

/* line 73, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_grid.scss */
.large-push-5 {
  left: 41.6667%;
  right: auto;
}

/* line 77, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_grid.scss */
.large-pull-5 {
  right: 41.6667%;
  left: auto;
}

/* line 61, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_grid.scss */
.large-6 {
  width: 50%;
}
/* line 157, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_helpers.scss */
html.oldie .large-6 {
  width: 49.95%;
}

/* line 65, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_grid.scss */
.large-centered-6 {
  margin-left: 25%;
}
/* line 157, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_helpers.scss */
html.oldie .large-centered-6 {
  margin-left: 24.975%;
}

/* line 69, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_grid.scss */
.large-offset-6 {
  margin-left: 50%;
}
/* line 157, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_helpers.scss */
html.oldie .large-offset-6 {
  margin-left: 49.95%;
}

/* line 73, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_grid.scss */
.large-push-6 {
  left: 50%;
  right: auto;
}

/* line 77, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_grid.scss */
.large-pull-6 {
  right: 50%;
  left: auto;
}

/* line 61, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_grid.scss */
.large-7 {
  width: 58.3333%;
}
/* line 157, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_helpers.scss */
html.oldie .large-7 {
  width: 58.275%;
}

/* line 65, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_grid.scss */
.large-centered-7 {
  margin-left: 20.8333%;
}
/* line 157, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_helpers.scss */
html.oldie .large-centered-7 {
  margin-left: 20.8125%;
}

/* line 69, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_grid.scss */
.large-offset-7 {
  margin-left: 58.3333%;
}
/* line 157, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_helpers.scss */
html.oldie .large-offset-7 {
  margin-left: 58.275%;
}

/* line 73, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_grid.scss */
.large-push-7 {
  left: 58.3333%;
  right: auto;
}

/* line 77, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_grid.scss */
.large-pull-7 {
  right: 58.3333%;
  left: auto;
}

/* line 61, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_grid.scss */
.large-8 {
  width: 66.6667%;
}
/* line 157, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_helpers.scss */
html.oldie .large-8 {
  width: 66.6%;
}

/* line 65, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_grid.scss */
.large-centered-8 {
  margin-left: 16.6667%;
}
/* line 157, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_helpers.scss */
html.oldie .large-centered-8 {
  margin-left: 16.65%;
}

/* line 69, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_grid.scss */
.large-offset-8 {
  margin-left: 66.6667%;
}
/* line 157, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_helpers.scss */
html.oldie .large-offset-8 {
  margin-left: 66.6%;
}

/* line 73, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_grid.scss */
.large-push-8 {
  left: 66.6667%;
  right: auto;
}

/* line 77, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_grid.scss */
.large-pull-8 {
  right: 66.6667%;
  left: auto;
}

/* line 61, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_grid.scss */
.large-9 {
  width: 75%;
}
/* line 157, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_helpers.scss */
html.oldie .large-9 {
  width: 74.925%;
}

/* line 65, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_grid.scss */
.large-centered-9 {
  margin-left: 12.5%;
}
/* line 157, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_helpers.scss */
html.oldie .large-centered-9 {
  margin-left: 12.4875%;
}

/* line 69, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_grid.scss */
.large-offset-9 {
  margin-left: 75%;
}
/* line 157, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_helpers.scss */
html.oldie .large-offset-9 {
  margin-left: 74.925%;
}

/* line 73, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_grid.scss */
.large-push-9 {
  left: 75%;
  right: auto;
}

/* line 77, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_grid.scss */
.large-pull-9 {
  right: 75%;
  left: auto;
}

/* line 61, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_grid.scss */
.large-10 {
  width: 83.3333%;
}
/* line 157, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_helpers.scss */
html.oldie .large-10 {
  width: 83.25%;
}

/* line 65, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_grid.scss */
.large-centered-10 {
  margin-left: 8.3333%;
}
/* line 157, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_helpers.scss */
html.oldie .large-centered-10 {
  margin-left: 8.325%;
}

/* line 69, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_grid.scss */
.large-offset-10 {
  margin-left: 83.3333%;
}
/* line 157, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_helpers.scss */
html.oldie .large-offset-10 {
  margin-left: 83.25%;
}

/* line 73, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_grid.scss */
.large-push-10 {
  left: 83.3333%;
  right: auto;
}

/* line 77, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_grid.scss */
.large-pull-10 {
  right: 83.3333%;
  left: auto;
}

/* line 61, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_grid.scss */
.large-11 {
  width: 91.6667%;
}
/* line 157, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_helpers.scss */
html.oldie .large-11 {
  width: 91.575%;
}

/* line 65, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_grid.scss */
.large-centered-11 {
  margin-left: 4.1667%;
}
/* line 157, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_helpers.scss */
html.oldie .large-centered-11 {
  margin-left: 4.1625%;
}

/* line 69, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_grid.scss */
.large-offset-11 {
  margin-left: 91.6667%;
}
/* line 157, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_helpers.scss */
html.oldie .large-offset-11 {
  margin-left: 91.575%;
}

/* line 73, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_grid.scss */
.large-push-11 {
  left: 91.6667%;
  right: auto;
}

/* line 77, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_grid.scss */
.large-pull-11 {
  right: 91.6667%;
  left: auto;
}

/* line 61, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_grid.scss */
.large-12 {
  width: 100%;
}
/* line 157, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_helpers.scss */
html.oldie .large-12 {
  width: 99.9%;
}

/* line 65, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_grid.scss */
.large-centered-12 {
  margin-left: 0%;
}
/* line 157, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_helpers.scss */
html.oldie .large-centered-12 {
  margin-left: 0%;
}

/* line 69, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_grid.scss */
.large-offset-12 {
  margin-left: 100%;
}
/* line 157, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_helpers.scss */
html.oldie .large-offset-12 {
  margin-left: 99.9%;
}

/* line 73, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_grid.scss */
.large-push-12 {
  left: 100%;
  right: auto;
}

/* line 77, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_grid.scss */
.large-pull-12 {
  right: 100%;
  left: auto;
}

/* line 85, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_grid.scss */
.large-offset-0 {
  margin-left: 0;
}

/* line 88, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_grid.scss */
.large-push-0 {
  left: auto;
  right: auto;
}

/* line 92, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_grid.scss */
.large-pull-0 {
  right: auto;
  left: auto;
}

/* line 97, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_grid.scss */
.large-centered {
  margin-left: auto;
  margin-right: auto;
  float: none;
}

/* line 102, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_grid.scss */
.large-uncentered {
  margin-left: 0;
  margin-right: 0;
  float: left;
}

/* line 171, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_grid.scss */
.large-auto {
  position: absolute;
}

/* line 174, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_grid.scss */
.large-auto-top {
  top: 0;
}

/* line 177, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_grid.scss */
.large-auto-bottom {
  bottom: 0;
}

/* line 180, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_grid.scss */
.large-auto-left {
  left: 0;
}

/* line 183, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_grid.scss */
.large-auto-right {
  right: 0;
}

@media only screen and (max-width: 767px) and (max-device-width: 768px) {
  /* line 61, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_grid.scss */
  .small-1 {
    width: 8.3333%;
  }

  /* line 65, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_grid.scss */
  .small-centered-1 {
    margin-left: 45.8333%;
  }

  /* line 69, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_grid.scss */
  .small-offset-1 {
    margin-left: 8.3333%;
  }

  /* line 73, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_grid.scss */
  .small-push-1 {
    left: 8.3333%;
    right: auto;
  }

  /* line 77, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_grid.scss */
  .small-pull-1 {
    right: 8.3333%;
    left: auto;
  }

  /* line 61, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_grid.scss */
  .small-2 {
    width: 16.6667%;
  }

  /* line 65, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_grid.scss */
  .small-centered-2 {
    margin-left: 41.6667%;
  }

  /* line 69, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_grid.scss */
  .small-offset-2 {
    margin-left: 16.6667%;
  }

  /* line 73, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_grid.scss */
  .small-push-2 {
    left: 16.6667%;
    right: auto;
  }

  /* line 77, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_grid.scss */
  .small-pull-2 {
    right: 16.6667%;
    left: auto;
  }

  /* line 61, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_grid.scss */
  .small-3 {
    width: 25%;
  }

  /* line 65, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_grid.scss */
  .small-centered-3 {
    margin-left: 37.5%;
  }

  /* line 69, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_grid.scss */
  .small-offset-3 {
    margin-left: 25%;
  }

  /* line 73, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_grid.scss */
  .small-push-3 {
    left: 25%;
    right: auto;
  }

  /* line 77, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_grid.scss */
  .small-pull-3 {
    right: 25%;
    left: auto;
  }

  /* line 61, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_grid.scss */
  .small-4 {
    width: 33.3333%;
  }

  /* line 65, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_grid.scss */
  .small-centered-4 {
    margin-left: 33.3333%;
  }

  /* line 69, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_grid.scss */
  .small-offset-4 {
    margin-left: 33.3333%;
  }

  /* line 73, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_grid.scss */
  .small-push-4 {
    left: 33.3333%;
    right: auto;
  }

  /* line 77, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_grid.scss */
  .small-pull-4 {
    right: 33.3333%;
    left: auto;
  }

  /* line 61, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_grid.scss */
  .small-5 {
    width: 41.6667%;
  }

  /* line 65, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_grid.scss */
  .small-centered-5 {
    margin-left: 29.1667%;
  }

  /* line 69, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_grid.scss */
  .small-offset-5 {
    margin-left: 41.6667%;
  }

  /* line 73, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_grid.scss */
  .small-push-5 {
    left: 41.6667%;
    right: auto;
  }

  /* line 77, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_grid.scss */
  .small-pull-5 {
    right: 41.6667%;
    left: auto;
  }

  /* line 61, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_grid.scss */
  .small-6 {
    width: 50%;
  }

  /* line 65, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_grid.scss */
  .small-centered-6 {
    margin-left: 25%;
  }

  /* line 69, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_grid.scss */
  .small-offset-6 {
    margin-left: 50%;
  }

  /* line 73, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_grid.scss */
  .small-push-6 {
    left: 50%;
    right: auto;
  }

  /* line 77, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_grid.scss */
  .small-pull-6 {
    right: 50%;
    left: auto;
  }

  /* line 61, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_grid.scss */
  .small-7 {
    width: 58.3333%;
  }

  /* line 65, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_grid.scss */
  .small-centered-7 {
    margin-left: 20.8333%;
  }

  /* line 69, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_grid.scss */
  .small-offset-7 {
    margin-left: 58.3333%;
  }

  /* line 73, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_grid.scss */
  .small-push-7 {
    left: 58.3333%;
    right: auto;
  }

  /* line 77, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_grid.scss */
  .small-pull-7 {
    right: 58.3333%;
    left: auto;
  }

  /* line 61, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_grid.scss */
  .small-8 {
    width: 66.6667%;
  }

  /* line 65, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_grid.scss */
  .small-centered-8 {
    margin-left: 16.6667%;
  }

  /* line 69, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_grid.scss */
  .small-offset-8 {
    margin-left: 66.6667%;
  }

  /* line 73, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_grid.scss */
  .small-push-8 {
    left: 66.6667%;
    right: auto;
  }

  /* line 77, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_grid.scss */
  .small-pull-8 {
    right: 66.6667%;
    left: auto;
  }

  /* line 61, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_grid.scss */
  .small-9 {
    width: 75%;
  }

  /* line 65, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_grid.scss */
  .small-centered-9 {
    margin-left: 12.5%;
  }

  /* line 69, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_grid.scss */
  .small-offset-9 {
    margin-left: 75%;
  }

  /* line 73, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_grid.scss */
  .small-push-9 {
    left: 75%;
    right: auto;
  }

  /* line 77, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_grid.scss */
  .small-pull-9 {
    right: 75%;
    left: auto;
  }

  /* line 61, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_grid.scss */
  .small-10 {
    width: 83.3333%;
  }

  /* line 65, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_grid.scss */
  .small-centered-10 {
    margin-left: 8.3333%;
  }

  /* line 69, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_grid.scss */
  .small-offset-10 {
    margin-left: 83.3333%;
  }

  /* line 73, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_grid.scss */
  .small-push-10 {
    left: 83.3333%;
    right: auto;
  }

  /* line 77, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_grid.scss */
  .small-pull-10 {
    right: 83.3333%;
    left: auto;
  }

  /* line 61, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_grid.scss */
  .small-11 {
    width: 91.6667%;
  }

  /* line 65, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_grid.scss */
  .small-centered-11 {
    margin-left: 4.1667%;
  }

  /* line 69, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_grid.scss */
  .small-offset-11 {
    margin-left: 91.6667%;
  }

  /* line 73, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_grid.scss */
  .small-push-11 {
    left: 91.6667%;
    right: auto;
  }

  /* line 77, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_grid.scss */
  .small-pull-11 {
    right: 91.6667%;
    left: auto;
  }

  /* line 61, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_grid.scss */
  .small-12 {
    width: 100%;
  }

  /* line 65, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_grid.scss */
  .small-centered-12 {
    margin-left: 0%;
  }

  /* line 69, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_grid.scss */
  .small-offset-12 {
    margin-left: 100%;
  }

  /* line 73, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_grid.scss */
  .small-push-12 {
    left: 100%;
    right: auto;
  }

  /* line 77, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_grid.scss */
  .small-pull-12 {
    right: 100%;
    left: auto;
  }

  /* line 85, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_grid.scss */
  .small-offset-0 {
    margin-left: 0;
  }

  /* line 88, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_grid.scss */
  .small-push-0 {
    left: auto;
    right: auto;
  }

  /* line 92, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_grid.scss */
  .small-pull-0 {
    right: auto;
    left: auto;
  }

  /* line 97, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_grid.scss */
  .small-centered {
    margin-left: auto;
    margin-right: auto;
    float: none;
  }

  /* line 102, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_grid.scss */
  .small-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left;
  }

  /* line 171, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_grid.scss */
  .small-auto {
    position: absolute;
  }

  /* line 174, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_grid.scss */
  .small-auto-top {
    top: 0;
  }

  /* line 177, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_grid.scss */
  .small-auto-bottom {
    bottom: 0;
  }

  /* line 180, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_grid.scss */
  .small-auto-left {
    left: 0;
  }

  /* line 183, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_grid.scss */
  .small-auto-right {
    right: 0;
  }
}
/* line 13, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_blocklink.scss */
a.block {
  display: block;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}
/* line 157, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_helpers.scss */
html.oldie a.block {
  color: expression(this.parentNode.currentStyle['color']);
}
/* line 63, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_helpers.scss */
a.block:before, a.block:after {
  content: " ";
  display: table;
}
/* line 68, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_helpers.scss */
a.block:after {
  clear: both;
}
/* line 157, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_helpers.scss */
html.oldie a.block {
  zoom: 1;
}
/* line 25, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_blocklink.scss */
.no-touch a.block:hover .block-link, .no-js a.block:hover .block-link {
  text-decoration: underline;
}
/* line 28, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_blocklink.scss */
.no-touch a.block:hover .block-link.icon-ie-parent, .no-js a.block:hover .block-link.icon-ie-parent {
  text-decoration: none;
}
/* line 30, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_blocklink.scss */
.no-touch a.block:hover .block-link.icon-ie-parent .icon-ie-link, .no-js a.block:hover .block-link.icon-ie-parent .icon-ie-link {
  text-decoration: underline;
}
/* line 37, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_blocklink.scss */
a.block .block-link {
  color: #0088cc;
  cursor: pointer;
}

/* line 50, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_blocklink.scss */
a.block-inline {
  display: inline-block;
}

/* line 41, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_button.scss */
.button {
  background: #1d9bd9;
  background: -webkit-linear-gradient(#3baee7, #0088cc);
  background: linear-gradient(#3baee7, #0088cc);
  border-radius: 4px;
  color: white;
  cursor: pointer;
  font-size: 0.8333em;
  line-height: 2.16;
  text-align: center;
  white-space: nowrap;
  padding: 0 1.0667em;
  display: inline-block;
}
/* line 157, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_helpers.scss */
html.oldie .button {
  display: inline;
  zoom: 1;
}
/* line 157, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_helpers.scss */
html.oldie .button {
  vertical-align: middle;
}
/* line 231, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_helpers.scss */
.no-touch .button:hover, .no-js .button:hover {
  background: #2fa2dc;
  background: -webkit-linear-gradient(#4ab4e8, #1491d0);
  background: linear-gradient(#4ab4e8, #1491d0);
  text-decoration: none;
}
/* line 75, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_button.scss */
.button:active {
  background: #0d85c0;
  background: -webkit-linear-gradient(#1b9dde, #006da3);
  background: linear-gradient(#1b9dde, #006da3);
  outline: none;
}

/* line 141, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_button.scss */
.button-buynow,
.button-compact {
  background: #1d9bd9;
  background: -webkit-linear-gradient(#3baee7, #0088cc);
  background: linear-gradient(#3baee7, #0088cc);
  border-color: #137ec6;
  border-top-color: #1992da;
  border-bottom-color: #0d6ab2;
  color: white;
  color: white;
  font-size: 13px;
  padding: 0 0.8462em;
  line-height: 1.7;
}
/* line 231, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_helpers.scss */
.no-touch .button-buynow:hover, .no-js .button-buynow:hover, .no-touch
.button-compact:hover, .no-js
.button-compact:hover {
  background: #2fa2dc;
  background: -webkit-linear-gradient(#4ab4e8, #1491d0);
  background: linear-gradient(#4ab4e8, #1491d0);
}
/* line 130, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_button.scss */
.button-buynow:active,
.button-compact:active {
  background: #0d85c0;
  background: -webkit-linear-gradient(#1b9dde, #006da3);
  background: linear-gradient(#1b9dde, #006da3);
}

/* line 24, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_dotnav.scss */
.dotnav {
  text-align: center;
}
@media only screen and (max-device-width: 768px) {
  /* line 24, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_dotnav.scss */
  .dotnav {
    pointer-events: none;
  }
}
/* line 33, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_dotnav.scss */
.dotnav ul {
  display: inline-block;
}
/* line 157, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_helpers.scss */
html.oldie .dotnav ul {
  display: inline;
  zoom: 1;
}
/* line 38, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_dotnav.scss */
.dotnav li {
  list-style: none;
  margin: 0 10px;
  width: 8px;
  height: 8px;
  float: left;
  position: relative;
}
/* line 47, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_dotnav.scss */
.dotnav .dotnav-item {
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  outline: none;
  position: absolute;
  border-radius: 50%;
  background-color: #999999;
  font: 0/0 a;
  color: transparent;
}
/* line 231, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_helpers.scss */
.no-touch .dotnav .dotnav-item:hover, .no-js .dotnav .dotnav-item:hover {
  background-color: #666666;
}
/* line 62, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_dotnav.scss */
.dotnav .dotnav-item.active, .dotnav .dotnav-item.current {
  top: -1px;
  left: -1px;
  width: 8px;
  height: 8px;
  border-style: solid;
  border-width: 1px;
  border-color: #0088cc;
  background-color: transparent;
  cursor: default;
}
/* line 231, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_helpers.scss */
.no-touch .dotnav .dotnav-item.active:hover, .no-js .dotnav .dotnav-item.active:hover, .no-touch .dotnav .dotnav-item.current:hover, .no-js .dotnav .dotnav-item.current:hover {
  background-color: transparent;
}

@font-face {
  font-family: 'Apple Icons';
  font-style: normal;
  font-weight: 100;
  src: url("/v/ipad/business/home/d/ac-assets/fonts/AppleIcons-Ultralight.eot");
  src: url("/v/ipad/business/home/d/ac-assets/fonts/AppleIcons-Ultralight.eot?#iefix") format("embedded-opentype"), url("/v/ipad/business/home/d/ac-assets/fonts/AppleIcons-Ultralight.woff") format("woff"), url("/v/ipad/business/home/d/ac-assets/fonts/AppleIcons-Ultralight.ttf") format("truetype");
}
@font-face {
  font-family: 'Apple Icons';
  font-style: normal;
  font-weight: 200;
  src: url("/v/ipad/business/home/d/ac-assets/fonts/AppleIcons-Thin.eot");
  src: url("/v/ipad/business/home/d/ac-assets/fonts/AppleIcons-Thin.eot?#iefix") format("embedded-opentype"), url("/v/ipad/business/home/d/ac-assets/fonts/AppleIcons-Thin.woff") format("woff"), url("/v/ipad/business/home/d/ac-assets/fonts/AppleIcons-Thin.ttf") format("truetype");
}
@font-face {
  font-family: 'Apple Icons';
  font-style: normal;
  font-weight: 400;
  src: url("/v/ipad/business/home/d/ac-assets/fonts/AppleIcons-Text.eot");
  src: url("/v/ipad/business/home/d/ac-assets/fonts/AppleIcons-Text.eot?#iefix") format("embedded-opentype"), url("/v/ipad/business/home/d/ac-assets/fonts/AppleIcons-Text.woff") format("woff"), url("/v/ipad/business/home/d/ac-assets/fonts/AppleIcons-Text.ttf") format("truetype");
}
/* line 62, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_icon.scss */
.icon, .more, .breadcrumbs-list > li {
  behavior: url("/v/ipad/business/home/d/ac-assets/behaviors/icons.htc");
}
/* line 66, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_icon.scss */
.icon:before, .more:before, .breadcrumbs-list > li:before {
  display: none;
  padding-right: 0.3em;
}
/* line 71, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_icon.scss */
.icon:after, .more:after, .breadcrumbs-list > li:after {
  display: inline-block;
  padding-left: 0.3em;
}
/* line 76, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_icon.scss */
.icon .icon-htc, .more .icon-htc, .breadcrumbs-list > li .icon-htc {
  padding-left: 0.3em;
  padding-right: 0.3em;
}
/* line 81, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_icon.scss */
.icon:before, .more:before, .breadcrumbs-list > li:before, .icon:after, .more:after, .breadcrumbs-list > li:after,
.icon .icon-htc,
.more .icon-htc,
.breadcrumbs-list > li .icon-htc {
  color: inherit;
  font-family: 'Apple Icons';
  font-style: normal;
  font-weight: inherit;
  font-size: 1em;
  line-height: 1;
  text-decoration: none;
  position: relative;
  z-index: 1;
}

/* line 98, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_icon.scss */
.icon-before:before, .breadcrumbs-list > li:before {
  display: inline-block;
  position: relative;
  top: -0.125em;
}
/* line 104, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_icon.scss */
.icon-before:after, .breadcrumbs-list > li:after {
  display: none;
}

/* line 109, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_icon.scss */
.icon-ie-parent {
  text-decoration: none;
}
/* line 231, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_helpers.scss */
.no-touch .icon-ie-parent:hover, .no-js .icon-ie-parent:hover {
  text-decoration: none;
}
/* line 114, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_icon.scss */
.no-touch .icon-ie-parent:hover .icon-ie-link, .no-js .icon-ie-parent:hover .icon-ie-link {
  text-decoration: underline;
}

/* line 122, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_icon.scss */
.icon-apple:before, .icon-apple:after {
  content: "";
}

/* line 122, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_icon.scss */
.icon-more:before, .more:before, .icon-more:after, .more:after {
  content: "";
}

/* line 122, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_icon.scss */
.icon-chevronright:before, .icon-chevronright:after {
  content: "";
}

/* line 122, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_icon.scss */
.icon-chevronrightalt:before, .icon-chevronrightalt:after {
  content: "";
}

/* line 122, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_icon.scss */
.icon-chevrondown:before, .icon-chevrondown:after {
  content: "";
}

/* line 122, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_icon.scss */
.icon-chevrondownalt:before, .icon-chevrondownalt:after {
  content: "";
}

/* line 122, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_icon.scss */
.icon-chevronleft:before, .icon-chevronleft:after {
  content: "";
}

/* line 122, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_icon.scss */
.icon-chevronleftalt:before, .icon-chevronleftalt:after {
  content: "";
}

/* line 122, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_icon.scss */
.icon-chevronup:before, .icon-chevronup:after {
  content: "";
}

/* line 122, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_icon.scss */
.icon-chevronupalt:before, .icon-chevronupalt:after {
  content: "";
}

/* line 122, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_icon.scss */
.icon-close:before, .icon-close:after {
  content: "";
}

/* line 122, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_icon.scss */
.icon-closealt:before, .icon-closealt:after {
  content: "";
}

/* line 122, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_icon.scss */
.icon-closeinlinealt:before, .icon-closeinlinealt:after {
  content: "";
}

/* line 122, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_icon.scss */
.icon-download:before, .icon-download:after {
  content: "";
}

/* line 122, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_icon.scss */
.icon-downloadalt:before, .icon-downloadalt:after {
  content: "";
}

/* line 122, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_icon.scss */
.icon-external:before, .icon-external:after {
  content: "";
}

/* line 122, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_icon.scss */
.icon-info:before, .icon-info:after {
  content: "";
}

/* line 122, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_icon.scss */
.icon-list:before, .icon-list:after {
  content: "";
}

/* line 122, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_icon.scss */
.icon-paddledown:before, .icon-paddledown:after {
  content: "";
}

/* line 122, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_icon.scss */
.icon-paddleleft:before, .icon-paddleleft:after {
  content: "";
}

/* line 122, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_icon.scss */
.icon-paddleright:before, .breadcrumbs-list > li:before, .icon-paddleright:after, .breadcrumbs-list > li:after {
  content: "";
}

/* line 122, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_icon.scss */
.icon-paddleup:before, .icon-paddleup:after {
  content: "";
}

/* line 122, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_icon.scss */
.icon-pause:before, .icon-pause:after {
  content: "";
}

/* line 122, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_icon.scss */
.icon-play:before, .icon-play:after {
  content: "";
}

/* line 122, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_icon.scss */
.icon-playalt:before, .icon-playalt:after {
  content: "";
}

/* line 122, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_icon.scss */
.icon-replay:before, .icon-replay:after {
  content: "";
}

/* line 122, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_icon.scss */
.icon-zoom:before, .icon-zoom:after {
  content: "";
}

/* line 139, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_icon.scss */
.more-block {
  margin-top: 0.5em;
}

/* line 17, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_list.scss */
.list-square {
  list-style: square outside;
}

/* line 27, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_list.scss */
.list-circle {
  list-style: circle outside;
}

/* line 37, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_list.scss */
.list-disc {
  list-style: disc outside;
}

@media only screen and (max-width: 767px) and (max-device-width: 768px) {
  /* line 29, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_localnav.scss */
  .localnav-wrapper {
    position: absolute;
    z-index: 150;
    overflow: hidden;
    top: 0;
    left: 0;
    height: 48px;
    margin-top: 48px;
    width: 100%;
  }
  /* line 41, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_localnav.scss */
  .localnav-wrapper:after {
    content: "";
    height: 1px;
    background: #d6d6d6;
    position: absolute;
    left: 0;
    top: 47px;
    width: 100%;
    z-index: -1;
  }
}

/* line 54, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_localnav.scss */
.localnav {
  border-bottom: 1px solid #d6d6d6;
  margin: 1em auto 0;
  max-width: 980px;
}
/* line 63, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_helpers.scss */
.localnav:before, .localnav:after {
  content: " ";
  display: table;
}
/* line 68, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_helpers.scss */
.localnav:after {
  clear: both;
}
/* line 157, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_helpers.scss */
html.oldie .localnav {
  zoom: 1;
}
@media only screen and (max-width: 767px) and (max-device-width: 768px) {
  /* line 54, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_localnav.scss */
  .localnav {
    margin-top: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
    width: 100%;
    padding: 0;
  }
}

@media only screen and (max-width: 767px) and (max-device-width: 768px) and (orientation: portrait) {
  /* line 54, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_localnav.scss */
  .localnav {
    display: inline-block;
  }
}

/* line 74, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_localnav.scss */
.localnav-title {
  padding: 0;
  display: block;
  font-size: 32px;
  line-height: 1;
  float: left;
}
/* line 81, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_localnav.scss */
.localnav-title > a {
  margin: 0 0 0 0;
  color: #333333;
  display: block;
  text-decoration: none;
}
/* line 87, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_localnav.scss */
.localnav-title > a:hover {
  text-decoration: none;
}
@media only screen and (max-width: 767px) and (max-device-width: 768px) {
  /* line 81, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_localnav.scss */
  .localnav-title > a {
    display: block;
    padding: 12px 0 11px;
    font-size: 17px;
    text-decoration: none;
    margin-bottom: 10px;
    font-weight: 400;
    margin: 0 15px;
    line-height: 1.3889;
  }
}

@media only screen and (max-width: 767px) and (max-device-width: 768px) {
  /* line 74, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_localnav.scss */
  .localnav-title {
    display: inline-block;
  }
}

/* line 108, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_localnav.scss */
.localnav-links {
  float: right;
  margin: 8px 0 7px 0;
}
/* line 112, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_localnav.scss */
.localnav-links > li {
  float: left;
  list-style: none;
  margin-left: 30px;
}
@media only screen and (max-width: 767px) and (max-device-width: 768px) {
  /* line 112, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_localnav.scss */
  .localnav-links > li {
    float: none;
    display: inline-block;
    text-align: center;
    margin-left: 14px;
    margin-right: 14px;
  }
}

/* line 126, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_localnav.scss */
.localnav-links .button {
  margin: 0;
}
@media only screen and (max-width: 767px) and (max-device-width: 768px) {
  /* line 108, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_localnav.scss */
  .localnav-links {
    display: initial;
    float: none;
    width: auto;
    clear: both;
  }
}

/* line 138, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_localnav.scss */
.localnav-link-title {
  display: none;
}
@media only screen and (max-width: 767px) and (max-device-width: 768px) {
  /* line 138, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_localnav.scss */
  .localnav-link-title {
    display: inline-block;
  }
}

/* line 146, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_localnav.scss */
.localnav-link {
  font-size: 13px;
  color: #333333;
  display: inline-block;
  white-space: nowrap;
}
/* line 231, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_helpers.scss */
.no-touch .localnav-link:hover, .no-js .localnav-link:hover {
  color: #0088cc;
  text-decoration: none;
}
/* line 157, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_localnav.scss */
.localnav-link.current {
  color: #999999;
}
/* line 231, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_helpers.scss */
.no-touch .localnav-link.current:hover, .no-js .localnav-link.current:hover {
  color: #999999;
}
@media only screen and (max-width: 767px) and (max-device-width: 768px) {
  /* line 157, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_localnav.scss */
  .localnav-link.current {
    border-bottom: 1px solid #333333;
    color: #333333;
  }
}

@media only screen and (max-width: 767px) and (max-device-width: 768px) {
  /* line 146, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_localnav.scss */
  .localnav-link {
    display: block;
    padding: 12px 0 10px;
    font-size: 17px;
    text-decoration: none;
    margin-bottom: 10px;
  }
}

/* line 18, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_paddlenav.scss */
.with-paddlenav {
  position: relative;
}

/* line 22, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_paddlenav.scss */
.paddlenav {
  list-style: none;
  margin: 0;
}

/* line 27, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_paddlenav.scss */
.paddlenav-arrow {
  width: 64px;
  height: 128px;
  position: absolute;
  top: 50%;
  line-height: 1.67;
  margin-top: -64px;
  text-align: center;
  overflow: hidden;
  color: #999999;
  background-color: transparent;
  border-radius: 4px;
  display: block;
  font-family: 'Apple Icons';
  font-size: 72px;
  font-style: normal;
  font-weight: 200;
  -webkit-transition: 250ms opacity linear, 250ms color linear, 250ms background-color linear;
          transition: 250ms opacity linear, 250ms color linear, 250ms background-color linear;
  opacity: 0.7;
  behavior: url("/v/ipad/business/home/d/ac-assets/behaviors/icons.htc");
}
/* line 50, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_paddlenav.scss */
.paddlenav-arrow.disabled {
  display: none;
}
/* line 231, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_helpers.scss */
.no-touch .paddlenav-arrow:hover, .no-js .paddlenav-arrow:hover {
  color: #999999;
  background-color: transparent;
  text-decoration: none;
  opacity: 1;
}
/* line 61, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_paddlenav.scss */
.paddlenav-arrow:focus {
  color: #999999;
  background-color: transparent;
  text-decoration: none;
}
@media only screen and (max-device-width: 768px) {
  /* line 27, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_paddlenav.scss */
  .paddlenav-arrow {
    color: #999999;
    background-color: transparent;
  }
}

/* line 74, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_paddlenav.scss */
.paddlenav-arrow-left {
  left: 0px;
}

/* line 77, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_paddlenav.scss */
.paddlenav-arrow-left::after {
  content: "\f016";
}

/* line 81, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_paddlenav.scss */
.paddlenav-arrow-right {
  right: 0px;
}

/* line 84, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_paddlenav.scss */
.paddlenav-arrow-right::before {
  content: "\f017";
}

@media only screen and (min-device-width: 769px) {
  /* line 94, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_paddlenav.scss */
  .paddlenav-onhover .paddlenav-arrow {
    opacity: 0;
  }
  /* line 97, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_paddlenav.scss */
  .paddlenav-onhover .paddlenav-arrow:focus {
    opacity: 1;
  }
}
/* line 157, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_helpers.scss */
html.oldie .paddlenav-onhover .paddlenav-arrow {
  visibility: hidden;
}
@media only screen and (min-device-width: 769px) {
  /* line 106, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_paddlenav.scss */
  .with-paddlenav:hover .paddlenav-onhover .paddlenav-arrow {
    opacity: 0.70;
  }
}
/* line 157, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_helpers.scss */
html.oldie .with-paddlenav:hover .paddlenav-onhover .paddlenav-arrow {
  visibility: visible;
}
/* line 115, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_paddlenav.scss */
.with-paddlenav:hover .paddlenav-onhover .paddlenav-arrow:hover, .with-paddlenav:hover .paddlenav-onhover .paddlenav-arrow:focus {
  opacity: 1;
}

/* line 139, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_paddlenav.scss */
.paddlenav-framed .paddlenav-arrow {
  color: #999999;
  background-color: #f2f2f2;
}
/* line 231, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_helpers.scss */
.no-touch .paddlenav-framed .paddlenav-arrow:hover, .no-js .paddlenav-framed .paddlenav-arrow:hover {
  color: #999999;
  background-color: #f2f2f2;
  text-decoration: none;
}
/* line 149, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_paddlenav.scss */
.paddlenav-framed .paddlenav-arrow:focus {
  color: #999999;
  background-color: #f2f2f2;
  text-decoration: none;
}
@media only screen and (max-device-width: 768px) {
  /* line 139, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_paddlenav.scss */
  .paddlenav-framed .paddlenav-arrow {
    color: #999999;
    background-color: #f2f2f2;
  }
}
/* line 161, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_paddlenav.scss */
.paddlenav-framed .paddlenav-arrow-left {
  left: 15px;
}
/* line 165, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_paddlenav.scss */
.paddlenav-framed .paddlenav-arrow-right {
  right: 15px;
}

/* line 29, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_buystrip.scss */
.buystrip {
  padding-top: 60px;
  padding-bottom: 60px;
  text-align: center;
  border-bottom: 1px solid #e3e3e3;
  margin-left: auto;
  margin-right: auto;
  width: 980px;
}
@media only screen and (max-width: 767px) and (max-device-width: 768px) {
  /* line 29, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_buystrip.scss */
  .buystrip {
    width: 508px;
  }
}

@media only screen and (max-width: 767px) and (max-device-width: 768px) {
  /* line 29, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_buystrip.scss */
  .buystrip {
    padding-top: 32px;
    padding-bottom: 40px;
  }
}

/* line 44, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_buystrip.scss */
.buystrip-hero {
  direction: rtl;
  margin-bottom: 0;
}
/* line 63, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_helpers.scss */
.buystrip-hero:before, .buystrip-hero:after {
  content: " ";
  display: table;
}
/* line 68, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_helpers.scss */
.buystrip-hero:after {
  clear: both;
}
/* line 157, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_helpers.scss */
html.oldie .buystrip-hero {
  zoom: 1;
}

/* line 50, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_buystrip.scss */
.buystrip-product {
  vertical-align: middle;
  display: inline-block;
}
/* line 157, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_helpers.scss */
html.oldie .buystrip-product {
  display: inline;
  zoom: 1;
}

/* line 56, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_buystrip.scss */
.buystrip-product-block {
  direction: ltr;
  text-align: left;
  padding-left: 20px;
  vertical-align: middle;
  display: inline-block;
}
/* line 157, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_helpers.scss */
html.oldie .buystrip-product-block {
  display: inline;
  zoom: 1;
}
@media only screen and (max-width: 767px) and (max-device-width: 768px) {
  /* line 56, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_buystrip.scss */
  .buystrip-product-block {
    text-align: center;
    padding-left: 0;
    margin-bottom: 1em;
    width: 100%;
  }
}

/* line 71, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_buystrip.scss */
.buystrip-product-title {
  font-size: 1.9444em;
  line-height: 1.1429;
  font-weight: 200;
  padding-bottom: 8px;
}
/* line 157, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_helpers.scss */
html.oldie .buystrip-product-title {
  font-weight: normal;
  font-family: "Myriad Set Pro 200", "Myriad Set Pro", "Lucida Grande", "Helvetica Neue", "Helvetica", "Arial", "Verdana", "sans-serif";
}
/* line 157, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_helpers.scss */
html.oldie[lang=ja-JP] .buystrip-product-title {
  font-family: "Apple TP 200", "Apple TP", "Helvetica Neue", "Helvetica", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "Arial", "Verdana", "sans-serif";
}
/* line 157, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_helpers.scss */
html.oldie[lang=zh-CN] .buystrip-product-title {
  font-family: "PingHei 200", "PingHei", "Helvetica Neue", "Helvetica", "Arial", "Verdana", "sans-serif";
}
/* line 157, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_helpers.scss */
html.oldie[lang=zh-TW] .buystrip-product-title {
  font-family: "MHei 200", "MHei", "Helvetica Neue", "Helvetica", "Arial", "Verdana", "sans-serif";
}
/* line 157, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_helpers.scss */
html.oldie[lang=zh-HK] .buystrip-product-title {
  font-family: "MHei 200", "MHei", "Helvetica Neue", "Helvetica", "Arial", "Verdana", "sans-serif";
}
/* line 157, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_helpers.scss */
html.oldie[lang=th-TH] .buystrip-product-title {
  font-family: "Sukhumvit Set 200", "Sukhumvit Set", "Helvetica Neue", "Helvetica", "Arial", "Verdana", "sans-serif";
}
/* line 157, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_helpers.scss */
html.oldie[lang=ko-KR] .buystrip-product-title {
  font-family: "Yoon Gothic 200", "Yoon Gothic", "Helvetica Neue", "Helvetica", "Dotum", "Arial", "Verdana", "sans-serif";
}
@media only screen and (max-width: 767px) and (max-device-width: 768px) {
  /* line 71, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_buystrip.scss */
  .buystrip-product-title {
    font-size: 1.6667em;
    line-height: 1.1667;
    font-weight: 200;
  }
}

@media only screen and (max-width: 767px) and (max-device-width: 768px) {
  /* line 71, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_buystrip.scss */
  .buystrip-product-title {
    padding-bottom: 2px;
  }
}

/* line 79, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_buystrip.scss */
.buystrip-product-copy {
  font-size: 1em;
  line-height: 1.5556;
  font-weight: 400;
  margin: 0 0 0 0;
}
@media only screen and (max-width: 767px) and (max-device-width: 768px) {
  /* line 79, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_buystrip.scss */
  .buystrip-product-copy {
    font-size: 0.8889em;
    line-height: 1.5;
    font-weight: 400;
  }
}

/* line 84, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_buystrip.scss */
.buystrip-blocks {
  position: relative;
  z-index: 1;
  display: table;
  width: 100%;
}
/* line 63, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_helpers.scss */
.buystrip-blocks:before, .buystrip-blocks:after {
  content: " ";
  display: table;
}
/* line 68, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_helpers.scss */
.buystrip-blocks:after {
  clear: both;
}
/* line 157, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_helpers.scss */
html.oldie .buystrip-blocks {
  zoom: 1;
}
/* line 90, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_buystrip.scss */
.buystrip-blocks > .column {
  display: table-cell;
  float: none;
  vertical-align: top;
}
/* line 157, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_helpers.scss */
html.oldie .buystrip-blocks > .column {
  float: left;
}
@media only screen and (max-width: 767px) and (max-device-width: 768px) {
  /* line 84, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_buystrip.scss */
  .buystrip-blocks {
    margin-top: 40px;
  }
}

/* line 115, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_buystrip.scss */
.buystrip-block {
  text-align: center;
  margin-top: 80px;
  margin-bottom: 0;
  width: 208px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 1.7778em;
}
@media only screen and (max-width: 767px) and (max-device-width: 768px) {
  /* line 115, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_buystrip.scss */
  .buystrip-block {
    margin-top: 40px;
  }
}

/* line 127, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_buystrip.scss */
.buystrip-block-icon {
  margin-left: auto;
  margin-right: auto;
}

/* line 131, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_buystrip.scss */
.buystrip-block-title {
  font-size: 1.3333em;
  line-height: 1.3333;
  font-weight: 200;
}
/* line 157, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_helpers.scss */
html.oldie .buystrip-block-title {
  font-weight: normal;
  font-family: "Myriad Set Pro 200", "Myriad Set Pro", "Lucida Grande", "Helvetica Neue", "Helvetica", "Arial", "Verdana", "sans-serif";
}
/* line 157, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_helpers.scss */
html.oldie[lang=ja-JP] .buystrip-block-title {
  font-family: "Apple TP 200", "Apple TP", "Helvetica Neue", "Helvetica", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "Arial", "Verdana", "sans-serif";
}
/* line 157, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_helpers.scss */
html.oldie[lang=zh-CN] .buystrip-block-title {
  font-family: "PingHei 200", "PingHei", "Helvetica Neue", "Helvetica", "Arial", "Verdana", "sans-serif";
}
/* line 157, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_helpers.scss */
html.oldie[lang=zh-TW] .buystrip-block-title {
  font-family: "MHei 200", "MHei", "Helvetica Neue", "Helvetica", "Arial", "Verdana", "sans-serif";
}
/* line 157, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_helpers.scss */
html.oldie[lang=zh-HK] .buystrip-block-title {
  font-family: "MHei 200", "MHei", "Helvetica Neue", "Helvetica", "Arial", "Verdana", "sans-serif";
}
/* line 157, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_helpers.scss */
html.oldie[lang=th-TH] .buystrip-block-title {
  font-family: "Sukhumvit Set 200", "Sukhumvit Set", "Helvetica Neue", "Helvetica", "Arial", "Verdana", "sans-serif";
}
/* line 157, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_helpers.scss */
html.oldie[lang=ko-KR] .buystrip-block-title {
  font-family: "Yoon Gothic 200", "Yoon Gothic", "Helvetica Neue", "Helvetica", "Dotum", "Arial", "Verdana", "sans-serif";
}

/* line 135, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_buystrip.scss */
.buystrip-block-copy {
  font-size: 0.8889em;
  line-height: 1.5;
  font-weight: 400;
  color: #666666;
  margin-top: 0.1111em;
}
/* line 139, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_buystrip.scss */
.buystrip-block-copy:first-child {
  margin-top: 0;
}
/* line 143, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_buystrip.scss */
.buystrip-block-copy.block-link {
  margin-top: 0.5em;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

/* line 153, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_buystrip.scss */
.buystrip-block-call .block-link {
  color: #333333;
}

/* line 159, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_buystrip.scss */
a.buystrip-block-line:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 80px;
  bottom: 0;
  border-left: 1px solid #e3e3e3;
}
@media only screen and (max-width: 767px) and (max-device-width: 768px) {
  /* line 159, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_buystrip.scss */
  a.buystrip-block-line:before {
    border: none;
  }
}

/* line 8, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_sosumi.scss */
.sosumi {
  color: #999999;
}
/* line 11, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_sosumi.scss */
.sosumi a {
  color: #666666;
}
/* line 231, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_helpers.scss */
.no-touch .sosumi a:hover, .no-js .sosumi a:hover {
  text-decoration: underline;
}
/* line 19, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_sosumi.scss */
.sosumi ol {
  margin: 0;
  padding-right: 15px;
  padding-left: 15px;
}
/* line 25, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_sosumi.scss */
.sosumi ul {
  list-style: none;
  margin: 0;
}
/* line 30, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_sosumi.scss */
.sosumi li {
  padding-bottom: 5px;
}
/* line 34, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_sosumi.scss */
.sosumi p, .sosumi li {
  font-size: 0.6667em;
  line-height: 1.3333;
  font-weight: 400;
}
/* line 38, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_sosumi.scss */
.sosumi small {
  font-size: 1em;
}
/* line 42, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_sosumi.scss */
.footer-wrapper .sosumi {
  margin-left: auto;
  margin-right: auto;
  width: 980px;
  padding: 16px 0 11px 0;
  border-bottom: 1px solid #e3e3e3;
}
@media only screen and (max-width: 767px) and (max-device-width: 768px) {
  /* line 42, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_sosumi.scss */
  .footer-wrapper .sosumi {
    width: 508px;
  }
}

/* line 59, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_footer.scss */
.footer-wrapper {
  margin-left: auto;
  margin-right: auto;
  background: #f2f2f2;
}
/* line 63, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_helpers.scss */
.footer-wrapper:before, .footer-wrapper:after {
  content: " ";
  display: table;
}
/* line 68, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_helpers.scss */
.footer-wrapper:after {
  clear: both;
}
/* line 157, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_helpers.scss */
html.oldie .footer-wrapper {
  zoom: 1;
}

/* line 65, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_footer.scss */
.footer-global {
  margin-left: auto;
  margin-right: auto;
  width: 980px;
  color: #999999;
  padding-top: 18px;
  padding-bottom: 18px;
  line-height: 1;
  font-size: 1em;
}
@media only screen and (max-width: 767px) and (max-device-width: 768px) {
  /* line 65, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_footer.scss */
  .footer-global {
    width: 508px;
  }
}

/* line 63, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_helpers.scss */
.footer-global:before, .footer-global:after {
  content: " ";
  display: table;
}
/* line 68, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_helpers.scss */
.footer-global:after {
  clear: both;
}
/* line 157, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_helpers.scss */
html.oldie .footer-global {
  zoom: 1;
}
/* line 76, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_footer.scss */
.footer-global a {
  color: #666666;
}
/* line 231, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_helpers.scss */
.no-touch .footer-global a:hover, .no-js .footer-global a:hover {
  color: #333333;
}

/* line 95, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_footer.scss */
.footer-breadory {
  border-bottom: 1px solid #e3e3e3;
  margin-bottom: 22px;
  position: relative;
  line-height: 1.3889;
}
/* line 63, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_helpers.scss */
.footer-breadory:before, .footer-breadory:after {
  content: " ";
  display: table;
}
/* line 68, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_helpers.scss */
.footer-breadory:after {
  clear: both;
}
/* line 157, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_helpers.scss */
html.oldie .footer-breadory {
  zoom: 1;
}
@media only screen and (max-width: 767px) and (max-device-width: 768px) {
  /* line 102, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_footer.scss */
  .footer-breadory:after {
    content: "";
    display: block;
    width: 100%;
    height: 10px;
    background: #f2f2f2;
    top: 32px;
    position: absolute;
    left: 0;
    z-index: 1;
  }
}

/* line 124, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_footer.scss */
.breadcrumbs {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  white-space: nowrap;
  direction: rtl;
}
/* line 157, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_helpers.scss */
html.oldie .breadcrumbs {
  overflow: visible;
}
@media only screen and (max-width: 767px) and (max-device-width: 768px) and (orientation: portrait) {
  /* line 124, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_footer.scss */
  .breadcrumbs {
    display: inline-block;
  }
}

/* line 142, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_footer.scss */
.breadcrumbs-list {
  color: #666666;
  padding-bottom: 16px;
  float: right;
  min-width: 100%;
  direction: ltr;
}
/* line 63, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_helpers.scss */
.breadcrumbs-list:before, .breadcrumbs-list:after {
  content: " ";
  display: table;
}
/* line 68, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_helpers.scss */
.breadcrumbs-list:after {
  clear: both;
}
/* line 157, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_helpers.scss */
html.oldie .breadcrumbs-list {
  zoom: 1;
}
/* line 150, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_footer.scss */
.breadcrumbs-list > li:first-child {
  margin-left: 12px;
}
@media only screen and (max-width: 767px) and (max-device-width: 768px) {
  /* line 150, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_footer.scss */
  .breadcrumbs-list > li:first-child {
    margin-left: 32px;
  }
  /* line 156, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_footer.scss */
  .breadcrumbs-list > li:first-child:before {
    display: none;
  }
}

/* line 162, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_footer.scss */
.breadcrumbs-list > li {
  font-size: 0.6667em;
  line-height: 2;
  font-weight: 400;
  display: inline-block;
  padding-left: 0.8em;
  white-space: nowrap;
}
@media only screen and (max-width: 767px) and (max-device-width: 768px) {
  /* line 162, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_footer.scss */
  .breadcrumbs-list > li {
    font-size: 0.7778em;
    line-height: 2;
    font-weight: 600;
  }
}

/* line 157, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_helpers.scss */
html.oldie .breadcrumbs-list > li {
  display: block;
  float: left;
  margin-left: 14px;
  margin-top: 2px;
}
/* line 175, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_footer.scss */
.breadcrumbs-list > li a {
  color: #666666;
}
/* line 231, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_helpers.scss */
.no-touch .breadcrumbs-list > li a:hover, .no-js .breadcrumbs-list > li a:hover {
  color: #333333;
  text-decoration: none;
}
/* line 187, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_footer.scss */
.breadcrumbs-list > li:before {
  font-size: 1.3333em;
  line-height: 1;
  padding-right: 0.5em;
  top: 0.1em;
  color: #d6d6d6;
  font-weight: 400;
}
@media only screen and (max-width: 767px) and (max-device-width: 768px) {
  /* line 198, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_footer.scss */
  .breadcrumbs-list > li {
    padding-left: .2em;
  }
}

/* line 205, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_footer.scss */
.breadcrumbs-home {
  color: #666666;
  background: #f2f2f2;
  display: block;
  font-size: 1.1111em;
  line-height: 1;
  height: 1em;
  position: absolute;
  top: 0.2222em;
  left: 0;
  z-index: 2;
  font-family: 'Apple Icons', 'Myriad Set Pro', 'Apple TP', 'MHei', 'PingHei', 'Sukhumvit Set', 'Yoon Gothic';
}
/* line 157, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_helpers.scss */
html.oldie .breadcrumbs-home {
  line-height: 0.9;
}
/* line 231, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_helpers.scss */
.no-touch .breadcrumbs-home:hover, .no-js .breadcrumbs-home:hover {
  color: #333333;
  text-decoration: none;
}
@media only screen and (max-width: 767px) and (max-device-width: 768px) {
  /* line 205, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_footer.scss */
  .breadcrumbs-home {
    border-right: 1px solid #e3e3e3;
    padding-right: 0.5em;
  }
}

/* line 234, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_footer.scss */
.breadcrumbs-home-label {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

/* line 243, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_footer.scss */
.directorynav {
  position: relative;
  z-index: 1;
  margin-top: 0;
  margin-bottom: 18px;
}
/* line 63, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_helpers.scss */
.directorynav:before, .directorynav:after {
  content: " ";
  display: table;
}
/* line 68, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_helpers.scss */
.directorynav:after {
  clear: both;
}
/* line 157, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_helpers.scss */
html.oldie .directorynav {
  zoom: 1;
}
/* line 251, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_footer.scss */
.directorynav > .column input {
  display: none;
}
/* line 255, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_footer.scss */
.directorynav > .column li {
  line-height: 1;
}
/* line 259, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_footer.scss */
.directorynav > .column a {
  font-size: 0.6667em;
  line-height: 1.4167;
  font-weight: 400;
  display: inline;
  color: #666666;
  white-space: normal;
}
@media only screen and (max-width: 767px) and (max-device-width: 768px) {
  /* line 259, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_footer.scss */
  .directorynav > .column a {
    font-size: 0.7778em;
    line-height: 2.2857;
    font-weight: 400;
  }
}

/* line 231, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_helpers.scss */
.no-touch .directorynav > .column a:hover, .no-js .directorynav > .column a:hover {
  color: #333333;
}
/* line 269, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_footer.scss */
.directorynav > .column h3 {
  margin: 0;
  padding: 0;
  font-size: 0.6667em;
  line-height: 1.4167;
  font-weight: 600;
  color: #333333;
  letter-spacing: 0;
}
/* line 157, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_helpers.scss */
html.oldie .directorynav > .column h3 {
  font-weight: normal;
  font-family: "Myriad Set Pro 600", "Myriad Set Pro", "Lucida Grande", "Helvetica Neue", "Helvetica", "Arial", "Verdana", "sans-serif";
}
/* line 157, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_helpers.scss */
html.oldie[lang=ja-JP] .directorynav > .column h3 {
  font-family: "Apple TP 600", "Apple TP", "Helvetica Neue", "Helvetica", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "Arial", "Verdana", "sans-serif";
}
/* line 157, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_helpers.scss */
html.oldie[lang=zh-CN] .directorynav > .column h3 {
  font-family: "PingHei 600", "PingHei", "Helvetica Neue", "Helvetica", "Arial", "Verdana", "sans-serif";
}
/* line 157, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_helpers.scss */
html.oldie[lang=zh-TW] .directorynav > .column h3 {
  font-family: "MHei 600", "MHei", "Helvetica Neue", "Helvetica", "Arial", "Verdana", "sans-serif";
}
/* line 157, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_helpers.scss */
html.oldie[lang=zh-HK] .directorynav > .column h3 {
  font-family: "MHei 600", "MHei", "Helvetica Neue", "Helvetica", "Arial", "Verdana", "sans-serif";
}
/* line 157, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_helpers.scss */
html.oldie[lang=th-TH] .directorynav > .column h3 {
  font-family: "Sukhumvit Set 600", "Sukhumvit Set", "Helvetica Neue", "Helvetica", "Arial", "Verdana", "sans-serif";
}
/* line 157, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_helpers.scss */
html.oldie[lang=ko-KR] .directorynav > .column h3 {
  font-family: "Yoon Gothic 600", "Yoon Gothic", "Helvetica Neue", "Helvetica", "Dotum", "Arial", "Verdana", "sans-serif";
}
@media only screen and (max-width: 767px) and (max-device-width: 768px) {
  /* line 269, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_footer.scss */
  .directorynav > .column h3 {
    font-size: 0.7778em;
    line-height: 2.2857;
    font-weight: 400;
  }
}

@media only screen and (max-width: 767px) and (max-device-width: 768px) {
  /* line 281, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_footer.scss */
  .directorynav {
    margin-bottom: 0;
  }
  /* line 286, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_footer.scss */
  .directorynav > .column label {
    -webkit-tap-highlight-color: transparent;
  }
  /* line 290, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_footer.scss */
  .directorynav > .column h3 {
    border-top: 1px solid #e3e3e3;
  }
  /* line 294, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_footer.scss */
  .directorynav > .column h3, .directorynav > .column li a {
    position: relative;
    padding: 0.2222em 0.3333em;
  }
  /* line 299, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_footer.scss */
  .directorynav > .column h3:after {
    content: "+";
    float: right;
    padding: 0.45em 0.4444em;
    font-size: 1.1111em;
    font-weight: 200;
    line-height: 1;
    -webkit-transform: rotate(0deg) scale(0.9);
        -ms-transform: rotate(0deg) scale(0.9);
            transform: rotate(0deg) scale(0.9);
    -webkit-transition: -webkit-transform 0.3s ease-out;
            transition: transform 0.3s ease-out;
    -webkit-transform-origin: center center;
        -ms-transform-origin: center center;
            transform-origin: center center;
  }
  /* line 312, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_footer.scss */
  .directorynav > .column li {
    -webkit-transform: translateY(-120px);
        -ms-transform: translateY(-120px);
            transform: translateY(-120px);
    opacity: 0;
    -webkit-transition: opacity 0.3s ease-in, -webkit-transform 0.3s ease-out;
            transition: opacity 0.3s ease-in, transform 0.3s ease-out;
  }
  /* line 319, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_footer.scss */
  .directorynav > .column ul {
    text-indent: 1em;
    padding-bottom: 0;
    max-height: 0;
    overflow: hidden;
    padding: 0;
  }
  /* line 327, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_footer.scss */
  .directorynav > .column input:checked ~ ul {
    max-height: 100%;
  }
  /* line 330, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_footer.scss */
  .directorynav > .column input:checked ~ ul li {
    opacity: 1;
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
  }
  /* line 336, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_footer.scss */
  .directorynav > .column input:checked + label h3 {
    font-weight: 600;
  }
  /* line 339, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_footer.scss */
  .directorynav > .column input:checked + label h3:before {
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    content: "";
    height: 1.1111em;
    z-index: 1;
    background: -webkit-linear-gradient(#f2f2f2 30%, rgba(242, 242, 242, 0) 80%);
    background: linear-gradient(#f2f2f2 30%, rgba(242, 242, 242, 0) 80%);
  }
  /* line 350, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_footer.scss */
  .directorynav > .column input:checked + label h3:after {
    -webkit-transform: rotate(45deg) scale(1);
        -ms-transform: rotate(45deg) scale(1);
            transform: rotate(45deg) scale(1);
  }
}
/* line 359, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_footer.scss */
.directorynav-subcol + .directorynav-subcol {
  margin-top: 1.1667em;
}
@media only screen and (max-width: 767px) and (max-device-width: 768px) {
  /* line 359, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_footer.scss */
  .directorynav-subcol + .directorynav-subcol {
    margin-top: 0;
  }
}

/* line 375, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_footer.scss */
.footer-shop,
.footer-links,
.footer-sosumi {
  font-size: 0.6667em;
  line-height: 1.3333;
  font-weight: 400;
  width: auto;
  float: left;
  margin-top: 0;
  margin-bottom: 0.6667em;
  margin-right: 0.5em;
}

/* line 386, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_footer.scss */
p.footer-shop {
  margin-bottom: 0.6667em;
}

/* line 390, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_footer.scss */
.footer-links {
  float: right;
}

/* line 394, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_footer.scss */
.footer-education + .footer-links {
  margin-left: 0;
  float: left;
}

/* line 404, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_footer.scss */
.footer-sosumi {
  width: 100%;
}
/* line 406, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_footer.scss */
.footer-sosumi > p {
  margin-right: 0.5em;
}

/* line 411, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_footer.scss */
.footer-sosumi > p,
.footer-sosumi > ul,
.footer-sosumi > ul > li {
  display: inline;
  margin-left: 0;
  margin-top: 0;
}
/* line 418, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_footer.scss */
.footer-sosumi > p > a,
.footer-sosumi > ul > a,
.footer-sosumi > ul > li > a {
  padding: 0 0.5em 0 0.6667em;
  border-left: 1px solid #e3e3e3;
  white-space: nowrap;
}
/* line 424, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_footer.scss */
.footer-sosumi > p:first-child > a,
.footer-sosumi > ul:first-child > a,
.footer-sosumi > ul > li:first-child > a {
  border-left: none;
  padding-left: 0;
}

/* line 430, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_footer.scss */
.footer-links > li {
  display: inline-block;
  margin-left: 0;
}
/* line 157, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_helpers.scss */
html.oldie .footer-links > li {
  display: inline;
  zoom: 1;
}
/* line 435, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_footer.scss */
.footer-links > li > a {
  padding: 0 0.5em 0 0;
  margin-right: 0.3333em;
  border-right: 1px solid #e3e3e3;
  white-space: nowrap;
}
/* line 441, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_footer.scss */
.footer-links > li > a.choose {
  border-right: none;
  margin-right: 0;
  padding-right: 0;
  position: relative;
  padding-left: 16px;
}
/* line 157, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_helpers.scss */
html.oldie .footer-links > li > a.choose {
  display: inline;
  zoom: 1;
}
/* line 157, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_helpers.scss */
html.oldie .footer-links > li > a.choose {
  height: .8em;
}
/* line 453, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_footer.scss */
.footer-links > li > a.choose > img {
  position: absolute;
  left: 0;
  top: -3px;
}

@media only screen and (max-width: 767px) and (max-device-width: 768px) {
  /* line 463, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_footer.scss */
  .footer-links {
    float: left;
    margin-left: 0;
  }
}
/* line 480, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_footer.scss */
html.oldie .footer-links {
  white-space: nowrap;
}
/* line 599, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_footer.scss */
.footer-white {
  background: white;
}
/* line 508, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_footer.scss */
.footer-white .footer-global {
  color: #999999;
}
/* line 511, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_footer.scss */
.footer-white .footer-global a {
  color: #666666;
}
/* line 231, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_helpers.scss */
.no-touch .footer-white .footer-global a:hover, .no-js .footer-white .footer-global a:hover {
  color: #333333;
}
/* line 520, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_footer.scss */
.footer-white .footer-breadory {
  border-color: #e3e3e3;
}
/* line 523, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_footer.scss */
.footer-white .footer-breadory:after {
  background: white;
}
/* line 528, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_footer.scss */
.footer-white .breadcrumbs {
  color: #666666;
}
/* line 532, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_footer.scss */
.footer-white .breadcrumbs > li a {
  color: #666666;
}
/* line 231, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_helpers.scss */
.no-touch .footer-white .breadcrumbs > li a:hover, .no-js .footer-white .breadcrumbs > li a:hover {
  color: #333333;
}
/* line 539, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_footer.scss */
.footer-white .breadcrumbs > li:before {
  color: #e3e3e3;
}
/* line 547, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_footer.scss */
.footer-white .directorynav a {
  color: #666666;
}
/* line 231, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_helpers.scss */
.no-touch .footer-white .directorynav a:hover, .no-js .footer-white .directorynav a:hover {
  color: #333333;
}
/* line 554, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_footer.scss */
.footer-white .directorynav h3 {
  color: #333333;
}
/* line 563, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_footer.scss */
.footer-white .footer-links > li > a,
.footer-white .footer-sosumi > p > a,
.footer-white .footer-sosumi > ul > a,
.footer-white .footer-sosumi > ul > li > a {
  border-color: #e3e3e3;
}
/* line 567, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_footer.scss */
.footer-white .footer-links > li:first-child > a,
.footer-white .footer-sosumi > p:first-child > a,
.footer-white .footer-sosumi > ul:first-child > a,
.footer-white .footer-sosumi > ul > li:first-child > a {
  border-left: none;
}
@media only screen and (max-width: 767px) and (max-device-width: 768px) {
  /* line 574, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_footer.scss */
  .footer-white .directorynav > .column {
    border-color: #e3e3e3;
  }
  /* line 579, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_footer.scss */
  .footer-white .directorynav > .column input:checked + label h3:before {
    background: -webkit-linear-gradient(white 30%, rgba(255, 255, 255, 0) 80%);
    background: linear-gradient(white 30%, rgba(255, 255, 255, 0) 80%);
  }
}

/* line 588, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_footer.scss */
.footer-white .breadcrumbs-home {
  background: white;
}
@media only screen and (max-width: 767px) and (max-device-width: 768px) {
  /* line 592, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/modules/_footer.scss */
  .footer-white .breadcrumbs-home:after {
    background-image: -webkit-linear-gradient(left, white 10%, rgba(255, 255, 255, 0));
    background-image: linear-gradient(to right, white 10%, rgba(255, 255, 255, 0));
  }
}

/* line 4, src/scss/shared/_project.scss */
html {
  width: 100%;
  height: 100%;
}

/* line 8, src/scss/shared/_project.scss */
body {
  min-width: 1024px;
  min-height: 100%;
}
/* line 15, src/scss/shared/_project.scss */
body.oldie .buystrip h4, body.oldie .buystrip h5, body.oldie .buystrip p {
  color: #333333;
}
/* line 18, src/scss/shared/_project.scss */
body.oldie .buystrip .block-link {
  color: #0088cc;
}
/* line 23, src/scss/shared/_project.scss */
body.oldie .buystrip .buystrip-hero .buystrip-product-block {
  padding-right: 220px;
  display: block;
  float: right;
}
/* line 27, src/scss/shared/_project.scss */
body.oldie .buystrip .buystrip-hero .buystrip-product {
  margin-left: 250px;
  display: block;
  float: left;
}
/* line 33, src/scss/shared/_project.scss */
body.oldie .buystrip .buystrip-blocks .column {
  float: left;
}
/* line 38, src/scss/shared/_project.scss */
body.oldie .footer-wrapper .breadcrumbs li {
  float: left;
}
/* line 41, src/scss/shared/_project.scss */
body.oldie .footer-wrapper .footer-breadory {
  zoom: 1;
}
/* line 44, src/scss/shared/_project.scss */
body.oldie .footer-wrapper .gf-buy {
  clear: both;
}
/* line 47, src/scss/shared/_project.scss */
body.oldie .footer-wrapper .gf-links {
  float: right;
}
/* line 49, src/scss/shared/_project.scss */
body.oldie .footer-wrapper .gf-links li {
  float: left;
}

/* line 56, src/scss/shared/_project.scss */
.section {
  min-width: 1024px;
  overflow: hidden;
}
/* line 63, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_helpers.scss */
.section:before, .section:after {
  content: " ";
  display: table;
}
/* line 68, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_helpers.scss */
.section:after {
  clear: both;
}
/* line 157, /Users/jcohen/Development/sandbox/us/internal/sites/ipad/business/home/node_modules/grunt-ac-toolkit/node_modules/ac-toolkit/src/toolkit/core/_helpers.scss */
html.oldie .section {
  zoom: 1;
}
/* line 61, src/scss/shared/_project.scss */
.section .section-content {
  width: 980px;
  margin-left: auto;
  margin-right: auto;
}

/* line 67, src/scss/shared/_project.scss */
.section-border {
  width: 980px;
  height: 1px;
  background: #d6d6d6;
  margin: 90px auto;
}

/* line 74, src/scss/shared/_project.scss */
.centered-text {
  text-align: center;
}

/* line 77, src/scss/shared/_project.scss */
.border-bottom {
  border-bottom: 1px solid #ddd;
}

/* line 80, src/scss/shared/_project.scss */
.localnav-title {
  letter-spacing: -1px;
}

/* line 83, src/scss/shared/_project.scss */
.localnav-links {
  font-size: 0.7778em;
}
/* line 85, src/scss/shared/_project.scss */
.localnav-links a {
  color: #333333;
}
/* line 87, src/scss/shared/_project.scss */
.localnav-links a:hover {
  color: #0088cc;
  text-decoration: none;
}
/* line 91, src/scss/shared/_project.scss */
.localnav-links a.button {
  color: white;
}
/* line 95, src/scss/shared/_project.scss */
.localnav-links .current {
  color: #999999;
}

/* line 100, src/scss/shared/_project.scss */
.buystrip .buystrip-product-block {
  margin-top: 32px;
}
/* line 115, src/scss/shared/_project.scss */
.buystrip .buystrip-block-call {
  margin: 40px 0 -32px;
}
/* line 121, src/scss/shared/_project.scss */
.buystrip p.buystrip-block-copy {
  font-size: 14px;
}

/* line 130, src/scss/shared/_project.scss */
.ph-wrapper {
  background: rgba(255, 255, 255, 0.95);
  top: 0;
  z-index: 9000;
  position: -webkit-sticky;
  position: -moz-sticky;
  position: -ms-sticky;
  position: -o-sticky;
  position: sticky;
}

/* line 140, src/scss/shared/_project.scss */
.sticky .ph-wrapper {
  border-bottom: 1px solid #d6d6d6;
}

/* line 144, src/scss/shared/_project.scss */
.localnav {
  position: relative;
  margin-top: 0;
  padding-top: 1em;
}

/* line 149, src/scss/shared/_project.scss */
.sticky .ph-wrapper .localnav {
  border-bottom: none;
}

@media only screen and (max-width: 767px) and (max-device-width: 768px) {
  /* line 154, src/scss/shared/_project.scss */
  .ph-wrapper {
    top: -10px;
    padding-top: 10px;
  }
}
/* line 5, src/scss/_overview.scss */
.page-overview .intro-b {
  color: #666666;
}
/* line 6, src/scss/_overview.scss */
.page-overview .swatch-caption {
  color: #666666;
}
/* line 7, src/scss/_overview.scss */
.page-overview .swatch-page {
  color: white;
}
/* line 9, src/scss/_overview.scss */
.page-overview .hero {
  padding-top: 60px;
}
/* line 11, src/scss/_overview.scss */
.page-overview .hero h1 {
  letter-spacing: -4px;
  margin-bottom: 24px;
}
/* line 15, src/scss/_overview.scss */
.page-overview .hero h6 {
  position: relative;
  z-index: 2;
  line-height: 1.25em;
}
/* line 22, src/scss/_overview.scss */
.page-overview .hero-image-wrapper {
  margin-top: -17px;
  height: 596px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
/* line 29, src/scss/_overview.scss */
.page-overview .hero-image-wrapper .hero-image {
  background-repeat: no-repeat;
  background-size: 2132px 1224px;
  height: 1224px;
  width: 2132px;
  background-image: url("http://images.apple.com/v/ipad/business/home/d/images/ipadhero_large.jpg");
  position: absolute;
  left: 50%;
  margin-left: -1066px;
}
@media print, only screen and (-webkit-min-device-pixel-ratio: 1.5), screen and (min-resolution: 144dpi), screen and (min-resolution: 144dppx) {
  /* line 29, src/scss/_overview.scss */
  .page-overview .hero-image-wrapper .hero-image {
    background-image: url("http://images.apple.com/v/ipad/business/home/d/images/ipadhero_large_2x.jpg");
  }
}
/* line 37, src/scss/_overview.scss */
.page-overview .band-gallery-apit {
  background-repeat: no-repeat;
  background-size: 254px 250px;
  height: 250px;
  width: 254px;
  background-image: url("http://images.apple.com/v/ipad/business/home/d/images/programs_icons_large.png");
}
@media print, only screen and (-webkit-min-device-pixel-ratio: 1.5), screen and (min-resolution: 144dpi), screen and (min-resolution: 144dppx) {
  /* line 37, src/scss/_overview.scss */
  .page-overview .band-gallery-apit {
    background-image: url("http://images.apple.com/v/ipad/business/home/d/images/programs_icons_large_2x.png");
  }
}
/* line 41, src/scss/_overview.scss */
.page-overview .user-experience-image {
  background-repeat: no-repeat;
  background-size: 626px 658px;
  height: 658px;
  width: 626px;
  background-image: url("http://images.apple.com/v/ipad/business/home/d/images/user_experience_large.jpg");
  margin-left: 22px;
}
@media print, only screen and (-webkit-min-device-pixel-ratio: 1.5), screen and (min-resolution: 144dpi), screen and (min-resolution: 144dppx) {
  /* line 41, src/scss/_overview.scss */
  .page-overview .user-experience-image {
    background-image: url("http://images.apple.com/v/ipad/business/home/d/images/user_experience_large_2x.jpg");
  }
}
/* line 46, src/scss/_overview.scss */
.page-overview .transform-image {
  background-repeat: no-repeat;
  background-size: 837px 927px;
  height: 927px;
  width: 837px;
  background-image: url("http://images.apple.com/v/ipad/business/home/d/images/features_large.jpg");
  margin-left: -330px;
}
@media print, only screen and (-webkit-min-device-pixel-ratio: 1.5), screen and (min-resolution: 144dpi), screen and (min-resolution: 144dppx) {
  /* line 46, src/scss/_overview.scss */
  .page-overview .transform-image {
    background-image: url("http://images.apple.com/v/ipad/business/home/d/images/features_large_2x.jpg");
  }
}
/* line 51, src/scss/_overview.scss */
.page-overview .triple-device-image {
  background-repeat: no-repeat;
  background-size: 609px 743px;
  height: 743px;
  width: 609px;
  background-image: url("http://images.apple.com/v/ipad/business/home/d/images/new_it_large.jpg");
  margin: -25px 0 0 22px;
}
@media print, only screen and (-webkit-min-device-pixel-ratio: 1.5), screen and (min-resolution: 144dpi), screen and (min-resolution: 144dppx) {
  /* line 51, src/scss/_overview.scss */
  .page-overview .triple-device-image {
    background-image: url("http://images.apple.com/v/ipad/business/home/d/images/new_it_large_2x.jpg");
  }
}
/* line 56, src/scss/_overview.scss */
.page-overview .security-image {
  background-repeat: no-repeat;
  background-size: 579px 394px;
  height: 394px;
  width: 579px;
  background-image: url("http://images.apple.com/v/ipad/business/home/d/images/security_large.jpg");
  margin: 6px 0 0 -77px;
}
@media print, only screen and (-webkit-min-device-pixel-ratio: 1.5), screen and (min-resolution: 144dpi), screen and (min-resolution: 144dppx) {
  /* line 56, src/scss/_overview.scss */
  .page-overview .security-image {
    background-image: url("http://images.apple.com/v/ipad/business/home/d/images/security_large_2x.jpg");
  }
}
/* line 61, src/scss/_overview.scss */
.page-overview .dep-icon-image {
  background-repeat: no-repeat;
  background-size: 80px 80px;
  height: 80px;
  width: 80px;
  background-image: url("http://images.apple.com/v/ipad/business/home/d/images/dep_icon_large.png");
}
@media print, only screen and (-webkit-min-device-pixel-ratio: 1.5), screen and (min-resolution: 144dpi), screen and (min-resolution: 144dppx) {
  /* line 61, src/scss/_overview.scss */
  .page-overview .dep-icon-image {
    background-image: url("http://images.apple.com/v/ipad/business/home/d/images/dep_icon_large_2x.png");
  }
}
/* line 64, src/scss/_overview.scss */
.page-overview .productivity-image {
  background-repeat: no-repeat;
  background-size: 577px 905px;
  height: 905px;
  width: 577px;
  background-image: url("http://images.apple.com/v/ipad/business/home/d/images/productivity_large.jpg");
  margin: -23px 0 0 -70px;
}
@media print, only screen and (-webkit-min-device-pixel-ratio: 1.5), screen and (min-resolution: 144dpi), screen and (min-resolution: 144dppx) {
  /* line 64, src/scss/_overview.scss */
  .page-overview .productivity-image {
    background-image: url("http://images.apple.com/v/ipad/business/home/d/images/productivity_large_2x.jpg");
  }
}
/* line 68, src/scss/_overview.scss */
.page-overview .apps-image {
  background-repeat: no-repeat;
  background-size: 985px 778px;
  height: 778px;
  width: 985px;
  background-image: url("http://images.apple.com/v/ipad/business/home/d/images/apps_large.jpg");
  margin-left: -40px;
}
@media print, only screen and (-webkit-min-device-pixel-ratio: 1.5), screen and (min-resolution: 144dpi), screen and (min-resolution: 144dppx) {
  /* line 68, src/scss/_overview.scss */
  .page-overview .apps-image {
    background-image: url("http://images.apple.com/v/ipad/business/home/d/images/apps_large_2x.jpg");
  }
}
/* line 72, src/scss/_overview.scss */
.page-overview .vpp-icon-image {
  background-repeat: no-repeat;
  background-size: 80px 81px;
  height: 81px;
  width: 80px;
  background-image: url("http://images.apple.com/v/ipad/business/home/d/images/vpp_icon_large.png");
}
@media print, only screen and (-webkit-min-device-pixel-ratio: 1.5), screen and (min-resolution: 144dpi), screen and (min-resolution: 144dppx) {
  /* line 72, src/scss/_overview.scss */
  .page-overview .vpp-icon-image {
    background-image: url("http://images.apple.com/v/ipad/business/home/d/images/vpp_icon_large_2x.png");
  }
}
/* line 76, src/scss/_overview.scss */
.page-overview .daiwa-image {
  background-repeat: no-repeat;
  background-size: 980px 500px;
  height: 500px;
  width: 980px;
  background-image: url("http://images.apple.com/v/ipad/business/home/d/images/daiwa_large.jpg");
}
@media print, only screen and (-webkit-min-device-pixel-ratio: 1.5), screen and (min-resolution: 144dpi), screen and (min-resolution: 144dppx) {
  /* line 76, src/scss/_overview.scss */
  .page-overview .daiwa-image {
    background-image: url("http://images.apple.com/v/ipad/business/home/d/images/daiwa_large_2x.jpg");
  }
}
/* line 79, src/scss/_overview.scss */
.page-overview .ccfd-image {
  background-repeat: no-repeat;
  background-size: 980px 500px;
  height: 500px;
  width: 980px;
  background-image: url("http://images.apple.com/v/ipad/business/home/d/images/ccfd_large.jpg");
}
@media print, only screen and (-webkit-min-device-pixel-ratio: 1.5), screen and (min-resolution: 144dpi), screen and (min-resolution: 144dppx) {
  /* line 79, src/scss/_overview.scss */
  .page-overview .ccfd-image {
    background-image: url("http://images.apple.com/v/ipad/business/home/d/images/ccfd_large_2x.jpg");
  }
}
/* line 82, src/scss/_overview.scss */
.page-overview .mayo-image {
  background-repeat: no-repeat;
  background-size: 980px 500px;
  height: 500px;
  width: 980px;
  background-image: url("http://images.apple.com/v/ipad/business/home/d/images/mayo_large.jpg");
}
@media print, only screen and (-webkit-min-device-pixel-ratio: 1.5), screen and (min-resolution: 144dpi), screen and (min-resolution: 144dppx) {
  /* line 82, src/scss/_overview.scss */
  .page-overview .mayo-image {
    background-image: url("http://images.apple.com/v/ipad/business/home/d/images/mayo_large_2x.jpg");
  }
}
/* line 85, src/scss/_overview.scss */
.page-overview .eaton-image {
  background-repeat: no-repeat;
  background-size: 980px 500px;
  height: 500px;
  width: 980px;
  background-image: url("http://images.apple.com/v/ipad/business/home/d/images/eaton_large.jpg");
}
@media print, only screen and (-webkit-min-device-pixel-ratio: 1.5), screen and (min-resolution: 144dpi), screen and (min-resolution: 144dppx) {
  /* line 85, src/scss/_overview.scss */
  .page-overview .eaton-image {
    background-image: url("http://images.apple.com/v/ipad/business/home/d/images/eaton_large_2x.jpg");
  }
}
/* line 88, src/scss/_overview.scss */
.page-overview .sonic-image {
  background-repeat: no-repeat;
  background-size: 980px 500px;
  height: 500px;
  width: 980px;
  background-image: url("http://images.apple.com/v/ipad/business/home/d/images/sonic_large.jpg");
}
@media print, only screen and (-webkit-min-device-pixel-ratio: 1.5), screen and (min-resolution: 144dpi), screen and (min-resolution: 144dppx) {
  /* line 88, src/scss/_overview.scss */
  .page-overview .sonic-image {
    background-image: url("http://images.apple.com/v/ipad/business/home/d/images/sonic_large_2x.jpg");
  }
}
/* line 92, src/scss/_overview.scss */
.page-overview .learnmore-image {
  background-repeat: no-repeat;
  background-size: 434px 296px;
  height: 296px;
  width: 434px;
  background-image: url("http://images.apple.com/v/ipad/business/home/d/images/learnmore_large.jpg");
  margin: -32px 0 0 59px;
}
@media print, only screen and (-webkit-min-device-pixel-ratio: 1.5), screen and (min-resolution: 144dpi), screen and (min-resolution: 144dppx) {
  /* line 92, src/scss/_overview.scss */
  .page-overview .learnmore-image {
    background-image: url("http://images.apple.com/v/ipad/business/home/d/images/learnmore_large_2x.jpg");
  }
}
/* line 98, src/scss/_overview.scss */
.page-overview .buystrip-product {
  background-repeat: no-repeat;
  background-size: 172px 156px;
  height: 156px;
  width: 172px;
  background-image: url("http://images.apple.com/v/ipad/business/home/d/images/compare_ipad_large.png");
}
@media print, only screen and (-webkit-min-device-pixel-ratio: 1.5), screen and (min-resolution: 144dpi), screen and (min-resolution: 144dppx) {
  /* line 98, src/scss/_overview.scss */
  .page-overview .buystrip-product {
    background-image: url("http://images.apple.com/v/ipad/business/home/d/images/compare_ipad_large_2x.png");
  }
}
/* line 101, src/scss/_overview.scss */
.page-overview .icon-shop {
  background-repeat: no-repeat;
  background-size: 44px 44px;
  height: 44px;
  width: 44px;
  background-image: url("http://images.apple.com/v/ipad/business/home/d/images/buystrip_shop_large.png");
}
@media print, only screen and (-webkit-min-device-pixel-ratio: 1.5), screen and (min-resolution: 144dpi), screen and (min-resolution: 144dppx) {
  /* line 101, src/scss/_overview.scss */
  .page-overview .icon-shop {
    background-image: url();
  }
}
/* line 104, src/scss/_overview.scss */
.page-overview .icon-store {
  background-repeat: no-repeat;
  background-size: 44px 47px;
  height: 47px;
  width: 44px;
  background-image: url("http://images.apple.com/v/ipad/business/home/d/images/buystrip_store_large.png");
}
@media print, only screen and (-webkit-min-device-pixel-ratio: 1.5), screen and (min-resolution: 144dpi), screen and (min-resolution: 144dppx) {
  /* line 104, src/scss/_overview.scss */
  .page-overview .icon-store {
    background-image: url();
  }
}
/* line 107, src/scss/_overview.scss */
.page-overview .icon-call {
  background-repeat: no-repeat;
  background-size: 44px 44px;
  height: 44px;
  width: 44px;
  background-image: url("http://images.apple.com/v/ipad/business/home/d/images/buystrip_call_large.png");
}
@media print, only screen and (-webkit-min-device-pixel-ratio: 1.5), screen and (min-resolution: 144dpi), screen and (min-resolution: 144dppx) {
  /* line 107, src/scss/_overview.scss */
  .page-overview .icon-call {
    background-image: url();
  }
}
/* line 110, src/scss/_overview.scss */
.page-overview .icon-app {
  background-repeat: no-repeat;
  background-size: 44px 44px;
  height: 44px;
  width: 44px;
  background-image: url("http://images.apple.com/v/ipad/business/home/d/images/buystrip_app_large.jpg");
}
@media print, only screen and (-webkit-min-device-pixel-ratio: 1.5), screen and (min-resolution: 144dpi), screen and (min-resolution: 144dppx) {
  /* line 110, src/scss/_overview.scss */
  .page-overview .icon-app {
    background-image: url("http://images.apple.com/v/ipad/business/home/d/images/buystrip_app_large_2x.jpg");
  }
}
/* line 113, src/scss/_overview.scss */
.page-overview .icon_download {
  background-repeat: no-repeat;
  background-size: 17px 17px;
  height: 17px;
  width: 17px;
  background-image: url("http://images.apple.com/v/ipad/business/home/d/images/download_icon_large.png");
  top: 2px;
  position: relative;
  z-index: 1;
  padding-right: 8px;
  vertical-align: -1px;
  display: inline-block;
  *display: inline;
}
@media print, only screen and (-webkit-min-device-pixel-ratio: 1.5), screen and (min-resolution: 144dpi), screen and (min-resolution: 144dppx) {
  /* line 113, src/scss/_overview.scss */
  .page-overview .icon_download {
    background-image: url("http://images.apple.com/v/ipad/business/home/d/images/download_icon_large_2x.png");
  }
}
/* line 123, src/scss/_overview.scss */
.page-overview .icon_external {
  background-repeat: no-repeat;
  background-size: 17px 17px;
  height: 17px;
  width: 17px;
  background-image: url("http://images.apple.com/v/ipad/business/home/d/images/external_icon_large.png");
  top: 2px;
  position: relative;
  z-index: 1;
  padding-right: 8px;
  vertical-align: -1px;
  display: inline-block;
  *display: inline;
}
@media print, only screen and (-webkit-min-device-pixel-ratio: 1.5), screen and (min-resolution: 144dpi), screen and (min-resolution: 144dppx) {
  /* line 123, src/scss/_overview.scss */
  .page-overview .icon_external {
    background-image: url("http://images.apple.com/v/ipad/business/home/d/images/external_icon_large_2x.png");
  }
}
/* line 135, src/scss/_overview.scss */
.page-overview .gallery {
  width: 980px;
  overflow: hidden;
}
/* line 139, src/scss/_overview.scss */
.page-overview .gallery .gallery-view {
  width: 4900px;
}
/* line 143, src/scss/_overview.scss */
.page-overview .gallery .gallery-content {
  float: left;
  position: relative;
  text-align: center;
}
/* line 149, src/scss/_overview.scss */
.page-overview .gallery .headline {
  position: absolute;
  top: 175px;
  width: 980px;
  color: white;
}
/* line 154, src/scss/_overview.scss */
.page-overview .gallery .headline h2 {
  margin-bottom: 10px;
}
/* line 157, src/scss/_overview.scss */
.page-overview .gallery .headline .block-link {
  color: white;
  font-size: 1.65em;
}
/* line 162, src/scss/_overview.scss */
.page-overview .gallery .paddlenav-arrow {
  opacity: 0;
}
/* line 165, src/scss/_overview.scss */
.page-overview .gallery:hover .paddlenav-arrow {
  opacity: .6;
}
/* line 171, src/scss/_overview.scss */
.page-overview .inspiration .dotnav {
  position: relative;
}
/* line 173, src/scss/_overview.scss */
.page-overview .inspiration .dotnav ul {
  position: absolute;
  top: 465px;
  left: 420px;
}
/* line 178, src/scss/_overview.scss */
.page-overview .inspiration .dotnav .dotnav-item {
  background-color: white;
}
/* line 180, src/scss/_overview.scss */
.page-overview .inspiration .dotnav .dotnav-item.current {
  border-color: white;
  background-color: transparent;
}
/* line 188, src/scss/_overview.scss */
.page-overview .band {
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}
/* line 191, src/scss/_overview.scss */
.page-overview .band .gallery-wrapper {
  width: 1024px;
  margin: auto;
}
/* line 197, src/scss/_overview.scss */
.page-overview #band-gallery {
  width: 1024px;
}
/* line 200, src/scss/_overview.scss */
.page-overview #band-gallery .gallery-view {
  width: 5120px;
}
/* line 201, src/scss/_overview.scss */
.page-overview #band-gallery .gallery-content {
  width: 1024px;
  text-align: left;
  min-height: 270px;
}
/* line 206, src/scss/_overview.scss */
.page-overview #band-gallery .gallery-content h3 {
  margin-top: 50px;
  font-size: 35px;
  word-spacing: 2px;
  letter-spacing: -1px;
}
/* line 212, src/scss/_overview.scss */
.page-overview #band-gallery .gallery-content p {
  margin-top: .5em;
  line-height: 28px;
}
/* line 216, src/scss/_overview.scss */
.page-overview #band-gallery .gallery-content .block-link {
  display: block;
  margin-top: .7em;
}
/* line 223, src/scss/_overview.scss */
.page-overview #band-gallery .gallery-content-programs .apple-programs {
  margin: 10px 0 0 35px;
  background-repeat: no-repeat;
  background-size: 254px 250px;
  height: 250px;
  width: 254px;
  background-image: url("http://images.apple.com/v/ipad/business/home/d/images/programs_icons_large.png");
}
@media print, only screen and (-webkit-min-device-pixel-ratio: 1.5), screen and (min-resolution: 144dpi), screen and (min-resolution: 144dppx) {
  /* line 223, src/scss/_overview.scss */
  .page-overview #band-gallery .gallery-content-programs .apple-programs {
    background-image: url("http://images.apple.com/v/ipad/business/home/d/images/programs_icons_large_2x.png");
  }
}
/* line 229, src/scss/_overview.scss */
.page-overview #band-gallery .gallery-content-ios .ios-icon {
  margin-top: 52px;
  background-repeat: no-repeat;
  background-size: 164px 164px;
  height: 164px;
  width: 164px;
  background-image: url("http://images.apple.com/v/ipad/business/home/d/images/ios_icon_large.png");
}
@media print, only screen and (-webkit-min-device-pixel-ratio: 1.5), screen and (min-resolution: 144dpi), screen and (min-resolution: 144dppx) {
  /* line 229, src/scss/_overview.scss */
  .page-overview #band-gallery .gallery-content-ios .ios-icon {
    background-image: url("http://images.apple.com/v/ipad/business/home/d/images/ios_icon_large_2x.png");
  }
}
/* line 234, src/scss/_overview.scss */
.page-overview #band-gallery .gallery-content-ibm {
  /* fallback */
  background-color: #5e95b1;
  background-repeat: repeat-x;
  /* Safari 4-5, Chrome 1-9 */
  background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#5e95b1), to(#bfd5e1));
  /* Safari 5.1, Chrome 10+ */
  background: -webkit-linear-gradient(top, #bfd5e1, #5e95b1);
  /* Firefox 3.6+ */
  /* IE 10 */
  /* Opera 11.10+ */
  text-align: center;
  font-size: 22px;
}
/* line 238, src/scss/_overview.scss */
.page-overview #band-gallery .gallery-content-ibm h6 {
  margin-top: 1em;
  line-height: 1.25em;
}
/* line 241, src/scss/_overview.scss */
.page-overview #band-gallery .gallery-content-ibm h6 a {
  color: #333;
}
/* line 245, src/scss/_overview.scss */
.page-overview #band-gallery .gallery-content-ibm .apple-ibm {
  margin: 40px auto 0;
  background-repeat: no-repeat;
  background-size: 216px 61px;
  height: 61px;
  width: 216px;
  background-image: url("http://images.apple.com/v/ipad/business/home/d/images/apple_ibm_large.png");
}
@media print, only screen and (-webkit-min-device-pixel-ratio: 1.5), screen and (min-resolution: 144dpi), screen and (min-resolution: 144dppx) {
  /* line 245, src/scss/_overview.scss */
  .page-overview #band-gallery .gallery-content-ibm .apple-ibm {
    background-image: url("http://images.apple.com/v/ipad/business/home/d/images/apple_ibm_large_2x.png");
  }
}
/* line 251, src/scss/_overview.scss */
.page-overview #band-gallery .gallery-content-reinvent .enterprise-icon {
  margin-top: 50px;
  background-repeat: no-repeat;
  background-size: 164px 164px;
  height: 164px;
  width: 164px;
  background-image: url("http://images.apple.com/v/ipad/business/home/d/images/enterprise_icon_large.png");
}
@media print, only screen and (-webkit-min-device-pixel-ratio: 1.5), screen and (min-resolution: 144dpi), screen and (min-resolution: 144dppx) {
  /* line 251, src/scss/_overview.scss */
  .page-overview #band-gallery .gallery-content-reinvent .enterprise-icon {
    background-image: url("http://images.apple.com/v/ipad/business/home/d/images/enterprise_icon_large_2x.png");
  }
}
/* line 258, src/scss/_overview.scss */
.page-overview #band-gallery .gallery-content-docs figure {
  margin: 10px 0 0 70px;
}
/* line 261, src/scss/_overview.scss */
.page-overview #band-gallery .gallery-content-docs .enterprise-docs {
  background-repeat: no-repeat;
  background-size: 83px 111px;
  height: 111px;
  width: 83px;
  background-image: url("http://images.apple.com/v/ipad/business/home/d/images/doc_enterprise_large.png");
}
@media print, only screen and (-webkit-min-device-pixel-ratio: 1.5), screen and (min-resolution: 144dpi), screen and (min-resolution: 144dppx) {
  /* line 261, src/scss/_overview.scss */
  .page-overview #band-gallery .gallery-content-docs .enterprise-docs {
    background-image: url("http://images.apple.com/v/ipad/business/home/d/images/doc_enterprise_large_2x.png");
  }
}
/* line 264, src/scss/_overview.scss */
.page-overview #band-gallery .gallery-content-docs .security-docs {
  background-repeat: no-repeat;
  background-size: 83px 111px;
  height: 111px;
  width: 83px;
  background-image: url("http://images.apple.com/v/ipad/business/home/d/images/doc_security_large.png");
}
@media print, only screen and (-webkit-min-device-pixel-ratio: 1.5), screen and (min-resolution: 144dpi), screen and (min-resolution: 144dppx) {
  /* line 264, src/scss/_overview.scss */
  .page-overview #band-gallery .gallery-content-docs .security-docs {
    background-image: url("http://images.apple.com/v/ipad/business/home/d/images/doc_security_large_2x.png");
  }
}
/* line 267, src/scss/_overview.scss */
.page-overview #band-gallery .gallery-content-docs .column {
  margin-top: 70px;
  padding: 0 0 5px;
}
/* line 270, src/scss/_overview.scss */
.page-overview #band-gallery .gallery-content-docs .column p {
  margin: 12px 0 0 5px;
  font-size: 16px;
  line-height: 1.5em;
}
/* line 275, src/scss/_overview.scss */
.page-overview #band-gallery .gallery-content-docs .column a {
  display: block;
  margin-top: .8em;
}
/* line 280, src/scss/_overview.scss */
.page-overview #band-gallery .gallery-content-docs .border-right {
  border-right: 1px solid #e5e5e5;
}
/* line 285, src/scss/_overview.scss */
.page-overview #band-gallery .dotnav {
  position: relative;
}
/* line 287, src/scss/_overview.scss */
.page-overview #band-gallery .dotnav ul {
  position: absolute;
  top: 238px;
  left: 442px;
}
/* line 298, src/scss/_overview.scss */
.page-overview section .section-content {
  padding-top: 82px;
}
/* line 300, src/scss/_overview.scss */
.page-overview section .section-content .heading {
  margin-bottom: 84px;
}
/* line 302, src/scss/_overview.scss */
.page-overview section .section-content .heading h2 {
  font-size: 3em;
  word-spacing: -2px;
}
/* line 306, src/scss/_overview.scss */
.page-overview section .section-content .heading .intro-b {
  font-size: 1.125em;
  line-height: 1.375em;
  margin: 33px auto 16px;
  word-spacing: -2px;
}
/* line 312, src/scss/_overview.scss */
.page-overview section .section-content .heading span {
  font-size: 1.125em;
  line-height: 1.375em;
}
/* line 317, src/scss/_overview.scss */
.page-overview section .section-content h3 {
  font-size: 2em;
  font-weight: 200;
}
/* line 321, src/scss/_overview.scss */
.page-overview section .section-content .intro-b {
  margin-top: 8px;
  margin-bottom: 12px;
  font-size: 1.05em;
  line-height: 1.5em;
}
/* line 327, src/scss/_overview.scss */
.page-overview section .section-content .right-side {
  padding-left: 80px;
}
/* line 330, src/scss/_overview.scss */
.page-overview section .section-content .cta {
  margin: 83px 0;
}
/* line 332, src/scss/_overview.scss */
.page-overview section .section-content .cta figure {
  margin: 3px 0 0 146px;
}
/* line 335, src/scss/_overview.scss */
.page-overview section .section-content .cta .large-8 {
  margin-left: 12px;
}
/* line 339, src/scss/_overview.scss */
.page-overview section .section-content .icon, .page-overview section .section-content .more, .page-overview section .section-content .breadcrumbs-list > li {
  font-size: 1.05em;
  line-height: 1.5em;
}
/* line 346, src/scss/_overview.scss */
.page-overview .business-platform {
  background-color: #f6f6f6;
  padding-bottom: 12px;
}
/* line 350, src/scss/_overview.scss */
.page-overview .business-platform .first-row h3 {
  margin-top: 182px;
}
/* line 354, src/scss/_overview.scss */
.page-overview .business-platform .second-row {
  margin-top: 118px;
}
/* line 356, src/scss/_overview.scss */
.page-overview .business-platform .second-row h3 {
  margin-top: 84px;
}
/* line 365, src/scss/_overview.scss */
.page-overview .ios-it .first-row h3 {
  margin-top: 68px;
}
/* line 369, src/scss/_overview.scss */
.page-overview .ios-it .second-row {
  padding: 95px 0 112px;
}
/* line 374, src/scss/_overview.scss */
.page-overview .productivity {
  background-color: #f6f6f6;
}
/* line 377, src/scss/_overview.scss */
.page-overview .productivity .first-row h3 {
  margin-top: 56px;
}
/* line 381, src/scss/_overview.scss */
.page-overview .productivity .second-row {
  padding: 72px 0 80px;
}
/* line 383, src/scss/_overview.scss */
.page-overview .productivity .second-row .large-5 {
  z-index: 2;
}
/* line 386, src/scss/_overview.scss */
.page-overview .productivity .second-row h3 {
  margin-top: 68px;
}
/* line 393, src/scss/_overview.scss */
.page-overview .inspiration {
  padding-bottom: 90px;
}
/* line 395, src/scss/_overview.scss */
.page-overview .inspiration .heading {
  margin-bottom: 68px !important;
}
/* line 400, src/scss/_overview.scss */
.page-overview .learn-more {
  padding-bottom: 50px;
}
/* line 402, src/scss/_overview.scss */
.page-overview .learn-more .copy {
  margin-top: 30px;
}
/* line 408, src/scss/_overview.scss */
.page-overview.oldie .expanding-wrapper {
  height: 700px;
}
/* line 411, src/scss/_overview.scss */
.page-overview.oldie .expand-arrow-wrapper, .page-overview.oldie .click-to-expand-arrow {
  display: none;
}
/* line 415, src/scss/_overview.scss */
.page-overview.oldie a h3 {
  color: #333333;
}
/* line 418, src/scss/_overview.scss */
.page-overview.oldie .gallery .dotnav {
  position: static;
}
