
    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;}
.ff1{font-family:sans-serif;visibility:hidden;}
.ff2{font-family:sans-serif;visibility:hidden;}
.ff3{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff4;src:url('chunks/assets/font_16bd57ca08473daa9309b888.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.688000;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;}
.ff5{font-family:sans-serif;visibility:hidden;}
.ff6{font-family:sans-serif;visibility:hidden;}
.ff7{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff8;src:url('chunks/assets/font_dfbcef5beef0310fc48fd70f.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.106000;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_e2f65d441b49949580104de0.woff2')format("woff");}.ff9{font-family:ff9;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;}
.ffa{font-family:sans-serif;visibility:hidden;}
.ffb{font-family:sans-serif;visibility:hidden;}
.ffc{font-family:sans-serif;visibility:hidden;}
.ffd{font-family:sans-serif;visibility:hidden;}
.ffe{font-family:sans-serif;visibility:hidden;}
.fff{font-family:sans-serif;visibility:hidden;}
.ff10{font-family:sans-serif;visibility:hidden;}
.ff11{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff12;src:url('chunks/assets/font_38a88b0b5b581bc347e708f9.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.930000;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_e291e1279212912fd4c23b64.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.001000;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_af4a51ffb427d31a52946711.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.818000;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_5417cf941bc6d117b1411b31.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.898000;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_a324cc88265819424f642425.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.046000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_ee9f8f6c8909aa203c2b88d6.woff2')format("woff");}.ff17{font-family:ff17;line-height:2.399000;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;}
.ff18{font-family:sans-serif;visibility:hidden;}
.ff19{font-family:sans-serif;visibility:hidden;}
.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);}
.v9{vertical-align:-36.312000px;}
.ve{vertical-align:-18.930000px;}
.v5{vertical-align:-10.758000px;}
.v8{vertical-align:-3.510000px;}
.v0{vertical-align:0.000000px;}
.vd{vertical-align:10.164000px;}
.v3{vertical-align:17.730000px;}
.vc{vertical-align:20.922000px;}
.v2{vertical-align:29.622000px;}
.v1{vertical-align:49.206000px;}
.vf{vertical-align:68.148000px;}
.vb{vertical-align:83.766000px;}
.v4{vertical-align:92.292000px;}
.v6{vertical-align:97.638000px;}
.v7{vertical-align:101.142000px;}
.va{vertical-align:102.696000px;}
.ls3{letter-spacing:0.000000px;}
.ls30{letter-spacing:0.000545px;}
.ls1b{letter-spacing:0.000760px;}
.ls36{letter-spacing:0.001114px;}
.ls23{letter-spacing:0.001165px;}
.ls15{letter-spacing:0.001223px;}
.ls1a{letter-spacing:0.001288px;}
.ls5{letter-spacing:0.001473px;}
.ls16{letter-spacing:0.001641px;}
.ls21{letter-spacing:0.002143px;}
.ls27{letter-spacing:0.002400px;}
.ls9{letter-spacing:0.002759px;}
.ls2d{letter-spacing:0.003056px;}
.ls12{letter-spacing:0.003744px;}
.lsb{letter-spacing:0.003848px;}
.ls14{letter-spacing:0.004381px;}
.ls34{letter-spacing:0.007288px;}
.ls6{letter-spacing:0.457809px;}
.ls1c{letter-spacing:1.949053px;}
.ls1f{letter-spacing:1.955053px;}
.lse{letter-spacing:2.573587px;}
.ls35{letter-spacing:2.574492px;}
.ls25{letter-spacing:2.575486px;}
.lsa{letter-spacing:3.460566px;}
.ls20{letter-spacing:11.948759px;}
.ls33{letter-spacing:11.953473px;}
.ls1d{letter-spacing:11.954759px;}
.ls1e{letter-spacing:14.943072px;}
.ls28{letter-spacing:15.937473px;}
.ls2b{letter-spacing:15.941073px;}
.ls8{letter-spacing:15.941518px;}
.ls7{letter-spacing:15.942760px;}
.ls22{letter-spacing:18.067301px;}
.ls29{letter-spacing:18.926915px;}
.ls2e{letter-spacing:18.929236px;}
.ls4{letter-spacing:19.919518px;}
.ls31{letter-spacing:19.922227px;}
.lsd{letter-spacing:19.924800px;}
.ls18{letter-spacing:19.925518px;}
.ls39{letter-spacing:19.927473px;}
.ls0{letter-spacing:20.072700px;}
.ls1{letter-spacing:20.075412px;}
.ls2f{letter-spacing:20.287473px;}
.ls38{letter-spacing:20.377809px;}
.lsc{letter-spacing:20.383809px;}
.ls13{letter-spacing:22.910915px;}
.ls17{letter-spacing:22.913236px;}
.lsf{letter-spacing:22.914499px;}
.ls2a{letter-spacing:25.691464px;}
.ls2c{letter-spacing:27.095518px;}
.ls11{letter-spacing:27.553809px;}
.ls32{letter-spacing:27.939894px;}
.ls2{letter-spacing:29.633412px;}
.ls37{letter-spacing:29.681464px;}
.ls26{letter-spacing:29.686765px;}
.ls10{letter-spacing:31.775518px;}
.ls19{letter-spacing:43.828145px;}
.ls24{letter-spacing:43.834145px;}
.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;}
}
.ws4b{word-spacing:-71.731200px;}
.ws51{word-spacing:-56.789591px;}
.ws63{word-spacing:-55.806874px;}
.ws46{word-spacing:-51.789926px;}
.ws44{word-spacing:-45.664082px;}
.ws4f{word-spacing:-33.684972px;}
.ws5c{word-spacing:-33.211407px;}
.ws4e{word-spacing:-26.133958px;}
.ws64{word-spacing:-25.754515px;}
.ws5b{word-spacing:-25.722808px;}
.ws43{word-spacing:-19.510886px;}
.ws5f{word-spacing:-14.111859px;}
.ws42{word-spacing:-11.291069px;}
.ws62{word-spacing:-7.603507px;}
.ws60{word-spacing:-7.585897px;}
.ws4c{word-spacing:-7.555546px;}
.ws4a{word-spacing:-7.173034px;}
.ws11{word-spacing:-0.065455px;}
.ws47{word-spacing:-0.047821px;}
.ws8{word-spacing:0.000000px;}
.ws50{word-spacing:0.430387px;}
.ws5d{word-spacing:1.356112px;}
.ws5e{word-spacing:4.818112px;}
.ws1a{word-spacing:15.565670px;}
.ws75{word-spacing:15.637402px;}
.ws18{word-spacing:15.709104px;}
.ws16{word-spacing:16.298195px;}
.ws66{word-spacing:16.354714px;}
.ws56{word-spacing:16.785101px;}
.ws24{word-spacing:17.000294px;}
.ws71{word-spacing:17.072026px;}
.ws45{word-spacing:17.143757px;}
.ws67{word-spacing:17.358950px;}
.ws2b{word-spacing:17.502413px;}
.ws73{word-spacing:18.506650px;}
.ws8c{word-spacing:18.721843px;}
.ws90{word-spacing:19.008768px;}
.ws38{word-spacing:19.152230px;}
.ws23{word-spacing:19.223962px;}
.ws74{word-spacing:19.510886px;}
.ws2a{word-spacing:20.156467px;}
.ws27{word-spacing:20.443392px;}
.ws65{word-spacing:20.802048px;}
.wsb{word-spacing:21.010927px;}
.ws55{word-spacing:21.017242px;}
.ws72{word-spacing:21.232435px;}
.ws1f{word-spacing:21.304166px;}
.ws34{word-spacing:21.375898px;}
.wse{word-spacing:21.730927px;}
.ws8b{word-spacing:21.734554px;}
.ws12{word-spacing:21.927291px;}
.wsc{word-spacing:21.992746px;}
.ws37{word-spacing:22.021478px;}
.ws88{word-spacing:22.093210px;}
.ws61{word-spacing:22.164941px;}
.ws53{word-spacing:22.236672px;}
.ws3b{word-spacing:22.308403px;}
.ws87{word-spacing:22.595328px;}
.ws3a{word-spacing:22.667059px;}
.ws59{word-spacing:22.738790px;}
.ws25{word-spacing:22.953984px;}
.ws2d{word-spacing:23.169178px;}
.ws15{word-spacing:23.367292px;}
.ws20{word-spacing:23.384371px;}
.ws5a{word-spacing:23.456102px;}
.ws4{word-spacing:23.498201px;}
.ws3c{word-spacing:23.527834px;}
.ws9{word-spacing:23.694565px;}
.ws84{word-spacing:23.743027px;}
.ws86{word-spacing:23.814758px;}
.ws8d{word-spacing:24.101683px;}
.ws69{word-spacing:24.316877px;}
.ws8e{word-spacing:24.532070px;}
.ws7{word-spacing:24.545475px;}
.ws33{word-spacing:24.603802px;}
.ws5{word-spacing:24.676384px;}
.ws4d{word-spacing:24.747264px;}
.ws8f{word-spacing:24.818995px;}
.ws92{word-spacing:24.890726px;}
.ws6{word-spacing:25.003657px;}
.ws91{word-spacing:25.177651px;}
.ws3d{word-spacing:25.249382px;}
.ws3e{word-spacing:25.321114px;}
.wsa{word-spacing:25.330930px;}
.ws14{word-spacing:25.396385px;}
.ws57{word-spacing:25.464576px;}
.wsf{word-spacing:25.789112px;}
.ws85{word-spacing:25.823232px;}
.ws82{word-spacing:25.894963px;}
.ws76{word-spacing:25.966694px;}
.ws39{word-spacing:26.038426px;}
.ws30{word-spacing:26.110157px;}
.ws70{word-spacing:26.468813px;}
.ws1c{word-spacing:26.540366px;}
.ws6e{word-spacing:26.540544px;}
.ws2c{word-spacing:26.612275px;}
.ws80{word-spacing:26.684006px;}
.ws81{word-spacing:26.827469px;}
.ws54{word-spacing:26.899200px;}
.ws17{word-spacing:27.098204px;}
.ws93{word-spacing:27.257856px;}
.ws1{word-spacing:27.286472px;}
.ws95{word-spacing:27.329587px;}
.ws29{word-spacing:27.401318px;}
.ws48{word-spacing:27.473050px;}
.ws68{word-spacing:27.544781px;}
.ws94{word-spacing:27.688243px;}
.wsd{word-spacing:27.752750px;}
.ws6f{word-spacing:27.975168px;}
.ws7d{word-spacing:28.333824px;}
.ws41{word-spacing:28.477286px;}
.ws13{word-spacing:28.538206px;}
.ws2{word-spacing:29.438402px;}
.ws1b{word-spacing:29.481523px;}
.ws3{word-spacing:29.524480px;}
.ws31{word-spacing:29.768448px;}
.ws10{word-spacing:29.912752px;}
.ws36{word-spacing:30.127104px;}
.ws7f{word-spacing:30.629222px;}
.ws52{word-spacing:30.700954px;}
.ws2f{word-spacing:31.203072px;}
.ws1e{word-spacing:31.274803px;}
.ws28{word-spacing:31.418266px;}
.ws7e{word-spacing:31.489997px;}
.ws40{word-spacing:31.504255px;}
.ws22{word-spacing:31.561728px;}
.ws26{word-spacing:31.590332px;}
.ws7b{word-spacing:31.633459px;}
.ws6d{word-spacing:31.848653px;}
.ws1d{word-spacing:31.920384px;}
.ws7c{word-spacing:32.494234px;}
.ws6c{word-spacing:32.852890px;}
.ws58{word-spacing:33.068083px;}
.ws79{word-spacing:33.283277px;}
.ws78{word-spacing:33.713664px;}
.ws21{word-spacing:34.000589px;}
.ws49{word-spacing:34.430976px;}
.ws35{word-spacing:34.574438px;}
.ws89{word-spacing:34.646170px;}
.ws2e{word-spacing:35.865600px;}
.ws7a{word-spacing:36.367718px;}
.ws96{word-spacing:36.869837px;}
.ws97{word-spacing:36.941568px;}
.ws3f{word-spacing:37.081972px;}
.ws83{word-spacing:37.185264px;}
.ws8a{word-spacing:37.515418px;}
.ws0{word-spacing:38.184300px;}
.ws77{word-spacing:38.734848px;}
.ws32{word-spacing:94.684920px;}
.ws19{word-spacing:111.452500px;}
.ws6a{word-spacing:188.042327px;}
.ws6b{word-spacing:205.604327px;}
._21{margin-left:-39.473601px;}
._0{margin-left:-12.769425px;}
._20{margin-left:-10.501418px;}
._19{margin-left:-9.296316px;}
._16{margin-left:-7.818701px;}
._2{margin-left:-6.800099px;}
._6{margin-left:-5.432732px;}
._4{margin-left:-4.217783px;}
._1{margin-left:-3.099375px;}
._3{margin-left:-1.462717px;}
._7{width:1.354523px;}
._5{width:3.099375px;}
._1e{width:4.159797px;}
._1d{width:5.250709px;}
._1b{width:11.534594px;}
._f{width:17.325739px;}
._10{width:20.224469px;}
._15{width:22.437500px;}
._1c{width:24.445974px;}
._c{width:27.232099px;}
._b{width:29.323661px;}
._a{width:30.763662px;}
._d{width:32.690534px;}
._9{width:33.921312px;}
._46{width:35.148288px;}
._45{width:37.543510px;}
._8{width:38.880032px;}
._1a{width:39.925573px;}
._14{width:42.273773px;}
._22{width:43.935946px;}
._e{width:49.418223px;}
._17{width:51.287808px;}
._11{width:54.328611px;}
._12{width:55.877992px;}
._44{width:60.462226px;}
._24{width:71.731200px;}
._3a{width:72.807168px;}
._3b{width:75.819878px;}
._13{width:94.684920px;}
._25{width:106.061740px;}
._18{width:111.452500px;}
._26{width:117.782630px;}
._3d{width:121.871309px;}
._43{width:124.812288px;}
._39{width:138.068195px;}
._41{width:152.141875px;}
._3e{width:162.399437px;}
._2c{width:177.606451px;}
._27{width:186.572851px;}
._40{width:188.136572px;}
._38{width:205.940275px;}
._2a{width:211.463578px;}
._29{width:248.261683px;}
._3f{width:256.152115px;}
._2b{width:265.764096px;}
._2e{width:283.338240px;}
._30{width:301.859255px;}
._42{width:307.683209px;}
._28{width:316.980173px;}
._2d{width:333.607446px;}
._37{width:354.208666px;}
._35{width:357.866957px;}
._34{width:398.179891px;}
._3c{width:404.348774px;}
._1f{width:424.251067px;}
._31{width:450.830592px;}
._2f{width:464.445155px;}
._36{width:506.645836px;}
._32{width:536.836301px;}
._33{width:585.010369px;}
._23{width:617.111884px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:41.842800px;}
.fs7{font-size:47.820600px;}
.fs2{font-size:59.775600px;}
.fs3{font-size:65.454600px;}
.fs5{font-size:71.731200px;}
.fs1{font-size:86.077200px;}
.fs4{font-size:103.292400px;}
.fs0{font-size:123.975000px;}
.y0{bottom:0.000000px;}
.y2a{bottom:63.168000px;}
.y95{bottom:99.033000px;}
.y29{bottom:108.000000px;}
.y13a{bottom:108.249000px;}
.y28{bottom:113.422500px;}
.y92{bottom:116.565000px;}
.y94{bottom:117.714000px;}
.y93{bottom:123.558000px;}
.y4e{bottom:129.669000px;}
.y139{bottom:129.918000px;}
.yb5{bottom:133.084500px;}
.y27{bottom:139.069500px;}
.y11a{bottom:148.780500px;}
.y4d{bottom:151.338000px;}
.y138{bottom:151.587000px;}
.y26{bottom:160.738500px;}
.yd0{bottom:162.916500px;}
.y91{bottom:163.744500px;}
.yb4{bottom:169.698000px;}
.y119{bottom:170.449500px;}
.y4c{bottom:173.007000px;}
.y137{bottom:173.256000px;}
.y71{bottom:178.945500px;}
.y70{bottom:181.636500px;}
.y4b{bottom:194.674500px;}
.y136{bottom:194.925000px;}
.y25{bottom:200.161500px;}
.ycf{bottom:201.394500px;}
.y6f{bottom:203.304000px;}
.ye3{bottom:203.698500px;}
.yfb{bottom:206.254500px;}
.yb3{bottom:206.310000px;}
.y90{bottom:206.874000px;}
.y118{bottom:209.872500px;}
.y135{bottom:216.594000px;}
.y6e{bottom:224.973000px;}
.y4a{bottom:227.922000px;}
.y8f{bottom:228.543000px;}
.ye2{bottom:234.349500px;}
.y134{bottom:238.261500px;}
.yb2{bottom:239.557500px;}
.y8e{bottom:250.212000px;}
.yce{bottom:252.606000px;}
.ye1{bottom:256.018500px;}
.yfa{bottom:257.970000px;}
.y6d{bottom:258.220500px;}
.y24{bottom:258.967500px;}
.y117{bottom:269.766000px;}
.y8d{bottom:271.881000px;}
.ycd{bottom:274.273500px;}
.ye0{bottom:277.687500px;}
.y23{bottom:279.291000px;}
.y133{bottom:279.358500px;}
.y49{bottom:279.730500px;}
.y116{bottom:291.435000px;}
.yb1{bottom:291.544500px;}
.y8c{bottom:293.550000px;}
.yf9{bottom:294.061500px;}
.ydf{bottom:299.356500px;}
.y48{bottom:301.399500px;}
.y22{bottom:306.475500px;}
.ycc{bottom:307.521000px;}
.y6c{bottom:309.834000px;}
.y115{bottom:313.104000px;}
.yb0{bottom:313.213500px;}
.y8b{bottom:315.217500px;}
.y132{bottom:318.781500px;}
.y21{bottom:326.800500px;}
.yde{bottom:330.007500px;}
.yf8{bottom:330.151500px;}
.y6b{bottom:331.503000px;}
.yaf{bottom:334.882500px;}
.y8a{bottom:336.886500px;}
.y47{bottom:337.665000px;}
.y20{bottom:347.124000px;}
.y114{bottom:352.525500px;}
.y6a{bottom:353.172000px;}
.yae{bottom:356.550000px;}
.ydd{bottom:356.578500px;}
.y89{bottom:358.555500px;}
.ycb{bottom:358.732500px;}
.y46{bottom:359.334000px;}
.yf7{bottom:366.241500px;}
.y1f{bottom:367.447500px;}
.y69{bottom:374.841000px;}
.yad{bottom:378.219000px;}
.y88{bottom:380.224500px;}
.y1e{bottom:387.771000px;}
.yca{bottom:393.844500px;}
.y45{bottom:395.601000px;}
.y68{bottom:396.508500px;}
.y131{bottom:398.101500px;}
.y87{bottom:401.893500px;}
.yf6{bottom:402.333000px;}
.y1d{bottom:408.094500px;}
.yac{bottom:411.466500px;}
.y113{bottom:412.420500px;}
.y44{bottom:417.270000px;}
.y130{bottom:419.770500px;}
.y86{bottom:423.562500px;}
.yf5{bottom:424.002000px;}
.y1c{bottom:428.419500px;}
.yc9{bottom:428.956500px;}
.y67{bottom:429.756000px;}
.y112{bottom:434.088000px;}
.y85{bottom:445.230000px;}
.y1b{bottom:448.743000px;}
.yc8{bottom:450.625500px;}
.y43{bottom:453.537000px;}
.yab{bottom:456.120000px;}
.y12f{bottom:456.382500px;}
.yf4{bottom:457.249500px;}
.y84{bottom:466.899000px;}
.y1a{bottom:469.066500px;}
.y111{bottom:473.511000px;}
.y42{bottom:475.206000px;}
.y12e{bottom:478.051500px;}
.y66{bottom:481.369500px;}
.yc7{bottom:482.736000px;}
.y83{bottom:489.336000px;}
.y19{bottom:489.390000px;}
.y65{bottom:503.038500px;}
.y41{bottom:508.453500px;}
.yf3{bottom:508.965000px;}
.y18{bottom:509.713500px;}
.y12d{bottom:514.665000px;}
.yaa{bottom:516.013500px;}
.y82{bottom:527.232000px;}
.yc6{bottom:529.134000px;}
.y17{bottom:530.038500px;}
.yf2{bottom:530.634000px;}
.y110{bottom:533.406000px;}
.y12c{bottom:536.334000px;}
.ya9{bottom:537.682500px;}
.y64{bottom:549.324000px;}
.y16{bottom:550.362000px;}
.yc5{bottom:550.803000px;}
.yf1{bottom:552.303000px;}
.y10f{bottom:555.073500px;}
.y40{bottom:560.260500px;}
.y81{bottom:560.479500px;}
.y15{bottom:570.685500px;}
.yc4{bottom:572.472000px;}
.y12b{bottom:572.946000px;}
.ya8{bottom:574.594500px;}
.y10e{bottom:576.742500px;}
.ya7{bottom:577.284000px;}
.ydc{bottom:579.220500px;}
.y3f{bottom:581.929500px;}
.yf0{bottom:587.349000px;}
.y14{bottom:591.009000px;}
.y12a{bottom:594.615000px;}
.y63{bottom:595.710000px;}
.y10d{bottom:598.411500px;}
.ydb{bottom:600.889500px;}
.yc3{bottom:603.123000px;}
.y3e{bottom:603.598500px;}
.y13{bottom:611.332500px;}
.y80{bottom:611.673000px;}
.ya6{bottom:616.885500px;}
.y62{bottom:617.379000px;}
.yda{bottom:622.558500px;}
.yef{bottom:623.439000px;}
.yc2{bottom:624.792000px;}
.y129{bottom:631.227000px;}
.y12{bottom:631.656000px;}
.y10c{bottom:635.025000px;}
.y3d{bottom:643.309500px;}
.yd9{bottom:644.227500px;}
.yc1{bottom:646.461000px;}
.y7f{bottom:646.749000px;}
.ya5{bottom:650.133000px;}
.y11{bottom:651.981000px;}
.y128{bottom:652.896000px;}
.yee{bottom:659.530500px;}
.y61{bottom:662.070000px;}
.y3c{bottom:664.978500px;}
.yc0{bottom:668.128500px;}
.y10b{bottom:671.637000px;}
.y10{bottom:672.304500px;}
.yd8{bottom:674.878500px;}
.y7e{bottom:681.826500px;}
.y127{bottom:689.509500px;}
.yf{bottom:692.628000px;}
.yed{bottom:695.620500px;}
.ybf{bottom:698.781000px;}
.y3b{bottom:701.245500px;}
.yd7{bottom:701.449500px;}
.ya4{bottom:702.120000px;}
.y60{bottom:703.377000px;}
.y10a{bottom:708.249000px;}
.y126{bottom:711.177000px;}
.ye{bottom:712.951500px;}
.y7d{bottom:716.902500px;}
.y3a{bottom:722.914500px;}
.y5f{bottom:725.046000px;}
.ybe{bottom:726.346500px;}
.yec{bottom:730.666500px;}
.yd{bottom:734.934000px;}
.y7c{bottom:738.571500px;}
.ya3{bottom:738.732000px;}
.y140{bottom:739.453500px;}
.y109{bottom:744.862500px;}
.y125{bottom:747.790500px;}
.y5e{bottom:758.293500px;}
.y39{bottom:759.180000px;}
.yeb{bottom:763.914000px;}
.y124{bottom:769.459500px;}
.y7b{bottom:770.577000px;}
.ya2{bottom:775.345500px;}
.y13f{bottom:776.065500px;}
.y108{bottom:781.474500px;}
.ybd{bottom:788.419500px;}
.y38{bottom:795.447000px;}
.y107{bottom:803.143500px;}
.yc{bottom:803.604000px;}
.y7a{bottom:803.824500px;}
.y123{bottom:806.071500px;}
.y5d{bottom:809.907000px;}
.ya1{bottom:811.957500px;}
.y13e{bottom:812.679000px;}
.yea{bottom:815.631000px;}
.y37{bottom:817.116000px;}
.y122{bottom:827.740500px;}
.y5c{bottom:831.574500px;}
.ybc{bottom:833.073000px;}
.ye9{bottom:837.300000px;}
.y106{bottom:842.566500px;}
.ya0{bottom:845.205000px;}
.yb{bottom:845.542500px;}
.y79{bottom:848.476500px;}
.y13d{bottom:849.291000px;}
.ya{bottom:853.351500px;}
.y36{bottom:856.828500px;}
.y121{bottom:864.354000px;}
.y5b{bottom:868.647000px;}
.ye8{bottom:872.346000px;}
.y9{bottom:872.440500px;}
.y35{bottom:878.497500px;}
.y8{bottom:880.249500px;}
.y13c{bottom:885.904500px;}
.y59{bottom:890.199000px;}
.ybb{bottom:892.191000px;}
.y9f{bottom:897.192000px;}
.y58{bottom:898.066500px;}
.y120{bottom:900.966000px;}
.y105{bottom:902.460000px;}
.y57{bottom:902.499000px;}
.y5a{bottom:902.500500px;}
.y78{bottom:907.578000px;}
.ye7{bottom:908.436000px;}
.y6{bottom:909.582000px;}
.y34{bottom:911.745000px;}
.yba{bottom:913.860000px;}
.y7{bottom:917.391000px;}
.y11f{bottom:922.635000px;}
.yd6{bottom:924.091500px;}
.y104{bottom:924.129000px;}
.y13b{bottom:925.327500px;}
.y9e{bottom:934.102500px;}
.y4{bottom:936.481500px;}
.y9d{bottom:936.793500px;}
.y77{bottom:942.654000px;}
.y5{bottom:944.290500px;}
.ye6{bottom:944.527500px;}
.yd5{bottom:945.760500px;}
.y103{bottom:945.798000px;}
.yb9{bottom:947.107500px;}
.y56{bottom:950.223000px;}
.y11e{bottom:959.247000px;}
.y33{bottom:963.552000px;}
.y76{bottom:964.323000px;}
.yd4{bottom:967.429500px;}
.y102{bottom:967.467000px;}
.y55{bottom:971.892000px;}
.y9c{bottom:976.395000px;}
.ye5{bottom:980.617500px;}
.y11d{bottom:980.916000px;}
.y32{bottom:985.221000px;}
.yd3{bottom:989.098500px;}
.y101{bottom:989.136000px;}
.y3{bottom:989.712000px;}
.y9b{bottom:995.373000px;}
.y53{bottom:995.466000px;}
.y9a{bottom:998.064000px;}
.yb8{bottom:998.319000px;}
.y75{bottom:999.399000px;}
.y31{bottom:1006.890000px;}
.y54{bottom:1007.767500px;}
.y100{bottom:1010.803500px;}
.ye4{bottom:1015.663500px;}
.y11c{bottom:1017.529500px;}
.yd2{bottom:1019.749500px;}
.y52{bottom:1019.899500px;}
.y2{bottom:1027.072500px;}
.y30{bottom:1028.557500px;}
.y99{bottom:1031.311500px;}
.yff{bottom:1032.472500px;}
.yb7{bottom:1033.431000px;}
.y74{bottom:1034.476500px;}
.y51{bottom:1037.332500px;}
.y11b{bottom:1039.197000px;}
.yd1{bottom:1042.834500px;}
.y2f{bottom:1050.226500px;}
.yfe{bottom:1054.141500px;}
.y50{bottom:1059.001500px;}
.y1{bottom:1064.433000px;}
.yb6{bottom:1068.543000px;}
.y73{bottom:1069.428000px;}
.y2e{bottom:1071.895500px;}
.y98{bottom:1074.537000px;}
.yfd{bottom:1075.810500px;}
.y4f{bottom:1092.249000px;}
.y97{bottom:1092.469500px;}
.y2d{bottom:1093.564500px;}
.y96{bottom:1095.159000px;}
.yfc{bottom:1097.479500px;}
.y72{bottom:1103.655000px;}
.y2c{bottom:1115.233500px;}
.y2b{bottom:1136.902500px;}
.h16{height:13.731470px;}
.h19{height:32.661470px;}
.ha{height:39.750660px;}
.h5{height:39.810550px;}
.h12{height:45.429570px;}
.h7{height:49.090950px;}
.hb{height:51.287808px;}
.hd{height:53.798400px;}
.h4{height:56.786820px;}
.h6{height:62.181870px;}
.h13{height:63.759908px;}
.he{height:63.765908px;}
.h9{height:68.144640px;}
.h18{height:71.017248px;}
.h15{height:74.720400px;}
.h17{height:75.789908px;}
.h3{height:81.773340px;}
.h8{height:98.127780px;}
.h10{height:100.507248px;}
.hc{height:103.004400px;}
.h11{height:104.011248px;}
.h2{height:117.776250px;}
.h14{height:117.909908px;}
.hf{height:126.435908px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x15{left:108.000000px;}
.x50{left:109.975500px;}
.x70{left:111.286500px;}
.x41{left:117.445500px;}
.x71{left:126.786000px;}
.x16{left:128.190000px;}
.x1e{left:129.463500px;}
.x17{left:134.892000px;}
.x42{left:137.842500px;}
.x1{left:144.996000px;}
.xf{left:151.897500px;}
.x28{left:157.147500px;}
.x47{left:164.175000px;}
.x7f{left:165.879000px;}
.x2{left:167.208000px;}
.x74{left:170.974500px;}
.xe{left:176.304000px;}
.x68{left:177.732000px;}
.x8{left:182.413500px;}
.x48{left:183.628500px;}
.x43{left:188.070000px;}
.x9{left:190.632000px;}
.x29{left:192.712500px;}
.x69{left:194.197500px;}
.x75{left:198.802500px;}
.x84{left:205.753500px;}
.x4b{left:209.961000px;}
.x44{left:211.854000px;}
.x4e{left:216.840000px;}
.x6d{left:219.523500px;}
.x3e{left:221.359500px;}
.x6f{left:229.131000px;}
.x38{left:236.464500px;}
.x3d{left:238.312500px;}
.x4c{left:240.195000px;}
.x14{left:244.365000px;}
.x3c{left:250.711500px;}
.x6e{left:253.813500px;}
.x94{left:255.610500px;}
.x49{left:259.264500px;}
.x4f{left:264.949500px;}
.x86{left:267.579000px;}
.x3b{left:268.974000px;}
.x4d{left:274.312500px;}
.x83{left:281.463000px;}
.x4a{left:283.048500px;}
.x33{left:288.409500px;}
.x85{left:291.823500px;}
.x10{left:293.478000px;}
.x24{left:300.718500px;}
.x6a{left:302.043000px;}
.x6b{left:303.807000px;}
.xa{left:308.227500px;}
.x39{left:310.684500px;}
.xb{left:316.446000px;}
.x95{left:319.384500px;}
.x5f{left:321.681000px;}
.x1b{left:328.014000px;}
.x3a{left:329.613000px;}
.x45{left:331.812000px;}
.x51{left:333.988500px;}
.x21{left:335.521500px;}
.x8a{left:337.735500px;}
.x2d{left:341.950500px;}
.x46{left:344.847000px;}
.x57{left:346.414500px;}
.x89{left:350.296500px;}
.x4{left:352.023000px;}
.x1a{left:360.286500px;}
.x31{left:361.476000px;}
.x1f{left:363.697500px;}
.x25{left:367.101000px;}
.x26{left:368.919000px;}
.x3{left:373.773000px;}
.xc{left:377.608500px;}
.x6{left:379.542000px;}
.x88{left:380.836500px;}
.x11{left:381.910500px;}
.x3f{left:385.546500px;}
.x61{left:386.895000px;}
.x91{left:388.120500px;}
.x76{left:391.062000px;}
.x20{left:393.363000px;}
.x52{left:394.485000px;}
.x22{left:396.171000px;}
.x34{left:398.634000px;}
.x1d{left:399.862500px;}
.x60{left:402.904500px;}
.x77{left:405.694500px;}
.x7c{left:408.592500px;}
.xd{left:410.724000px;}
.x53{left:412.114500px;}
.x66{left:416.460000px;}
.x35{left:421.780500px;}
.x87{left:423.040500px;}
.x92{left:425.784000px;}
.x2e{left:430.695000px;}
.x32{left:432.417000px;}
.x62{left:438.538500px;}
.x2f{left:440.674500px;}
.x18{left:442.068000px;}
.x93{left:445.953000px;}
.x36{left:449.691000px;}
.x81{left:451.363500px;}
.x6c{left:454.234500px;}
.x23{left:457.785000px;}
.x58{left:459.741000px;}
.x1c{left:462.219000px;}
.x63{left:463.989000px;}
.x82{left:465.310500px;}
.x80{left:472.138500px;}
.x30{left:473.985000px;}
.x37{left:475.141500px;}
.x67{left:476.320500px;}
.x40{left:486.453000px;}
.x2a{left:495.741000px;}
.x78{left:497.997000px;}
.x7{left:505.152000px;}
.x54{left:508.888500px;}
.x59{left:510.105000px;}
.x79{left:512.629500px;}
.x12{left:517.309500px;}
.x64{left:520.555500px;}
.x5a{left:525.072000px;}
.x5{left:532.671000px;}
.x65{left:534.208500px;}
.x13{left:545.626500px;}
.x5b{left:547.690500px;}
.x7e{left:561.051000px;}
.x55{left:562.497000px;}
.x5c{left:566.121000px;}
.x5d{left:610.680000px;}
.x8d{left:616.345500px;}
.x7a{left:625.257000px;}
.x8e{left:626.430000px;}
.x2b{left:632.706000px;}
.x7d{left:637.102500px;}
.x7b{left:639.889500px;}
.x56{left:642.469500px;}
.x8b{left:646.528500px;}
.x72{left:661.033500px;}
.x2c{left:684.948000px;}
.x73{left:688.743000px;}
.x19{left:698.071500px;}
.x8f{left:718.558500px;}
.x8c{left:722.857500px;}
.x90{left:738.729000px;}
.x5e{left:753.705000px;}
.x27{left:762.481500px;}
@media print{
.v9{vertical-align:-32.277333pt;}
.ve{vertical-align:-16.826667pt;}
.v5{vertical-align:-9.562667pt;}
.v8{vertical-align:-3.120000pt;}
.v0{vertical-align:0.000000pt;}
.vd{vertical-align:9.034667pt;}
.v3{vertical-align:15.760000pt;}
.vc{vertical-align:18.597333pt;}
.v2{vertical-align:26.330667pt;}
.v1{vertical-align:43.738667pt;}
.vf{vertical-align:60.576000pt;}
.vb{vertical-align:74.458667pt;}
.v4{vertical-align:82.037333pt;}
.v6{vertical-align:86.789333pt;}
.v7{vertical-align:89.904000pt;}
.va{vertical-align:91.285333pt;}
.ls3{letter-spacing:0.000000pt;}
.ls30{letter-spacing:0.000485pt;}
.ls1b{letter-spacing:0.000676pt;}
.ls36{letter-spacing:0.000990pt;}
.ls23{letter-spacing:0.001036pt;}
.ls15{letter-spacing:0.001087pt;}
.ls1a{letter-spacing:0.001145pt;}
.ls5{letter-spacing:0.001309pt;}
.ls16{letter-spacing:0.001458pt;}
.ls21{letter-spacing:0.001905pt;}
.ls27{letter-spacing:0.002133pt;}
.ls9{letter-spacing:0.002452pt;}
.ls2d{letter-spacing:0.002717pt;}
.ls12{letter-spacing:0.003328pt;}
.lsb{letter-spacing:0.003420pt;}
.ls14{letter-spacing:0.003895pt;}
.ls34{letter-spacing:0.006479pt;}
.ls6{letter-spacing:0.406941pt;}
.ls1c{letter-spacing:1.732492pt;}
.ls1f{letter-spacing:1.737825pt;}
.lse{letter-spacing:2.287633pt;}
.ls35{letter-spacing:2.288437pt;}
.ls25{letter-spacing:2.289321pt;}
.lsa{letter-spacing:3.076058pt;}
.ls20{letter-spacing:10.621119pt;}
.ls33{letter-spacing:10.625309pt;}
.ls1d{letter-spacing:10.626452pt;}
.ls1e{letter-spacing:13.282731pt;}
.ls28{letter-spacing:14.166642pt;}
.ls2b{letter-spacing:14.169842pt;}
.ls8{letter-spacing:14.170238pt;}
.ls7{letter-spacing:14.171343pt;}
.ls22{letter-spacing:16.059823pt;}
.ls29{letter-spacing:16.823925pt;}
.ls2e{letter-spacing:16.825987pt;}
.ls4{letter-spacing:17.706238pt;}
.ls31{letter-spacing:17.708646pt;}
.lsd{letter-spacing:17.710933pt;}
.ls18{letter-spacing:17.711572pt;}
.ls39{letter-spacing:17.713309pt;}
.ls0{letter-spacing:17.842400pt;}
.ls1{letter-spacing:17.844811pt;}
.ls2f{letter-spacing:18.033309pt;}
.ls38{letter-spacing:18.113608pt;}
.lsc{letter-spacing:18.118941pt;}
.ls13{letter-spacing:20.365258pt;}
.ls17{letter-spacing:20.367321pt;}
.lsf{letter-spacing:20.368444pt;}
.ls2a{letter-spacing:22.836857pt;}
.ls2c{letter-spacing:24.084905pt;}
.ls11{letter-spacing:24.492274pt;}
.ls32{letter-spacing:24.835461pt;}
.ls2{letter-spacing:26.340811pt;}
.ls37{letter-spacing:26.383524pt;}
.ls26{letter-spacing:26.388236pt;}
.ls10{letter-spacing:28.244905pt;}
.ls19{letter-spacing:38.958351pt;}
.ls24{letter-spacing:38.963685pt;}
.ws4b{word-spacing:-63.761067pt;}
.ws51{word-spacing:-50.479636pt;}
.ws63{word-spacing:-49.606110pt;}
.ws46{word-spacing:-46.035490pt;}
.ws44{word-spacing:-40.590295pt;}
.ws4f{word-spacing:-29.942197pt;}
.ws5c{word-spacing:-29.521250pt;}
.ws4e{word-spacing:-23.230185pt;}
.ws64{word-spacing:-22.892902pt;}
.ws5b{word-spacing:-22.864719pt;}
.ws43{word-spacing:-17.343010pt;}
.ws5f{word-spacing:-12.543875pt;}
.ws42{word-spacing:-10.036506pt;}
.ws62{word-spacing:-6.758673pt;}
.ws60{word-spacing:-6.743020pt;}
.ws4c{word-spacing:-6.716041pt;}
.ws4a{word-spacing:-6.376030pt;}
.ws11{word-spacing:-0.058182pt;}
.ws47{word-spacing:-0.042507pt;}
.ws8{word-spacing:0.000000pt;}
.ws50{word-spacing:0.382566pt;}
.ws5d{word-spacing:1.205433pt;}
.ws5e{word-spacing:4.282767pt;}
.ws1a{word-spacing:13.836151pt;}
.ws75{word-spacing:13.899913pt;}
.ws18{word-spacing:13.963648pt;}
.ws16{word-spacing:14.487285pt;}
.ws66{word-spacing:14.537523pt;}
.ws56{word-spacing:14.920090pt;}
.ws24{word-spacing:15.111373pt;}
.ws71{word-spacing:15.175134pt;}
.ws45{word-spacing:15.238895pt;}
.ws67{word-spacing:15.430178pt;}
.ws2b{word-spacing:15.557700pt;}
.ws73{word-spacing:16.450355pt;}
.ws8c{word-spacing:16.641638pt;}
.ws90{word-spacing:16.896683pt;}
.ws38{word-spacing:17.024205pt;}
.ws23{word-spacing:17.087966pt;}
.ws74{word-spacing:17.343010pt;}
.ws2a{word-spacing:17.916860pt;}
.ws27{word-spacing:18.171904pt;}
.ws65{word-spacing:18.490709pt;}
.wsb{word-spacing:18.676379pt;}
.ws55{word-spacing:18.681993pt;}
.ws72{word-spacing:18.873276pt;}
.ws1f{word-spacing:18.937037pt;}
.ws34{word-spacing:19.000798pt;}
.wse{word-spacing:19.316380pt;}
.ws8b{word-spacing:19.319603pt;}
.ws12{word-spacing:19.490925pt;}
.wsc{word-spacing:19.549107pt;}
.ws37{word-spacing:19.574647pt;}
.ws88{word-spacing:19.638409pt;}
.ws61{word-spacing:19.702170pt;}
.ws53{word-spacing:19.765931pt;}
.ws3b{word-spacing:19.829692pt;}
.ws87{word-spacing:20.084736pt;}
.ws3a{word-spacing:20.148497pt;}
.ws59{word-spacing:20.212258pt;}
.ws25{word-spacing:20.403541pt;}
.ws2d{word-spacing:20.594825pt;}
.ws15{word-spacing:20.770926pt;}
.ws20{word-spacing:20.786108pt;}
.ws5a{word-spacing:20.849869pt;}
.ws4{word-spacing:20.887290pt;}
.ws3c{word-spacing:20.913630pt;}
.ws9{word-spacing:21.061836pt;}
.ws84{word-spacing:21.104913pt;}
.ws86{word-spacing:21.168674pt;}
.ws8d{word-spacing:21.423718pt;}
.ws69{word-spacing:21.615002pt;}
.ws8e{word-spacing:21.806285pt;}
.ws7{word-spacing:21.818200pt;}
.ws33{word-spacing:21.870046pt;}
.ws5{word-spacing:21.934564pt;}
.ws4d{word-spacing:21.997568pt;}
.ws8f{word-spacing:22.061329pt;}
.ws92{word-spacing:22.125090pt;}
.ws6{word-spacing:22.225473pt;}
.ws91{word-spacing:22.380134pt;}
.ws3d{word-spacing:22.443895pt;}
.ws3e{word-spacing:22.507657pt;}
.wsa{word-spacing:22.516382pt;}
.ws14{word-spacing:22.574564pt;}
.ws57{word-spacing:22.635179pt;}
.wsf{word-spacing:22.923655pt;}
.ws85{word-spacing:22.953984pt;}
.ws82{word-spacing:23.017745pt;}
.ws76{word-spacing:23.081506pt;}
.ws39{word-spacing:23.145267pt;}
.ws30{word-spacing:23.209028pt;}
.ws70{word-spacing:23.527834pt;}
.ws1c{word-spacing:23.591437pt;}
.ws6e{word-spacing:23.591595pt;}
.ws2c{word-spacing:23.655356pt;}
.ws80{word-spacing:23.719117pt;}
.ws81{word-spacing:23.846639pt;}
.ws54{word-spacing:23.910400pt;}
.ws17{word-spacing:24.087293pt;}
.ws93{word-spacing:24.229205pt;}
.ws1{word-spacing:24.254642pt;}
.ws95{word-spacing:24.292966pt;}
.ws29{word-spacing:24.356727pt;}
.ws48{word-spacing:24.420489pt;}
.ws68{word-spacing:24.484250pt;}
.ws94{word-spacing:24.611772pt;}
.wsd{word-spacing:24.669111pt;}
.ws6f{word-spacing:24.866816pt;}
.ws7d{word-spacing:25.185621pt;}
.ws41{word-spacing:25.313143pt;}
.ws13{word-spacing:25.367294pt;}
.ws2{word-spacing:26.167469pt;}
.ws1b{word-spacing:26.205798pt;}
.ws3{word-spacing:26.243982pt;}
.ws31{word-spacing:26.460843pt;}
.ws10{word-spacing:26.589113pt;}
.ws36{word-spacing:26.779648pt;}
.ws7f{word-spacing:27.225975pt;}
.ws52{word-spacing:27.289737pt;}
.ws2f{word-spacing:27.736064pt;}
.ws1e{word-spacing:27.799825pt;}
.ws28{word-spacing:27.927347pt;}
.ws7e{word-spacing:27.991108pt;}
.ws40{word-spacing:28.003782pt;}
.ws22{word-spacing:28.054869pt;}
.ws26{word-spacing:28.080295pt;}
.ws7b{word-spacing:28.118630pt;}
.ws6d{word-spacing:28.309914pt;}
.ws1d{word-spacing:28.373675pt;}
.ws7c{word-spacing:28.883763pt;}
.ws6c{word-spacing:29.202569pt;}
.ws58{word-spacing:29.393852pt;}
.ws79{word-spacing:29.585135pt;}
.ws78{word-spacing:29.967701pt;}
.ws21{word-spacing:30.222746pt;}
.ws49{word-spacing:30.605312pt;}
.ws35{word-spacing:30.732834pt;}
.ws89{word-spacing:30.796595pt;}
.ws2e{word-spacing:31.880533pt;}
.ws7a{word-spacing:32.326861pt;}
.ws96{word-spacing:32.773188pt;}
.ws97{word-spacing:32.836949pt;}
.ws3f{word-spacing:32.961753pt;}
.ws83{word-spacing:33.053568pt;}
.ws8a{word-spacing:33.347038pt;}
.ws0{word-spacing:33.941600pt;}
.ws77{word-spacing:34.430976pt;}
.ws32{word-spacing:84.164373pt;}
.ws19{word-spacing:99.068889pt;}
.ws6a{word-spacing:167.148735pt;}
.ws6b{word-spacing:182.759402pt;}
._21{margin-left:-35.087645pt;}
._0{margin-left:-11.350600pt;}
._20{margin-left:-9.334594pt;}
._19{margin-left:-8.263392pt;}
._16{margin-left:-6.949956pt;}
._2{margin-left:-6.044532pt;}
._6{margin-left:-4.829095pt;}
._4{margin-left:-3.749140pt;}
._1{margin-left:-2.755000pt;}
._3{margin-left:-1.300193pt;}
._7{width:1.204020pt;}
._5{width:2.755000pt;}
._1e{width:3.697597pt;}
._1d{width:4.667297pt;}
._1b{width:10.252973pt;}
._f{width:15.400657pt;}
._10{width:17.977306pt;}
._15{width:19.944445pt;}
._1c{width:21.729755pt;}
._c{width:24.206310pt;}
._b{width:26.065476pt;}
._a{width:27.345477pt;}
._d{width:29.058252pt;}
._9{width:30.152277pt;}
._46{width:31.242923pt;}
._45{width:33.372009pt;}
._8{width:34.560029pt;}
._1a{width:35.489398pt;}
._14{width:37.576687pt;}
._22{width:39.054174pt;}
._e{width:43.927309pt;}
._17{width:45.589163pt;}
._11{width:48.292099pt;}
._12{width:49.669326pt;}
._44{width:53.744201pt;}
._24{width:63.761067pt;}
._3a{width:64.717483pt;}
._3b{width:67.395447pt;}
._13{width:84.164373pt;}
._25{width:94.277102pt;}
._18{width:99.068889pt;}
._26{width:104.695671pt;}
._3d{width:108.330052pt;}
._43{width:110.944256pt;}
._39{width:122.727284pt;}
._41{width:135.237222pt;}
._3e{width:144.355055pt;}
._2c{width:157.872401pt;}
._27{width:165.842534pt;}
._40{width:167.232509pt;}
._38{width:183.058022pt;}
._2a{width:187.967625pt;}
._29{width:220.677052pt;}
._3f{width:227.690769pt;}
._2b{width:236.234752pt;}
._2e{width:251.856213pt;}
._30{width:268.319338pt;}
._42{width:273.496186pt;}
._28{width:281.760154pt;}
._2d{width:296.539952pt;}
._37{width:314.852147pt;}
._35{width:318.103962pt;}
._34{width:353.937681pt;}
._3c{width:359.421133pt;}
._1f{width:377.112060pt;}
._31{width:400.738304pt;}
._2f{width:412.840138pt;}
._36{width:450.351854pt;}
._32{width:477.187823pt;}
._33{width:520.009217pt;}
._23{width:548.543897pt;}
.fs6{font-size:37.193600pt;}
.fs7{font-size:42.507200pt;}
.fs2{font-size:53.133867pt;}
.fs3{font-size:58.181867pt;}
.fs5{font-size:63.761067pt;}
.fs1{font-size:76.513067pt;}
.fs4{font-size:91.815467pt;}
.fs0{font-size:110.200000pt;}
.y0{bottom:0.000000pt;}
.y2a{bottom:56.149333pt;}
.y95{bottom:88.029333pt;}
.y29{bottom:96.000000pt;}
.y13a{bottom:96.221333pt;}
.y28{bottom:100.820000pt;}
.y92{bottom:103.613333pt;}
.y94{bottom:104.634667pt;}
.y93{bottom:109.829333pt;}
.y4e{bottom:115.261333pt;}
.y139{bottom:115.482667pt;}
.yb5{bottom:118.297333pt;}
.y27{bottom:123.617333pt;}
.y11a{bottom:132.249333pt;}
.y4d{bottom:134.522667pt;}
.y138{bottom:134.744000pt;}
.y26{bottom:142.878667pt;}
.yd0{bottom:144.814667pt;}
.y91{bottom:145.550667pt;}
.yb4{bottom:150.842667pt;}
.y119{bottom:151.510667pt;}
.y4c{bottom:153.784000pt;}
.y137{bottom:154.005333pt;}
.y71{bottom:159.062667pt;}
.y70{bottom:161.454667pt;}
.y4b{bottom:173.044000pt;}
.y136{bottom:173.266667pt;}
.y25{bottom:177.921333pt;}
.ycf{bottom:179.017333pt;}
.y6f{bottom:180.714667pt;}
.ye3{bottom:181.065333pt;}
.yfb{bottom:183.337333pt;}
.yb3{bottom:183.386667pt;}
.y90{bottom:183.888000pt;}
.y118{bottom:186.553333pt;}
.y135{bottom:192.528000pt;}
.y6e{bottom:199.976000pt;}
.y4a{bottom:202.597333pt;}
.y8f{bottom:203.149333pt;}
.ye2{bottom:208.310667pt;}
.y134{bottom:211.788000pt;}
.yb2{bottom:212.940000pt;}
.y8e{bottom:222.410667pt;}
.yce{bottom:224.538667pt;}
.ye1{bottom:227.572000pt;}
.yfa{bottom:229.306667pt;}
.y6d{bottom:229.529333pt;}
.y24{bottom:230.193333pt;}
.y117{bottom:239.792000pt;}
.y8d{bottom:241.672000pt;}
.ycd{bottom:243.798667pt;}
.ye0{bottom:246.833333pt;}
.y23{bottom:248.258667pt;}
.y133{bottom:248.318667pt;}
.y49{bottom:248.649333pt;}
.y116{bottom:259.053333pt;}
.yb1{bottom:259.150667pt;}
.y8c{bottom:260.933333pt;}
.yf9{bottom:261.388000pt;}
.ydf{bottom:266.094667pt;}
.y48{bottom:267.910667pt;}
.y22{bottom:272.422667pt;}
.ycc{bottom:273.352000pt;}
.y6c{bottom:275.408000pt;}
.y115{bottom:278.314667pt;}
.yb0{bottom:278.412000pt;}
.y8b{bottom:280.193333pt;}
.y132{bottom:283.361333pt;}
.y21{bottom:290.489333pt;}
.yde{bottom:293.340000pt;}
.yf8{bottom:293.468000pt;}
.y6b{bottom:294.669333pt;}
.yaf{bottom:297.673333pt;}
.y8a{bottom:299.454667pt;}
.y47{bottom:300.146667pt;}
.y20{bottom:308.554667pt;}
.y114{bottom:313.356000pt;}
.y6a{bottom:313.930667pt;}
.yae{bottom:316.933333pt;}
.ydd{bottom:316.958667pt;}
.y89{bottom:318.716000pt;}
.ycb{bottom:318.873333pt;}
.y46{bottom:319.408000pt;}
.yf7{bottom:325.548000pt;}
.y1f{bottom:326.620000pt;}
.y69{bottom:333.192000pt;}
.yad{bottom:336.194667pt;}
.y88{bottom:337.977333pt;}
.y1e{bottom:344.685333pt;}
.yca{bottom:350.084000pt;}
.y45{bottom:351.645333pt;}
.y68{bottom:352.452000pt;}
.y131{bottom:353.868000pt;}
.y87{bottom:357.238667pt;}
.yf6{bottom:357.629333pt;}
.y1d{bottom:362.750667pt;}
.yac{bottom:365.748000pt;}
.y113{bottom:366.596000pt;}
.y44{bottom:370.906667pt;}
.y130{bottom:373.129333pt;}
.y86{bottom:376.500000pt;}
.yf5{bottom:376.890667pt;}
.y1c{bottom:380.817333pt;}
.yc9{bottom:381.294667pt;}
.y67{bottom:382.005333pt;}
.y112{bottom:385.856000pt;}
.y85{bottom:395.760000pt;}
.y1b{bottom:398.882667pt;}
.yc8{bottom:400.556000pt;}
.y43{bottom:403.144000pt;}
.yab{bottom:405.440000pt;}
.y12f{bottom:405.673333pt;}
.yf4{bottom:406.444000pt;}
.y84{bottom:415.021333pt;}
.y1a{bottom:416.948000pt;}
.y111{bottom:420.898667pt;}
.y42{bottom:422.405333pt;}
.y12e{bottom:424.934667pt;}
.y66{bottom:427.884000pt;}
.yc7{bottom:429.098667pt;}
.y83{bottom:434.965333pt;}
.y19{bottom:435.013333pt;}
.y65{bottom:447.145333pt;}
.y41{bottom:451.958667pt;}
.yf3{bottom:452.413333pt;}
.y18{bottom:453.078667pt;}
.y12d{bottom:457.480000pt;}
.yaa{bottom:458.678667pt;}
.y82{bottom:468.650667pt;}
.yc6{bottom:470.341333pt;}
.y17{bottom:471.145333pt;}
.yf2{bottom:471.674667pt;}
.y110{bottom:474.138667pt;}
.y12c{bottom:476.741333pt;}
.ya9{bottom:477.940000pt;}
.y64{bottom:488.288000pt;}
.y16{bottom:489.210667pt;}
.yc5{bottom:489.602667pt;}
.yf1{bottom:490.936000pt;}
.y10f{bottom:493.398667pt;}
.y40{bottom:498.009333pt;}
.y81{bottom:498.204000pt;}
.y15{bottom:507.276000pt;}
.yc4{bottom:508.864000pt;}
.y12b{bottom:509.285333pt;}
.ya8{bottom:510.750667pt;}
.y10e{bottom:512.660000pt;}
.ya7{bottom:513.141333pt;}
.ydc{bottom:514.862667pt;}
.y3f{bottom:517.270667pt;}
.yf0{bottom:522.088000pt;}
.y14{bottom:525.341333pt;}
.y12a{bottom:528.546667pt;}
.y63{bottom:529.520000pt;}
.y10d{bottom:531.921333pt;}
.ydb{bottom:534.124000pt;}
.yc3{bottom:536.109333pt;}
.y3e{bottom:536.532000pt;}
.y13{bottom:543.406667pt;}
.y80{bottom:543.709333pt;}
.ya6{bottom:548.342667pt;}
.y62{bottom:548.781333pt;}
.yda{bottom:553.385333pt;}
.yef{bottom:554.168000pt;}
.yc2{bottom:555.370667pt;}
.y129{bottom:561.090667pt;}
.y12{bottom:561.472000pt;}
.y10c{bottom:564.466667pt;}
.y3d{bottom:571.830667pt;}
.yd9{bottom:572.646667pt;}
.yc1{bottom:574.632000pt;}
.y7f{bottom:574.888000pt;}
.ya5{bottom:577.896000pt;}
.y11{bottom:579.538667pt;}
.y128{bottom:580.352000pt;}
.yee{bottom:586.249333pt;}
.y61{bottom:588.506667pt;}
.y3c{bottom:591.092000pt;}
.yc0{bottom:593.892000pt;}
.y10b{bottom:597.010667pt;}
.y10{bottom:597.604000pt;}
.yd8{bottom:599.892000pt;}
.y7e{bottom:606.068000pt;}
.y127{bottom:612.897333pt;}
.yf{bottom:615.669333pt;}
.yed{bottom:618.329333pt;}
.ybf{bottom:621.138667pt;}
.y3b{bottom:623.329333pt;}
.yd7{bottom:623.510667pt;}
.ya4{bottom:624.106667pt;}
.y60{bottom:625.224000pt;}
.y10a{bottom:629.554667pt;}
.y126{bottom:632.157333pt;}
.ye{bottom:633.734667pt;}
.y7d{bottom:637.246667pt;}
.y3a{bottom:642.590667pt;}
.y5f{bottom:644.485333pt;}
.ybe{bottom:645.641333pt;}
.yec{bottom:649.481333pt;}
.yd{bottom:653.274667pt;}
.y7c{bottom:656.508000pt;}
.ya3{bottom:656.650667pt;}
.y140{bottom:657.292000pt;}
.y109{bottom:662.100000pt;}
.y125{bottom:664.702667pt;}
.y5e{bottom:674.038667pt;}
.y39{bottom:674.826667pt;}
.yeb{bottom:679.034667pt;}
.y124{bottom:683.964000pt;}
.y7b{bottom:684.957333pt;}
.ya2{bottom:689.196000pt;}
.y13f{bottom:689.836000pt;}
.y108{bottom:694.644000pt;}
.ybd{bottom:700.817333pt;}
.y38{bottom:707.064000pt;}
.y107{bottom:713.905333pt;}
.yc{bottom:714.314667pt;}
.y7a{bottom:714.510667pt;}
.y123{bottom:716.508000pt;}
.y5d{bottom:719.917333pt;}
.ya1{bottom:721.740000pt;}
.y13e{bottom:722.381333pt;}
.yea{bottom:725.005333pt;}
.y37{bottom:726.325333pt;}
.y122{bottom:735.769333pt;}
.y5c{bottom:739.177333pt;}
.ybc{bottom:740.509333pt;}
.ye9{bottom:744.266667pt;}
.y106{bottom:748.948000pt;}
.ya0{bottom:751.293333pt;}
.yb{bottom:751.593333pt;}
.y79{bottom:754.201333pt;}
.y13d{bottom:754.925333pt;}
.ya{bottom:758.534667pt;}
.y36{bottom:761.625333pt;}
.y121{bottom:768.314667pt;}
.y5b{bottom:772.130667pt;}
.ye8{bottom:775.418667pt;}
.y9{bottom:775.502667pt;}
.y35{bottom:780.886667pt;}
.y8{bottom:782.444000pt;}
.y13c{bottom:787.470667pt;}
.y59{bottom:791.288000pt;}
.ybb{bottom:793.058667pt;}
.y9f{bottom:797.504000pt;}
.y58{bottom:798.281333pt;}
.y120{bottom:800.858667pt;}
.y105{bottom:802.186667pt;}
.y57{bottom:802.221333pt;}
.y5a{bottom:802.222667pt;}
.y78{bottom:806.736000pt;}
.ye7{bottom:807.498667pt;}
.y6{bottom:808.517333pt;}
.y34{bottom:810.440000pt;}
.yba{bottom:812.320000pt;}
.y7{bottom:815.458667pt;}
.y11f{bottom:820.120000pt;}
.yd6{bottom:821.414667pt;}
.y104{bottom:821.448000pt;}
.y13b{bottom:822.513333pt;}
.y9e{bottom:830.313333pt;}
.y4{bottom:832.428000pt;}
.y9d{bottom:832.705333pt;}
.y77{bottom:837.914667pt;}
.y5{bottom:839.369333pt;}
.ye6{bottom:839.580000pt;}
.yd5{bottom:840.676000pt;}
.y103{bottom:840.709333pt;}
.yb9{bottom:841.873333pt;}
.y56{bottom:844.642667pt;}
.y11e{bottom:852.664000pt;}
.y33{bottom:856.490667pt;}
.y76{bottom:857.176000pt;}
.yd4{bottom:859.937333pt;}
.y102{bottom:859.970667pt;}
.y55{bottom:863.904000pt;}
.y9c{bottom:867.906667pt;}
.ye5{bottom:871.660000pt;}
.y11d{bottom:871.925333pt;}
.y32{bottom:875.752000pt;}
.yd3{bottom:879.198667pt;}
.y101{bottom:879.232000pt;}
.y3{bottom:879.744000pt;}
.y9b{bottom:884.776000pt;}
.y53{bottom:884.858667pt;}
.y9a{bottom:887.168000pt;}
.yb8{bottom:887.394667pt;}
.y75{bottom:888.354667pt;}
.y31{bottom:895.013333pt;}
.y54{bottom:895.793333pt;}
.y100{bottom:898.492000pt;}
.ye4{bottom:902.812000pt;}
.y11c{bottom:904.470667pt;}
.yd2{bottom:906.444000pt;}
.y52{bottom:906.577333pt;}
.y2{bottom:912.953333pt;}
.y30{bottom:914.273333pt;}
.y99{bottom:916.721333pt;}
.yff{bottom:917.753333pt;}
.yb7{bottom:918.605333pt;}
.y74{bottom:919.534667pt;}
.y51{bottom:922.073333pt;}
.y11b{bottom:923.730667pt;}
.yd1{bottom:926.964000pt;}
.y2f{bottom:933.534667pt;}
.yfe{bottom:937.014667pt;}
.y50{bottom:941.334667pt;}
.y1{bottom:946.162667pt;}
.yb6{bottom:949.816000pt;}
.y73{bottom:950.602667pt;}
.y2e{bottom:952.796000pt;}
.y98{bottom:955.144000pt;}
.yfd{bottom:956.276000pt;}
.y4f{bottom:970.888000pt;}
.y97{bottom:971.084000pt;}
.y2d{bottom:972.057333pt;}
.y96{bottom:973.474667pt;}
.yfc{bottom:975.537333pt;}
.y72{bottom:981.026667pt;}
.y2c{bottom:991.318667pt;}
.y2b{bottom:1010.580000pt;}
.h16{height:12.205751pt;}
.h19{height:29.032418pt;}
.ha{height:35.333920pt;}
.h5{height:35.387155pt;}
.h12{height:40.381840pt;}
.h7{height:43.636400pt;}
.hb{height:45.589163pt;}
.hd{height:47.820800pt;}
.h4{height:50.477173pt;}
.h6{height:55.272773pt;}
.h13{height:56.675474pt;}
.he{height:56.680807pt;}
.h9{height:60.573013pt;}
.h18{height:63.126443pt;}
.h15{height:66.418133pt;}
.h17{height:67.368807pt;}
.h3{height:72.687413pt;}
.h8{height:87.224693pt;}
.h10{height:89.339776pt;}
.hc{height:91.559467pt;}
.h11{height:92.454443pt;}
.h2{height:104.690000pt;}
.h14{height:104.808807pt;}
.hf{height:112.387474pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x15{left:96.000000pt;}
.x50{left:97.756000pt;}
.x70{left:98.921333pt;}
.x41{left:104.396000pt;}
.x71{left:112.698667pt;}
.x16{left:113.946667pt;}
.x1e{left:115.078667pt;}
.x17{left:119.904000pt;}
.x42{left:122.526667pt;}
.x1{left:128.885333pt;}
.xf{left:135.020000pt;}
.x28{left:139.686667pt;}
.x47{left:145.933333pt;}
.x7f{left:147.448000pt;}
.x2{left:148.629333pt;}
.x74{left:151.977333pt;}
.xe{left:156.714667pt;}
.x68{left:157.984000pt;}
.x8{left:162.145333pt;}
.x48{left:163.225333pt;}
.x43{left:167.173333pt;}
.x9{left:169.450667pt;}
.x29{left:171.300000pt;}
.x69{left:172.620000pt;}
.x75{left:176.713333pt;}
.x84{left:182.892000pt;}
.x4b{left:186.632000pt;}
.x44{left:188.314667pt;}
.x4e{left:192.746667pt;}
.x6d{left:195.132000pt;}
.x3e{left:196.764000pt;}
.x6f{left:203.672000pt;}
.x38{left:210.190667pt;}
.x3d{left:211.833333pt;}
.x4c{left:213.506667pt;}
.x14{left:217.213333pt;}
.x3c{left:222.854667pt;}
.x6e{left:225.612000pt;}
.x94{left:227.209333pt;}
.x49{left:230.457333pt;}
.x4f{left:235.510667pt;}
.x86{left:237.848000pt;}
.x3b{left:239.088000pt;}
.x4d{left:243.833333pt;}
.x83{left:250.189333pt;}
.x4a{left:251.598667pt;}
.x33{left:256.364000pt;}
.x85{left:259.398667pt;}
.x10{left:260.869333pt;}
.x24{left:267.305333pt;}
.x6a{left:268.482667pt;}
.x6b{left:270.050667pt;}
.xa{left:273.980000pt;}
.x39{left:276.164000pt;}
.xb{left:281.285333pt;}
.x95{left:283.897333pt;}
.x5f{left:285.938667pt;}
.x1b{left:291.568000pt;}
.x3a{left:292.989333pt;}
.x45{left:294.944000pt;}
.x51{left:296.878667pt;}
.x21{left:298.241333pt;}
.x8a{left:300.209333pt;}
.x2d{left:303.956000pt;}
.x46{left:306.530667pt;}
.x57{left:307.924000pt;}
.x89{left:311.374667pt;}
.x4{left:312.909333pt;}
.x1a{left:320.254667pt;}
.x31{left:321.312000pt;}
.x1f{left:323.286667pt;}
.x25{left:326.312000pt;}
.x26{left:327.928000pt;}
.x3{left:332.242667pt;}
.xc{left:335.652000pt;}
.x6{left:337.370667pt;}
.x88{left:338.521333pt;}
.x11{left:339.476000pt;}
.x3f{left:342.708000pt;}
.x61{left:343.906667pt;}
.x91{left:344.996000pt;}
.x76{left:347.610667pt;}
.x20{left:349.656000pt;}
.x52{left:350.653333pt;}
.x22{left:352.152000pt;}
.x34{left:354.341333pt;}
.x1d{left:355.433333pt;}
.x60{left:358.137333pt;}
.x77{left:360.617333pt;}
.x7c{left:363.193333pt;}
.xd{left:365.088000pt;}
.x53{left:366.324000pt;}
.x66{left:370.186667pt;}
.x35{left:374.916000pt;}
.x87{left:376.036000pt;}
.x92{left:378.474667pt;}
.x2e{left:382.840000pt;}
.x32{left:384.370667pt;}
.x62{left:389.812000pt;}
.x2f{left:391.710667pt;}
.x18{left:392.949333pt;}
.x93{left:396.402667pt;}
.x36{left:399.725333pt;}
.x81{left:401.212000pt;}
.x6c{left:403.764000pt;}
.x23{left:406.920000pt;}
.x58{left:408.658667pt;}
.x1c{left:410.861333pt;}
.x63{left:412.434667pt;}
.x82{left:413.609333pt;}
.x80{left:419.678667pt;}
.x30{left:421.320000pt;}
.x37{left:422.348000pt;}
.x67{left:423.396000pt;}
.x40{left:432.402667pt;}
.x2a{left:440.658667pt;}
.x78{left:442.664000pt;}
.x7{left:449.024000pt;}
.x54{left:452.345333pt;}
.x59{left:453.426667pt;}
.x79{left:455.670667pt;}
.x12{left:459.830667pt;}
.x64{left:462.716000pt;}
.x5a{left:466.730667pt;}
.x5{left:473.485333pt;}
.x65{left:474.852000pt;}
.x13{left:485.001333pt;}
.x5b{left:486.836000pt;}
.x7e{left:498.712000pt;}
.x55{left:499.997333pt;}
.x5c{left:503.218667pt;}
.x5d{left:542.826667pt;}
.x8d{left:547.862667pt;}
.x7a{left:555.784000pt;}
.x8e{left:556.826667pt;}
.x2b{left:562.405333pt;}
.x7d{left:566.313333pt;}
.x7b{left:568.790667pt;}
.x56{left:571.084000pt;}
.x8b{left:574.692000pt;}
.x72{left:587.585333pt;}
.x2c{left:608.842667pt;}
.x73{left:612.216000pt;}
.x19{left:620.508000pt;}
.x8f{left:638.718667pt;}
.x8c{left:642.540000pt;}
.x90{left:656.648000pt;}
.x5e{left:669.960000pt;}
.x27{left:677.761333pt;}
}




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