
    body { margin: 0; background: #f3f4f6; overflow-x: hidden; }
    #page-container { position: relative; margin: 0 auto; padding: 0; overflow: visible; max-width: 100%; }
    .scieee-lazy-chunk { display: block; width: 100%; max-width: 100%; margin: 0 auto 24px auto; overflow-x: hidden; overflow-y: visible; box-sizing: border-box; }
    .scieee-lazy-chunk-content { width: 100%; max-width: 100%; overflow-x: hidden; box-sizing: border-box; }
    .scieee-lazy-chunk style { display: none !important; }
    .scieee-lazy-placeholder { width: 100%; max-width: 900px; margin: 12px auto; padding: 18px; box-sizing: border-box; background: #fff; color: #6b7280; border: 1px solid #e5e7eb; font: 13px system-ui, sans-serif; text-align: center; }
    .scieee-lazy-chunk.is-loaded { min-height: 0 !important; }
    .scieee-lazy-chunk.is-loaded > .scieee-lazy-placeholder { display: none; }
    .pf { margin-left: auto !important; margin-right: auto !important; }
  



/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator {
    display:none;
  }
  .loading-indicator.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname" -> "#page-container .classname")
 */
.pf { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc {overflow:visible;}
  }
}
.c { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t:after { /* webkit #35443 */
  content: '';
}
.t:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
._ { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi { /* info for Javascript */
  display:none;
}
.l { /* annotation links */
}
/* transparent color - WebKit */
.d { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1;src:url('chunks/assets/font_517082341542c27d00ee90ae.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.058000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_f7746ab49f34dc85cd5d3f9e.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.935000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_517082341542c27d00ee90ae.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.058000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_9e4e6fd8cd0eaf7974f07092.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.086000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_3c9c3d1ad3eb166e25771298.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.984000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_686f923911a274079bc13367.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.700000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_5f8cc0e646e6acdbc23b61dd.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.058000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_c6404c4064ab29d3446c1dff.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.984000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_c6404c4064ab29d3446c1dff.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.984000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_686f923911a274079bc13367.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.700000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_257a3e408f8d4a3528d5f90a.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.086000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_517082341542c27d00ee90ae.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.058000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_c6404c4064ab29d3446c1dff.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.984000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_517082341542c27d00ee90ae.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.058000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_f7746ab49f34dc85cd5d3f9e.woff2')format("woff");}.fff{font-family:fff;line-height:0.935000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_517082341542c27d00ee90ae.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.058000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_3c9c3d1ad3eb166e25771298.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.984000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_a49203caeca68028dce93d1f.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.086000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_686f923911a274079bc13367.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.700000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_517082341542c27d00ee90ae.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.058000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_7960d6eb2181544e19c53609.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.058000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_7960d6eb2181544e19c53609.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.058000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_7960d6eb2181544e19c53609.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.058000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_7960d6eb2181544e19c53609.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.058000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_7960d6eb2181544e19c53609.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.058000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_7960d6eb2181544e19c53609.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.058000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_7960d6eb2181544e19c53609.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.058000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c;src:url('chunks/assets/font_7960d6eb2181544e19c53609.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:1.058000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d;src:url('chunks/assets/font_517082341542c27d00ee90ae.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:1.058000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1c{transform:matrix(0.242769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242769,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.242957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242957,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.245005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245005,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.245057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245057,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.245062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245062,0.000000,0.000000,0.250000,0,0);}
.m63{transform:matrix(0.245122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245122,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.245332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245332,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.245372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245372,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.245473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245473,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.245503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245503,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.245592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245592,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.245614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245614,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.245682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245682,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.245783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245783,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.245875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245875,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.245940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245940,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.245962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245962,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.245965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245965,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.246003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246003,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.246217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246217,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.246242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246242,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.246266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246266,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.246312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246312,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.246389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246389,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.246391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246391,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.246399,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246399,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246399,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.246457,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246457,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246457,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.246774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246774,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.246880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246880,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.247008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247008,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.247011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247011,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.247231,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247231,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247231,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.247467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247467,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.247609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247609,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.247668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247668,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.247734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247734,0.000000,0.000000,0.250000,0,0);}
.m65{transform:matrix(0.247916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247916,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.248076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248076,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.248177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248177,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.248179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248179,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.248486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248486,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.248777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248777,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.249033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249033,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.249079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249079,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.249481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249481,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.249541,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249541,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249541,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.249582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249582,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.249617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249617,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.249821,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249821,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249821,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249834,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.249837,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249837,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249837,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.249889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249889,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.249959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249959,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.250255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250255,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.250326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250326,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.250348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250348,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.250473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250473,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.250492,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250492,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250492,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.250560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250560,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.250840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250840,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.250891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250891,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.250899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250899,0.000000,0.000000,0.250000,0,0);}
.m66{transform:matrix(0.250962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250962,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.251144,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251144,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251144,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.251304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251304,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.251524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251524,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.251546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251546,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.251639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251639,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.251647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251647,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.251918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251918,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.252063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252063,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.252321,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252321,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252321,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.252418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252418,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.252451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252451,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.252462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252462,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.252478,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252478,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252478,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.252671,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252671,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252671,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.252783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252783,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.252832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252832,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.252886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252886,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.253057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253057,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.253060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253060,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.253160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253160,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.253185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253185,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.253310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253310,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.253332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253332,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.253611,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253611,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253611,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.253717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253717,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.253723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253723,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.253880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253880,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.253891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253891,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.253959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253959,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.254209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254209,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.254261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254261,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.254361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254361,0.000000,0.000000,0.250000,0,0);}
.m62{transform:matrix(0.254462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254462,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.254679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254679,0.000000,0.000000,0.250000,0,0);}
.m64{transform:matrix(0.254715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254715,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.v4{vertical-align:-5.983200px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:6.000000px;}
.v2{vertical-align:17.008200px;}
.v3{vertical-align:37.479600px;}
.ls29{letter-spacing:-2.652000px;}
.ls39{letter-spacing:-1.794000px;}
.ls2e{letter-spacing:-1.326000px;}
.ls24{letter-spacing:-1.260000px;}
.ls2f{letter-spacing:-0.783000px;}
.ls34{letter-spacing:-0.624000px;}
.ls1f{letter-spacing:-0.546000px;}
.ls30{letter-spacing:-0.522000px;}
.ls37{letter-spacing:-0.496800px;}
.ls2a{letter-spacing:-0.386400px;}
.ls3a{letter-spacing:-0.261000px;}
.ls2b{letter-spacing:-0.220800px;}
.ls35{letter-spacing:-0.165600px;}
.ls36{letter-spacing:-0.110400px;}
.ls20{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.055200px;}
.ls11{letter-spacing:0.110400px;}
.ls26{letter-spacing:0.156000px;}
.ls15{letter-spacing:0.156600px;}
.ls3{letter-spacing:0.165600px;}
.ls1d{letter-spacing:0.184266px;}
.ls27{letter-spacing:0.193200px;}
.ls1b{letter-spacing:0.198000px;}
.ls0{letter-spacing:0.210000px;}
.ls1{letter-spacing:0.220800px;}
.ls1a{letter-spacing:0.234000px;}
.ls31{letter-spacing:0.261000px;}
.ls1e{letter-spacing:0.270000px;}
.ls12{letter-spacing:0.276000px;}
.ls22{letter-spacing:0.300000px;}
.ls21{letter-spacing:0.315000px;}
.ls9{letter-spacing:0.331200px;}
.ls8{letter-spacing:0.386400px;}
.ls17{letter-spacing:0.390000px;}
.ls16{letter-spacing:0.417600px;}
.ls5{letter-spacing:0.441600px;}
.lsa{letter-spacing:0.496800px;}
.lsb{letter-spacing:0.552000px;}
.ls2d{letter-spacing:0.607200px;}
.ls38{letter-spacing:0.662400px;}
.ls7{letter-spacing:0.717600px;}
.ls4{letter-spacing:0.772800px;}
.ls6{letter-spacing:0.828000px;}
.ls28{letter-spacing:0.855600px;}
.lsd{letter-spacing:0.883200px;}
.ls13{letter-spacing:0.938400px;}
.ls18{letter-spacing:0.960000px;}
.lsc{letter-spacing:0.993600px;}
.ls19{letter-spacing:1.014000px;}
.ls2c{letter-spacing:1.048800px;}
.ls32{letter-spacing:1.104000px;}
.ls25{letter-spacing:1.131600px;}
.lse{letter-spacing:1.269600px;}
.lsf{letter-spacing:1.545600px;}
.ls33{letter-spacing:1.821600px;}
.ls23{letter-spacing:1.890000px;}
.ls1c{letter-spacing:23.803800px;}
.ls14{letter-spacing:24.335400px;}
.ls10{letter-spacing:24.336000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws92{word-spacing:-14.772600px;}
.ws2{word-spacing:-14.668200px;}
.ws44{word-spacing:-14.511600px;}
.ws94{word-spacing:-14.250600px;}
.ws3{word-spacing:-13.819950px;}
.ws1{word-spacing:-13.524000px;}
.ws42{word-spacing:-12.696000px;}
.ws0{word-spacing:-12.420000px;}
.ws7{word-spacing:-4.416000px;}
.ws18{word-spacing:-4.360800px;}
.wsa{word-spacing:-4.305600px;}
.ws57{word-spacing:-4.250400px;}
.ws50{word-spacing:-4.195200px;}
.ws20{word-spacing:-4.084800px;}
.ws89{word-spacing:-3.974400px;}
.ws79{word-spacing:-3.698400px;}
.ws3a{word-spacing:-3.367200px;}
.ws28{word-spacing:-3.360000px;}
.ws49{word-spacing:-3.146400px;}
.wsa1{word-spacing:-3.091200px;}
.ws27{word-spacing:-2.925600px;}
.ws29{word-spacing:-2.923200px;}
.ws38{word-spacing:-2.870400px;}
.ws40{word-spacing:-2.815200px;}
.ws60{word-spacing:-2.760000px;}
.ws33{word-spacing:-2.702568px;}
.ws30{word-spacing:-2.442000px;}
.ws12{word-spacing:-2.428800px;}
.ws3d{word-spacing:-2.373600px;}
.ws21{word-spacing:-2.318400px;}
.ws47{word-spacing:-2.208000px;}
.wsb{word-spacing:-2.097600px;}
.ws51{word-spacing:-2.042400px;}
.ws2f{word-spacing:-1.950000px;}
.ws6f{word-spacing:-1.932000px;}
.wsa7{word-spacing:-1.876800px;}
.wsc{word-spacing:-1.821600px;}
.ws24{word-spacing:-1.766400px;}
.ws19{word-spacing:-1.656000px;}
.ws78{word-spacing:-1.324800px;}
.ws31{word-spacing:-1.260000px;}
.ws3b{word-spacing:-1.214400px;}
.ws16{word-spacing:-1.104000px;}
.ws2b{word-spacing:-0.960000px;}
.ws13{word-spacing:-0.883200px;}
.ws9{word-spacing:-0.828000px;}
.ws76{word-spacing:-0.772800px;}
.ws3e{word-spacing:-0.717600px;}
.ws6a{word-spacing:-0.662400px;}
.ws4d{word-spacing:-0.552000px;}
.ws1c{word-spacing:-0.331200px;}
.ws8d{word-spacing:-0.315000px;}
.ws6c{word-spacing:-0.313200px;}
.ws97{word-spacing:-0.300000px;}
.ws96{word-spacing:-0.261000px;}
.ws41{word-spacing:-0.165600px;}
.ws2a{word-spacing:-0.156600px;}
.ws34{word-spacing:-0.156000px;}
.ws87{word-spacing:-0.110400px;}
.ws4{word-spacing:0.000000px;}
.ws58{word-spacing:0.055200px;}
.ws7a{word-spacing:0.110400px;}
.ws74{word-spacing:0.220800px;}
.wsa2{word-spacing:0.331200px;}
.ws35{word-spacing:0.386400px;}
.ws7d{word-spacing:0.441600px;}
.ws72{word-spacing:0.496800px;}
.ws5{word-spacing:0.546000px;}
.ws88{word-spacing:0.607200px;}
.ws6d{word-spacing:0.624000px;}
.ws73{word-spacing:0.772800px;}
.ws62{word-spacing:0.828000px;}
.ws8{word-spacing:0.938400px;}
.ws8a{word-spacing:0.993600px;}
.ws68{word-spacing:1.104000px;}
.ws1e{word-spacing:1.214400px;}
.ws85{word-spacing:1.269600px;}
.ws1d{word-spacing:1.324800px;}
.ws5f{word-spacing:1.326000px;}
.ws5b{word-spacing:1.380000px;}
.ws61{word-spacing:1.435200px;}
.wsa3{word-spacing:1.545600px;}
.ws4a{word-spacing:1.656000px;}
.ws8c{word-spacing:1.711200px;}
.ws7f{word-spacing:1.766400px;}
.ws95{word-spacing:1.794000px;}
.ws48{word-spacing:1.876800px;}
.ws32{word-spacing:1.890000px;}
.ws17{word-spacing:1.932000px;}
.ws64{word-spacing:1.987200px;}
.ws71{word-spacing:2.042400px;}
.ws3f{word-spacing:2.152800px;}
.ws98{word-spacing:2.208000px;}
.ws66{word-spacing:2.318400px;}
.wsa0{word-spacing:2.373600px;}
.wsf{word-spacing:2.428800px;}
.ws8b{word-spacing:2.484000px;}
.ws1f{word-spacing:2.539200px;}
.ws54{word-spacing:2.649600px;}
.ws46{word-spacing:2.652000px;}
.ws2e{word-spacing:2.808000px;}
.ws22{word-spacing:2.870400px;}
.ws82{word-spacing:2.925600px;}
.ws23{word-spacing:2.980800px;}
.ws53{word-spacing:3.036000px;}
.ws1b{word-spacing:3.091200px;}
.ws9c{word-spacing:3.146400px;}
.ws5e{word-spacing:3.201600px;}
.ws86{word-spacing:3.256800px;}
.ws37{word-spacing:3.367200px;}
.ws52{word-spacing:3.588000px;}
.ws11{word-spacing:3.643200px;}
.ws9e{word-spacing:3.753600px;}
.ws5d{word-spacing:3.808800px;}
.ws7e{word-spacing:3.864000px;}
.ws5c{word-spacing:3.919200px;}
.ws26{word-spacing:4.029600px;}
.ws4f{word-spacing:4.084800px;}
.wsa6{word-spacing:4.416000px;}
.ws83{word-spacing:4.471200px;}
.ws81{word-spacing:4.526400px;}
.ws9a{word-spacing:4.581600px;}
.wsd{word-spacing:4.636800px;}
.ws4c{word-spacing:4.857600px;}
.ws8f{word-spacing:4.912800px;}
.ws99{word-spacing:4.968000px;}
.ws8e{word-spacing:5.133600px;}
.ws55{word-spacing:5.244000px;}
.ws15{word-spacing:5.354400px;}
.ws7c{word-spacing:5.409600px;}
.wse{word-spacing:5.520000px;}
.ws69{word-spacing:5.685600px;}
.ws65{word-spacing:5.796000px;}
.ws10{word-spacing:5.961600px;}
.ws6{word-spacing:6.016800px;}
.ws14{word-spacing:6.072000px;}
.ws1a{word-spacing:6.127200px;}
.ws4e{word-spacing:6.237600px;}
.ws77{word-spacing:6.348000px;}
.ws9d{word-spacing:6.513600px;}
.ws9b{word-spacing:6.734400px;}
.ws75{word-spacing:6.789600px;}
.ws3c{word-spacing:7.176000px;}
.ws56{word-spacing:7.231200px;}
.ws9f{word-spacing:7.396800px;}
.wsa4{word-spacing:7.507200px;}
.ws67{word-spacing:8.004000px;}
.ws2c{word-spacing:8.424000px;}
.ws70{word-spacing:8.445600px;}
.ws63{word-spacing:8.556000px;}
.ws39{word-spacing:8.832000px;}
.ws80{word-spacing:8.942400px;}
.wsa5{word-spacing:8.997600px;}
.ws4b{word-spacing:9.439200px;}
.ws45{word-spacing:9.970200px;}
.ws5a{word-spacing:10.488000px;}
.ws2d{word-spacing:10.686000px;}
.ws59{word-spacing:11.316000px;}
.ws6b{word-spacing:12.088800px;}
.ws36{word-spacing:13.358400px;}
.ws6e{word-spacing:13.413600px;}
.ws84{word-spacing:14.241600px;}
.ws25{word-spacing:14.296800px;}
.ws7b{word-spacing:15.842400px;}
.ws93{word-spacing:51.730200px;}
.ws90{word-spacing:57.524400px;}
.ws91{word-spacing:142.453800px;}
.ws43{word-spacing:297.796200px;}
._d{margin-left:-1335.902400px;}
._f{margin-left:-935.731200px;}
._14{margin-left:-28.550400px;}
._b{margin-left:-22.308600px;}
._3{margin-left:-16.615200px;}
._13{margin-left:-14.511600px;}
._15{margin-left:-11.327400px;}
._12{margin-left:-10.030800px;}
._7{margin-left:-8.929800px;}
._a{margin-left:-7.554841px;}
._6{margin-left:-5.742000px;}
._0{margin-left:-3.864000px;}
._5{margin-left:-2.578800px;}
._2{margin-left:-1.021200px;}
._1{width:1.675800px;}
._4{width:2.754480px;}
._8{width:3.784920px;}
._16{width:7.695000px;}
._11{width:24.481800px;}
._e{width:443.125800px;}
._10{width:897.148200px;}
._9{width:1126.570800px;}
._c{width:1570.066200px;}
.fc4{color:transparent;}
.fc3{color:rgb(193,25,14);}
.fc2{color:rgb(0,59,124);}
.fc5{color:rgb(126,141,186);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:42.000000px;}
.fs7{font-size:52.200000px;}
.fs0{font-size:54.000000px;}
.fs3{font-size:55.200000px;}
.fs6{font-size:60.000000px;}
.fsc{font-size:61.422000px;}
.fs4{font-size:63.000000px;}
.fsa{font-size:66.000000px;}
.fs1{font-size:78.000000px;}
.fs5{font-size:96.000000px;}
.fs9{font-size:192.000000px;}
.fsb{font-size:210.000000px;}
.fs8{font-size:221.760000px;}
.y0{bottom:0.000000px;}
.ya0{bottom:11.487450px;}
.y98{bottom:11.487750px;}
.y9e{bottom:11.488050px;}
.y9a{bottom:11.488500px;}
.y9c{bottom:11.488800px;}
.y65{bottom:14.597100px;}
.y3{bottom:23.752050px;}
.y6d{bottom:29.495666px;}
.y6c{bottom:49.170900px;}
.ya1{bottom:63.533700px;}
.y62{bottom:67.862700px;}
.y64{bottom:71.612100px;}
.y6b{bottom:71.855816px;}
.y61{bottom:90.368700px;}
.y3f{bottom:90.493500px;}
.ya9{bottom:90.497700px;}
.y7b{bottom:90.497850px;}
.ya5{bottom:90.501900px;}
.y20{bottom:90.502050px;}
.y7f{bottom:90.503250px;}
.y6a{bottom:91.531050px;}
.y84{bottom:107.752050px;}
.y3e{bottom:109.247700px;}
.y122{bottom:109.249200px;}
.ya8{bottom:109.251900px;}
.y1f{bottom:109.252050px;}
.ye5{bottom:109.253250px;}
.y55{bottom:109.255350px;}
.y7e{bottom:109.257450px;}
.y69{bottom:112.711050px;}
.y60{bottom:112.874700px;}
.y3d{bottom:126.501900px;}
.ya4{bottom:128.001900px;}
.y1e{bottom:128.002050px;}
.ye4{bottom:128.007450px;}
.y54{bottom:128.008200px;}
.y68{bottom:133.891200px;}
.y5f{bottom:135.380700px;}
.y53{bottom:146.734950px;}
.ya7{bottom:146.743500px;}
.y83{bottom:146.743650px;}
.y3c{bottom:146.751900px;}
.y1d{bottom:146.752050px;}
.y3a{bottom:164.001900px;}
.y52{bottom:165.487800px;}
.y1c{bottom:165.493650px;}
.ya6{bottom:165.497700px;}
.y3b{bottom:165.501900px;}
.y7a{bottom:165.502050px;}
.y51{bottom:184.240650px;}
.y1b{bottom:184.247850px;}
.y39{bottom:184.251900px;}
.y79{bottom:184.252050px;}
.y63{bottom:188.776500px;}
.y37{bottom:201.501900px;}
.y50{bottom:202.993500px;}
.y38{bottom:203.001900px;}
.y1a{bottom:203.002050px;}
.ya3{bottom:203.007450px;}
.y67{bottom:203.962800px;}
.yad{bottom:221.739900px;}
.y36{bottom:221.743500px;}
.y4f{bottom:221.746350px;}
.ye6{bottom:221.747850px;}
.y19{bottom:221.752050px;}
.y66{bottom:226.468800px;}
.yac{bottom:240.494100px;}
.y35{bottom:240.497700px;}
.y4e{bottom:240.499200px;}
.y18{bottom:240.502050px;}
.y121{bottom:240.502500px;}
.y34{bottom:257.751900px;}
.y4d{bottom:257.752050px;}
.y78{bottom:259.247850px;}
.yab{bottom:259.248300px;}
.y17{bottom:259.252050px;}
.y120{bottom:259.255350px;}
.ya2{bottom:276.502050px;}
.y11f{bottom:277.982100px;}
.y4c{bottom:277.990650px;}
.yaa{bottom:277.998300px;}
.y33{bottom:278.001900px;}
.y16{bottom:278.002050px;}
.y11e{bottom:296.734950px;}
.y4b{bottom:296.743500px;}
.y82{bottom:296.747850px;}
.y32{bottom:296.751900px;}
.y15{bottom:296.752050px;}
.y11d{bottom:315.487800px;}
.y4a{bottom:315.496350px;}
.y31{bottom:315.497700px;}
.y77{bottom:315.497850px;}
.y81{bottom:315.502050px;}
.y30{bottom:332.751900px;}
.yc1{bottom:332.832750px;}
.yc2{bottom:332.835600px;}
.y12f{bottom:334.239450px;}
.y49{bottom:334.246350px;}
.y14{bottom:334.247850px;}
.y76{bottom:334.252050px;}
.yc0{bottom:351.585600px;}
.y12e{bottom:352.993650px;}
.y11c{bottom:352.995150px;}
.y7d{bottom:352.997850px;}
.yfc{bottom:352.999050px;}
.y48{bottom:352.999200px;}
.y2f{bottom:353.001900px;}
.y13{bottom:353.002050px;}
.y47{bottom:370.252050px;}
.y12d{bottom:371.743650px;}
.y11b{bottom:371.748000px;}
.y2e{bottom:371.751900px;}
.y12{bottom:371.752050px;}
.yfb{bottom:371.753250px;}
.y2d{bottom:390.497700px;}
.y12c{bottom:390.497850px;}
.y46{bottom:390.500850px;}
.y11{bottom:390.502050px;}
.y2c{bottom:407.751900px;}
.yfa{bottom:409.247850px;}
.y10{bottom:409.252050px;}
.y45{bottom:409.253700px;}
.yb3{bottom:414.802350px;}
.y103{bottom:420.501900px;}
.yc4{bottom:424.180200px;}
.y44{bottom:427.993500px;}
.yf{bottom:427.993650px;}
.y7c{bottom:427.997850px;}
.y2b{bottom:428.001900px;}
.y75{bottom:428.002050px;}
.yb2{bottom:433.555200px;}
.y102{bottom:439.249050px;}
.y43{bottom:446.743500px;}
.y11a{bottom:446.746350px;}
.ye{bottom:446.747850px;}
.y2a{bottom:446.751900px;}
.y6f{bottom:446.752050px;}
.y101{bottom:458.001900px;}
.y29{bottom:464.001900px;}
.y42{bottom:465.496350px;}
.y72{bottom:465.497850px;}
.y119{bottom:465.499200px;}
.yd{bottom:465.502050px;}
.y80{bottom:465.504450px;}
.y100{bottom:476.751900px;}
.yff{bottom:476.754600px;}
.y12b{bottom:484.243650px;}
.y41{bottom:484.249200px;}
.yc{bottom:484.252050px;}
.ybf{bottom:495.275100px;}
.yfe{bottom:495.507450px;}
.y40{bottom:501.502050px;}
.y118{bottom:502.990650px;}
.y28{bottom:502.993500px;}
.y12a{bottom:502.997850px;}
.yb{bottom:503.002050px;}
.y56{bottom:505.638900px;}
.y8f{bottom:514.064550px;}
.ybe{bottom:515.522250px;}
.yc7{bottom:521.412300px;}
.y27{bottom:521.739300px;}
.y117{bottom:521.743500px;}
.y74{bottom:521.743650px;}
.ya{bottom:521.752050px;}
.ybd{bottom:532.775100px;}
.yc6{bottom:540.165150px;}
.y73{bottom:540.489450px;}
.y116{bottom:540.490650px;}
.y26{bottom:540.493500px;}
.yf9{bottom:540.497850px;}
.y9{bottom:540.502050px;}
.ybc{bottom:551.525100px;}
.y107{bottom:552.652650px;}
.y71{bottom:559.243650px;}
.y25{bottom:559.247700px;}
.y8{bottom:559.252050px;}
.ybb{bottom:570.275100px;}
.y106{bottom:571.399800px;}
.y104{bottom:571.402650px;}
.y115{bottom:577.996350px;}
.y70{bottom:577.997850px;}
.y24{bottom:578.001900px;}
.y7{bottom:578.002050px;}
.y96{bottom:579.199200px;}
.yba{bottom:589.025100px;}
.y105{bottom:590.152650px;}
.y95{bottom:594.859200px;}
.y21{bottom:596.747850px;}
.y114{bottom:596.749200px;}
.y23{bottom:596.751900px;}
.y6{bottom:596.752050px;}
.yc5{bottom:603.384900px;}
.yb9{bottom:609.272250px;}
.y94{bottom:610.519200px;}
.y5{bottom:615.502050px;}
.y93{bottom:626.179200px;}
.yb8{bottom:628.025100px;}
.y6e{bottom:632.752050px;}
.y22{bottom:634.251900px;}
.y4{bottom:634.252050px;}
.yf8{bottom:653.002050px;}
.yfd{bottom:653.255850px;}
.yc3{bottom:659.634900px;}
.y57{bottom:670.252050px;}
.yf7{bottom:671.752050px;}
.y91{bottom:678.129900px;}
.y90{bottom:685.608150px;}
.ye3{bottom:690.502050px;}
.yb1{bottom:691.244850px;}
.y92{bottom:693.086550px;}
.y113{bottom:695.267100px;}
.y112{bottom:704.656500px;}
.yf6{bottom:709.252050px;}
.y129{bottom:728.002050px;}
.y111{bottom:737.398950px;}
.y8d{bottom:740.372550px;}
.y89{bottom:741.118350px;}
.y128{bottom:746.747850px;}
.y8c{bottom:752.972550px;}
.yaf{bottom:754.464750px;}
.y99{bottom:755.601000px;}
.y110{bottom:762.389700px;}
.yd6{bottom:765.490500px;}
.ye2{bottom:765.493350px;}
.yf5{bottom:765.502050px;}
.yd5{bottom:784.243350px;}
.ye1{bottom:784.246200px;}
.yf4{bottom:784.252050px;}
.y10f{bottom:785.775300px;}
.y5e{bottom:786.645450px;}
.y10e{bottom:795.145200px;}
.y9b{bottom:795.610500px;}
.y88{bottom:797.664000px;}
.yd4{bottom:802.996200px;}
.ye0{bottom:802.999050px;}
.yf3{bottom:803.002050px;}
.yb7{bottom:816.184350px;}
.y5d{bottom:818.137950px;}
.yd3{bottom:821.749050px;}
.ydf{bottom:821.751900px;}
.yf2{bottom:821.752050px;}
.y10d{bottom:828.174750px;}
.y9d{bottom:832.851000px;}
.yb6{bottom:834.934350px;}
.yde{bottom:840.496200px;}
.yd2{bottom:840.501900px;}
.yf1{bottom:840.502050px;}
.y5c{bottom:849.630450px;}
.yb5{bottom:853.684350px;}
.y10c{bottom:853.687500px;}
.yd1{bottom:859.246200px;}
.ydd{bottom:859.249050px;}
.yf0{bottom:859.252050px;}
.y87{bottom:864.205950px;}
.yb4{bottom:873.934350px;}
.y9f{bottom:876.502500px;}
.y10b{bottom:877.326150px;}
.yd0{bottom:877.999050px;}
.ydc{bottom:878.001900px;}
.yef{bottom:878.002050px;}
.y5b{bottom:881.122950px;}
.y10a{bottom:886.709100px;}
.ydb{bottom:896.749050px;}
.ycf{bottom:896.751900px;}
.y127{bottom:896.752050px;}
.yc8{bottom:905.255850px;}
.yce{bottom:915.499050px;}
.yda{bottom:915.501900px;}
.yee{bottom:915.502050px;}
.y109{bottom:917.872500px;}
.y108{bottom:927.255450px;}
.y86{bottom:930.747900px;}
.y5a{bottom:931.384950px;}
.yed{bottom:934.247850px;}
.ycd{bottom:934.251900px;}
.y97{bottom:935.650500px;}
.yb0{bottom:937.154100px;}
.yd9{bottom:952.999050px;}
.ycc{bottom:953.001900px;}
.yec{bottom:953.002050px;}
.y126{bottom:971.747850px;}
.ycb{bottom:971.751900px;}
.yeb{bottom:971.752050px;}
.y8b{bottom:981.127050px;}
.y59{bottom:986.872950px;}
.yea{bottom:990.497850px;}
.yca{bottom:990.499050px;}
.yd8{bottom:990.501900px;}
.y125{bottom:990.502050px;}
.y8a{bottom:993.727050px;}
.y8e{bottom:994.983150px;}
.yae{bottom:1000.373850px;}
.yd7{bottom:1009.238400px;}
.yc9{bottom:1009.251900px;}
.ye9{bottom:1009.252050px;}
.y124{bottom:1027.997850px;}
.ye8{bottom:1028.002050px;}
.y85{bottom:1046.752050px;}
.y58{bottom:1061.122950px;}
.ye7{bottom:1065.499650px;}
.y123{bottom:1065.502050px;}
.y1{bottom:1148.031450px;}
.y2{bottom:1152.283500px;}
.h4{height:35.364000px;}
.h18{height:39.776400px;}
.h19{height:43.263000px;}
.h1a{height:43.264500px;}
.hb{height:43.952400px;}
.hc{height:43.963800px;}
.h1d{height:43.975200px;}
.hd{height:44.004600px;}
.h1e{height:44.006400px;}
.h22{height:44.056800px;}
.h2{height:45.468000px;}
.ha{height:45.720000px;}
.h5{height:47.913600px;}
.h1f{height:47.925600px;}
.h6{height:47.930400px;}
.h1c{height:47.945400px;}
.h8{height:47.947200px;}
.h17{height:47.968800px;}
.h7{height:48.006000px;}
.h12{height:50.292000px;}
.h15{height:53.314296px;}
.h3{height:55.614000px;}
.h23{height:61.216800px;}
.hf{height:65.676000px;}
.h9{height:67.200000px;}
.h16{height:72.622200px;}
.h21{height:77.308200px;}
.h20{height:81.432000px;}
.h13{height:123.000000px;}
.h1b{height:147.354000px;}
.h14{height:160.020000px;}
.h10{height:166.656000px;}
.he{height:168.981120px;}
.h11{height:327.402000px;}
.h0{height:1211.811000px;}
.h1{height:1212.000000px;}
.w3{width:-20.182500px;}
.w2{width:0.000000px;}
.w9{width:56.763000px;}
.wa{width:56.764500px;}
.w6{width:161.434500px;}
.w8{width:231.094500px;}
.w7{width:279.993000px;}
.w4{width:460.500750px;}
.w5{width:597.726000px;}
.w0{width:901.417500px;}
.w1{width:901.500000px;}
.x0{left:0.000000px;}
.xc{left:7.455000px;}
.x16{left:20.183250px;}
.x2c{left:24.121650px;}
.xa{left:29.763600px;}
.x3{left:51.023700px;}
.x2{left:55.975050px;}
.x3e{left:59.527500px;}
.x17{left:61.653600px;}
.x1b{left:64.955700px;}
.x19{left:74.758500px;}
.x27{left:76.621950px;}
.x43{left:85.022700px;}
.x18{left:86.346900px;}
.x41{left:90.566250px;}
.x11{left:93.543300px;}
.x40{left:99.127050px;}
.x2e{left:104.173200px;}
.x12{left:106.299150px;}
.x34{left:108.000000px;}
.x2a{left:111.872400px;}
.x35{left:120.755850px;}
.x29{left:135.872400px;}
.x24{left:156.579000px;}
.x36{left:158.029350px;}
.x22{left:163.752150px;}
.x20{left:170.128950px;}
.x33{left:180.743400px;}
.x44{left:193.286550px;}
.x1a{left:199.881900px;}
.x32{left:202.719600px;}
.x2b{left:207.121500px;}
.x45{left:212.137050px;}
.x1e{left:225.871200px;}
.x2f{left:239.082750px;}
.x30{left:250.083900px;}
.x31{left:275.120400px;}
.xe{left:289.133550px;}
.x25{left:294.871950px;}
.xf{left:301.756500px;}
.x3f{left:308.769450px;}
.x4{left:310.393650px;}
.x8{left:312.519750px;}
.x46{left:317.125200px;}
.x23{left:333.349950px;}
.x42{left:340.429500px;}
.x1d{left:342.724200px;}
.x7{left:344.409450px;}
.x28{left:350.043000px;}
.x13{left:352.913400px;}
.x1{left:356.360250px;}
.x37{left:361.266000px;}
.x38{left:385.675950px;}
.x10{left:398.880000px;}
.x48{left:405.685050px;}
.x14{left:416.943000px;}
.xd{left:428.572200px;}
.x26{left:452.107500px;}
.x47{left:461.614950px;}
.x49{left:477.969000px;}
.x21{left:479.014050px;}
.x4a{left:527.676750px;}
.x5{left:569.763750px;}
.x6{left:582.519750px;}
.x15{left:612.283500px;}
.x3b{left:637.284600px;}
.x39{left:640.292850px;}
.x2d{left:648.100500px;}
.x3c{left:659.091150px;}
.x3d{left:664.546050px;}
.x3a{left:677.967600px;}
.x1f{left:691.377600px;}
.x1c{left:743.528700px;}
.x4b{left:815.067750px;}
.x9{left:901.417500px;}
.xb{left:921.600000px;}
@media print{
.v4{vertical-align:-5.318400pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:5.333333pt;}
.v2{vertical-align:15.118400pt;}
.v3{vertical-align:33.315200pt;}
.ls29{letter-spacing:-2.357333pt;}
.ls39{letter-spacing:-1.594667pt;}
.ls2e{letter-spacing:-1.178667pt;}
.ls24{letter-spacing:-1.120000pt;}
.ls2f{letter-spacing:-0.696000pt;}
.ls34{letter-spacing:-0.554667pt;}
.ls1f{letter-spacing:-0.485333pt;}
.ls30{letter-spacing:-0.464000pt;}
.ls37{letter-spacing:-0.441600pt;}
.ls2a{letter-spacing:-0.343467pt;}
.ls3a{letter-spacing:-0.232000pt;}
.ls2b{letter-spacing:-0.196267pt;}
.ls35{letter-spacing:-0.147200pt;}
.ls36{letter-spacing:-0.098133pt;}
.ls20{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.049067pt;}
.ls11{letter-spacing:0.098133pt;}
.ls26{letter-spacing:0.138667pt;}
.ls15{letter-spacing:0.139200pt;}
.ls3{letter-spacing:0.147200pt;}
.ls1d{letter-spacing:0.163792pt;}
.ls27{letter-spacing:0.171733pt;}
.ls1b{letter-spacing:0.176000pt;}
.ls0{letter-spacing:0.186667pt;}
.ls1{letter-spacing:0.196267pt;}
.ls1a{letter-spacing:0.208000pt;}
.ls31{letter-spacing:0.232000pt;}
.ls1e{letter-spacing:0.240000pt;}
.ls12{letter-spacing:0.245333pt;}
.ls22{letter-spacing:0.266667pt;}
.ls21{letter-spacing:0.280000pt;}
.ls9{letter-spacing:0.294400pt;}
.ls8{letter-spacing:0.343467pt;}
.ls17{letter-spacing:0.346667pt;}
.ls16{letter-spacing:0.371200pt;}
.ls5{letter-spacing:0.392533pt;}
.lsa{letter-spacing:0.441600pt;}
.lsb{letter-spacing:0.490667pt;}
.ls2d{letter-spacing:0.539733pt;}
.ls38{letter-spacing:0.588800pt;}
.ls7{letter-spacing:0.637867pt;}
.ls4{letter-spacing:0.686933pt;}
.ls6{letter-spacing:0.736000pt;}
.ls28{letter-spacing:0.760533pt;}
.lsd{letter-spacing:0.785067pt;}
.ls13{letter-spacing:0.834133pt;}
.ls18{letter-spacing:0.853333pt;}
.lsc{letter-spacing:0.883200pt;}
.ls19{letter-spacing:0.901333pt;}
.ls2c{letter-spacing:0.932267pt;}
.ls32{letter-spacing:0.981333pt;}
.ls25{letter-spacing:1.005867pt;}
.lse{letter-spacing:1.128533pt;}
.lsf{letter-spacing:1.373867pt;}
.ls33{letter-spacing:1.619200pt;}
.ls23{letter-spacing:1.680000pt;}
.ls1c{letter-spacing:21.158933pt;}
.ls14{letter-spacing:21.631467pt;}
.ls10{letter-spacing:21.632000pt;}
.ws92{word-spacing:-13.131200pt;}
.ws2{word-spacing:-13.038400pt;}
.ws44{word-spacing:-12.899200pt;}
.ws94{word-spacing:-12.667200pt;}
.ws3{word-spacing:-12.284400pt;}
.ws1{word-spacing:-12.021333pt;}
.ws42{word-spacing:-11.285333pt;}
.ws0{word-spacing:-11.040000pt;}
.ws7{word-spacing:-3.925333pt;}
.ws18{word-spacing:-3.876267pt;}
.wsa{word-spacing:-3.827200pt;}
.ws57{word-spacing:-3.778133pt;}
.ws50{word-spacing:-3.729067pt;}
.ws20{word-spacing:-3.630933pt;}
.ws89{word-spacing:-3.532800pt;}
.ws79{word-spacing:-3.287467pt;}
.ws3a{word-spacing:-2.993067pt;}
.ws28{word-spacing:-2.986667pt;}
.ws49{word-spacing:-2.796800pt;}
.wsa1{word-spacing:-2.747733pt;}
.ws27{word-spacing:-2.600533pt;}
.ws29{word-spacing:-2.598400pt;}
.ws38{word-spacing:-2.551467pt;}
.ws40{word-spacing:-2.502400pt;}
.ws60{word-spacing:-2.453333pt;}
.ws33{word-spacing:-2.402283pt;}
.ws30{word-spacing:-2.170667pt;}
.ws12{word-spacing:-2.158933pt;}
.ws3d{word-spacing:-2.109867pt;}
.ws21{word-spacing:-2.060800pt;}
.ws47{word-spacing:-1.962667pt;}
.wsb{word-spacing:-1.864533pt;}
.ws51{word-spacing:-1.815467pt;}
.ws2f{word-spacing:-1.733333pt;}
.ws6f{word-spacing:-1.717333pt;}
.wsa7{word-spacing:-1.668267pt;}
.wsc{word-spacing:-1.619200pt;}
.ws24{word-spacing:-1.570133pt;}
.ws19{word-spacing:-1.472000pt;}
.ws78{word-spacing:-1.177600pt;}
.ws31{word-spacing:-1.120000pt;}
.ws3b{word-spacing:-1.079467pt;}
.ws16{word-spacing:-0.981333pt;}
.ws2b{word-spacing:-0.853333pt;}
.ws13{word-spacing:-0.785067pt;}
.ws9{word-spacing:-0.736000pt;}
.ws76{word-spacing:-0.686933pt;}
.ws3e{word-spacing:-0.637867pt;}
.ws6a{word-spacing:-0.588800pt;}
.ws4d{word-spacing:-0.490667pt;}
.ws1c{word-spacing:-0.294400pt;}
.ws8d{word-spacing:-0.280000pt;}
.ws6c{word-spacing:-0.278400pt;}
.ws97{word-spacing:-0.266667pt;}
.ws96{word-spacing:-0.232000pt;}
.ws41{word-spacing:-0.147200pt;}
.ws2a{word-spacing:-0.139200pt;}
.ws34{word-spacing:-0.138667pt;}
.ws87{word-spacing:-0.098133pt;}
.ws4{word-spacing:0.000000pt;}
.ws58{word-spacing:0.049067pt;}
.ws7a{word-spacing:0.098133pt;}
.ws74{word-spacing:0.196267pt;}
.wsa2{word-spacing:0.294400pt;}
.ws35{word-spacing:0.343467pt;}
.ws7d{word-spacing:0.392533pt;}
.ws72{word-spacing:0.441600pt;}
.ws5{word-spacing:0.485333pt;}
.ws88{word-spacing:0.539733pt;}
.ws6d{word-spacing:0.554667pt;}
.ws73{word-spacing:0.686933pt;}
.ws62{word-spacing:0.736000pt;}
.ws8{word-spacing:0.834133pt;}
.ws8a{word-spacing:0.883200pt;}
.ws68{word-spacing:0.981333pt;}
.ws1e{word-spacing:1.079467pt;}
.ws85{word-spacing:1.128533pt;}
.ws1d{word-spacing:1.177600pt;}
.ws5f{word-spacing:1.178667pt;}
.ws5b{word-spacing:1.226667pt;}
.ws61{word-spacing:1.275733pt;}
.wsa3{word-spacing:1.373867pt;}
.ws4a{word-spacing:1.472000pt;}
.ws8c{word-spacing:1.521067pt;}
.ws7f{word-spacing:1.570133pt;}
.ws95{word-spacing:1.594667pt;}
.ws48{word-spacing:1.668267pt;}
.ws32{word-spacing:1.680000pt;}
.ws17{word-spacing:1.717333pt;}
.ws64{word-spacing:1.766400pt;}
.ws71{word-spacing:1.815467pt;}
.ws3f{word-spacing:1.913600pt;}
.ws98{word-spacing:1.962667pt;}
.ws66{word-spacing:2.060800pt;}
.wsa0{word-spacing:2.109867pt;}
.wsf{word-spacing:2.158933pt;}
.ws8b{word-spacing:2.208000pt;}
.ws1f{word-spacing:2.257067pt;}
.ws54{word-spacing:2.355200pt;}
.ws46{word-spacing:2.357333pt;}
.ws2e{word-spacing:2.496000pt;}
.ws22{word-spacing:2.551467pt;}
.ws82{word-spacing:2.600533pt;}
.ws23{word-spacing:2.649600pt;}
.ws53{word-spacing:2.698667pt;}
.ws1b{word-spacing:2.747733pt;}
.ws9c{word-spacing:2.796800pt;}
.ws5e{word-spacing:2.845867pt;}
.ws86{word-spacing:2.894933pt;}
.ws37{word-spacing:2.993067pt;}
.ws52{word-spacing:3.189333pt;}
.ws11{word-spacing:3.238400pt;}
.ws9e{word-spacing:3.336533pt;}
.ws5d{word-spacing:3.385600pt;}
.ws7e{word-spacing:3.434667pt;}
.ws5c{word-spacing:3.483733pt;}
.ws26{word-spacing:3.581867pt;}
.ws4f{word-spacing:3.630933pt;}
.wsa6{word-spacing:3.925333pt;}
.ws83{word-spacing:3.974400pt;}
.ws81{word-spacing:4.023467pt;}
.ws9a{word-spacing:4.072533pt;}
.wsd{word-spacing:4.121600pt;}
.ws4c{word-spacing:4.317867pt;}
.ws8f{word-spacing:4.366933pt;}
.ws99{word-spacing:4.416000pt;}
.ws8e{word-spacing:4.563200pt;}
.ws55{word-spacing:4.661333pt;}
.ws15{word-spacing:4.759467pt;}
.ws7c{word-spacing:4.808533pt;}
.wse{word-spacing:4.906667pt;}
.ws69{word-spacing:5.053867pt;}
.ws65{word-spacing:5.152000pt;}
.ws10{word-spacing:5.299200pt;}
.ws6{word-spacing:5.348267pt;}
.ws14{word-spacing:5.397333pt;}
.ws1a{word-spacing:5.446400pt;}
.ws4e{word-spacing:5.544533pt;}
.ws77{word-spacing:5.642667pt;}
.ws9d{word-spacing:5.789867pt;}
.ws9b{word-spacing:5.986133pt;}
.ws75{word-spacing:6.035200pt;}
.ws3c{word-spacing:6.378667pt;}
.ws56{word-spacing:6.427733pt;}
.ws9f{word-spacing:6.574933pt;}
.wsa4{word-spacing:6.673067pt;}
.ws67{word-spacing:7.114667pt;}
.ws2c{word-spacing:7.488000pt;}
.ws70{word-spacing:7.507200pt;}
.ws63{word-spacing:7.605333pt;}
.ws39{word-spacing:7.850667pt;}
.ws80{word-spacing:7.948800pt;}
.wsa5{word-spacing:7.997867pt;}
.ws4b{word-spacing:8.390400pt;}
.ws45{word-spacing:8.862400pt;}
.ws5a{word-spacing:9.322667pt;}
.ws2d{word-spacing:9.498667pt;}
.ws59{word-spacing:10.058667pt;}
.ws6b{word-spacing:10.745600pt;}
.ws36{word-spacing:11.874133pt;}
.ws6e{word-spacing:11.923200pt;}
.ws84{word-spacing:12.659200pt;}
.ws25{word-spacing:12.708267pt;}
.ws7b{word-spacing:14.082133pt;}
.ws93{word-spacing:45.982400pt;}
.ws90{word-spacing:51.132800pt;}
.ws91{word-spacing:126.625600pt;}
.ws43{word-spacing:264.707733pt;}
._d{margin-left:-1187.468800pt;}
._f{margin-left:-831.761067pt;}
._14{margin-left:-25.378133pt;}
._b{margin-left:-19.829867pt;}
._3{margin-left:-14.769067pt;}
._13{margin-left:-12.899200pt;}
._15{margin-left:-10.068800pt;}
._12{margin-left:-8.916267pt;}
._7{margin-left:-7.937600pt;}
._a{margin-left:-6.715414pt;}
._6{margin-left:-5.104000pt;}
._0{margin-left:-3.434667pt;}
._5{margin-left:-2.292267pt;}
._2{margin-left:-0.907733pt;}
._1{width:1.489600pt;}
._4{width:2.448427pt;}
._8{width:3.364373pt;}
._16{width:6.840000pt;}
._11{width:21.761600pt;}
._e{width:393.889600pt;}
._10{width:797.465067pt;}
._9{width:1001.396267pt;}
._c{width:1395.614400pt;}
.fs2{font-size:37.333333pt;}
.fs7{font-size:46.400000pt;}
.fs0{font-size:48.000000pt;}
.fs3{font-size:49.066667pt;}
.fs6{font-size:53.333333pt;}
.fsc{font-size:54.597333pt;}
.fs4{font-size:56.000000pt;}
.fsa{font-size:58.666667pt;}
.fs1{font-size:69.333333pt;}
.fs5{font-size:85.333333pt;}
.fs9{font-size:170.666667pt;}
.fsb{font-size:186.666667pt;}
.fs8{font-size:197.120000pt;}
.y0{bottom:0.000000pt;}
.ya0{bottom:10.211067pt;}
.y98{bottom:10.211333pt;}
.y9e{bottom:10.211600pt;}
.y9a{bottom:10.212000pt;}
.y9c{bottom:10.212267pt;}
.y65{bottom:12.975200pt;}
.y3{bottom:21.112933pt;}
.y6d{bottom:26.218369pt;}
.y6c{bottom:43.707467pt;}
.ya1{bottom:56.474400pt;}
.y62{bottom:60.322400pt;}
.y64{bottom:63.655200pt;}
.y6b{bottom:63.871836pt;}
.y61{bottom:80.327733pt;}
.y3f{bottom:80.438667pt;}
.ya9{bottom:80.442400pt;}
.y7b{bottom:80.442533pt;}
.ya5{bottom:80.446133pt;}
.y20{bottom:80.446267pt;}
.y7f{bottom:80.447333pt;}
.y6a{bottom:81.360933pt;}
.y84{bottom:95.779600pt;}
.y3e{bottom:97.109067pt;}
.y122{bottom:97.110400pt;}
.ya8{bottom:97.112800pt;}
.y1f{bottom:97.112933pt;}
.ye5{bottom:97.114000pt;}
.y55{bottom:97.115867pt;}
.y7e{bottom:97.117733pt;}
.y69{bottom:100.187600pt;}
.y60{bottom:100.333067pt;}
.y3d{bottom:112.446133pt;}
.ya4{bottom:113.779467pt;}
.y1e{bottom:113.779600pt;}
.ye4{bottom:113.784400pt;}
.y54{bottom:113.785067pt;}
.y68{bottom:119.014400pt;}
.y5f{bottom:120.338400pt;}
.y53{bottom:130.431067pt;}
.ya7{bottom:130.438667pt;}
.y83{bottom:130.438800pt;}
.y3c{bottom:130.446133pt;}
.y1d{bottom:130.446267pt;}
.y3a{bottom:145.779467pt;}
.y52{bottom:147.100267pt;}
.y1c{bottom:147.105467pt;}
.ya6{bottom:147.109067pt;}
.y3b{bottom:147.112800pt;}
.y7a{bottom:147.112933pt;}
.y51{bottom:163.769467pt;}
.y1b{bottom:163.775867pt;}
.y39{bottom:163.779467pt;}
.y79{bottom:163.779600pt;}
.y63{bottom:167.801333pt;}
.y37{bottom:179.112800pt;}
.y50{bottom:180.438667pt;}
.y38{bottom:180.446133pt;}
.y1a{bottom:180.446267pt;}
.ya3{bottom:180.451067pt;}
.y67{bottom:181.300267pt;}
.yad{bottom:197.102133pt;}
.y36{bottom:197.105333pt;}
.y4f{bottom:197.107867pt;}
.ye6{bottom:197.109200pt;}
.y19{bottom:197.112933pt;}
.y66{bottom:201.305600pt;}
.yac{bottom:213.772533pt;}
.y35{bottom:213.775733pt;}
.y4e{bottom:213.777067pt;}
.y18{bottom:213.779600pt;}
.y121{bottom:213.780000pt;}
.y34{bottom:229.112800pt;}
.y4d{bottom:229.112933pt;}
.y78{bottom:230.442533pt;}
.yab{bottom:230.442933pt;}
.y17{bottom:230.446267pt;}
.y120{bottom:230.449200pt;}
.ya2{bottom:245.779600pt;}
.y11f{bottom:247.095200pt;}
.y4c{bottom:247.102800pt;}
.yaa{bottom:247.109600pt;}
.y33{bottom:247.112800pt;}
.y16{bottom:247.112933pt;}
.y11e{bottom:263.764400pt;}
.y4b{bottom:263.772000pt;}
.y82{bottom:263.775867pt;}
.y32{bottom:263.779467pt;}
.y15{bottom:263.779600pt;}
.y11d{bottom:280.433600pt;}
.y4a{bottom:280.441200pt;}
.y31{bottom:280.442400pt;}
.y77{bottom:280.442533pt;}
.y81{bottom:280.446267pt;}
.y30{bottom:295.779467pt;}
.yc1{bottom:295.851333pt;}
.yc2{bottom:295.853867pt;}
.y12f{bottom:297.101733pt;}
.y49{bottom:297.107867pt;}
.y14{bottom:297.109200pt;}
.y76{bottom:297.112933pt;}
.yc0{bottom:312.520533pt;}
.y12e{bottom:313.772133pt;}
.y11c{bottom:313.773467pt;}
.y7d{bottom:313.775867pt;}
.yfc{bottom:313.776933pt;}
.y48{bottom:313.777067pt;}
.y2f{bottom:313.779467pt;}
.y13{bottom:313.779600pt;}
.y47{bottom:329.112933pt;}
.y12d{bottom:330.438800pt;}
.y11b{bottom:330.442667pt;}
.y2e{bottom:330.446133pt;}
.y12{bottom:330.446267pt;}
.yfb{bottom:330.447333pt;}
.y2d{bottom:347.109067pt;}
.y12c{bottom:347.109200pt;}
.y46{bottom:347.111867pt;}
.y11{bottom:347.112933pt;}
.y2c{bottom:362.446133pt;}
.yfa{bottom:363.775867pt;}
.y10{bottom:363.779600pt;}
.y45{bottom:363.781067pt;}
.yb3{bottom:368.713200pt;}
.y103{bottom:373.779467pt;}
.yc4{bottom:377.049067pt;}
.y44{bottom:380.438667pt;}
.yf{bottom:380.438800pt;}
.y7c{bottom:380.442533pt;}
.y2b{bottom:380.446133pt;}
.y75{bottom:380.446267pt;}
.yb2{bottom:385.382400pt;}
.y102{bottom:390.443600pt;}
.y43{bottom:397.105333pt;}
.y11a{bottom:397.107867pt;}
.ye{bottom:397.109200pt;}
.y2a{bottom:397.112800pt;}
.y6f{bottom:397.112933pt;}
.y101{bottom:407.112800pt;}
.y29{bottom:412.446133pt;}
.y42{bottom:413.774533pt;}
.y72{bottom:413.775867pt;}
.y119{bottom:413.777067pt;}
.yd{bottom:413.779600pt;}
.y80{bottom:413.781733pt;}
.y100{bottom:423.779467pt;}
.yff{bottom:423.781867pt;}
.y12b{bottom:430.438800pt;}
.y41{bottom:430.443733pt;}
.yc{bottom:430.446267pt;}
.ybf{bottom:440.244533pt;}
.yfe{bottom:440.451067pt;}
.y40{bottom:445.779600pt;}
.y118{bottom:447.102800pt;}
.y28{bottom:447.105333pt;}
.y12a{bottom:447.109200pt;}
.yb{bottom:447.112933pt;}
.y56{bottom:449.456800pt;}
.y8f{bottom:456.946267pt;}
.ybe{bottom:458.242000pt;}
.yc7{bottom:463.477600pt;}
.y27{bottom:463.768267pt;}
.y117{bottom:463.772000pt;}
.y74{bottom:463.772133pt;}
.ya{bottom:463.779600pt;}
.ybd{bottom:473.577867pt;}
.yc6{bottom:480.146800pt;}
.y73{bottom:480.435067pt;}
.y116{bottom:480.436133pt;}
.y26{bottom:480.438667pt;}
.yf9{bottom:480.442533pt;}
.y9{bottom:480.446267pt;}
.ybc{bottom:490.244533pt;}
.y107{bottom:491.246800pt;}
.y71{bottom:497.105467pt;}
.y25{bottom:497.109067pt;}
.y8{bottom:497.112933pt;}
.ybb{bottom:506.911200pt;}
.y106{bottom:507.910933pt;}
.y104{bottom:507.913467pt;}
.y115{bottom:513.774533pt;}
.y70{bottom:513.775867pt;}
.y24{bottom:513.779467pt;}
.y7{bottom:513.779600pt;}
.y96{bottom:514.843733pt;}
.yba{bottom:523.577867pt;}
.y105{bottom:524.580133pt;}
.y95{bottom:528.763733pt;}
.y21{bottom:530.442533pt;}
.y114{bottom:530.443733pt;}
.y23{bottom:530.446133pt;}
.y6{bottom:530.446267pt;}
.yc5{bottom:536.342133pt;}
.yb9{bottom:541.575333pt;}
.y94{bottom:542.683733pt;}
.y5{bottom:547.112933pt;}
.y93{bottom:556.603733pt;}
.yb8{bottom:558.244533pt;}
.y6e{bottom:562.446267pt;}
.y22{bottom:563.779467pt;}
.y4{bottom:563.779600pt;}
.yf8{bottom:580.446267pt;}
.yfd{bottom:580.671867pt;}
.yc3{bottom:586.342133pt;}
.y57{bottom:595.779600pt;}
.yf7{bottom:597.112933pt;}
.y91{bottom:602.782133pt;}
.y90{bottom:609.429467pt;}
.ye3{bottom:613.779600pt;}
.yb1{bottom:614.439867pt;}
.y92{bottom:616.076933pt;}
.y113{bottom:618.015200pt;}
.y112{bottom:626.361333pt;}
.yf6{bottom:630.446267pt;}
.y129{bottom:647.112933pt;}
.y111{bottom:655.465733pt;}
.y8d{bottom:658.108933pt;}
.y89{bottom:658.771867pt;}
.y128{bottom:663.775867pt;}
.y8c{bottom:669.308933pt;}
.yaf{bottom:670.635333pt;}
.y99{bottom:671.645333pt;}
.y110{bottom:677.679733pt;}
.yd6{bottom:680.436000pt;}
.ye2{bottom:680.438533pt;}
.yf5{bottom:680.446267pt;}
.yd5{bottom:697.105200pt;}
.ye1{bottom:697.107733pt;}
.yf4{bottom:697.112933pt;}
.y10f{bottom:698.466933pt;}
.y5e{bottom:699.240400pt;}
.y10e{bottom:706.795733pt;}
.y9b{bottom:707.209333pt;}
.y88{bottom:709.034667pt;}
.yd4{bottom:713.774400pt;}
.ye0{bottom:713.776933pt;}
.yf3{bottom:713.779600pt;}
.yb7{bottom:725.497200pt;}
.y5d{bottom:727.233733pt;}
.yd3{bottom:730.443600pt;}
.ydf{bottom:730.446133pt;}
.yf2{bottom:730.446267pt;}
.y10d{bottom:736.155333pt;}
.y9d{bottom:740.312000pt;}
.yb6{bottom:742.163867pt;}
.yde{bottom:747.107733pt;}
.yd2{bottom:747.112800pt;}
.yf1{bottom:747.112933pt;}
.y5c{bottom:755.227067pt;}
.yb5{bottom:758.830533pt;}
.y10c{bottom:758.833333pt;}
.yd1{bottom:763.774400pt;}
.ydd{bottom:763.776933pt;}
.yf0{bottom:763.779600pt;}
.y87{bottom:768.183067pt;}
.yb4{bottom:776.830533pt;}
.y9f{bottom:779.113333pt;}
.y10b{bottom:779.845467pt;}
.yd0{bottom:780.443600pt;}
.ydc{bottom:780.446133pt;}
.yef{bottom:780.446267pt;}
.y5b{bottom:783.220400pt;}
.y10a{bottom:788.185867pt;}
.ydb{bottom:797.110267pt;}
.ycf{bottom:797.112800pt;}
.y127{bottom:797.112933pt;}
.yc8{bottom:804.671867pt;}
.yce{bottom:813.776933pt;}
.yda{bottom:813.779467pt;}
.yee{bottom:813.779600pt;}
.y109{bottom:815.886667pt;}
.y108{bottom:824.227067pt;}
.y86{bottom:827.331467pt;}
.y5a{bottom:827.897733pt;}
.yed{bottom:830.442533pt;}
.ycd{bottom:830.446133pt;}
.y97{bottom:831.689333pt;}
.yb0{bottom:833.025867pt;}
.yd9{bottom:847.110267pt;}
.ycc{bottom:847.112800pt;}
.yec{bottom:847.112933pt;}
.y126{bottom:863.775867pt;}
.ycb{bottom:863.779467pt;}
.yeb{bottom:863.779600pt;}
.y8b{bottom:872.112933pt;}
.y59{bottom:877.220400pt;}
.yea{bottom:880.442533pt;}
.yca{bottom:880.443600pt;}
.yd8{bottom:880.446133pt;}
.y125{bottom:880.446267pt;}
.y8a{bottom:883.312933pt;}
.y8e{bottom:884.429467pt;}
.yae{bottom:889.221200pt;}
.yd7{bottom:897.100800pt;}
.yc9{bottom:897.112800pt;}
.ye9{bottom:897.112933pt;}
.y124{bottom:913.775867pt;}
.ye8{bottom:913.779600pt;}
.y85{bottom:930.446267pt;}
.y58{bottom:943.220400pt;}
.ye7{bottom:947.110800pt;}
.y123{bottom:947.112933pt;}
.y1{bottom:1020.472400pt;}
.y2{bottom:1024.252000pt;}
.h4{height:31.434667pt;}
.h18{height:35.356800pt;}
.h19{height:38.456000pt;}
.h1a{height:38.457333pt;}
.hb{height:39.068800pt;}
.hc{height:39.078933pt;}
.h1d{height:39.089067pt;}
.hd{height:39.115200pt;}
.h1e{height:39.116800pt;}
.h22{height:39.161600pt;}
.h2{height:40.416000pt;}
.ha{height:40.640000pt;}
.h5{height:42.589867pt;}
.h1f{height:42.600533pt;}
.h6{height:42.604800pt;}
.h1c{height:42.618133pt;}
.h8{height:42.619733pt;}
.h17{height:42.638933pt;}
.h7{height:42.672000pt;}
.h12{height:44.704000pt;}
.h15{height:47.390485pt;}
.h3{height:49.434667pt;}
.h23{height:54.414933pt;}
.hf{height:58.378667pt;}
.h9{height:59.733333pt;}
.h16{height:64.553067pt;}
.h21{height:68.718400pt;}
.h20{height:72.384000pt;}
.h13{height:109.333333pt;}
.h1b{height:130.981333pt;}
.h14{height:142.240000pt;}
.h10{height:148.138667pt;}
.he{height:150.205440pt;}
.h11{height:291.024000pt;}
.h0{height:1077.165333pt;}
.h1{height:1077.333333pt;}
.w3{width:-17.940000pt;}
.w2{width:0.000000pt;}
.w9{width:50.456000pt;}
.wa{width:50.457333pt;}
.w6{width:143.497333pt;}
.w8{width:205.417333pt;}
.w7{width:248.882667pt;}
.w4{width:409.334000pt;}
.w5{width:531.312000pt;}
.w0{width:801.260000pt;}
.w1{width:801.333333pt;}
.x0{left:0.000000pt;}
.xc{left:6.626667pt;}
.x16{left:17.940667pt;}
.x2c{left:21.441467pt;}
.xa{left:26.456533pt;}
.x3{left:45.354400pt;}
.x2{left:49.755600pt;}
.x3e{left:52.913333pt;}
.x17{left:54.803200pt;}
.x1b{left:57.738400pt;}
.x19{left:66.452000pt;}
.x27{left:68.108400pt;}
.x43{left:75.575733pt;}
.x18{left:76.752800pt;}
.x41{left:80.503333pt;}
.x11{left:83.149600pt;}
.x40{left:88.112933pt;}
.x2e{left:92.598400pt;}
.x12{left:94.488133pt;}
.x34{left:96.000000pt;}
.x2a{left:99.442133pt;}
.x35{left:107.338533pt;}
.x29{left:120.775467pt;}
.x24{left:139.181333pt;}
.x36{left:140.470533pt;}
.x22{left:145.557467pt;}
.x20{left:151.225733pt;}
.x33{left:160.660800pt;}
.x44{left:171.810267pt;}
.x1a{left:177.672800pt;}
.x32{left:180.195200pt;}
.x2b{left:184.108000pt;}
.x45{left:188.566267pt;}
.x1e{left:200.774400pt;}
.x2f{left:212.518000pt;}
.x30{left:222.296800pt;}
.x31{left:244.551467pt;}
.xe{left:257.007600pt;}
.x25{left:262.108400pt;}
.xf{left:268.228000pt;}
.x3f{left:274.461733pt;}
.x4{left:275.905467pt;}
.x8{left:277.795333pt;}
.x46{left:281.889067pt;}
.x23{left:296.311067pt;}
.x42{left:302.604000pt;}
.x1d{left:304.643733pt;}
.x7{left:306.141733pt;}
.x28{left:311.149333pt;}
.x13{left:313.700800pt;}
.x1{left:316.764667pt;}
.x37{left:321.125333pt;}
.x38{left:342.823067pt;}
.x10{left:354.560000pt;}
.x48{left:360.608933pt;}
.x14{left:370.616000pt;}
.xd{left:380.953067pt;}
.x26{left:401.873333pt;}
.x47{left:410.324400pt;}
.x49{left:424.861333pt;}
.x21{left:425.790267pt;}
.x4a{left:469.046000pt;}
.x5{left:506.456667pt;}
.x6{left:517.795333pt;}
.x15{left:544.252000pt;}
.x3b{left:566.475200pt;}
.x39{left:569.149200pt;}
.x2d{left:576.089333pt;}
.x3c{left:585.858800pt;}
.x3d{left:590.707600pt;}
.x3a{left:602.637867pt;}
.x1f{left:614.557867pt;}
.x1c{left:660.914400pt;}
.x4b{left:724.504667pt;}
.x9{left:801.260000pt;}
.xb{left:819.200000pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  