
    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_20a073a856e689d221b94eba.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.901000;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_23ae04c74b3fcab38db22e83.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.919000;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_de1f367a0bef75be36f9e5a2.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.901000;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_039c83a0c3861f0fd8b4b319.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.999000;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_f1cc7a253002c77cd5665fe7.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_74c631fdc05000aba99a0340.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284668;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_123c51e01dfc1d6d8ab126ed.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.901000;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_59459a2d06929c90ec8e206e.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.922000;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_1d8fdea629501a8042e5bfe5.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.952000;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_f6ed252598f6da27476da632.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_d767dadaa36d7e370bceeb20.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.921000;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;}
.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);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.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;}
}
.ws4f{word-spacing:-18.183288px;}
.ws8f{word-spacing:-16.273350px;}
.ws10{word-spacing:-3.652367px;}
.ws19{word-spacing:-3.325094px;}
.wsb{word-spacing:-3.093408px;}
.wsae{word-spacing:-2.997821px;}
.wsce{word-spacing:-2.878214px;}
.wsc0{word-spacing:-2.826197px;}
.ws32{word-spacing:-2.605093px;}
.ws55{word-spacing:-2.408729px;}
.wsbf{word-spacing:-2.204530px;}
.ws60{word-spacing:-2.016002px;}
.ws93{word-spacing:-1.963642px;}
.ws29{word-spacing:-1.885092px;}
.ws7f{word-spacing:-1.754183px;}
.ws16{word-spacing:-1.688729px;}
.wsc3{word-spacing:-1.439400px;}
.ws27{word-spacing:-1.426910px;}
.wsdc{word-spacing:-1.425658px;}
.ws81{word-spacing:-1.165092px;}
.ws8{word-spacing:-1.156666px;}
.ws69{word-spacing:-1.099637px;}
.ws51{word-spacing:-1.034183px;}
.wsd5{word-spacing:-0.995270px;}
.ws2d{word-spacing:-0.968728px;}
.wsdb{word-spacing:-0.941472px;}
.ws3c{word-spacing:-0.903273px;}
.wse7{word-spacing:-0.887674px;}
.ws18{word-spacing:-0.510546px;}
.ws79{word-spacing:-0.445091px;}
.wsb4{word-spacing:-0.379637px;}
.ws2c{word-spacing:-0.248727px;}
.ws2{word-spacing:-0.071731px;}
.wscd{word-spacing:-0.065455px;}
.wsbc{word-spacing:-0.004782px;}
.ws25{word-spacing:0.000000px;}
.ws3a{word-spacing:0.013091px;}
.wsb5{word-spacing:0.078546px;}
.ws9c{word-spacing:0.274909px;}
.wsab{word-spacing:0.340364px;}
.ws94{word-spacing:0.461564px;}
.ws4d{word-spacing:0.536728px;}
.wse5{word-spacing:0.564883px;}
.ws8a{word-spacing:0.664297px;}
.ws86{word-spacing:0.666180px;}
.ws80{word-spacing:0.667637px;}
.ws87{word-spacing:0.668062px;}
.ws71{word-spacing:0.733092px;}
.wsc8{word-spacing:0.760348px;}
.ws5a{word-spacing:0.798546px;}
.ws26{word-spacing:0.864001px;}
.wsde{word-spacing:0.995270px;}
.wsf{word-spacing:1.060365px;}
.ws62{word-spacing:1.191274px;}
.ws7b{word-spacing:1.322183px;}
.ws33{word-spacing:1.453092px;}
.ws9b{word-spacing:1.533254px;}
.ws64{word-spacing:1.584001px;}
.wsd4{word-spacing:1.587053px;}
.ws34{word-spacing:1.714911px;}
.ws7e{word-spacing:1.780365px;}
.wsb7{word-spacing:1.845820px;}
.ws4a{word-spacing:2.020261px;}
.ws4c{word-spacing:2.042184px;}
.ws1b{word-spacing:2.107638px;}
.ws3d{word-spacing:2.238547px;}
.ws15{word-spacing:2.304002px;}
.ws5d{word-spacing:2.369457px;}
.ws1d{word-spacing:2.500366px;}
.ws63{word-spacing:2.565820px;}
.ws56{word-spacing:2.631275px;}
.wsa0{word-spacing:2.696730px;}
.ws85{word-spacing:2.816633px;}
.wsd0{word-spacing:2.824416px;}
.ws89{word-spacing:2.878214px;}
.ws6b{word-spacing:2.893093px;}
.ws44{word-spacing:2.958548px;}
.ws61{word-spacing:3.024003px;}
.ws9{word-spacing:3.039610px;}
.wsd3{word-spacing:3.059171px;}
.ws28{word-spacing:3.089457px;}
.ws5{word-spacing:3.093408px;}
.wse4{word-spacing:3.093579px;}
.wsd1{word-spacing:3.147206px;}
.ws42{word-spacing:3.220366px;}
.ws84{word-spacing:3.237455px;}
.ws38{word-spacing:3.351276px;}
.ws2a{word-spacing:3.482185px;}
.ws6a{word-spacing:3.547639px;}
.ws8c{word-spacing:3.577594px;}
.ws14{word-spacing:3.613094px;}
.ws3f{word-spacing:3.678549px;}
.ws45{word-spacing:3.809458px;}
.wsb3{word-spacing:4.005822px;}
.ws20{word-spacing:4.202185px;}
.wsd7{word-spacing:4.276973px;}
.wsc{word-spacing:4.330771px;}
.ws54{word-spacing:4.333095px;}
.ws74{word-spacing:4.398549px;}
.ws23{word-spacing:4.464004px;}
.ws3e{word-spacing:4.660368px;}
.ws39{word-spacing:4.856731px;}
.wsd6{word-spacing:4.922554px;}
.ws2e{word-spacing:5.053095px;}
.wse0{word-spacing:5.083949px;}
.ws6e{word-spacing:5.118550px;}
.ws7{word-spacing:5.245344px;}
.wsba{word-spacing:5.314914px;}
.wsa4{word-spacing:5.380368px;}
.wscb{word-spacing:5.398946px;}
.ws5c{word-spacing:5.445823px;}
.ws1a{word-spacing:5.773096px;}
.ws7a{word-spacing:5.838550px;}
.wscc{word-spacing:5.924972px;}
.ws66{word-spacing:6.034914px;}
.ws9f{word-spacing:6.231278px;}
.ws57{word-spacing:6.296733px;}
.wse2{word-spacing:6.321312px;}
.wsac{word-spacing:6.362187px;}
.ws50{word-spacing:6.427642px;}
.ws5e{word-spacing:6.493096px;}
.wsdd{word-spacing:6.536506px;}
.ws8e{word-spacing:6.644102px;}
.ws1e{word-spacing:6.689460px;}
.ws3b{word-spacing:6.754915px;}
.ws35{word-spacing:6.820369px;}
.wsd9{word-spacing:6.859296px;}
.ws9e{word-spacing:6.885824px;}
.ws65{word-spacing:6.951279px;}
.ws59{word-spacing:7.213097px;}
.wsc4{word-spacing:7.263949px;}
.ws77{word-spacing:7.278552px;}
.wse1{word-spacing:7.289683px;}
.ws1f{word-spacing:7.409461px;}
.ws6c{word-spacing:7.736734px;}
.wsd2{word-spacing:7.773869px;}
.ws30{word-spacing:7.802188px;}
.ws11{word-spacing:7.867643px;}
.wsb8{word-spacing:7.933098px;}
.wsbd{word-spacing:7.981258px;}
.wsb0{word-spacing:7.998552px;}
.ws13{word-spacing:8.260371px;}
.ws17{word-spacing:8.456734px;}
.wse6{word-spacing:8.527046px;}
.ws52{word-spacing:8.653098px;}
.ws72{word-spacing:8.784007px;}
.ws2b{word-spacing:8.914917px;}
.ws21{word-spacing:9.111280px;}
.ws41{word-spacing:9.176735px;}
.ws4{word-spacing:9.226426px;}
.ws9d{word-spacing:9.242190px;}
.ws76{word-spacing:9.373099px;}
.wsb9{word-spacing:9.504008px;}
.ws31{word-spacing:9.569463px;}
.ws22{word-spacing:9.831281px;}
.ws73{word-spacing:9.896736px;}
.ws75{word-spacing:10.027645px;}
.wsa3{word-spacing:10.224009px;}
.wse{word-spacing:10.420372px;}
.ws78{word-spacing:10.544486px;}
.wsaa{word-spacing:10.551282px;}
.ws53{word-spacing:10.616736px;}
.wsda{word-spacing:10.678982px;}
.ws12{word-spacing:10.682191px;}
.ws47{word-spacing:10.747645px;}
.ws6{word-spacing:10.840378px;}
.ws1c{word-spacing:10.878555px;}
.wsa5{word-spacing:10.915496px;}
.wsa7{word-spacing:10.936261px;}
.wsa9{word-spacing:10.944009px;}
.ws7c{word-spacing:11.009464px;}
.wsbe{word-spacing:11.280880px;}
.wsca{word-spacing:11.328700px;}
.ws2f{word-spacing:11.467646px;}
.ws70{word-spacing:11.533101px;}
.wsb6{word-spacing:11.664010px;}
.ws36{word-spacing:11.860374px;}
.ws6f{word-spacing:11.991283px;}
.ws46{word-spacing:12.056737px;}
.wsa2{word-spacing:12.645829px;}
.wsc1{word-spacing:12.811139px;}
.ws40{word-spacing:13.234920px;}
.ws37{word-spacing:13.365829px;}
.ws92{word-spacing:13.382619px;}
.ws6d{word-spacing:14.216739px;}
.ws7d{word-spacing:14.544012px;}
.ws5f{word-spacing:14.805831px;}
.ws4e{word-spacing:16.690923px;}
.wsb2{word-spacing:16.704014px;}
.ws9a{word-spacing:16.853739px;}
.ws68{word-spacing:16.986950px;}
.wsad{word-spacing:17.410924px;}
.wsdf{word-spacing:17.807270px;}
.ws88{word-spacing:18.179585px;}
.ws98{word-spacing:18.366392px;}
.ws8b{word-spacing:18.860609px;}
.wscf{word-spacing:19.690214px;}
.ws67{word-spacing:19.701835px;}
.wsd8{word-spacing:19.744013px;}
.wsc7{word-spacing:19.792946px;}
.ws49{word-spacing:20.137970px;}
.ws4b{word-spacing:20.141939px;}
.wsc5{word-spacing:20.605897px;}
.wsc2{word-spacing:21.227564px;}
.wse8{word-spacing:21.411763px;}
.ws5b{word-spacing:21.752064px;}
.ws8d{word-spacing:21.957915px;}
.wsc9{word-spacing:22.470900px;}
.wse3{word-spacing:22.825496px;}
.ws1{word-spacing:23.312640px;}
.ws43{word-spacing:25.003657px;}
.ws83{word-spacing:25.069112px;}
.wsa1{word-spacing:26.827469px;}
.wsa{word-spacing:27.598038px;}
.ws82{word-spacing:28.190362px;}
.ws48{word-spacing:28.856904px;}
.wsa6{word-spacing:29.041973px;}
.wsc6{word-spacing:31.461173px;}
.wsaf{word-spacing:32.661845px;}
.ws3{word-spacing:32.673450px;}
.wsa8{word-spacing:33.447301px;}
.ws0{word-spacing:38.631358px;}
.wsb1{word-spacing:40.058215px;}
.ws58{word-spacing:75.207335px;}
.wsd{word-spacing:80.625869px;}
.ws90{word-spacing:85.201963px;}
.ws97{word-spacing:95.205056px;}
.ws95{word-spacing:101.033971px;}
.ws96{word-spacing:113.739056px;}
.ws99{word-spacing:323.993423px;}
.ws91{word-spacing:342.062842px;}
.wsbb{word-spacing:606.565571px;}
.ws24{word-spacing:1799.872800px;}
._9{margin-left:-7.324463px;}
._2{margin-left:-5.810227px;}
._5{margin-left:-4.788058px;}
._0{margin-left:-3.202064px;}
._4{margin-left:-1.936742px;}
._3{width:1.936742px;}
._1{width:3.202064px;}
._8{width:14.728901px;}
._32{width:15.978125px;}
._d{width:18.436216px;}
._4e{width:19.959206px;}
._1b{width:21.519360px;}
._6{width:24.966340px;}
._a{width:32.727300px;}
._c{width:37.898213px;}
._b{width:43.789127px;}
._7{width:75.272790px;}
._4f{width:80.697600px;}
._3c{width:114.301665px;}
._3d{width:127.847830px;}
._38{width:132.074820px;}
._f{width:144.076426px;}
._19{width:148.857418px;}
._28{width:153.374282px;}
._12{width:159.014513px;}
._36{width:162.698915px;}
._3a{width:175.400915px;}
._2a{width:179.646039px;}
._1c{width:186.548282px;}
._3b{width:196.220513px;}
._35{width:198.765418px;}
._e{width:204.810211px;}
._49{width:222.540098px;}
._1a{width:233.895418px;}
._52{width:236.546259px;}
._16{width:248.541418px;}
._13{width:269.013418px;}
._51{width:272.193109px;}
._40{width:274.903590px;}
._11{width:276.785971px;}
._17{width:279.170513px;}
._54{width:284.755581px;}
._15{width:296.540915px;}
._4c{width:314.036966px;}
._27{width:323.241418px;}
._29{width:328.322513px;}
._4b{width:332.169923px;}
._22{width:337.886513px;}
._31{width:355.334262px;}
._24{width:356.415418px;}
._1f{width:361.496513px;}
._4a{width:366.632915px;}
._2d{width:367.811423px;}
._43{width:373.124915px;}
._53{width:374.605706px;}
._47{width:377.051944px;}
._45{width:408.416225px;}
._42{width:431.696707px;}
._2b{width:446.974096px;}
._23{width:480.921418px;}
._21{width:485.997418px;}
._1e{width:491.072513px;}
._2e{width:523.754852px;}
._2f{width:524.883418px;}
._10{width:548.967680px;}
._48{width:559.227659px;}
._30{width:560.483830px;}
._20{width:565.584307px;}
._14{width:568.731680px;}
._1d{width:570.666307px;}
._2c{width:572.111830px;}
._18{width:586.731354px;}
._26{width:591.321354px;}
._25{width:596.403354px;}
._50{width:661.857079px;}
._4d{width:699.199858px;}
._3f{width:757.911333px;}
._46{width:885.929729px;}
._44{width:910.859858px;}
._3e{width:919.198900px;}
._37{width:933.898920px;}
._41{width:940.583729px;}
._34{width:948.622891px;}
._33{width:1013.520211px;}
._39{width:1085.480666px;}
.fc1{color:rgb(33,33,33);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:47.820600px;}
.fs2{font-size:53.798400px;}
.fs4{font-size:55.200000px;}
.fs3{font-size:65.454600px;}
.fs1{font-size:71.731200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y109{bottom:94.500000px;}
.y59{bottom:96.000000px;}
.y2b{bottom:97.500000px;}
.y7e{bottom:102.000000px;}
.ya0{bottom:106.500000px;}
.y12a{bottom:109.500000px;}
.yc1{bottom:115.500000px;}
.y29{bottom:127.558500px;}
.y57{bottom:127.560000px;}
.ye9{bottom:141.000000px;}
.y150{bottom:143.997000px;}
.y28{bottom:147.883500px;}
.yc0{bottom:150.327000px;}
.y16e{bottom:159.000000px;}
.y14f{bottom:160.435500px;}
.ybf{bottom:166.765500px;}
.y27{bottom:168.207000px;}
.y14e{bottom:176.685000px;}
.ybe{bottom:183.204000px;}
.y56{bottom:188.530500px;}
.y26{bottom:189.114000px;}
.ye8{bottom:192.310500px;}
.y14d{bottom:193.123500px;}
.ybd{bottom:199.642500px;}
.ye7{bottom:208.749000px;}
.y55{bottom:208.854000px;}
.y9f{bottom:208.879500px;}
.y14c{bottom:209.371500px;}
.y25{bottom:209.439000px;}
.ya5{bottom:211.879500px;}
.y7d{bottom:221.307000px;}
.y14b{bottom:225.810000px;}
.y108{bottom:229.177500px;}
.y54{bottom:229.179000px;}
.y9e{bottom:229.203000px;}
.y24{bottom:229.762500px;}
.y129{bottom:230.088000px;}
.ya4{bottom:232.203000px;}
.ye6{bottom:242.791500px;}
.y53{bottom:249.502500px;}
.y9d{bottom:249.528000px;}
.ybc{bottom:249.757500px;}
.y23{bottom:250.086000px;}
.ya3{bottom:252.528000px;}
.y14a{bottom:259.231500px;}
.ye5{bottom:268.942500px;}
.y7c{bottom:269.026500px;}
.y52{bottom:269.826000px;}
.y9c{bottom:269.851500px;}
.y22{bottom:270.409500px;}
.y128{bottom:286.590000px;}
.y107{bottom:290.149500px;}
.y9b{bottom:290.175000px;}
.y21{bottom:290.733000px;}
.ye4{bottom:295.095000px;}
.y51{bottom:298.936500px;}
.y149{bottom:306.294000px;}
.y127{bottom:306.913500px;}
.y106{bottom:310.473000px;}
.y9a{bottom:310.498500px;}
.y20{bottom:311.058000px;}
.ya2{bottom:311.647500px;}
.ye3{bottom:321.247500px;}
.ybb{bottom:323.821500px;}
.y7b{bottom:326.511000px;}
.y126{bottom:327.237000px;}
.y105{bottom:330.796500px;}
.y1f{bottom:331.381500px;}
.y50{bottom:334.024500px;}
.yba{bottom:340.260000px;}
.y99{bottom:342.906000px;}
.y148{bottom:343.791000px;}
.y7a{bottom:346.834500px;}
.ye2{bottom:347.398500px;}
.y125{bottom:347.560500px;}
.y104{bottom:351.121500px;}
.y1e{bottom:352.288500px;}
.yb9{bottom:356.698500px;}
.y79{bottom:367.158000px;}
.y124{bottom:367.884000px;}
.y103{bottom:371.445000px;}
.y1d{bottom:372.613500px;}
.ye1{bottom:373.551000px;}
.y78{bottom:387.481500px;}
.y98{bottom:390.256500px;}
.y147{bottom:390.853500px;}
.y102{bottom:391.768500px;}
.y1c{bottom:392.937000px;}
.ye0{bottom:399.702000px;}
.yb8{bottom:406.813500px;}
.y4f{bottom:407.505000px;}
.y123{bottom:409.441500px;}
.y97{bottom:410.580000px;}
.y101{bottom:412.092000px;}
.y1b{bottom:413.260500px;}
.ydf{bottom:413.899500px;}
.y4e{bottom:427.828500px;}
.yde{bottom:428.095500px;}
.y77{bottom:428.229000px;}
.y146{bottom:428.350500px;}
.y96{bottom:430.903500px;}
.y100{bottom:432.415500px;}
.y1a{bottom:433.584000px;}
.y4d{bottom:448.152000px;}
.y76{bottom:448.552500px;}
.y95{bottom:451.227000px;}
.y19{bottom:453.907500px;}
.y122{bottom:465.943500px;}
.y4c{bottom:468.475500px;}
.y75{bottom:468.877500px;}
.y94{bottom:471.552000px;}
.y18{bottom:474.816000px;}
.yb7{bottom:480.876000px;}
.y121{bottom:486.267000px;}
.y4b{bottom:488.800500px;}
.y74{bottom:489.201000px;}
.y93{bottom:491.875500px;}
.y17{bottom:495.139500px;}
.ydd{bottom:495.250500px;}
.yff{bottom:503.814000px;}
.y120{bottom:506.590500px;}
.y4a{bottom:509.124000px;}
.ydc{bottom:511.689000px;}
.y92{bottom:512.199000px;}
.y16{bottom:515.464500px;}
.y145{bottom:523.426500px;}
.y11f{bottom:528.771000px;}
.y49{bottom:529.447500px;}
.y73{bottom:529.947000px;}
.yb6{bottom:530.992500px;}
.y91{bottom:532.522500px;}
.y15{bottom:535.788000px;}
.ydb{bottom:536.980500px;}
.y11e{bottom:549.094500px;}
.y48{bottom:549.771000px;}
.y72{bottom:550.272000px;}
.yda{bottom:551.178000px;}
.y90{bottom:552.846000px;}
.y14{bottom:556.111500px;}
.y144{bottom:564.567000px;}
.y11d{bottom:569.418000px;}
.y47{bottom:570.094500px;}
.y71{bottom:570.595500px;}
.yd9{bottom:573.070500px;}
.y8f{bottom:573.171000px;}
.y13{bottom:576.435000px;}
.y143{bottom:578.763000px;}
.yfe{bottom:585.084000px;}
.y46{bottom:590.418000px;}
.y70{bottom:590.919000px;}
.y11c{bottom:591.597000px;}
.y8e{bottom:593.494500px;}
.y12{bottom:596.758500px;}
.yfd{bottom:601.521000px;}
.y142{bottom:604.915500px;}
.yb5{bottom:605.055000px;}
.y45{bottom:610.743000px;}
.y6f{bottom:611.242500px;}
.y11b{bottom:611.920500px;}
.y8d{bottom:613.818000px;}
.y141{bottom:619.111500px;}
.y44{bottom:631.066500px;}
.y6e{bottom:631.566000px;}
.y140{bottom:633.309000px;}
.y8c{bottom:634.141500px;}
.yd8{bottom:637.243500px;}
.y11{bottom:637.936500px;}
.y16d{bottom:642.124500px;}
.yfc{bottom:642.663000px;}
.y43{bottom:651.390000px;}
.y11a{bottom:651.622500px;}
.y6d{bottom:651.891000px;}
.yd7{bottom:653.682000px;}
.y8b{bottom:654.465000px;}
.yb4{bottom:655.170000px;}
.y16c{bottom:658.563000px;}
.y13f{bottom:659.461500px;}
.yfb{bottom:668.814000px;}
.y42{bottom:671.713500px;}
.y119{bottom:671.946000px;}
.y6c{bottom:672.313500px;}
.y13e{bottom:673.657500px;}
.y16b{bottom:675.001500px;}
.yd6{bottom:678.975000px;}
.y8a{bottom:686.872500px;}
.y13d{bottom:687.855000px;}
.y16a{bottom:691.440000px;}
.y41{bottom:692.037000px;}
.y10{bottom:692.515500px;}
.y6b{bottom:692.637000px;}
.yfa{bottom:694.966500px;}
.yd5{bottom:700.867500px;}
.y169{bottom:707.878500px;}
.yf{bottom:708.954000px;}
.y40{bottom:712.362000px;}
.y6a{bottom:712.960500px;}
.y118{bottom:713.503500px;}
.y13c{bottom:714.006000px;}
.yf9{bottom:721.117500px;}
.yd4{bottom:722.760000px;}
.y168{bottom:724.317000px;}
.ye{bottom:725.392500px;}
.y13b{bottom:728.203500px;}
.yb3{bottom:729.234000px;}
.y3f{bottom:732.685500px;}
.y69{bottom:733.285500px;}
.y89{bottom:734.223000px;}
.y167{bottom:740.755500px;}
.y13a{bottom:742.399500px;}
.yd3{bottom:744.652500px;}
.yf8{bottom:747.270000px;}
.y3e{bottom:753.009000px;}
.y68{bottom:753.609000px;}
.y88{bottom:754.546500px;}
.y166{bottom:757.194000px;}
.yd{bottom:758.854500px;}
.yb2{bottom:762.109500px;}
.yd2{bottom:766.545000px;}
.y139{bottom:768.552000px;}
.y117{bottom:770.005500px;}
.y3d{bottom:773.332500px;}
.yf7{bottom:773.422500px;}
.y165{bottom:773.632500px;}
.y67{bottom:773.932500px;}
.y87{bottom:774.870000px;}
.yc{bottom:775.291500px;}
.yb1{bottom:778.548000px;}
.y138{bottom:782.748000px;}
.yd1{bottom:788.439000px;}
.y164{bottom:790.069500px;}
.y116{bottom:790.329000px;}
.yb{bottom:791.730000px;}
.y3c{bottom:793.656000px;}
.y86{bottom:795.195000px;}
.yf6{bottom:799.573500px;}
.y163{bottom:806.508000px;}
.y66{bottom:806.709000px;}
.ya{bottom:808.168500px;}
.y137{bottom:808.900500px;}
.yd0{bottom:810.331500px;}
.y115{bottom:810.652500px;}
.yb0{bottom:811.425000px;}
.y3b{bottom:813.981000px;}
.y85{bottom:815.518500px;}
.y162{bottom:822.946500px;}
.y136{bottom:823.096500px;}
.y9{bottom:824.607000px;}
.yaf{bottom:827.863500px;}
.y114{bottom:830.977500px;}
.ycf{bottom:832.224000px;}
.y3a{bottom:834.304500px;}
.y84{bottom:835.842000px;}
.y135{bottom:837.294000px;}
.y161{bottom:839.385000px;}
.y8{bottom:841.045500px;}
.yce{bottom:854.116500px;}
.y65{bottom:854.428500px;}
.y39{bottom:854.628000px;}
.y160{bottom:855.823500px;}
.y83{bottom:856.165500px;}
.y134{bottom:863.445000px;}
.yf5{bottom:866.808000px;}
.y15f{bottom:872.262000px;}
.y113{bottom:872.535000px;}
.y64{bottom:874.753500px;}
.y38{bottom:874.951500px;}
.y82{bottom:876.489000px;}
.yae{bottom:877.978500px;}
.y15e{bottom:888.700500px;}
.yf4{bottom:893.377500px;}
.y63{bottom:895.077000px;}
.y37{bottom:895.275000px;}
.y81{bottom:896.814000px;}
.y15d{bottom:905.139000px;}
.y7{bottom:909.916500px;}
.y62{bottom:915.400500px;}
.y36{bottom:915.600000px;}
.ycd{bottom:918.289500px;}
.y133{bottom:918.750000px;}
.yad{bottom:919.411500px;}
.yf3{bottom:919.530000px;}
.y15c{bottom:921.577500px;}
.y112{bottom:929.035500px;}
.y80{bottom:929.220000px;}
.y6{bottom:930.838500px;}
.ycc{bottom:934.728000px;}
.y61{bottom:935.724000px;}
.y35{bottom:935.923500px;}
.y15b{bottom:938.016000px;}
.y132{bottom:939.073500px;}
.yf2{bottom:945.682500px;}
.y111{bottom:949.359000px;}
.y5{bottom:951.760500px;}
.y15a{bottom:954.453000px;}
.y60{bottom:956.047500px;}
.y34{bottom:956.247000px;}
.y131{bottom:959.397000px;}
.ycb{bottom:960.021000px;}
.y110{bottom:969.684000px;}
.y159{bottom:970.891500px;}
.yf1{bottom:971.833500px;}
.yac{bottom:975.786000px;}
.y5f{bottom:976.372500px;}
.y33{bottom:976.570500px;}
.y130{bottom:979.720500px;}
.yca{bottom:981.913500px;}
.y158{bottom:987.330000px;}
.y4{bottom:987.564000px;}
.y10f{bottom:990.007500px;}
.yab{bottom:996.111000px;}
.y5e{bottom:996.795000px;}
.y32{bottom:996.894000px;}
.yf0{bottom:997.986000px;}
.y12f{bottom:1000.044000px;}
.y157{bottom:1003.768500px;}
.yc9{bottom:1003.806000px;}
.y10e{bottom:1010.331000px;}
.yaa{bottom:1016.434500px;}
.y5d{bottom:1017.118500px;}
.y31{bottom:1017.219000px;}
.y156{bottom:1020.207000px;}
.y12e{bottom:1020.369000px;}
.yef{bottom:1024.137000px;}
.yc8{bottom:1025.700000px;}
.y10d{bottom:1030.654500px;}
.y155{bottom:1036.645500px;}
.ya9{bottom:1036.758000px;}
.y5c{bottom:1037.442000px;}
.y30{bottom:1037.542500px;}
.y12d{bottom:1040.692500px;}
.yc7{bottom:1047.592500px;}
.yee{bottom:1050.289500px;}
.y10c{bottom:1050.978000px;}
.y3{bottom:1051.590000px;}
.y154{bottom:1053.084000px;}
.ya8{bottom:1057.081500px;}
.y5b{bottom:1057.767000px;}
.y2f{bottom:1057.866000px;}
.y12c{bottom:1061.016000px;}
.yc6{bottom:1069.485000px;}
.y153{bottom:1069.522500px;}
.y10b{bottom:1071.301500px;}
.yed{bottom:1076.442000px;}
.ya7{bottom:1077.405000px;}
.y5a{bottom:1078.090500px;}
.y2e{bottom:1078.189500px;}
.y12b{bottom:1081.339500px;}
.y2{bottom:1084.465500px;}
.y152{bottom:1085.961000px;}
.yc5{bottom:1091.377500px;}
.y2d{bottom:1098.513000px;}
.y151{bottom:1102.399500px;}
.yec{bottom:1102.593000px;}
.yc4{bottom:1105.575000px;}
.yeb{bottom:1116.790500px;}
.y1{bottom:1117.342500px;}
.y2c{bottom:1118.836500px;}
.yc3{bottom:1119.771000px;}
.yc2{bottom:1140.000000px;}
.y58{bottom:1143.000000px;}
.y7f{bottom:1144.500000px;}
.ya1{bottom:1146.000000px;}
.yea{bottom:1149.000000px;}
.y10a{bottom:1153.500000px;}
.ya6{bottom:1159.500000px;}
.y2a{bottom:1164.000000px;}
.ha{height:35.865450px;}
.h9{height:37.336090px;}
.hb{height:38.519654px;}
.h4{height:40.348800px;}
.h8{height:45.818220px;}
.h6{height:49.090950px;}
.h5{height:50.211840px;}
.h3{height:51.216077px;}
.h7{height:54.175781px;}
.h2{height:72.304680px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:127.558500px;}
.xb{left:129.000000px;}
.x29{left:134.470500px;}
.x2{left:135.600000px;}
.x21{left:139.819500px;}
.x25{left:142.503000px;}
.x22{left:145.492500px;}
.x1e{left:149.362500px;}
.x9{left:152.964000px;}
.x5{left:154.327500px;}
.x13{left:157.447500px;}
.x18{left:159.015000px;}
.x1b{left:160.825500px;}
.x3{left:163.068000px;}
.x19{left:167.308500px;}
.x14{left:168.360000px;}
.x28{left:180.840000px;}
.x12{left:183.000000px;}
.xc{left:186.000000px;}
.x1{left:189.517500px;}
.x1d{left:193.500000px;}
.xa{left:195.000000px;}
.xf{left:201.000000px;}
.x10{left:202.500000px;}
.x23{left:207.000000px;}
.x24{left:208.500000px;}
.x2b{left:211.500000px;}
.x2a{left:214.500000px;}
.x4{left:264.295500px;}
.x1c{left:269.436000px;}
.x6{left:337.812000px;}
.x26{left:342.469500px;}
.x11{left:364.452000px;}
.x7{left:375.687000px;}
.x1a{left:392.682000px;}
.x15{left:471.802500px;}
.x1f{left:536.223000px;}
.x16{left:550.188000px;}
.x27{left:584.956500px;}
.x20{left:604.186500px;}
.x17{left:664.413000px;}
.xe{left:750.000000px;}
.xd{left:759.000000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws4f{word-spacing:-16.162923pt;}
.ws8f{word-spacing:-14.465200pt;}
.ws10{word-spacing:-3.246548pt;}
.ws19{word-spacing:-2.955639pt;}
.wsb{word-spacing:-2.749696pt;}
.wsae{word-spacing:-2.664729pt;}
.wsce{word-spacing:-2.558413pt;}
.wsc0{word-spacing:-2.512176pt;}
.ws32{word-spacing:-2.315638pt;}
.ws55{word-spacing:-2.141093pt;}
.wsbf{word-spacing:-1.959582pt;}
.ws60{word-spacing:-1.792001pt;}
.ws93{word-spacing:-1.745459pt;}
.ws29{word-spacing:-1.675638pt;}
.ws7f{word-spacing:-1.559274pt;}
.ws16{word-spacing:-1.501092pt;}
.wsc3{word-spacing:-1.279467pt;}
.ws27{word-spacing:-1.268365pt;}
.wsdc{word-spacing:-1.267251pt;}
.ws81{word-spacing:-1.035637pt;}
.ws8{word-spacing:-1.028147pt;}
.ws69{word-spacing:-0.977455pt;}
.ws51{word-spacing:-0.919273pt;}
.wsd5{word-spacing:-0.884685pt;}
.ws2d{word-spacing:-0.861092pt;}
.wsdb{word-spacing:-0.836864pt;}
.ws3c{word-spacing:-0.802910pt;}
.wse7{word-spacing:-0.789043pt;}
.ws18{word-spacing:-0.453819pt;}
.ws79{word-spacing:-0.395637pt;}
.wsb4{word-spacing:-0.337455pt;}
.ws2c{word-spacing:-0.221091pt;}
.ws2{word-spacing:-0.063761pt;}
.wscd{word-spacing:-0.058182pt;}
.wsbc{word-spacing:-0.004251pt;}
.ws25{word-spacing:0.000000pt;}
.ws3a{word-spacing:0.011636pt;}
.wsb5{word-spacing:0.069818pt;}
.ws9c{word-spacing:0.244364pt;}
.wsab{word-spacing:0.302546pt;}
.ws94{word-spacing:0.410279pt;}
.ws4d{word-spacing:0.477091pt;}
.wse5{word-spacing:0.502118pt;}
.ws8a{word-spacing:0.590487pt;}
.ws86{word-spacing:0.592160pt;}
.ws80{word-spacing:0.593455pt;}
.ws87{word-spacing:0.593833pt;}
.ws71{word-spacing:0.651637pt;}
.wsc8{word-spacing:0.675864pt;}
.ws5a{word-spacing:0.709819pt;}
.ws26{word-spacing:0.768001pt;}
.wsde{word-spacing:0.884685pt;}
.wsf{word-spacing:0.942546pt;}
.ws62{word-spacing:1.058910pt;}
.ws7b{word-spacing:1.175274pt;}
.ws33{word-spacing:1.291637pt;}
.ws9b{word-spacing:1.362893pt;}
.ws64{word-spacing:1.408001pt;}
.wsd4{word-spacing:1.410714pt;}
.ws34{word-spacing:1.524365pt;}
.ws7e{word-spacing:1.582547pt;}
.wsb7{word-spacing:1.640729pt;}
.ws4a{word-spacing:1.795787pt;}
.ws4c{word-spacing:1.815274pt;}
.ws1b{word-spacing:1.873456pt;}
.ws3d{word-spacing:1.989820pt;}
.ws15{word-spacing:2.048002pt;}
.ws5d{word-spacing:2.106184pt;}
.ws1d{word-spacing:2.222547pt;}
.ws63{word-spacing:2.280729pt;}
.ws56{word-spacing:2.338911pt;}
.wsa0{word-spacing:2.397093pt;}
.ws85{word-spacing:2.503674pt;}
.wsd0{word-spacing:2.510592pt;}
.ws89{word-spacing:2.558413pt;}
.ws6b{word-spacing:2.571639pt;}
.ws44{word-spacing:2.629820pt;}
.ws61{word-spacing:2.688002pt;}
.ws9{word-spacing:2.701875pt;}
.wsd3{word-spacing:2.719263pt;}
.ws28{word-spacing:2.746184pt;}
.ws5{word-spacing:2.749696pt;}
.wse4{word-spacing:2.749848pt;}
.wsd1{word-spacing:2.797517pt;}
.ws42{word-spacing:2.862548pt;}
.ws84{word-spacing:2.877737pt;}
.ws38{word-spacing:2.978912pt;}
.ws2a{word-spacing:3.095275pt;}
.ws6a{word-spacing:3.153457pt;}
.ws8c{word-spacing:3.180083pt;}
.ws14{word-spacing:3.211639pt;}
.ws3f{word-spacing:3.269821pt;}
.ws45{word-spacing:3.386185pt;}
.wsb3{word-spacing:3.560730pt;}
.ws20{word-spacing:3.735276pt;}
.wsd7{word-spacing:3.801754pt;}
.wsc{word-spacing:3.849574pt;}
.ws54{word-spacing:3.851640pt;}
.ws74{word-spacing:3.909821pt;}
.ws23{word-spacing:3.968003pt;}
.ws3e{word-spacing:4.142549pt;}
.ws39{word-spacing:4.317095pt;}
.wsd6{word-spacing:4.375603pt;}
.ws2e{word-spacing:4.491640pt;}
.wse0{word-spacing:4.519066pt;}
.ws6e{word-spacing:4.549822pt;}
.ws7{word-spacing:4.662528pt;}
.wsba{word-spacing:4.724368pt;}
.wsa4{word-spacing:4.782549pt;}
.wscb{word-spacing:4.799063pt;}
.ws5c{word-spacing:4.840731pt;}
.ws1a{word-spacing:5.131641pt;}
.ws7a{word-spacing:5.189823pt;}
.wscc{word-spacing:5.266642pt;}
.ws66{word-spacing:5.364368pt;}
.ws9f{word-spacing:5.538914pt;}
.ws57{word-spacing:5.597096pt;}
.wse2{word-spacing:5.618944pt;}
.wsac{word-spacing:5.655277pt;}
.ws50{word-spacing:5.713459pt;}
.ws5e{word-spacing:5.771641pt;}
.wsdd{word-spacing:5.810227pt;}
.ws8e{word-spacing:5.905869pt;}
.ws1e{word-spacing:5.946187pt;}
.ws3b{word-spacing:6.004369pt;}
.ws35{word-spacing:6.062551pt;}
.wsd9{word-spacing:6.097152pt;}
.ws9e{word-spacing:6.120732pt;}
.ws65{word-spacing:6.178914pt;}
.ws59{word-spacing:6.411642pt;}
.wsc4{word-spacing:6.456844pt;}
.ws77{word-spacing:6.469824pt;}
.wse1{word-spacing:6.479718pt;}
.ws1f{word-spacing:6.586187pt;}
.ws6c{word-spacing:6.877097pt;}
.wsd2{word-spacing:6.910106pt;}
.ws30{word-spacing:6.935279pt;}
.ws11{word-spacing:6.993460pt;}
.wsb8{word-spacing:7.051642pt;}
.wsbd{word-spacing:7.094452pt;}
.wsb0{word-spacing:7.109824pt;}
.ws13{word-spacing:7.342552pt;}
.ws17{word-spacing:7.517097pt;}
.wse6{word-spacing:7.579597pt;}
.ws52{word-spacing:7.691643pt;}
.ws72{word-spacing:7.808007pt;}
.ws2b{word-spacing:7.924370pt;}
.ws21{word-spacing:8.098916pt;}
.ws41{word-spacing:8.157098pt;}
.ws4{word-spacing:8.201267pt;}
.ws9d{word-spacing:8.215280pt;}
.ws76{word-spacing:8.331643pt;}
.wsb9{word-spacing:8.448007pt;}
.ws31{word-spacing:8.506189pt;}
.ws22{word-spacing:8.738916pt;}
.ws73{word-spacing:8.797098pt;}
.ws75{word-spacing:8.913462pt;}
.wsa3{word-spacing:9.088008pt;}
.wse{word-spacing:9.262553pt;}
.ws78{word-spacing:9.372877pt;}
.wsaa{word-spacing:9.378917pt;}
.ws53{word-spacing:9.437099pt;}
.wsda{word-spacing:9.492429pt;}
.ws12{word-spacing:9.495281pt;}
.ws47{word-spacing:9.553463pt;}
.ws6{word-spacing:9.635891pt;}
.ws1c{word-spacing:9.669826pt;}
.wsa5{word-spacing:9.702663pt;}
.wsa7{word-spacing:9.721121pt;}
.wsa9{word-spacing:9.728008pt;}
.ws7c{word-spacing:9.786190pt;}
.wsbe{word-spacing:10.027448pt;}
.wsca{word-spacing:10.069956pt;}
.ws2f{word-spacing:10.193463pt;}
.ws70{word-spacing:10.251645pt;}
.wsb6{word-spacing:10.368009pt;}
.ws36{word-spacing:10.542554pt;}
.ws6f{word-spacing:10.658918pt;}
.ws46{word-spacing:10.717100pt;}
.wsa2{word-spacing:11.240737pt;}
.wsc1{word-spacing:11.387679pt;}
.ws40{word-spacing:11.764373pt;}
.ws37{word-spacing:11.880737pt;}
.ws92{word-spacing:11.895661pt;}
.ws6d{word-spacing:12.637101pt;}
.ws7d{word-spacing:12.928011pt;}
.ws5f{word-spacing:13.160738pt;}
.ws4e{word-spacing:14.836376pt;}
.wsb2{word-spacing:14.848012pt;}
.ws9a{word-spacing:14.981101pt;}
.ws68{word-spacing:15.099511pt;}
.wsad{word-spacing:15.476377pt;}
.wsdf{word-spacing:15.828685pt;}
.ws88{word-spacing:16.159631pt;}
.ws98{word-spacing:16.325681pt;}
.ws8b{word-spacing:16.764986pt;}
.wscf{word-spacing:17.502413pt;}
.ws67{word-spacing:17.512742pt;}
.wsd8{word-spacing:17.550234pt;}
.wsc7{word-spacing:17.593730pt;}
.ws49{word-spacing:17.900418pt;}
.ws4b{word-spacing:17.903946pt;}
.wsc5{word-spacing:18.316352pt;}
.wsc2{word-spacing:18.868946pt;}
.wse8{word-spacing:19.032678pt;}
.ws5b{word-spacing:19.335168pt;}
.ws8d{word-spacing:19.518147pt;}
.wsc9{word-spacing:19.974133pt;}
.wse3{word-spacing:20.289329pt;}
.ws1{word-spacing:20.722347pt;}
.ws43{word-spacing:22.225473pt;}
.ws83{word-spacing:22.283655pt;}
.wsa1{word-spacing:23.846639pt;}
.wsa{word-spacing:24.531589pt;}
.ws82{word-spacing:25.058099pt;}
.ws48{word-spacing:25.650582pt;}
.wsa6{word-spacing:25.815087pt;}
.wsc6{word-spacing:27.965487pt;}
.wsaf{word-spacing:29.032751pt;}
.ws3{word-spacing:29.043067pt;}
.wsa8{word-spacing:29.730934pt;}
.ws0{word-spacing:34.338985pt;}
.wsb1{word-spacing:35.607302pt;}
.ws58{word-spacing:66.850965pt;}
.wsd{word-spacing:71.667439pt;}
.ws90{word-spacing:75.735078pt;}
.ws97{word-spacing:84.626717pt;}
.ws95{word-spacing:89.807975pt;}
.ws96{word-spacing:101.101383pt;}
.ws99{word-spacing:287.994153pt;}
.ws91{word-spacing:304.055859pt;}
.wsbb{word-spacing:539.169396pt;}
.ws24{word-spacing:1599.886933pt;}
._9{margin-left:-6.510634pt;}
._2{margin-left:-5.164646pt;}
._5{margin-left:-4.256051pt;}
._0{margin-left:-2.846279pt;}
._4{margin-left:-1.721549pt;}
._3{width:1.721549pt;}
._1{width:2.846279pt;}
._8{width:13.092356pt;}
._32{width:14.202778pt;}
._d{width:16.387748pt;}
._4e{width:17.741517pt;}
._1b{width:19.128320pt;}
._6{width:22.192302pt;}
._a{width:29.090933pt;}
._c{width:33.687301pt;}
._b{width:38.923669pt;}
._7{width:66.909147pt;}
._4f{width:71.731200pt;}
._3c{width:101.601480pt;}
._3d{width:113.642516pt;}
._38{width:117.399840pt;}
._f{width:128.067934pt;}
._19{width:132.317705pt;}
._28{width:136.332695pt;}
._12{width:141.346234pt;}
._36{width:144.621258pt;}
._3a{width:155.911925pt;}
._2a{width:159.685368pt;}
._1c{width:165.820695pt;}
._3b{width:174.418234pt;}
._35{width:176.680371pt;}
._e{width:182.053521pt;}
._49{width:197.813421pt;}
._1a{width:207.907038pt;}
._52{width:210.263341pt;}
._16{width:220.925705pt;}
._13{width:239.123038pt;}
._51{width:241.949430pt;}
._40{width:244.358747pt;}
._11{width:246.031975pt;}
._17{width:248.151567pt;}
._54{width:253.116072pt;}
._15{width:263.591925pt;}
._4c{width:279.143969pt;}
._27{width:287.325705pt;}
._29{width:291.842234pt;}
._4b{width:295.262154pt;}
._22{width:300.343567pt;}
._31{width:315.852677pt;}
._24{width:316.813705pt;}
._1f{width:321.330234pt;}
._4a{width:325.895925pt;}
._2d{width:326.943487pt;}
._43{width:331.666591pt;}
._53{width:332.982850pt;}
._47{width:335.157283pt;}
._45{width:363.036644pt;}
._42{width:383.730406pt;}
._2b{width:397.310308pt;}
._23{width:427.485705pt;}
._21{width:431.997705pt;}
._1e{width:436.508901pt;}
._2e{width:465.559868pt;}
._2f{width:466.563038pt;}
._10{width:487.971271pt;}
._48{width:497.091252pt;}
._30{width:498.207849pt;}
._20{width:502.741606pt;}
._14{width:505.539271pt;}
._1d{width:507.258940pt;}
._2c{width:508.543849pt;}
._18{width:521.538981pt;}
._26{width:525.618981pt;}
._25{width:530.136315pt;}
._50{width:588.317403pt;}
._4d{width:621.510985pt;}
._3f{width:673.698962pt;}
._46{width:787.493092pt;}
._44{width:809.653207pt;}
._3e{width:817.065689pt;}
._37{width:830.132373pt;}
._41{width:836.074426pt;}
._34{width:843.220347pt;}
._33{width:900.906854pt;}
._39{width:964.871703pt;}
.fs5{font-size:42.507200pt;}
.fs2{font-size:47.820800pt;}
.fs4{font-size:49.066667pt;}
.fs3{font-size:58.181867pt;}
.fs1{font-size:63.761067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y109{bottom:84.000000pt;}
.y59{bottom:85.333333pt;}
.y2b{bottom:86.666667pt;}
.y7e{bottom:90.666667pt;}
.ya0{bottom:94.666667pt;}
.y12a{bottom:97.333333pt;}
.yc1{bottom:102.666667pt;}
.y29{bottom:113.385333pt;}
.y57{bottom:113.386667pt;}
.ye9{bottom:125.333333pt;}
.y150{bottom:127.997333pt;}
.y28{bottom:131.452000pt;}
.yc0{bottom:133.624000pt;}
.y16e{bottom:141.333333pt;}
.y14f{bottom:142.609333pt;}
.ybf{bottom:148.236000pt;}
.y27{bottom:149.517333pt;}
.y14e{bottom:157.053333pt;}
.ybe{bottom:162.848000pt;}
.y56{bottom:167.582667pt;}
.y26{bottom:168.101333pt;}
.ye8{bottom:170.942667pt;}
.y14d{bottom:171.665333pt;}
.ybd{bottom:177.460000pt;}
.ye7{bottom:185.554667pt;}
.y55{bottom:185.648000pt;}
.y9f{bottom:185.670667pt;}
.y14c{bottom:186.108000pt;}
.y25{bottom:186.168000pt;}
.ya5{bottom:188.337333pt;}
.y7d{bottom:196.717333pt;}
.y14b{bottom:200.720000pt;}
.y108{bottom:203.713333pt;}
.y54{bottom:203.714667pt;}
.y9e{bottom:203.736000pt;}
.y24{bottom:204.233333pt;}
.y129{bottom:204.522667pt;}
.ya4{bottom:206.402667pt;}
.ye6{bottom:215.814667pt;}
.y53{bottom:221.780000pt;}
.y9d{bottom:221.802667pt;}
.ybc{bottom:222.006667pt;}
.y23{bottom:222.298667pt;}
.ya3{bottom:224.469333pt;}
.y14a{bottom:230.428000pt;}
.ye5{bottom:239.060000pt;}
.y7c{bottom:239.134667pt;}
.y52{bottom:239.845333pt;}
.y9c{bottom:239.868000pt;}
.y22{bottom:240.364000pt;}
.y128{bottom:254.746667pt;}
.y107{bottom:257.910667pt;}
.y9b{bottom:257.933333pt;}
.y21{bottom:258.429333pt;}
.ye4{bottom:262.306667pt;}
.y51{bottom:265.721333pt;}
.y149{bottom:272.261333pt;}
.y127{bottom:272.812000pt;}
.y106{bottom:275.976000pt;}
.y9a{bottom:275.998667pt;}
.y20{bottom:276.496000pt;}
.ya2{bottom:277.020000pt;}
.ye3{bottom:285.553333pt;}
.ybb{bottom:287.841333pt;}
.y7b{bottom:290.232000pt;}
.y126{bottom:290.877333pt;}
.y105{bottom:294.041333pt;}
.y1f{bottom:294.561333pt;}
.y50{bottom:296.910667pt;}
.yba{bottom:302.453333pt;}
.y99{bottom:304.805333pt;}
.y148{bottom:305.592000pt;}
.y7a{bottom:308.297333pt;}
.ye2{bottom:308.798667pt;}
.y125{bottom:308.942667pt;}
.y104{bottom:312.108000pt;}
.y1e{bottom:313.145333pt;}
.yb9{bottom:317.065333pt;}
.y79{bottom:326.362667pt;}
.y124{bottom:327.008000pt;}
.y103{bottom:330.173333pt;}
.y1d{bottom:331.212000pt;}
.ye1{bottom:332.045333pt;}
.y78{bottom:344.428000pt;}
.y98{bottom:346.894667pt;}
.y147{bottom:347.425333pt;}
.y102{bottom:348.238667pt;}
.y1c{bottom:349.277333pt;}
.ye0{bottom:355.290667pt;}
.yb8{bottom:361.612000pt;}
.y4f{bottom:362.226667pt;}
.y123{bottom:363.948000pt;}
.y97{bottom:364.960000pt;}
.y101{bottom:366.304000pt;}
.y1b{bottom:367.342667pt;}
.ydf{bottom:367.910667pt;}
.y4e{bottom:380.292000pt;}
.yde{bottom:380.529333pt;}
.y77{bottom:380.648000pt;}
.y146{bottom:380.756000pt;}
.y96{bottom:383.025333pt;}
.y100{bottom:384.369333pt;}
.y1a{bottom:385.408000pt;}
.y4d{bottom:398.357333pt;}
.y76{bottom:398.713333pt;}
.y95{bottom:401.090667pt;}
.y19{bottom:403.473333pt;}
.y122{bottom:414.172000pt;}
.y4c{bottom:416.422667pt;}
.y75{bottom:416.780000pt;}
.y94{bottom:419.157333pt;}
.y18{bottom:422.058667pt;}
.yb7{bottom:427.445333pt;}
.y121{bottom:432.237333pt;}
.y4b{bottom:434.489333pt;}
.y74{bottom:434.845333pt;}
.y93{bottom:437.222667pt;}
.y17{bottom:440.124000pt;}
.ydd{bottom:440.222667pt;}
.yff{bottom:447.834667pt;}
.y120{bottom:450.302667pt;}
.y4a{bottom:452.554667pt;}
.ydc{bottom:454.834667pt;}
.y92{bottom:455.288000pt;}
.y16{bottom:458.190667pt;}
.y145{bottom:465.268000pt;}
.y11f{bottom:470.018667pt;}
.y49{bottom:470.620000pt;}
.y73{bottom:471.064000pt;}
.yb6{bottom:471.993333pt;}
.y91{bottom:473.353333pt;}
.y15{bottom:476.256000pt;}
.ydb{bottom:477.316000pt;}
.y11e{bottom:488.084000pt;}
.y48{bottom:488.685333pt;}
.y72{bottom:489.130667pt;}
.yda{bottom:489.936000pt;}
.y90{bottom:491.418667pt;}
.y14{bottom:494.321333pt;}
.y144{bottom:501.837333pt;}
.y11d{bottom:506.149333pt;}
.y47{bottom:506.750667pt;}
.y71{bottom:507.196000pt;}
.yd9{bottom:509.396000pt;}
.y8f{bottom:509.485333pt;}
.y13{bottom:512.386667pt;}
.y143{bottom:514.456000pt;}
.yfe{bottom:520.074667pt;}
.y46{bottom:524.816000pt;}
.y70{bottom:525.261333pt;}
.y11c{bottom:525.864000pt;}
.y8e{bottom:527.550667pt;}
.y12{bottom:530.452000pt;}
.yfd{bottom:534.685333pt;}
.y142{bottom:537.702667pt;}
.yb5{bottom:537.826667pt;}
.y45{bottom:542.882667pt;}
.y6f{bottom:543.326667pt;}
.y11b{bottom:543.929333pt;}
.y8d{bottom:545.616000pt;}
.y141{bottom:550.321333pt;}
.y44{bottom:560.948000pt;}
.y6e{bottom:561.392000pt;}
.y140{bottom:562.941333pt;}
.y8c{bottom:563.681333pt;}
.yd8{bottom:566.438667pt;}
.y11{bottom:567.054667pt;}
.y16d{bottom:570.777333pt;}
.yfc{bottom:571.256000pt;}
.y43{bottom:579.013333pt;}
.y11a{bottom:579.220000pt;}
.y6d{bottom:579.458667pt;}
.yd7{bottom:581.050667pt;}
.y8b{bottom:581.746667pt;}
.yb4{bottom:582.373333pt;}
.y16c{bottom:585.389333pt;}
.y13f{bottom:586.188000pt;}
.yfb{bottom:594.501333pt;}
.y42{bottom:597.078667pt;}
.y119{bottom:597.285333pt;}
.y6c{bottom:597.612000pt;}
.y13e{bottom:598.806667pt;}
.y16b{bottom:600.001333pt;}
.yd6{bottom:603.533333pt;}
.y8a{bottom:610.553333pt;}
.y13d{bottom:611.426667pt;}
.y16a{bottom:614.613333pt;}
.y41{bottom:615.144000pt;}
.y10{bottom:615.569333pt;}
.y6b{bottom:615.677333pt;}
.yfa{bottom:617.748000pt;}
.yd5{bottom:622.993333pt;}
.y169{bottom:629.225333pt;}
.yf{bottom:630.181333pt;}
.y40{bottom:633.210667pt;}
.y6a{bottom:633.742667pt;}
.y118{bottom:634.225333pt;}
.y13c{bottom:634.672000pt;}
.yf9{bottom:640.993333pt;}
.yd4{bottom:642.453333pt;}
.y168{bottom:643.837333pt;}
.ye{bottom:644.793333pt;}
.y13b{bottom:647.292000pt;}
.yb3{bottom:648.208000pt;}
.y3f{bottom:651.276000pt;}
.y69{bottom:651.809333pt;}
.y89{bottom:652.642667pt;}
.y167{bottom:658.449333pt;}
.y13a{bottom:659.910667pt;}
.yd3{bottom:661.913333pt;}
.yf8{bottom:664.240000pt;}
.y3e{bottom:669.341333pt;}
.y68{bottom:669.874667pt;}
.y88{bottom:670.708000pt;}
.y166{bottom:673.061333pt;}
.yd{bottom:674.537333pt;}
.yb2{bottom:677.430667pt;}
.yd2{bottom:681.373333pt;}
.y139{bottom:683.157333pt;}
.y117{bottom:684.449333pt;}
.y3d{bottom:687.406667pt;}
.yf7{bottom:687.486667pt;}
.y165{bottom:687.673333pt;}
.y67{bottom:687.940000pt;}
.y87{bottom:688.773333pt;}
.yc{bottom:689.148000pt;}
.yb1{bottom:692.042667pt;}
.y138{bottom:695.776000pt;}
.yd1{bottom:700.834667pt;}
.y164{bottom:702.284000pt;}
.y116{bottom:702.514667pt;}
.yb{bottom:703.760000pt;}
.y3c{bottom:705.472000pt;}
.y86{bottom:706.840000pt;}
.yf6{bottom:710.732000pt;}
.y163{bottom:716.896000pt;}
.y66{bottom:717.074667pt;}
.ya{bottom:718.372000pt;}
.y137{bottom:719.022667pt;}
.yd0{bottom:720.294667pt;}
.y115{bottom:720.580000pt;}
.yb0{bottom:721.266667pt;}
.y3b{bottom:723.538667pt;}
.y85{bottom:724.905333pt;}
.y162{bottom:731.508000pt;}
.y136{bottom:731.641333pt;}
.y9{bottom:732.984000pt;}
.yaf{bottom:735.878667pt;}
.y114{bottom:738.646667pt;}
.ycf{bottom:739.754667pt;}
.y3a{bottom:741.604000pt;}
.y84{bottom:742.970667pt;}
.y135{bottom:744.261333pt;}
.y161{bottom:746.120000pt;}
.y8{bottom:747.596000pt;}
.yce{bottom:759.214667pt;}
.y65{bottom:759.492000pt;}
.y39{bottom:759.669333pt;}
.y160{bottom:760.732000pt;}
.y83{bottom:761.036000pt;}
.y134{bottom:767.506667pt;}
.yf5{bottom:770.496000pt;}
.y15f{bottom:775.344000pt;}
.y113{bottom:775.586667pt;}
.y64{bottom:777.558667pt;}
.y38{bottom:777.734667pt;}
.y82{bottom:779.101333pt;}
.yae{bottom:780.425333pt;}
.y15e{bottom:789.956000pt;}
.yf4{bottom:794.113333pt;}
.y63{bottom:795.624000pt;}
.y37{bottom:795.800000pt;}
.y81{bottom:797.168000pt;}
.y15d{bottom:804.568000pt;}
.y7{bottom:808.814667pt;}
.y62{bottom:813.689333pt;}
.y36{bottom:813.866667pt;}
.ycd{bottom:816.257333pt;}
.y133{bottom:816.666667pt;}
.yad{bottom:817.254667pt;}
.yf3{bottom:817.360000pt;}
.y15c{bottom:819.180000pt;}
.y112{bottom:825.809333pt;}
.y80{bottom:825.973333pt;}
.y6{bottom:827.412000pt;}
.ycc{bottom:830.869333pt;}
.y61{bottom:831.754667pt;}
.y35{bottom:831.932000pt;}
.y15b{bottom:833.792000pt;}
.y132{bottom:834.732000pt;}
.yf2{bottom:840.606667pt;}
.y111{bottom:843.874667pt;}
.y5{bottom:846.009333pt;}
.y15a{bottom:848.402667pt;}
.y60{bottom:849.820000pt;}
.y34{bottom:849.997333pt;}
.y131{bottom:852.797333pt;}
.ycb{bottom:853.352000pt;}
.y110{bottom:861.941333pt;}
.y159{bottom:863.014667pt;}
.yf1{bottom:863.852000pt;}
.yac{bottom:867.365333pt;}
.y5f{bottom:867.886667pt;}
.y33{bottom:868.062667pt;}
.y130{bottom:870.862667pt;}
.yca{bottom:872.812000pt;}
.y158{bottom:877.626667pt;}
.y4{bottom:877.834667pt;}
.y10f{bottom:880.006667pt;}
.yab{bottom:885.432000pt;}
.y5e{bottom:886.040000pt;}
.y32{bottom:886.128000pt;}
.yf0{bottom:887.098667pt;}
.y12f{bottom:888.928000pt;}
.y157{bottom:892.238667pt;}
.yc9{bottom:892.272000pt;}
.y10e{bottom:898.072000pt;}
.yaa{bottom:903.497333pt;}
.y5d{bottom:904.105333pt;}
.y31{bottom:904.194667pt;}
.y156{bottom:906.850667pt;}
.y12e{bottom:906.994667pt;}
.yef{bottom:910.344000pt;}
.yc8{bottom:911.733333pt;}
.y10d{bottom:916.137333pt;}
.y155{bottom:921.462667pt;}
.ya9{bottom:921.562667pt;}
.y5c{bottom:922.170667pt;}
.y30{bottom:922.260000pt;}
.y12d{bottom:925.060000pt;}
.yc7{bottom:931.193333pt;}
.yee{bottom:933.590667pt;}
.y10c{bottom:934.202667pt;}
.y3{bottom:934.746667pt;}
.y154{bottom:936.074667pt;}
.ya8{bottom:939.628000pt;}
.y5b{bottom:940.237333pt;}
.y2f{bottom:940.325333pt;}
.y12c{bottom:943.125333pt;}
.yc6{bottom:950.653333pt;}
.y153{bottom:950.686667pt;}
.y10b{bottom:952.268000pt;}
.yed{bottom:956.837333pt;}
.ya7{bottom:957.693333pt;}
.y5a{bottom:958.302667pt;}
.y2e{bottom:958.390667pt;}
.y12b{bottom:961.190667pt;}
.y2{bottom:963.969333pt;}
.y152{bottom:965.298667pt;}
.yc5{bottom:970.113333pt;}
.y2d{bottom:976.456000pt;}
.y151{bottom:979.910667pt;}
.yec{bottom:980.082667pt;}
.yc4{bottom:982.733333pt;}
.yeb{bottom:992.702667pt;}
.y1{bottom:993.193333pt;}
.y2c{bottom:994.521333pt;}
.yc3{bottom:995.352000pt;}
.yc2{bottom:1013.333333pt;}
.y58{bottom:1016.000000pt;}
.y7f{bottom:1017.333333pt;}
.ya1{bottom:1018.666667pt;}
.yea{bottom:1021.333333pt;}
.y10a{bottom:1025.333333pt;}
.ya6{bottom:1030.666667pt;}
.y2a{bottom:1034.666667pt;}
.ha{height:31.880400pt;}
.h9{height:33.187635pt;}
.hb{height:34.239693pt;}
.h4{height:35.865600pt;}
.h8{height:40.727307pt;}
.h6{height:43.636400pt;}
.h5{height:44.632747pt;}
.h3{height:45.525402pt;}
.h7{height:48.156250pt;}
.h2{height:64.270827pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:113.385333pt;}
.xb{left:114.666667pt;}
.x29{left:119.529333pt;}
.x2{left:120.533333pt;}
.x21{left:124.284000pt;}
.x25{left:126.669333pt;}
.x22{left:129.326667pt;}
.x1e{left:132.766667pt;}
.x9{left:135.968000pt;}
.x5{left:137.180000pt;}
.x13{left:139.953333pt;}
.x18{left:141.346667pt;}
.x1b{left:142.956000pt;}
.x3{left:144.949333pt;}
.x19{left:148.718667pt;}
.x14{left:149.653333pt;}
.x28{left:160.746667pt;}
.x12{left:162.666667pt;}
.xc{left:165.333333pt;}
.x1{left:168.460000pt;}
.x1d{left:172.000000pt;}
.xa{left:173.333333pt;}
.xf{left:178.666667pt;}
.x10{left:180.000000pt;}
.x23{left:184.000000pt;}
.x24{left:185.333333pt;}
.x2b{left:188.000000pt;}
.x2a{left:190.666667pt;}
.x4{left:234.929333pt;}
.x1c{left:239.498667pt;}
.x6{left:300.277333pt;}
.x26{left:304.417333pt;}
.x11{left:323.957333pt;}
.x7{left:333.944000pt;}
.x1a{left:349.050667pt;}
.x15{left:419.380000pt;}
.x1f{left:476.642667pt;}
.x16{left:489.056000pt;}
.x27{left:519.961333pt;}
.x20{left:537.054667pt;}
.x17{left:590.589333pt;}
.xe{left:666.666667pt;}
.xd{left:674.666667pt;}
}




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