
    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_614652e92ef6a264e6f07ee0.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.960589;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_29c20e7cd506426ff52e4a8b.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.959180;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_7dac31807f5914c4ced4774a.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.954102;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_7d80d6ce28d9b6e699216512.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_1c6fa3f0307a2b0e2641105b.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;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_86cf701c8cf184fe7781158d.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.432129;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_e8793173adac89bb37bda222.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.432129;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_3ae11e4fe220662ae0367dd6.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.107422;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_2c8655979feb5ed9f15120a2.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.853027;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_122337fed187b4e726cbac38.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.401855;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v7{vertical-align:-82.800000px;}
.v6{vertical-align:-66.936000px;}
.v2{vertical-align:-23.760000px;}
.v4{vertical-align:-20.880000px;}
.v5{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.ls14{letter-spacing:-1.584000px;}
.ls1a{letter-spacing:-1.296000px;}
.ls24{letter-spacing:-1.008000px;}
.ls16{letter-spacing:-0.936000px;}
.ls4{letter-spacing:-0.900000px;}
.ls1d{letter-spacing:-0.864000px;}
.ls44{letter-spacing:-0.720000px;}
.ls22{letter-spacing:-0.672000px;}
.ls9{letter-spacing:-0.576000px;}
.ls3a{letter-spacing:-0.504000px;}
.ls49{letter-spacing:-0.450600px;}
.lsa{letter-spacing:-0.432000px;}
.ls21{letter-spacing:-0.273000px;}
.lsf{letter-spacing:-0.216000px;}
.ls5{letter-spacing:-0.181200px;}
.ls8{letter-spacing:-0.144000px;}
.ls26{letter-spacing:-0.109200px;}
.ls4b{letter-spacing:-0.092400px;}
.ls10{letter-spacing:-0.072000px;}
.ls2{letter-spacing:0.000000px;}
.ls37{letter-spacing:0.036000px;}
.ls20{letter-spacing:0.045360px;}
.ls38{letter-spacing:0.048000px;}
.ls40{letter-spacing:0.072000px;}
.ls39{letter-spacing:0.120000px;}
.ls7{letter-spacing:0.144000px;}
.ls1{letter-spacing:0.191848px;}
.ls0{letter-spacing:0.211213px;}
.ls13{letter-spacing:0.216000px;}
.ls3{letter-spacing:0.288000px;}
.ls23{letter-spacing:0.336000px;}
.ls1c{letter-spacing:0.360000px;}
.ls29{letter-spacing:0.504000px;}
.ls2a{letter-spacing:0.576000px;}
.ls12{letter-spacing:0.648000px;}
.ls17{letter-spacing:0.864000px;}
.ls19{letter-spacing:1.044000px;}
.ls45{letter-spacing:1.224000px;}
.ls33{letter-spacing:1.584000px;}
.ls1b{letter-spacing:1.709280px;}
.ls1e{letter-spacing:1.872000px;}
.ls11{letter-spacing:2.304000px;}
.ls6{letter-spacing:2.592000px;}
.ls31{letter-spacing:3.024000px;}
.ls3d{letter-spacing:3.144000px;}
.ls3c{letter-spacing:3.204000px;}
.ls3f{letter-spacing:3.744000px;}
.ls2b{letter-spacing:4.464000px;}
.ls30{letter-spacing:5.184000px;}
.lsd{letter-spacing:5.904000px;}
.ls18{letter-spacing:6.624000px;}
.ls35{letter-spacing:8.064000px;}
.ls46{letter-spacing:8.189280px;}
.ls42{letter-spacing:8.244000px;}
.ls2f{letter-spacing:8.784000px;}
.ls2d{letter-spacing:9.504000px;}
.lsb{letter-spacing:10.224000px;}
.ls43{letter-spacing:10.944000px;}
.ls41{letter-spacing:11.664000px;}
.ls3e{letter-spacing:12.384000px;}
.ls36{letter-spacing:13.824000px;}
.ls3b{letter-spacing:13.949280px;}
.ls15{letter-spacing:14.544000px;}
.ls34{letter-spacing:15.264000px;}
.ls32{letter-spacing:15.984000px;}
.ls2e{letter-spacing:16.704000px;}
.ls1f{letter-spacing:19.584000px;}
.ls4a{letter-spacing:21.024000px;}
.lsc{letter-spacing:22.464000px;}
.ls4c{letter-spacing:25.344000px;}
.ls47{letter-spacing:28.944000px;}
.ls48{letter-spacing:29.664000px;}
.lse{letter-spacing:30.384000px;}
.ls2c{letter-spacing:38.304000px;}
.ls28{letter-spacing:90.144000px;}
.ls27{letter-spacing:95.880000px;}
.ls25{letter-spacing:142.841280px;}
.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;}
}
.ws0{word-spacing:-27.842244px;}
.ws9{word-spacing:-22.608000px;}
.ws14{word-spacing:-21.888000px;}
.wsf{word-spacing:-20.664000px;}
.wsc{word-spacing:-20.304000px;}
.ws10{word-spacing:-20.232000px;}
.ws12{word-spacing:-20.160000px;}
.ws19{word-spacing:-20.088000px;}
.ws8{word-spacing:-20.016000px;}
.wsd{word-spacing:-19.944000px;}
.wsa{word-spacing:-19.872000px;}
.wse{word-spacing:-19.800000px;}
.wsb{word-spacing:-19.584000px;}
.ws18{word-spacing:-19.512000px;}
.ws1a{word-spacing:-19.296000px;}
.ws13{word-spacing:-19.152000px;}
.ws1b{word-spacing:-19.080000px;}
.ws11{word-spacing:-18.432000px;}
.ws17{word-spacing:-18.305520px;}
.ws1{word-spacing:-16.121066px;}
.ws3{word-spacing:-15.909853px;}
.ws15{word-spacing:-13.456080px;}
.ws6{word-spacing:-13.410720px;}
.ws7{word-spacing:-13.229520px;}
.ws16{word-spacing:-12.738720px;}
.ws5{word-spacing:-12.510720px;}
.ws4{word-spacing:0.000000px;}
.ws2{word-spacing:517.387283px;}
._4{margin-left:-7.976994px;}
._19{margin-left:-5.571929px;}
._25{margin-left:-4.570827px;}
._2{margin-left:-3.553687px;}
._1{margin-left:-1.591526px;}
._0{width:1.011929px;}
._d{width:2.762400px;}
._c{width:3.769838px;}
._b{width:5.263436px;}
._a{width:6.380640px;}
._14{width:7.470387px;}
._12{width:8.496000px;}
._13{width:10.080000px;}
._1b{width:11.808000px;}
._8{width:13.248000px;}
._9{width:14.416467px;}
._10{width:16.128000px;}
._11{width:17.712000px;}
._1e{width:18.807052px;}
._28{width:20.453509px;}
._f{width:21.549446px;}
._e{width:23.088000px;}
._2e{width:24.096000px;}
._1c{width:25.128000px;}
._20{width:26.155526px;}
._1d{width:27.504000px;}
._1f{width:28.584000px;}
._17{width:29.664000px;}
._18{width:31.104000px;}
._6{width:32.184000px;}
._7{width:33.407667px;}
._26{width:34.608333px;}
._22{width:36.144000px;}
._27{width:37.728000px;}
._24{width:38.736000px;}
._21{width:41.311526px;}
._16{width:42.480000px;}
._15{width:43.488000px;}
._34{width:45.363596px;}
._23{width:46.512000px;}
._33{width:47.996071px;}
._2b{width:52.495526px;}
._29{width:53.784000px;}
._2a{width:54.843596px;}
._32{width:58.619667px;}
._31{width:59.688000px;}
._2c{width:63.432000px;}
._36{width:67.896000px;}
._35{width:69.336000px;}
._37{width:70.356000px;}
._5{width:80.989927px;}
._38{width:86.760000px;}
._30{width:95.016000px;}
._2f{width:135.336000px;}
._39{width:161.220000px;}
._3{width:352.348222px;}
._1a{width:844.140000px;}
._2d{width:862.200000px;}
.fc7{color:rgb(255,0,0);}
.fc6{color:rgb(0,0,255);}
.fc2{color:rgb(0,0,238);}
.fc8{color:rgb(26,26,26);}
.fc5{color:rgb(33,33,33);}
.fc4{color:rgb(51,51,51);}
.fc3{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(34,34,34);}
.fs6{font-size:48.240000px;}
.fs3{font-size:50.438847px;}
.fs7{font-size:50.848916px;}
.fs2{font-size:57.644397px;}
.fs8{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs4{font-size:82.863820px;}
.fs1{font-size:86.466595px;}
.fs0{font-size:100.877694px;}
.y0{bottom:0.000000px;}
.y14{bottom:23.418036px;}
.y17{bottom:30.623585px;}
.y13{bottom:40.531217px;}
.y15{bottom:42.743838px;}
.y19{bottom:57.276000px;}
.y36{bottom:57.456000px;}
.y12{bottom:57.644397px;}
.y16{bottom:68.452720px;}
.y11{bottom:74.757577px;}
.y18{bottom:77.976000px;}
.y35{bottom:78.156000px;}
.y10{bottom:91.870757px;}
.yf0{bottom:99.936000px;}
.ycd{bottom:100.836000px;}
.y97{bottom:101.196000px;}
.ydb{bottom:102.816000px;}
.y6b{bottom:103.896000px;}
.y89{bottom:104.436000px;}
.y48{bottom:104.796000px;}
.y84{bottom:104.976000px;}
.ya6{bottom:105.516000px;}
.yea{bottom:108.756000px;}
.yf{bottom:108.983938px;}
.yc6{bottom:114.516000px;}
.yd4{bottom:116.856000px;}
.yef{bottom:120.636000px;}
.ycc{bottom:121.356000px;}
.y96{bottom:121.896000px;}
.yda{bottom:123.516000px;}
.y88{bottom:125.136000px;}
.ybf{bottom:125.676000px;}
.ye{bottom:126.097118px;}
.ya5{bottom:126.216000px;}
.ye9{bottom:129.636000px;}
.yc5{bottom:135.216000px;}
.yd3{bottom:137.556000px;}
.yee{bottom:141.336000px;}
.ycb{bottom:142.236000px;}
.y95{bottom:142.596000px;}
.yd{bottom:143.210298px;}
.yd9{bottom:144.216000px;}
.y6a{bottom:145.296000px;}
.y87{bottom:145.836000px;}
.y32{bottom:146.196000px;}
.y4c{bottom:146.376000px;}
.ybe{bottom:146.556000px;}
.ya4{bottom:146.736000px;}
.ye8{bottom:150.150000px;}
.yc4{bottom:155.910000px;}
.yd2{bottom:158.250000px;}
.yc{bottom:160.323479px;}
.yed{bottom:162.030000px;}
.y86{bottom:162.570000px;}
.yca{bottom:162.750000px;}
.y94{bottom:163.290000px;}
.yd8{bottom:164.910000px;}
.ybd{bottom:167.070000px;}
.ya3{bottom:167.430000px;}
.ye7{bottom:170.850000px;}
.y83{bottom:175.710000px;}
.yc3{bottom:176.610000px;}
.yb{bottom:177.436659px;}
.yd1{bottom:178.950000px;}
.yec{bottom:182.730000px;}
.yc9{bottom:183.450000px;}
.yd7{bottom:185.610000px;}
.y69{bottom:186.690000px;}
.y31{bottom:187.590000px;}
.y4b{bottom:187.770000px;}
.ya2{bottom:188.130000px;}
.ye6{bottom:191.550000px;}
.yc2{bottom:193.350000px;}
.ya{bottom:194.549839px;}
.yd0{bottom:195.690000px;}
.yeb{bottom:199.470000px;}
.yc8{bottom:200.190000px;}
.yd6{bottom:202.350000px;}
.ybc{bottom:204.510000px;}
.ya1{bottom:208.830000px;}
.y9{bottom:211.663019px;}
.ye5{bottom:212.250000px;}
.y93{bottom:215.670000px;}
.y82{bottom:216.930000px;}
.y68{bottom:228.090000px;}
.y8{bottom:228.776200px;}
.y30{bottom:228.990000px;}
.y4a{bottom:229.170000px;}
.ya0{bottom:229.530000px;}
.ye4{bottom:232.950000px;}
.ye3{bottom:249.690000px;}
.y9f{bottom:250.410000px;}
.y81{bottom:258.330000px;}
.y7{bottom:266.605335px;}
.y67{bottom:269.490000px;}
.y2f{bottom:270.390000px;}
.y4f{bottom:270.570000px;}
.y9e{bottom:270.930000px;}
.y9d{bottom:291.855000px;}
.y80{bottom:299.775000px;}
.y6{bottom:303.533777px;}
.y66{bottom:311.115000px;}
.y2e{bottom:311.835000px;}
.y4e{bottom:312.015000px;}
.y9c{bottom:312.375000px;}
.y9b{bottom:333.075000px;}
.y7f{bottom:341.355000px;}
.y5{bottom:344.064993px;}
.ybb{bottom:349.275000px;}
.y9a{bottom:349.815000px;}
.y65{bottom:352.515000px;}
.y2d{bottom:353.235000px;}
.y50{bottom:353.415000px;}
.yba{bottom:369.975000px;}
.y7e{bottom:382.575000px;}
.y4{bottom:390.000372px;}
.yb9{bottom:390.675000px;}
.y64{bottom:393.915000px;}
.y2c{bottom:394.635000px;}
.y4d{bottom:394.815000px;}
.yb8{bottom:411.375000px;}
.y3{bottom:420.623957px;}
.y7d{bottom:423.975000px;}
.yb7{bottom:432.075000px;}
.y63{bottom:435.315000px;}
.y47{bottom:435.855000px;}
.y2b{bottom:436.035000px;}
.y2{bottom:451.247543px;}
.yb6{bottom:452.775000px;}
.y7c{bottom:465.555000px;}
.yb5{bottom:473.475000px;}
.y62{bottom:476.715000px;}
.y46{bottom:477.255000px;}
.y2a{bottom:477.435000px;}
.ye0{bottom:479.235000px;}
.yb4{bottom:494.175000px;}
.y7b{bottom:506.955000px;}
.yb3{bottom:514.875000px;}
.y61{bottom:517.935000px;}
.y45{bottom:518.655000px;}
.y29{bottom:518.835000px;}
.yb2{bottom:535.575000px;}
.y7a{bottom:548.175000px;}
.yb1{bottom:556.305000px;}
.y60{bottom:559.365000px;}
.y44{bottom:560.085000px;}
.y28{bottom:560.265000px;}
.y1{bottom:561.912276px;}
.yb0{bottom:577.005000px;}
.y85{bottom:586.545000px;}
.y79{bottom:589.605000px;}
.yaf{bottom:597.705000px;}
.y5f{bottom:600.765000px;}
.y43{bottom:601.485000px;}
.y27{bottom:601.665000px;}
.y34{bottom:601.845000px;}
.yae{bottom:618.405000px;}
.y78{bottom:631.185000px;}
.yad{bottom:639.105000px;}
.y5e{bottom:642.165000px;}
.y42{bottom:642.885000px;}
.y26{bottom:643.065000px;}
.yac{bottom:659.805000px;}
.y77{bottom:672.405000px;}
.ydf{bottom:676.545000px;}
.yab{bottom:680.505000px;}
.y5d{bottom:683.565000px;}
.y41{bottom:684.285000px;}
.y25{bottom:684.465000px;}
.yfd{bottom:689.325000px;}
.yaa{bottom:697.245000px;}
.yfc{bottom:710.025000px;}
.y99{bottom:710.745000px;}
.y76{bottom:713.805000px;}
.y5c{bottom:724.965000px;}
.y40{bottom:725.685000px;}
.y24{bottom:725.865000px;}
.yfb{bottom:730.905000px;}
.yc7{bottom:731.445000px;}
.y98{bottom:746.385000px;}
.yfa{bottom:751.425000px;}
.ycf{bottom:752.145000px;}
.y75{bottom:755.385000px;}
.ye2{bottom:757.905000px;}
.y5b{bottom:766.365000px;}
.y3f{bottom:767.085000px;}
.y33{bottom:767.265000px;}
.yf9{bottom:772.305000px;}
.y23{bottom:773.205000px;}
.y92{bottom:787.785000px;}
.yf8{bottom:792.825000px;}
.yc1{bottom:793.545000px;}
.y74{bottom:796.605000px;}
.y5a{bottom:807.765000px;}
.y3e{bottom:808.485000px;}
.y22{bottom:808.665000px;}
.yf7{bottom:813.705000px;}
.ye1{bottom:814.245000px;}
.y91{bottom:829.185000px;}
.yf6{bottom:834.225000px;}
.y73{bottom:838.185000px;}
.y59{bottom:849.210000px;}
.y3d{bottom:849.930000px;}
.y21{bottom:850.110000px;}
.yf5{bottom:854.970000px;}
.y90{bottom:870.630000px;}
.yf4{bottom:875.850000px;}
.ya9{bottom:876.390000px;}
.y72{bottom:879.450000px;}
.y58{bottom:890.610000px;}
.y3c{bottom:891.330000px;}
.y20{bottom:891.510000px;}
.yf3{bottom:896.370000px;}
.y8f{bottom:912.030000px;}
.yf2{bottom:917.070000px;}
.y71{bottom:921.030000px;}
.yde{bottom:929.490000px;}
.y57{bottom:932.010000px;}
.y3b{bottom:932.730000px;}
.y1f{bottom:932.910000px;}
.yf1{bottom:933.810000px;}
.y8e{bottom:953.430000px;}
.y70{bottom:962.250000px;}
.y56{bottom:973.410000px;}
.y3a{bottom:974.130000px;}
.y1e{bottom:974.310000px;}
.ydd{bottom:982.950000px;}
.ydc{bottom:988.890000px;}
.y8d{bottom:994.830000px;}
.ya8{bottom:995.010000px;}
.y6f{bottom:1003.650000px;}
.y55{bottom:1014.810000px;}
.y39{bottom:1015.530000px;}
.y1d{bottom:1015.710000px;}
.y8c{bottom:1036.230000px;}
.ya7{bottom:1036.410000px;}
.y6e{bottom:1045.230000px;}
.y51{bottom:1056.750000px;}
.y38{bottom:1056.930000px;}
.y1c{bottom:1057.110000px;}
.y52{bottom:1061.250000px;}
.y53{bottom:1061.970000px;}
.y54{bottom:1062.690000px;}
.y6c{bottom:1062.870000px;}
.y8b{bottom:1077.630000px;}
.yc0{bottom:1077.810000px;}
.yd5{bottom:1083.390000px;}
.y6d{bottom:1086.450000px;}
.y49{bottom:1098.330000px;}
.y1b{bottom:1098.510000px;}
.y8a{bottom:1119.030000px;}
.yce{bottom:1119.210000px;}
.y37{bottom:1139.760000px;}
.y1a{bottom:1139.940000px;}
.h5{height:37.385825px;}
.h4{height:42.726657px;}
.hd{height:42.854116px;}
.hc{height:50.312812px;}
.he{height:51.333750px;}
.h7{height:61.419570px;}
.h3{height:64.089986px;}
.hf{height:64.582031px;}
.ha{height:70.664062px;}
.h2{height:74.771650px;}
.hb{height:75.093750px;}
.h6{height:105.381162px;}
.h1{height:568.337724px;}
.h0{height:1173.000000px;}
.h8{height:1262.880000px;}
.h9{height:1263.000000px;}
.w1{width:775.497275px;}
.w0{width:876.000000px;}
.w5{width:892.979973px;}
.w4{width:892.979987px;}
.w2{width:892.980000px;}
.w3{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:2.702081px;}
.x3{left:7.205550px;}
.x12{left:43.379973px;}
.x1{left:50.438847px;}
.xa{left:52.379973px;}
.x9{left:61.379973px;}
.x7{left:70.379973px;}
.x2{left:72.956190px;}
.x8{left:79.379987px;}
.x6{left:106.235987px;}
.x10{left:160.409987px;}
.xb{left:437.474987px;}
.x5{left:441.974987px;}
.xc{left:561.704987px;}
.xd{left:566.564987px;}
.xe{left:569.984987px;}
.xf{left:574.664987px;}
.x11{left:786.749987px;}
@media print{
.v7{vertical-align:-73.600000pt;}
.v6{vertical-align:-59.498667pt;}
.v2{vertical-align:-21.120000pt;}
.v4{vertical-align:-18.560000pt;}
.v5{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.ls14{letter-spacing:-1.408000pt;}
.ls1a{letter-spacing:-1.152000pt;}
.ls24{letter-spacing:-0.896000pt;}
.ls16{letter-spacing:-0.832000pt;}
.ls4{letter-spacing:-0.800000pt;}
.ls1d{letter-spacing:-0.768000pt;}
.ls44{letter-spacing:-0.640000pt;}
.ls22{letter-spacing:-0.597333pt;}
.ls9{letter-spacing:-0.512000pt;}
.ls3a{letter-spacing:-0.448000pt;}
.ls49{letter-spacing:-0.400533pt;}
.lsa{letter-spacing:-0.384000pt;}
.ls21{letter-spacing:-0.242667pt;}
.lsf{letter-spacing:-0.192000pt;}
.ls5{letter-spacing:-0.161067pt;}
.ls8{letter-spacing:-0.128000pt;}
.ls26{letter-spacing:-0.097067pt;}
.ls4b{letter-spacing:-0.082133pt;}
.ls10{letter-spacing:-0.064000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls37{letter-spacing:0.032000pt;}
.ls20{letter-spacing:0.040320pt;}
.ls38{letter-spacing:0.042667pt;}
.ls40{letter-spacing:0.064000pt;}
.ls39{letter-spacing:0.106667pt;}
.ls7{letter-spacing:0.128000pt;}
.ls1{letter-spacing:0.170531pt;}
.ls0{letter-spacing:0.187745pt;}
.ls13{letter-spacing:0.192000pt;}
.ls3{letter-spacing:0.256000pt;}
.ls23{letter-spacing:0.298667pt;}
.ls1c{letter-spacing:0.320000pt;}
.ls29{letter-spacing:0.448000pt;}
.ls2a{letter-spacing:0.512000pt;}
.ls12{letter-spacing:0.576000pt;}
.ls17{letter-spacing:0.768000pt;}
.ls19{letter-spacing:0.928000pt;}
.ls45{letter-spacing:1.088000pt;}
.ls33{letter-spacing:1.408000pt;}
.ls1b{letter-spacing:1.519360pt;}
.ls1e{letter-spacing:1.664000pt;}
.ls11{letter-spacing:2.048000pt;}
.ls6{letter-spacing:2.304000pt;}
.ls31{letter-spacing:2.688000pt;}
.ls3d{letter-spacing:2.794667pt;}
.ls3c{letter-spacing:2.848000pt;}
.ls3f{letter-spacing:3.328000pt;}
.ls2b{letter-spacing:3.968000pt;}
.ls30{letter-spacing:4.608000pt;}
.lsd{letter-spacing:5.248000pt;}
.ls18{letter-spacing:5.888000pt;}
.ls35{letter-spacing:7.168000pt;}
.ls46{letter-spacing:7.279360pt;}
.ls42{letter-spacing:7.328000pt;}
.ls2f{letter-spacing:7.808000pt;}
.ls2d{letter-spacing:8.448000pt;}
.lsb{letter-spacing:9.088000pt;}
.ls43{letter-spacing:9.728000pt;}
.ls41{letter-spacing:10.368000pt;}
.ls3e{letter-spacing:11.008000pt;}
.ls36{letter-spacing:12.288000pt;}
.ls3b{letter-spacing:12.399360pt;}
.ls15{letter-spacing:12.928000pt;}
.ls34{letter-spacing:13.568000pt;}
.ls32{letter-spacing:14.208000pt;}
.ls2e{letter-spacing:14.848000pt;}
.ls1f{letter-spacing:17.408000pt;}
.ls4a{letter-spacing:18.688000pt;}
.lsc{letter-spacing:19.968000pt;}
.ls4c{letter-spacing:22.528000pt;}
.ls47{letter-spacing:25.728000pt;}
.ls48{letter-spacing:26.368000pt;}
.lse{letter-spacing:27.008000pt;}
.ls2c{letter-spacing:34.048000pt;}
.ls28{letter-spacing:80.128000pt;}
.ls27{letter-spacing:85.226667pt;}
.ls25{letter-spacing:126.970027pt;}
.ws0{word-spacing:-24.748661pt;}
.ws9{word-spacing:-20.096000pt;}
.ws14{word-spacing:-19.456000pt;}
.wsf{word-spacing:-18.368000pt;}
.wsc{word-spacing:-18.048000pt;}
.ws10{word-spacing:-17.984000pt;}
.ws12{word-spacing:-17.920000pt;}
.ws19{word-spacing:-17.856000pt;}
.ws8{word-spacing:-17.792000pt;}
.wsd{word-spacing:-17.728000pt;}
.wsa{word-spacing:-17.664000pt;}
.wse{word-spacing:-17.600000pt;}
.wsb{word-spacing:-17.408000pt;}
.ws18{word-spacing:-17.344000pt;}
.ws1a{word-spacing:-17.152000pt;}
.ws13{word-spacing:-17.024000pt;}
.ws1b{word-spacing:-16.960000pt;}
.ws11{word-spacing:-16.384000pt;}
.ws17{word-spacing:-16.271573pt;}
.ws1{word-spacing:-14.329837pt;}
.ws3{word-spacing:-14.142092pt;}
.ws15{word-spacing:-11.960960pt;}
.ws6{word-spacing:-11.920640pt;}
.ws7{word-spacing:-11.759573pt;}
.ws16{word-spacing:-11.323307pt;}
.ws5{word-spacing:-11.120640pt;}
.ws4{word-spacing:0.000000pt;}
.ws2{word-spacing:459.899807pt;}
._4{margin-left:-7.090661pt;}
._19{margin-left:-4.952826pt;}
._25{margin-left:-4.062957pt;}
._2{margin-left:-3.158833pt;}
._1{margin-left:-1.414690pt;}
._0{width:0.899493pt;}
._d{width:2.455467pt;}
._c{width:3.350967pt;}
._b{width:4.678610pt;}
._a{width:5.671680pt;}
._14{width:6.640344pt;}
._12{width:7.552000pt;}
._13{width:8.960000pt;}
._1b{width:10.496000pt;}
._8{width:11.776000pt;}
._9{width:12.814637pt;}
._10{width:14.336000pt;}
._11{width:15.744000pt;}
._1e{width:16.717379pt;}
._28{width:18.180897pt;}
._f{width:19.155063pt;}
._e{width:20.522667pt;}
._2e{width:21.418667pt;}
._1c{width:22.336000pt;}
._20{width:23.249356pt;}
._1d{width:24.448000pt;}
._1f{width:25.408000pt;}
._17{width:26.368000pt;}
._18{width:27.648000pt;}
._6{width:28.608000pt;}
._7{width:29.695704pt;}
._26{width:30.762963pt;}
._22{width:32.128000pt;}
._27{width:33.536000pt;}
._24{width:34.432000pt;}
._21{width:36.721356pt;}
._16{width:37.760000pt;}
._15{width:38.656000pt;}
._34{width:40.323197pt;}
._23{width:41.344000pt;}
._33{width:42.663174pt;}
._2b{width:46.662690pt;}
._29{width:47.808000pt;}
._2a{width:48.749863pt;}
._32{width:52.106371pt;}
._31{width:53.056000pt;}
._2c{width:56.384000pt;}
._36{width:60.352000pt;}
._35{width:61.632000pt;}
._37{width:62.538667pt;}
._5{width:71.991046pt;}
._38{width:77.120000pt;}
._30{width:84.458667pt;}
._2f{width:120.298667pt;}
._39{width:143.306667pt;}
._3{width:313.198420pt;}
._1a{width:750.346667pt;}
._2d{width:766.400000pt;}
.fs6{font-size:42.880000pt;}
.fs3{font-size:44.834531pt;}
.fs7{font-size:45.199037pt;}
.fs2{font-size:51.239464pt;}
.fs8{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs4{font-size:73.656729pt;}
.fs1{font-size:76.859196pt;}
.fs0{font-size:89.669062pt;}
.y0{bottom:0.000000pt;}
.y14{bottom:20.816032pt;}
.y17{bottom:27.220964pt;}
.y13{bottom:36.027748pt;}
.y15{bottom:37.994523pt;}
.y19{bottom:50.912000pt;}
.y36{bottom:51.072000pt;}
.y12{bottom:51.239464pt;}
.y16{bottom:60.846863pt;}
.y11{bottom:66.451180pt;}
.y18{bottom:69.312000pt;}
.y35{bottom:69.472000pt;}
.y10{bottom:81.662895pt;}
.yf0{bottom:88.832000pt;}
.ycd{bottom:89.632000pt;}
.y97{bottom:89.952000pt;}
.ydb{bottom:91.392000pt;}
.y6b{bottom:92.352000pt;}
.y89{bottom:92.832000pt;}
.y48{bottom:93.152000pt;}
.y84{bottom:93.312000pt;}
.ya6{bottom:93.792000pt;}
.yea{bottom:96.672000pt;}
.yf{bottom:96.874611pt;}
.yc6{bottom:101.792000pt;}
.yd4{bottom:103.872000pt;}
.yef{bottom:107.232000pt;}
.ycc{bottom:107.872000pt;}
.y96{bottom:108.352000pt;}
.yda{bottom:109.792000pt;}
.y88{bottom:111.232000pt;}
.ybf{bottom:111.712000pt;}
.ye{bottom:112.086327pt;}
.ya5{bottom:112.192000pt;}
.ye9{bottom:115.232000pt;}
.yc5{bottom:120.192000pt;}
.yd3{bottom:122.272000pt;}
.yee{bottom:125.632000pt;}
.ycb{bottom:126.432000pt;}
.y95{bottom:126.752000pt;}
.yd{bottom:127.298043pt;}
.yd9{bottom:128.192000pt;}
.y6a{bottom:129.152000pt;}
.y87{bottom:129.632000pt;}
.y32{bottom:129.952000pt;}
.y4c{bottom:130.112000pt;}
.ybe{bottom:130.272000pt;}
.ya4{bottom:130.432000pt;}
.ye8{bottom:133.466667pt;}
.yc4{bottom:138.586667pt;}
.yd2{bottom:140.666667pt;}
.yc{bottom:142.509759pt;}
.yed{bottom:144.026667pt;}
.y86{bottom:144.506667pt;}
.yca{bottom:144.666667pt;}
.y94{bottom:145.146667pt;}
.yd8{bottom:146.586667pt;}
.ybd{bottom:148.506667pt;}
.ya3{bottom:148.826667pt;}
.ye7{bottom:151.866667pt;}
.y83{bottom:156.186667pt;}
.yc3{bottom:156.986667pt;}
.yb{bottom:157.721474pt;}
.yd1{bottom:159.066667pt;}
.yec{bottom:162.426667pt;}
.yc9{bottom:163.066667pt;}
.yd7{bottom:164.986667pt;}
.y69{bottom:165.946667pt;}
.y31{bottom:166.746667pt;}
.y4b{bottom:166.906667pt;}
.ya2{bottom:167.226667pt;}
.ye6{bottom:170.266667pt;}
.yc2{bottom:171.866667pt;}
.ya{bottom:172.933190pt;}
.yd0{bottom:173.946667pt;}
.yeb{bottom:177.306667pt;}
.yc8{bottom:177.946667pt;}
.yd6{bottom:179.866667pt;}
.ybc{bottom:181.786667pt;}
.ya1{bottom:185.626667pt;}
.y9{bottom:188.144906pt;}
.ye5{bottom:188.666667pt;}
.y93{bottom:191.706667pt;}
.y82{bottom:192.826667pt;}
.y68{bottom:202.746667pt;}
.y8{bottom:203.356622pt;}
.y30{bottom:203.546667pt;}
.y4a{bottom:203.706667pt;}
.ya0{bottom:204.026667pt;}
.ye4{bottom:207.066667pt;}
.ye3{bottom:221.946667pt;}
.y9f{bottom:222.586667pt;}
.y81{bottom:229.626667pt;}
.y7{bottom:236.982520pt;}
.y67{bottom:239.546667pt;}
.y2f{bottom:240.346667pt;}
.y4f{bottom:240.506667pt;}
.y9e{bottom:240.826667pt;}
.y9d{bottom:259.426667pt;}
.y80{bottom:266.466667pt;}
.y6{bottom:269.807801pt;}
.y66{bottom:276.546667pt;}
.y2e{bottom:277.186667pt;}
.y4e{bottom:277.346667pt;}
.y9c{bottom:277.666667pt;}
.y9b{bottom:296.066667pt;}
.y7f{bottom:303.426667pt;}
.y5{bottom:305.835549pt;}
.ybb{bottom:310.466667pt;}
.y9a{bottom:310.946667pt;}
.y65{bottom:313.346667pt;}
.y2d{bottom:313.986667pt;}
.y50{bottom:314.146667pt;}
.yba{bottom:328.866667pt;}
.y7e{bottom:340.066667pt;}
.y4{bottom:346.666997pt;}
.yb9{bottom:347.266667pt;}
.y64{bottom:350.146667pt;}
.y2c{bottom:350.786667pt;}
.y4d{bottom:350.946667pt;}
.yb8{bottom:365.666667pt;}
.y3{bottom:373.887962pt;}
.y7d{bottom:376.866667pt;}
.yb7{bottom:384.066667pt;}
.y63{bottom:386.946667pt;}
.y47{bottom:387.426667pt;}
.y2b{bottom:387.586667pt;}
.y2{bottom:401.108927pt;}
.yb6{bottom:402.466667pt;}
.y7c{bottom:413.826667pt;}
.yb5{bottom:420.866667pt;}
.y62{bottom:423.746667pt;}
.y46{bottom:424.226667pt;}
.y2a{bottom:424.386667pt;}
.ye0{bottom:425.986667pt;}
.yb4{bottom:439.266667pt;}
.y7b{bottom:450.626667pt;}
.yb3{bottom:457.666667pt;}
.y61{bottom:460.386667pt;}
.y45{bottom:461.026667pt;}
.y29{bottom:461.186667pt;}
.yb2{bottom:476.066667pt;}
.y7a{bottom:487.266667pt;}
.yb1{bottom:494.493333pt;}
.y60{bottom:497.213333pt;}
.y44{bottom:497.853333pt;}
.y28{bottom:498.013333pt;}
.y1{bottom:499.477579pt;}
.yb0{bottom:512.893333pt;}
.y85{bottom:521.373333pt;}
.y79{bottom:524.093333pt;}
.yaf{bottom:531.293333pt;}
.y5f{bottom:534.013333pt;}
.y43{bottom:534.653333pt;}
.y27{bottom:534.813333pt;}
.y34{bottom:534.973333pt;}
.yae{bottom:549.693333pt;}
.y78{bottom:561.053333pt;}
.yad{bottom:568.093333pt;}
.y5e{bottom:570.813333pt;}
.y42{bottom:571.453333pt;}
.y26{bottom:571.613333pt;}
.yac{bottom:586.493333pt;}
.y77{bottom:597.693333pt;}
.ydf{bottom:601.373333pt;}
.yab{bottom:604.893333pt;}
.y5d{bottom:607.613333pt;}
.y41{bottom:608.253333pt;}
.y25{bottom:608.413333pt;}
.yfd{bottom:612.733333pt;}
.yaa{bottom:619.773333pt;}
.yfc{bottom:631.133333pt;}
.y99{bottom:631.773333pt;}
.y76{bottom:634.493333pt;}
.y5c{bottom:644.413333pt;}
.y40{bottom:645.053333pt;}
.y24{bottom:645.213333pt;}
.yfb{bottom:649.693333pt;}
.yc7{bottom:650.173333pt;}
.y98{bottom:663.453333pt;}
.yfa{bottom:667.933333pt;}
.ycf{bottom:668.573333pt;}
.y75{bottom:671.453333pt;}
.ye2{bottom:673.693333pt;}
.y5b{bottom:681.213333pt;}
.y3f{bottom:681.853333pt;}
.y33{bottom:682.013333pt;}
.yf9{bottom:686.493333pt;}
.y23{bottom:687.293333pt;}
.y92{bottom:700.253333pt;}
.yf8{bottom:704.733333pt;}
.yc1{bottom:705.373333pt;}
.y74{bottom:708.093333pt;}
.y5a{bottom:718.013333pt;}
.y3e{bottom:718.653333pt;}
.y22{bottom:718.813333pt;}
.yf7{bottom:723.293333pt;}
.ye1{bottom:723.773333pt;}
.y91{bottom:737.053333pt;}
.yf6{bottom:741.533333pt;}
.y73{bottom:745.053333pt;}
.y59{bottom:754.853333pt;}
.y3d{bottom:755.493333pt;}
.y21{bottom:755.653333pt;}
.yf5{bottom:759.973333pt;}
.y90{bottom:773.893333pt;}
.yf4{bottom:778.533333pt;}
.ya9{bottom:779.013333pt;}
.y72{bottom:781.733333pt;}
.y58{bottom:791.653333pt;}
.y3c{bottom:792.293333pt;}
.y20{bottom:792.453333pt;}
.yf3{bottom:796.773333pt;}
.y8f{bottom:810.693333pt;}
.yf2{bottom:815.173333pt;}
.y71{bottom:818.693333pt;}
.yde{bottom:826.213333pt;}
.y57{bottom:828.453333pt;}
.y3b{bottom:829.093333pt;}
.y1f{bottom:829.253333pt;}
.yf1{bottom:830.053333pt;}
.y8e{bottom:847.493333pt;}
.y70{bottom:855.333333pt;}
.y56{bottom:865.253333pt;}
.y3a{bottom:865.893333pt;}
.y1e{bottom:866.053333pt;}
.ydd{bottom:873.733333pt;}
.ydc{bottom:879.013333pt;}
.y8d{bottom:884.293333pt;}
.ya8{bottom:884.453333pt;}
.y6f{bottom:892.133333pt;}
.y55{bottom:902.053333pt;}
.y39{bottom:902.693333pt;}
.y1d{bottom:902.853333pt;}
.y8c{bottom:921.093333pt;}
.ya7{bottom:921.253333pt;}
.y6e{bottom:929.093333pt;}
.y51{bottom:939.333333pt;}
.y38{bottom:939.493333pt;}
.y1c{bottom:939.653333pt;}
.y52{bottom:943.333333pt;}
.y53{bottom:943.973333pt;}
.y54{bottom:944.613333pt;}
.y6c{bottom:944.773333pt;}
.y8b{bottom:957.893333pt;}
.yc0{bottom:958.053333pt;}
.yd5{bottom:963.013333pt;}
.y6d{bottom:965.733333pt;}
.y49{bottom:976.293333pt;}
.y1b{bottom:976.453333pt;}
.y8a{bottom:994.693333pt;}
.yce{bottom:994.853333pt;}
.y37{bottom:1013.120000pt;}
.y1a{bottom:1013.280000pt;}
.h5{height:33.231845pt;}
.h4{height:37.979251pt;}
.hd{height:38.092548pt;}
.hc{height:44.722500pt;}
.he{height:45.630000pt;}
.h7{height:54.595173pt;}
.h3{height:56.968876pt;}
.hf{height:57.406250pt;}
.ha{height:62.812500pt;}
.h2{height:66.463689pt;}
.hb{height:66.750000pt;}
.h6{height:93.672144pt;}
.h1{height:505.189088pt;}
.h0{height:1042.666667pt;}
.h8{height:1122.560000pt;}
.h9{height:1122.666667pt;}
.w1{width:689.330911pt;}
.w0{width:778.666667pt;}
.w5{width:793.759976pt;}
.w4{width:793.759988pt;}
.w2{width:793.760000pt;}
.w3{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:2.401850pt;}
.x3{left:6.404933pt;}
.x12{left:38.559976pt;}
.x1{left:44.834531pt;}
.xa{left:46.559976pt;}
.x9{left:54.559976pt;}
.x7{left:62.559976pt;}
.x2{left:64.849946pt;}
.x8{left:70.559988pt;}
.x6{left:94.431988pt;}
.x10{left:142.586655pt;}
.xb{left:388.866655pt;}
.x5{left:392.866655pt;}
.xc{left:499.293322pt;}
.xd{left:503.613322pt;}
.xe{left:506.653322pt;}
.xf{left:510.813322pt;}
.x11{left:699.333322pt;}
}




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