
    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_9ff9586de95d157987192619.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910156;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_67c948788a1b873da1e0ceb5.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.887207;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_b285e275bb8bd9bb1ba3c898.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.666504;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_8ac216e2d02acf6d0dd16c18.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.111133;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_4af522ba5a7a6b3c1056273e.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.960000;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_7454c12c7491b8d850ca824a.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.110533;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_0529fefaae6ff0aae3d212b8.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.992000;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_c0c5adf5ad7d880d8a153843.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.972000;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_6e1dbffa9305a97569d7a197.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.985000;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_cd6f19346bfa0bd1e787e432.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.666504;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_f095cb4794715f645aa7ca33.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.961000;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_0c43fd3984c70038256b3863.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.687500;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);}
.v1{vertical-align:-18.000000px;}
.v3{vertical-align:-1.975680px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:6.132240px;}
.v2{vertical-align:18.904320px;}
.v4{vertical-align:20.880000px;}
.ls53{letter-spacing:-7.394760px;}
.ls55{letter-spacing:-6.132240px;}
.ls56{letter-spacing:-4.509000px;}
.ls54{letter-spacing:-3.547080px;}
.ls11{letter-spacing:-3.426840px;}
.ls5b{letter-spacing:-3.066120px;}
.ls4b{letter-spacing:-2.705400px;}
.ls48{letter-spacing:-2.585160px;}
.ls4a{letter-spacing:-2.344680px;}
.ls58{letter-spacing:-2.224440px;}
.ls47{letter-spacing:-1.983960px;}
.ls59{letter-spacing:-1.923840px;}
.ls3e{letter-spacing:-1.623240px;}
.ls52{letter-spacing:-1.382760px;}
.ls23{letter-spacing:-1.262520px;}
.ls46{letter-spacing:-1.022040px;}
.ls3f{letter-spacing:-0.901800px;}
.ls5a{letter-spacing:-0.841680px;}
.ls40{letter-spacing:-0.541080px;}
.ls24{letter-spacing:-0.480960px;}
.ls10{letter-spacing:-0.420840px;}
.ls2d{letter-spacing:-0.360720px;}
.lsd{letter-spacing:-0.300600px;}
.lsf{letter-spacing:-0.240480px;}
.ls25{letter-spacing:-0.180360px;}
.ls5e{letter-spacing:-0.131760px;}
.ls9{letter-spacing:-0.120240px;}
.ls5d{letter-spacing:-0.065880px;}
.lse{letter-spacing:-0.060120px;}
.ls51{letter-spacing:-0.036000px;}
.lsa{letter-spacing:0.000000px;}
.ls1e{letter-spacing:0.036000px;}
.ls3{letter-spacing:0.060120px;}
.ls5c{letter-spacing:0.065880px;}
.lsc{letter-spacing:0.078120px;}
.ls3c{letter-spacing:0.102204px;}
.ls1{letter-spacing:0.120240px;}
.ls5f{letter-spacing:0.156240px;}
.ls6{letter-spacing:0.180360px;}
.lsb{letter-spacing:0.197640px;}
.ls16{letter-spacing:0.841680px;}
.ls37{letter-spacing:1.202400px;}
.ls26{letter-spacing:1.563120px;}
.ls49{letter-spacing:1.623240px;}
.ls19{letter-spacing:1.923840px;}
.ls1f{letter-spacing:2.284560px;}
.ls18{letter-spacing:3.366720px;}
.ls2{letter-spacing:3.727440px;}
.ls0{letter-spacing:4.088160px;}
.ls38{letter-spacing:4.448880px;}
.ls4c{letter-spacing:4.809600px;}
.ls5{letter-spacing:5.170320px;}
.ls50{letter-spacing:5.531040px;}
.ls2b{letter-spacing:6.252480px;}
.ls36{letter-spacing:6.613200px;}
.ls1d{letter-spacing:6.973920px;}
.ls39{letter-spacing:7.695360px;}
.ls27{letter-spacing:8.056080px;}
.ls4{letter-spacing:8.416800px;}
.ls21{letter-spacing:8.458884px;}
.ls33{letter-spacing:8.777520px;}
.ls4d{letter-spacing:9.138240px;}
.ls41{letter-spacing:9.498960px;}
.ls31{letter-spacing:9.859680px;}
.ls4e{letter-spacing:10.220400px;}
.ls1b{letter-spacing:10.941840px;}
.ls1a{letter-spacing:11.663280px;}
.ls30{letter-spacing:12.024000px;}
.ls2f{letter-spacing:12.384720px;}
.ls7{letter-spacing:12.745440px;}
.ls35{letter-spacing:13.466880px;}
.ls8{letter-spacing:13.827600px;}
.ls17{letter-spacing:15.270480px;}
.ls3d{letter-spacing:15.631200px;}
.ls12{letter-spacing:15.991920px;}
.ls20{letter-spacing:16.713360px;}
.ls29{letter-spacing:18.156240px;}
.ls13{letter-spacing:18.516960px;}
.ls2c{letter-spacing:18.877680px;}
.ls43{letter-spacing:19.238400px;}
.ls2a{letter-spacing:20.320560px;}
.ls22{letter-spacing:22.484880px;}
.ls28{letter-spacing:25.370640px;}
.ls3a{letter-spacing:26.813520px;}
.ls44{letter-spacing:27.895680px;}
.ls45{letter-spacing:30.060000px;}
.ls4f{letter-spacing:30.420720px;}
.ls34{letter-spacing:31.803480px;}
.ls2e{letter-spacing:33.967800px;}
.ls14{letter-spacing:35.410680px;}
.ls15{letter-spacing:40.460760px;}
.ls1c{letter-spacing:44.067960px;}
.ls3b{letter-spacing:52.003800px;}
.ls42{letter-spacing:62.103960px;}
.ls32{letter-spacing:73.226160px;}
.ls57{letter-spacing:848.954520px;}
.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;}
}
.ws8{word-spacing:-40.853160px;}
.ws4{word-spacing:-16.352640px;}
.ws3{word-spacing:-16.292520px;}
.ws39{word-spacing:-16.172280px;}
.ws38{word-spacing:-16.112160px;}
.ws7{word-spacing:-15.931800px;}
.ws24{word-spacing:-15.631200px;}
.ws14{word-spacing:-14.789520px;}
.ws17{word-spacing:-14.729400px;}
.ws25{word-spacing:-14.669280px;}
.ws2{word-spacing:-14.609160px;}
.ws6{word-spacing:-14.549040px;}
.ws5{word-spacing:-14.488920px;}
.ws18{word-spacing:-14.428800px;}
.ws16{word-spacing:-14.368680px;}
.ws13{word-spacing:-14.308560px;}
.ws20{word-spacing:-14.188320px;}
.ws15{word-spacing:-14.128200px;}
.ws37{word-spacing:-13.767480px;}
.ws2f{word-spacing:-13.226400px;}
.ws36{word-spacing:-12.685320px;}
.ws35{word-spacing:-12.384720px;}
.ws2d{word-spacing:-11.062080px;}
.ws2c{word-spacing:-8.712000px;}
.ws30{word-spacing:-8.056080px;}
.ws29{word-spacing:-1.623240px;}
.ws1c{word-spacing:-0.420840px;}
.ws1d{word-spacing:-0.360720px;}
.ws1f{word-spacing:-0.240480px;}
.wsb{word-spacing:-0.197640px;}
.wsf{word-spacing:-0.180360px;}
.ws3f{word-spacing:-0.156240px;}
.wse{word-spacing:-0.120240px;}
.wsc{word-spacing:-0.078120px;}
.ws3c{word-spacing:-0.065880px;}
.ws1{word-spacing:-0.060120px;}
.wsa{word-spacing:0.000000px;}
.ws0{word-spacing:0.060120px;}
.ws3d{word-spacing:0.065880px;}
.ws9{word-spacing:0.120240px;}
.ws3e{word-spacing:0.131760px;}
.ws1b{word-spacing:0.180360px;}
.ws10{word-spacing:0.240480px;}
.wsd{word-spacing:0.300600px;}
.ws1e{word-spacing:0.360720px;}
.ws11{word-spacing:0.420840px;}
.ws1a{word-spacing:0.480960px;}
.ws23{word-spacing:0.541080px;}
.ws22{word-spacing:0.901800px;}
.ws26{word-spacing:1.022040px;}
.ws19{word-spacing:1.262520px;}
.ws31{word-spacing:1.382760px;}
.ws21{word-spacing:1.623240px;}
.ws27{word-spacing:1.983960px;}
.ws3a{word-spacing:2.224440px;}
.ws2a{word-spacing:2.344680px;}
.ws28{word-spacing:2.585160px;}
.ws2b{word-spacing:2.705400px;}
.ws3b{word-spacing:3.066120px;}
.ws12{word-spacing:3.426840px;}
.ws33{word-spacing:4.509000px;}
.ws2e{word-spacing:6.072120px;}
.ws34{word-spacing:6.132240px;}
.ws32{word-spacing:7.394760px;}
._2d{margin-left:-15.691320px;}
._39{margin-left:-14.154408px;}
._3a{margin-left:-12.925872px;}
._36{margin-left:-11.913588px;}
._37{margin-left:-10.617192px;}
._35{margin-left:-8.847756px;}
._30{margin-left:-7.306488px;}
._31{margin-left:-5.753484px;}
._b{margin-left:-4.029624px;}
._a{margin-left:-2.699388px;}
._3{margin-left:-1.393200px;}
._0{width:1.052100px;}
._f{width:2.374740px;}
._4{width:3.749904px;}
._5{width:5.027940px;}
._18{width:6.356880px;}
._6{width:7.376724px;}
._12{width:8.512992px;}
._d{width:9.631224px;}
._c{width:10.779516px;}
._11{width:11.963880px;}
._14{width:12.985920px;}
._15{width:16.112160px;}
._17{width:17.350632px;}
._e{width:18.468864px;}
._8{width:19.581084px;}
._16{width:21.096108px;}
._38{width:22.113720px;}
._1e{width:23.212332px;}
._1d{width:24.330564px;}
._9{width:26.164224px;}
._29{width:27.667224px;}
._27{width:28.797480px;}
._10{width:30.540960px;}
._13{width:31.635144px;}
._22{width:32.753376px;}
._1f{width:33.829524px;}
._19{width:35.116092px;}
._21{width:36.192240px;}
._1b{width:37.562976px;}
._23{width:38.819484px;}
._7{width:41.296428px;}
._2a{width:42.973776px;}
._25{width:44.254332px;}
._1c{width:46.340496px;}
._3b{width:47.368548px;}
._34{width:48.829464px;}
._2e{width:52.244280px;}
._28{width:60.510780px;}
._24{width:69.300324px;}
._20{width:70.352424px;}
._2c{width:73.532772px;}
._33{width:97.717464px;}
._32{width:99.080604px;}
._1{width:285.539940px;}
._2f{width:567.953640px;}
._26{width:569.757240px;}
._2{width:570.839400px;}
._1a{width:572.643000px;}
._2b{width:574.747200px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:36.000000px;}
.fs0{font-size:60.120000px;}
.fs1{font-size:65.880000px;}
.fs2{font-size:78.120000px;}
.fs3{font-size:168.120000px;}
.fs4{font-size:285.120000px;}
.y0{bottom:0.000000px;}
.y5d{bottom:5.670000px;}
.y37{bottom:98.869590px;}
.y106{bottom:107.739990px;}
.yd7{bottom:108.995310px;}
.yc7{bottom:109.064700px;}
.y91{bottom:109.273050px;}
.yd5{bottom:109.558620px;}
.y36{bottom:118.754280px;}
.y5b{bottom:118.949670px;}
.y105{bottom:127.624680px;}
.yd6{bottom:128.880000px;}
.y10c{bottom:128.906730px;}
.yc6{bottom:128.949390px;}
.y90{bottom:129.157740px;}
.yd4{bottom:129.443310px;}
.y35{bottom:138.638970px;}
.y5a{bottom:138.834360px;}
.y104{bottom:147.509370px;}
.y10b{bottom:148.791420px;}
.yc5{bottom:148.834080px;}
.y8f{bottom:149.042430px;}
.yd3{bottom:149.328000px;}
.y34{bottom:158.523660px;}
.y59{bottom:158.719050px;}
.y103{bottom:167.394060px;}
.y10a{bottom:168.676110px;}
.yc4{bottom:168.718770px;}
.y8e{bottom:168.927120px;}
.yd2{bottom:169.212690px;}
.y33{bottom:178.408350px;}
.y58{bottom:178.603740px;}
.y102{bottom:187.278750px;}
.y109{bottom:188.470620px;}
.yc3{bottom:188.513280px;}
.y8d{bottom:188.721630px;}
.yd1{bottom:189.007200px;}
.y32{bottom:198.293040px;}
.y57{bottom:198.488430px;}
.y101{bottom:207.163440px;}
.y108{bottom:208.355310px;}
.yc2{bottom:208.397970px;}
.y8c{bottom:208.606320px;}
.yd0{bottom:208.891890px;}
.y31{bottom:218.087550px;}
.y56{bottom:218.282940px;}
.y100{bottom:226.957950px;}
.y107{bottom:228.240000px;}
.yc1{bottom:228.282660px;}
.y8b{bottom:228.491010px;}
.ycf{bottom:228.776580px;}
.y30{bottom:237.972240px;}
.y55{bottom:238.167630px;}
.yff{bottom:246.842640px;}
.yc0{bottom:248.167350px;}
.y8a{bottom:248.375700px;}
.yce{bottom:248.661270px;}
.y2f{bottom:257.856930px;}
.y54{bottom:258.052320px;}
.yfe{bottom:266.727330px;}
.ybf{bottom:268.052040px;}
.y89{bottom:268.260390px;}
.ycd{bottom:268.545960px;}
.y2e{bottom:277.741620px;}
.y53{bottom:277.937010px;}
.yfd{bottom:286.612020px;}
.ybe{bottom:287.936730px;}
.y88{bottom:288.145080px;}
.ycc{bottom:288.430650px;}
.y2d{bottom:297.626310px;}
.y52{bottom:297.821700px;}
.yfc{bottom:306.496710px;}
.ybd{bottom:307.731240px;}
.y87{bottom:307.939590px;}
.ycb{bottom:308.225160px;}
.y2c{bottom:317.511000px;}
.y51{bottom:317.706390px;}
.yfb{bottom:326.381400px;}
.ybc{bottom:327.615930px;}
.y86{bottom:327.824280px;}
.yca{bottom:328.109850px;}
.y2b{bottom:337.305510px;}
.y50{bottom:337.500900px;}
.yfa{bottom:346.175910px;}
.ybb{bottom:347.500620px;}
.y85{bottom:347.708970px;}
.yc9{bottom:347.994540px;}
.y2a{bottom:357.190200px;}
.y4f{bottom:357.385590px;}
.yf9{bottom:366.060600px;}
.yba{bottom:367.385310px;}
.y84{bottom:367.593660px;}
.yc8{bottom:367.879230px;}
.y29{bottom:377.074890px;}
.y4e{bottom:377.270280px;}
.yf8{bottom:385.945290px;}
.y83{bottom:387.478350px;}
.yb9{bottom:387.763920px;}
.y28{bottom:396.959580px;}
.y4d{bottom:397.154970px;}
.yf7{bottom:405.829980px;}
.y82{bottom:407.363040px;}
.yb8{bottom:407.648610px;}
.y27{bottom:416.844270px;}
.y4c{bottom:417.039660px;}
.yf6{bottom:425.714670px;}
.y81{bottom:427.157550px;}
.yb7{bottom:427.443120px;}
.y26{bottom:436.728960px;}
.y4b{bottom:436.924350px;}
.yf5{bottom:445.599360px;}
.y12e{bottom:446.882040px;}
.y80{bottom:447.042240px;}
.yb6{bottom:447.327810px;}
.y25{bottom:456.523470px;}
.y4a{bottom:456.718860px;}
.yf4{bottom:465.393870px;}
.y12d{bottom:466.766730px;}
.y7f{bottom:466.926930px;}
.yb5{bottom:467.212500px;}
.y24{bottom:476.408160px;}
.y49{bottom:476.603550px;}
.yf3{bottom:485.278560px;}
.y12c{bottom:486.651420px;}
.y7e{bottom:486.811620px;}
.yb4{bottom:487.097190px;}
.y23{bottom:496.292850px;}
.y48{bottom:496.488240px;}
.yf2{bottom:505.163250px;}
.y12b{bottom:506.536110px;}
.y7d{bottom:506.696310px;}
.yb3{bottom:506.981880px;}
.y22{bottom:516.177540px;}
.y47{bottom:516.372930px;}
.yf1{bottom:525.047940px;}
.y12a{bottom:526.420800px;}
.y7c{bottom:526.581000px;}
.yb2{bottom:526.866570px;}
.y21{bottom:536.062230px;}
.y46{bottom:536.257620px;}
.yf0{bottom:544.932630px;}
.y129{bottom:546.215310px;}
.y7b{bottom:546.375510px;}
.yb1{bottom:546.661080px;}
.y20{bottom:555.946920px;}
.y45{bottom:556.142310px;}
.yef{bottom:564.817320px;}
.y128{bottom:566.100000px;}
.y7a{bottom:566.260200px;}
.yb0{bottom:566.545770px;}
.y1f{bottom:575.741430px;}
.y44{bottom:575.936820px;}
.yee{bottom:584.611830px;}
.y79{bottom:586.144890px;}
.yaf{bottom:586.430460px;}
.y127{bottom:587.250000px;}
.y1e{bottom:595.626120px;}
.y43{bottom:595.821510px;}
.yed{bottom:604.496520px;}
.y78{bottom:606.029580px;}
.yae{bottom:606.315150px;}
.y126{bottom:612.180000px;}
.y1d{bottom:615.510810px;}
.y42{bottom:615.706200px;}
.yec{bottom:624.381210px;}
.y77{bottom:625.914270px;}
.yad{bottom:626.199840px;}
.y125{bottom:634.050000px;}
.y1c{bottom:635.395500px;}
.y41{bottom:635.590890px;}
.yeb{bottom:644.265900px;}
.y76{bottom:645.798960px;}
.yac{bottom:646.084530px;}
.y1b{bottom:655.280190px;}
.y40{bottom:655.475580px;}
.y124{bottom:655.920000px;}
.yea{bottom:664.150590px;}
.y75{bottom:665.593470px;}
.yab{bottom:665.879040px;}
.y1a{bottom:675.164880px;}
.y3f{bottom:675.360270px;}
.y123{bottom:677.790000px;}
.ye9{bottom:684.035280px;}
.y74{bottom:685.478160px;}
.yaa{bottom:685.763730px;}
.y19{bottom:694.959390px;}
.y3e{bottom:695.154780px;}
.y122{bottom:699.655680px;}
.ye8{bottom:703.829790px;}
.y73{bottom:705.362850px;}
.ya9{bottom:705.648420px;}
.y18{bottom:714.844080px;}
.y3d{bottom:715.039470px;}
.y121{bottom:721.527840px;}
.ye7{bottom:723.714480px;}
.y72{bottom:725.247540px;}
.ya8{bottom:725.533110px;}
.y17{bottom:734.728770px;}
.y3c{bottom:734.924160px;}
.y120{bottom:743.400000px;}
.ye6{bottom:743.599170px;}
.y71{bottom:745.132230px;}
.ya7{bottom:745.417800px;}
.y16{bottom:754.613460px;}
.y3b{bottom:754.808850px;}
.ye5{bottom:763.483860px;}
.y70{bottom:765.016920px;}
.ya6{bottom:765.302490px;}
.y15{bottom:774.498150px;}
.y3a{bottom:774.693540px;}
.ye4{bottom:783.368550px;}
.y6f{bottom:784.811430px;}
.ya5{bottom:785.097000px;}
.y5c{bottom:790.020000px;}
.y14{bottom:794.382840px;}
.y39{bottom:794.578230px;}
.ye3{bottom:803.253240px;}
.y6e{bottom:804.696120px;}
.y11f{bottom:804.801330px;}
.ya4{bottom:804.981690px;}
.y13{bottom:814.177350px;}
.y38{bottom:814.372740px;}
.ye2{bottom:823.047750px;}
.y6d{bottom:824.580810px;}
.y11e{bottom:824.686020px;}
.ya3{bottom:824.866380px;}
.y12{bottom:834.062040px;}
.ye1{bottom:842.932440px;}
.y6c{bottom:844.465500px;}
.y11d{bottom:844.570710px;}
.ya2{bottom:844.751070px;}
.y11{bottom:853.946730px;}
.ye0{bottom:862.817130px;}
.y6b{bottom:864.350190px;}
.y11c{bottom:864.455400px;}
.ya1{bottom:864.635760px;}
.y10{bottom:873.831420px;}
.ydf{bottom:882.701820px;}
.y6a{bottom:884.234880px;}
.y11b{bottom:884.340090px;}
.ya0{bottom:884.520450px;}
.yf{bottom:893.716110px;}
.yde{bottom:902.586510px;}
.y69{bottom:904.029390px;}
.y11a{bottom:904.134600px;}
.y9f{bottom:904.314960px;}
.ye{bottom:913.600800px;}
.ydd{bottom:922.471200px;}
.y68{bottom:923.914080px;}
.y119{bottom:924.019290px;}
.y9e{bottom:924.199650px;}
.yd{bottom:933.395310px;}
.ydc{bottom:942.265710px;}
.y67{bottom:943.798770px;}
.y118{bottom:943.903980px;}
.y9d{bottom:944.084340px;}
.yc{bottom:953.280000px;}
.ydb{bottom:962.150400px;}
.y66{bottom:963.683460px;}
.y117{bottom:963.788670px;}
.y9c{bottom:963.969030px;}
.yb{bottom:974.430000px;}
.yda{bottom:982.035090px;}
.y65{bottom:983.568150px;}
.y116{bottom:983.673360px;}
.y9b{bottom:983.853720px;}
.ya{bottom:999.353520px;}
.yd9{bottom:1001.919780px;}
.y64{bottom:1003.452840px;}
.y115{bottom:1003.558050px;}
.y9a{bottom:1003.738410px;}
.y9{bottom:1021.225680px;}
.yd8{bottom:1021.804470px;}
.y63{bottom:1023.247350px;}
.y114{bottom:1023.352560px;}
.y99{bottom:1023.532920px;}
.y8{bottom:1043.097840px;}
.y62{bottom:1043.132040px;}
.y113{bottom:1043.237250px;}
.y98{bottom:1043.417610px;}
.y61{bottom:1063.016730px;}
.y112{bottom:1063.121940px;}
.y97{bottom:1063.302300px;}
.y7{bottom:1064.970000px;}
.y60{bottom:1082.901420px;}
.y111{bottom:1083.006630px;}
.y96{bottom:1083.186990px;}
.y6{bottom:1086.480000px;}
.y5f{bottom:1102.786110px;}
.y110{bottom:1102.891320px;}
.y95{bottom:1103.071680px;}
.y4{bottom:1106.550000px;}
.y5{bottom:1116.720000px;}
.y5e{bottom:1122.670800px;}
.y10f{bottom:1122.776010px;}
.y94{bottom:1122.956370px;}
.y3{bottom:1142.465310px;}
.y10e{bottom:1142.570520px;}
.y93{bottom:1142.750880px;}
.y2{bottom:1162.350000px;}
.y10d{bottom:1162.455210px;}
.y92{bottom:1162.635570px;}
.y1{bottom:1194.030000px;}
.h4{height:31.590000px;}
.hc{height:39.690000px;}
.h2{height:42.271875px;}
.h6{height:45.090000px;}
.ha{height:45.811440px;}
.hf{height:49.410000px;}
.h10{height:49.541760px;}
.h8{height:50.200560px;}
.h3{height:52.973736px;}
.hb{height:53.839464px;}
.h5{height:58.049064px;}
.h7{height:58.997736px;}
.he{height:59.105976px;}
.h9{height:69.959064px;}
.hd{height:195.840000px;}
.h0{height:1262.970000px;}
.h1{height:1263.000000px;}
.w3{width:30.150000px;}
.w2{width:50.310000px;}
.w0{width:893.070000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:42.210000px;}
.x1{left:85.050000px;}
.x11{left:88.200000px;}
.x7{left:100.522170px;}
.xa{left:106.384950px;}
.x8{left:111.227670px;}
.xb{left:115.192530px;}
.x12{left:156.420000px;}
.x9{left:178.200000px;}
.xe{left:208.568970px;}
.x13{left:214.470000px;}
.x6{left:309.510000px;}
.x10{left:319.320000px;}
.x3{left:326.160000px;}
.x5{left:384.570000px;}
.xf{left:446.490000px;}
.x2{left:457.110000px;}
.xd{left:473.056830px;}
.xc{left:494.384400px;}
@media print{
.v1{vertical-align:-16.000000pt;}
.v3{vertical-align:-1.756160pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:5.450880pt;}
.v2{vertical-align:16.803840pt;}
.v4{vertical-align:18.560000pt;}
.ls53{letter-spacing:-6.573120pt;}
.ls55{letter-spacing:-5.450880pt;}
.ls56{letter-spacing:-4.008000pt;}
.ls54{letter-spacing:-3.152960pt;}
.ls11{letter-spacing:-3.046080pt;}
.ls5b{letter-spacing:-2.725440pt;}
.ls4b{letter-spacing:-2.404800pt;}
.ls48{letter-spacing:-2.297920pt;}
.ls4a{letter-spacing:-2.084160pt;}
.ls58{letter-spacing:-1.977280pt;}
.ls47{letter-spacing:-1.763520pt;}
.ls59{letter-spacing:-1.710080pt;}
.ls3e{letter-spacing:-1.442880pt;}
.ls52{letter-spacing:-1.229120pt;}
.ls23{letter-spacing:-1.122240pt;}
.ls46{letter-spacing:-0.908480pt;}
.ls3f{letter-spacing:-0.801600pt;}
.ls5a{letter-spacing:-0.748160pt;}
.ls40{letter-spacing:-0.480960pt;}
.ls24{letter-spacing:-0.427520pt;}
.ls10{letter-spacing:-0.374080pt;}
.ls2d{letter-spacing:-0.320640pt;}
.lsd{letter-spacing:-0.267200pt;}
.lsf{letter-spacing:-0.213760pt;}
.ls25{letter-spacing:-0.160320pt;}
.ls5e{letter-spacing:-0.117120pt;}
.ls9{letter-spacing:-0.106880pt;}
.ls5d{letter-spacing:-0.058560pt;}
.lse{letter-spacing:-0.053440pt;}
.ls51{letter-spacing:-0.032000pt;}
.lsa{letter-spacing:0.000000pt;}
.ls1e{letter-spacing:0.032000pt;}
.ls3{letter-spacing:0.053440pt;}
.ls5c{letter-spacing:0.058560pt;}
.lsc{letter-spacing:0.069440pt;}
.ls3c{letter-spacing:0.090848pt;}
.ls1{letter-spacing:0.106880pt;}
.ls5f{letter-spacing:0.138880pt;}
.ls6{letter-spacing:0.160320pt;}
.lsb{letter-spacing:0.175680pt;}
.ls16{letter-spacing:0.748160pt;}
.ls37{letter-spacing:1.068800pt;}
.ls26{letter-spacing:1.389440pt;}
.ls49{letter-spacing:1.442880pt;}
.ls19{letter-spacing:1.710080pt;}
.ls1f{letter-spacing:2.030720pt;}
.ls18{letter-spacing:2.992640pt;}
.ls2{letter-spacing:3.313280pt;}
.ls0{letter-spacing:3.633920pt;}
.ls38{letter-spacing:3.954560pt;}
.ls4c{letter-spacing:4.275200pt;}
.ls5{letter-spacing:4.595840pt;}
.ls50{letter-spacing:4.916480pt;}
.ls2b{letter-spacing:5.557760pt;}
.ls36{letter-spacing:5.878400pt;}
.ls1d{letter-spacing:6.199040pt;}
.ls39{letter-spacing:6.840320pt;}
.ls27{letter-spacing:7.160960pt;}
.ls4{letter-spacing:7.481600pt;}
.ls21{letter-spacing:7.519008pt;}
.ls33{letter-spacing:7.802240pt;}
.ls4d{letter-spacing:8.122880pt;}
.ls41{letter-spacing:8.443520pt;}
.ls31{letter-spacing:8.764160pt;}
.ls4e{letter-spacing:9.084800pt;}
.ls1b{letter-spacing:9.726080pt;}
.ls1a{letter-spacing:10.367360pt;}
.ls30{letter-spacing:10.688000pt;}
.ls2f{letter-spacing:11.008640pt;}
.ls7{letter-spacing:11.329280pt;}
.ls35{letter-spacing:11.970560pt;}
.ls8{letter-spacing:12.291200pt;}
.ls17{letter-spacing:13.573760pt;}
.ls3d{letter-spacing:13.894400pt;}
.ls12{letter-spacing:14.215040pt;}
.ls20{letter-spacing:14.856320pt;}
.ls29{letter-spacing:16.138880pt;}
.ls13{letter-spacing:16.459520pt;}
.ls2c{letter-spacing:16.780160pt;}
.ls43{letter-spacing:17.100800pt;}
.ls2a{letter-spacing:18.062720pt;}
.ls22{letter-spacing:19.986560pt;}
.ls28{letter-spacing:22.551680pt;}
.ls3a{letter-spacing:23.834240pt;}
.ls44{letter-spacing:24.796160pt;}
.ls45{letter-spacing:26.720000pt;}
.ls4f{letter-spacing:27.040640pt;}
.ls34{letter-spacing:28.269760pt;}
.ls2e{letter-spacing:30.193600pt;}
.ls14{letter-spacing:31.476160pt;}
.ls15{letter-spacing:35.965120pt;}
.ls1c{letter-spacing:39.171520pt;}
.ls3b{letter-spacing:46.225600pt;}
.ls42{letter-spacing:55.203520pt;}
.ls32{letter-spacing:65.089920pt;}
.ls57{letter-spacing:754.626240pt;}
.ws8{word-spacing:-36.313920pt;}
.ws4{word-spacing:-14.535680pt;}
.ws3{word-spacing:-14.482240pt;}
.ws39{word-spacing:-14.375360pt;}
.ws38{word-spacing:-14.321920pt;}
.ws7{word-spacing:-14.161600pt;}
.ws24{word-spacing:-13.894400pt;}
.ws14{word-spacing:-13.146240pt;}
.ws17{word-spacing:-13.092800pt;}
.ws25{word-spacing:-13.039360pt;}
.ws2{word-spacing:-12.985920pt;}
.ws6{word-spacing:-12.932480pt;}
.ws5{word-spacing:-12.879040pt;}
.ws18{word-spacing:-12.825600pt;}
.ws16{word-spacing:-12.772160pt;}
.ws13{word-spacing:-12.718720pt;}
.ws20{word-spacing:-12.611840pt;}
.ws15{word-spacing:-12.558400pt;}
.ws37{word-spacing:-12.237760pt;}
.ws2f{word-spacing:-11.756800pt;}
.ws36{word-spacing:-11.275840pt;}
.ws35{word-spacing:-11.008640pt;}
.ws2d{word-spacing:-9.832960pt;}
.ws2c{word-spacing:-7.744000pt;}
.ws30{word-spacing:-7.160960pt;}
.ws29{word-spacing:-1.442880pt;}
.ws1c{word-spacing:-0.374080pt;}
.ws1d{word-spacing:-0.320640pt;}
.ws1f{word-spacing:-0.213760pt;}
.wsb{word-spacing:-0.175680pt;}
.wsf{word-spacing:-0.160320pt;}
.ws3f{word-spacing:-0.138880pt;}
.wse{word-spacing:-0.106880pt;}
.wsc{word-spacing:-0.069440pt;}
.ws3c{word-spacing:-0.058560pt;}
.ws1{word-spacing:-0.053440pt;}
.wsa{word-spacing:0.000000pt;}
.ws0{word-spacing:0.053440pt;}
.ws3d{word-spacing:0.058560pt;}
.ws9{word-spacing:0.106880pt;}
.ws3e{word-spacing:0.117120pt;}
.ws1b{word-spacing:0.160320pt;}
.ws10{word-spacing:0.213760pt;}
.wsd{word-spacing:0.267200pt;}
.ws1e{word-spacing:0.320640pt;}
.ws11{word-spacing:0.374080pt;}
.ws1a{word-spacing:0.427520pt;}
.ws23{word-spacing:0.480960pt;}
.ws22{word-spacing:0.801600pt;}
.ws26{word-spacing:0.908480pt;}
.ws19{word-spacing:1.122240pt;}
.ws31{word-spacing:1.229120pt;}
.ws21{word-spacing:1.442880pt;}
.ws27{word-spacing:1.763520pt;}
.ws3a{word-spacing:1.977280pt;}
.ws2a{word-spacing:2.084160pt;}
.ws28{word-spacing:2.297920pt;}
.ws2b{word-spacing:2.404800pt;}
.ws3b{word-spacing:2.725440pt;}
.ws12{word-spacing:3.046080pt;}
.ws33{word-spacing:4.008000pt;}
.ws2e{word-spacing:5.397440pt;}
.ws34{word-spacing:5.450880pt;}
.ws32{word-spacing:6.573120pt;}
._2d{margin-left:-13.947840pt;}
._39{margin-left:-12.581696pt;}
._3a{margin-left:-11.489664pt;}
._36{margin-left:-10.589856pt;}
._37{margin-left:-9.437504pt;}
._35{margin-left:-7.864672pt;}
._30{margin-left:-6.494656pt;}
._31{margin-left:-5.114208pt;}
._b{margin-left:-3.581888pt;}
._a{margin-left:-2.399456pt;}
._3{margin-left:-1.238400pt;}
._0{width:0.935200pt;}
._f{width:2.110880pt;}
._4{width:3.333248pt;}
._5{width:4.469280pt;}
._18{width:5.650560pt;}
._6{width:6.557088pt;}
._12{width:7.567104pt;}
._d{width:8.561088pt;}
._c{width:9.581792pt;}
._11{width:10.634560pt;}
._14{width:11.543040pt;}
._15{width:14.321920pt;}
._17{width:15.422784pt;}
._e{width:16.416768pt;}
._8{width:17.405408pt;}
._16{width:18.752096pt;}
._38{width:19.656640pt;}
._1e{width:20.633184pt;}
._1d{width:21.627168pt;}
._9{width:23.257088pt;}
._29{width:24.593088pt;}
._27{width:25.597760pt;}
._10{width:27.147520pt;}
._13{width:28.120128pt;}
._22{width:29.114112pt;}
._1f{width:30.070688pt;}
._19{width:31.214304pt;}
._21{width:32.170880pt;}
._1b{width:33.389312pt;}
._23{width:34.506208pt;}
._7{width:36.707936pt;}
._2a{width:38.198912pt;}
._25{width:39.337184pt;}
._1c{width:41.191552pt;}
._3b{width:42.105376pt;}
._34{width:43.403968pt;}
._2e{width:46.439360pt;}
._28{width:53.787360pt;}
._24{width:61.600288pt;}
._20{width:62.535488pt;}
._2c{width:65.362464pt;}
._33{width:86.859968pt;}
._32{width:88.071648pt;}
._1{width:253.813280pt;}
._2f{width:504.847680pt;}
._26{width:506.450880pt;}
._2{width:507.412800pt;}
._1a{width:509.016000pt;}
._2b{width:510.886400pt;}
.fs5{font-size:32.000000pt;}
.fs0{font-size:53.440000pt;}
.fs1{font-size:58.560000pt;}
.fs2{font-size:69.440000pt;}
.fs3{font-size:149.440000pt;}
.fs4{font-size:253.440000pt;}
.y0{bottom:0.000000pt;}
.y5d{bottom:5.040000pt;}
.y37{bottom:87.884080pt;}
.y106{bottom:95.768880pt;}
.yd7{bottom:96.884720pt;}
.yc7{bottom:96.946400pt;}
.y91{bottom:97.131600pt;}
.yd5{bottom:97.385440pt;}
.y36{bottom:105.559360pt;}
.y5b{bottom:105.733040pt;}
.y105{bottom:113.444160pt;}
.yd6{bottom:114.560000pt;}
.y10c{bottom:114.583760pt;}
.yc6{bottom:114.621680pt;}
.y90{bottom:114.806880pt;}
.yd4{bottom:115.060720pt;}
.y35{bottom:123.234640pt;}
.y5a{bottom:123.408320pt;}
.y104{bottom:131.119440pt;}
.y10b{bottom:132.259040pt;}
.yc5{bottom:132.296960pt;}
.y8f{bottom:132.482160pt;}
.yd3{bottom:132.736000pt;}
.y34{bottom:140.909920pt;}
.y59{bottom:141.083600pt;}
.y103{bottom:148.794720pt;}
.y10a{bottom:149.934320pt;}
.yc4{bottom:149.972240pt;}
.y8e{bottom:150.157440pt;}
.yd2{bottom:150.411280pt;}
.y33{bottom:158.585200pt;}
.y58{bottom:158.758880pt;}
.y102{bottom:166.470000pt;}
.y109{bottom:167.529440pt;}
.yc3{bottom:167.567360pt;}
.y8d{bottom:167.752560pt;}
.yd1{bottom:168.006400pt;}
.y32{bottom:176.260480pt;}
.y57{bottom:176.434160pt;}
.y101{bottom:184.145280pt;}
.y108{bottom:185.204720pt;}
.yc2{bottom:185.242640pt;}
.y8c{bottom:185.427840pt;}
.yd0{bottom:185.681680pt;}
.y31{bottom:193.855600pt;}
.y56{bottom:194.029280pt;}
.y100{bottom:201.740400pt;}
.y107{bottom:202.880000pt;}
.yc1{bottom:202.917920pt;}
.y8b{bottom:203.103120pt;}
.ycf{bottom:203.356960pt;}
.y30{bottom:211.530880pt;}
.y55{bottom:211.704560pt;}
.yff{bottom:219.415680pt;}
.yc0{bottom:220.593200pt;}
.y8a{bottom:220.778400pt;}
.yce{bottom:221.032240pt;}
.y2f{bottom:229.206160pt;}
.y54{bottom:229.379840pt;}
.yfe{bottom:237.090960pt;}
.ybf{bottom:238.268480pt;}
.y89{bottom:238.453680pt;}
.ycd{bottom:238.707520pt;}
.y2e{bottom:246.881440pt;}
.y53{bottom:247.055120pt;}
.yfd{bottom:254.766240pt;}
.ybe{bottom:255.943760pt;}
.y88{bottom:256.128960pt;}
.ycc{bottom:256.382800pt;}
.y2d{bottom:264.556720pt;}
.y52{bottom:264.730400pt;}
.yfc{bottom:272.441520pt;}
.ybd{bottom:273.538880pt;}
.y87{bottom:273.724080pt;}
.ycb{bottom:273.977920pt;}
.y2c{bottom:282.232000pt;}
.y51{bottom:282.405680pt;}
.yfb{bottom:290.116800pt;}
.ybc{bottom:291.214160pt;}
.y86{bottom:291.399360pt;}
.yca{bottom:291.653200pt;}
.y2b{bottom:299.827120pt;}
.y50{bottom:300.000800pt;}
.yfa{bottom:307.711920pt;}
.ybb{bottom:308.889440pt;}
.y85{bottom:309.074640pt;}
.yc9{bottom:309.328480pt;}
.y2a{bottom:317.502400pt;}
.y4f{bottom:317.676080pt;}
.yf9{bottom:325.387200pt;}
.yba{bottom:326.564720pt;}
.y84{bottom:326.749920pt;}
.yc8{bottom:327.003760pt;}
.y29{bottom:335.177680pt;}
.y4e{bottom:335.351360pt;}
.yf8{bottom:343.062480pt;}
.y83{bottom:344.425200pt;}
.yb9{bottom:344.679040pt;}
.y28{bottom:352.852960pt;}
.y4d{bottom:353.026640pt;}
.yf7{bottom:360.737760pt;}
.y82{bottom:362.100480pt;}
.yb8{bottom:362.354320pt;}
.y27{bottom:370.528240pt;}
.y4c{bottom:370.701920pt;}
.yf6{bottom:378.413040pt;}
.y81{bottom:379.695600pt;}
.yb7{bottom:379.949440pt;}
.y26{bottom:388.203520pt;}
.y4b{bottom:388.377200pt;}
.yf5{bottom:396.088320pt;}
.y12e{bottom:397.228480pt;}
.y80{bottom:397.370880pt;}
.yb6{bottom:397.624720pt;}
.y25{bottom:405.798640pt;}
.y4a{bottom:405.972320pt;}
.yf4{bottom:413.683440pt;}
.y12d{bottom:414.903760pt;}
.y7f{bottom:415.046160pt;}
.yb5{bottom:415.300000pt;}
.y24{bottom:423.473920pt;}
.y49{bottom:423.647600pt;}
.yf3{bottom:431.358720pt;}
.y12c{bottom:432.579040pt;}
.y7e{bottom:432.721440pt;}
.yb4{bottom:432.975280pt;}
.y23{bottom:441.149200pt;}
.y48{bottom:441.322880pt;}
.yf2{bottom:449.034000pt;}
.y12b{bottom:450.254320pt;}
.y7d{bottom:450.396720pt;}
.yb3{bottom:450.650560pt;}
.y22{bottom:458.824480pt;}
.y47{bottom:458.998160pt;}
.yf1{bottom:466.709280pt;}
.y12a{bottom:467.929600pt;}
.y7c{bottom:468.072000pt;}
.yb2{bottom:468.325840pt;}
.y21{bottom:476.499760pt;}
.y46{bottom:476.673440pt;}
.yf0{bottom:484.384560pt;}
.y129{bottom:485.524720pt;}
.y7b{bottom:485.667120pt;}
.yb1{bottom:485.920960pt;}
.y20{bottom:494.175040pt;}
.y45{bottom:494.348720pt;}
.yef{bottom:502.059840pt;}
.y128{bottom:503.200000pt;}
.y7a{bottom:503.342400pt;}
.yb0{bottom:503.596240pt;}
.y1f{bottom:511.770160pt;}
.y44{bottom:511.943840pt;}
.yee{bottom:519.654960pt;}
.y79{bottom:521.017680pt;}
.yaf{bottom:521.271520pt;}
.y127{bottom:522.000000pt;}
.y1e{bottom:529.445440pt;}
.y43{bottom:529.619120pt;}
.yed{bottom:537.330240pt;}
.y78{bottom:538.692960pt;}
.yae{bottom:538.946800pt;}
.y126{bottom:544.160000pt;}
.y1d{bottom:547.120720pt;}
.y42{bottom:547.294400pt;}
.yec{bottom:555.005520pt;}
.y77{bottom:556.368240pt;}
.yad{bottom:556.622080pt;}
.y125{bottom:563.600000pt;}
.y1c{bottom:564.796000pt;}
.y41{bottom:564.969680pt;}
.yeb{bottom:572.680800pt;}
.y76{bottom:574.043520pt;}
.yac{bottom:574.297360pt;}
.y1b{bottom:582.471280pt;}
.y40{bottom:582.644960pt;}
.y124{bottom:583.040000pt;}
.yea{bottom:590.356080pt;}
.y75{bottom:591.638640pt;}
.yab{bottom:591.892480pt;}
.y1a{bottom:600.146560pt;}
.y3f{bottom:600.320240pt;}
.y123{bottom:602.480000pt;}
.ye9{bottom:608.031360pt;}
.y74{bottom:609.313920pt;}
.yaa{bottom:609.567760pt;}
.y19{bottom:617.741680pt;}
.y3e{bottom:617.915360pt;}
.y122{bottom:621.916160pt;}
.ye8{bottom:625.626480pt;}
.y73{bottom:626.989200pt;}
.ya9{bottom:627.243040pt;}
.y18{bottom:635.416960pt;}
.y3d{bottom:635.590640pt;}
.y121{bottom:641.358080pt;}
.ye7{bottom:643.301760pt;}
.y72{bottom:644.664480pt;}
.ya8{bottom:644.918320pt;}
.y17{bottom:653.092240pt;}
.y3c{bottom:653.265920pt;}
.y120{bottom:660.800000pt;}
.ye6{bottom:660.977040pt;}
.y71{bottom:662.339760pt;}
.ya7{bottom:662.593600pt;}
.y16{bottom:670.767520pt;}
.y3b{bottom:670.941200pt;}
.ye5{bottom:678.652320pt;}
.y70{bottom:680.015040pt;}
.ya6{bottom:680.268880pt;}
.y15{bottom:688.442800pt;}
.y3a{bottom:688.616480pt;}
.ye4{bottom:696.327600pt;}
.y6f{bottom:697.610160pt;}
.ya5{bottom:697.864000pt;}
.y5c{bottom:702.240000pt;}
.y14{bottom:706.118080pt;}
.y39{bottom:706.291760pt;}
.ye3{bottom:714.002880pt;}
.y6e{bottom:715.285440pt;}
.y11f{bottom:715.378960pt;}
.ya4{bottom:715.539280pt;}
.y13{bottom:723.713200pt;}
.y38{bottom:723.886880pt;}
.ye2{bottom:731.598000pt;}
.y6d{bottom:732.960720pt;}
.y11e{bottom:733.054240pt;}
.ya3{bottom:733.214560pt;}
.y12{bottom:741.388480pt;}
.ye1{bottom:749.273280pt;}
.y6c{bottom:750.636000pt;}
.y11d{bottom:750.729520pt;}
.ya2{bottom:750.889840pt;}
.y11{bottom:759.063760pt;}
.ye0{bottom:766.948560pt;}
.y6b{bottom:768.311280pt;}
.y11c{bottom:768.404800pt;}
.ya1{bottom:768.565120pt;}
.y10{bottom:776.739040pt;}
.ydf{bottom:784.623840pt;}
.y6a{bottom:785.986560pt;}
.y11b{bottom:786.080080pt;}
.ya0{bottom:786.240400pt;}
.yf{bottom:794.414320pt;}
.yde{bottom:802.299120pt;}
.y69{bottom:803.581680pt;}
.y11a{bottom:803.675200pt;}
.y9f{bottom:803.835520pt;}
.ye{bottom:812.089600pt;}
.ydd{bottom:819.974400pt;}
.y68{bottom:821.256960pt;}
.y119{bottom:821.350480pt;}
.y9e{bottom:821.510800pt;}
.yd{bottom:829.684720pt;}
.ydc{bottom:837.569520pt;}
.y67{bottom:838.932240pt;}
.y118{bottom:839.025760pt;}
.y9d{bottom:839.186080pt;}
.yc{bottom:847.360000pt;}
.ydb{bottom:855.244800pt;}
.y66{bottom:856.607520pt;}
.y117{bottom:856.701040pt;}
.y9c{bottom:856.861360pt;}
.yb{bottom:866.160000pt;}
.yda{bottom:872.920080pt;}
.y65{bottom:874.282800pt;}
.y116{bottom:874.376320pt;}
.y9b{bottom:874.536640pt;}
.ya{bottom:888.314240pt;}
.yd9{bottom:890.595360pt;}
.y64{bottom:891.958080pt;}
.y115{bottom:892.051600pt;}
.y9a{bottom:892.211920pt;}
.y9{bottom:907.756160pt;}
.yd8{bottom:908.270640pt;}
.y63{bottom:909.553200pt;}
.y114{bottom:909.646720pt;}
.y99{bottom:909.807040pt;}
.y8{bottom:927.198080pt;}
.y62{bottom:927.228480pt;}
.y113{bottom:927.322000pt;}
.y98{bottom:927.482320pt;}
.y61{bottom:944.903760pt;}
.y112{bottom:944.997280pt;}
.y97{bottom:945.157600pt;}
.y7{bottom:946.640000pt;}
.y60{bottom:962.579040pt;}
.y111{bottom:962.672560pt;}
.y96{bottom:962.832880pt;}
.y6{bottom:965.760000pt;}
.y5f{bottom:980.254320pt;}
.y110{bottom:980.347840pt;}
.y95{bottom:980.508160pt;}
.y4{bottom:983.600000pt;}
.y5{bottom:992.640000pt;}
.y5e{bottom:997.929600pt;}
.y10f{bottom:998.023120pt;}
.y94{bottom:998.183440pt;}
.y3{bottom:1015.524720pt;}
.y10e{bottom:1015.618240pt;}
.y93{bottom:1015.778560pt;}
.y2{bottom:1033.200000pt;}
.y10d{bottom:1033.293520pt;}
.y92{bottom:1033.453840pt;}
.y1{bottom:1061.360000pt;}
.h4{height:28.080000pt;}
.hc{height:35.280000pt;}
.h2{height:37.575000pt;}
.h6{height:40.080000pt;}
.ha{height:40.721280pt;}
.hf{height:43.920000pt;}
.h10{height:44.037120pt;}
.h8{height:44.622720pt;}
.h3{height:47.087765pt;}
.hb{height:47.857301pt;}
.h5{height:51.599168pt;}
.h7{height:52.442432pt;}
.he{height:52.538645pt;}
.h9{height:62.185835pt;}
.hd{height:174.080000pt;}
.h0{height:1122.640000pt;}
.h1{height:1122.666667pt;}
.w3{width:26.800000pt;}
.w2{width:44.720000pt;}
.w0{width:793.840000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:37.520000pt;}
.x1{left:75.600000pt;}
.x11{left:78.400000pt;}
.x7{left:89.353040pt;}
.xa{left:94.564400pt;}
.x8{left:98.869040pt;}
.xb{left:102.393360pt;}
.x12{left:139.040000pt;}
.x9{left:158.400000pt;}
.xe{left:185.394640pt;}
.x13{left:190.640000pt;}
.x6{left:275.120000pt;}
.x10{left:283.840000pt;}
.x3{left:289.920000pt;}
.x5{left:341.840000pt;}
.xf{left:396.880000pt;}
.x2{left:406.320000pt;}
.xd{left:420.494960pt;}
.xc{left:439.452800pt;}
}




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