
    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_e7eea8cd14b08dee88849d41.woff')format("woff");}.ff1{font-family:ff1;line-height:0.876465;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_a3c35796e0fc8763eea64dc7.woff')format("woff");}.ff2{font-family:ff2;line-height:1.082031;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_d706fa67144fb49ed75da1cd.woff')format("woff");}.ff3{font-family:ff3;line-height:0.899414;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_e5ab5d772fe81e3538ca5a8c.woff')format("woff");}.ff4{font-family:ff4;line-height:1.044434;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_ed4195dc1fe396c3539ed3fe.woff')format("woff");}.ff5{font-family:ff5;line-height:1.090332;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_f12c44268067367dc67977ec.woff')format("woff");}.ff6{font-family:ff6;line-height:0.899414;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_07619dd50b472fbedb18c4b2.woff')format("woff");}.ff7{font-family:ff7;line-height:0.899414;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_814037ad18241201a54df2d8.woff')format("woff");}.ff8{font-family:ff8;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;}
.m1{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,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);}
.v3{vertical-align:-19.980000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:3.000000px;}
.v4{vertical-align:20.979000px;}
.v2{vertical-align:23.976000px;}
.ls3{letter-spacing:0.000000px;}
.lse{letter-spacing:0.000300px;}
.ls13{letter-spacing:0.000600px;}
.ls10{letter-spacing:0.016200px;}
.lsd{letter-spacing:0.360000px;}
.ls11{letter-spacing:1.914000px;}
.lsb{letter-spacing:2.423400px;}
.lsc{letter-spacing:3.600000px;}
.lsf{letter-spacing:4.196667px;}
.ls8{letter-spacing:4.197333px;}
.ls7{letter-spacing:4.200000px;}
.ls9{letter-spacing:4.210000px;}
.ls5{letter-spacing:4.210667px;}
.ls4{letter-spacing:4.800000px;}
.ls6{letter-spacing:5.400000px;}
.ls0{letter-spacing:6.600000px;}
.ls2{letter-spacing:8.400000px;}
.lsa{letter-spacing:9.828600px;}
.ls1{letter-spacing:10.200000px;}
.ls12{letter-spacing:19.800000px;}
.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;}
}
.wsd{word-spacing:-36.102000px;}
.wsb{word-spacing:-25.146000px;}
.ws9{word-spacing:-20.592000px;}
.wsc{word-spacing:-20.460000px;}
.ws2{word-spacing:-20.232000px;}
.ws1{word-spacing:-18.546000px;}
.ws8{word-spacing:-17.784000px;}
.wsa{word-spacing:-17.703000px;}
.ws6{word-spacing:-16.860000px;}
.wse{word-spacing:-16.302000px;}
.ws4{word-spacing:-16.017000px;}
.ws3{word-spacing:-11.795256px;}
.ws7{word-spacing:-0.072000px;}
.ws0{word-spacing:-0.054000px;}
.ws5{word-spacing:0.000000px;}
._1a{margin-left:-20.878200px;}
._1f{margin-left:-19.312200px;}
._17{margin-left:-13.422000px;}
._14{margin-left:-11.736000px;}
._8{margin-left:-10.350000px;}
._7{margin-left:-8.670000px;}
._1c{margin-left:-7.488000px;}
._3{margin-left:-6.480000px;}
._12{margin-left:-5.008800px;}
._6{margin-left:-3.498000px;}
._9{margin-left:-2.244000px;}
._1{margin-left:-1.134000px;}
._4{width:1.350000px;}
._a{width:2.604000px;}
._d{width:4.536000px;}
._15{width:6.411600px;}
._10{width:7.902000px;}
._e{width:9.720000px;}
._f{width:10.800000px;}
._11{width:12.384000px;}
._16{width:13.968000px;}
._21{width:15.066000px;}
._18{width:16.758000px;}
._19{width:17.838000px;}
._1e{width:18.987000px;}
._1d{width:20.488200px;}
._23{width:22.372800px;}
._b{width:24.408000px;}
._c{width:25.434000px;}
._20{width:27.792000px;}
._24{width:31.626000px;}
._1b{width:32.760000px;}
._22{width:49.764000px;}
._13{width:57.719820px;}
._0{width:68.706000px;}
._2{width:369.208200px;}
._5{width:738.306000px;}
.fc3{color:rgb(68,57,21);}
.fc2{color:rgb(35,31,32);}
.fc1{color:rgb(42,62,146);}
.fc0{color:rgb(73,19,22);}
.fs6{font-size:34.980000px;}
.fsc{font-size:36.729000px;}
.fsd{font-size:38.478000px;}
.fs5{font-size:41.976000px;}
.fs9{font-size:42.000000px;}
.fs8{font-size:48.000000px;}
.fs1{font-size:54.000000px;}
.fs7{font-size:57.000000px;}
.fsa{font-size:60.000000px;}
.fsb{font-size:63.000000px;}
.fs0{font-size:66.000000px;}
.fs4{font-size:72.000000px;}
.fs3{font-size:84.000000px;}
.fs2{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y53{bottom:58.081050px;}
.y2{bottom:58.081200px;}
.y27{bottom:58.081350px;}
.y112{bottom:58.081800px;}
.y52{bottom:79.381050px;}
.y1{bottom:79.381200px;}
.y26{bottom:79.381350px;}
.y111{bottom:79.381800px;}
.y7c{bottom:127.558950px;}
.y25{bottom:127.559100px;}
.y13d{bottom:127.559700px;}
.y51{bottom:130.097100px;}
.y1d2{bottom:131.506500px;}
.ya0{bottom:132.553950px;}
.y162{bottom:132.554700px;}
.y7b{bottom:144.058950px;}
.y13c{bottom:144.059700px;}
.y18b{bottom:144.601650px;}
.y24{bottom:149.054100px;}
.y50{bottom:152.597100px;}
.y161{bottom:153.814650px;}
.y1d1{bottom:154.006500px;}
.yf0{bottom:155.804850px;}
.y110{bottom:157.304850px;}
.ycc{bottom:159.600900px;}
.y13b{bottom:160.559700px;}
.y7a{bottom:165.553950px;}
.yb0{bottom:167.100900px;}
.y18a{bottom:167.101650px;}
.y1d0{bottom:175.006500px;}
.y4f{bottom:175.097100px;}
.y13a{bottom:177.059700px;}
.yef{bottom:178.304850px;}
.y23{bottom:178.494600px;}
.ycb{bottom:180.600900px;}
.y160{bottom:187.301850px;}
.y189{bottom:189.601650px;}
.y1cf{bottom:196.006500px;}
.y4e{bottom:197.297100px;}
.y139{bottom:198.554700px;}
.yee{bottom:200.804850px;}
.y22{bottom:200.994600px;}
.y9f{bottom:202.301100px;}
.y79{bottom:203.700900px;}
.y15f{bottom:209.801850px;}
.y10f{bottom:209.804850px;}
.yca{bottom:212.100900px;}
.y188{bottom:212.101650px;}
.y1ce{bottom:217.006500px;}
.y4d{bottom:219.497100px;}
.y21{bottom:223.194600px;}
.yed{bottom:223.304850px;}
.y78{bottom:224.700900px;}
.y9e{bottom:224.801100px;}
.y10e{bottom:230.804850px;}
.y15e{bottom:232.301850px;}
.yc9{bottom:233.100900px;}
.y187{bottom:234.601650px;}
.y1cd{bottom:238.006500px;}
.y4c{bottom:241.697100px;}
.y138{bottom:242.801850px;}
.y20{bottom:245.394600px;}
.yec{bottom:245.804850px;}
.y9d{bottom:247.301100px;}
.y15d{bottom:254.801850px;}
.y186{bottom:257.101650px;}
.y10d{bottom:262.304850px;}
.y137{bottom:263.801850px;}
.y4b{bottom:263.897100px;}
.yc8{bottom:264.600900px;}
.y1f{bottom:267.594600px;}
.y77{bottom:268.200900px;}
.yeb{bottom:268.304850px;}
.y9c{bottom:269.801100px;}
.y15c{bottom:277.301850px;}
.y185{bottom:279.601650px;}
.y10c{bottom:283.304850px;}
.yc7{bottom:285.600900px;}
.y4a{bottom:286.097100px;}
.y1e{bottom:289.794600px;}
.y76{bottom:290.700900px;}
.yea{bottom:290.804850px;}
.y9b{bottom:292.301100px;}
.y136{bottom:295.301850px;}
.y15b{bottom:299.801850px;}
.y184{bottom:302.101650px;}
.y49{bottom:308.297100px;}
.y1d{bottom:311.994600px;}
.y75{bottom:313.200900px;}
.ye9{bottom:313.304850px;}
.y1cc{bottom:314.506500px;}
.y9a{bottom:314.801100px;}
.y10b{bottom:314.804850px;}
.y135{bottom:316.301850px;}
.yc6{bottom:317.100900px;}
.y15a{bottom:322.301850px;}
.y183{bottom:324.601650px;}
.y48{bottom:330.497100px;}
.y1cb{bottom:332.506500px;}
.y1c{bottom:334.194600px;}
.ye8{bottom:335.804850px;}
.y99{bottom:337.301100px;}
.yc5{bottom:338.100900px;}
.y159{bottom:344.801850px;}
.y182{bottom:347.101650px;}
.y134{bottom:347.801850px;}
.y1ca{bottom:350.506500px;}
.y47{bottom:352.697100px;}
.y1b{bottom:356.394600px;}
.ye7{bottom:358.304850px;}
.y98{bottom:359.801100px;}
.y74{bottom:366.704700px;}
.y158{bottom:367.301850px;}
.y10a{bottom:367.304850px;}
.y133{bottom:368.801850px;}
.yc4{bottom:369.600900px;}
.y181{bottom:369.601650px;}
.y46{bottom:374.897100px;}
.y1a{bottom:378.594600px;}
.ye6{bottom:380.804850px;}
.y97{bottom:382.301100px;}
.y157{bottom:389.801850px;}
.yc3{bottom:390.600900px;}
.y1a6{bottom:390.889800px;}
.y73{bottom:391.904850px;}
.y180{bottom:392.101650px;}
.y45{bottom:397.097100px;}
.y109{bottom:398.804850px;}
.y132{bottom:400.301850px;}
.y19{bottom:400.794600px;}
.ye5{bottom:403.304850px;}
.y1c9{bottom:404.506500px;}
.y96{bottom:404.801100px;}
.y156{bottom:412.301850px;}
.y17f{bottom:414.601650px;}
.y44{bottom:419.297100px;}
.y131{bottom:422.801850px;}
.y18{bottom:422.994600px;}
.y1c8{bottom:424.306500px;}
.ye4{bottom:425.804850px;}
.y95{bottom:427.301100px;}
.y108{bottom:430.304850px;}
.y1a5{bottom:430.489800px;}
.yc2{bottom:432.600900px;}
.y155{bottom:434.801850px;}
.y17e{bottom:437.101650px;}
.y43{bottom:441.497100px;}
.y1c7{bottom:444.106500px;}
.y17{bottom:445.194600px;}
.y130{bottom:445.301850px;}
.ye3{bottom:448.304850px;}
.y94{bottom:449.801100px;}
.y1a4{bottom:450.289800px;}
.y107{bottom:451.304850px;}
.yc1{bottom:455.100900px;}
.y154{bottom:457.301850px;}
.y17d{bottom:459.601650px;}
.y42{bottom:463.697100px;}
.y1c6{bottom:463.906500px;}
.y16{bottom:467.394600px;}
.y12f{bottom:467.801850px;}
.y1a3{bottom:470.089800px;}
.ye2{bottom:470.804850px;}
.y93{bottom:472.301100px;}
.yaf{bottom:474.600900px;}
.yc0{bottom:477.600900px;}
.y153{bottom:479.801850px;}
.y17c{bottom:482.101650px;}
.y106{bottom:482.804850px;}
.y72{bottom:483.704850px;}
.y1c5{bottom:483.706500px;}
.y41{bottom:485.897100px;}
.y15{bottom:489.594600px;}
.y1a2{bottom:489.889800px;}
.y12e{bottom:490.301850px;}
.ye1{bottom:493.304850px;}
.y92{bottom:494.801100px;}
.yae{bottom:497.100900px;}
.ybf{bottom:500.100900px;}
.y152{bottom:502.301850px;}
.y1c4{bottom:503.506500px;}
.y17b{bottom:504.601650px;}
.y71{bottom:505.904850px;}
.y40{bottom:508.097100px;}
.y1a1{bottom:509.689800px;}
.y14{bottom:511.794600px;}
.y12d{bottom:512.801850px;}
.ye0{bottom:515.804850px;}
.y91{bottom:517.301100px;}
.yad{bottom:519.600900px;}
.ybe{bottom:522.600900px;}
.y1c3{bottom:523.306500px;}
.y151{bottom:524.801850px;}
.y105{bottom:524.804850px;}
.y17a{bottom:527.101650px;}
.y70{bottom:527.954850px;}
.y1a0{bottom:529.489800px;}
.y3f{bottom:530.297100px;}
.y13{bottom:533.994600px;}
.y12c{bottom:535.301850px;}
.ydf{bottom:538.304850px;}
.y90{bottom:539.801100px;}
.yac{bottom:542.100900px;}
.y1c2{bottom:543.106500px;}
.ybd{bottom:545.100900px;}
.y150{bottom:547.301850px;}
.y104{bottom:547.304850px;}
.y19f{bottom:549.289800px;}
.y179{bottom:549.601650px;}
.y6f{bottom:550.004850px;}
.y3e{bottom:552.497100px;}
.y12{bottom:556.194600px;}
.y12b{bottom:557.801850px;}
.yde{bottom:560.804850px;}
.y8f{bottom:562.301100px;}
.y1c1{bottom:562.906500px;}
.yab{bottom:564.600900px;}
.ybc{bottom:567.600900px;}
.y19e{bottom:569.089800px;}
.y14f{bottom:569.801850px;}
.y103{bottom:569.804850px;}
.y6e{bottom:572.054850px;}
.y178{bottom:572.101650px;}
.y3d{bottom:574.697100px;}
.y11{bottom:578.694600px;}
.y12a{bottom:580.301850px;}
.y1c0{bottom:582.706500px;}
.ydd{bottom:583.304850px;}
.y8e{bottom:584.801100px;}
.yaa{bottom:587.100900px;}
.y19d{bottom:588.889800px;}
.ybb{bottom:590.100900px;}
.y14e{bottom:592.301850px;}
.y102{bottom:592.304850px;}
.y6d{bottom:594.104850px;}
.y177{bottom:594.601650px;}
.y3c{bottom:596.897100px;}
.y10{bottom:600.894600px;}
.y1bf{bottom:602.506500px;}
.y129{bottom:602.801850px;}
.y8d{bottom:607.301100px;}
.y19c{bottom:608.689800px;}
.ya9{bottom:609.600900px;}
.yba{bottom:612.600900px;}
.y101{bottom:614.804850px;}
.y6c{bottom:616.154850px;}
.y176{bottom:617.101650px;}
.y3b{bottom:619.097100px;}
.y1be{bottom:622.306500px;}
.yf{bottom:623.094600px;}
.y128{bottom:625.301850px;}
.ydc{bottom:628.304850px;}
.y19b{bottom:628.489800px;}
.ya8{bottom:632.100900px;}
.yb9{bottom:635.100900px;}
.y100{bottom:637.304850px;}
.y6b{bottom:638.204850px;}
.y175{bottom:639.601650px;}
.y3a{bottom:641.297100px;}
.y14d{bottom:641.801850px;}
.y1bd{bottom:642.106500px;}
.ye{bottom:645.294600px;}
.y127{bottom:647.801850px;}
.y19a{bottom:648.289800px;}
.y8c{bottom:652.301100px;}
.ya7{bottom:654.600900px;}
.yb8{bottom:657.600900px;}
.yff{bottom:659.804850px;}
.y6a{bottom:660.254850px;}
.y1bc{bottom:661.906500px;}
.y174{bottom:662.101650px;}
.y14c{bottom:662.801850px;}
.y39{bottom:663.497100px;}
.yd{bottom:667.494600px;}
.y199{bottom:668.089800px;}
.y126{bottom:670.301850px;}
.y8b{bottom:674.801100px;}
.ya6{bottom:677.100900px;}
.yb7{bottom:680.100900px;}
.y1bb{bottom:681.706500px;}
.y69{bottom:682.304850px;}
.y173{bottom:684.601650px;}
.y38{bottom:685.697100px;}
.y198{bottom:687.889800px;}
.yc{bottom:689.694600px;}
.y125{bottom:692.801850px;}
.y14b{bottom:694.301850px;}
.ydb{bottom:695.804850px;}
.y8a{bottom:697.301100px;}
.ya5{bottom:699.600900px;}
.y1ba{bottom:701.506500px;}
.yb6{bottom:702.600900px;}
.y68{bottom:704.354850px;}
.yfe{bottom:704.804850px;}
.y172{bottom:707.101650px;}
.y197{bottom:707.689800px;}
.y37{bottom:707.897100px;}
.yb{bottom:711.894600px;}
.y124{bottom:715.301850px;}
.yda{bottom:718.304850px;}
.y89{bottom:719.801100px;}
.y1b9{bottom:721.306500px;}
.yb5{bottom:725.100900px;}
.y67{bottom:726.404850px;}
.yfd{bottom:727.304850px;}
.y196{bottom:727.489800px;}
.y171{bottom:729.601650px;}
.y36{bottom:730.097100px;}
.y123{bottom:737.801850px;}
.yd9{bottom:740.804850px;}
.ya4{bottom:741.104850px;}
.y1b8{bottom:741.106500px;}
.y88{bottom:742.301100px;}
.y14a{bottom:746.801850px;}
.y195{bottom:747.289800px;}
.yb4{bottom:747.600900px;}
.y66{bottom:748.454850px;}
.yfc{bottom:749.804850px;}
.y170{bottom:752.101650px;}
.y35{bottom:752.297100px;}
.y122{bottom:760.301850px;}
.y1b7{bottom:760.906500px;}
.ya{bottom:762.098550px;}
.yd8{bottom:763.304850px;}
.y194{bottom:767.089800px;}
.y149{bottom:767.801850px;}
.yb3{bottom:770.100900px;}
.y65{bottom:770.504850px;}
.yfb{bottom:772.304850px;}
.y34{bottom:774.497100px;}
.y1b6{bottom:780.706500px;}
.y121{bottom:782.801850px;}
.y16f{bottom:783.105600px;}
.yd7{bottom:785.804850px;}
.y193{bottom:786.889800px;}
.y87{bottom:791.801100px;}
.y64{bottom:792.554850px;}
.yfa{bottom:794.804850px;}
.y33{bottom:796.697100px;}
.y148{bottom:799.301850px;}
.y1b5{bottom:800.506500px;}
.y120{bottom:805.301850px;}
.y192{bottom:806.689800px;}
.yd6{bottom:808.304850px;}
.y63{bottom:814.604850px;}
.yf9{bottom:817.304850px;}
.y32{bottom:818.897100px;}
.y147{bottom:820.301850px;}
.y1b4{bottom:820.306500px;}
.yb2{bottom:823.604850px;}
.y191{bottom:826.489800px;}
.y11f{bottom:827.801850px;}
.yd5{bottom:830.804850px;}
.y62{bottom:836.654850px;}
.yf8{bottom:839.804850px;}
.y1b3{bottom:840.106500px;}
.y31{bottom:841.097100px;}
.y190{bottom:846.289800px;}
.y11e{bottom:850.301850px;}
.y146{bottom:851.801850px;}
.yd4{bottom:853.304850px;}
.y61{bottom:858.704700px;}
.y1b2{bottom:859.906500px;}
.y30{bottom:863.297100px;}
.y86{bottom:863.801100px;}
.y9{bottom:868.298550px;}
.y145{bottom:872.801850px;}
.y18f{bottom:874.593750px;}
.yd3{bottom:875.804850px;}
.y16e{bottom:875.805600px;}
.y1b1{bottom:879.706500px;}
.y60{bottom:880.754850px;}
.y2f{bottom:885.497100px;}
.y8{bottom:886.298550px;}
.y85{bottom:886.301100px;}
.yf7{bottom:889.304850px;}
.y11d{bottom:893.801850px;}
.yd2{bottom:898.304850px;}
.y16d{bottom:898.305600px;}
.y1b0{bottom:899.506500px;}
.y5f{bottom:902.804850px;}
.y7{bottom:904.298550px;}
.y144{bottom:904.301850px;}
.y2e{bottom:907.697100px;}
.y84{bottom:908.801100px;}
.y11c{bottom:914.801850px;}
.yf6{bottom:916.304850px;}
.y1af{bottom:919.306500px;}
.yd1{bottom:920.804850px;}
.y16c{bottom:920.805600px;}
.y5e{bottom:924.854850px;}
.y143{bottom:925.301850px;}
.y2d{bottom:929.897100px;}
.y83{bottom:931.301100px;}
.yf5{bottom:938.804850px;}
.y1ae{bottom:939.106500px;}
.yd0{bottom:943.304850px;}
.y16b{bottom:943.305600px;}
.y6{bottom:944.798550px;}
.y11b{bottom:946.301850px;}
.y5d{bottom:946.904850px;}
.y2c{bottom:952.097100px;}
.y82{bottom:953.801100px;}
.y142{bottom:956.801850px;}
.y18e{bottom:956.897700px;}
.y1ad{bottom:958.906500px;}
.yf4{bottom:961.304850px;}
.y16a{bottom:965.805600px;}
.y11a{bottom:967.301850px;}
.y5c{bottom:968.954700px;}
.y5{bottom:975.398550px;}
.y18d{bottom:976.697700px;}
.y1ac{bottom:978.706500px;}
.yf3{bottom:983.804850px;}
.y141{bottom:988.301850px;}
.ycf{bottom:988.304850px;}
.y169{bottom:988.305600px;}
.y5b{bottom:991.004850px;}
.y1ab{bottom:998.506500px;}
.y81{bottom:998.801100px;}
.y119{bottom:998.801850px;}
.y18c{bottom:1005.001650px;}
.yf2{bottom:1006.304850px;}
.y140{bottom:1009.301850px;}
.y168{bottom:1010.805600px;}
.y2b{bottom:1012.605000px;}
.y5a{bottom:1013.054850px;}
.y1aa{bottom:1018.306500px;}
.y80{bottom:1019.801100px;}
.y118{bottom:1019.801850px;}
.ya3{bottom:1028.804850px;}
.yf1{bottom:1033.304850px;}
.y167{bottom:1033.305600px;}
.y59{bottom:1035.104850px;}
.y13f{bottom:1040.801850px;}
.y117{bottom:1051.301850px;}
.ya2{bottom:1051.304850px;}
.yce{bottom:1055.804850px;}
.y166{bottom:1055.805600px;}
.y58{bottom:1057.154850px;}
.y7f{bottom:1061.801100px;}
.y1a9{bottom:1065.106500px;}
.y116{bottom:1072.301850px;}
.ya1{bottom:1073.804850px;}
.ycd{bottom:1078.304850px;}
.y165{bottom:1078.305600px;}
.y57{bottom:1079.204700px;}
.y13e{bottom:1093.301850px;}
.y1a8{bottom:1096.110450px;}
.yb1{bottom:1100.804850px;}
.y2a{bottom:1100.805000px;}
.y164{bottom:1100.805600px;}
.y56{bottom:1101.254850px;}
.y7e{bottom:1103.801100px;}
.y115{bottom:1103.801850px;}
.y4{bottom:1104.502500px;}
.y1a7{bottom:1121.310450px;}
.y55{bottom:1123.304850px;}
.y29{bottom:1123.305000px;}
.y163{bottom:1123.305600px;}
.y3{bottom:1124.302500px;}
.y7d{bottom:1124.801100px;}
.y114{bottom:1124.801850px;}
.y54{bottom:1176.323550px;}
.y28{bottom:1176.323700px;}
.y113{bottom:1176.324300px;}
.h9{height:29.702256px;}
.h2{height:43.989258px;}
.h3{height:45.852539px;}
.ha{height:48.399902px;}
.hb{height:50.947266px;}
.h4{height:53.367188px;}
.hc{height:53.494629px;}
.h5{height:56.041992px;}
.hd{height:58.218750px;}
.h8{height:61.136719px;}
.h7{height:71.326172px;}
.h6{height:86.610352px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:106.299150px;}
.x3{left:127.558950px;}
.x5{left:133.299150px;}
.x7{left:148.818900px;}
.x8{left:153.070950px;}
.x9{left:178.582800px;}
.xb{left:218.976300px;}
.x6{left:229.634850px;}
.x4{left:237.734850px;}
.x2{left:265.747950px;}
.x10{left:506.155050px;}
.xe{left:545.503800px;}
.xd{left:564.760500px;}
.xf{left:615.763500px;}
.x11{left:630.819150px;}
.xc{left:645.004650px;}
.xa{left:683.524500px;}
@media print{
.v3{vertical-align:-17.760000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:2.666667pt;}
.v4{vertical-align:18.648000pt;}
.v2{vertical-align:21.312000pt;}
.ls3{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.000267pt;}
.ls13{letter-spacing:0.000533pt;}
.ls10{letter-spacing:0.014400pt;}
.lsd{letter-spacing:0.320000pt;}
.ls11{letter-spacing:1.701333pt;}
.lsb{letter-spacing:2.154133pt;}
.lsc{letter-spacing:3.200000pt;}
.lsf{letter-spacing:3.730370pt;}
.ls8{letter-spacing:3.730963pt;}
.ls7{letter-spacing:3.733333pt;}
.ls9{letter-spacing:3.742222pt;}
.ls5{letter-spacing:3.742815pt;}
.ls4{letter-spacing:4.266667pt;}
.ls6{letter-spacing:4.800000pt;}
.ls0{letter-spacing:5.866667pt;}
.ls2{letter-spacing:7.466667pt;}
.lsa{letter-spacing:8.736533pt;}
.ls1{letter-spacing:9.066667pt;}
.ls12{letter-spacing:17.600000pt;}
.wsd{word-spacing:-32.090667pt;}
.wsb{word-spacing:-22.352000pt;}
.ws9{word-spacing:-18.304000pt;}
.wsc{word-spacing:-18.186667pt;}
.ws2{word-spacing:-17.984000pt;}
.ws1{word-spacing:-16.485333pt;}
.ws8{word-spacing:-15.808000pt;}
.wsa{word-spacing:-15.736000pt;}
.ws6{word-spacing:-14.986667pt;}
.wse{word-spacing:-14.490667pt;}
.ws4{word-spacing:-14.237333pt;}
.ws3{word-spacing:-10.484672pt;}
.ws7{word-spacing:-0.064000pt;}
.ws0{word-spacing:-0.048000pt;}
.ws5{word-spacing:0.000000pt;}
._1a{margin-left:-18.558400pt;}
._1f{margin-left:-17.166400pt;}
._17{margin-left:-11.930667pt;}
._14{margin-left:-10.432000pt;}
._8{margin-left:-9.200000pt;}
._7{margin-left:-7.706667pt;}
._1c{margin-left:-6.656000pt;}
._3{margin-left:-5.760000pt;}
._12{margin-left:-4.452267pt;}
._6{margin-left:-3.109333pt;}
._9{margin-left:-1.994667pt;}
._1{margin-left:-1.008000pt;}
._4{width:1.200000pt;}
._a{width:2.314667pt;}
._d{width:4.032000pt;}
._15{width:5.699200pt;}
._10{width:7.024000pt;}
._e{width:8.640000pt;}
._f{width:9.600000pt;}
._11{width:11.008000pt;}
._16{width:12.416000pt;}
._21{width:13.392000pt;}
._18{width:14.896000pt;}
._19{width:15.856000pt;}
._1e{width:16.877333pt;}
._1d{width:18.211733pt;}
._23{width:19.886933pt;}
._b{width:21.696000pt;}
._c{width:22.608000pt;}
._20{width:24.704000pt;}
._24{width:28.112000pt;}
._1b{width:29.120000pt;}
._22{width:44.234667pt;}
._13{width:51.306507pt;}
._0{width:61.072000pt;}
._2{width:328.185067pt;}
._5{width:656.272000pt;}
.fs6{font-size:31.093333pt;}
.fsc{font-size:32.648000pt;}
.fsd{font-size:34.202667pt;}
.fs5{font-size:37.312000pt;}
.fs9{font-size:37.333333pt;}
.fs8{font-size:42.666667pt;}
.fs1{font-size:48.000000pt;}
.fs7{font-size:50.666667pt;}
.fsa{font-size:53.333333pt;}
.fsb{font-size:56.000000pt;}
.fs0{font-size:58.666667pt;}
.fs4{font-size:64.000000pt;}
.fs3{font-size:74.666667pt;}
.fs2{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y53{bottom:51.627600pt;}
.y2{bottom:51.627733pt;}
.y27{bottom:51.627867pt;}
.y112{bottom:51.628267pt;}
.y52{bottom:70.560933pt;}
.y1{bottom:70.561067pt;}
.y26{bottom:70.561200pt;}
.y111{bottom:70.561600pt;}
.y7c{bottom:113.385733pt;}
.y25{bottom:113.385867pt;}
.y13d{bottom:113.386400pt;}
.y51{bottom:115.641867pt;}
.y1d2{bottom:116.894667pt;}
.ya0{bottom:117.825733pt;}
.y162{bottom:117.826400pt;}
.y7b{bottom:128.052400pt;}
.y13c{bottom:128.053067pt;}
.y18b{bottom:128.534800pt;}
.y24{bottom:132.492533pt;}
.y50{bottom:135.641867pt;}
.y161{bottom:136.724133pt;}
.y1d1{bottom:136.894667pt;}
.yf0{bottom:138.493200pt;}
.y110{bottom:139.826533pt;}
.ycc{bottom:141.867467pt;}
.y13b{bottom:142.719733pt;}
.y7a{bottom:147.159067pt;}
.yb0{bottom:148.534133pt;}
.y18a{bottom:148.534800pt;}
.y1d0{bottom:155.561333pt;}
.y4f{bottom:155.641867pt;}
.y13a{bottom:157.386400pt;}
.yef{bottom:158.493200pt;}
.y23{bottom:158.661867pt;}
.ycb{bottom:160.534133pt;}
.y160{bottom:166.490533pt;}
.y189{bottom:168.534800pt;}
.y1cf{bottom:174.228000pt;}
.y4e{bottom:175.375200pt;}
.y139{bottom:176.493067pt;}
.yee{bottom:178.493200pt;}
.y22{bottom:178.661867pt;}
.y9f{bottom:179.823200pt;}
.y79{bottom:181.067467pt;}
.y15f{bottom:186.490533pt;}
.y10f{bottom:186.493200pt;}
.yca{bottom:188.534133pt;}
.y188{bottom:188.534800pt;}
.y1ce{bottom:192.894667pt;}
.y4d{bottom:195.108533pt;}
.y21{bottom:198.395200pt;}
.yed{bottom:198.493200pt;}
.y78{bottom:199.734133pt;}
.y9e{bottom:199.823200pt;}
.y10e{bottom:205.159867pt;}
.y15e{bottom:206.490533pt;}
.yc9{bottom:207.200800pt;}
.y187{bottom:208.534800pt;}
.y1cd{bottom:211.561333pt;}
.y4c{bottom:214.841867pt;}
.y138{bottom:215.823867pt;}
.y20{bottom:218.128533pt;}
.yec{bottom:218.493200pt;}
.y9d{bottom:219.823200pt;}
.y15d{bottom:226.490533pt;}
.y186{bottom:228.534800pt;}
.y10d{bottom:233.159867pt;}
.y137{bottom:234.490533pt;}
.y4b{bottom:234.575200pt;}
.yc8{bottom:235.200800pt;}
.y1f{bottom:237.861867pt;}
.y77{bottom:238.400800pt;}
.yeb{bottom:238.493200pt;}
.y9c{bottom:239.823200pt;}
.y15c{bottom:246.490533pt;}
.y185{bottom:248.534800pt;}
.y10c{bottom:251.826533pt;}
.yc7{bottom:253.867467pt;}
.y4a{bottom:254.308533pt;}
.y1e{bottom:257.595200pt;}
.y76{bottom:258.400800pt;}
.yea{bottom:258.493200pt;}
.y9b{bottom:259.823200pt;}
.y136{bottom:262.490533pt;}
.y15b{bottom:266.490533pt;}
.y184{bottom:268.534800pt;}
.y49{bottom:274.041867pt;}
.y1d{bottom:277.328533pt;}
.y75{bottom:278.400800pt;}
.ye9{bottom:278.493200pt;}
.y1cc{bottom:279.561333pt;}
.y9a{bottom:279.823200pt;}
.y10b{bottom:279.826533pt;}
.y135{bottom:281.157200pt;}
.yc6{bottom:281.867467pt;}
.y15a{bottom:286.490533pt;}
.y183{bottom:288.534800pt;}
.y48{bottom:293.775200pt;}
.y1cb{bottom:295.561333pt;}
.y1c{bottom:297.061867pt;}
.ye8{bottom:298.493200pt;}
.y99{bottom:299.823200pt;}
.yc5{bottom:300.534133pt;}
.y159{bottom:306.490533pt;}
.y182{bottom:308.534800pt;}
.y134{bottom:309.157200pt;}
.y1ca{bottom:311.561333pt;}
.y47{bottom:313.508533pt;}
.y1b{bottom:316.795200pt;}
.ye7{bottom:318.493200pt;}
.y98{bottom:319.823200pt;}
.y74{bottom:325.959733pt;}
.y158{bottom:326.490533pt;}
.y10a{bottom:326.493200pt;}
.y133{bottom:327.823867pt;}
.yc4{bottom:328.534133pt;}
.y181{bottom:328.534800pt;}
.y46{bottom:333.241867pt;}
.y1a{bottom:336.528533pt;}
.ye6{bottom:338.493200pt;}
.y97{bottom:339.823200pt;}
.y157{bottom:346.490533pt;}
.yc3{bottom:347.200800pt;}
.y1a6{bottom:347.457600pt;}
.y73{bottom:348.359867pt;}
.y180{bottom:348.534800pt;}
.y45{bottom:352.975200pt;}
.y109{bottom:354.493200pt;}
.y132{bottom:355.823867pt;}
.y19{bottom:356.261867pt;}
.ye5{bottom:358.493200pt;}
.y1c9{bottom:359.561333pt;}
.y96{bottom:359.823200pt;}
.y156{bottom:366.490533pt;}
.y17f{bottom:368.534800pt;}
.y44{bottom:372.708533pt;}
.y131{bottom:375.823867pt;}
.y18{bottom:375.995200pt;}
.y1c8{bottom:377.161333pt;}
.ye4{bottom:378.493200pt;}
.y95{bottom:379.823200pt;}
.y108{bottom:382.493200pt;}
.y1a5{bottom:382.657600pt;}
.yc2{bottom:384.534133pt;}
.y155{bottom:386.490533pt;}
.y17e{bottom:388.534800pt;}
.y43{bottom:392.441867pt;}
.y1c7{bottom:394.761333pt;}
.y17{bottom:395.728533pt;}
.y130{bottom:395.823867pt;}
.ye3{bottom:398.493200pt;}
.y94{bottom:399.823200pt;}
.y1a4{bottom:400.257600pt;}
.y107{bottom:401.159867pt;}
.yc1{bottom:404.534133pt;}
.y154{bottom:406.490533pt;}
.y17d{bottom:408.534800pt;}
.y42{bottom:412.175200pt;}
.y1c6{bottom:412.361333pt;}
.y16{bottom:415.461867pt;}
.y12f{bottom:415.823867pt;}
.y1a3{bottom:417.857600pt;}
.ye2{bottom:418.493200pt;}
.y93{bottom:419.823200pt;}
.yaf{bottom:421.867467pt;}
.yc0{bottom:424.534133pt;}
.y153{bottom:426.490533pt;}
.y17c{bottom:428.534800pt;}
.y106{bottom:429.159867pt;}
.y72{bottom:429.959867pt;}
.y1c5{bottom:429.961333pt;}
.y41{bottom:431.908533pt;}
.y15{bottom:435.195200pt;}
.y1a2{bottom:435.457600pt;}
.y12e{bottom:435.823867pt;}
.ye1{bottom:438.493200pt;}
.y92{bottom:439.823200pt;}
.yae{bottom:441.867467pt;}
.ybf{bottom:444.534133pt;}
.y152{bottom:446.490533pt;}
.y1c4{bottom:447.561333pt;}
.y17b{bottom:448.534800pt;}
.y71{bottom:449.693200pt;}
.y40{bottom:451.641867pt;}
.y1a1{bottom:453.057600pt;}
.y14{bottom:454.928533pt;}
.y12d{bottom:455.823867pt;}
.ye0{bottom:458.493200pt;}
.y91{bottom:459.823200pt;}
.yad{bottom:461.867467pt;}
.ybe{bottom:464.534133pt;}
.y1c3{bottom:465.161333pt;}
.y151{bottom:466.490533pt;}
.y105{bottom:466.493200pt;}
.y17a{bottom:468.534800pt;}
.y70{bottom:469.293200pt;}
.y1a0{bottom:470.657600pt;}
.y3f{bottom:471.375200pt;}
.y13{bottom:474.661867pt;}
.y12c{bottom:475.823867pt;}
.ydf{bottom:478.493200pt;}
.y90{bottom:479.823200pt;}
.yac{bottom:481.867467pt;}
.y1c2{bottom:482.761333pt;}
.ybd{bottom:484.534133pt;}
.y150{bottom:486.490533pt;}
.y104{bottom:486.493200pt;}
.y19f{bottom:488.257600pt;}
.y179{bottom:488.534800pt;}
.y6f{bottom:488.893200pt;}
.y3e{bottom:491.108533pt;}
.y12{bottom:494.395200pt;}
.y12b{bottom:495.823867pt;}
.yde{bottom:498.493200pt;}
.y8f{bottom:499.823200pt;}
.y1c1{bottom:500.361333pt;}
.yab{bottom:501.867467pt;}
.ybc{bottom:504.534133pt;}
.y19e{bottom:505.857600pt;}
.y14f{bottom:506.490533pt;}
.y103{bottom:506.493200pt;}
.y6e{bottom:508.493200pt;}
.y178{bottom:508.534800pt;}
.y3d{bottom:510.841867pt;}
.y11{bottom:514.395200pt;}
.y12a{bottom:515.823867pt;}
.y1c0{bottom:517.961333pt;}
.ydd{bottom:518.493200pt;}
.y8e{bottom:519.823200pt;}
.yaa{bottom:521.867467pt;}
.y19d{bottom:523.457600pt;}
.ybb{bottom:524.534133pt;}
.y14e{bottom:526.490533pt;}
.y102{bottom:526.493200pt;}
.y6d{bottom:528.093200pt;}
.y177{bottom:528.534800pt;}
.y3c{bottom:530.575200pt;}
.y10{bottom:534.128533pt;}
.y1bf{bottom:535.561333pt;}
.y129{bottom:535.823867pt;}
.y8d{bottom:539.823200pt;}
.y19c{bottom:541.057600pt;}
.ya9{bottom:541.867467pt;}
.yba{bottom:544.534133pt;}
.y101{bottom:546.493200pt;}
.y6c{bottom:547.693200pt;}
.y176{bottom:548.534800pt;}
.y3b{bottom:550.308533pt;}
.y1be{bottom:553.161333pt;}
.yf{bottom:553.861867pt;}
.y128{bottom:555.823867pt;}
.ydc{bottom:558.493200pt;}
.y19b{bottom:558.657600pt;}
.ya8{bottom:561.867467pt;}
.yb9{bottom:564.534133pt;}
.y100{bottom:566.493200pt;}
.y6b{bottom:567.293200pt;}
.y175{bottom:568.534800pt;}
.y3a{bottom:570.041867pt;}
.y14d{bottom:570.490533pt;}
.y1bd{bottom:570.761333pt;}
.ye{bottom:573.595200pt;}
.y127{bottom:575.823867pt;}
.y19a{bottom:576.257600pt;}
.y8c{bottom:579.823200pt;}
.ya7{bottom:581.867467pt;}
.yb8{bottom:584.534133pt;}
.yff{bottom:586.493200pt;}
.y6a{bottom:586.893200pt;}
.y1bc{bottom:588.361333pt;}
.y174{bottom:588.534800pt;}
.y14c{bottom:589.157200pt;}
.y39{bottom:589.775200pt;}
.yd{bottom:593.328533pt;}
.y199{bottom:593.857600pt;}
.y126{bottom:595.823867pt;}
.y8b{bottom:599.823200pt;}
.ya6{bottom:601.867467pt;}
.yb7{bottom:604.534133pt;}
.y1bb{bottom:605.961333pt;}
.y69{bottom:606.493200pt;}
.y173{bottom:608.534800pt;}
.y38{bottom:609.508533pt;}
.y198{bottom:611.457600pt;}
.yc{bottom:613.061867pt;}
.y125{bottom:615.823867pt;}
.y14b{bottom:617.157200pt;}
.ydb{bottom:618.493200pt;}
.y8a{bottom:619.823200pt;}
.ya5{bottom:621.867467pt;}
.y1ba{bottom:623.561333pt;}
.yb6{bottom:624.534133pt;}
.y68{bottom:626.093200pt;}
.yfe{bottom:626.493200pt;}
.y172{bottom:628.534800pt;}
.y197{bottom:629.057600pt;}
.y37{bottom:629.241867pt;}
.yb{bottom:632.795200pt;}
.y124{bottom:635.823867pt;}
.yda{bottom:638.493200pt;}
.y89{bottom:639.823200pt;}
.y1b9{bottom:641.161333pt;}
.yb5{bottom:644.534133pt;}
.y67{bottom:645.693200pt;}
.yfd{bottom:646.493200pt;}
.y196{bottom:646.657600pt;}
.y171{bottom:648.534800pt;}
.y36{bottom:648.975200pt;}
.y123{bottom:655.823867pt;}
.yd9{bottom:658.493200pt;}
.ya4{bottom:658.759867pt;}
.y1b8{bottom:658.761333pt;}
.y88{bottom:659.823200pt;}
.y14a{bottom:663.823867pt;}
.y195{bottom:664.257600pt;}
.yb4{bottom:664.534133pt;}
.y66{bottom:665.293200pt;}
.yfc{bottom:666.493200pt;}
.y170{bottom:668.534800pt;}
.y35{bottom:668.708533pt;}
.y122{bottom:675.823867pt;}
.y1b7{bottom:676.361333pt;}
.ya{bottom:677.420933pt;}
.yd8{bottom:678.493200pt;}
.y194{bottom:681.857600pt;}
.y149{bottom:682.490533pt;}
.yb3{bottom:684.534133pt;}
.y65{bottom:684.893200pt;}
.yfb{bottom:686.493200pt;}
.y34{bottom:688.441867pt;}
.y1b6{bottom:693.961333pt;}
.y121{bottom:695.823867pt;}
.y16f{bottom:696.093867pt;}
.yd7{bottom:698.493200pt;}
.y193{bottom:699.457600pt;}
.y87{bottom:703.823200pt;}
.y64{bottom:704.493200pt;}
.yfa{bottom:706.493200pt;}
.y33{bottom:708.175200pt;}
.y148{bottom:710.490533pt;}
.y1b5{bottom:711.561333pt;}
.y120{bottom:715.823867pt;}
.y192{bottom:717.057600pt;}
.yd6{bottom:718.493200pt;}
.y63{bottom:724.093200pt;}
.yf9{bottom:726.493200pt;}
.y32{bottom:727.908533pt;}
.y147{bottom:729.157200pt;}
.y1b4{bottom:729.161333pt;}
.yb2{bottom:732.093200pt;}
.y191{bottom:734.657600pt;}
.y11f{bottom:735.823867pt;}
.yd5{bottom:738.493200pt;}
.y62{bottom:743.693200pt;}
.yf8{bottom:746.493200pt;}
.y1b3{bottom:746.761333pt;}
.y31{bottom:747.641867pt;}
.y190{bottom:752.257600pt;}
.y11e{bottom:755.823867pt;}
.y146{bottom:757.157200pt;}
.yd4{bottom:758.493200pt;}
.y61{bottom:763.293067pt;}
.y1b2{bottom:764.361333pt;}
.y30{bottom:767.375200pt;}
.y86{bottom:767.823200pt;}
.y9{bottom:771.820933pt;}
.y145{bottom:775.823867pt;}
.y18f{bottom:777.416667pt;}
.yd3{bottom:778.493200pt;}
.y16e{bottom:778.493867pt;}
.y1b1{bottom:781.961333pt;}
.y60{bottom:782.893200pt;}
.y2f{bottom:787.108533pt;}
.y8{bottom:787.820933pt;}
.y85{bottom:787.823200pt;}
.yf7{bottom:790.493200pt;}
.y11d{bottom:794.490533pt;}
.yd2{bottom:798.493200pt;}
.y16d{bottom:798.493867pt;}
.y1b0{bottom:799.561333pt;}
.y5f{bottom:802.493200pt;}
.y7{bottom:803.820933pt;}
.y144{bottom:803.823867pt;}
.y2e{bottom:806.841867pt;}
.y84{bottom:807.823200pt;}
.y11c{bottom:813.157200pt;}
.yf6{bottom:814.493200pt;}
.y1af{bottom:817.161333pt;}
.yd1{bottom:818.493200pt;}
.y16c{bottom:818.493867pt;}
.y5e{bottom:822.093200pt;}
.y143{bottom:822.490533pt;}
.y2d{bottom:826.575200pt;}
.y83{bottom:827.823200pt;}
.yf5{bottom:834.493200pt;}
.y1ae{bottom:834.761333pt;}
.yd0{bottom:838.493200pt;}
.y16b{bottom:838.493867pt;}
.y6{bottom:839.820933pt;}
.y11b{bottom:841.157200pt;}
.y5d{bottom:841.693200pt;}
.y2c{bottom:846.308533pt;}
.y82{bottom:847.823200pt;}
.y142{bottom:850.490533pt;}
.y18e{bottom:850.575733pt;}
.y1ad{bottom:852.361333pt;}
.yf4{bottom:854.493200pt;}
.y16a{bottom:858.493867pt;}
.y11a{bottom:859.823867pt;}
.y5c{bottom:861.293067pt;}
.y5{bottom:867.020933pt;}
.y18d{bottom:868.175733pt;}
.y1ac{bottom:869.961333pt;}
.yf3{bottom:874.493200pt;}
.y141{bottom:878.490533pt;}
.ycf{bottom:878.493200pt;}
.y169{bottom:878.493867pt;}
.y5b{bottom:880.893200pt;}
.y1ab{bottom:887.561333pt;}
.y81{bottom:887.823200pt;}
.y119{bottom:887.823867pt;}
.y18c{bottom:893.334800pt;}
.yf2{bottom:894.493200pt;}
.y140{bottom:897.157200pt;}
.y168{bottom:898.493867pt;}
.y2b{bottom:900.093333pt;}
.y5a{bottom:900.493200pt;}
.y1aa{bottom:905.161333pt;}
.y80{bottom:906.489867pt;}
.y118{bottom:906.490533pt;}
.ya3{bottom:914.493200pt;}
.yf1{bottom:918.493200pt;}
.y167{bottom:918.493867pt;}
.y59{bottom:920.093200pt;}
.y13f{bottom:925.157200pt;}
.y117{bottom:934.490533pt;}
.ya2{bottom:934.493200pt;}
.yce{bottom:938.493200pt;}
.y166{bottom:938.493867pt;}
.y58{bottom:939.693200pt;}
.y7f{bottom:943.823200pt;}
.y1a9{bottom:946.761333pt;}
.y116{bottom:953.157200pt;}
.ya1{bottom:954.493200pt;}
.ycd{bottom:958.493200pt;}
.y165{bottom:958.493867pt;}
.y57{bottom:959.293067pt;}
.y13e{bottom:971.823867pt;}
.y1a8{bottom:974.320400pt;}
.yb1{bottom:978.493200pt;}
.y2a{bottom:978.493333pt;}
.y164{bottom:978.493867pt;}
.y56{bottom:978.893200pt;}
.y7e{bottom:981.156533pt;}
.y115{bottom:981.157200pt;}
.y4{bottom:981.780000pt;}
.y1a7{bottom:996.720400pt;}
.y55{bottom:998.493200pt;}
.y29{bottom:998.493333pt;}
.y163{bottom:998.493867pt;}
.y3{bottom:999.380000pt;}
.y7d{bottom:999.823200pt;}
.y114{bottom:999.823867pt;}
.y54{bottom:1045.620933pt;}
.y28{bottom:1045.621067pt;}
.y113{bottom:1045.621600pt;}
.h9{height:26.402005pt;}
.h2{height:39.101562pt;}
.h3{height:40.757812pt;}
.ha{height:43.022135pt;}
.hb{height:45.286458pt;}
.h4{height:47.437500pt;}
.hc{height:47.550781pt;}
.h5{height:49.815104pt;}
.hd{height:51.750000pt;}
.h8{height:54.343750pt;}
.h7{height:63.401042pt;}
.h6{height:76.986979pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:94.488133pt;}
.x3{left:113.385733pt;}
.x5{left:118.488133pt;}
.x7{left:132.283467pt;}
.x8{left:136.063067pt;}
.x9{left:158.740267pt;}
.xb{left:194.645600pt;}
.x6{left:204.119867pt;}
.x4{left:211.319867pt;}
.x2{left:236.220400pt;}
.x10{left:449.915600pt;}
.xe{left:484.892267pt;}
.xd{left:502.009333pt;}
.xf{left:547.345333pt;}
.x11{left:560.728133pt;}
.xc{left:573.337467pt;}
.xa{left:607.577333pt;}
}




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