
    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_2e8be1d822be3095b8949333.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.099000;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_55a0a8155d2020bee57ff273.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_3294921364c334daea6714f4.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.022000;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_87e94ba450ccbfce30a906e7.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.022000;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_09d087da81e36deffc7d5a04.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.900000;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_480d59b2d13bf7722693a566.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_457711f5a45b9c3fe773aa6c.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.714000;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_eb97e0a0aaa03dc6cf71b2c1.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.909000;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_aa803262f8e27a9814714292.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_f7f2f26b0a59c0a959944533.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_4ba7caf09e4083350f7e5567.woff2')format("woff");}.ffb{font-family:ffb;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;}
@font-face{font-family:ffc;src:url('chunks/assets/font_bfb78bfb2c5d502d243a3e47.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.696000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_6cb31679c8f481088945585c.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.482000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_c293d887b9ac5b4062a519fb.woff2')format("woff");}.ffe{font-family:ffe;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;}
.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);}
.v5{vertical-align:-101.142000px;}
.v8{vertical-align:-64.830000px;}
.va{vertical-align:-10.758000px;}
.v0{vertical-align:0.000000px;}
.v9{vertical-align:20.724000px;}
.v1{vertical-align:26.028000px;}
.vc{vertical-align:49.206000px;}
.v6{vertical-align:54.000000px;}
.v3{vertical-align:78.708000px;}
.v2{vertical-align:97.632000px;}
.v7{vertical-align:129.588000px;}
.vb{vertical-align:150.348000px;}
.v4{vertical-align:165.900000px;}
.ls1{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.000273px;}
.lsf{letter-spacing:0.000760px;}
.ls1f{letter-spacing:0.001114px;}
.ls19{letter-spacing:0.001288px;}
.ls0{letter-spacing:0.001755px;}
.ls13{letter-spacing:0.002759px;}
.lsc{letter-spacing:0.003333px;}
.ls10{letter-spacing:0.003848px;}
.ls23{letter-spacing:0.004573px;}
.ls21{letter-spacing:0.005075px;}
.ls4{letter-spacing:1.946534px;}
.ls12{letter-spacing:2.577525px;}
.lsd{letter-spacing:2.984915px;}
.ls3{letter-spacing:2.988792px;}
.ls24{letter-spacing:2.991072px;}
.ls14{letter-spacing:3.195477px;}
.ls1a{letter-spacing:3.615160px;}
.ls6{letter-spacing:6.641075px;}
.ls1b{letter-spacing:9.398759px;}
.ls18{letter-spacing:9.756440px;}
.ls1c{letter-spacing:11.952273px;}
.lse{letter-spacing:12.148800px;}
.ls17{letter-spacing:15.935518px;}
.ls20{letter-spacing:15.937473px;}
.ls16{letter-spacing:15.939848px;}
.ls15{letter-spacing:15.941518px;}
.ls22{letter-spacing:15.943473px;}
.ls11{letter-spacing:18.926915px;}
.ls5{letter-spacing:19.827072px;}
.ls8{letter-spacing:19.925518px;}
.ls7{letter-spacing:26.567075px;}
.ls2{letter-spacing:29.185139px;}
.ls9{letter-spacing:31.876145px;}
.ls1e{letter-spacing:35.117578px;}
.ls1d{letter-spacing:38.945075px;}
.lsa{letter-spacing:58.052915px;}
.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;}
}
.ws38{word-spacing:-45.664082px;}
.ws57{word-spacing:-26.133958px;}
.ws6f{word-spacing:-18.542515px;}
.ws4a{word-spacing:-18.327322px;}
.ws4b{word-spacing:-18.255590px;}
.ws50{word-spacing:-17.968666px;}
.ws63{word-spacing:-17.825203px;}
.ws5e{word-spacing:-17.610010px;}
.ws6e{word-spacing:-16.677504px;}
.ws41{word-spacing:-16.605773px;}
.ws1e{word-spacing:-16.311286px;}
.ws31{word-spacing:-16.247117px;}
.ws65{word-spacing:-15.888461px;}
.ws5{word-spacing:-15.853104px;}
.ws1{word-spacing:-15.829597px;}
.ws0{word-spacing:-15.743520px;}
.ws46{word-spacing:-15.673267px;}
.wsb{word-spacing:-15.460377px;}
.ws42{word-spacing:-15.458074px;}
.ws62{word-spacing:-15.314611px;}
.ws7{word-spacing:-15.264013px;}
.ws32{word-spacing:-15.099418px;}
.ws28{word-spacing:-15.027686px;}
.ws2b{word-spacing:-14.597299px;}
.ws3b{word-spacing:-14.095181px;}
.ws72{word-spacing:-14.023450px;}
.ws3d{word-spacing:-13.879987px;}
.ws2c{word-spacing:-13.808256px;}
.ws45{word-spacing:-13.593062px;}
.wsd{word-spacing:-13.562193px;}
.ws67{word-spacing:-13.521331px;}
.ws56{word-spacing:-13.442427px;}
.ws79{word-spacing:-13.306138px;}
.ws1f{word-spacing:-13.300375px;}
.ws35{word-spacing:-13.234406px;}
.wsa{word-spacing:-13.169466px;}
.ws29{word-spacing:-12.804019px;}
.ws23{word-spacing:-12.645829px;}
.ws8{word-spacing:-12.253101px;}
.ws3f{word-spacing:-12.158438px;}
.ws12{word-spacing:-12.122192px;}
.ws20{word-spacing:-12.056737px;}
.ws70{word-spacing:-12.014976px;}
.ws1d{word-spacing:-11.991283px;}
.ws9{word-spacing:-11.794919px;}
.ws3{word-spacing:-11.728051px;}
.ws74{word-spacing:-11.706121px;}
.ws80{word-spacing:-11.705954px;}
.ws34{word-spacing:-11.656320px;}
.ws6c{word-spacing:-11.584589px;}
.wsc{word-spacing:-11.467646px;}
.ws64{word-spacing:-11.369395px;}
.ws15{word-spacing:-11.074918px;}
.ws61{word-spacing:-10.939008px;}
.ws13{word-spacing:-10.878555px;}
.ws68{word-spacing:-10.867277px;}
.ws27{word-spacing:-10.723814px;}
.ws2d{word-spacing:-10.652083px;}
.ws1c{word-spacing:-10.616736px;}
.ws40{word-spacing:-10.293427px;}
.ws66{word-spacing:-10.006502px;}
.ws71{word-spacing:-9.576115px;}
.ws7b{word-spacing:-9.504384px;}
.ws5f{word-spacing:-9.432653px;}
.ws54{word-spacing:-9.217459px;}
.ws69{word-spacing:-9.145728px;}
.ws2{word-spacing:-9.123197px;}
.ws7d{word-spacing:-9.048954px;}
.ws1b{word-spacing:-8.980371px;}
.ws43{word-spacing:-8.930534px;}
.ws77{word-spacing:-8.571878px;}
.ws76{word-spacing:-8.554652px;}
.ws33{word-spacing:-8.356685px;}
.ws7f{word-spacing:-8.284954px;}
.ws2e{word-spacing:-8.213222px;}
.ws84{word-spacing:-8.069760px;}
.ws6{word-spacing:-7.474915px;}
.ws39{word-spacing:-6.993792px;}
.ws11{word-spacing:-6.951279px;}
.ws60{word-spacing:-6.850330px;}
.ws3a{word-spacing:-6.778598px;}
.ws47{word-spacing:-6.706867px;}
.wsf{word-spacing:-6.624006px;}
.ws6a{word-spacing:-6.563405px;}
.ws53{word-spacing:-6.491674px;}
.ws44{word-spacing:-6.419942px;}
.ws6b{word-spacing:-6.348211px;}
.ws30{word-spacing:-6.061286px;}
.ws37{word-spacing:-5.919698px;}
.ws36{word-spacing:-5.917824px;}
.ws48{word-spacing:-5.774362px;}
.wse{word-spacing:-5.773096px;}
.ws82{word-spacing:-5.645092px;}
.ws18{word-spacing:-5.642187px;}
.ws81{word-spacing:-5.630899px;}
.ws5c{word-spacing:-5.200512px;}
.ws21{word-spacing:-5.184004px;}
.ws7c{word-spacing:-5.128781px;}
.ws73{word-spacing:-4.554931px;}
.ws2a{word-spacing:-4.411469px;}
.ws19{word-spacing:-4.005822px;}
.ws10{word-spacing:-3.940367px;}
.ws2f{word-spacing:-3.909350px;}
.ws51{word-spacing:-3.622426px;}
.ws5b{word-spacing:-3.120307px;}
.ws6d{word-spacing:-3.048576px;}
.ws49{word-spacing:-2.905114px;}
.ws55{word-spacing:-2.833382px;}
.ws3c{word-spacing:-2.402995px;}
.ws22{word-spacing:-2.238547px;}
.ws25{word-spacing:-2.173093px;}
.ws1a{word-spacing:-1.845820px;}
.ws3e{word-spacing:-1.040102px;}
.ws4{word-spacing:-0.071731px;}
.ws17{word-spacing:-0.065455px;}
.ws16{word-spacing:0.000000px;}
.ws4e{word-spacing:15.852595px;}
.ws5a{word-spacing:15.854696px;}
.ws59{word-spacing:15.860696px;}
.ws58{word-spacing:19.869542px;}
.ws78{word-spacing:23.527834px;}
.ws75{word-spacing:25.034189px;}
.ws86{word-spacing:25.823232px;}
.ws7a{word-spacing:27.042662px;}
.ws7e{word-spacing:27.473050px;}
.ws4d{word-spacing:27.903437px;}
.ws85{word-spacing:28.333824px;}
.ws4c{word-spacing:28.405555px;}
.ws14{word-spacing:28.755401px;}
.ws83{word-spacing:30.557491px;}
.ws52{word-spacing:37.081972px;}
.ws24{word-spacing:46.196986px;}
.ws26{word-spacing:111.349207px;}
.ws5d{word-spacing:215.311039px;}
.ws4f{word-spacing:272.676931px;}
._20{margin-left:-31.660886px;}
._1{margin-left:-10.501418px;}
._22{margin-left:-9.296316px;}
._2{margin-left:-7.660871px;}
._4{margin-left:-5.829796px;}
._7{margin-left:-4.597067px;}
._0{margin-left:-2.668393px;}
._3{margin-left:-1.133360px;}
._5{width:1.956311px;}
._19{width:3.873485px;}
._1f{width:5.638291px;}
._1e{width:9.754764px;}
._8{width:18.901134px;}
._2d{width:20.170806px;}
._c{width:21.584773px;}
._15{width:22.896592px;}
._24{width:24.771457px;}
._6{width:26.697558px;}
._9{width:28.603660px;}
._1b{width:29.983642px;}
._d{width:31.010235px;}
._10{width:32.238627px;}
._13{width:34.106227px;}
._f{width:35.365202px;}
._23{width:38.663117px;}
._b{width:41.438740px;}
._12{width:42.531372px;}
._a{width:43.998205px;}
._16{width:45.118925px;}
._1c{width:47.055667px;}
._14{width:48.123617px;}
._1d{width:49.551892px;}
._11{width:54.750536px;}
._e{width:56.739280px;}
._17{width:59.106509px;}
._18{width:63.195187px;}
._26{width:86.083428px;}
._1a{width:94.684920px;}
._21{width:111.452500px;}
._27{width:154.719318px;}
._29{width:279.474597px;}
._2c{width:315.053919px;}
._2a{width:489.370898px;}
._2b{width:500.877043px;}
._28{width:581.524641px;}
._25{width:855.719737px;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:47.820600px;}
.fs2{font-size:65.454600px;}
.fs1{font-size:71.731200px;}
.fs0{font-size:86.077200px;}
.fs3{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y41{bottom:170.079000px;}
.y78{bottom:178.425000px;}
.y76{bottom:184.819500px;}
.y40{bottom:191.748000px;}
.y75{bottom:207.085500px;}
.y51{bottom:213.415500px;}
.y3f{bottom:213.417000px;}
.y94{bottom:216.753000px;}
.y1c{bottom:227.431500px;}
.y74{bottom:228.754500px;}
.y56{bottom:230.760000px;}
.y3e{bottom:235.084500px;}
.y93{bottom:238.422000px;}
.y1b{bottom:247.755000px;}
.y73{bottom:250.423500px;}
.y50{bottom:255.013500px;}
.y3d{bottom:256.753500px;}
.y72{bottom:272.689500px;}
.y92{bottom:275.034000px;}
.y3c{bottom:278.422500px;}
.y1a{bottom:289.339500px;}
.y71{bottom:294.432000px;}
.y91{bottom:296.703000px;}
.y3b{bottom:300.091500px;}
.y19{bottom:309.663000px;}
.y3a{bottom:321.760500px;}
.yad{bottom:324.228000px;}
.y18{bottom:329.986500px;}
.y90{bottom:336.126000px;}
.y39{bottom:343.429500px;}
.yac{bottom:345.895500px;}
.y70{bottom:348.724500px;}
.y17{bottom:350.310000px;}
.y38{bottom:365.097000px;}
.y6f{bottom:370.393500px;}
.y16{bottom:370.633500px;}
.yab{bottom:382.509000px;}
.y37{bottom:386.766000px;}
.y15{bottom:390.958500px;}
.y6e{bottom:392.062500px;}
.y8f{bottom:396.019500px;}
.yaa{bottom:404.178000px;}
.y36{bottom:408.435000px;}
.y14{bottom:411.282000px;}
.y6d{bottom:413.731500px;}
.y8e{bottom:417.688500px;}
.y35{bottom:430.104000px;}
.y13{bottom:431.605500px;}
.y8d{bottom:439.356000px;}
.ya9{bottom:440.790000px;}
.y6c{bottom:450.343500px;}
.y34{bottom:451.773000px;}
.y12{bottom:451.929000px;}
.y8c{bottom:461.025000px;}
.ya8{bottom:462.459000px;}
.y11{bottom:472.252500px;}
.y33{bottom:473.442000px;}
.y8b{bottom:482.694000px;}
.ya7{bottom:484.128000px;}
.y6b{bottom:486.957000px;}
.y10{bottom:492.577500px;}
.y32{bottom:495.109500px;}
.y8a{bottom:504.363000px;}
.yf{bottom:512.901000px;}
.y31{bottom:516.778500px;}
.ya6{bottom:520.740000px;}
.y6a{bottom:523.569000px;}
.y89{bottom:526.032000px;}
.ye{bottom:533.224500px;}
.y30{bottom:538.447500px;}
.ya5{bottom:542.409000px;}
.y69{bottom:545.238000px;}
.y88{bottom:547.701000px;}
.yd{bottom:553.548000px;}
.ya4{bottom:564.078000px;}
.y87{bottom:569.368500px;}
.yc{bottom:573.871500px;}
.y2f{bottom:577.870500px;}
.y68{bottom:578.485500px;}
.y86{bottom:591.037500px;}
.y77{bottom:593.287500px;}
.yb{bottom:594.195000px;}
.ya3{bottom:600.690000px;}
.y85{bottom:612.706500px;}
.ya{bottom:617.421000px;}
.ya2{bottom:622.359000px;}
.y67{bottom:630.471000px;}
.y84{bottom:634.375500px;}
.y66{bottom:652.140000px;}
.y83{bottom:656.044500px;}
.ya1{bottom:658.972500px;}
.y4f{bottom:659.799000px;}
.y53{bottom:665.028000px;}
.y55{bottom:665.226000px;}
.y65{bottom:673.809000px;}
.y82{bottom:677.713500px;}
.ya0{bottom:680.641500px;}
.y4e{bottom:681.468000px;}
.y52{bottom:686.695500px;}
.y54{bottom:686.895000px;}
.y2e{bottom:690.031500px;}
.y9{bottom:692.514000px;}
.y81{bottom:699.381000px;}
.y4d{bottom:703.135500px;}
.y2d{bottom:710.355000px;}
.y64{bottom:713.232000px;}
.y8{bottom:714.183000px;}
.y9f{bottom:717.253500px;}
.y4c{bottom:724.804500px;}
.y7{bottom:735.852000px;}
.y80{bottom:738.804000px;}
.y9e{bottom:738.922500px;}
.y2c{bottom:751.938000px;}
.y4b{bottom:758.052000px;}
.y2b{bottom:772.261500px;}
.y63{bottom:773.125500px;}
.y9d{bottom:775.534500px;}
.y2a{bottom:792.586500px;}
.y62{bottom:794.794500px;}
.y9c{bottom:797.203500px;}
.y7f{bottom:798.697500px;}
.y4a{bottom:808.882500px;}
.y6{bottom:812.289000px;}
.y29{bottom:812.910000px;}
.y61{bottom:816.463500px;}
.y9b{bottom:818.872500px;}
.y7e{bottom:820.366500px;}
.y49{bottom:830.551500px;}
.y28{bottom:833.233500px;}
.y5{bottom:839.188500px;}
.y7d{bottom:842.035500px;}
.y5e{bottom:850.183500px;}
.y48{bottom:852.219000px;}
.y27{bottom:853.557000px;}
.y60{bottom:854.071500px;}
.y9a{bottom:855.484500px;}
.y7c{bottom:863.704500px;}
.y4{bottom:866.086500px;}
.y5d{bottom:866.373000px;}
.y26{bottom:873.880500px;}
.y99{bottom:877.153500px;}
.y5f{bottom:878.505000px;}
.y7b{bottom:885.373500px;}
.y47{bottom:891.642000px;}
.y25{bottom:894.205500px;}
.y98{bottom:898.822500px;}
.y7a{bottom:907.042500px;}
.y24{bottom:914.529000px;}
.y5c{bottom:917.131500px;}
.y79{bottom:928.710000px;}
.y23{bottom:934.852500px;}
.y97{bottom:935.436000px;}
.y3{bottom:935.506500px;}
.y5b{bottom:938.800500px;}
.y46{bottom:950.379000px;}
.y22{bottom:955.176000px;}
.y96{bottom:957.103500px;}
.y5a{bottom:960.469500px;}
.y2{bottom:962.404500px;}
.y45{bottom:972.048000px;}
.y21{bottom:975.499500px;}
.y95{bottom:978.772500px;}
.y59{bottom:982.138500px;}
.y1{bottom:989.304000px;}
.y44{bottom:993.717000px;}
.y20{bottom:995.823000px;}
.y58{bottom:1003.807500px;}
.y43{bottom:1015.386000px;}
.y1f{bottom:1016.148000px;}
.y57{bottom:1025.475000px;}
.y1e{bottom:1036.471500px;}
.y42{bottom:1037.055000px;}
.y1d{bottom:1058.722500px;}
.h4{height:45.883675px;}
.h5{height:49.156405px;}
.ha{height:53.798400px;}
.he{height:53.941862px;}
.h3{height:55.376486px;}
.hc{height:58.306905px;}
.hd{height:58.312905px;}
.h7{height:59.693702px;}
.hf{height:59.699702px;}
.h6{height:72.511265px;}
.h2{height:77.383403px;}
.h8{height:112.373702px;}
.hb{height:153.217248px;}
.h9{height:168.769248px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:85.039500px;}
.x1{left:88.693500px;}
.x4{left:106.071000px;}
.x9{left:111.378000px;}
.x3{left:118.972500px;}
.x8{left:128.937000px;}
.xa{left:142.735500px;}
.x11{left:155.374500px;}
.x2{left:164.776500px;}
.x12{left:179.683500px;}
.xc{left:183.891000px;}
.x5{left:186.481500px;}
.x10{left:209.109000px;}
.xf{left:213.981000px;}
.xd{left:232.005000px;}
.x7{left:410.724000px;}
.xb{left:460.917000px;}
.xe{left:640.789500px;}
@media print{
.v5{vertical-align:-89.904000pt;}
.v8{vertical-align:-57.626667pt;}
.va{vertical-align:-9.562667pt;}
.v0{vertical-align:0.000000pt;}
.v9{vertical-align:18.421333pt;}
.v1{vertical-align:23.136000pt;}
.vc{vertical-align:43.738667pt;}
.v6{vertical-align:48.000000pt;}
.v3{vertical-align:69.962667pt;}
.v2{vertical-align:86.784000pt;}
.v7{vertical-align:115.189333pt;}
.vb{vertical-align:133.642667pt;}
.v4{vertical-align:147.466667pt;}
.ls1{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.000242pt;}
.lsf{letter-spacing:0.000676pt;}
.ls1f{letter-spacing:0.000990pt;}
.ls19{letter-spacing:0.001145pt;}
.ls0{letter-spacing:0.001560pt;}
.ls13{letter-spacing:0.002452pt;}
.lsc{letter-spacing:0.002963pt;}
.ls10{letter-spacing:0.003420pt;}
.ls23{letter-spacing:0.004065pt;}
.ls21{letter-spacing:0.004511pt;}
.ls4{letter-spacing:1.730253pt;}
.ls12{letter-spacing:2.291133pt;}
.lsd{letter-spacing:2.653258pt;}
.ls3{letter-spacing:2.656704pt;}
.ls24{letter-spacing:2.658731pt;}
.ls14{letter-spacing:2.840424pt;}
.ls1a{letter-spacing:3.213476pt;}
.ls6{letter-spacing:5.903177pt;}
.ls1b{letter-spacing:8.354452pt;}
.ls18{letter-spacing:8.672391pt;}
.ls1c{letter-spacing:10.624242pt;}
.lse{letter-spacing:10.798933pt;}
.ls17{letter-spacing:14.164905pt;}
.ls20{letter-spacing:14.166642pt;}
.ls16{letter-spacing:14.168753pt;}
.ls15{letter-spacing:14.170238pt;}
.ls22{letter-spacing:14.171976pt;}
.ls11{letter-spacing:16.823925pt;}
.ls5{letter-spacing:17.624064pt;}
.ls8{letter-spacing:17.711572pt;}
.ls7{letter-spacing:23.615177pt;}
.ls2{letter-spacing:25.942345pt;}
.ls9{letter-spacing:28.334351pt;}
.ls1e{letter-spacing:31.215625pt;}
.ls1d{letter-spacing:34.617844pt;}
.lsa{letter-spacing:51.602591pt;}
.ws38{word-spacing:-40.590295pt;}
.ws57{word-spacing:-23.230185pt;}
.ws6f{word-spacing:-16.482236pt;}
.ws4a{word-spacing:-16.290953pt;}
.ws4b{word-spacing:-16.227191pt;}
.ws50{word-spacing:-15.972147pt;}
.ws63{word-spacing:-15.844625pt;}
.ws5e{word-spacing:-15.653342pt;}
.ws6e{word-spacing:-14.824448pt;}
.ws41{word-spacing:-14.760687pt;}
.ws1e{word-spacing:-14.498921pt;}
.ws31{word-spacing:-14.441882pt;}
.ws65{word-spacing:-14.123076pt;}
.ws5{word-spacing:-14.091648pt;}
.ws1{word-spacing:-14.070753pt;}
.ws0{word-spacing:-13.994240pt;}
.ws46{word-spacing:-13.931793pt;}
.wsb{word-spacing:-13.742557pt;}
.ws42{word-spacing:-13.740510pt;}
.ws62{word-spacing:-13.612988pt;}
.ws7{word-spacing:-13.568011pt;}
.ws32{word-spacing:-13.421705pt;}
.ws28{word-spacing:-13.357943pt;}
.ws2b{word-spacing:-12.975377pt;}
.ws3b{word-spacing:-12.529050pt;}
.ws72{word-spacing:-12.465289pt;}
.ws3d{word-spacing:-12.337766pt;}
.ws2c{word-spacing:-12.274005pt;}
.ws45{word-spacing:-12.082722pt;}
.wsd{word-spacing:-12.055283pt;}
.ws67{word-spacing:-12.018961pt;}
.ws56{word-spacing:-11.948824pt;}
.ws79{word-spacing:-11.827678pt;}
.ws1f{word-spacing:-11.822555pt;}
.ws35{word-spacing:-11.763917pt;}
.wsa{word-spacing:-11.706192pt;}
.ws29{word-spacing:-11.381350pt;}
.ws23{word-spacing:-11.240737pt;}
.ws8{word-spacing:-10.891645pt;}
.ws3f{word-spacing:-10.807501pt;}
.ws12{word-spacing:-10.775282pt;}
.ws20{word-spacing:-10.717100pt;}
.ws70{word-spacing:-10.679979pt;}
.ws1d{word-spacing:-10.658918pt;}
.ws9{word-spacing:-10.484372pt;}
.ws3{word-spacing:-10.424934pt;}
.ws74{word-spacing:-10.405441pt;}
.ws80{word-spacing:-10.405292pt;}
.ws34{word-spacing:-10.361173pt;}
.ws6c{word-spacing:-10.297412pt;}
.wsc{word-spacing:-10.193463pt;}
.ws64{word-spacing:-10.106129pt;}
.ws15{word-spacing:-9.844372pt;}
.ws61{word-spacing:-9.723563pt;}
.ws13{word-spacing:-9.669826pt;}
.ws68{word-spacing:-9.659802pt;}
.ws27{word-spacing:-9.532279pt;}
.ws2d{word-spacing:-9.468518pt;}
.ws1c{word-spacing:-9.437099pt;}
.ws40{word-spacing:-9.149713pt;}
.ws66{word-spacing:-8.894669pt;}
.ws71{word-spacing:-8.512102pt;}
.ws7b{word-spacing:-8.448341pt;}
.ws5f{word-spacing:-8.384580pt;}
.ws54{word-spacing:-8.193297pt;}
.ws69{word-spacing:-8.129536pt;}
.ws2{word-spacing:-8.109508pt;}
.ws7d{word-spacing:-8.043515pt;}
.ws1b{word-spacing:-7.982552pt;}
.ws43{word-spacing:-7.938253pt;}
.ws77{word-spacing:-7.619447pt;}
.ws76{word-spacing:-7.604135pt;}
.ws33{word-spacing:-7.428164pt;}
.ws7f{word-spacing:-7.364403pt;}
.ws2e{word-spacing:-7.300642pt;}
.ws84{word-spacing:-7.173120pt;}
.ws6{word-spacing:-6.644369pt;}
.ws39{word-spacing:-6.216704pt;}
.ws11{word-spacing:-6.178914pt;}
.ws60{word-spacing:-6.089182pt;}
.ws3a{word-spacing:-6.025421pt;}
.ws47{word-spacing:-5.961660pt;}
.wsf{word-spacing:-5.888005pt;}
.ws6a{word-spacing:-5.834138pt;}
.ws53{word-spacing:-5.770377pt;}
.ws44{word-spacing:-5.706615pt;}
.ws6b{word-spacing:-5.642854pt;}
.ws30{word-spacing:-5.387810pt;}
.ws37{word-spacing:-5.261954pt;}
.ws36{word-spacing:-5.260288pt;}
.ws48{word-spacing:-5.132766pt;}
.wse{word-spacing:-5.131641pt;}
.ws82{word-spacing:-5.017859pt;}
.ws18{word-spacing:-5.015277pt;}
.ws81{word-spacing:-5.005244pt;}
.ws5c{word-spacing:-4.622677pt;}
.ws21{word-spacing:-4.608004pt;}
.ws7c{word-spacing:-4.558916pt;}
.ws73{word-spacing:-4.048828pt;}
.ws2a{word-spacing:-3.921306pt;}
.ws19{word-spacing:-3.560730pt;}
.ws10{word-spacing:-3.502548pt;}
.ws2f{word-spacing:-3.474978pt;}
.ws51{word-spacing:-3.219934pt;}
.ws5b{word-spacing:-2.773606pt;}
.ws6d{word-spacing:-2.709845pt;}
.ws49{word-spacing:-2.582323pt;}
.ws55{word-spacing:-2.518562pt;}
.ws3c{word-spacing:-2.135996pt;}
.ws22{word-spacing:-1.989820pt;}
.ws25{word-spacing:-1.931638pt;}
.ws1a{word-spacing:-1.640729pt;}
.ws3e{word-spacing:-0.924535pt;}
.ws4{word-spacing:-0.063761pt;}
.ws17{word-spacing:-0.058182pt;}
.ws16{word-spacing:0.000000pt;}
.ws4e{word-spacing:14.091196pt;}
.ws5a{word-spacing:14.093063pt;}
.ws59{word-spacing:14.098396pt;}
.ws58{word-spacing:17.661815pt;}
.ws78{word-spacing:20.913630pt;}
.ws75{word-spacing:22.252612pt;}
.ws86{word-spacing:22.953984pt;}
.ws7a{word-spacing:24.037922pt;}
.ws7e{word-spacing:24.420489pt;}
.ws4d{word-spacing:24.803055pt;}
.ws85{word-spacing:25.185621pt;}
.ws4c{word-spacing:25.249382pt;}
.ws14{word-spacing:25.560356pt;}
.ws83{word-spacing:27.162214pt;}
.ws52{word-spacing:32.961753pt;}
.ws24{word-spacing:41.063988pt;}
.ws26{word-spacing:98.977073pt;}
.ws5d{word-spacing:191.387590pt;}
.ws4f{word-spacing:242.379494pt;}
._20{margin-left:-28.143010pt;}
._1{margin-left:-9.334594pt;}
._22{margin-left:-8.263392pt;}
._2{margin-left:-6.809663pt;}
._4{margin-left:-5.182041pt;}
._7{margin-left:-4.086282pt;}
._0{margin-left:-2.371905pt;}
._3{margin-left:-1.007431pt;}
._5{width:1.738943pt;}
._19{width:3.443098pt;}
._1f{width:5.011814pt;}
._1e{width:8.670901pt;}
._8{width:16.801008pt;}
._2d{width:17.929605pt;}
._c{width:19.186465pt;}
._15{width:20.352526pt;}
._24{width:22.019073pt;}
._6{width:23.731163pt;}
._9{width:25.425476pt;}
._1b{width:26.652126pt;}
._d{width:27.564653pt;}
._10{width:28.656557pt;}
._13{width:30.316647pt;}
._f{width:31.435735pt;}
._23{width:34.367215pt;}
._b{width:36.834436pt;}
._12{width:37.805664pt;}
._a{width:39.109516pt;}
._16{width:40.105711pt;}
._1c{width:41.827260pt;}
._14{width:42.776549pt;}
._1d{width:44.046126pt;}
._11{width:48.667143pt;}
._e{width:50.434915pt;}
._17{width:52.539119pt;}
._18{width:56.173500pt;}
._26{width:76.518603pt;}
._1a{width:84.164373pt;}
._21{width:99.068889pt;}
._27{width:137.528282pt;}
._29{width:248.421864pt;}
._2c{width:280.047928pt;}
._2a{width:434.996354pt;}
._2b{width:445.224038pt;}
._28{width:516.910792pt;}
._25{width:760.639766pt;}
.fs4{font-size:42.507200pt;}
.fs2{font-size:58.181867pt;}
.fs1{font-size:63.761067pt;}
.fs0{font-size:76.513067pt;}
.fs3{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y41{bottom:151.181333pt;}
.y78{bottom:158.600000pt;}
.y76{bottom:164.284000pt;}
.y40{bottom:170.442667pt;}
.y75{bottom:184.076000pt;}
.y51{bottom:189.702667pt;}
.y3f{bottom:189.704000pt;}
.y94{bottom:192.669333pt;}
.y1c{bottom:202.161333pt;}
.y74{bottom:203.337333pt;}
.y56{bottom:205.120000pt;}
.y3e{bottom:208.964000pt;}
.y93{bottom:211.930667pt;}
.y1b{bottom:220.226667pt;}
.y73{bottom:222.598667pt;}
.y50{bottom:226.678667pt;}
.y3d{bottom:228.225333pt;}
.y72{bottom:242.390667pt;}
.y92{bottom:244.474667pt;}
.y3c{bottom:247.486667pt;}
.y1a{bottom:257.190667pt;}
.y71{bottom:261.717333pt;}
.y91{bottom:263.736000pt;}
.y3b{bottom:266.748000pt;}
.y19{bottom:275.256000pt;}
.y3a{bottom:286.009333pt;}
.yad{bottom:288.202667pt;}
.y18{bottom:293.321333pt;}
.y90{bottom:298.778667pt;}
.y39{bottom:305.270667pt;}
.yac{bottom:307.462667pt;}
.y70{bottom:309.977333pt;}
.y17{bottom:311.386667pt;}
.y38{bottom:324.530667pt;}
.y6f{bottom:329.238667pt;}
.y16{bottom:329.452000pt;}
.yab{bottom:340.008000pt;}
.y37{bottom:343.792000pt;}
.y15{bottom:347.518667pt;}
.y6e{bottom:348.500000pt;}
.y8f{bottom:352.017333pt;}
.yaa{bottom:359.269333pt;}
.y36{bottom:363.053333pt;}
.y14{bottom:365.584000pt;}
.y6d{bottom:367.761333pt;}
.y8e{bottom:371.278667pt;}
.y35{bottom:382.314667pt;}
.y13{bottom:383.649333pt;}
.y8d{bottom:390.538667pt;}
.ya9{bottom:391.813333pt;}
.y6c{bottom:400.305333pt;}
.y34{bottom:401.576000pt;}
.y12{bottom:401.714667pt;}
.y8c{bottom:409.800000pt;}
.ya8{bottom:411.074667pt;}
.y11{bottom:419.780000pt;}
.y33{bottom:420.837333pt;}
.y8b{bottom:429.061333pt;}
.ya7{bottom:430.336000pt;}
.y6b{bottom:432.850667pt;}
.y10{bottom:437.846667pt;}
.y32{bottom:440.097333pt;}
.y8a{bottom:448.322667pt;}
.yf{bottom:455.912000pt;}
.y31{bottom:459.358667pt;}
.ya6{bottom:462.880000pt;}
.y6a{bottom:465.394667pt;}
.y89{bottom:467.584000pt;}
.ye{bottom:473.977333pt;}
.y30{bottom:478.620000pt;}
.ya5{bottom:482.141333pt;}
.y69{bottom:484.656000pt;}
.y88{bottom:486.845333pt;}
.yd{bottom:492.042667pt;}
.ya4{bottom:501.402667pt;}
.y87{bottom:506.105333pt;}
.yc{bottom:510.108000pt;}
.y2f{bottom:513.662667pt;}
.y68{bottom:514.209333pt;}
.y86{bottom:525.366667pt;}
.y77{bottom:527.366667pt;}
.yb{bottom:528.173333pt;}
.ya3{bottom:533.946667pt;}
.y85{bottom:544.628000pt;}
.ya{bottom:548.818667pt;}
.ya2{bottom:553.208000pt;}
.y67{bottom:560.418667pt;}
.y84{bottom:563.889333pt;}
.y66{bottom:579.680000pt;}
.y83{bottom:583.150667pt;}
.ya1{bottom:585.753333pt;}
.y4f{bottom:586.488000pt;}
.y53{bottom:591.136000pt;}
.y55{bottom:591.312000pt;}
.y65{bottom:598.941333pt;}
.y82{bottom:602.412000pt;}
.ya0{bottom:605.014667pt;}
.y4e{bottom:605.749333pt;}
.y52{bottom:610.396000pt;}
.y54{bottom:610.573333pt;}
.y2e{bottom:613.361333pt;}
.y9{bottom:615.568000pt;}
.y81{bottom:621.672000pt;}
.y4d{bottom:625.009333pt;}
.y2d{bottom:631.426667pt;}
.y64{bottom:633.984000pt;}
.y8{bottom:634.829333pt;}
.y9f{bottom:637.558667pt;}
.y4c{bottom:644.270667pt;}
.y7{bottom:654.090667pt;}
.y80{bottom:656.714667pt;}
.y9e{bottom:656.820000pt;}
.y2c{bottom:668.389333pt;}
.y4b{bottom:673.824000pt;}
.y2b{bottom:686.454667pt;}
.y63{bottom:687.222667pt;}
.y9d{bottom:689.364000pt;}
.y2a{bottom:704.521333pt;}
.y62{bottom:706.484000pt;}
.y9c{bottom:708.625333pt;}
.y7f{bottom:709.953333pt;}
.y4a{bottom:719.006667pt;}
.y6{bottom:722.034667pt;}
.y29{bottom:722.586667pt;}
.y61{bottom:725.745333pt;}
.y9b{bottom:727.886667pt;}
.y7e{bottom:729.214667pt;}
.y49{bottom:738.268000pt;}
.y28{bottom:740.652000pt;}
.y5{bottom:745.945333pt;}
.y7d{bottom:748.476000pt;}
.y5e{bottom:755.718667pt;}
.y48{bottom:757.528000pt;}
.y27{bottom:758.717333pt;}
.y60{bottom:759.174667pt;}
.y9a{bottom:760.430667pt;}
.y7c{bottom:767.737333pt;}
.y4{bottom:769.854667pt;}
.y5d{bottom:770.109333pt;}
.y26{bottom:776.782667pt;}
.y99{bottom:779.692000pt;}
.y5f{bottom:780.893333pt;}
.y7b{bottom:786.998667pt;}
.y47{bottom:792.570667pt;}
.y25{bottom:794.849333pt;}
.y98{bottom:798.953333pt;}
.y7a{bottom:806.260000pt;}
.y24{bottom:812.914667pt;}
.y5c{bottom:815.228000pt;}
.y79{bottom:825.520000pt;}
.y23{bottom:830.980000pt;}
.y97{bottom:831.498667pt;}
.y3{bottom:831.561333pt;}
.y5b{bottom:834.489333pt;}
.y46{bottom:844.781333pt;}
.y22{bottom:849.045333pt;}
.y96{bottom:850.758667pt;}
.y5a{bottom:853.750667pt;}
.y2{bottom:855.470667pt;}
.y45{bottom:864.042667pt;}
.y21{bottom:867.110667pt;}
.y95{bottom:870.020000pt;}
.y59{bottom:873.012000pt;}
.y1{bottom:879.381333pt;}
.y44{bottom:883.304000pt;}
.y20{bottom:885.176000pt;}
.y58{bottom:892.273333pt;}
.y43{bottom:902.565333pt;}
.y1f{bottom:903.242667pt;}
.y57{bottom:911.533333pt;}
.y1e{bottom:921.308000pt;}
.y42{bottom:921.826667pt;}
.y1d{bottom:941.086667pt;}
.h4{height:40.785489pt;}
.h5{height:43.694582pt;}
.ha{height:47.820800pt;}
.he{height:47.948322pt;}
.h3{height:49.223543pt;}
.hc{height:51.828360pt;}
.hd{height:51.833693pt;}
.h7{height:53.061069pt;}
.hf{height:53.066402pt;}
.h6{height:64.454458pt;}
.h2{height:68.785247pt;}
.h8{height:99.887735pt;}
.hb{height:136.193109pt;}
.h9{height:150.017109pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:75.590667pt;}
.x1{left:78.838667pt;}
.x4{left:94.285333pt;}
.x9{left:99.002667pt;}
.x3{left:105.753333pt;}
.x8{left:114.610667pt;}
.xa{left:126.876000pt;}
.x11{left:138.110667pt;}
.x2{left:146.468000pt;}
.x12{left:159.718667pt;}
.xc{left:163.458667pt;}
.x5{left:165.761333pt;}
.x10{left:185.874667pt;}
.xf{left:190.205333pt;}
.xd{left:206.226667pt;}
.x7{left:365.088000pt;}
.xb{left:409.704000pt;}
.xe{left:569.590667pt;}
}




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