
    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_c57d1184b02e6526bd58129a.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.030273;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_2877eec8ae4ee2652a92ebdd.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005371;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_300080b30b318d1d4b19b573.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005371;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_5e680130ced3be67f0799d03.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.030273;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_fbbb84f0d2d8e08b9f268fd0.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.087891;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_d94b05ad744ac8cc1737caa5.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.942383;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_5f9215bf884ca6787c6e8459.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.172852;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_1dbca4f454935405bf9e45e8.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.202148;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_15828f6495929fa148271b4e.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.172852;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_7fb648d7ca72e62524c06862.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.005371;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_a1b5bac760ac5f81802fbb23.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.934082;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_7e87643be3d6ab9445cd2e33.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.000000;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_9887c973827e919daecddb6e.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.005371;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_888b1d3551965acddbb73051.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.021484;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_279640540464e80b9cca71f2.woff2')format("woff");}.fff{font-family:fff;line-height:1.087891;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_e1ce320c913fd0d206f274fa.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.949219;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_30f7710a8cf5d0adab5c339d.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.941406;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_9b16e5223e1b2f53206822d5.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.758789;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_81d11e4c3d130b0cd18ec8d5.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.941406;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_c9feb7bc54c3b975a05d8f1f.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.682617;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_e8c518f234ba08f02d8213ef.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.202148;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_9ddc1ac9b5ea6e9bc7dfa136.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.100586;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;}
.m2{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v8{vertical-align:-109.380000px;}
.v5{vertical-align:-82.320000px;}
.v6{vertical-align:-48.840000px;}
.va{vertical-align:-11.340000px;}
.v9{vertical-align:-1.800000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:2.880000px;}
.v1{vertical-align:5.700000px;}
.v3{vertical-align:9.000000px;}
.v7{vertical-align:39.000000px;}
.v4{vertical-align:116.520000px;}
.ls1b{letter-spacing:-3.648000px;}
.ls20{letter-spacing:-2.196000px;}
.ls1{letter-spacing:-2.190000px;}
.ls2b{letter-spacing:-2.004000px;}
.ls4b{letter-spacing:-1.656000px;}
.ls22{letter-spacing:-1.566000px;}
.ls43{letter-spacing:-1.506000px;}
.lsc{letter-spacing:-1.440000px;}
.ls10{letter-spacing:-1.236000px;}
.ls3a{letter-spacing:-1.200000px;}
.ls5a{letter-spacing:-1.110000px;}
.ls56{letter-spacing:-1.038000px;}
.ls25{letter-spacing:-1.014000px;}
.ls57{letter-spacing:-0.948000px;}
.ls23{letter-spacing:-0.942000px;}
.ls1c{letter-spacing:-0.912000px;}
.ls59{letter-spacing:-0.906000px;}
.ls3b{letter-spacing:-0.888000px;}
.ls5e{letter-spacing:-0.864000px;}
.ls5b{letter-spacing:-0.858000px;}
.ls5d{letter-spacing:-0.708000px;}
.ls19{letter-spacing:-0.592200px;}
.ls6{letter-spacing:-0.454200px;}
.ls7{letter-spacing:-0.286800px;}
.ls11{letter-spacing:-0.253800px;}
.lse{letter-spacing:-0.230400px;}
.ls52{letter-spacing:-0.082800px;}
.ls13{letter-spacing:-0.080400px;}
.ls9{letter-spacing:-0.037500px;}
.ls0{letter-spacing:0.000000px;}
.ls50{letter-spacing:0.037500px;}
.ls4f{letter-spacing:0.067200px;}
.ls4e{letter-spacing:0.067500px;}
.ls18{letter-spacing:0.078600px;}
.ls51{letter-spacing:0.097500px;}
.ls14{letter-spacing:0.141600px;}
.ls17{letter-spacing:0.213300px;}
.lsf{letter-spacing:0.278100px;}
.ls3{letter-spacing:0.282000px;}
.lsd{letter-spacing:0.402000px;}
.ls41{letter-spacing:0.432600px;}
.ls16{letter-spacing:0.458100px;}
.ls4c{letter-spacing:0.475800px;}
.ls8{letter-spacing:0.532800px;}
.ls37{letter-spacing:0.557100px;}
.ls33{letter-spacing:0.617100px;}
.ls5f{letter-spacing:0.660000px;}
.ls24{letter-spacing:0.672000px;}
.lsa{letter-spacing:0.684000px;}
.ls5c{letter-spacing:0.720000px;}
.ls2d{letter-spacing:0.737100px;}
.ls1f{letter-spacing:0.912000px;}
.ls40{letter-spacing:0.930000px;}
.ls36{letter-spacing:0.933600px;}
.ls3f{letter-spacing:1.008000px;}
.ls2e{letter-spacing:1.008300px;}
.ls2{letter-spacing:1.020000px;}
.ls1d{letter-spacing:1.062000px;}
.ls34{letter-spacing:1.128300px;}
.ls58{letter-spacing:1.260000px;}
.lsb{letter-spacing:1.386000px;}
.ls42{letter-spacing:1.428000px;}
.ls12{letter-spacing:1.506000px;}
.ls1a{letter-spacing:1.578000px;}
.ls45{letter-spacing:1.585650px;}
.ls46{letter-spacing:1.587300px;}
.ls21{letter-spacing:1.602000px;}
.ls47{letter-spacing:1.716000px;}
.ls44{letter-spacing:1.729800px;}
.ls4{letter-spacing:1.824000px;}
.ls48{letter-spacing:1.866000px;}
.ls2a{letter-spacing:1.878000px;}
.ls29{letter-spacing:1.986000px;}
.ls5{letter-spacing:2.058000px;}
.ls3d{letter-spacing:2.322000px;}
.ls3e{letter-spacing:2.346000px;}
.ls26{letter-spacing:2.352000px;}
.ls54{letter-spacing:2.430000px;}
.ls4a{letter-spacing:2.496000px;}
.ls3c{letter-spacing:2.508000px;}
.ls53{letter-spacing:2.556000px;}
.ls15{letter-spacing:27.825000px;}
.ls55{letter-spacing:34.920000px;}
.ls38{letter-spacing:35.010000px;}
.ls31{letter-spacing:35.100000px;}
.ls2f{letter-spacing:35.190000px;}
.ls27{letter-spacing:39.193800px;}
.ls28{letter-spacing:39.340650px;}
.ls39{letter-spacing:58.674300px;}
.ls4d{letter-spacing:76.620000px;}
.ls30{letter-spacing:76.770000px;}
.ls35{letter-spacing:76.800000px;}
.ls2c{letter-spacing:76.822500px;}
.ls32{letter-spacing:76.852500px;}
.ls49{letter-spacing:157.792500px;}
.ls60{letter-spacing:591.698100px;}
.ls1e{letter-spacing:1081.431000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,51,73),0 0.015em rgb(0,51,73),0.015em 0 rgb(0,51,73),0 -0.015em  rgb(0,51,73);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,51,73);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws31{word-spacing:-216.300000px;}
.ws4f{word-spacing:-81.012300px;}
.ws60{word-spacing:-58.555350px;}
.ws1a{word-spacing:-56.238000px;}
.ws53{word-spacing:-49.649700px;}
.ws54{word-spacing:-49.582500px;}
.ws55{word-spacing:-49.499700px;}
.ws25{word-spacing:-46.878000px;}
.ws2b{word-spacing:-46.839000px;}
.ws14{word-spacing:-43.908900px;}
.wsc{word-spacing:-43.622100px;}
.ws2d{word-spacing:-41.028000px;}
.ws41{word-spacing:-40.989000px;}
.ws50{word-spacing:-40.158900px;}
.ws57{word-spacing:-40.126800px;}
.ws4a{word-spacing:-40.008900px;}
.ws49{word-spacing:-39.984900px;}
.ws4c{word-spacing:-38.670900px;}
.ws4b{word-spacing:-38.626800px;}
.wse{word-spacing:-37.696800px;}
.ws47{word-spacing:-37.662900px;}
.ws1c{word-spacing:-37.518000px;}
.ws1e{word-spacing:-37.479000px;}
.ws26{word-spacing:-36.243000px;}
.ws1d{word-spacing:-36.078000px;}
.ws6{word-spacing:-35.653950px;}
.ws52{word-spacing:-33.087600px;}
.ws4d{word-spacing:-33.010500px;}
.ws13{word-spacing:-32.611800px;}
.ws12{word-spacing:-32.577900px;}
.ws0{word-spacing:-32.033400px;}
.ws4e{word-spacing:-31.071900px;}
.ws51{word-spacing:-30.921900px;}
.ws5{word-spacing:-29.292900px;}
.ws4{word-spacing:-29.262450px;}
.ws59{word-spacing:-28.786800px;}
.ws2a{word-spacing:-28.119000px;}
.ws5a{word-spacing:-27.526800px;}
.ws5d{word-spacing:-27.492900px;}
.ws5e{word-spacing:-26.634900px;}
.ws5f{word-spacing:-26.628900px;}
.ws5b{word-spacing:-26.620800px;}
.ws58{word-spacing:-26.578800px;}
.ws5c{word-spacing:-26.382900px;}
.ws22{word-spacing:-24.441900px;}
.ws29{word-spacing:-24.361500px;}
.ws24{word-spacing:-24.211500px;}
.ws2f{word-spacing:-23.871000px;}
.ws18{word-spacing:-22.269000px;}
.ws1{word-spacing:-22.230000px;}
.ws2e{word-spacing:-20.073000px;}
.ws9{word-spacing:-19.356900px;}
.ws3{word-spacing:-19.213950px;}
.ws1f{word-spacing:-16.272000px;}
.wsb{word-spacing:-12.237900px;}
.wsa{word-spacing:-12.204000px;}
.ws8{word-spacing:-6.303300px;}
.ws2c{word-spacing:-4.556400px;}
.ws42{word-spacing:-3.298350px;}
.ws21{word-spacing:-2.708250px;}
.ws16{word-spacing:-2.162700px;}
.ws40{word-spacing:-2.122950px;}
.ws10{word-spacing:-1.922100px;}
.ws34{word-spacing:-1.884150px;}
.ws15{word-spacing:-1.740150px;}
.ws3f{word-spacing:-1.564800px;}
.ws28{word-spacing:-0.744750px;}
.ws7{word-spacing:-0.509400px;}
.ws39{word-spacing:-0.474900px;}
.ws48{word-spacing:-0.396000px;}
.ws30{word-spacing:-0.244200px;}
.ws32{word-spacing:-0.170400px;}
.ws20{word-spacing:-0.084600px;}
.ws2{word-spacing:0.000000px;}
.ws33{word-spacing:0.268050px;}
.ws37{word-spacing:0.292800px;}
.ws38{word-spacing:0.434400px;}
.ws19{word-spacing:0.702000px;}
.ws56{word-spacing:0.883350px;}
.ws27{word-spacing:0.898650px;}
.ws43{word-spacing:1.150500px;}
.ws45{word-spacing:1.350000px;}
.ws35{word-spacing:1.501800px;}
.ws3c{word-spacing:1.528800px;}
.ws11{word-spacing:1.602750px;}
.ws3a{word-spacing:1.755600px;}
.wsf{word-spacing:2.133750px;}
.ws46{word-spacing:2.284800px;}
.ws3b{word-spacing:2.305800px;}
.ws3d{word-spacing:2.308500px;}
.ws36{word-spacing:2.773200px;}
.ws23{word-spacing:43.112250px;}
.ws44{word-spacing:45.190500px;}
.ws1b{word-spacing:176.254200px;}
.ws3e{word-spacing:203.311800px;}
.wsd{word-spacing:1306.176600px;}
.ws17{word-spacing:2477.010750px;}
._1c{margin-left:-790.560000px;}
._1{margin-left:-24.105000px;}
._2{margin-left:-22.658700px;}
._9{margin-left:-18.451200px;}
._2a{margin-left:-17.087700px;}
._13{margin-left:-15.012000px;}
._2e{margin-left:-13.594200px;}
._0{margin-left:-12.052500px;}
._23{margin-left:-10.182300px;}
._e{margin-left:-8.585400px;}
._10{margin-left:-7.458150px;}
._11{margin-left:-6.181500px;}
._5{margin-left:-4.891800px;}
._4{margin-left:-3.374700px;}
._3{margin-left:-1.446300px;}
._7{width:1.059900px;}
._6{width:2.524800px;}
._d{width:3.974550px;}
._8{width:5.570700px;}
._18{width:20.587950px;}
._1e{width:22.481400px;}
._1f{width:25.551900px;}
._20{width:26.768550px;}
._c{width:28.061250px;}
._b{width:30.768750px;}
._a{width:31.903650px;}
._2c{width:34.175400px;}
._2d{width:35.223150px;}
._26{width:37.840950px;}
._28{width:39.601800px;}
._27{width:40.791300px;}
._12{width:42.632400px;}
._22{width:46.151400px;}
._25{width:47.418600px;}
._f{width:50.091300px;}
._2b{width:54.668400px;}
._14{width:165.740700px;}
._17{width:207.113850px;}
._15{width:226.535100px;}
._16{width:246.710400px;}
._21{width:286.103550px;}
._19{width:329.358300px;}
._1d{width:376.189800px;}
._1a{width:432.318150px;}
._29{width:807.810600px;}
._1b{width:1347.814200px;}
._24{width:2938.546350px;}
.fc16{color:rgb(32,165,99);}
.fc15{color:rgb(193,57,29);}
.fc13{color:rgb(185,73,120);}
.fc12{color:rgb(102,167,177);}
.fc11{color:rgb(112,173,71);}
.fcf{color:rgb(153,61,100);}
.fc0{color:rgb(0,0,0);}
.fc2{color:rgb(255,255,255);}
.fce{color:rgb(34,100,186);}
.fc1{color:rgb(20,96,110);}
.fc14{color:rgb(30,113,68);}
.fc3{color:rgb(0,51,73);}
.fcd{color:rgb(0,32,96);}
.fc4{color:transparent;}
.fcc{color:rgb(118,113,113);}
.fc7{color:rgb(211,197,104);}
.fc8{color:rgb(0,112,192);}
.fc9{color:rgb(47,85,151);}
.fc10{color:rgb(186,73,121);}
.fc6{color:rgb(183,131,196);}
.fca{color:rgb(0,176,240);}
.fc5{color:rgb(5,99,193);}
.fcb{color:rgb(3,30,43);}
.fse{font-size:54.000000px;}
.fsf{font-size:54.150000px;}
.fs10{font-size:72.000000px;}
.fs11{font-size:72.150000px;}
.fs3{font-size:85.500000px;}
.fsd{font-size:85.650000px;}
.fs15{font-size:90.150000px;}
.fs7{font-size:94.650000px;}
.fs4{font-size:108.150000px;}
.fs14{font-size:113.998970px;}
.fs17{font-size:121.650000px;}
.fs16{font-size:121.800000px;}
.fs6{font-size:144.150000px;}
.fs8{font-size:144.300000px;}
.fs2{font-size:157.650000px;}
.fs1{font-size:157.800000px;}
.fsa{font-size:166.650000px;}
.fs9{font-size:166.800000px;}
.fs13{font-size:180.150000px;}
.fs12{font-size:180.300000px;}
.fsc{font-size:216.300000px;}
.fsb{font-size:238.800000px;}
.fs5{font-size:288.300000px;}
.fs18{font-size:288.450000px;}
.fs0{font-size:482.100000px;}
.y0{bottom:0.000000px;}
.y2{bottom:1.005000px;}
.y116{bottom:3.825000px;}
.y117{bottom:4.275000px;}
.y66{bottom:6.562500px;}
.ycf{bottom:7.087500px;}
.yd1{bottom:8.100000px;}
.y68{bottom:8.137500px;}
.y18{bottom:9.262500px;}
.yea{bottom:9.600000px;}
.yd2{bottom:9.787500px;}
.yc8{bottom:9.975000px;}
.y90{bottom:10.425000px;}
.y101{bottom:10.500000px;}
.ye6{bottom:10.875000px;}
.yd9{bottom:12.375000px;}
.y93{bottom:12.675000px;}
.y6{bottom:12.825000px;}
.y111{bottom:14.137500px;}
.y57{bottom:15.750000px;}
.y10a{bottom:18.225000px;}
.y108{bottom:22.087500px;}
.y7{bottom:29.100000px;}
.y56{bottom:32.625000px;}
.ya{bottom:34.425000px;}
.y92{bottom:44.437500px;}
.y53{bottom:49.500000px;}
.y59{bottom:49.987500px;}
.y58{bottom:51.525000px;}
.y44{bottom:51.675000px;}
.y3e{bottom:51.825000px;}
.y37{bottom:51.975000px;}
.y51{bottom:52.087500px;}
.y1e{bottom:52.125000px;}
.y3b{bottom:52.245000px;}
.y2b{bottom:52.275000px;}
.y23{bottom:52.380000px;}
.y54{bottom:52.387500px;}
.y1c{bottom:52.530000px;}
.y29{bottom:52.695000px;}
.y20{bottom:52.830000px;}
.y33{bottom:52.845000px;}
.y1a{bottom:52.950000px;}
.y26{bottom:53.100000px;}
.y155{bottom:61.987500px;}
.y52{bottom:67.500000px;}
.y14f{bottom:67.612500px;}
.y91{bottom:70.350000px;}
.y120{bottom:70.575000px;}
.y9a{bottom:81.150000px;}
.y50{bottom:84.375000px;}
.y7a{bottom:86.100000px;}
.y100{bottom:87.600000px;}
.y115{bottom:92.700000px;}
.y4e{bottom:101.250000px;}
.y55{bottom:101.887500px;}
.yab{bottom:102.600000px;}
.y10b{bottom:107.662500px;}
.y154{bottom:112.687500px;}
.y5{bottom:113.700000px;}
.y4c{bottom:119.250000px;}
.y14e{bottom:121.687500px;}
.y79{bottom:128.925000px;}
.y102{bottom:129.187500px;}
.y83{bottom:132.450000px;}
.y15{bottom:132.562500px;}
.y99{bottom:134.025000px;}
.yaa{bottom:135.300000px;}
.y4b{bottom:136.125000px;}
.yff{bottom:138.300000px;}
.y14d{bottom:148.725000px;}
.ydc{bottom:150.375000px;}
.y49{bottom:153.000000px;}
.y4f{bottom:153.780000px;}
.y12a{bottom:163.350000px;}
.y48{bottom:171.000000px;}
.y4d{bottom:171.075000px;}
.yf7{bottom:171.450000px;}
.y121{bottom:171.930000px;}
.y4{bottom:175.650000px;}
.y14c{bottom:175.755000px;}
.y82{bottom:176.400000px;}
.y14{bottom:183.225000px;}
.y46{bottom:187.875000px;}
.yfe{bottom:189.000000px;}
.ye1{bottom:192.195000px;}
.ydb{bottom:193.170000px;}
.y164{bottom:199.425000px;}
.ya9{bottom:201.795000px;}
.y113{bottom:202.500000px;}
.y14b{bottom:202.800000px;}
.yf6{bottom:202.980000px;}
.y9c{bottom:203.925000px;}
.y114{bottom:204.630000px;}
.y4a{bottom:205.695000px;}
.y43{bottom:205.875000px;}
.yd8{bottom:207.825000px;}
.ye5{bottom:214.050000px;}
.y78{bottom:215.655000px;}
.y11f{bottom:221.505000px;}
.yb2{bottom:222.720000px;}
.y42{bottom:222.750000px;}
.y14a{bottom:229.845000px;}
.y161{bottom:232.080000px;}
.y112{bottom:233.070000px;}
.y13{bottom:233.925000px;}
.y84{bottom:234.720000px;}
.y163{bottom:235.455000px;}
.yce{bottom:235.695000px;}
.yda{bottom:235.995000px;}
.y3{bottom:237.645000px;}
.y40{bottom:239.625000px;}
.y47{bottom:240.255000px;}
.yc{bottom:249.405000px;}
.y6f{bottom:250.950000px;}
.y65{bottom:251.550000px;}
.ye{bottom:251.880000px;}
.yb1{bottom:255.375000px;}
.y149{bottom:256.875000px;}
.ybe{bottom:256.980000px;}
.y9b{bottom:257.205000px;}
.y45{bottom:257.550000px;}
.y3d{bottom:257.625000px;}
.ye4{bottom:258.000000px;}
.y77{bottom:259.620000px;}
.y81{bottom:263.130000px;}
.y129{bottom:263.625000px;}
.y160{bottom:268.125000px;}
.y162{bottom:271.500000px;}
.y11e{bottom:272.205000px;}
.y3a{bottom:274.500000px;}
.y131{bottom:277.875000px;}
.ycd{bottom:278.505000px;}
.ye0{bottom:278.925000px;}
.y103{bottom:282.450000px;}
.y148{bottom:283.905000px;}
.yb0{bottom:286.905000px;}
.ybd{bottom:289.650000px;}
.y38{bottom:291.375000px;}
.y41{bottom:292.155000px;}
.yb{bottom:292.230000px;}
.yd7{bottom:294.570000px;}
.yd{bottom:294.720000px;}
.y64{bottom:295.470000px;}
.y76{bottom:302.400000px;}
.y15f{bottom:304.200000px;}
.y80{bottom:305.955000px;}
.y36{bottom:309.375000px;}
.y3f{bottom:309.450000px;}
.y6e{bottom:309.525000px;}
.y128{bottom:314.325000px;}
.yc4{bottom:319.350000px;}
.ybc{bottom:321.195000px;}
.ydf{bottom:321.750000px;}
.y11d{bottom:322.905000px;}
.y8b{bottom:324.450000px;}
.y12{bottom:325.200000px;}
.ya8{bottom:325.725000px;}
.y34{bottom:326.250000px;}
.y3c{bottom:326.745000px;}
.y130{bottom:328.575000px;}
.ya2{bottom:328.770000px;}
.yd6{bottom:337.380000px;}
.y147{bottom:337.980000px;}
.y63{bottom:338.295000px;}
.y166{bottom:338.475000px;}
.y15e{bottom:340.245000px;}
.y32{bottom:343.125000px;}
.y39{bottom:344.070000px;}
.y75{bottom:345.225000px;}
.y7f{bottom:348.750000px;}
.ybb{bottom:348.825000px;}
.yaf{bottom:352.875000px;}
.ya7{bottom:358.380000px;}
.y30{bottom:361.125000px;}
.yc3{bottom:363.255000px;}
.y94{bottom:363.405000px;}
.y127{bottom:365.025000px;}
.ycc{bottom:365.250000px;}
.y8f{bottom:366.945000px;}
.y6d{bottom:368.100000px;}
.y8a{bottom:368.400000px;}
.yfd{bottom:369.195000px;}
.ya1{bottom:372.720000px;}
.y11c{bottom:373.605000px;}
.yc7{bottom:374.175000px;}
.y11{bottom:375.870000px;}
.y15d{bottom:376.275000px;}
.y165{bottom:376.755000px;}
.y2e{bottom:378.000000px;}
.y5d{bottom:378.405000px;}
.y35{bottom:378.630000px;}
.y12f{bottom:379.275000px;}
.y74{bottom:389.145000px;}
.y146{bottom:392.070000px;}
.y7e{bottom:392.700000px;}
.yee{bottom:393.495000px;}
.y2c{bottom:394.875000px;}
.yf2{bottom:400.500000px;}
.yb6{bottom:404.505000px;}
.yc2{bottom:406.095000px;}
.y137{bottom:406.695000px;}
.yc6{bottom:406.845000px;}
.ye9{bottom:407.325000px;}
.yde{bottom:408.495000px;}
.y8e{bottom:409.755000px;}
.y89{bottom:411.225000px;}
.y15c{bottom:412.350000px;}
.y2a{bottom:412.875000px;}
.y31{bottom:413.250000px;}
.ya0{bottom:415.500000px;}
.y126{bottom:415.725000px;}
.yfc{bottom:418.755000px;}
.y145{bottom:419.100000px;}
.y110{bottom:423.570000px;}
.yd5{bottom:424.125000px;}
.y11b{bottom:424.320000px;}
.y13e{bottom:424.950000px;}
.y62{bottom:425.025000px;}
.y6c{bottom:426.675000px;}
.y95{bottom:427.275000px;}
.y28{bottom:429.750000px;}
.y12e{bottom:429.975000px;}
.y2f{bottom:430.530000px;}
.y73{bottom:431.970000px;}
.y7d{bottom:435.495000px;}
.yc5{bottom:439.530000px;}
.yed{bottom:439.695000px;}
.y144{bottom:446.130000px;}
.y25{bottom:446.625000px;}
.yf1{bottom:446.655000px;}
.yb5{bottom:447.300000px;}
.y2d{bottom:447.825000px;}
.y15b{bottom:448.380000px;}
.yc1{bottom:448.875000px;}
.ye8{bottom:449.025000px;}
.y136{bottom:449.505000px;}
.ydd{bottom:451.320000px;}
.ycb{bottom:451.995000px;}
.y8d{bottom:452.550000px;}
.y88{bottom:454.005000px;}
.yba{bottom:455.655000px;}
.y9f{bottom:458.325000px;}
.y22{bottom:464.625000px;}
.y107{bottom:466.155000px;}
.y125{bottom:466.425000px;}
.yd4{bottom:466.905000px;}
.y10{bottom:467.130000px;}
.y13d{bottom:467.775000px;}
.y61{bottom:467.850000px;}
.yfb{bottom:469.455000px;}
.y5c{bottom:470.130000px;}
.y143{bottom:473.175000px;}
.y11a{bottom:473.880000px;}
.y72{bottom:475.905000px;}
.y7c{bottom:479.445000px;}
.y12d{bottom:479.550000px;}
.y153{bottom:481.245000px;}
.y1f{bottom:481.500000px;}
.y1{bottom:482.625000px;}
.y15a{bottom:484.425000px;}
.y6b{bottom:485.280000px;}
.yec{bottom:487.005000px;}
.yb9{bottom:488.325000px;}
.yf5{bottom:488.775000px;}
.yb4{bottom:491.250000px;}
.yc0{bottom:492.825000px;}
.ye7{bottom:492.945000px;}
.y135{bottom:493.470000px;}
.yf0{bottom:493.995000px;}
.y8c{bottom:496.500000px;}
.y87{bottom:497.955000px;}
.y1d{bottom:499.500000px;}
.y27{bottom:499.725000px;}
.y9{bottom:499.875000px;}
.y9e{bottom:502.245000px;}
.yae{bottom:510.975000px;}
.y13c{bottom:511.695000px;}
.y60{bottom:511.755000px;}
.y106{bottom:515.745000px;}
.y124{bottom:515.970000px;}
.yf4{bottom:516.120000px;}
.y1b{bottom:516.375000px;}
.y24{bottom:517.005000px;}
.yf{bottom:517.845000px;}
.y71{bottom:518.700000px;}
.yfa{bottom:520.125000px;}
.y159{bottom:520.500000px;}
.ya5{bottom:520.575000px;}
.yb8{bottom:521.025000px;}
.y7b{bottom:522.255000px;}
.y119{bottom:524.550000px;}
.y142{bottom:527.250000px;}
.y12c{bottom:530.250000px;}
.y152{bottom:530.820000px;}
.yeb{bottom:533.175000px;}
.y19{bottom:533.250000px;}
.y21{bottom:534.330000px;}
.y134{bottom:536.250000px;}
.y98{bottom:537.225000px;}
.yef{bottom:540.195000px;}
.y6a{bottom:543.870000px;}
.ya4{bottom:553.245000px;}
.y10e{bottom:554.025000px;}
.y13b{bottom:554.505000px;}
.y5f{bottom:554.580000px;}
.yc9{bottom:555.450000px;}
.y158{bottom:556.545000px;}
.y5a{bottom:559.725000px;}
.yf3{bottom:560.025000px;}
.yad{bottom:564.195000px;}
.yb7{bottom:564.780000px;}
.y105{bottom:566.400000px;}
.y123{bottom:566.670000px;}
.y97{bottom:569.880000px;}
.y118{bottom:575.250000px;}
.yca{bottom:576.075000px;}
.y138{bottom:579.075000px;}
.yb3{bottom:579.525000px;}
.y133{bottom:580.200000px;}
.y12b{bottom:580.950000px;}
.ybf{bottom:581.100000px;}
.y141{bottom:581.325000px;}
.y151{bottom:581.505000px;}
.y86{bottom:585.525000px;}
.ya3{bottom:585.900000px;}
.yac{bottom:586.245000px;}
.y70{bottom:590.400000px;}
.y9d{bottom:590.550000px;}
.y157{bottom:592.575000px;}
.y109{bottom:593.370000px;}
.y13a{bottom:598.470000px;}
.y10d{bottom:601.350000px;}
.yf9{bottom:601.725000px;}
.y140{bottom:608.370000px;}
.y96{bottom:614.445000px;}
.y5e{bottom:616.320000px;}
.y104{bottom:617.100000px;}
.y122{bottom:617.370000px;}
.y69{bottom:617.745000px;}
.ya6{bottom:619.500000px;}
.y5b{bottom:620.745000px;}
.y132{bottom:622.995000px;}
.y156{bottom:628.650000px;}
.y150{bottom:632.220000px;}
.y13f{bottom:635.400000px;}
.y139{bottom:641.250000px;}
.y10c{bottom:647.550000px;}
.y16{bottom:669.525000px;}
.y8{bottom:681.525000px;}
.ye2{bottom:689.700000px;}
.ye3{bottom:705.975000px;}
.y85{bottom:719.850000px;}
.y17{bottom:720.975000px;}
.y67{bottom:721.425000px;}
.yf8{bottom:732.345000px;}
.y10f{bottom:736.095000px;}
.yd0{bottom:753.780000px;}
.yd3{bottom:755.025000px;}
.h11{height:53.709961px;}
.h13{height:53.859155px;}
.h24{height:54.984375px;}
.h1a{height:55.089844px;}
.hf{height:65.408496px;}
.h5{height:65.419189px;}
.h1f{height:65.533960px;}
.h1b{height:71.762476px;}
.h42{height:78.485083px;}
.h9{height:81.802002px;}
.h1{height:82.125000px;}
.h39{height:82.168652px;}
.h6{height:82.749536px;}
.h38{height:84.441620px;}
.h3f{height:85.040771px;}
.h3e{height:85.189966px;}
.h25{height:87.699243px;}
.h26{height:96.699243px;}
.h2f{height:104.533960px;}
.h35{height:105.367456px;}
.h34{height:105.477100px;}
.h29{height:107.569116px;}
.h33{height:108.394043px;}
.h1d{height:110.197852px;}
.h23{height:110.294458px;}
.h22{height:110.409229px;}
.h2a{height:110.737573px;}
.h14{height:112.500000px;}
.h2b{height:112.687573px;}
.h12{height:113.625000px;}
.h10{height:114.750000px;}
.h36{height:120.623804px;}
.h37{height:120.738574px;}
.h44{height:120.996606px;}
.h43{height:121.145801px;}
.h8{height:121.837720px;}
.ha{height:121.964502px;}
.h30{height:124.582764px;}
.h31{height:124.712402px;}
.h40{height:125.497778px;}
.h41{height:125.628369px;}
.h3d{height:126.077344px;}
.h4{height:133.248120px;}
.h3{height:133.374902px;}
.h16{height:136.250244px;}
.h15{height:136.379883px;}
.h2c{height:137.839380px;}
.h27{height:137.954150px;}
.h21{height:140.834150px;}
.h18{height:143.375757px;}
.h19{height:143.524951px;}
.hc{height:144.028564px;}
.hb{height:144.158203px;}
.h2d{height:147.598901px;}
.h2e{height:147.752490px;}
.h3a{height:164.337305px;}
.h20{height:165.499072px;}
.h3b{height:165.754907px;}
.h3c{height:165.904102px;}
.h1e{height:170.637231px;}
.h1c{height:170.790820px;}
.h17{height:176.490820px;}
.h32{height:182.714648px;}
.he{height:182.819971px;}
.hd{height:201.837305px;}
.h28{height:224.089116px;}
.h7{height:243.675439px;}
.h45{height:243.802222px;}
.h2{height:407.478076px;}
.h0{height:810.000000px;}
.w3{width:72.000000px;}
.w5{width:108.000000px;}
.w4{width:127.125000px;}
.w1{width:1131.750000px;}
.w2{width:1439.999979px;}
.w0{width:1440.000000px;}
.x2{left:-9.000000px;}
.x0{left:0.000000px;}
.x18{left:2.445000px;}
.x1a{left:4.995000px;}
.x1c{left:6.570000px;}
.x2e{left:7.949979px;}
.x13{left:10.799979px;}
.x6f{left:26.624979px;}
.x37{left:40.874979px;}
.x57{left:42.074979px;}
.x6{left:44.324979px;}
.x47{left:46.912479px;}
.x42{left:49.499979px;}
.x4d{left:51.112479px;}
.x59{left:52.687479px;}
.x67{left:54.712479px;}
.x32{left:57.262479px;}
.x51{left:63.074979px;}
.x27{left:65.737479px;}
.x5d{left:67.087479px;}
.x1{left:68.625000px;}
.x24{left:70.200000px;}
.x2a{left:72.037479px;}
.x62{left:74.549979px;}
.x20{left:76.950000px;}
.x5f{left:78.074979px;}
.x76{left:80.924979px;}
.xa{left:84.562479px;}
.x52{left:86.399979px;}
.x2c{left:87.599979px;}
.x1d{left:89.445000px;}
.x23{left:90.495000px;}
.x60{left:92.212479px;}
.x26{left:93.870000px;}
.x21{left:96.195000px;}
.x78{left:101.024979px;}
.x9{left:105.562479px;}
.x7a{left:109.649979px;}
.x16{left:112.612479px;}
.x39{left:115.237479px;}
.xf{left:116.549979px;}
.x7f{left:117.712479px;}
.x15{left:118.874979px;}
.x7b{left:128.212479px;}
.x53{left:131.887479px;}
.x4f{left:133.612479px;}
.x61{left:135.449979px;}
.x14{left:139.274979px;}
.x50{left:140.437479px;}
.x73{left:142.349979px;}
.x31{left:147.824979px;}
.x2b{left:171.179979px;}
.x68{left:176.054979px;}
.x29{left:177.329979px;}
.x7c{left:182.279979px;}
.x77{left:189.029979px;}
.x5e{left:196.124979px;}
.x3{left:213.524979px;}
.x7e{left:216.029979px;}
.x7d{left:222.779979px;}
.x7{left:249.674979px;}
.x10{left:270.299979px;}
.x40{left:314.549979px;}
.x6e{left:317.369979px;}
.x38{left:347.249979px;}
.x2d{left:349.094979px;}
.x72{left:351.779979px;}
.x6b{left:365.969979px;}
.x4c{left:370.094979px;}
.x4a{left:376.529979px;}
.x44{left:381.974979px;}
.x46{left:383.099979px;}
.x48{left:384.674979px;}
.x41{left:388.154979px;}
.x3f{left:415.649979px;}
.x34{left:419.699979px;}
.x11{left:427.694979px;}
.xb{left:437.174979px;}
.x35{left:440.654979px;}
.x66{left:456.824979px;}
.xc{left:471.974979px;}
.x36{left:475.499979px;}
.x3e{left:477.854979px;}
.x5b{left:479.069979px;}
.x56{left:481.229979px;}
.x55{left:506.324979px;}
.x80{left:541.469979px;}
.x58{left:546.599979px;}
.x12{left:562.274979px;}
.x45{left:565.349979px;}
.x6d{left:568.874979px;}
.x4b{left:579.569979px;}
.x49{left:582.254979px;}
.x3d{left:599.774979px;}
.x70{left:618.794979px;}
.x64{left:631.094979px;}
.x3a{left:674.654979px;}
.x4e{left:685.574979px;}
.x5a{left:691.904979px;}
.x5c{left:713.774979px;}
.x74{left:731.354979px;}
.x75{left:785.399979px;}
.x71{left:797.399979px;}
.x33{left:798.569979px;}
.x79{left:805.169979px;}
.x2f{left:850.049979px;}
.x65{left:858.899979px;}
.x54{left:896.504979px;}
.x3b{left:959.999979px;}
.x8{left:986.744979px;}
.x28{left:1036.319979px;}
.x5{left:1038.254979px;}
.x17{left:1049.625000px;}
.x6c{left:1077.074979px;}
.x69{left:1084.169979px;}
.xd{left:1089.449979px;}
.x4{left:1091.549979px;}
.x19{left:1120.500000px;}
.x30{left:1137.524979px;}
.x6a{left:1155.569979px;}
.xe{left:1160.849979px;}
.x63{left:1180.199979px;}
.x43{left:1226.579979px;}
.x3c{left:1234.979979px;}
.x1b{left:1246.500000px;}
.x1f{left:1319.324979px;}
.x1e{left:1326.074979px;}
.x22{left:1332.854979px;}
.x25{left:1336.229979px;}
@media print{
.v8{vertical-align:-97.226667pt;}
.v5{vertical-align:-73.173333pt;}
.v6{vertical-align:-43.413333pt;}
.va{vertical-align:-10.080000pt;}
.v9{vertical-align:-1.600000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:2.560000pt;}
.v1{vertical-align:5.066667pt;}
.v3{vertical-align:8.000000pt;}
.v7{vertical-align:34.666667pt;}
.v4{vertical-align:103.573333pt;}
.ls1b{letter-spacing:-3.242667pt;}
.ls20{letter-spacing:-1.952000pt;}
.ls1{letter-spacing:-1.946667pt;}
.ls2b{letter-spacing:-1.781333pt;}
.ls4b{letter-spacing:-1.472000pt;}
.ls22{letter-spacing:-1.392000pt;}
.ls43{letter-spacing:-1.338667pt;}
.lsc{letter-spacing:-1.280000pt;}
.ls10{letter-spacing:-1.098667pt;}
.ls3a{letter-spacing:-1.066667pt;}
.ls5a{letter-spacing:-0.986667pt;}
.ls56{letter-spacing:-0.922667pt;}
.ls25{letter-spacing:-0.901333pt;}
.ls57{letter-spacing:-0.842667pt;}
.ls23{letter-spacing:-0.837333pt;}
.ls1c{letter-spacing:-0.810667pt;}
.ls59{letter-spacing:-0.805333pt;}
.ls3b{letter-spacing:-0.789333pt;}
.ls5e{letter-spacing:-0.768000pt;}
.ls5b{letter-spacing:-0.762667pt;}
.ls5d{letter-spacing:-0.629333pt;}
.ls19{letter-spacing:-0.526400pt;}
.ls6{letter-spacing:-0.403733pt;}
.ls7{letter-spacing:-0.254933pt;}
.ls11{letter-spacing:-0.225600pt;}
.lse{letter-spacing:-0.204800pt;}
.ls52{letter-spacing:-0.073600pt;}
.ls13{letter-spacing:-0.071467pt;}
.ls9{letter-spacing:-0.033333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls50{letter-spacing:0.033333pt;}
.ls4f{letter-spacing:0.059733pt;}
.ls4e{letter-spacing:0.060000pt;}
.ls18{letter-spacing:0.069867pt;}
.ls51{letter-spacing:0.086667pt;}
.ls14{letter-spacing:0.125867pt;}
.ls17{letter-spacing:0.189600pt;}
.lsf{letter-spacing:0.247200pt;}
.ls3{letter-spacing:0.250667pt;}
.lsd{letter-spacing:0.357333pt;}
.ls41{letter-spacing:0.384533pt;}
.ls16{letter-spacing:0.407200pt;}
.ls4c{letter-spacing:0.422933pt;}
.ls8{letter-spacing:0.473600pt;}
.ls37{letter-spacing:0.495200pt;}
.ls33{letter-spacing:0.548533pt;}
.ls5f{letter-spacing:0.586667pt;}
.ls24{letter-spacing:0.597333pt;}
.lsa{letter-spacing:0.608000pt;}
.ls5c{letter-spacing:0.640000pt;}
.ls2d{letter-spacing:0.655200pt;}
.ls1f{letter-spacing:0.810667pt;}
.ls40{letter-spacing:0.826667pt;}
.ls36{letter-spacing:0.829867pt;}
.ls3f{letter-spacing:0.896000pt;}
.ls2e{letter-spacing:0.896267pt;}
.ls2{letter-spacing:0.906667pt;}
.ls1d{letter-spacing:0.944000pt;}
.ls34{letter-spacing:1.002933pt;}
.ls58{letter-spacing:1.120000pt;}
.lsb{letter-spacing:1.232000pt;}
.ls42{letter-spacing:1.269333pt;}
.ls12{letter-spacing:1.338667pt;}
.ls1a{letter-spacing:1.402667pt;}
.ls45{letter-spacing:1.409467pt;}
.ls46{letter-spacing:1.410933pt;}
.ls21{letter-spacing:1.424000pt;}
.ls47{letter-spacing:1.525333pt;}
.ls44{letter-spacing:1.537600pt;}
.ls4{letter-spacing:1.621333pt;}
.ls48{letter-spacing:1.658667pt;}
.ls2a{letter-spacing:1.669333pt;}
.ls29{letter-spacing:1.765333pt;}
.ls5{letter-spacing:1.829333pt;}
.ls3d{letter-spacing:2.064000pt;}
.ls3e{letter-spacing:2.085333pt;}
.ls26{letter-spacing:2.090667pt;}
.ls54{letter-spacing:2.160000pt;}
.ls4a{letter-spacing:2.218667pt;}
.ls3c{letter-spacing:2.229333pt;}
.ls53{letter-spacing:2.272000pt;}
.ls15{letter-spacing:24.733333pt;}
.ls55{letter-spacing:31.040000pt;}
.ls38{letter-spacing:31.120000pt;}
.ls31{letter-spacing:31.200000pt;}
.ls2f{letter-spacing:31.280000pt;}
.ls27{letter-spacing:34.838933pt;}
.ls28{letter-spacing:34.969467pt;}
.ls39{letter-spacing:52.154933pt;}
.ls4d{letter-spacing:68.106667pt;}
.ls30{letter-spacing:68.240000pt;}
.ls35{letter-spacing:68.266667pt;}
.ls2c{letter-spacing:68.286667pt;}
.ls32{letter-spacing:68.313333pt;}
.ls49{letter-spacing:140.260000pt;}
.ls60{letter-spacing:525.953867pt;}
.ls1e{letter-spacing:961.272000pt;}
.ws31{word-spacing:-192.266667pt;}
.ws4f{word-spacing:-72.010933pt;}
.ws60{word-spacing:-52.049200pt;}
.ws1a{word-spacing:-49.989333pt;}
.ws53{word-spacing:-44.133067pt;}
.ws54{word-spacing:-44.073333pt;}
.ws55{word-spacing:-43.999733pt;}
.ws25{word-spacing:-41.669333pt;}
.ws2b{word-spacing:-41.634667pt;}
.ws14{word-spacing:-39.030133pt;}
.wsc{word-spacing:-38.775200pt;}
.ws2d{word-spacing:-36.469333pt;}
.ws41{word-spacing:-36.434667pt;}
.ws50{word-spacing:-35.696800pt;}
.ws57{word-spacing:-35.668267pt;}
.ws4a{word-spacing:-35.563467pt;}
.ws49{word-spacing:-35.542133pt;}
.ws4c{word-spacing:-34.374133pt;}
.ws4b{word-spacing:-34.334933pt;}
.wse{word-spacing:-33.508267pt;}
.ws47{word-spacing:-33.478133pt;}
.ws1c{word-spacing:-33.349333pt;}
.ws1e{word-spacing:-33.314667pt;}
.ws26{word-spacing:-32.216000pt;}
.ws1d{word-spacing:-32.069333pt;}
.ws6{word-spacing:-31.692400pt;}
.ws52{word-spacing:-29.411200pt;}
.ws4d{word-spacing:-29.342667pt;}
.ws13{word-spacing:-28.988267pt;}
.ws12{word-spacing:-28.958133pt;}
.ws0{word-spacing:-28.474133pt;}
.ws4e{word-spacing:-27.619467pt;}
.ws51{word-spacing:-27.486133pt;}
.ws5{word-spacing:-26.038133pt;}
.ws4{word-spacing:-26.011067pt;}
.ws59{word-spacing:-25.588267pt;}
.ws2a{word-spacing:-24.994667pt;}
.ws5a{word-spacing:-24.468267pt;}
.ws5d{word-spacing:-24.438133pt;}
.ws5e{word-spacing:-23.675467pt;}
.ws5f{word-spacing:-23.670133pt;}
.ws5b{word-spacing:-23.662933pt;}
.ws58{word-spacing:-23.625600pt;}
.ws5c{word-spacing:-23.451467pt;}
.ws22{word-spacing:-21.726133pt;}
.ws29{word-spacing:-21.654667pt;}
.ws24{word-spacing:-21.521333pt;}
.ws2f{word-spacing:-21.218667pt;}
.ws18{word-spacing:-19.794667pt;}
.ws1{word-spacing:-19.760000pt;}
.ws2e{word-spacing:-17.842667pt;}
.ws9{word-spacing:-17.206133pt;}
.ws3{word-spacing:-17.079067pt;}
.ws1f{word-spacing:-14.464000pt;}
.wsb{word-spacing:-10.878133pt;}
.wsa{word-spacing:-10.848000pt;}
.ws8{word-spacing:-5.602933pt;}
.ws2c{word-spacing:-4.050133pt;}
.ws42{word-spacing:-2.931867pt;}
.ws21{word-spacing:-2.407333pt;}
.ws16{word-spacing:-1.922400pt;}
.ws40{word-spacing:-1.887067pt;}
.ws10{word-spacing:-1.708533pt;}
.ws34{word-spacing:-1.674800pt;}
.ws15{word-spacing:-1.546800pt;}
.ws3f{word-spacing:-1.390933pt;}
.ws28{word-spacing:-0.662000pt;}
.ws7{word-spacing:-0.452800pt;}
.ws39{word-spacing:-0.422133pt;}
.ws48{word-spacing:-0.352000pt;}
.ws30{word-spacing:-0.217067pt;}
.ws32{word-spacing:-0.151467pt;}
.ws20{word-spacing:-0.075200pt;}
.ws2{word-spacing:0.000000pt;}
.ws33{word-spacing:0.238267pt;}
.ws37{word-spacing:0.260267pt;}
.ws38{word-spacing:0.386133pt;}
.ws19{word-spacing:0.624000pt;}
.ws56{word-spacing:0.785200pt;}
.ws27{word-spacing:0.798800pt;}
.ws43{word-spacing:1.022667pt;}
.ws45{word-spacing:1.200000pt;}
.ws35{word-spacing:1.334933pt;}
.ws3c{word-spacing:1.358933pt;}
.ws11{word-spacing:1.424667pt;}
.ws3a{word-spacing:1.560533pt;}
.wsf{word-spacing:1.896667pt;}
.ws46{word-spacing:2.030933pt;}
.ws3b{word-spacing:2.049600pt;}
.ws3d{word-spacing:2.052000pt;}
.ws36{word-spacing:2.465067pt;}
.ws23{word-spacing:38.322000pt;}
.ws44{word-spacing:40.169333pt;}
.ws1b{word-spacing:156.670400pt;}
.ws3e{word-spacing:180.721600pt;}
.wsd{word-spacing:1161.045867pt;}
.ws17{word-spacing:2201.787333pt;}
._1c{margin-left:-702.720000pt;}
._1{margin-left:-21.426667pt;}
._2{margin-left:-20.141067pt;}
._9{margin-left:-16.401067pt;}
._2a{margin-left:-15.189067pt;}
._13{margin-left:-13.344000pt;}
._2e{margin-left:-12.083733pt;}
._0{margin-left:-10.713333pt;}
._23{margin-left:-9.050933pt;}
._e{margin-left:-7.631467pt;}
._10{margin-left:-6.629467pt;}
._11{margin-left:-5.494667pt;}
._5{margin-left:-4.348267pt;}
._4{margin-left:-2.999733pt;}
._3{margin-left:-1.285600pt;}
._7{width:0.942133pt;}
._6{width:2.244267pt;}
._d{width:3.532933pt;}
._8{width:4.951733pt;}
._18{width:18.300400pt;}
._1e{width:19.983467pt;}
._1f{width:22.712800pt;}
._20{width:23.794267pt;}
._c{width:24.943333pt;}
._b{width:27.350000pt;}
._a{width:28.358800pt;}
._2c{width:30.378133pt;}
._2d{width:31.309467pt;}
._26{width:33.636400pt;}
._28{width:35.201600pt;}
._27{width:36.258933pt;}
._12{width:37.895467pt;}
._22{width:41.023467pt;}
._25{width:42.149867pt;}
._f{width:44.525600pt;}
._2b{width:48.594133pt;}
._14{width:147.325067pt;}
._17{width:184.101200pt;}
._15{width:201.364533pt;}
._16{width:219.298133pt;}
._21{width:254.314267pt;}
._19{width:292.762933pt;}
._1d{width:334.390933pt;}
._1a{width:384.282800pt;}
._29{width:718.053867pt;}
._1b{width:1198.057067pt;}
._24{width:2612.041200pt;}
.fse{font-size:48.000000pt;}
.fsf{font-size:48.133333pt;}
.fs10{font-size:64.000000pt;}
.fs11{font-size:64.133333pt;}
.fs3{font-size:76.000000pt;}
.fsd{font-size:76.133333pt;}
.fs15{font-size:80.133333pt;}
.fs7{font-size:84.133333pt;}
.fs4{font-size:96.133333pt;}
.fs14{font-size:101.332418pt;}
.fs17{font-size:108.133333pt;}
.fs16{font-size:108.266667pt;}
.fs6{font-size:128.133333pt;}
.fs8{font-size:128.266667pt;}
.fs2{font-size:140.133333pt;}
.fs1{font-size:140.266667pt;}
.fsa{font-size:148.133333pt;}
.fs9{font-size:148.266667pt;}
.fs13{font-size:160.133333pt;}
.fs12{font-size:160.266667pt;}
.fsc{font-size:192.266667pt;}
.fsb{font-size:212.266667pt;}
.fs5{font-size:256.266667pt;}
.fs18{font-size:256.400000pt;}
.fs0{font-size:428.533333pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:0.893333pt;}
.y116{bottom:3.400000pt;}
.y117{bottom:3.800000pt;}
.y66{bottom:5.833333pt;}
.ycf{bottom:6.300000pt;}
.yd1{bottom:7.200000pt;}
.y68{bottom:7.233333pt;}
.y18{bottom:8.233333pt;}
.yea{bottom:8.533333pt;}
.yd2{bottom:8.700000pt;}
.yc8{bottom:8.866667pt;}
.y90{bottom:9.266667pt;}
.y101{bottom:9.333333pt;}
.ye6{bottom:9.666667pt;}
.yd9{bottom:11.000000pt;}
.y93{bottom:11.266667pt;}
.y6{bottom:11.400000pt;}
.y111{bottom:12.566667pt;}
.y57{bottom:14.000000pt;}
.y10a{bottom:16.200000pt;}
.y108{bottom:19.633333pt;}
.y7{bottom:25.866667pt;}
.y56{bottom:29.000000pt;}
.ya{bottom:30.600000pt;}
.y92{bottom:39.500000pt;}
.y53{bottom:44.000000pt;}
.y59{bottom:44.433333pt;}
.y58{bottom:45.800000pt;}
.y44{bottom:45.933333pt;}
.y3e{bottom:46.066667pt;}
.y37{bottom:46.200000pt;}
.y51{bottom:46.300000pt;}
.y1e{bottom:46.333333pt;}
.y3b{bottom:46.440000pt;}
.y2b{bottom:46.466667pt;}
.y23{bottom:46.560000pt;}
.y54{bottom:46.566667pt;}
.y1c{bottom:46.693333pt;}
.y29{bottom:46.840000pt;}
.y20{bottom:46.960000pt;}
.y33{bottom:46.973333pt;}
.y1a{bottom:47.066667pt;}
.y26{bottom:47.200000pt;}
.y155{bottom:55.100000pt;}
.y52{bottom:60.000000pt;}
.y14f{bottom:60.100000pt;}
.y91{bottom:62.533333pt;}
.y120{bottom:62.733333pt;}
.y9a{bottom:72.133333pt;}
.y50{bottom:75.000000pt;}
.y7a{bottom:76.533333pt;}
.y100{bottom:77.866667pt;}
.y115{bottom:82.400000pt;}
.y4e{bottom:90.000000pt;}
.y55{bottom:90.566667pt;}
.yab{bottom:91.200000pt;}
.y10b{bottom:95.700000pt;}
.y154{bottom:100.166667pt;}
.y5{bottom:101.066667pt;}
.y4c{bottom:106.000000pt;}
.y14e{bottom:108.166667pt;}
.y79{bottom:114.600000pt;}
.y102{bottom:114.833333pt;}
.y83{bottom:117.733333pt;}
.y15{bottom:117.833333pt;}
.y99{bottom:119.133333pt;}
.yaa{bottom:120.266667pt;}
.y4b{bottom:121.000000pt;}
.yff{bottom:122.933333pt;}
.y14d{bottom:132.200000pt;}
.ydc{bottom:133.666667pt;}
.y49{bottom:136.000000pt;}
.y4f{bottom:136.693333pt;}
.y12a{bottom:145.200000pt;}
.y48{bottom:152.000000pt;}
.y4d{bottom:152.066667pt;}
.yf7{bottom:152.400000pt;}
.y121{bottom:152.826667pt;}
.y4{bottom:156.133333pt;}
.y14c{bottom:156.226667pt;}
.y82{bottom:156.800000pt;}
.y14{bottom:162.866667pt;}
.y46{bottom:167.000000pt;}
.yfe{bottom:168.000000pt;}
.ye1{bottom:170.840000pt;}
.ydb{bottom:171.706667pt;}
.y164{bottom:177.266667pt;}
.ya9{bottom:179.373333pt;}
.y113{bottom:180.000000pt;}
.y14b{bottom:180.266667pt;}
.yf6{bottom:180.426667pt;}
.y9c{bottom:181.266667pt;}
.y114{bottom:181.893333pt;}
.y4a{bottom:182.840000pt;}
.y43{bottom:183.000000pt;}
.yd8{bottom:184.733333pt;}
.ye5{bottom:190.266667pt;}
.y78{bottom:191.693333pt;}
.y11f{bottom:196.893333pt;}
.yb2{bottom:197.973333pt;}
.y42{bottom:198.000000pt;}
.y14a{bottom:204.306667pt;}
.y161{bottom:206.293333pt;}
.y112{bottom:207.173333pt;}
.y13{bottom:207.933333pt;}
.y84{bottom:208.640000pt;}
.y163{bottom:209.293333pt;}
.yce{bottom:209.506667pt;}
.yda{bottom:209.773333pt;}
.y3{bottom:211.240000pt;}
.y40{bottom:213.000000pt;}
.y47{bottom:213.560000pt;}
.yc{bottom:221.693333pt;}
.y6f{bottom:223.066667pt;}
.y65{bottom:223.600000pt;}
.ye{bottom:223.893333pt;}
.yb1{bottom:227.000000pt;}
.y149{bottom:228.333333pt;}
.ybe{bottom:228.426667pt;}
.y9b{bottom:228.626667pt;}
.y45{bottom:228.933333pt;}
.y3d{bottom:229.000000pt;}
.ye4{bottom:229.333333pt;}
.y77{bottom:230.773333pt;}
.y81{bottom:233.893333pt;}
.y129{bottom:234.333333pt;}
.y160{bottom:238.333333pt;}
.y162{bottom:241.333333pt;}
.y11e{bottom:241.960000pt;}
.y3a{bottom:244.000000pt;}
.y131{bottom:247.000000pt;}
.ycd{bottom:247.560000pt;}
.ye0{bottom:247.933333pt;}
.y103{bottom:251.066667pt;}
.y148{bottom:252.360000pt;}
.yb0{bottom:255.026667pt;}
.ybd{bottom:257.466667pt;}
.y38{bottom:259.000000pt;}
.y41{bottom:259.693333pt;}
.yb{bottom:259.760000pt;}
.yd7{bottom:261.840000pt;}
.yd{bottom:261.973333pt;}
.y64{bottom:262.640000pt;}
.y76{bottom:268.800000pt;}
.y15f{bottom:270.400000pt;}
.y80{bottom:271.960000pt;}
.y36{bottom:275.000000pt;}
.y3f{bottom:275.066667pt;}
.y6e{bottom:275.133333pt;}
.y128{bottom:279.400000pt;}
.yc4{bottom:283.866667pt;}
.ybc{bottom:285.506667pt;}
.ydf{bottom:286.000000pt;}
.y11d{bottom:287.026667pt;}
.y8b{bottom:288.400000pt;}
.y12{bottom:289.066667pt;}
.ya8{bottom:289.533333pt;}
.y34{bottom:290.000000pt;}
.y3c{bottom:290.440000pt;}
.y130{bottom:292.066667pt;}
.ya2{bottom:292.240000pt;}
.yd6{bottom:299.893333pt;}
.y147{bottom:300.426667pt;}
.y63{bottom:300.706667pt;}
.y166{bottom:300.866667pt;}
.y15e{bottom:302.440000pt;}
.y32{bottom:305.000000pt;}
.y39{bottom:305.840000pt;}
.y75{bottom:306.866667pt;}
.y7f{bottom:310.000000pt;}
.ybb{bottom:310.066667pt;}
.yaf{bottom:313.666667pt;}
.ya7{bottom:318.560000pt;}
.y30{bottom:321.000000pt;}
.yc3{bottom:322.893333pt;}
.y94{bottom:323.026667pt;}
.y127{bottom:324.466667pt;}
.ycc{bottom:324.666667pt;}
.y8f{bottom:326.173333pt;}
.y6d{bottom:327.200000pt;}
.y8a{bottom:327.466667pt;}
.yfd{bottom:328.173333pt;}
.ya1{bottom:331.306667pt;}
.y11c{bottom:332.093333pt;}
.yc7{bottom:332.600000pt;}
.y11{bottom:334.106667pt;}
.y15d{bottom:334.466667pt;}
.y165{bottom:334.893333pt;}
.y2e{bottom:336.000000pt;}
.y5d{bottom:336.360000pt;}
.y35{bottom:336.560000pt;}
.y12f{bottom:337.133333pt;}
.y74{bottom:345.906667pt;}
.y146{bottom:348.506667pt;}
.y7e{bottom:349.066667pt;}
.yee{bottom:349.773333pt;}
.y2c{bottom:351.000000pt;}
.yf2{bottom:356.000000pt;}
.yb6{bottom:359.560000pt;}
.yc2{bottom:360.973333pt;}
.y137{bottom:361.506667pt;}
.yc6{bottom:361.640000pt;}
.ye9{bottom:362.066667pt;}
.yde{bottom:363.106667pt;}
.y8e{bottom:364.226667pt;}
.y89{bottom:365.533333pt;}
.y15c{bottom:366.533333pt;}
.y2a{bottom:367.000000pt;}
.y31{bottom:367.333333pt;}
.ya0{bottom:369.333333pt;}
.y126{bottom:369.533333pt;}
.yfc{bottom:372.226667pt;}
.y145{bottom:372.533333pt;}
.y110{bottom:376.506667pt;}
.yd5{bottom:377.000000pt;}
.y11b{bottom:377.173333pt;}
.y13e{bottom:377.733333pt;}
.y62{bottom:377.800000pt;}
.y6c{bottom:379.266667pt;}
.y95{bottom:379.800000pt;}
.y28{bottom:382.000000pt;}
.y12e{bottom:382.200000pt;}
.y2f{bottom:382.693333pt;}
.y73{bottom:383.973333pt;}
.y7d{bottom:387.106667pt;}
.yc5{bottom:390.693333pt;}
.yed{bottom:390.840000pt;}
.y144{bottom:396.560000pt;}
.y25{bottom:397.000000pt;}
.yf1{bottom:397.026667pt;}
.yb5{bottom:397.600000pt;}
.y2d{bottom:398.066667pt;}
.y15b{bottom:398.560000pt;}
.yc1{bottom:399.000000pt;}
.ye8{bottom:399.133333pt;}
.y136{bottom:399.560000pt;}
.ydd{bottom:401.173333pt;}
.ycb{bottom:401.773333pt;}
.y8d{bottom:402.266667pt;}
.y88{bottom:403.560000pt;}
.yba{bottom:405.026667pt;}
.y9f{bottom:407.400000pt;}
.y22{bottom:413.000000pt;}
.y107{bottom:414.360000pt;}
.y125{bottom:414.600000pt;}
.yd4{bottom:415.026667pt;}
.y10{bottom:415.226667pt;}
.y13d{bottom:415.800000pt;}
.y61{bottom:415.866667pt;}
.yfb{bottom:417.293333pt;}
.y5c{bottom:417.893333pt;}
.y143{bottom:420.600000pt;}
.y11a{bottom:421.226667pt;}
.y72{bottom:423.026667pt;}
.y7c{bottom:426.173333pt;}
.y12d{bottom:426.266667pt;}
.y153{bottom:427.773333pt;}
.y1f{bottom:428.000000pt;}
.y1{bottom:429.000000pt;}
.y15a{bottom:430.600000pt;}
.y6b{bottom:431.360000pt;}
.yec{bottom:432.893333pt;}
.yb9{bottom:434.066667pt;}
.yf5{bottom:434.466667pt;}
.yb4{bottom:436.666667pt;}
.yc0{bottom:438.066667pt;}
.ye7{bottom:438.173333pt;}
.y135{bottom:438.640000pt;}
.yf0{bottom:439.106667pt;}
.y8c{bottom:441.333333pt;}
.y87{bottom:442.626667pt;}
.y1d{bottom:444.000000pt;}
.y27{bottom:444.200000pt;}
.y9{bottom:444.333333pt;}
.y9e{bottom:446.440000pt;}
.yae{bottom:454.200000pt;}
.y13c{bottom:454.840000pt;}
.y60{bottom:454.893333pt;}
.y106{bottom:458.440000pt;}
.y124{bottom:458.640000pt;}
.yf4{bottom:458.773333pt;}
.y1b{bottom:459.000000pt;}
.y24{bottom:459.560000pt;}
.yf{bottom:460.306667pt;}
.y71{bottom:461.066667pt;}
.yfa{bottom:462.333333pt;}
.y159{bottom:462.666667pt;}
.ya5{bottom:462.733333pt;}
.yb8{bottom:463.133333pt;}
.y7b{bottom:464.226667pt;}
.y119{bottom:466.266667pt;}
.y142{bottom:468.666667pt;}
.y12c{bottom:471.333333pt;}
.y152{bottom:471.840000pt;}
.yeb{bottom:473.933333pt;}
.y19{bottom:474.000000pt;}
.y21{bottom:474.960000pt;}
.y134{bottom:476.666667pt;}
.y98{bottom:477.533333pt;}
.yef{bottom:480.173333pt;}
.y6a{bottom:483.440000pt;}
.ya4{bottom:491.773333pt;}
.y10e{bottom:492.466667pt;}
.y13b{bottom:492.893333pt;}
.y5f{bottom:492.960000pt;}
.yc9{bottom:493.733333pt;}
.y158{bottom:494.706667pt;}
.y5a{bottom:497.533333pt;}
.yf3{bottom:497.800000pt;}
.yad{bottom:501.506667pt;}
.yb7{bottom:502.026667pt;}
.y105{bottom:503.466667pt;}
.y123{bottom:503.706667pt;}
.y97{bottom:506.560000pt;}
.y118{bottom:511.333333pt;}
.yca{bottom:512.066667pt;}
.y138{bottom:514.733333pt;}
.yb3{bottom:515.133333pt;}
.y133{bottom:515.733333pt;}
.y12b{bottom:516.400000pt;}
.ybf{bottom:516.533333pt;}
.y141{bottom:516.733333pt;}
.y151{bottom:516.893333pt;}
.y86{bottom:520.466667pt;}
.ya3{bottom:520.800000pt;}
.yac{bottom:521.106667pt;}
.y70{bottom:524.800000pt;}
.y9d{bottom:524.933333pt;}
.y157{bottom:526.733333pt;}
.y109{bottom:527.440000pt;}
.y13a{bottom:531.973333pt;}
.y10d{bottom:534.533333pt;}
.yf9{bottom:534.866667pt;}
.y140{bottom:540.773333pt;}
.y96{bottom:546.173333pt;}
.y5e{bottom:547.840000pt;}
.y104{bottom:548.533333pt;}
.y122{bottom:548.773333pt;}
.y69{bottom:549.106667pt;}
.ya6{bottom:550.666667pt;}
.y5b{bottom:551.773333pt;}
.y132{bottom:553.773333pt;}
.y156{bottom:558.800000pt;}
.y150{bottom:561.973333pt;}
.y13f{bottom:564.800000pt;}
.y139{bottom:570.000000pt;}
.y10c{bottom:575.600000pt;}
.y16{bottom:595.133333pt;}
.y8{bottom:605.800000pt;}
.ye2{bottom:613.066667pt;}
.ye3{bottom:627.533333pt;}
.y85{bottom:639.866667pt;}
.y17{bottom:640.866667pt;}
.y67{bottom:641.266667pt;}
.yf8{bottom:650.973333pt;}
.y10f{bottom:654.306667pt;}
.yd0{bottom:670.026667pt;}
.yd3{bottom:671.133333pt;}
.h11{height:47.742188pt;}
.h13{height:47.874805pt;}
.h24{height:48.875000pt;}
.h1a{height:48.968750pt;}
.hf{height:58.140885pt;}
.h5{height:58.150391pt;}
.h1f{height:58.252409pt;}
.h1b{height:63.788867pt;}
.h42{height:69.764518pt;}
.h9{height:72.712891pt;}
.h1{height:73.000000pt;}
.h39{height:73.038802pt;}
.h6{height:73.555143pt;}
.h38{height:75.059217pt;}
.h3f{height:75.591797pt;}
.h3e{height:75.724414pt;}
.h25{height:77.954883pt;}
.h26{height:85.954883pt;}
.h2f{height:92.919076pt;}
.h35{height:93.659961pt;}
.h34{height:93.757422pt;}
.h29{height:95.616992pt;}
.h33{height:96.350260pt;}
.h1d{height:97.953646pt;}
.h23{height:98.039518pt;}
.h22{height:98.141536pt;}
.h2a{height:98.433398pt;}
.h14{height:100.000000pt;}
.h2b{height:100.166732pt;}
.h12{height:101.000000pt;}
.h10{height:102.000000pt;}
.h36{height:107.221159pt;}
.h37{height:107.323177pt;}
.h44{height:107.552539pt;}
.h43{height:107.685156pt;}
.h8{height:108.300195pt;}
.ha{height:108.412891pt;}
.h30{height:110.740234pt;}
.h31{height:110.855469pt;}
.h40{height:111.553581pt;}
.h41{height:111.669661pt;}
.h3d{height:112.068750pt;}
.h4{height:118.442773pt;}
.h3{height:118.555469pt;}
.h16{height:121.111328pt;}
.h15{height:121.226562pt;}
.h2c{height:122.523893pt;}
.h27{height:122.625911pt;}
.h21{height:125.185911pt;}
.h18{height:127.445117pt;}
.h19{height:127.577734pt;}
.hc{height:128.025391pt;}
.hb{height:128.140625pt;}
.h2d{height:131.199023pt;}
.h2e{height:131.335547pt;}
.h3a{height:146.077604pt;}
.h20{height:147.110286pt;}
.h3b{height:147.337695pt;}
.h3c{height:147.470313pt;}
.h1e{height:151.677539pt;}
.h1c{height:151.814063pt;}
.h17{height:156.880729pt;}
.h32{height:162.413021pt;}
.he{height:162.506641pt;}
.hd{height:179.410937pt;}
.h28{height:199.190326pt;}
.h7{height:216.600391pt;}
.h45{height:216.713086pt;}
.h2{height:362.202734pt;}
.h0{height:720.000000pt;}
.w3{width:64.000000pt;}
.w5{width:96.000000pt;}
.w4{width:113.000000pt;}
.w1{width:1006.000000pt;}
.w2{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x2{left:-8.000000pt;}
.x0{left:0.000000pt;}
.x18{left:2.173333pt;}
.x1a{left:4.440000pt;}
.x1c{left:5.840000pt;}
.x2e{left:7.066648pt;}
.x13{left:9.599981pt;}
.x6f{left:23.666648pt;}
.x37{left:36.333314pt;}
.x57{left:37.399981pt;}
.x6{left:39.399981pt;}
.x47{left:41.699981pt;}
.x42{left:43.999981pt;}
.x4d{left:45.433314pt;}
.x59{left:46.833314pt;}
.x67{left:48.633314pt;}
.x32{left:50.899981pt;}
.x51{left:56.066648pt;}
.x27{left:58.433314pt;}
.x5d{left:59.633314pt;}
.x1{left:61.000000pt;}
.x24{left:62.400000pt;}
.x2a{left:64.033314pt;}
.x62{left:66.266648pt;}
.x20{left:68.400000pt;}
.x5f{left:69.399981pt;}
.x76{left:71.933314pt;}
.xa{left:75.166648pt;}
.x52{left:76.799981pt;}
.x2c{left:77.866648pt;}
.x1d{left:79.506667pt;}
.x23{left:80.440000pt;}
.x60{left:81.966648pt;}
.x26{left:83.440000pt;}
.x21{left:85.506667pt;}
.x78{left:89.799981pt;}
.x9{left:93.833314pt;}
.x7a{left:97.466648pt;}
.x16{left:100.099981pt;}
.x39{left:102.433314pt;}
.xf{left:103.599981pt;}
.x7f{left:104.633314pt;}
.x15{left:105.666648pt;}
.x7b{left:113.966648pt;}
.x53{left:117.233314pt;}
.x4f{left:118.766648pt;}
.x61{left:120.399981pt;}
.x14{left:123.799981pt;}
.x50{left:124.833314pt;}
.x73{left:126.533314pt;}
.x31{left:131.399981pt;}
.x2b{left:152.159981pt;}
.x68{left:156.493314pt;}
.x29{left:157.626648pt;}
.x7c{left:162.026648pt;}
.x77{left:168.026648pt;}
.x5e{left:174.333314pt;}
.x3{left:189.799981pt;}
.x7e{left:192.026648pt;}
.x7d{left:198.026648pt;}
.x7{left:221.933314pt;}
.x10{left:240.266648pt;}
.x40{left:279.599981pt;}
.x6e{left:282.106648pt;}
.x38{left:308.666648pt;}
.x2d{left:310.306648pt;}
.x72{left:312.693314pt;}
.x6b{left:325.306648pt;}
.x4c{left:328.973314pt;}
.x4a{left:334.693314pt;}
.x44{left:339.533314pt;}
.x46{left:340.533314pt;}
.x48{left:341.933314pt;}
.x41{left:345.026648pt;}
.x3f{left:369.466648pt;}
.x34{left:373.066648pt;}
.x11{left:380.173314pt;}
.xb{left:388.599981pt;}
.x35{left:391.693314pt;}
.x66{left:406.066648pt;}
.xc{left:419.533314pt;}
.x36{left:422.666648pt;}
.x3e{left:424.759981pt;}
.x5b{left:425.839981pt;}
.x56{left:427.759981pt;}
.x55{left:450.066648pt;}
.x80{left:481.306648pt;}
.x58{left:485.866648pt;}
.x12{left:499.799981pt;}
.x45{left:502.533314pt;}
.x6d{left:505.666648pt;}
.x4b{left:515.173314pt;}
.x49{left:517.559981pt;}
.x3d{left:533.133314pt;}
.x70{left:550.039981pt;}
.x64{left:560.973314pt;}
.x3a{left:599.693314pt;}
.x4e{left:609.399981pt;}
.x5a{left:615.026648pt;}
.x5c{left:634.466648pt;}
.x74{left:650.093314pt;}
.x75{left:698.133314pt;}
.x71{left:708.799981pt;}
.x33{left:709.839981pt;}
.x79{left:715.706648pt;}
.x2f{left:755.599981pt;}
.x65{left:763.466648pt;}
.x54{left:796.893314pt;}
.x3b{left:853.333314pt;}
.x8{left:877.106648pt;}
.x28{left:921.173314pt;}
.x5{left:922.893314pt;}
.x17{left:933.000000pt;}
.x6c{left:957.399981pt;}
.x69{left:963.706648pt;}
.xd{left:968.399981pt;}
.x4{left:970.266648pt;}
.x19{left:996.000000pt;}
.x30{left:1011.133314pt;}
.x6a{left:1027.173314pt;}
.xe{left:1031.866648pt;}
.x63{left:1049.066648pt;}
.x43{left:1090.293314pt;}
.x3c{left:1097.759981pt;}
.x1b{left:1108.000000pt;}
.x1f{left:1172.733314pt;}
.x1e{left:1178.733314pt;}
.x22{left:1184.759981pt;}
.x25{left:1187.759981pt;}
}




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