
    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_db8bf6a9d55267afaede9361.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.968000;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_519ab308b0cf46a09ea49e6e.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.915000;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_121950fdb5b3a227b10adb32.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.712000;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_f6e44218a70fade954480aa7.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.946000;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_558d1f38a6088dd9bfec1c59.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.969000;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_a6cffeadf07a7cf5bbd05cd0.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.915000;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_c59278bc136ea6df15dee6e6.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.969000;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_7147b4a83c0b0696a70029db.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.059000;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_ce1bb6cee52dc025e1d65a08.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.982000;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_9a3a6496d634d939836f4b68.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.915000;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_ce1bb6cee52dc025e1d65a08.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.982000;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_c59278bc136ea6df15dee6e6.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.969000;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_ce1bb6cee52dc025e1d65a08.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.982000;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_c59278bc136ea6df15dee6e6.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.969000;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_83efd16c790ec1e2948ffc12.woff2')format("woff");}.fff{font-family:fff;line-height:0.678223;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_eab2d802b4e081675d111979.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.951000;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_ce1bb6cee52dc025e1d65a08.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.982000;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_ce1bb6cee52dc025e1d65a08.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.982000;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_6850366bf3f67731b81789dc.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.706000;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_14a7bdadb8a62741623659b4.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.915000;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_ce1bb6cee52dc025e1d65a08.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.982000;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_ce1bb6cee52dc025e1d65a08.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.982000;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;}
.m4{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m3{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m0{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);}
.m2{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);}
.m1{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);}
.v4{vertical-align:-27.907800px;}
.v9{vertical-align:-23.256600px;}
.v5{vertical-align:-20.931000px;}
.vb{vertical-align:-19.768200px;}
.v7{vertical-align:-4.296600px;}
.v1{vertical-align:-1.170000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:2.976600px;}
.v2{vertical-align:4.296600px;}
.va{vertical-align:19.768200px;}
.v8{vertical-align:23.256600px;}
.v3{vertical-align:27.907800px;}
.vc{vertical-align:30.600000px;}
.ls58{letter-spacing:-8.211000px;}
.ls5{letter-spacing:-5.904000px;}
.ls6{letter-spacing:-5.760000px;}
.ls3b{letter-spacing:-5.328000px;}
.ls2c{letter-spacing:-4.582380px;}
.ls57{letter-spacing:-4.437000px;}
.lsa{letter-spacing:-2.952000px;}
.ls7{letter-spacing:-2.880000px;}
.ls56{letter-spacing:-2.550000px;}
.ls10{letter-spacing:-2.400000px;}
.ls36{letter-spacing:-2.295000px;}
.ls3a{letter-spacing:-2.256000px;}
.ls22{letter-spacing:-2.250000px;}
.ls16{letter-spacing:-2.220000px;}
.ls8{letter-spacing:-2.140776px;}
.ls2a{letter-spacing:-1.993860px;}
.ls12{letter-spacing:-1.920000px;}
.ls2f{letter-spacing:-1.887000px;}
.ls40{letter-spacing:-1.860000px;}
.lsd{letter-spacing:-1.800000px;}
.ls3c{letter-spacing:-1.776000px;}
.ls4d{letter-spacing:-1.767000px;}
.ls3e{letter-spacing:-1.740000px;}
.lsb{letter-spacing:-1.721016px;}
.ls4c{letter-spacing:-1.710000px;}
.ls9{letter-spacing:-1.679040px;}
.ls29{letter-spacing:-1.500000px;}
.ls11{letter-spacing:-1.440000px;}
.ls35{letter-spacing:-1.350000px;}
.ls59{letter-spacing:-1.326000px;}
.ls28{letter-spacing:-1.320000px;}
.ls2e{letter-spacing:-1.275000px;}
.lse{letter-spacing:-1.260000px;}
.ls50{letter-spacing:-1.254000px;}
.ls3{letter-spacing:-1.200000px;}
.ls4e{letter-spacing:-1.197000px;}
.ls5b{letter-spacing:-1.173000px;}
.ls20{letter-spacing:-1.140000px;}
.ls5a{letter-spacing:-1.122000px;}
.lsf{letter-spacing:-1.080000px;}
.ls30{letter-spacing:-1.071000px;}
.ls3d{letter-spacing:-1.049400px;}
.ls53{letter-spacing:-1.026000px;}
.ls1c{letter-spacing:-1.020000px;}
.ls3f{letter-spacing:-1.014420px;}
.ls4{letter-spacing:-1.008000px;}
.ls1{letter-spacing:-1.005000px;}
.ls43{letter-spacing:-0.969000px;}
.ls1e{letter-spacing:-0.960000px;}
.ls51{letter-spacing:-0.912000px;}
.ls21{letter-spacing:-0.900000px;}
.ls18{letter-spacing:-0.840000px;}
.ls41{letter-spacing:-0.798000px;}
.ls2d{letter-spacing:-0.780000px;}
.ls1b{letter-spacing:-0.734580px;}
.ls25{letter-spacing:-0.720000px;}
.ls1d{letter-spacing:-0.699600px;}
.ls46{letter-spacing:-0.684000px;}
.ls34{letter-spacing:-0.660000px;}
.ls4f{letter-spacing:-0.627000px;}
.ls27{letter-spacing:-0.600000px;}
.lsc{letter-spacing:-0.540000px;}
.ls54{letter-spacing:-0.513000px;}
.ls47{letter-spacing:-0.510000px;}
.ls26{letter-spacing:-0.480000px;}
.ls44{letter-spacing:-0.456000px;}
.ls23{letter-spacing:-0.420000px;}
.ls42{letter-spacing:-0.399000px;}
.ls19{letter-spacing:-0.360000px;}
.ls24{letter-spacing:-0.300000px;}
.ls17{letter-spacing:-0.240000px;}
.ls55{letter-spacing:-0.228000px;}
.ls39{letter-spacing:-0.209880px;}
.ls1a{letter-spacing:-0.180000px;}
.ls1f{letter-spacing:-0.120000px;}
.ls45{letter-spacing:-0.114000px;}
.ls2{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.030000px;}
.ls31{letter-spacing:0.060000px;}
.ls2b{letter-spacing:0.120000px;}
.ls15{letter-spacing:0.180000px;}
.ls4a{letter-spacing:0.399000px;}
.ls0{letter-spacing:0.420000px;}
.ls4b{letter-spacing:0.513000px;}
.ls48{letter-spacing:0.741000px;}
.ls37{letter-spacing:0.960000px;}
.ls49{letter-spacing:1.140000px;}
.ls52{letter-spacing:1.197000px;}
.ls13{letter-spacing:42.240000px;}
.ls38{letter-spacing:377.424000px;}
.ls33{letter-spacing:779.084700px;}
.ls32{letter-spacing:814.652100px;}
.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;}
}
.ws6b{word-spacing:-389.856000px;}
.ws33{word-spacing:-17.760000px;}
.ws9{word-spacing:-16.680000px;}
.ws1c{word-spacing:-16.500000px;}
.ws1b{word-spacing:-16.260000px;}
.ws8{word-spacing:-15.960000px;}
.ws18{word-spacing:-15.540000px;}
.ws35{word-spacing:-14.340000px;}
.ws3c{word-spacing:-13.209000px;}
.ws8c{word-spacing:-12.825000px;}
.wsa{word-spacing:-12.768000px;}
.ws60{word-spacing:-12.189000px;}
.ws8d{word-spacing:-11.115000px;}
.wsb5{word-spacing:-10.659000px;}
.ws6d{word-spacing:-10.656000px;}
.ws79{word-spacing:-10.488000px;}
.ws1{word-spacing:-9.696000px;}
.ws19{word-spacing:-9.059820px;}
.ws6a{word-spacing:-8.849940px;}
.wsb4{word-spacing:-8.772000px;}
.ws3{word-spacing:-8.647056px;}
.ws77{word-spacing:-8.360220px;}
.ws1a{word-spacing:-8.325240px;}
.ws7{word-spacing:-8.153838px;}
.ws78{word-spacing:-8.045400px;}
.ws44{word-spacing:-7.700847px;}
.ws6c{word-spacing:-7.104000px;}
.ws34{word-spacing:-7.065960px;}
.ws5{word-spacing:-6.968016px;}
.ws6{word-spacing:-6.926040px;}
.ws4{word-spacing:-6.506280px;}
.wsc{word-spacing:-5.040000px;}
.ws0{word-spacing:-0.045000px;}
.wsb{word-spacing:0.000000px;}
.ws68{word-spacing:0.060000px;}
.ws9e{word-spacing:0.171000px;}
.ws13{word-spacing:0.180000px;}
.ws9d{word-spacing:0.228000px;}
.ws7d{word-spacing:0.240000px;}
.wsc0{word-spacing:0.255000px;}
.wsa1{word-spacing:0.342000px;}
.ws53{word-spacing:0.360000px;}
.ws91{word-spacing:0.399000px;}
.ws76{word-spacing:0.420000px;}
.ws22{word-spacing:0.480000px;}
.ws7e{word-spacing:0.600000px;}
.ws23{word-spacing:0.699600px;}
.ws8f{word-spacing:0.741000px;}
.wsbd{word-spacing:0.765000px;}
.ws97{word-spacing:0.798000px;}
.ws56{word-spacing:0.840000px;}
.ws29{word-spacing:0.900000px;}
.ws2{word-spacing:0.960000px;}
.ws24{word-spacing:1.020000px;}
.ws81{word-spacing:1.049400px;}
.wsa3{word-spacing:1.083000px;}
.ws82{word-spacing:1.140000px;}
.ws32{word-spacing:1.152000px;}
.ws9c{word-spacing:1.197000px;}
.ws31{word-spacing:1.200000px;}
.ws7f{word-spacing:1.260000px;}
.ws8b{word-spacing:1.275000px;}
.ws2d{word-spacing:1.320000px;}
.ws69{word-spacing:1.428000px;}
.ws15{word-spacing:1.440000px;}
.ws14{word-spacing:1.500000px;}
.ws86{word-spacing:1.539000px;}
.ws89{word-spacing:1.581000px;}
.wsa4{word-spacing:1.596000px;}
.ws2c{word-spacing:1.620000px;}
.ws5e{word-spacing:1.632000px;}
.ws93{word-spacing:1.653000px;}
.ws2b{word-spacing:1.680000px;}
.ws8e{word-spacing:1.710000px;}
.ws4a{word-spacing:1.740000px;}
.ws1d{word-spacing:1.800000px;}
.ws55{word-spacing:1.860000px;}
.ws5b{word-spacing:1.887000px;}
.ws16{word-spacing:1.920000px;}
.wsa0{word-spacing:1.938000px;}
.ws21{word-spacing:1.980000px;}
.ws28{word-spacing:2.040000px;}
.ws90{word-spacing:2.052000px;}
.ws5a{word-spacing:2.100000px;}
.wsbe{word-spacing:2.142000px;}
.wsa2{word-spacing:2.166000px;}
.ws4f{word-spacing:2.220000px;}
.ws4c{word-spacing:2.250000px;}
.ws73{word-spacing:2.256000px;}
.ws59{word-spacing:2.340000px;}
.ws87{word-spacing:2.397000px;}
.ws49{word-spacing:2.460000px;}
.ws11{word-spacing:2.520000px;}
.wsbc{word-spacing:2.550000px;}
.ws71{word-spacing:2.580000px;}
.ws8a{word-spacing:2.601000px;}
.ws27{word-spacing:2.700000px;}
.ws95{word-spacing:2.793000px;}
.ws88{word-spacing:2.805000px;}
.ws70{word-spacing:2.820000px;}
.ws9a{word-spacing:2.850000px;}
.ws46{word-spacing:2.880000px;}
.ws2e{word-spacing:2.940000px;}
.ws20{word-spacing:3.000000px;}
.ws48{word-spacing:3.120000px;}
.ws94{word-spacing:3.135000px;}
.ws7c{word-spacing:3.180000px;}
.ws9f{word-spacing:3.192000px;}
.ws52{word-spacing:3.240000px;}
.ws47{word-spacing:3.360000px;}
.ws74{word-spacing:3.417000px;}
.ws2f{word-spacing:3.420000px;}
.ws9b{word-spacing:3.477000px;}
.ws2a{word-spacing:3.480000px;}
.ws92{word-spacing:3.534000px;}
.ws26{word-spacing:3.540000px;}
.ws99{word-spacing:3.591000px;}
.ws50{word-spacing:3.600000px;}
.wse{word-spacing:3.660000px;}
.wsf{word-spacing:3.720000px;}
.ws25{word-spacing:3.780000px;}
.ws96{word-spacing:3.819000px;}
.ws4d{word-spacing:3.840000px;}
.wsa5{word-spacing:3.876000px;}
.ws4e{word-spacing:3.900000px;}
.ws1f{word-spacing:3.960000px;}
.ws75{word-spacing:3.978000px;}
.ws51{word-spacing:4.020000px;}
.ws5c{word-spacing:4.080000px;}
.wsd{word-spacing:4.140000px;}
.ws85{word-spacing:4.218000px;}
.ws72{word-spacing:4.260000px;}
.ws58{word-spacing:4.320000px;}
.wsbf{word-spacing:4.335000px;}
.ws30{word-spacing:4.380000px;}
.ws5d{word-spacing:4.386000px;}
.ws57{word-spacing:4.440000px;}
.ws80{word-spacing:4.500000px;}
.ws7b{word-spacing:4.560000px;}
.ws54{word-spacing:4.582380px;}
.ws98{word-spacing:4.617000px;}
.ws4b{word-spacing:4.680000px;}
.ws84{word-spacing:4.845000px;}
.ws1e{word-spacing:4.860000px;}
.ws83{word-spacing:4.902000px;}
.ws10{word-spacing:5.100000px;}
.ws12{word-spacing:5.160000px;}
.ws45{word-spacing:40.014000px;}
.wsa9{word-spacing:99.255000px;}
.ws6e{word-spacing:104.244000px;}
.wsa8{word-spacing:130.902000px;}
.ws7a{word-spacing:172.464000px;}
.wsb3{word-spacing:219.665400px;}
.wsb1{word-spacing:235.067400px;}
.wsb0{word-spacing:239.785200px;}
.wsb2{word-spacing:239.785800px;}
.wsac{word-spacing:246.542400px;}
.wsae{word-spacing:246.543000px;}
.wsaf{word-spacing:250.164000px;}
.wsab{word-spacing:251.260200px;}
.wsaa{word-spacing:258.018000px;}
.wsba{word-spacing:359.367600px;}
.wsa7{word-spacing:363.054600px;}
.wsb7{word-spacing:435.816600px;}
.wsb6{word-spacing:435.817200px;}
.wsad{word-spacing:441.171000px;}
.wsbb{word-spacing:481.257600px;}
.wsb8{word-spacing:483.705600px;}
.wsb9{word-spacing:511.092600px;}
.ws64{word-spacing:523.266000px;}
.ws61{word-spacing:560.443200px;}
.ws62{word-spacing:564.166200px;}
.ws63{word-spacing:596.193600px;}
.ws65{word-spacing:622.206000px;}
.ws67{word-spacing:647.604000px;}
.ws66{word-spacing:674.991000px;}
.ws38{word-spacing:901.545000px;}
.ws40{word-spacing:1039.448400px;}
.ws43{word-spacing:1041.387000px;}
.ws42{word-spacing:1059.339000px;}
.ws3f{word-spacing:1063.062000px;}
.ws3e{word-spacing:1065.918000px;}
.ws41{word-spacing:1074.945000px;}
.ws3a{word-spacing:1085.757000px;}
.ws3b{word-spacing:1087.644000px;}
.ws3d{word-spacing:1096.161000px;}
.ws39{word-spacing:1115.031000px;}
.ws36{word-spacing:1150.017000px;}
.ws37{word-spacing:1154.709000px;}
.ws6f{word-spacing:1458.544800px;}
.ws5f{word-spacing:1776.293400px;}
.ws17{word-spacing:1778.512200px;}
.wsa6{word-spacing:1843.013400px;}
._3a{margin-left:-377.137800px;}
._a{margin-left:-39.843000px;}
._5{margin-left:-8.700648px;}
._9{margin-left:-6.780000px;}
._6{margin-left:-5.776440px;}
._2{margin-left:-4.462200px;}
._8{margin-left:-3.258888px;}
._0{margin-left:-2.211000px;}
._1{margin-left:-1.206000px;}
._7{width:1.205856px;}
._4{width:2.208000px;}
._3b{width:3.552000px;}
._4f{width:6.137232px;}
._3c{width:19.252200px;}
._3{width:42.240000px;}
._3e{width:86.862000px;}
._40{width:111.312888px;}
._41{width:114.527712px;}
._2b{width:118.359000px;}
._49{width:119.453400px;}
._2a{width:120.569400px;}
._48{width:121.798200px;}
._50{width:135.109800px;}
._52{width:157.651800px;}
._53{width:165.538200px;}
._46{width:168.552840px;}
._45{width:171.887400px;}
._3d{width:178.737600px;}
._18{width:182.846400px;}
._19{width:186.944400px;}
._4b{width:188.238600px;}
._43{width:189.810000px;}
._44{width:191.073000px;}
._57{width:194.753880px;}
._15{width:200.154000px;}
._4d{width:211.060800px;}
._4c{width:212.781000px;}
._4a{width:214.108488px;}
._56{width:217.226400px;}
._59{width:218.469192px;}
._2d{width:220.275600px;}
._2f{width:221.511600px;}
._39{width:222.811200px;}
._11{width:224.520000px;}
._36{width:228.906840px;}
._14{width:231.806400px;}
._16{width:234.017400px;}
._1e{width:235.903800px;}
._27{width:237.467400px;}
._22{width:238.475400px;}
._2e{width:244.105800px;}
._38{width:245.667600px;}
._51{width:247.294200px;}
._35{width:248.853600px;}
._31{width:250.416600px;}
._20{width:256.611600px;}
._1d{width:258.856488px;}
._28{width:260.174640px;}
._32{width:269.026440px;}
._42{width:270.209400px;}
._24{width:280.402800px;}
._1c{width:281.455200px;}
._26{width:282.652800px;}
._1b{width:284.540400px;}
._5b{width:286.283400px;}
._3f{width:292.366800px;}
._25{width:305.246400px;}
._4e{width:320.494800px;}
._47{width:324.472800px;}
._5a{width:340.139400px;}
._34{width:374.466000px;}
._54{width:417.507600px;}
._29{width:420.713400px;}
._17{width:423.506400px;}
._55{width:436.683000px;}
._37{width:491.848800px;}
._58{width:493.413600px;}
._13{width:495.596400px;}
._21{width:560.538600px;}
._1f{width:562.425000px;}
._30{width:598.695000px;}
._2c{width:600.581400px;}
._23{width:605.400000px;}
._1a{width:606.879600px;}
._33{width:636.248400px;}
._b{width:645.061200px;}
._c{width:686.700000px;}
._12{width:1037.562000px;}
._f{width:1083.870000px;}
._e{width:1086.081000px;}
._10{width:1131.096000px;}
._d{width:1134.462000px;}
.fc4{color:rgb(246,132,45);}
.fc3{color:rgb(79,76,77);}
.fc1{color:rgb(244,114,22);}
.fc5{color:rgb(255,255,255);}
.fc2{color:rgb(241,71,29);}
.fc0{color:rgb(35,31,32);}
.fse{font-size:29.733000px;}
.fs7{font-size:31.482000px;}
.fsa{font-size:34.980000px;}
.fs0{font-size:40.200000px;}
.fs6{font-size:41.976000px;}
.fsf{font-size:42.000000px;}
.fs1{font-size:45.000000px;}
.fs3{font-size:48.000000px;}
.fsd{font-size:51.000000px;}
.fs8{font-size:54.000000px;}
.fs11{font-size:57.000000px;}
.fs4{font-size:60.000000px;}
.fsc{font-size:63.000000px;}
.fs10{font-size:66.000000px;}
.fs2{font-size:72.000000px;}
.fsb{font-size:75.000000px;}
.fs9{font-size:90.000000px;}
.fs5{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y8{bottom:35.443650px;}
.y3e{bottom:35.773650px;}
.y4{bottom:37.198800px;}
.y169{bottom:76.535100px;}
.y13b{bottom:76.535550px;}
.y3{bottom:78.243900px;}
.y13c{bottom:78.661350px;}
.y57{bottom:84.801900px;}
.y78{bottom:84.802050px;}
.y10c{bottom:85.424550px;}
.y168{bottom:87.165000px;}
.y14f{bottom:87.165300px;}
.y2{bottom:90.243900px;}
.y167{bottom:95.668950px;}
.y150{bottom:95.669250px;}
.yf4{bottom:98.759850px;}
.y1{bottom:102.243900px;}
.y56{bottom:105.801900px;}
.y77{bottom:105.802050px;}
.y10b{bottom:106.424550px;}
.y55{bottom:125.939400px;}
.y76{bottom:125.939550px;}
.y83{bottom:126.801900px;}
.y8f{bottom:126.802050px;}
.y10a{bottom:127.424550px;}
.y31{bottom:147.801900px;}
.y8e{bottom:147.802050px;}
.y109{bottom:148.424550px;}
.y54{bottom:162.576900px;}
.y30{bottom:168.801900px;}
.y75{bottom:168.802050px;}
.y108{bottom:169.424550px;}
.y2f{bottom:189.801900px;}
.y74{bottom:189.802050px;}
.y107{bottom:190.424550px;}
.y3c{bottom:201.891900px;}
.y2e{bottom:210.801900px;}
.y73{bottom:210.802050px;}
.y106{bottom:211.424550px;}
.y3b{bottom:216.291900px;}
.ye0{bottom:224.206500px;}
.y3a{bottom:230.691900px;}
.y2d{bottom:231.801900px;}
.y72{bottom:231.802050px;}
.y105{bottom:232.424550px;}
.ydf{bottom:239.506500px;}
.y152{bottom:239.747250px;}
.y13d{bottom:243.483300px;}
.y151{bottom:249.373500px;}
.y2c{bottom:252.801900px;}
.y71{bottom:252.802050px;}
.y104{bottom:253.424550px;}
.yde{bottom:254.806500px;}
.y39{bottom:259.491900px;}
.y2b{bottom:273.801900px;}
.y70{bottom:273.802050px;}
.y38{bottom:273.891900px;}
.y103{bottom:274.424550px;}
.ydd{bottom:276.435450px;}
.y37{bottom:288.291900px;}
.ye1{bottom:288.576900px;}
.y2a{bottom:294.801900px;}
.y6f{bottom:294.802050px;}
.y102{bottom:295.424550px;}
.ydc{bottom:297.689400px;}
.y36{bottom:302.691900px;}
.y29{bottom:315.801900px;}
.y6e{bottom:315.802050px;}
.y35{bottom:317.091900px;}
.y154{bottom:318.391350px;}
.y13e{bottom:318.672150px;}
.ydb{bottom:318.943200px;}
.y13f{bottom:323.816700px;}
.y153{bottom:329.904600px;}
.y101{bottom:330.577050px;}
.y34{bottom:331.491900px;}
.yb4{bottom:331.593450px;}
.y28{bottom:336.801900px;}
.y6d{bottom:336.802050px;}
.yda{bottom:340.197150px;}
.y33{bottom:345.891900px;}
.yb3{bottom:346.893450px;}
.yf2{bottom:348.505950px;}
.y27{bottom:357.801900px;}
.y6c{bottom:357.802050px;}
.y32{bottom:360.291900px;}
.yd9{bottom:361.451100px;}
.yb2{bottom:362.193450px;}
.yf1{bottom:363.805950px;}
.yb1{bottom:377.493450px;}
.y53{bottom:378.801900px;}
.y6b{bottom:378.802050px;}
.y140{bottom:381.927900px;}
.yd8{bottom:382.705050px;}
.yf3{bottom:392.706000px;}
.yb0{bottom:392.793450px;}
.y156{bottom:397.035600px;}
.yf5{bottom:397.660950px;}
.y52{bottom:399.801900px;}
.y6a{bottom:399.802050px;}
.y141{bottom:402.460950px;}
.yd7{bottom:403.959000px;}
.y155{bottom:408.548850px;}
.yaf{bottom:414.422400px;}
.y100{bottom:414.577050px;}
.yfc{bottom:418.032150px;}
.y69{bottom:419.939550px;}
.y51{bottom:420.801900px;}
.y8d{bottom:420.802050px;}
.yfd{bottom:421.052100px;}
.y26{bottom:422.465700px;}
.yd6{bottom:425.212950px;}
.yae{bottom:435.676350px;}
.y25{bottom:438.665700px;}
.yfb{bottom:441.058650px;}
.y50{bottom:441.801900px;}
.y8c{bottom:441.802050px;}
.yd5{bottom:446.466900px;}
.y24{bottom:454.865700px;}
.yad{bottom:456.930300px;}
.y4f{bottom:462.801900px;}
.y68{bottom:462.802050px;}
.y142{bottom:463.236600px;}
.y143{bottom:467.322900px;}
.yd4{bottom:467.720850px;}
.y23{bottom:471.065700px;}
.y158{bottom:475.679700px;}
.yac{bottom:478.184250px;}
.y4e{bottom:483.801900px;}
.y67{bottom:483.802050px;}
.y13a{bottom:484.424400px;}
.yfa{bottom:486.355650px;}
.y157{bottom:487.192950px;}
.y22{bottom:487.265700px;}
.yd3{bottom:488.974800px;}
.yab{bottom:499.438200px;}
.y21{bottom:503.465700px;}
.y4d{bottom:504.801900px;}
.y66{bottom:504.802050px;}
.y139{bottom:505.424400px;}
.yd2{bottom:510.228750px;}
.yff{bottom:519.577050px;}
.y20{bottom:519.665700px;}
.yaa{bottom:520.692150px;}
.y4c{bottom:525.801900px;}
.y65{bottom:525.802050px;}
.y138{bottom:526.424400px;}
.yd1{bottom:531.482550px;}
.yf9{bottom:531.652650px;}
.y1f{bottom:535.865700px;}
.ya9{bottom:541.945950px;}
.y4b{bottom:546.801900px;}
.y64{bottom:546.802050px;}
.y137{bottom:547.424400px;}
.y1e{bottom:552.065700px;}
.yd0{bottom:552.736500px;}
.y15a{bottom:554.323950px;}
.y144{bottom:556.255950px;}
.y145{bottom:556.606500px;}
.y8b{bottom:561.577050px;}
.ya8{bottom:563.199900px;}
.y159{bottom:565.837200px;}
.y4a{bottom:567.801900px;}
.y63{bottom:567.802050px;}
.ycf{bottom:568.036500px;}
.y1d{bottom:568.265700px;}
.y136{bottom:568.424400px;}
.y16b{bottom:568.630650px;}
.ycd{bottom:571.013550px;}
.yf8{bottom:576.949650px;}
.y16a{bottom:583.930650px;}
.ya7{bottom:584.453850px;}
.y1c{bottom:584.465700px;}
.y49{bottom:588.801900px;}
.y62{bottom:588.802050px;}
.yce{bottom:589.290450px;}
.y135{bottom:589.424400px;}
.y111{bottom:599.230800px;}
.y1b{bottom:600.665700px;}
.ya6{bottom:605.707800px;}
.y48{bottom:609.801900px;}
.y61{bottom:609.802050px;}
.y134{bottom:610.424400px;}
.ycc{bottom:611.046900px;}
.y110{bottom:614.530650px;}
.y1a{bottom:616.865700px;}
.yf7{bottom:622.246650px;}
.ya5{bottom:626.961750px;}
.y10f{bottom:629.830650px;}
.y60{bottom:629.939550px;}
.y47{bottom:630.801900px;}
.y8a{bottom:630.802050px;}
.y133{bottom:631.424400px;}
.y146{bottom:631.566300px;}
.y15c{bottom:632.968200px;}
.y19{bottom:633.065700px;}
.y147{bottom:635.250750px;}
.y15b{bottom:644.481450px;}
.y10e{bottom:645.130650px;}
.ya4{bottom:648.215700px;}
.y18{bottom:649.265700px;}
.ycb{bottom:649.652550px;}
.y46{bottom:651.801900px;}
.y89{bottom:651.802050px;}
.y132{bottom:652.424400px;}
.y10d{bottom:660.430650px;}
.yca{bottom:664.952550px;}
.y17{bottom:665.465700px;}
.yf6{bottom:667.543650px;}
.ya3{bottom:669.469650px;}
.y45{bottom:672.801900px;}
.y5f{bottom:672.802050px;}
.y131{bottom:673.424400px;}
.y16{bottom:681.665700px;}
.yc9{bottom:686.581500px;}
.ya2{bottom:690.723600px;}
.y44{bottom:693.801900px;}
.y5e{bottom:693.802050px;}
.y119{bottom:694.285650px;}
.y130{bottom:694.424400px;}
.y15{bottom:697.865700px;}
.yc8{bottom:707.835450px;}
.yfe{bottom:708.577050px;}
.y15e{bottom:711.612450px;}
.ya1{bottom:711.977550px;}
.y14{bottom:714.065700px;}
.y43{bottom:714.801900px;}
.y5d{bottom:714.802050px;}
.y12f{bottom:715.424400px;}
.y112{bottom:720.349650px;}
.ye2{bottom:720.614400px;}
.y15d{bottom:723.125700px;}
.yc7{bottom:729.089250px;}
.y13{bottom:730.265700px;}
.ya0{bottom:733.231500px;}
.y42{bottom:735.801900px;}
.y5c{bottom:735.802050px;}
.y12e{bottom:736.424400px;}
.y12{bottom:746.465700px;}
.y118{bottom:747.913650px;}
.yc6{bottom:750.343350px;}
.yee{bottom:754.469250px;}
.y9f{bottom:754.485450px;}
.yef{bottom:756.233250px;}
.y41{bottom:756.801900px;}
.y5b{bottom:756.802050px;}
.y12d{bottom:757.424400px;}
.y11{bottom:763.349850px;}
.yed{bottom:768.869250px;}
.yc5{bottom:771.597150px;}
.y148{bottom:774.778500px;}
.y9e{bottom:775.739400px;}
.y40{bottom:777.801750px;}
.y5a{bottom:777.802050px;}
.y12c{bottom:778.424400px;}
.y149{bottom:784.615350px;}
.y10{bottom:784.949850px;}
.yc4{bottom:786.897150px;}
.y14a{bottom:788.523000px;}
.y160{bottom:790.256400px;}
.yea{bottom:790.625250px;}
.y9d{bottom:796.993350px;}
.y59{bottom:798.802050px;}
.y12b{bottom:799.424400px;}
.y15f{bottom:801.769800px;}
.yf{bottom:806.549850px;}
.ye3{bottom:806.729250px;}
.yc3{bottom:808.151250px;}
.y117{bottom:810.157650px;}
.y3f{bottom:813.576900px;}
.y9c{bottom:818.247300px;}
.y58{bottom:819.802050px;}
.y12a{bottom:820.424400px;}
.yc2{bottom:823.451250px;}
.ye{bottom:828.149850px;}
.ye9{bottom:832.397250px;}
.y9b{bottom:839.501100px;}
.y88{bottom:840.802050px;}
.y129{bottom:841.424400px;}
.y11d{bottom:843.465450px;}
.yc1{bottom:844.705050px;}
.yd{bottom:849.749850px;}
.y14b{bottom:856.890750px;}
.y9a{bottom:860.755050px;}
.y82{bottom:861.802050px;}
.y128{bottom:862.424400px;}
.yc0{bottom:865.959000px;}
.y162{bottom:869.608200px;}
.yc{bottom:871.349850px;}
.y116{bottom:872.401650px;}
.ye8{bottom:880.121250px;}
.y161{bottom:880.413900px;}
.y99{bottom:882.009000px;}
.y81{bottom:882.802050px;}
.y127{bottom:883.424400px;}
.ybf{bottom:887.212950px;}
.yf0{bottom:887.344050px;}
.yb{bottom:892.949850px;}
.y98{bottom:903.263100px;}
.y87{bottom:903.802050px;}
.y126{bottom:904.424400px;}
.ybe{bottom:908.466900px;}
.y97{bottom:924.516900px;}
.y80{bottom:924.802050px;}
.y125{bottom:925.424400px;}
.ye7{bottom:927.845250px;}
.ybd{bottom:929.720850px;}
.y14c{bottom:930.671250px;}
.y115{bottom:934.657650px;}
.ya{bottom:942.521550px;}
.y96{bottom:945.770850px;}
.y7f{bottom:945.802050px;}
.y124{bottom:946.424400px;}
.y164{bottom:947.544750px;}
.ybc{bottom:950.974800px;}
.y163{bottom:959.058150px;}
.y86{bottom:965.939550px;}
.y7e{bottom:966.802050px;}
.y95{bottom:967.024800px;}
.y123{bottom:967.424400px;}
.ybb{bottom:972.228750px;}
.ye6{bottom:975.569250px;}
.y9{bottom:981.521550px;}
.y7d{bottom:987.802050px;}
.y94{bottom:988.278750px;}
.y122{bottom:988.424400px;}
.yba{bottom:993.482700px;}
.y114{bottom:996.901650px;}
.y85{bottom:1008.427050px;}
.y7c{bottom:1008.802050px;}
.y14e{bottom:1009.315500px;}
.y121{bottom:1009.424400px;}
.y93{bottom:1009.532700px;}
.yb9{bottom:1014.736650px;}
.y14d{bottom:1020.114300px;}
.ye5{bottom:1023.293250px;}
.y11c{bottom:1025.281650px;}
.y166{bottom:1026.189000px;}
.y7b{bottom:1029.802050px;}
.yb8{bottom:1030.036650px;}
.y120{bottom:1030.424400px;}
.y92{bottom:1030.786650px;}
.yb6{bottom:1033.013550px;}
.y165{bottom:1037.702250px;}
.y11b{bottom:1039.681650px;}
.y7a{bottom:1050.802050px;}
.yb7{bottom:1051.290600px;}
.y11f{bottom:1051.424400px;}
.yec{bottom:1051.517250px;}
.y91{bottom:1052.040600px;}
.y11a{bottom:1054.081650px;}
.y113{bottom:1059.145650px;}
.y5{bottom:1063.703850px;}
.yeb{bottom:1065.917250px;}
.y84{bottom:1070.939550px;}
.ye4{bottom:1071.017250px;}
.y79{bottom:1071.802050px;}
.y11e{bottom:1072.424400px;}
.yb5{bottom:1073.046900px;}
.y90{bottom:1073.669550px;}
.y7{bottom:1095.093900px;}
.y6{bottom:1111.593900px;}
.y3d{bottom:1128.322500px;}
.ha{height:24.178176px;}
.h2{height:29.506800px;}
.h3{height:31.545000px;}
.h18{height:32.256000px;}
.h5{height:34.176000px;}
.hc{height:36.864000px;}
.h13{height:39.168000px;}
.h1b{height:40.158000px;}
.he{height:40.740000px;}
.hd{height:41.472000px;}
.h6{height:42.060000px;}
.h16{height:42.602544px;}
.h14{height:42.603144px;}
.h15{height:43.593144px;}
.h1a{height:43.776000px;}
.hb{height:46.080000px;}
.h19{height:46.200000px;}
.h10{height:50.121240px;}
.h12{height:50.121840px;}
.h11{height:52.575000px;}
.h4{height:54.288000px;}
.h8{height:62.538000px;}
.h9{height:62.538600px;}
.hf{height:63.090000px;}
.h1c{height:69.768000px;}
.h7{height:100.944000px;}
.h17{height:292.546500px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w2{width:653.155500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x38{left:13.233900px;}
.x1{left:76.535400px;}
.xd{left:78.661350px;}
.x1c{left:82.913400px;}
.xe{left:87.165300px;}
.x8{left:89.291400px;}
.x2e{left:91.532850px;}
.x45{left:97.915500px;}
.x46{left:106.299150px;}
.x37{left:108.426000px;}
.x42{left:109.852800px;}
.x4c{left:110.997000px;}
.x43{left:115.732800px;}
.x4b{left:118.647000px;}
.x36{left:121.160550px;}
.x49{left:126.297000px;}
.x4a{left:133.947000px;}
.x2a{left:136.592850px;}
.x3a{left:140.419500px;}
.x2b{left:142.472850px;}
.x3b{left:161.850000px;}
.x4d{left:162.850950px;}
.x30{left:166.496850px;}
.x29{left:177.524850px;}
.x4e{left:184.104900px;}
.x39{left:203.535900px;}
.x4f{left:205.358850px;}
.x2d{left:209.696850px;}
.x50{left:220.658700px;}
.x44{left:235.132800px;}
.x51{left:241.912650px;}
.x11{left:257.210850px;}
.x10{left:258.505200px;}
.x1b{left:261.121050px;}
.x31{left:263.624850px;}
.x1f{left:273.512700px;}
.x1e{left:274.807050px;}
.x52{left:284.420550px;}
.x53{left:305.674500px;}
.xf{left:324.627150px;}
.x54{left:326.928300px;}
.x1d{left:337.965000px;}
.x12{left:349.046100px;}
.x13{left:351.155850px;}
.x20{left:362.384100px;}
.x21{left:364.493700px;}
.x55{left:369.436200px;}
.x32{left:370.604850px;}
.x3c{left:383.796150px;}
.x56{left:390.690150px;}
.x2c{left:401.372850px;}
.x40{left:404.125200px;}
.x57{left:405.990150px;}
.x58{left:427.244100px;}
.xa{left:444.999450px;}
.x59{left:448.498050px;}
.x15{left:449.690700px;}
.x23{left:459.707550px;}
.x14{left:461.114700px;}
.x9{left:463.464600px;}
.x48{left:468.422550px;}
.x47{left:470.004150px;}
.x22{left:471.488700px;}
.xc{left:476.220450px;}
.x5a{left:491.005950px;}
.x41{left:493.228350px;}
.x3e{left:510.981750px;}
.x5b{left:512.259900px;}
.x3f{left:532.412250px;}
.x5c{left:533.513850px;}
.x5d{left:548.813850px;}
.x17{left:551.744550px;}
.x16{left:553.038900px;}
.x25{left:559.154550px;}
.x24{left:560.448900px;}
.x34{left:570.824850px;}
.x33{left:572.600850px;}
.x3d{left:574.098900px;}
.x5e{left:591.321750px;}
.x5f{left:612.575700px;}
.x60{left:633.829650px;}
.x2{left:641.342400px;}
.xb{left:642.500250px;}
.x18{left:643.579800px;}
.x5{left:646.299150px;}
.x26{left:648.025800px;}
.x4{left:650.045250px;}
.x61{left:655.083600px;}
.x35{left:670.148850px;}
.x7{left:680.306700px;}
.x62{left:691.637550px;}
.x3{left:705.315750px;}
.x2f{left:708.464850px;}
.x63{left:712.891500px;}
.x6{left:723.625800px;}
.x64{left:734.520450px;}
.x1a{left:744.224400px;}
.x28{left:745.349400px;}
.x65{left:749.820450px;}
.x19{left:755.648400px;}
.x27{left:757.130400px;}
.x66{left:765.120450px;}
.x67{left:780.420450px;}
@media print{
.v4{vertical-align:-24.806933pt;}
.v9{vertical-align:-20.672533pt;}
.v5{vertical-align:-18.605333pt;}
.vb{vertical-align:-17.571733pt;}
.v7{vertical-align:-3.819200pt;}
.v1{vertical-align:-1.040000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:2.645867pt;}
.v2{vertical-align:3.819200pt;}
.va{vertical-align:17.571733pt;}
.v8{vertical-align:20.672533pt;}
.v3{vertical-align:24.806933pt;}
.vc{vertical-align:27.200000pt;}
.ls58{letter-spacing:-7.298667pt;}
.ls5{letter-spacing:-5.248000pt;}
.ls6{letter-spacing:-5.120000pt;}
.ls3b{letter-spacing:-4.736000pt;}
.ls2c{letter-spacing:-4.073227pt;}
.ls57{letter-spacing:-3.944000pt;}
.lsa{letter-spacing:-2.624000pt;}
.ls7{letter-spacing:-2.560000pt;}
.ls56{letter-spacing:-2.266667pt;}
.ls10{letter-spacing:-2.133333pt;}
.ls36{letter-spacing:-2.040000pt;}
.ls3a{letter-spacing:-2.005333pt;}
.ls22{letter-spacing:-2.000000pt;}
.ls16{letter-spacing:-1.973333pt;}
.ls8{letter-spacing:-1.902912pt;}
.ls2a{letter-spacing:-1.772320pt;}
.ls12{letter-spacing:-1.706667pt;}
.ls2f{letter-spacing:-1.677333pt;}
.ls40{letter-spacing:-1.653333pt;}
.lsd{letter-spacing:-1.600000pt;}
.ls3c{letter-spacing:-1.578667pt;}
.ls4d{letter-spacing:-1.570667pt;}
.ls3e{letter-spacing:-1.546667pt;}
.lsb{letter-spacing:-1.529792pt;}
.ls4c{letter-spacing:-1.520000pt;}
.ls9{letter-spacing:-1.492480pt;}
.ls29{letter-spacing:-1.333333pt;}
.ls11{letter-spacing:-1.280000pt;}
.ls35{letter-spacing:-1.200000pt;}
.ls59{letter-spacing:-1.178667pt;}
.ls28{letter-spacing:-1.173333pt;}
.ls2e{letter-spacing:-1.133333pt;}
.lse{letter-spacing:-1.120000pt;}
.ls50{letter-spacing:-1.114667pt;}
.ls3{letter-spacing:-1.066667pt;}
.ls4e{letter-spacing:-1.064000pt;}
.ls5b{letter-spacing:-1.042667pt;}
.ls20{letter-spacing:-1.013333pt;}
.ls5a{letter-spacing:-0.997333pt;}
.lsf{letter-spacing:-0.960000pt;}
.ls30{letter-spacing:-0.952000pt;}
.ls3d{letter-spacing:-0.932800pt;}
.ls53{letter-spacing:-0.912000pt;}
.ls1c{letter-spacing:-0.906667pt;}
.ls3f{letter-spacing:-0.901707pt;}
.ls4{letter-spacing:-0.896000pt;}
.ls1{letter-spacing:-0.893333pt;}
.ls43{letter-spacing:-0.861333pt;}
.ls1e{letter-spacing:-0.853333pt;}
.ls51{letter-spacing:-0.810667pt;}
.ls21{letter-spacing:-0.800000pt;}
.ls18{letter-spacing:-0.746667pt;}
.ls41{letter-spacing:-0.709333pt;}
.ls2d{letter-spacing:-0.693333pt;}
.ls1b{letter-spacing:-0.652960pt;}
.ls25{letter-spacing:-0.640000pt;}
.ls1d{letter-spacing:-0.621867pt;}
.ls46{letter-spacing:-0.608000pt;}
.ls34{letter-spacing:-0.586667pt;}
.ls4f{letter-spacing:-0.557333pt;}
.ls27{letter-spacing:-0.533333pt;}
.lsc{letter-spacing:-0.480000pt;}
.ls54{letter-spacing:-0.456000pt;}
.ls47{letter-spacing:-0.453333pt;}
.ls26{letter-spacing:-0.426667pt;}
.ls44{letter-spacing:-0.405333pt;}
.ls23{letter-spacing:-0.373333pt;}
.ls42{letter-spacing:-0.354667pt;}
.ls19{letter-spacing:-0.320000pt;}
.ls24{letter-spacing:-0.266667pt;}
.ls17{letter-spacing:-0.213333pt;}
.ls55{letter-spacing:-0.202667pt;}
.ls39{letter-spacing:-0.186560pt;}
.ls1a{letter-spacing:-0.160000pt;}
.ls1f{letter-spacing:-0.106667pt;}
.ls45{letter-spacing:-0.101333pt;}
.ls2{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.026667pt;}
.ls31{letter-spacing:0.053333pt;}
.ls2b{letter-spacing:0.106667pt;}
.ls15{letter-spacing:0.160000pt;}
.ls4a{letter-spacing:0.354667pt;}
.ls0{letter-spacing:0.373333pt;}
.ls4b{letter-spacing:0.456000pt;}
.ls48{letter-spacing:0.658667pt;}
.ls37{letter-spacing:0.853333pt;}
.ls49{letter-spacing:1.013333pt;}
.ls52{letter-spacing:1.064000pt;}
.ls13{letter-spacing:37.546667pt;}
.ls38{letter-spacing:335.488000pt;}
.ls33{letter-spacing:692.519733pt;}
.ls32{letter-spacing:724.135200pt;}
.ws6b{word-spacing:-346.538667pt;}
.ws33{word-spacing:-15.786667pt;}
.ws9{word-spacing:-14.826667pt;}
.ws1c{word-spacing:-14.666667pt;}
.ws1b{word-spacing:-14.453333pt;}
.ws8{word-spacing:-14.186667pt;}
.ws18{word-spacing:-13.813333pt;}
.ws35{word-spacing:-12.746667pt;}
.ws3c{word-spacing:-11.741333pt;}
.ws8c{word-spacing:-11.400000pt;}
.wsa{word-spacing:-11.349333pt;}
.ws60{word-spacing:-10.834667pt;}
.ws8d{word-spacing:-9.880000pt;}
.wsb5{word-spacing:-9.474667pt;}
.ws6d{word-spacing:-9.472000pt;}
.ws79{word-spacing:-9.322667pt;}
.ws1{word-spacing:-8.618667pt;}
.ws19{word-spacing:-8.053173pt;}
.ws6a{word-spacing:-7.866613pt;}
.wsb4{word-spacing:-7.797333pt;}
.ws3{word-spacing:-7.686272pt;}
.ws77{word-spacing:-7.431307pt;}
.ws1a{word-spacing:-7.400213pt;}
.ws7{word-spacing:-7.247856pt;}
.ws78{word-spacing:-7.151467pt;}
.ws44{word-spacing:-6.845197pt;}
.ws6c{word-spacing:-6.314667pt;}
.ws34{word-spacing:-6.280853pt;}
.ws5{word-spacing:-6.193792pt;}
.ws6{word-spacing:-6.156480pt;}
.ws4{word-spacing:-5.783360pt;}
.wsc{word-spacing:-4.480000pt;}
.ws0{word-spacing:-0.040000pt;}
.wsb{word-spacing:0.000000pt;}
.ws68{word-spacing:0.053333pt;}
.ws9e{word-spacing:0.152000pt;}
.ws13{word-spacing:0.160000pt;}
.ws9d{word-spacing:0.202667pt;}
.ws7d{word-spacing:0.213333pt;}
.wsc0{word-spacing:0.226667pt;}
.wsa1{word-spacing:0.304000pt;}
.ws53{word-spacing:0.320000pt;}
.ws91{word-spacing:0.354667pt;}
.ws76{word-spacing:0.373333pt;}
.ws22{word-spacing:0.426667pt;}
.ws7e{word-spacing:0.533333pt;}
.ws23{word-spacing:0.621867pt;}
.ws8f{word-spacing:0.658667pt;}
.wsbd{word-spacing:0.680000pt;}
.ws97{word-spacing:0.709333pt;}
.ws56{word-spacing:0.746667pt;}
.ws29{word-spacing:0.800000pt;}
.ws2{word-spacing:0.853333pt;}
.ws24{word-spacing:0.906667pt;}
.ws81{word-spacing:0.932800pt;}
.wsa3{word-spacing:0.962667pt;}
.ws82{word-spacing:1.013333pt;}
.ws32{word-spacing:1.024000pt;}
.ws9c{word-spacing:1.064000pt;}
.ws31{word-spacing:1.066667pt;}
.ws7f{word-spacing:1.120000pt;}
.ws8b{word-spacing:1.133333pt;}
.ws2d{word-spacing:1.173333pt;}
.ws69{word-spacing:1.269333pt;}
.ws15{word-spacing:1.280000pt;}
.ws14{word-spacing:1.333333pt;}
.ws86{word-spacing:1.368000pt;}
.ws89{word-spacing:1.405333pt;}
.wsa4{word-spacing:1.418667pt;}
.ws2c{word-spacing:1.440000pt;}
.ws5e{word-spacing:1.450667pt;}
.ws93{word-spacing:1.469333pt;}
.ws2b{word-spacing:1.493333pt;}
.ws8e{word-spacing:1.520000pt;}
.ws4a{word-spacing:1.546667pt;}
.ws1d{word-spacing:1.600000pt;}
.ws55{word-spacing:1.653333pt;}
.ws5b{word-spacing:1.677333pt;}
.ws16{word-spacing:1.706667pt;}
.wsa0{word-spacing:1.722667pt;}
.ws21{word-spacing:1.760000pt;}
.ws28{word-spacing:1.813333pt;}
.ws90{word-spacing:1.824000pt;}
.ws5a{word-spacing:1.866667pt;}
.wsbe{word-spacing:1.904000pt;}
.wsa2{word-spacing:1.925333pt;}
.ws4f{word-spacing:1.973333pt;}
.ws4c{word-spacing:2.000000pt;}
.ws73{word-spacing:2.005333pt;}
.ws59{word-spacing:2.080000pt;}
.ws87{word-spacing:2.130667pt;}
.ws49{word-spacing:2.186667pt;}
.ws11{word-spacing:2.240000pt;}
.wsbc{word-spacing:2.266667pt;}
.ws71{word-spacing:2.293333pt;}
.ws8a{word-spacing:2.312000pt;}
.ws27{word-spacing:2.400000pt;}
.ws95{word-spacing:2.482667pt;}
.ws88{word-spacing:2.493333pt;}
.ws70{word-spacing:2.506667pt;}
.ws9a{word-spacing:2.533333pt;}
.ws46{word-spacing:2.560000pt;}
.ws2e{word-spacing:2.613333pt;}
.ws20{word-spacing:2.666667pt;}
.ws48{word-spacing:2.773333pt;}
.ws94{word-spacing:2.786667pt;}
.ws7c{word-spacing:2.826667pt;}
.ws9f{word-spacing:2.837333pt;}
.ws52{word-spacing:2.880000pt;}
.ws47{word-spacing:2.986667pt;}
.ws74{word-spacing:3.037333pt;}
.ws2f{word-spacing:3.040000pt;}
.ws9b{word-spacing:3.090667pt;}
.ws2a{word-spacing:3.093333pt;}
.ws92{word-spacing:3.141333pt;}
.ws26{word-spacing:3.146667pt;}
.ws99{word-spacing:3.192000pt;}
.ws50{word-spacing:3.200000pt;}
.wse{word-spacing:3.253333pt;}
.wsf{word-spacing:3.306667pt;}
.ws25{word-spacing:3.360000pt;}
.ws96{word-spacing:3.394667pt;}
.ws4d{word-spacing:3.413333pt;}
.wsa5{word-spacing:3.445333pt;}
.ws4e{word-spacing:3.466667pt;}
.ws1f{word-spacing:3.520000pt;}
.ws75{word-spacing:3.536000pt;}
.ws51{word-spacing:3.573333pt;}
.ws5c{word-spacing:3.626667pt;}
.wsd{word-spacing:3.680000pt;}
.ws85{word-spacing:3.749333pt;}
.ws72{word-spacing:3.786667pt;}
.ws58{word-spacing:3.840000pt;}
.wsbf{word-spacing:3.853333pt;}
.ws30{word-spacing:3.893333pt;}
.ws5d{word-spacing:3.898667pt;}
.ws57{word-spacing:3.946667pt;}
.ws80{word-spacing:4.000000pt;}
.ws7b{word-spacing:4.053333pt;}
.ws54{word-spacing:4.073227pt;}
.ws98{word-spacing:4.104000pt;}
.ws4b{word-spacing:4.160000pt;}
.ws84{word-spacing:4.306667pt;}
.ws1e{word-spacing:4.320000pt;}
.ws83{word-spacing:4.357333pt;}
.ws10{word-spacing:4.533333pt;}
.ws12{word-spacing:4.586667pt;}
.ws45{word-spacing:35.568000pt;}
.wsa9{word-spacing:88.226667pt;}
.ws6e{word-spacing:92.661333pt;}
.wsa8{word-spacing:116.357333pt;}
.ws7a{word-spacing:153.301333pt;}
.wsb3{word-spacing:195.258133pt;}
.wsb1{word-spacing:208.948800pt;}
.wsb0{word-spacing:213.142400pt;}
.wsb2{word-spacing:213.142933pt;}
.wsac{word-spacing:219.148800pt;}
.wsae{word-spacing:219.149333pt;}
.wsaf{word-spacing:222.368000pt;}
.wsab{word-spacing:223.342400pt;}
.wsaa{word-spacing:229.349333pt;}
.wsba{word-spacing:319.437867pt;}
.wsa7{word-spacing:322.715200pt;}
.wsb7{word-spacing:387.392533pt;}
.wsb6{word-spacing:387.393067pt;}
.wsad{word-spacing:392.152000pt;}
.wsbb{word-spacing:427.784533pt;}
.wsb8{word-spacing:429.960533pt;}
.wsb9{word-spacing:454.304533pt;}
.ws64{word-spacing:465.125333pt;}
.ws61{word-spacing:498.171733pt;}
.ws62{word-spacing:501.481067pt;}
.ws63{word-spacing:529.949867pt;}
.ws65{word-spacing:553.072000pt;}
.ws67{word-spacing:575.648000pt;}
.ws66{word-spacing:599.992000pt;}
.ws38{word-spacing:801.373333pt;}
.ws40{word-spacing:923.954133pt;}
.ws43{word-spacing:925.677333pt;}
.ws42{word-spacing:941.634667pt;}
.ws3f{word-spacing:944.944000pt;}
.ws3e{word-spacing:947.482667pt;}
.ws41{word-spacing:955.506667pt;}
.ws3a{word-spacing:965.117333pt;}
.ws3b{word-spacing:966.794667pt;}
.ws3d{word-spacing:974.365333pt;}
.ws39{word-spacing:991.138667pt;}
.ws36{word-spacing:1022.237333pt;}
.ws37{word-spacing:1026.408000pt;}
.ws6f{word-spacing:1296.484267pt;}
.ws5f{word-spacing:1578.927467pt;}
.ws17{word-spacing:1580.899733pt;}
.wsa6{word-spacing:1638.234133pt;}
._3a{margin-left:-335.233600pt;}
._a{margin-left:-35.416000pt;}
._5{margin-left:-7.733909pt;}
._9{margin-left:-6.026667pt;}
._6{margin-left:-5.134613pt;}
._2{margin-left:-3.966400pt;}
._8{margin-left:-2.896789pt;}
._0{margin-left:-1.965333pt;}
._1{margin-left:-1.072000pt;}
._7{width:1.071872pt;}
._4{width:1.962667pt;}
._3b{width:3.157333pt;}
._4f{width:5.455317pt;}
._3c{width:17.113067pt;}
._3{width:37.546667pt;}
._3e{width:77.210667pt;}
._40{width:98.944789pt;}
._41{width:101.802411pt;}
._2b{width:105.208000pt;}
._49{width:106.180800pt;}
._2a{width:107.172800pt;}
._48{width:108.265067pt;}
._50{width:120.097600pt;}
._52{width:140.134933pt;}
._53{width:147.145067pt;}
._46{width:149.824747pt;}
._45{width:152.788800pt;}
._3d{width:158.877867pt;}
._18{width:162.530133pt;}
._19{width:166.172800pt;}
._4b{width:167.323200pt;}
._43{width:168.720000pt;}
._44{width:169.842667pt;}
._57{width:173.114560pt;}
._15{width:177.914667pt;}
._4d{width:187.609600pt;}
._4c{width:189.138667pt;}
._4a{width:190.318656pt;}
._56{width:193.090133pt;}
._59{width:194.194837pt;}
._2d{width:195.800533pt;}
._2f{width:196.899200pt;}
._39{width:198.054400pt;}
._11{width:199.573333pt;}
._36{width:203.472747pt;}
._14{width:206.050133pt;}
._16{width:208.015467pt;}
._1e{width:209.692267pt;}
._27{width:211.082133pt;}
._22{width:211.978133pt;}
._2e{width:216.982933pt;}
._38{width:218.371200pt;}
._51{width:219.817067pt;}
._35{width:221.203200pt;}
._31{width:222.592533pt;}
._20{width:228.099200pt;}
._1d{width:230.094656pt;}
._28{width:231.266347pt;}
._32{width:239.134613pt;}
._42{width:240.186133pt;}
._24{width:249.246933pt;}
._1c{width:250.182400pt;}
._26{width:251.246933pt;}
._1b{width:252.924800pt;}
._5b{width:254.474133pt;}
._3f{width:259.881600pt;}
._25{width:271.330133pt;}
._4e{width:284.884267pt;}
._47{width:288.420267pt;}
._5a{width:302.346133pt;}
._34{width:332.858667pt;}
._54{width:371.117867pt;}
._29{width:373.967467pt;}
._17{width:376.450133pt;}
._55{width:388.162667pt;}
._37{width:437.198933pt;}
._58{width:438.589867pt;}
._13{width:440.530133pt;}
._21{width:498.256533pt;}
._1f{width:499.933333pt;}
._30{width:532.173333pt;}
._2c{width:533.850133pt;}
._23{width:538.133333pt;}
._1a{width:539.448533pt;}
._33{width:565.554133pt;}
._b{width:573.387733pt;}
._c{width:610.400000pt;}
._12{width:922.277333pt;}
._f{width:963.440000pt;}
._e{width:965.405333pt;}
._10{width:1005.418667pt;}
._d{width:1008.410667pt;}
.fse{font-size:26.429333pt;}
.fs7{font-size:27.984000pt;}
.fsa{font-size:31.093333pt;}
.fs0{font-size:35.733333pt;}
.fs6{font-size:37.312000pt;}
.fsf{font-size:37.333333pt;}
.fs1{font-size:40.000000pt;}
.fs3{font-size:42.666667pt;}
.fsd{font-size:45.333333pt;}
.fs8{font-size:48.000000pt;}
.fs11{font-size:50.666667pt;}
.fs4{font-size:53.333333pt;}
.fsc{font-size:56.000000pt;}
.fs10{font-size:58.666667pt;}
.fs2{font-size:64.000000pt;}
.fsb{font-size:66.666667pt;}
.fs9{font-size:80.000000pt;}
.fs5{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y8{bottom:31.505467pt;}
.y3e{bottom:31.798800pt;}
.y4{bottom:33.065600pt;}
.y169{bottom:68.031200pt;}
.y13b{bottom:68.031600pt;}
.y3{bottom:69.550133pt;}
.y13c{bottom:69.921200pt;}
.y57{bottom:75.379467pt;}
.y78{bottom:75.379600pt;}
.y10c{bottom:75.932933pt;}
.y168{bottom:77.480000pt;}
.y14f{bottom:77.480267pt;}
.y2{bottom:80.216800pt;}
.y167{bottom:85.039067pt;}
.y150{bottom:85.039333pt;}
.yf4{bottom:87.786533pt;}
.y1{bottom:90.883467pt;}
.y56{bottom:94.046133pt;}
.y77{bottom:94.046267pt;}
.y10b{bottom:94.599600pt;}
.y55{bottom:111.946133pt;}
.y76{bottom:111.946267pt;}
.y83{bottom:112.712800pt;}
.y8f{bottom:112.712933pt;}
.y10a{bottom:113.266267pt;}
.y31{bottom:131.379467pt;}
.y8e{bottom:131.379600pt;}
.y109{bottom:131.932933pt;}
.y54{bottom:144.512800pt;}
.y30{bottom:150.046133pt;}
.y75{bottom:150.046267pt;}
.y108{bottom:150.599600pt;}
.y2f{bottom:168.712800pt;}
.y74{bottom:168.712933pt;}
.y107{bottom:169.266267pt;}
.y3c{bottom:179.459467pt;}
.y2e{bottom:187.379467pt;}
.y73{bottom:187.379600pt;}
.y106{bottom:187.932933pt;}
.y3b{bottom:192.259467pt;}
.ye0{bottom:199.294667pt;}
.y3a{bottom:205.059467pt;}
.y2d{bottom:206.046133pt;}
.y72{bottom:206.046267pt;}
.y105{bottom:206.599600pt;}
.ydf{bottom:212.894667pt;}
.y152{bottom:213.108667pt;}
.y13d{bottom:216.429600pt;}
.y151{bottom:221.665333pt;}
.y2c{bottom:224.712800pt;}
.y71{bottom:224.712933pt;}
.y104{bottom:225.266267pt;}
.yde{bottom:226.494667pt;}
.y39{bottom:230.659467pt;}
.y2b{bottom:243.379467pt;}
.y70{bottom:243.379600pt;}
.y38{bottom:243.459467pt;}
.y103{bottom:243.932933pt;}
.ydd{bottom:245.720400pt;}
.y37{bottom:256.259467pt;}
.ye1{bottom:256.512800pt;}
.y2a{bottom:262.046133pt;}
.y6f{bottom:262.046267pt;}
.y102{bottom:262.599600pt;}
.ydc{bottom:264.612800pt;}
.y36{bottom:269.059467pt;}
.y29{bottom:280.712800pt;}
.y6e{bottom:280.712933pt;}
.y35{bottom:281.859467pt;}
.y154{bottom:283.014533pt;}
.y13e{bottom:283.264133pt;}
.ydb{bottom:283.505067pt;}
.y13f{bottom:287.837067pt;}
.y153{bottom:293.248533pt;}
.y101{bottom:293.846267pt;}
.y34{bottom:294.659467pt;}
.yb4{bottom:294.749733pt;}
.y28{bottom:299.379467pt;}
.y6d{bottom:299.379600pt;}
.yda{bottom:302.397467pt;}
.y33{bottom:307.459467pt;}
.yb3{bottom:308.349733pt;}
.yf2{bottom:309.783067pt;}
.y27{bottom:318.046133pt;}
.y6c{bottom:318.046267pt;}
.y32{bottom:320.259467pt;}
.yd9{bottom:321.289867pt;}
.yb2{bottom:321.949733pt;}
.yf1{bottom:323.383067pt;}
.yb1{bottom:335.549733pt;}
.y53{bottom:336.712800pt;}
.y6b{bottom:336.712933pt;}
.y140{bottom:339.491467pt;}
.yd8{bottom:340.182267pt;}
.yf3{bottom:349.072000pt;}
.yb0{bottom:349.149733pt;}
.y156{bottom:352.920533pt;}
.yf5{bottom:353.476400pt;}
.y52{bottom:355.379467pt;}
.y6a{bottom:355.379600pt;}
.y141{bottom:357.743067pt;}
.yd7{bottom:359.074667pt;}
.y155{bottom:363.154533pt;}
.yaf{bottom:368.375467pt;}
.y100{bottom:368.512933pt;}
.yfc{bottom:371.584133pt;}
.y69{bottom:373.279600pt;}
.y51{bottom:374.046133pt;}
.y8d{bottom:374.046267pt;}
.yfd{bottom:374.268533pt;}
.y26{bottom:375.525067pt;}
.yd6{bottom:377.967067pt;}
.yae{bottom:387.267867pt;}
.y25{bottom:389.925067pt;}
.yfb{bottom:392.052133pt;}
.y50{bottom:392.712800pt;}
.y8c{bottom:392.712933pt;}
.yd5{bottom:396.859467pt;}
.y24{bottom:404.325067pt;}
.yad{bottom:406.160267pt;}
.y4f{bottom:411.379467pt;}
.y68{bottom:411.379600pt;}
.y142{bottom:411.765867pt;}
.y143{bottom:415.398133pt;}
.yd4{bottom:415.751867pt;}
.y23{bottom:418.725067pt;}
.y158{bottom:422.826400pt;}
.yac{bottom:425.052667pt;}
.y4e{bottom:430.046133pt;}
.y67{bottom:430.046267pt;}
.y13a{bottom:430.599467pt;}
.yfa{bottom:432.316133pt;}
.y157{bottom:433.060400pt;}
.y22{bottom:433.125067pt;}
.yd3{bottom:434.644267pt;}
.yab{bottom:443.945067pt;}
.y21{bottom:447.525067pt;}
.y4d{bottom:448.712800pt;}
.y66{bottom:448.712933pt;}
.y139{bottom:449.266133pt;}
.yd2{bottom:453.536667pt;}
.yff{bottom:461.846267pt;}
.y20{bottom:461.925067pt;}
.yaa{bottom:462.837467pt;}
.y4c{bottom:467.379467pt;}
.y65{bottom:467.379600pt;}
.y138{bottom:467.932800pt;}
.yd1{bottom:472.428933pt;}
.yf9{bottom:472.580133pt;}
.y1f{bottom:476.325067pt;}
.ya9{bottom:481.729733pt;}
.y4b{bottom:486.046133pt;}
.y64{bottom:486.046267pt;}
.y137{bottom:486.599467pt;}
.y1e{bottom:490.725067pt;}
.yd0{bottom:491.321333pt;}
.y15a{bottom:492.732400pt;}
.y144{bottom:494.449733pt;}
.y145{bottom:494.761333pt;}
.y8b{bottom:499.179600pt;}
.ya8{bottom:500.622133pt;}
.y159{bottom:502.966400pt;}
.y4a{bottom:504.712800pt;}
.y63{bottom:504.712933pt;}
.ycf{bottom:504.921333pt;}
.y1d{bottom:505.125067pt;}
.y136{bottom:505.266133pt;}
.y16b{bottom:505.449467pt;}
.ycd{bottom:507.567600pt;}
.yf8{bottom:512.844133pt;}
.y16a{bottom:519.049467pt;}
.ya7{bottom:519.514533pt;}
.y1c{bottom:519.525067pt;}
.y49{bottom:523.379467pt;}
.y62{bottom:523.379600pt;}
.yce{bottom:523.813733pt;}
.y135{bottom:523.932800pt;}
.y111{bottom:532.649600pt;}
.y1b{bottom:533.925067pt;}
.ya6{bottom:538.406933pt;}
.y48{bottom:542.046133pt;}
.y61{bottom:542.046267pt;}
.y134{bottom:542.599467pt;}
.ycc{bottom:543.152800pt;}
.y110{bottom:546.249467pt;}
.y1a{bottom:548.325067pt;}
.yf7{bottom:553.108133pt;}
.ya5{bottom:557.299333pt;}
.y10f{bottom:559.849467pt;}
.y60{bottom:559.946267pt;}
.y47{bottom:560.712800pt;}
.y8a{bottom:560.712933pt;}
.y133{bottom:561.266133pt;}
.y146{bottom:561.392267pt;}
.y15c{bottom:562.638400pt;}
.y19{bottom:562.725067pt;}
.y147{bottom:564.667333pt;}
.y15b{bottom:572.872400pt;}
.y10e{bottom:573.449467pt;}
.ya4{bottom:576.191733pt;}
.y18{bottom:577.125067pt;}
.ycb{bottom:577.468933pt;}
.y46{bottom:579.379467pt;}
.y89{bottom:579.379600pt;}
.y132{bottom:579.932800pt;}
.y10d{bottom:587.049467pt;}
.yca{bottom:591.068933pt;}
.y17{bottom:591.525067pt;}
.yf6{bottom:593.372133pt;}
.ya3{bottom:595.084133pt;}
.y45{bottom:598.046133pt;}
.y5f{bottom:598.046267pt;}
.y131{bottom:598.599467pt;}
.y16{bottom:605.925067pt;}
.yc9{bottom:610.294667pt;}
.ya2{bottom:613.976533pt;}
.y44{bottom:616.712800pt;}
.y5e{bottom:616.712933pt;}
.y119{bottom:617.142800pt;}
.y130{bottom:617.266133pt;}
.y15{bottom:620.325067pt;}
.yc8{bottom:629.187067pt;}
.yfe{bottom:629.846267pt;}
.y15e{bottom:632.544400pt;}
.ya1{bottom:632.868933pt;}
.y14{bottom:634.725067pt;}
.y43{bottom:635.379467pt;}
.y5d{bottom:635.379600pt;}
.y12f{bottom:635.932800pt;}
.y112{bottom:640.310800pt;}
.ye2{bottom:640.546133pt;}
.y15d{bottom:642.778400pt;}
.yc7{bottom:648.079333pt;}
.y13{bottom:649.125067pt;}
.ya0{bottom:651.761333pt;}
.y42{bottom:654.046133pt;}
.y5c{bottom:654.046267pt;}
.y12e{bottom:654.599467pt;}
.y12{bottom:663.525067pt;}
.y118{bottom:664.812133pt;}
.yc6{bottom:666.971867pt;}
.yee{bottom:670.639333pt;}
.y9f{bottom:670.653733pt;}
.yef{bottom:672.207333pt;}
.y41{bottom:672.712800pt;}
.y5b{bottom:672.712933pt;}
.y12d{bottom:673.266133pt;}
.y11{bottom:678.533200pt;}
.yed{bottom:683.439333pt;}
.yc5{bottom:685.864133pt;}
.y148{bottom:688.692000pt;}
.y9e{bottom:689.546133pt;}
.y40{bottom:691.379333pt;}
.y5a{bottom:691.379600pt;}
.y12c{bottom:691.932800pt;}
.y149{bottom:697.435867pt;}
.y10{bottom:697.733200pt;}
.yc4{bottom:699.464133pt;}
.y14a{bottom:700.909333pt;}
.y160{bottom:702.450133pt;}
.yea{bottom:702.778000pt;}
.y9d{bottom:708.438533pt;}
.y59{bottom:710.046267pt;}
.y12b{bottom:710.599467pt;}
.y15f{bottom:712.684267pt;}
.yf{bottom:716.933200pt;}
.ye3{bottom:717.092667pt;}
.yc3{bottom:718.356667pt;}
.y117{bottom:720.140133pt;}
.y3f{bottom:723.179467pt;}
.y9c{bottom:727.330933pt;}
.y58{bottom:728.712933pt;}
.y12a{bottom:729.266133pt;}
.yc2{bottom:731.956667pt;}
.ye{bottom:736.133200pt;}
.ye9{bottom:739.908667pt;}
.y9b{bottom:746.223200pt;}
.y88{bottom:747.379600pt;}
.y129{bottom:747.932800pt;}
.y11d{bottom:749.747067pt;}
.yc1{bottom:750.848933pt;}
.yd{bottom:755.333200pt;}
.y14b{bottom:761.680667pt;}
.y9a{bottom:765.115600pt;}
.y82{bottom:766.046267pt;}
.y128{bottom:766.599467pt;}
.yc0{bottom:769.741333pt;}
.y162{bottom:772.985067pt;}
.yc{bottom:774.533200pt;}
.y116{bottom:775.468133pt;}
.ye8{bottom:782.330000pt;}
.y161{bottom:782.590133pt;}
.y99{bottom:784.008000pt;}
.y81{bottom:784.712933pt;}
.y127{bottom:785.266133pt;}
.ybf{bottom:788.633733pt;}
.yf0{bottom:788.750267pt;}
.yb{bottom:793.733200pt;}
.y98{bottom:802.900533pt;}
.y87{bottom:803.379600pt;}
.y126{bottom:803.932800pt;}
.ybe{bottom:807.526133pt;}
.y97{bottom:821.792800pt;}
.y80{bottom:822.046267pt;}
.y125{bottom:822.599467pt;}
.ye7{bottom:824.751333pt;}
.ybd{bottom:826.418533pt;}
.y14c{bottom:827.263333pt;}
.y115{bottom:830.806800pt;}
.ya{bottom:837.796933pt;}
.y96{bottom:840.685200pt;}
.y7f{bottom:840.712933pt;}
.y124{bottom:841.266133pt;}
.y164{bottom:842.262000pt;}
.ybc{bottom:845.310933pt;}
.y163{bottom:852.496133pt;}
.y86{bottom:858.612933pt;}
.y7e{bottom:859.379600pt;}
.y95{bottom:859.577600pt;}
.y123{bottom:859.932800pt;}
.ybb{bottom:864.203333pt;}
.ye6{bottom:867.172667pt;}
.y9{bottom:872.463600pt;}
.y7d{bottom:878.046267pt;}
.y94{bottom:878.470000pt;}
.y122{bottom:878.599467pt;}
.yba{bottom:883.095733pt;}
.y114{bottom:886.134800pt;}
.y85{bottom:896.379600pt;}
.y7c{bottom:896.712933pt;}
.y14e{bottom:897.169333pt;}
.y121{bottom:897.266133pt;}
.y93{bottom:897.362400pt;}
.yb9{bottom:901.988133pt;}
.y14d{bottom:906.768267pt;}
.ye5{bottom:909.594000pt;}
.y11c{bottom:911.361467pt;}
.y166{bottom:912.168000pt;}
.y7b{bottom:915.379600pt;}
.yb8{bottom:915.588133pt;}
.y120{bottom:915.932800pt;}
.y92{bottom:916.254800pt;}
.yb6{bottom:918.234267pt;}
.y165{bottom:922.402000pt;}
.y11b{bottom:924.161467pt;}
.y7a{bottom:934.046267pt;}
.yb7{bottom:934.480533pt;}
.y11f{bottom:934.599467pt;}
.yec{bottom:934.682000pt;}
.y91{bottom:935.147200pt;}
.y11a{bottom:936.961467pt;}
.y113{bottom:941.462800pt;}
.y5{bottom:945.514533pt;}
.yeb{bottom:947.482000pt;}
.y84{bottom:951.946267pt;}
.ye4{bottom:952.015333pt;}
.y79{bottom:952.712933pt;}
.y11e{bottom:953.266133pt;}
.yb5{bottom:953.819467pt;}
.y90{bottom:954.372933pt;}
.y7{bottom:973.416800pt;}
.y6{bottom:988.083467pt;}
.y3d{bottom:1002.953333pt;}
.ha{height:21.491712pt;}
.h2{height:26.228267pt;}
.h3{height:28.040000pt;}
.h18{height:28.672000pt;}
.h5{height:30.378667pt;}
.hc{height:32.768000pt;}
.h13{height:34.816000pt;}
.h1b{height:35.696000pt;}
.he{height:36.213333pt;}
.hd{height:36.864000pt;}
.h6{height:37.386667pt;}
.h16{height:37.868928pt;}
.h14{height:37.869461pt;}
.h15{height:38.749461pt;}
.h1a{height:38.912000pt;}
.hb{height:40.960000pt;}
.h19{height:41.066667pt;}
.h10{height:44.552213pt;}
.h12{height:44.552747pt;}
.h11{height:46.733333pt;}
.h4{height:48.256000pt;}
.h8{height:55.589333pt;}
.h9{height:55.589867pt;}
.hf{height:56.080000pt;}
.h1c{height:62.016000pt;}
.h7{height:89.728000pt;}
.h17{height:260.041333pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w2{width:580.582667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x38{left:11.763467pt;}
.x1{left:68.031467pt;}
.xd{left:69.921200pt;}
.x1c{left:73.700800pt;}
.xe{left:77.480267pt;}
.x8{left:79.370133pt;}
.x2e{left:81.362533pt;}
.x45{left:87.036000pt;}
.x46{left:94.488133pt;}
.x37{left:96.378667pt;}
.x42{left:97.646933pt;}
.x4c{left:98.664000pt;}
.x43{left:102.873600pt;}
.x4b{left:105.464000pt;}
.x36{left:107.698267pt;}
.x49{left:112.264000pt;}
.x4a{left:119.064000pt;}
.x2a{left:121.415867pt;}
.x3a{left:124.817333pt;}
.x2b{left:126.642533pt;}
.x3b{left:143.866667pt;}
.x4d{left:144.756400pt;}
.x30{left:147.997200pt;}
.x29{left:157.799867pt;}
.x4e{left:163.648800pt;}
.x39{left:180.920800pt;}
.x4f{left:182.541200pt;}
.x2d{left:186.397200pt;}
.x50{left:196.141067pt;}
.x44{left:209.006933pt;}
.x51{left:215.033467pt;}
.x11{left:228.631867pt;}
.x10{left:229.782400pt;}
.x1b{left:232.107600pt;}
.x31{left:234.333200pt;}
.x1f{left:243.122400pt;}
.x1e{left:244.272933pt;}
.x52{left:252.818267pt;}
.x53{left:271.710667pt;}
.xf{left:288.557467pt;}
.x54{left:290.602933pt;}
.x1d{left:300.413333pt;}
.x12{left:310.263200pt;}
.x13{left:312.138533pt;}
.x20{left:322.119200pt;}
.x21{left:323.994400pt;}
.x55{left:328.387733pt;}
.x32{left:329.426533pt;}
.x3c{left:341.152133pt;}
.x56{left:347.280133pt;}
.x2c{left:356.775867pt;}
.x40{left:359.222400pt;}
.x57{left:360.880133pt;}
.x58{left:379.772533pt;}
.xa{left:395.555067pt;}
.x59{left:398.664933pt;}
.x15{left:399.725067pt;}
.x23{left:408.628933pt;}
.x14{left:409.879733pt;}
.x9{left:411.968533pt;}
.x48{left:416.375600pt;}
.x47{left:417.781467pt;}
.x22{left:419.101067pt;}
.xc{left:423.307067pt;}
.x5a{left:436.449733pt;}
.x41{left:438.425200pt;}
.x3e{left:454.206000pt;}
.x5b{left:455.342133pt;}
.x3f{left:473.255333pt;}
.x5c{left:474.234533pt;}
.x5d{left:487.834533pt;}
.x17{left:490.439600pt;}
.x16{left:491.590133pt;}
.x25{left:497.026267pt;}
.x24{left:498.176800pt;}
.x34{left:507.399867pt;}
.x33{left:508.978533pt;}
.x3d{left:510.310133pt;}
.x5e{left:525.619333pt;}
.x5f{left:544.511733pt;}
.x60{left:563.404133pt;}
.x2{left:570.082133pt;}
.xb{left:571.111333pt;}
.x18{left:572.070933pt;}
.x5{left:574.488133pt;}
.x26{left:576.022933pt;}
.x4{left:577.818000pt;}
.x61{left:582.296533pt;}
.x35{left:595.687867pt;}
.x7{left:604.717067pt;}
.x62{left:614.788933pt;}
.x3{left:626.947333pt;}
.x2f{left:629.746533pt;}
.x63{left:633.681333pt;}
.x6{left:643.222933pt;}
.x64{left:652.907067pt;}
.x1a{left:661.532800pt;}
.x28{left:662.532800pt;}
.x65{left:666.507067pt;}
.x19{left:671.687467pt;}
.x27{left:673.004800pt;}
.x66{left:680.107067pt;}
.x67{left:693.707067pt;}
}




    .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; }
  