/*
SCSS variables are information about icon's compiled state, stored under its original file name

.icon-home {
  width: $icon-home-width;
}

The large array-like variables contain all information about a single icon
$icon-home: x y offset_x offset_y width height total_width total_height image_path;

At the bottom of this section, we provide information about the spritesheet itself
$spritesheet: width height image $spritesheet-sprites;
*/
/*! normalize.css v5.0.0 | MIT License | github.com/necolas/normalize.css */
/**
 * 1. Change the default font family in all browsers (opinionated).
 * 2. Correct the line height in all browsers.
 * 3. Prevent adjustments of font size after orientation changes in
 *    IE on Windows Phone and in iOS.
 */
/* Document
   ========================================================================== */
html {
	font-family:              sans-serif;
	/* 1 */
	line-height:              1.15;
	/* 2 */
	-ms-text-size-adjust:     100%;
	/* 3 */
	-webkit-text-size-adjust: 100%;
	/* 3 */ }

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers (opinionated).
 */
body {
	margin: 0; }

/**
 * Add the correct display in IE 9-.
 */
article,
aside,
footer,
header,
nav,
section {
	display: block; }

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
	font-size: 2em;
	margin:    0.67em 0; }

/* Grouping content
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 * 1. Add the correct display in IE.
 */
figcaption,
figure,
main {
	/* 1 */
	display: block; }

/**
 * Add the correct margin in IE 8.
 */
figure {
	margin: 1em 40px; }

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
	box-sizing: content-box;
	/* 1 */
	height:     0;
	/* 1 */
	overflow:   visible;
	/* 2 */ }

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
	font-family: monospace, monospace;
	/* 1 */
	font-size:   1em;
	/* 2 */ }

/* Text-level semantics
   ========================================================================== */
/**
 * 1. Remove the gray background on active links in IE 10.
 * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
 */
a {
	background-color:             transparent;
	/* 1 */
	-webkit-text-decoration-skip: objects;
	/* 2 */ }

/**
 * Remove the outline on focused links when they are also active or hovered
 * in all browsers (opinionated).
 */
a:active,
a:hover {
	outline-width: 0; }

/**
 * 1. Remove the bottom border in Firefox 39-.
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
	border-bottom:   none;
	/* 1 */
	text-decoration: underline;
	/* 2 */
	text-decoration: underline dotted;
	/* 2 */ }

/**
 * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
 */
b,
strong {
	font-weight: inherit; }

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
	font-weight: bolder; }

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
	font-family: monospace, monospace;
	/* 1 */
	font-size:   1em;
	/* 2 */ }

/**
 * Add the correct font style in Android 4.3-.
 */
dfn {
	font-style: italic; }

/**
 * Add the correct background and color in IE 9-.
 */
mark {
	background-color: #FFFF00;
	color:            #000000; }

/**
 * Add the correct font size in all browsers.
 */
small {
	font-size: 80%; }

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
	font-size:      75%;
	line-height:    0;
	position:       relative;
	vertical-align: baseline; }

sub {
	bottom: -0.25em; }

sup {
	top: -0.5em; }

/* Embedded content
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
audio,
video {
	display: inline-block; }

/**
 * Add the correct display in iOS 4-7.
 */
audio:not([controls]) {
	display: none;
	height:  0; }

/**
 * Remove the border on images inside links in IE 10-.
 */
img {
	border-style: none; }

/**
 * Hide the overflow in IE.
 */
svg:not(:root) {
	overflow: hidden; }

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers (opinionated).
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
	font-family: sans-serif;
	/* 1 */
	font-size:   100%;
	/* 1 */
	line-height: 1.15;
	/* 1 */
	margin:      0;
	/* 2 */ }

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
	/* 1 */
	overflow: visible; }

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
	/* 1 */
	text-transform: none; }

/**
 * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
 *    controls in Android 4.
 * 2. Correct the inability to style clickable types in iOS and Safari.
 */
button,
html [type="button"],
[type="reset"],
[type="submit"] {
	-webkit-appearance: button;
	/* 2 */ }

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
	border-style: none;
	padding:      0; }

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
	outline: 1px dotted ButtonText; }

/**
 * Change the border, margin, and padding in all browsers (opinionated).
 */
fieldset {
	border:  1px solid #C0C0C0;
	margin:  0 2px;
	padding: 0.35em 0.625em 0.75em; }

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
	box-sizing:  border-box;
	/* 1 */
	color:       inherit;
	/* 2 */
	display:     table;
	/* 1 */
	max-width:   100%;
	/* 1 */
	padding:     0;
	/* 3 */
	white-space: normal;
	/* 1 */ }

/**
 * 1. Add the correct display in IE 9-.
 * 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
	display:        inline-block;
	/* 1 */
	vertical-align: baseline;
	/* 2 */ }

/**
 * Remove the default vertical scrollbar in IE.
 */
textarea {
	overflow: auto; }

/**
 * 1. Add the correct box sizing in IE 10-.
 * 2. Remove the padding in IE 10-.
 */
[type="checkbox"],
[type="radio"] {
	box-sizing: border-box;
	/* 1 */
	padding:    0;
	/* 2 */ }

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
	height: auto; }

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
	-webkit-appearance: textfield;
	/* 1 */
	outline-offset:     -2px;
	/* 2 */ }

/**
 * Remove the inner padding and cancel buttons in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none; }

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
	-webkit-appearance: button;
	/* 1 */
	font:               inherit;
	/* 2 */ }

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in IE 9-.
 * 1. Add the correct display in Edge, IE, and Firefox.
 */
details,
menu {
	display: block; }

/*
 * Add the correct display in all browsers.
 */
summary {
	display: list-item; }

/* Scripting
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
canvas {
	display: inline-block; }

/**
 * Add the correct display in IE.
 */
template {
	display: none; }

/* Hidden
   ========================================================================== */
/**
 * Add the correct display in IE 10-.
 */
[hidden] {
	display: none; }

html {
	box-sizing: border-box; }

*, *:before, *:after {
	box-sizing: inherit; }

html.modal-open {
	overflow: hidden; }

body {
	font-size:  16px;
	color:      #231720;
	overflow-x: hidden; }

p, li {
	line-height: 140%; }

a {
	text-decoration: none;
	color:           #7DB637; }

a:hover {
	color: #F89728; }

/*
SCSS variables are information about icon's compiled state, stored under its original file name

.icon-home {
  width: $icon-home-width;
}

The large array-like variables contain all information about a single icon
$icon-home: x y offset_x offset_y width height total_width total_height image_path;

At the bottom of this section, we provide information about the spritesheet itself
$spritesheet: width height image $spritesheet-sprites;
*/
@import url("https://fonts.googleapis.com/css?family=Open+Sans:300,400,400i,600,600i,700");
* {
	-webkit-font-smoothing:  antialiased;
	-moz-osx-font-smoothing: grayscale; }

body {
	font-family: 'Open Sans', sans-serif; }

h1, h2, h3, h4, h5, h6 {
	margin-top: 40px; }

h1 {
	font-size:   28px;
	font-weight: 600; }

h2 {
	font-size:   24px;
	font-weight: 400; }

h3 {
	font-size:   20px;
	font-weight: 400; }

h4 {
	font-size:     18px;
	font-weight:   600;
	margin-bottom: 15px; }

h5 {
	font-size:     17px;
	font-weight:   400;
	margin-bottom: 15px; }

h6 {
	font-size:     14px;
	font-weight:   600;
	margin-bottom: 5px; }

h4 + p,
h4 + strong p,
h4 + em strong p,
h4 + strong em p,
h4 + em p, h5 + p,
h5 + strong p,
h5 + em strong p,
h5 + strong em p,
h5 + em p, h6 + p,
h6 + strong p,
h6 + em strong p,
h6 + strong em p,
h6 + em p {
	margin-top: 0; }

strong {
	font-weight: 600; }

dl dt {
	font-weight: 600; }

dl dt:not(:first-child) {
	margin-top: 40px; }

dl dd {
	margin-left: 0;
	margin-top:  10px; }

/*
  Width Sections. A more simple alternative to a grid.
*/
.full-width-section,
.reduced-width-section,
.extended-width-shadow-section {
	position: relative;
	height:   100%; }

.full-width-section::after,
.reduced-width-section::after,
.extended-width-shadow-section::after {
	clear:   both;
	content: "";
	display: table; }

.full-width-section {
	width:     100%;
	max-width: 1180px;
	margin:    0 auto; }

.reduced-width-section {
	width:     100%;
	max-width: 860px;
	margin:    0 auto; }

.extended-width-section {
	position:         relative;
	background-color: #FFFFFF;
	width:            100%;
	max-width:        1300px;
	margin:           0 auto;
	z-index:          0; }

.extended-width-section::after {
	clear:   both;
	content: "";
	display: table; }

.section-shadow {
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25); }

.grid-section {
	width:       calc(100% + 40px);
	margin-left: -20px; }

.grid-section::after {
	clear:   both;
	content: "";
	display: table; }

.column-1 {
	float:   left;
	padding: 0 20px;
	width:   8.33333%; }

.column-2 {
	float:   left;
	padding: 0 20px;
	width:   16.66667%; }

.column-3 {
	float:   left;
	padding: 0 20px;
	width:   25%; }

.column-4 {
	float:   left;
	padding: 0 20px;
	width:   33.33333%; }

.column-5 {
	float:   left;
	padding: 0 20px;
	width:   41.66667%; }

.column-6 {
	float:   left;
	padding: 0 20px;
	width:   50%; }

.column-7 {
	float:   left;
	padding: 0 20px;
	width:   58.33333%; }

.column-8 {
	float:   left;
	padding: 0 20px;
	width:   66.66667%; }

.column-9 {
	float:   left;
	padding: 0 20px;
	width:   75%; }

.column-10 {
	float:   left;
	padding: 0 20px;
	width:   83.33333%; }

.column-11 {
	float:   left;
	padding: 0 20px;
	width:   91.66667%; }

.column-12 {
	float:   left;
	padding: 0 20px;
	width:   100%; }

.column-1 h1:first-child, .column-1 h2:first-child, .column-1 h3:first-child, .column-1 h4:first-child, .column-1 h5:first-child, .column-1 h6:first-child, .column-2 h1:first-child, .column-2 h2:first-child, .column-2 h3:first-child, .column-2 h4:first-child, .column-2 h5:first-child, .column-2 h6:first-child, .column-3 h1:first-child, .column-3 h2:first-child, .column-3 h3:first-child, .column-3 h4:first-child, .column-3 h5:first-child, .column-3 h6:first-child, .column-4 h1:first-child, .column-4 h2:first-child, .column-4 h3:first-child, .column-4 h4:first-child, .column-4 h5:first-child, .column-4 h6:first-child,
.column-5 h1:first-child,
.column-5 h2:first-child,
.column-5 h3:first-child,
.column-5 h4:first-child,
.column-5 h5:first-child,
.column-5 h6:first-child, .column-6 h1:first-child, .column-6 h2:first-child, .column-6 h3:first-child, .column-6 h4:first-child, .column-6 h5:first-child, .column-6 h6:first-child, .column-7 h1:first-child, .column-7 h2:first-child, .column-7 h3:first-child, .column-7 h4:first-child, .column-7 h5:first-child, .column-7 h6:first-child, .column-8 h1:first-child, .column-8 h2:first-child, .column-8 h3:first-child, .column-8 h4:first-child, .column-8 h5:first-child, .column-8 h6:first-child,
.column-9 h1:first-child,
.column-9 h2:first-child,
.column-9 h3:first-child,
.column-9 h4:first-child,
.column-9 h5:first-child,
.column-9 h6:first-child, .column-10 h1:first-child, .column-10 h2:first-child, .column-10 h3:first-child, .column-10 h4:first-child, .column-10 h5:first-child, .column-10 h6:first-child, .column-11 h1:first-child, .column-11 h2:first-child, .column-11 h3:first-child, .column-11 h4:first-child, .column-11 h5:first-child, .column-11 h6:first-child, .column-12 h1:first-child, .column-12 h2:first-child, .column-12 h3:first-child, .column-12 h4:first-child, .column-12 h5:first-child, .column-12 h6:first-child {
	margin-top: 0; }

@media (max-width: 1220px) {
	.full-width-section,
	.extended-width-section {
		padding: 0 20px; }
	
	.reduced-width-section {
		padding: 0 40px; }
}

@media (max-width: 768px) {
	.column-1,
	.column-2 {
		width: 25%; }
	
	.column-3 {
		width: 50%; }
	
	.column-4, .column-5, .column-6, .column-7,
	.column-8, .column-9, .column-10, .column-11,
	.column-12 {
		width: 100%; }
	
	.column-4 h1:first-child, .column-4 h2:first-child, .column-4 h3:first-child, .column-4 h4:first-child, .column-4 h5:first-child, .column-4 h6:first-child, .column-5 h1:first-child, .column-5 h2:first-child, .column-5 h3:first-child, .column-5 h4:first-child, .column-5 h5:first-child, .column-5 h6:first-child, .column-6 h1:first-child, .column-6 h2:first-child, .column-6 h3:first-child, .column-6 h4:first-child, .column-6 h5:first-child, .column-6 h6:first-child, .column-7 h1:first-child, .column-7 h2:first-child, .column-7 h3:first-child, .column-7 h4:first-child, .column-7 h5:first-child, .column-7 h6:first-child, .column-8 h1:first-child, .column-8 h2:first-child, .column-8 h3:first-child, .column-8 h4:first-child, .column-8 h5:first-child, .column-8 h6:first-child,
	.column-9 h1:first-child,
	.column-9 h2:first-child,
	.column-9 h3:first-child,
	.column-9 h4:first-child,
	.column-9 h5:first-child,
	.column-9 h6:first-child, .column-10 h1:first-child, .column-10 h2:first-child, .column-10 h3:first-child, .column-10 h4:first-child, .column-10 h5:first-child, .column-10 h6:first-child, .column-11 h1:first-child, .column-11 h2:first-child, .column-11 h3:first-child, .column-11 h4:first-child, .column-11 h5:first-child, .column-11 h6:first-child, .column-12 h1:first-child, .column-12 h2:first-child, .column-12 h3:first-child, .column-12 h4:first-child, .column-12 h5:first-child, .column-12 h6:first-child {
		margin-top: 40px; }
}

@media (max-width: 480px) {
	.reduced-width-section {
		padding: 0 20px; }
	
	.column-1,
	.column-2 {
		width: 50%; }
	
	.column-3, .column-4, .column-5, .column-6,
	.column-7, .column-8, .column-9, .column-10, .column-11,
	.column-12 {
		width: 100%; }
	
	.column-1 h1:first-child, .column-1 h2:first-child, .column-1 h3:first-child, .column-1 h4:first-child, .column-1 h5:first-child, .column-1 h6:first-child, .column-2 h1:first-child, .column-2 h2:first-child, .column-2 h3:first-child, .column-2 h4:first-child, .column-2 h5:first-child, .column-2 h6:first-child, .column-3 h1:first-child, .column-3 h2:first-child, .column-3 h3:first-child, .column-3 h4:first-child, .column-3 h5:first-child, .column-3 h6:first-child {
		margin-top: 40px; }
}

.orange-button {
	position:         relative;
	border-radius:    10px;
	padding:          8px 20px;
	text-decoration:  none;
	background-color: #EA8E26; }

.orange-button:before {
	content:       '';
	position:      absolute;
	width:         100%;
	height:        100%;
	border-radius: 10px;
	top:           -4px;
	left:          0;
	z-index:       0; }

.orange-button:after {
	content:         '';
	display:         inline-block;
	position:        relative;
	height:          26px;
	width:           26px;
	background:      url(../images/button-arrow-orange.png) no-repeat center;
	background-size: 100% 100%;
	z-index:         1;
	vertical-align:  middle;
	margin-left:     10px;
	top:             -4px; }

.orange-button .button-text {
	color:       #FFFFFF;
	font-size:   17px;
	font-weight: 400;
	position:    relative;
	top:         -1px;
	z-index:     1; }

.orange-button:hover .button-text {
	top: 3px; }

.orange-button:hover:before, .orange-button:hover:after {
	top: 0; }

.orange-button:before {
	background-color: #F89728; }

.simple-button {
	position:         relative;
	display:          inline-block;
	background-color: #8DC63F;
	padding:          12px 20px;
	color:            #FFFFFF;
	font-weight:      600;
	text-transform:   uppercase;
	font-size:        14px;
	border-radius:    4px;
	margin-top:       20px; }

.simple-button:hover {
	background-color: #73AC26;
	color:            #FFFFFF; }

.simple-button--hollow:not(:hover) {
	background: transparent;
	color:      #8DC63F; }

.simple-button--hollow {
	border: 2px solid #8DC63F; }

.light-gray-bar {
	display:          block;
	width:            100%;
	height:           300px;
	background-color: #E9E9EA;
	margin-bottom:    -300px; }

.dark-gray-bar {
	display:          block;
	width:            100%;
	height:           140px;
	background-color: #6D6E71;
	margin-bottom:    -100px; }

.orange-bar {
	display:          block;
	background-color: #FFC425;
	height:           155px;
	z-index:          -1;
	margin-top:       -90px; }

hr {
	display:          block;
	border:           0;
	width:            100%;
	height:           1px;
	background-color: #D9D9D9; }

.definition-box {
	width:   100%;
	border:  1px solid #D9D9D9;
	padding: 10px; }

.definition-box dt, .definition-box dd {
	display: inline-block;
	margin:  5px !important; }

.definition-box dt {
	font-weight: 600; }

.definition-box dd {
	margin-right: 20px !important; }

@media (max-width: 768px) {
	.definition-box {
		text-align: center; }
	
	.definition-box dt {
		display: block; }
	
	.definition-box dd {
		margin-right:  0 !important;
		margin-bottom: 20px !important; }
}

.download-list {
	margin:  0;
	padding: 0; }

.download-list li {
	margin:          0;
	padding:         0;
	list-style-type: none;
	position:        relative; }

.download-list__button {
	width:        150px;
	text-align:   center;
	margin-right: 10px;
	display:      block; }

.download-list__label {
	display:  block;
	position: absolute;
	left:     180px;
	top:      0;
	width:    calc(100% - 180px);
	height:   100%; }

.download-list__label:before {
	content:        '';
	display:        inline-block;
	height:         100%;
	vertical-align: middle;
	margin-right:   -0.25em; }

.download-list__label span {
	display:        inline-block;
	vertical-align: middle; }

@media (max-width: 480px) {
	.download-list__button {
		display:    block;
		margin:     0 auto;
		margin-top: 5px; }
	
	.download-list__label {
		display:    block;
		position:   relative;
		left:       0;
		width:      100%;
		text-align: center;
		margin-top: 60px; }
}

.definition-table td {
	padding:        15px 0;
	vertical-align: middle; }

.definition-table td:first-child {
	font-weight:   600;
	padding-right: 60px; }

.ruled-header {
	display:        block;
	color:          #8DC63F;
	padding-bottom: 5px;
	border-bottom:  1px solid #D9D9D9;
	margin-bottom:  40px; }

.bordered-image {
	border:     8px solid #FFFFFF;
	box-shadow: 0 7px 12px rgba(0, 0, 0, 0.16); }

.push-bottom {
	margin-bottom: 40px; }

.push-top {
	margin-top: 40px; }

.push-left {
	margin-left: 40px; }

.push-right {
	margin-right: 40px; }

.push-bottom-far {
	margin-bottom: 60px; }

.push-top-far {
	margin-top: 60px; }

.push-left-far {
	margin-left: 60px; }

.push-right-far {
	margin-right: 60px; }

.padding-thin {
	padding: 40px; }

.padding-left-thin {
	padding-left: 40px; }

.padding-right-thin {
	padding-right: 40px; }

.padding-top-thin {
	padding-top: 40px; }

.padding-bottom-thin {
	padding-bottom: 40px; }

.padding-thick {
	padding: 60px; }

.padding-left-thick {
	padding-left: 60px; }

.padding-right-thick {
	padding-right: 60px; }

.padding-top-thick {
	padding-top: 60px; }

.padding-bottom-thick {
	padding-bottom: 60px; }

.flush-top {
	margin-top: 0; }

.flush-left {
	margin-left: 0; }

.flush-right {
	margin-right: 0; }

.flush-bottom {
	margin-bottom: 0; }

.touch-top {
	padding-top: 0; }

.touch-left {
	padding-left: 0; }

.touch-right {
	padding-right: 0; }

.touch-bottom {
	padding-bottom: 0; }

.small-text {
	font-size: 12px; }

.text-right {
	text-align: right; }

.text-left {
	text-align: left; }

hr {
	display:          block;
	/*width: 40%;*/
	height:           1px;
	border:           0;
	background-color: #888888;
	margin:           0 auto; }

img {
	max-width: 100%; }

.js-check-visible.generic-fade-in {
	-webkit-transition: all 600ms cubic-bezier(0.23, 1, 0.32, 1);
	-moz-transition:    all 600ms cubic-bezier(0.23, 1, 0.32, 1);
	transition:         all 600ms cubic-bezier(0.23, 1, 0.32, 1);
	opacity:            0;
	-webkit-transform:  translate3d(0, 50px, 0);
	-moz-transform:     translate3d(0, 50px, 0);
	-ms-transform:      translate3d(0, 50px, 0);
	-o-transform:       translate3d(0, 50px, 0);
	transform:          translate3d(0, 50px, 0); }

.js-check-visible.js-is-visible.generic-fade-in {
	opacity:           1;
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform:    translate3d(0, 0, 0);
	-ms-transform:     translate3d(0, 0, 0);
	-o-transform:      translate3d(0, 0, 0);
	transform:         translate3d(0, 0, 0); }
