
    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_36d142ff6871b73b64c33f9e.woff')format("woff");}.ff1{font-family:ff1;line-height:1.054000;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_c4ba7bcf38e48cbc8a164913.woff')format("woff");}.ff2{font-family:ff2;line-height:0.918000;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_b641d1c9185187a9b0e4c2ca.woff')format("woff");}.ff3{font-family:ff3;line-height:0.918000;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_9c457cdc903f12e94ffc7e67.woff')format("woff");}.ff4{font-family:ff4;line-height:0.919000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_15854afd64970462687d22ef.woff')format("woff");}.ff5{font-family:ff5;line-height:1.054000;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_483686f17b8558132f631f78.woff')format("woff");}.ff6{font-family:ff6;line-height:0.913000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-16.377600px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:4.416000px;}
.v2{vertical-align:16.371000px;}
.ls11{letter-spacing:-5.280000px;}
.lsd{letter-spacing:-2.310000px;}
.lse{letter-spacing:-1.980000px;}
.ls10{letter-spacing:-1.650000px;}
.ls9{letter-spacing:-1.320000px;}
.ls8{letter-spacing:-1.200000px;}
.ls13{letter-spacing:-1.020000px;}
.ls3{letter-spacing:-0.990000px;}
.ls1{letter-spacing:-0.660000px;}
.ls7{letter-spacing:-0.600000px;}
.ls4{letter-spacing:-0.540000px;}
.ls12{letter-spacing:-0.420000px;}
.lsc{letter-spacing:-0.198000px;}
.lsb{letter-spacing:-0.132000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.000163px;}
.lsa{letter-spacing:0.330000px;}
.lsf{letter-spacing:28.680000px;}
.ls5{letter-spacing:41.976000px;}
.ls6{letter-spacing:645.324077px;}
.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:-13.068000px;}
.ws22{word-spacing:-12.870000px;}
.ws6{word-spacing:-12.408000px;}
.ws18{word-spacing:-12.342000px;}
.ws8{word-spacing:-12.078000px;}
.ws9{word-spacing:-12.012000px;}
.ws1{word-spacing:-11.880000px;}
.ws20{word-spacing:-11.814000px;}
.ws17{word-spacing:-11.748000px;}
.ws37{word-spacing:-11.460000px;}
.ws28{word-spacing:-11.418000px;}
.ws36{word-spacing:-11.088000px;}
.ws26{word-spacing:-10.920000px;}
.ws38{word-spacing:-10.860000px;}
.ws2{word-spacing:-10.692000px;}
.ws29{word-spacing:-10.320000px;}
.ws0{word-spacing:-9.504000px;}
.wsc{word-spacing:-9.288000px;}
.wsa{word-spacing:-7.757165px;}
.ws7{word-spacing:-3.660000px;}
.ws2c{word-spacing:-1.500000px;}
.ws21{word-spacing:-1.227600px;}
.ws42{word-spacing:-0.780000px;}
.ws49{word-spacing:-0.360000px;}
.ws19{word-spacing:-0.330000px;}
.ws3{word-spacing:0.000000px;}
.ws2b{word-spacing:0.120000px;}
.ws1d{word-spacing:0.132000px;}
.ws23{word-spacing:0.198000px;}
.ws34{word-spacing:0.240000px;}
.ws3d{word-spacing:0.420000px;}
.ws46{word-spacing:0.600000px;}
.ws4a{word-spacing:0.720000px;}
.ws35{word-spacing:1.020000px;}
.ws4b{word-spacing:2.100000px;}
.ws2a{word-spacing:2.580000px;}
.ws2f{word-spacing:2.820000px;}
.ws3e{word-spacing:3.000000px;}
.ws3a{word-spacing:3.420000px;}
.ws3b{word-spacing:3.720000px;}
.ws48{word-spacing:4.020000px;}
.ws43{word-spacing:4.140000px;}
.ws27{word-spacing:4.980000px;}
.ws3f{word-spacing:5.340000px;}
.ws41{word-spacing:5.520000px;}
.ws1b{word-spacing:5.676000px;}
.ws47{word-spacing:5.940000px;}
.ws3c{word-spacing:8.280000px;}
.ws30{word-spacing:9.360000px;}
.ws1c{word-spacing:9.702000px;}
.ws2e{word-spacing:11.760000px;}
.ws32{word-spacing:11.880000px;}
.ws39{word-spacing:13.860000px;}
.ws33{word-spacing:16.200000px;}
.ws40{word-spacing:18.180000px;}
.ws11{word-spacing:22.157400px;}
.ws1e{word-spacing:23.543400px;}
.ws1f{word-spacing:24.599400px;}
.ws2d{word-spacing:26.400000px;}
.ws1a{word-spacing:26.579400px;}
.wsb{word-spacing:27.437400px;}
.ws4{word-spacing:28.361400px;}
.ws44{word-spacing:30.011400px;}
.ws16{word-spacing:30.209400px;}
.ws45{word-spacing:30.540000px;}
.ws24{word-spacing:32.585400px;}
.ws25{word-spacing:35.687400px;}
.ws31{word-spacing:43.937400px;}
.ws5{word-spacing:506.836800px;}
.ws13{word-spacing:564.420000px;}
.ws14{word-spacing:565.980000px;}
.wse{word-spacing:579.660000px;}
.wsf{word-spacing:584.940000px;}
.ws10{word-spacing:805.140000px;}
.ws15{word-spacing:810.600000px;}
.ws12{word-spacing:882.060000px;}
._1a{margin-left:-79.068000px;}
._2a{margin-left:-13.520400px;}
._27{margin-left:-12.156000px;}
._29{margin-left:-6.643800px;}
._25{margin-left:-5.511000px;}
._2{margin-left:-4.508400px;}
._0{margin-left:-2.644800px;}
._1{margin-left:-1.050000px;}
._3{width:1.036800px;}
._4{width:2.214000px;}
._a{width:3.300000px;}
._b{width:4.362000px;}
._12{width:5.508000px;}
._8{width:6.774000px;}
._9{width:7.980000px;}
._d{width:9.030000px;}
._c{width:10.098000px;}
._14{width:11.164800px;}
._6{width:13.759200px;}
._5{width:15.033000px;}
._7{width:16.074000px;}
._e{width:17.436000px;}
._13{width:19.308600px;}
._15{width:20.484600px;}
._26{width:21.861000px;}
._28{width:23.258400px;}
._2d{width:24.459600px;}
._10{width:25.548000px;}
._11{width:26.742000px;}
._19{width:27.846600px;}
._21{width:28.921200px;}
._2c{width:30.766800px;}
._17{width:32.366400px;}
._2b{width:33.440400px;}
._f{width:34.488000px;}
._18{width:53.196000px;}
._16{width:62.370000px;}
._1c{width:466.620000px;}
._1b{width:480.120000px;}
._24{width:576.300000px;}
._1d{width:591.510000px;}
._1e{width:601.260000px;}
._23{width:611.910000px;}
._20{width:645.840000px;}
._22{width:811.200000px;}
._1f{width:812.400000px;}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(163,40,50);}
.fs5{font-size:39.177600px;}
.fs1{font-size:42.000000px;}
.fs0{font-size:48.000000px;}
.fs4{font-size:54.000000px;}
.fs3{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:55.275600px;}
.y4{bottom:57.401550px;}
.y1{bottom:68.775600px;}
.y3{bottom:71.955600px;}
.yd6{bottom:116.929200px;}
.ye4{bottom:117.741300px;}
.yd2{bottom:118.533300px;}
.ydd{bottom:119.563050px;}
.y22{bottom:119.572650px;}
.y15e{bottom:119.637300px;}
.y6d{bottom:121.023600px;}
.yb4{bottom:121.178100px;}
.y11c{bottom:123.450300px;}
.y138{bottom:124.316100px;}
.y80{bottom:125.971950px;}
.y121{bottom:126.739650px;}
.yd5{bottom:133.129200px;}
.y4a{bottom:136.086600px;}
.ye3{bottom:137.541300px;}
.y21{bottom:137.572650px;}
.y15d{bottom:137.637300px;}
.yd1{bottom:138.333300px;}
.yb3{bottom:140.978100px;}
.y137{bottom:142.316100px;}
.y11b{bottom:143.250300px;}
.y120{bottom:144.739650px;}
.y7f{bottom:145.771950px;}
.yd4{bottom:149.329200px;}
.yf5{bottom:153.423600px;}
.y20{bottom:155.572650px;}
.y15c{bottom:155.637300px;}
.y49{bottom:155.886600px;}
.ye2{bottom:157.341300px;}
.yd0{bottom:158.133300px;}
.y136{bottom:160.316100px;}
.yb2{bottom:160.778100px;}
.y11f{bottom:162.739650px;}
.y8e{bottom:163.020150px;}
.y11a{bottom:163.050300px;}
.yd3{bottom:169.623600px;}
.y1f{bottom:173.572650px;}
.y15b{bottom:173.637300px;}
.y48{bottom:175.686600px;}
.ye1{bottom:177.141300px;}
.ycf{bottom:177.933300px;}
.y135{bottom:178.316100px;}
.y7e{bottom:180.454950px;}
.yb1{bottom:180.578100px;}
.y11e{bottom:180.739650px;}
.y8d{bottom:182.820150px;}
.y119{bottom:182.850300px;}
.ya3{bottom:183.888750px;}
.y1e{bottom:191.572650px;}
.y15a{bottom:191.637300px;}
.y47{bottom:195.486600px;}
.y134{bottom:196.316100px;}
.ye0{bottom:196.941300px;}
.yce{bottom:197.733300px;}
.y11d{bottom:198.739650px;}
.yb0{bottom:200.378100px;}
.y118{bottom:202.650300px;}
.ya2{bottom:203.688750px;}
.y159{bottom:209.637300px;}
.y1d{bottom:213.817650px;}
.y133{bottom:214.316100px;}
.y46{bottom:215.286600px;}
.ydf{bottom:216.741300px;}
.ycd{bottom:217.533300px;}
.y8c{bottom:222.421500px;}
.y117{bottom:222.450300px;}
.ya1{bottom:223.488750px;}
.y7d{bottom:225.763950px;}
.y158{bottom:227.637300px;}
.y132{bottom:232.316100px;}
.yaf{bottom:235.061100px;}
.y45{bottom:235.086600px;}
.y6c{bottom:236.541300px;}
.ycc{bottom:237.333300px;}
.y116{bottom:242.250300px;}
.ya0{bottom:243.288750px;}
.y7c{bottom:245.563950px;}
.y157{bottom:245.637300px;}
.y8b{bottom:247.670700px;}
.y131{bottom:250.316100px;}
.y44{bottom:254.886600px;}
.y6b{bottom:256.341300px;}
.ycb{bottom:257.133300px;}
.y1c{bottom:260.127000px;}
.y115{bottom:262.050300px;}
.y9f{bottom:263.088750px;}
.y156{bottom:263.637300px;}
.y7b{bottom:265.363950px;}
.y130{bottom:268.316100px;}
.yf4{bottom:270.739650px;}
.y43{bottom:274.686600px;}
.y1b{bottom:275.125500px;}
.y8a{bottom:275.716500px;}
.y6a{bottom:276.141300px;}
.yca{bottom:276.933300px;}
.yae{bottom:280.370100px;}
.y155{bottom:281.637300px;}
.y114{bottom:281.850300px;}
.y12f{bottom:286.316100px;}
.y1a{bottom:290.124000px;}
.yf3{bottom:290.539650px;}
.y42{bottom:294.486600px;}
.y69{bottom:295.941300px;}
.yc9{bottom:296.733300px;}
.y154{bottom:299.637300px;}
.yad{bottom:300.170100px;}
.y113{bottom:301.650300px;}
.y89{bottom:305.086500px;}
.y19{bottom:309.375000px;}
.y7a{bottom:309.831450px;}
.yf2{bottom:310.339650px;}
.y41{bottom:314.286600px;}
.y68{bottom:315.741300px;}
.yc8{bottom:316.533300px;}
.y153{bottom:317.637300px;}
.y12e{bottom:319.206300px;}
.yac{bottom:319.970100px;}
.y112{bottom:321.450300px;}
.y9e{bottom:322.490100px;}
.y79{bottom:329.631450px;}
.yf1{bottom:330.139650px;}
.y88{bottom:333.136500px;}
.y40{bottom:334.086600px;}
.y67{bottom:335.541300px;}
.y152{bottom:335.637300px;}
.yc7{bottom:336.333300px;}
.y111{bottom:341.250300px;}
.y18{bottom:344.191500px;}
.y9d{bottom:347.732550px;}
.y78{bottom:349.431450px;}
.yf0{bottom:349.939650px;}
.y151{bottom:353.637300px;}
.y3f{bottom:353.886600px;}
.yab{bottom:354.653100px;}
.y66{bottom:355.341300px;}
.yc6{bottom:356.133300px;}
.y110{bottom:361.050300px;}
.y87{bottom:361.186500px;}
.y17{bottom:363.991500px;}
.y12d{bottom:364.515300px;}
.y77{bottom:369.231450px;}
.yef{bottom:369.739650px;}
.y150{bottom:371.637300px;}
.y3e{bottom:373.686600px;}
.y65{bottom:375.141300px;}
.y9c{bottom:375.782550px;}
.yc5{bottom:375.933300px;}
.y10f{bottom:380.850300px;}
.y16{bottom:383.791500px;}
.y12c{bottom:384.315300px;}
.y76{bottom:389.031450px;}
.y86{bottom:389.236500px;}
.yaa{bottom:389.336100px;}
.yee{bottom:389.539650px;}
.y14f{bottom:389.637300px;}
.yde{bottom:390.024300px;}
.y64{bottom:394.941300px;}
.yc4{bottom:395.733300px;}
.y10e{bottom:400.650300px;}
.y15{bottom:403.591500px;}
.y9b{bottom:403.832550px;}
.y12b{bottom:404.115300px;}
.y14e{bottom:407.637300px;}
.y3d{bottom:408.369600px;}
.y75{bottom:408.831450px;}
.y63{bottom:414.741300px;}
.yc3{bottom:415.533300px;}
.y10d{bottom:420.450300px;}
.y85{bottom:421.790700px;}
.y12a{bottom:423.915300px;}
.y14d{bottom:425.637300px;}
.y14{bottom:427.643400px;}
.y74{bottom:428.631450px;}
.yed{bottom:429.139650px;}
.y9a{bottom:431.882550px;}
.y62{bottom:434.541300px;}
.ya9{bottom:434.645100px;}
.yc2{bottom:435.333300px;}
.y10c{bottom:440.250300px;}
.y14c{bottom:443.637300px;}
.y84{bottom:445.835700px;}
.yec{bottom:447.139650px;}
.y13{bottom:447.443400px;}
.y73{bottom:448.431450px;}
.y3c{bottom:453.687300px;}
.y61{bottom:454.341300px;}
.ya8{bottom:454.445100px;}
.yc1{bottom:455.133300px;}
.y99{bottom:459.932550px;}
.y10b{bottom:460.050300px;}
.y14b{bottom:461.637300px;}
.y129{bottom:463.515300px;}
.yeb{bottom:465.139650px;}
.y12{bottom:467.243400px;}
.y72{bottom:468.231450px;}
.y3b{bottom:471.687300px;}
.y60{bottom:474.141300px;}
.ya7{bottom:474.245100px;}
.yc0{bottom:474.933300px;}
.y14a{bottom:479.637300px;}
.y10a{bottom:479.850300px;}
.yea{bottom:483.139650px;}
.y11{bottom:487.043400px;}
.y71{bottom:488.031450px;}
.y98{bottom:492.486750px;}
.y5f{bottom:493.941300px;}
.ya6{bottom:494.045100px;}
.ybf{bottom:494.733300px;}
.y3a{bottom:496.287300px;}
.y149{bottom:497.637300px;}
.y109{bottom:499.650300px;}
.ye9{bottom:501.139650px;}
.y70{bottom:507.831450px;}
.y128{bottom:508.824300px;}
.y10{bottom:511.095450px;}
.y5e{bottom:513.741300px;}
.ya5{bottom:513.845100px;}
.y39{bottom:514.287300px;}
.ybe{bottom:514.533300px;}
.y148{bottom:515.637300px;}
.y97{bottom:516.531750px;}
.ye8{bottom:519.139650px;}
.y108{bottom:519.450300px;}
.y127{bottom:528.624300px;}
.yf{bottom:530.895300px;}
.y38{bottom:532.287300px;}
.y5d{bottom:533.541300px;}
.y147{bottom:533.637300px;}
.ybd{bottom:534.333300px;}
.ye7{bottom:537.139650px;}
.y107{bottom:539.250300px;}
.y6f{bottom:547.432800px;}
.y126{bottom:548.424300px;}
.y37{bottom:550.287300px;}
.ye{bottom:550.695300px;}
.y146{bottom:551.637300px;}
.y5c{bottom:553.341300px;}
.ya4{bottom:553.446450px;}
.ybc{bottom:554.133300px;}
.ye6{bottom:555.139650px;}
.y106{bottom:559.050300px;}
.y96{bottom:564.627300px;}
.y125{bottom:568.224300px;}
.y36{bottom:568.287300px;}
.ydc{bottom:568.894650px;}
.y145{bottom:569.637300px;}
.yd{bottom:570.495450px;}
.y5b{bottom:573.141300px;}
.ybb{bottom:573.933300px;}
.y105{bottom:578.850300px;}
.y95{bottom:584.427300px;}
.y35{bottom:586.287300px;}
.y144{bottom:587.637300px;}
.y124{bottom:588.024300px;}
.ydb{bottom:592.939650px;}
.y5a{bottom:592.941300px;}
.yba{bottom:593.733300px;}
.yc{bottom:594.547350px;}
.y104{bottom:598.650300px;}
.y94{bottom:604.227300px;}
.y34{bottom:604.287300px;}
.y143{bottom:605.637300px;}
.y123{bottom:607.824300px;}
.y59{bottom:612.741300px;}
.yb9{bottom:613.533300px;}
.yb{bottom:614.347350px;}
.y103{bottom:618.450300px;}
.y33{bottom:622.287300px;}
.y142{bottom:623.637300px;}
.y93{bottom:624.027300px;}
.y58{bottom:632.541300px;}
.yb8{bottom:633.333300px;}
.ya{bottom:634.147350px;}
.y102{bottom:638.250300px;}
.y32{bottom:640.287300px;}
.y141{bottom:641.637300px;}
.y122{bottom:647.424300px;}
.y57{bottom:652.341300px;}
.yb7{bottom:653.133300px;}
.y9{bottom:653.947350px;}
.y101{bottom:658.050300px;}
.y31{bottom:658.287300px;}
.y140{bottom:659.637300px;}
.y92{bottom:663.627300px;}
.y83{bottom:667.224300px;}
.y56{bottom:672.141300px;}
.yb6{bottom:672.933300px;}
.y30{bottom:676.287300px;}
.y13f{bottom:677.637300px;}
.y100{bottom:677.850300px;}
.y91{bottom:683.427300px;}
.ye5{bottom:687.024300px;}
.yda{bottom:691.941300px;}
.yb5{bottom:692.733300px;}
.y8{bottom:693.562350px;}
.y2f{bottom:694.287300px;}
.y13e{bottom:695.637300px;}
.yff{bottom:697.650300px;}
.y90{bottom:703.227300px;}
.y55{bottom:706.824300px;}
.yd9{bottom:711.741300px;}
.y2e{bottom:712.287300px;}
.y82{bottom:712.533300px;}
.y7{bottom:713.362350px;}
.y13d{bottom:713.637300px;}
.yfe{bottom:717.450300px;}
.yd8{bottom:731.541300px;}
.y13c{bottom:731.637300px;}
.y81{bottom:732.333300px;}
.y2d{bottom:734.532300px;}
.yfd{bottom:737.250300px;}
.y8f{bottom:737.910300px;}
.y6{bottom:741.661800px;}
.y13b{bottom:749.637300px;}
.y54{bottom:752.133300px;}
.yfc{bottom:757.050300px;}
.y2c{bottom:761.037300px;}
.y5{bottom:765.966300px;}
.yd7{bottom:766.224300px;}
.y13a{bottom:767.637300px;}
.y53{bottom:771.933300px;}
.yfb{bottom:776.850300px;}
.y2b{bottom:779.037300px;}
.y139{bottom:785.637300px;}
.y52{bottom:791.733300px;}
.yfa{bottom:796.650300px;}
.y2a{bottom:803.637300px;}
.y51{bottom:811.533300px;}
.yf9{bottom:816.450300px;}
.y29{bottom:821.637300px;}
.y50{bottom:831.333300px;}
.yf8{bottom:836.250300px;}
.y28{bottom:839.637300px;}
.y4f{bottom:851.133300px;}
.yf7{bottom:856.050300px;}
.y27{bottom:857.637300px;}
.y4e{bottom:870.933300px;}
.y26{bottom:875.637300px;}
.yf6{bottom:875.850300px;}
.y6e{bottom:887.592300px;}
.y4d{bottom:890.733300px;}
.y25{bottom:893.637300px;}
.y4c{bottom:910.533300px;}
.y24{bottom:911.637300px;}
.y23{bottom:944.548950px;}
.y4b{bottom:945.652950px;}
.ha{height:31.498790px;}
.h3{height:32.064000px;}
.h4{height:33.768000px;}
.h2{height:38.592000px;}
.h8{height:40.080000px;}
.h9{height:43.416000px;}
.hc{height:43.956000px;}
.h5{height:44.088000px;}
.h6{height:48.240000px;}
.hb{height:48.256800px;}
.h7{height:53.064000px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x16{left:97.795200px;}
.x1{left:106.299150px;}
.x15{left:114.803250px;}
.x19{left:123.310650px;}
.x1e{left:131.309100px;}
.x1b{left:139.810650px;}
.x1a{left:141.797100px;}
.x1c{left:150.304650px;}
.x1f{left:153.765000px;}
.x1d{left:162.268950px;}
.x21{left:170.078700px;}
.x4{left:190.359450px;}
.x5{left:206.793450px;}
.x6{left:213.511200px;}
.x7{left:221.251200px;}
.x18{left:233.483550px;}
.xc{left:353.437350px;}
.xf{left:407.755350px;}
.x2{left:442.119150px;}
.x12{left:444.549900px;}
.x8{left:445.918650px;}
.xd{left:453.501600px;}
.xa{left:463.926600px;}
.x10{left:467.376600px;}
.x13{left:475.101600px;}
.x9{left:489.741600px;}
.xb{left:492.397050px;}
.x11{left:495.276600px;}
.xe{left:502.431450px;}
.x14{left:508.161600px;}
.x3{left:510.696450px;}
.x22{left:602.451300px;}
.x17{left:603.969300px;}
.x20{left:605.272650px;}
@media print{
.v3{vertical-align:-14.557867pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:3.925333pt;}
.v2{vertical-align:14.552000pt;}
.ls11{letter-spacing:-4.693333pt;}
.lsd{letter-spacing:-2.053333pt;}
.lse{letter-spacing:-1.760000pt;}
.ls10{letter-spacing:-1.466667pt;}
.ls9{letter-spacing:-1.173333pt;}
.ls8{letter-spacing:-1.066667pt;}
.ls13{letter-spacing:-0.906667pt;}
.ls3{letter-spacing:-0.880000pt;}
.ls1{letter-spacing:-0.586667pt;}
.ls7{letter-spacing:-0.533333pt;}
.ls4{letter-spacing:-0.480000pt;}
.ls12{letter-spacing:-0.373333pt;}
.lsc{letter-spacing:-0.176000pt;}
.lsb{letter-spacing:-0.117333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.000145pt;}
.lsa{letter-spacing:0.293333pt;}
.lsf{letter-spacing:25.493333pt;}
.ls5{letter-spacing:37.312000pt;}
.ls6{letter-spacing:573.621402pt;}
.wsd{word-spacing:-11.616000pt;}
.ws22{word-spacing:-11.440000pt;}
.ws6{word-spacing:-11.029333pt;}
.ws18{word-spacing:-10.970667pt;}
.ws8{word-spacing:-10.736000pt;}
.ws9{word-spacing:-10.677333pt;}
.ws1{word-spacing:-10.560000pt;}
.ws20{word-spacing:-10.501333pt;}
.ws17{word-spacing:-10.442667pt;}
.ws37{word-spacing:-10.186667pt;}
.ws28{word-spacing:-10.149333pt;}
.ws36{word-spacing:-9.856000pt;}
.ws26{word-spacing:-9.706667pt;}
.ws38{word-spacing:-9.653333pt;}
.ws2{word-spacing:-9.504000pt;}
.ws29{word-spacing:-9.173333pt;}
.ws0{word-spacing:-8.448000pt;}
.wsc{word-spacing:-8.256000pt;}
.wsa{word-spacing:-6.895258pt;}
.ws7{word-spacing:-3.253333pt;}
.ws2c{word-spacing:-1.333333pt;}
.ws21{word-spacing:-1.091200pt;}
.ws42{word-spacing:-0.693333pt;}
.ws49{word-spacing:-0.320000pt;}
.ws19{word-spacing:-0.293333pt;}
.ws3{word-spacing:0.000000pt;}
.ws2b{word-spacing:0.106667pt;}
.ws1d{word-spacing:0.117333pt;}
.ws23{word-spacing:0.176000pt;}
.ws34{word-spacing:0.213333pt;}
.ws3d{word-spacing:0.373333pt;}
.ws46{word-spacing:0.533333pt;}
.ws4a{word-spacing:0.640000pt;}
.ws35{word-spacing:0.906667pt;}
.ws4b{word-spacing:1.866667pt;}
.ws2a{word-spacing:2.293333pt;}
.ws2f{word-spacing:2.506667pt;}
.ws3e{word-spacing:2.666667pt;}
.ws3a{word-spacing:3.040000pt;}
.ws3b{word-spacing:3.306667pt;}
.ws48{word-spacing:3.573333pt;}
.ws43{word-spacing:3.680000pt;}
.ws27{word-spacing:4.426667pt;}
.ws3f{word-spacing:4.746667pt;}
.ws41{word-spacing:4.906667pt;}
.ws1b{word-spacing:5.045333pt;}
.ws47{word-spacing:5.280000pt;}
.ws3c{word-spacing:7.360000pt;}
.ws30{word-spacing:8.320000pt;}
.ws1c{word-spacing:8.624000pt;}
.ws2e{word-spacing:10.453333pt;}
.ws32{word-spacing:10.560000pt;}
.ws39{word-spacing:12.320000pt;}
.ws33{word-spacing:14.400000pt;}
.ws40{word-spacing:16.160000pt;}
.ws11{word-spacing:19.695467pt;}
.ws1e{word-spacing:20.927467pt;}
.ws1f{word-spacing:21.866133pt;}
.ws2d{word-spacing:23.466667pt;}
.ws1a{word-spacing:23.626133pt;}
.wsb{word-spacing:24.388800pt;}
.ws4{word-spacing:25.210133pt;}
.ws44{word-spacing:26.676800pt;}
.ws16{word-spacing:26.852800pt;}
.ws45{word-spacing:27.146667pt;}
.ws24{word-spacing:28.964800pt;}
.ws25{word-spacing:31.722133pt;}
.ws31{word-spacing:39.055467pt;}
.ws5{word-spacing:450.521600pt;}
.ws13{word-spacing:501.706667pt;}
.ws14{word-spacing:503.093333pt;}
.wse{word-spacing:515.253333pt;}
.wsf{word-spacing:519.946667pt;}
.ws10{word-spacing:715.680000pt;}
.ws15{word-spacing:720.533333pt;}
.ws12{word-spacing:784.053333pt;}
._1a{margin-left:-70.282667pt;}
._2a{margin-left:-12.018133pt;}
._27{margin-left:-10.805333pt;}
._29{margin-left:-5.905600pt;}
._25{margin-left:-4.898667pt;}
._2{margin-left:-4.007467pt;}
._0{margin-left:-2.350933pt;}
._1{margin-left:-0.933333pt;}
._3{width:0.921600pt;}
._4{width:1.968000pt;}
._a{width:2.933333pt;}
._b{width:3.877333pt;}
._12{width:4.896000pt;}
._8{width:6.021333pt;}
._9{width:7.093333pt;}
._d{width:8.026667pt;}
._c{width:8.976000pt;}
._14{width:9.924267pt;}
._6{width:12.230400pt;}
._5{width:13.362667pt;}
._7{width:14.288000pt;}
._e{width:15.498667pt;}
._13{width:17.163200pt;}
._15{width:18.208533pt;}
._26{width:19.432000pt;}
._28{width:20.674133pt;}
._2d{width:21.741867pt;}
._10{width:22.709333pt;}
._11{width:23.770667pt;}
._19{width:24.752533pt;}
._21{width:25.707733pt;}
._2c{width:27.348267pt;}
._17{width:28.770133pt;}
._2b{width:29.724800pt;}
._f{width:30.656000pt;}
._18{width:47.285333pt;}
._16{width:55.440000pt;}
._1c{width:414.773333pt;}
._1b{width:426.773333pt;}
._24{width:512.266667pt;}
._1d{width:525.786667pt;}
._1e{width:534.453333pt;}
._23{width:543.920000pt;}
._20{width:574.080000pt;}
._22{width:721.066667pt;}
._1f{width:722.133333pt;}
.fs5{font-size:34.824533pt;}
.fs1{font-size:37.333333pt;}
.fs0{font-size:42.666667pt;}
.fs4{font-size:48.000000pt;}
.fs3{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:49.133867pt;}
.y4{bottom:51.023600pt;}
.y1{bottom:61.133867pt;}
.y3{bottom:63.960533pt;}
.yd6{bottom:103.937067pt;}
.ye4{bottom:104.658933pt;}
.yd2{bottom:105.362933pt;}
.ydd{bottom:106.278267pt;}
.y22{bottom:106.286800pt;}
.y15e{bottom:106.344267pt;}
.y6d{bottom:107.576533pt;}
.yb4{bottom:107.713867pt;}
.y11c{bottom:109.733600pt;}
.y138{bottom:110.503200pt;}
.y80{bottom:111.975067pt;}
.y121{bottom:112.657467pt;}
.yd5{bottom:118.337067pt;}
.y4a{bottom:120.965867pt;}
.ye3{bottom:122.258933pt;}
.y21{bottom:122.286800pt;}
.y15d{bottom:122.344267pt;}
.yd1{bottom:122.962933pt;}
.yb3{bottom:125.313867pt;}
.y137{bottom:126.503200pt;}
.y11b{bottom:127.333600pt;}
.y120{bottom:128.657467pt;}
.y7f{bottom:129.575067pt;}
.yd4{bottom:132.737067pt;}
.yf5{bottom:136.376533pt;}
.y20{bottom:138.286800pt;}
.y15c{bottom:138.344267pt;}
.y49{bottom:138.565867pt;}
.ye2{bottom:139.858933pt;}
.yd0{bottom:140.562933pt;}
.y136{bottom:142.503200pt;}
.yb2{bottom:142.913867pt;}
.y11f{bottom:144.657467pt;}
.y8e{bottom:144.906800pt;}
.y11a{bottom:144.933600pt;}
.yd3{bottom:150.776533pt;}
.y1f{bottom:154.286800pt;}
.y15b{bottom:154.344267pt;}
.y48{bottom:156.165867pt;}
.ye1{bottom:157.458933pt;}
.ycf{bottom:158.162933pt;}
.y135{bottom:158.503200pt;}
.y7e{bottom:160.404400pt;}
.yb1{bottom:160.513867pt;}
.y11e{bottom:160.657467pt;}
.y8d{bottom:162.506800pt;}
.y119{bottom:162.533600pt;}
.ya3{bottom:163.456667pt;}
.y1e{bottom:170.286800pt;}
.y15a{bottom:170.344267pt;}
.y47{bottom:173.765867pt;}
.y134{bottom:174.503200pt;}
.ye0{bottom:175.058933pt;}
.yce{bottom:175.762933pt;}
.y11d{bottom:176.657467pt;}
.yb0{bottom:178.113867pt;}
.y118{bottom:180.133600pt;}
.ya2{bottom:181.056667pt;}
.y159{bottom:186.344267pt;}
.y1d{bottom:190.060133pt;}
.y133{bottom:190.503200pt;}
.y46{bottom:191.365867pt;}
.ydf{bottom:192.658933pt;}
.ycd{bottom:193.362933pt;}
.y8c{bottom:197.708000pt;}
.y117{bottom:197.733600pt;}
.ya1{bottom:198.656667pt;}
.y7d{bottom:200.679067pt;}
.y158{bottom:202.344267pt;}
.y132{bottom:206.503200pt;}
.yaf{bottom:208.943200pt;}
.y45{bottom:208.965867pt;}
.y6c{bottom:210.258933pt;}
.ycc{bottom:210.962933pt;}
.y116{bottom:215.333600pt;}
.ya0{bottom:216.256667pt;}
.y7c{bottom:218.279067pt;}
.y157{bottom:218.344267pt;}
.y8b{bottom:220.151733pt;}
.y131{bottom:222.503200pt;}
.y44{bottom:226.565867pt;}
.y6b{bottom:227.858933pt;}
.ycb{bottom:228.562933pt;}
.y1c{bottom:231.224000pt;}
.y115{bottom:232.933600pt;}
.y9f{bottom:233.856667pt;}
.y156{bottom:234.344267pt;}
.y7b{bottom:235.879067pt;}
.y130{bottom:238.503200pt;}
.yf4{bottom:240.657467pt;}
.y43{bottom:244.165867pt;}
.y1b{bottom:244.556000pt;}
.y8a{bottom:245.081333pt;}
.y6a{bottom:245.458933pt;}
.yca{bottom:246.162933pt;}
.yae{bottom:249.217867pt;}
.y155{bottom:250.344267pt;}
.y114{bottom:250.533600pt;}
.y12f{bottom:254.503200pt;}
.y1a{bottom:257.888000pt;}
.yf3{bottom:258.257467pt;}
.y42{bottom:261.765867pt;}
.y69{bottom:263.058933pt;}
.yc9{bottom:263.762933pt;}
.y154{bottom:266.344267pt;}
.yad{bottom:266.817867pt;}
.y113{bottom:268.133600pt;}
.y89{bottom:271.188000pt;}
.y19{bottom:275.000000pt;}
.y7a{bottom:275.405733pt;}
.yf2{bottom:275.857467pt;}
.y41{bottom:279.365867pt;}
.y68{bottom:280.658933pt;}
.yc8{bottom:281.362933pt;}
.y153{bottom:282.344267pt;}
.y12e{bottom:283.738933pt;}
.yac{bottom:284.417867pt;}
.y112{bottom:285.733600pt;}
.y9e{bottom:286.657867pt;}
.y79{bottom:293.005733pt;}
.yf1{bottom:293.457467pt;}
.y88{bottom:296.121333pt;}
.y40{bottom:296.965867pt;}
.y67{bottom:298.258933pt;}
.y152{bottom:298.344267pt;}
.yc7{bottom:298.962933pt;}
.y111{bottom:303.333600pt;}
.y18{bottom:305.948000pt;}
.y9d{bottom:309.095600pt;}
.y78{bottom:310.605733pt;}
.yf0{bottom:311.057467pt;}
.y151{bottom:314.344267pt;}
.y3f{bottom:314.565867pt;}
.yab{bottom:315.247200pt;}
.y66{bottom:315.858933pt;}
.yc6{bottom:316.562933pt;}
.y110{bottom:320.933600pt;}
.y87{bottom:321.054667pt;}
.y17{bottom:323.548000pt;}
.y12d{bottom:324.013600pt;}
.y77{bottom:328.205733pt;}
.yef{bottom:328.657467pt;}
.y150{bottom:330.344267pt;}
.y3e{bottom:332.165867pt;}
.y65{bottom:333.458933pt;}
.y9c{bottom:334.028933pt;}
.yc5{bottom:334.162933pt;}
.y10f{bottom:338.533600pt;}
.y16{bottom:341.148000pt;}
.y12c{bottom:341.613600pt;}
.y76{bottom:345.805733pt;}
.y86{bottom:345.988000pt;}
.yaa{bottom:346.076533pt;}
.yee{bottom:346.257467pt;}
.y14f{bottom:346.344267pt;}
.yde{bottom:346.688267pt;}
.y64{bottom:351.058933pt;}
.yc4{bottom:351.762933pt;}
.y10e{bottom:356.133600pt;}
.y15{bottom:358.748000pt;}
.y9b{bottom:358.962267pt;}
.y12b{bottom:359.213600pt;}
.y14e{bottom:362.344267pt;}
.y3d{bottom:362.995200pt;}
.y75{bottom:363.405733pt;}
.y63{bottom:368.658933pt;}
.yc3{bottom:369.362933pt;}
.y10d{bottom:373.733600pt;}
.y85{bottom:374.925067pt;}
.y12a{bottom:376.813600pt;}
.y14d{bottom:378.344267pt;}
.y14{bottom:380.127467pt;}
.y74{bottom:381.005733pt;}
.yed{bottom:381.457467pt;}
.y9a{bottom:383.895600pt;}
.y62{bottom:386.258933pt;}
.ya9{bottom:386.351200pt;}
.yc2{bottom:386.962933pt;}
.y10c{bottom:391.333600pt;}
.y14c{bottom:394.344267pt;}
.y84{bottom:396.298400pt;}
.yec{bottom:397.457467pt;}
.y13{bottom:397.727467pt;}
.y73{bottom:398.605733pt;}
.y3c{bottom:403.277600pt;}
.y61{bottom:403.858933pt;}
.ya8{bottom:403.951200pt;}
.yc1{bottom:404.562933pt;}
.y99{bottom:408.828933pt;}
.y10b{bottom:408.933600pt;}
.y14b{bottom:410.344267pt;}
.y129{bottom:412.013600pt;}
.yeb{bottom:413.457467pt;}
.y12{bottom:415.327467pt;}
.y72{bottom:416.205733pt;}
.y3b{bottom:419.277600pt;}
.y60{bottom:421.458933pt;}
.ya7{bottom:421.551200pt;}
.yc0{bottom:422.162933pt;}
.y14a{bottom:426.344267pt;}
.y10a{bottom:426.533600pt;}
.yea{bottom:429.457467pt;}
.y11{bottom:432.927467pt;}
.y71{bottom:433.805733pt;}
.y98{bottom:437.766000pt;}
.y5f{bottom:439.058933pt;}
.ya6{bottom:439.151200pt;}
.ybf{bottom:439.762933pt;}
.y3a{bottom:441.144267pt;}
.y149{bottom:442.344267pt;}
.y109{bottom:444.133600pt;}
.ye9{bottom:445.457467pt;}
.y70{bottom:451.405733pt;}
.y128{bottom:452.288267pt;}
.y10{bottom:454.307067pt;}
.y5e{bottom:456.658933pt;}
.ya5{bottom:456.751200pt;}
.y39{bottom:457.144267pt;}
.ybe{bottom:457.362933pt;}
.y148{bottom:458.344267pt;}
.y97{bottom:459.139333pt;}
.ye8{bottom:461.457467pt;}
.y108{bottom:461.733600pt;}
.y127{bottom:469.888267pt;}
.yf{bottom:471.906933pt;}
.y38{bottom:473.144267pt;}
.y5d{bottom:474.258933pt;}
.y147{bottom:474.344267pt;}
.ybd{bottom:474.962933pt;}
.ye7{bottom:477.457467pt;}
.y107{bottom:479.333600pt;}
.y6f{bottom:486.606933pt;}
.y126{bottom:487.488267pt;}
.y37{bottom:489.144267pt;}
.ye{bottom:489.506933pt;}
.y146{bottom:490.344267pt;}
.y5c{bottom:491.858933pt;}
.ya4{bottom:491.952400pt;}
.ybc{bottom:492.562933pt;}
.ye6{bottom:493.457467pt;}
.y106{bottom:496.933600pt;}
.y96{bottom:501.890933pt;}
.y125{bottom:505.088267pt;}
.y36{bottom:505.144267pt;}
.ydc{bottom:505.684133pt;}
.y145{bottom:506.344267pt;}
.yd{bottom:507.107067pt;}
.y5b{bottom:509.458933pt;}
.ybb{bottom:510.162933pt;}
.y105{bottom:514.533600pt;}
.y95{bottom:519.490933pt;}
.y35{bottom:521.144267pt;}
.y144{bottom:522.344267pt;}
.y124{bottom:522.688267pt;}
.ydb{bottom:527.057467pt;}
.y5a{bottom:527.058933pt;}
.yba{bottom:527.762933pt;}
.yc{bottom:528.486533pt;}
.y104{bottom:532.133600pt;}
.y94{bottom:537.090933pt;}
.y34{bottom:537.144267pt;}
.y143{bottom:538.344267pt;}
.y123{bottom:540.288267pt;}
.y59{bottom:544.658933pt;}
.yb9{bottom:545.362933pt;}
.yb{bottom:546.086533pt;}
.y103{bottom:549.733600pt;}
.y33{bottom:553.144267pt;}
.y142{bottom:554.344267pt;}
.y93{bottom:554.690933pt;}
.y58{bottom:562.258933pt;}
.yb8{bottom:562.962933pt;}
.ya{bottom:563.686533pt;}
.y102{bottom:567.333600pt;}
.y32{bottom:569.144267pt;}
.y141{bottom:570.344267pt;}
.y122{bottom:575.488267pt;}
.y57{bottom:579.858933pt;}
.yb7{bottom:580.562933pt;}
.y9{bottom:581.286533pt;}
.y101{bottom:584.933600pt;}
.y31{bottom:585.144267pt;}
.y140{bottom:586.344267pt;}
.y92{bottom:589.890933pt;}
.y83{bottom:593.088267pt;}
.y56{bottom:597.458933pt;}
.yb6{bottom:598.162933pt;}
.y30{bottom:601.144267pt;}
.y13f{bottom:602.344267pt;}
.y100{bottom:602.533600pt;}
.y91{bottom:607.490933pt;}
.ye5{bottom:610.688267pt;}
.yda{bottom:615.058933pt;}
.yb5{bottom:615.762933pt;}
.y8{bottom:616.499867pt;}
.y2f{bottom:617.144267pt;}
.y13e{bottom:618.344267pt;}
.yff{bottom:620.133600pt;}
.y90{bottom:625.090933pt;}
.y55{bottom:628.288267pt;}
.yd9{bottom:632.658933pt;}
.y2e{bottom:633.144267pt;}
.y82{bottom:633.362933pt;}
.y7{bottom:634.099867pt;}
.y13d{bottom:634.344267pt;}
.yfe{bottom:637.733600pt;}
.yd8{bottom:650.258933pt;}
.y13c{bottom:650.344267pt;}
.y81{bottom:650.962933pt;}
.y2d{bottom:652.917600pt;}
.yfd{bottom:655.333600pt;}
.y8f{bottom:655.920267pt;}
.y6{bottom:659.254933pt;}
.y13b{bottom:666.344267pt;}
.y54{bottom:668.562933pt;}
.yfc{bottom:672.933600pt;}
.y2c{bottom:676.477600pt;}
.y5{bottom:680.858933pt;}
.yd7{bottom:681.088267pt;}
.y13a{bottom:682.344267pt;}
.y53{bottom:686.162933pt;}
.yfb{bottom:690.533600pt;}
.y2b{bottom:692.477600pt;}
.y139{bottom:698.344267pt;}
.y52{bottom:703.762933pt;}
.yfa{bottom:708.133600pt;}
.y2a{bottom:714.344267pt;}
.y51{bottom:721.362933pt;}
.yf9{bottom:725.733600pt;}
.y29{bottom:730.344267pt;}
.y50{bottom:738.962933pt;}
.yf8{bottom:743.333600pt;}
.y28{bottom:746.344267pt;}
.y4f{bottom:756.562933pt;}
.yf7{bottom:760.933600pt;}
.y27{bottom:762.344267pt;}
.y4e{bottom:774.162933pt;}
.y26{bottom:778.344267pt;}
.yf6{bottom:778.533600pt;}
.y6e{bottom:788.970933pt;}
.y4d{bottom:791.762933pt;}
.y25{bottom:794.344267pt;}
.y4c{bottom:809.362933pt;}
.y24{bottom:810.344267pt;}
.y23{bottom:839.599067pt;}
.y4b{bottom:840.580400pt;}
.ha{height:27.998925pt;}
.h3{height:28.501333pt;}
.h4{height:30.016000pt;}
.h2{height:34.304000pt;}
.h8{height:35.626667pt;}
.h9{height:38.592000pt;}
.hc{height:39.072000pt;}
.h5{height:39.189333pt;}
.h6{height:42.880000pt;}
.hb{height:42.894933pt;}
.h7{height:47.168000pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x16{left:86.929067pt;}
.x1{left:94.488133pt;}
.x15{left:102.047333pt;}
.x19{left:109.609467pt;}
.x1e{left:116.719200pt;}
.x1b{left:124.276133pt;}
.x1a{left:126.041867pt;}
.x1c{left:133.604133pt;}
.x1f{left:136.680000pt;}
.x1d{left:144.239067pt;}
.x21{left:151.181067pt;}
.x4{left:169.208400pt;}
.x5{left:183.816400pt;}
.x6{left:189.787733pt;}
.x7{left:196.667733pt;}
.x18{left:207.540933pt;}
.xc{left:314.166533pt;}
.xf{left:362.449200pt;}
.x2{left:392.994800pt;}
.x12{left:395.155467pt;}
.x8{left:396.372133pt;}
.xd{left:403.112533pt;}
.xa{left:412.379200pt;}
.x10{left:415.445867pt;}
.x13{left:422.312533pt;}
.x9{left:435.325867pt;}
.xb{left:437.686267pt;}
.x11{left:440.245867pt;}
.xe{left:446.605733pt;}
.x14{left:451.699200pt;}
.x3{left:453.952400pt;}
.x22{left:535.512267pt;}
.x17{left:536.861600pt;}
.x20{left:538.020133pt;}
}




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