
    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_f48bbf447deaa6ba6115cb16.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.112305;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_ee30984b29fe54d356270ca8.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.937988;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_e161cbae35d35fd225c9bab4.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.104004;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_fe8cde13aa607211c6bd95b8.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.738770;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_b7e6378f48a3a7bf1cd96ad8.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.112305;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_c99d3982ec832adf02ddea0b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.767578;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_1f56598f02ddc504a1356b93.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.112305;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_e9c120c6f96b2c1af91640c5.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.104004;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_60b8b3e1263357fa8ef2c91e.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.112305;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_c76098ae173c61c3fed3a1df.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_a438e24105640ed255365229.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_7155456b704a81595affff20.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_9448eb68767160eb51850b7f.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.946777;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_750ca4ba5b7174289cf68493.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.739746;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);}
.v1{vertical-align:-71.280000px;}
.v0{vertical-align:0.000000px;}
.ls8{letter-spacing:-0.720000px;}
.ls5{letter-spacing:-0.360000px;}
.lsb{letter-spacing:-0.288000px;}
.ls6{letter-spacing:-0.109200px;}
.ls4{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.072000px;}
.ls0{letter-spacing:0.180000px;}
.ls2{letter-spacing:0.259920px;}
.ls1{letter-spacing:0.360000px;}
.lsc{letter-spacing:22.320000px;}
.ls7{letter-spacing:32.544000px;}
.lsa{letter-spacing:34.704000px;}
.ls3{letter-spacing:701.820000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsa{word-spacing:-72.000000px;}
.ws9{word-spacing:-66.240000px;}
.wsb{word-spacing:-18.072000px;}
.ws5{word-spacing:-18.000000px;}
.wsc{word-spacing:-17.712000px;}
.ws4{word-spacing:-16.560000px;}
.ws3{word-spacing:-16.450800px;}
.ws2{word-spacing:-15.300000px;}
.ws0{word-spacing:-14.940000px;}
.ws1{word-spacing:-14.580000px;}
.ws8{word-spacing:-14.220000px;}
.ws7{word-spacing:-12.060000px;}
.ws6{word-spacing:0.000000px;}
._20{margin-left:-5.640480px;}
._8{margin-left:-4.284000px;}
._7{margin-left:-3.204000px;}
._2{margin-left:-1.284480px;}
._1{width:1.003680px;}
._5{width:2.010960px;}
._11{width:3.394080px;}
._23{width:4.536000px;}
._1d{width:5.544000px;}
._0{width:6.693120px;}
._21{width:7.734240px;}
._9{width:8.930880px;}
._f{width:10.008000px;}
._4{width:11.533680px;}
._3{width:12.549600px;}
._1a{width:13.594320px;}
._a{width:15.264000px;}
._b{width:16.420320px;}
._c{width:19.660320px;}
._22{width:21.409920px;}
._d{width:22.464000px;}
._10{width:23.904000px;}
._12{width:25.704000px;}
._13{width:27.064800px;}
._24{width:28.955520px;}
._1b{width:30.312000px;}
._6{width:31.752000px;}
._27{width:33.768000px;}
._16{width:34.848000px;}
._17{width:36.036000px;}
._26{width:37.319520px;}
._25{width:38.340480px;}
._15{width:46.576800px;}
._14{width:47.580480px;}
._19{width:51.324480px;}
._18{width:65.880000px;}
._1f{width:85.104000px;}
._1e{width:86.388480px;}
._e{width:108.792000px;}
._1c{width:148.752000px;}
.fc3{color:rgb(0,0,255);}
.fc2{color:transparent;}
.fc1{color:rgb(128,0,128);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:5.760000px;}
.fs6{font-size:33.120000px;}
.fs7{font-size:48.240000px;}
.fs8{font-size:56.880000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.fs4{font-size:102.240000px;}
.y0{bottom:0.000000px;}
.y4b{bottom:5.040000px;}
.y7e{bottom:5.220000px;}
.y51{bottom:14.940000px;}
.y8{bottom:15.300000px;}
.y50{bottom:32.040000px;}
.y7{bottom:33.300000px;}
.y52{bottom:42.876000px;}
.y4e{bottom:44.136000px;}
.y4f{bottom:49.320000px;}
.y5{bottom:60.480000px;}
.y4{bottom:80.316000px;}
.y47{bottom:110.916000px;}
.y46{bottom:134.676000px;}
.ye2{bottom:147.456000px;}
.y9b{bottom:148.536000px;}
.y159{bottom:151.410000px;}
.y7c{bottom:152.490000px;}
.ybc{bottom:156.450000px;}
.y45{bottom:158.430000px;}
.y13c{bottom:159.870000px;}
.y150{bottom:163.290000px;}
.y118{bottom:164.370000px;}
.y10b{bottom:166.350000px;}
.ye1{bottom:172.110000px;}
.y9a{bottom:172.290000px;}
.y7b{bottom:174.990000px;}
.ybb{bottom:180.210000px;}
.y44{bottom:182.370000px;}
.y13b{bottom:183.630000px;}
.y14f{bottom:185.610000px;}
.y143{bottom:186.330000px;}
.y117{bottom:188.130000px;}
.y10a{bottom:190.110000px;}
.y7a{bottom:194.790000px;}
.y99{bottom:196.050000px;}
.ye0{bottom:196.590000px;}
.yba{bottom:203.970000px;}
.y43{bottom:206.130000px;}
.y13a{bottom:207.390000px;}
.y14e{bottom:209.370000px;}
.y142{bottom:210.090000px;}
.y116{bottom:211.890000px;}
.y109{bottom:213.870000px;}
.y79{bottom:214.590000px;}
.y98{bottom:219.810000px;}
.ydf{bottom:221.250000px;}
.yb9{bottom:227.730000px;}
.y42{bottom:229.890000px;}
.y139{bottom:231.330000px;}
.y14d{bottom:233.130000px;}
.y141{bottom:233.850000px;}
.y78{bottom:234.570000px;}
.y115{bottom:235.830000px;}
.y108{bottom:237.810000px;}
.y97{bottom:243.750000px;}
.yde{bottom:245.730000px;}
.yb8{bottom:251.670000px;}
.y158{bottom:252.750000px;}
.y41{bottom:253.650000px;}
.y77{bottom:254.370000px;}
.y138{bottom:255.090000px;}
.y14c{bottom:256.890000px;}
.y140{bottom:257.610000px;}
.y114{bottom:259.590000px;}
.y107{bottom:261.570000px;}
.y96{bottom:267.510000px;}
.ydd{bottom:269.490000px;}
.y76{bottom:274.215000px;}
.yb7{bottom:275.475000px;}
.y157{bottom:276.555000px;}
.y40{bottom:277.590000px;}
.y137{bottom:278.895000px;}
.y14b{bottom:280.875000px;}
.y13f{bottom:282.855000px;}
.y113{bottom:283.395000px;}
.y106{bottom:285.375000px;}
.y95{bottom:290.055000px;}
.y75{bottom:294.015000px;}
.ydc{bottom:294.735000px;}
.yb6{bottom:299.235000px;}
.y156{bottom:300.315000px;}
.y3f{bottom:301.350000px;}
.y136{bottom:302.655000px;}
.y14a{bottom:304.635000px;}
.y112{bottom:307.155000px;}
.y13e{bottom:307.875000px;}
.y105{bottom:309.135000px;}
.y94{bottom:309.855000px;}
.y74{bottom:315.075000px;}
.ydb{bottom:318.495000px;}
.yb5{bottom:322.995000px;}
.y3e{bottom:325.110000px;}
.y135{bottom:326.595000px;}
.y149{bottom:328.395000px;}
.y93{bottom:329.655000px;}
.y111{bottom:331.095000px;}
.y104{bottom:333.075000px;}
.y73{bottom:339.015000px;}
.y155{bottom:339.195000px;}
.yda{bottom:342.255000px;}
.yb4{bottom:346.935000px;}
.y3d{bottom:348.915000px;}
.y92{bottom:349.635000px;}
.y134{bottom:350.355000px;}
.y148{bottom:352.155000px;}
.y110{bottom:354.855000px;}
.y103{bottom:356.835000px;}
.y72{bottom:362.775000px;}
.y154{bottom:362.955000px;}
.yd9{bottom:367.275000px;}
.y91{bottom:369.435000px;}
.yb3{bottom:370.695000px;}
.y3c{bottom:372.855000px;}
.y133{bottom:374.115000px;}
.y147{bottom:376.095000px;}
.y10f{bottom:378.615000px;}
.y102{bottom:380.595000px;}
.y153{bottom:383.475000px;}
.y71{bottom:386.535000px;}
.y90{bottom:389.235000px;}
.yd8{bottom:391.215000px;}
.yb2{bottom:393.195000px;}
.y3b{bottom:396.615000px;}
.y132{bottom:397.875000px;}
.y146{bottom:399.855000px;}
.y10e{bottom:402.375000px;}
.y152{bottom:404.175000px;}
.y101{bottom:404.355000px;}
.y70{bottom:410.295000px;}
.yb1{bottom:412.995000px;}
.yd7{bottom:414.975000px;}
.y3a{bottom:420.375000px;}
.y131{bottom:421.815000px;}
.y145{bottom:423.615000px;}
.y10d{bottom:426.135000px;}
.y151{bottom:427.215000px;}
.y100{bottom:428.295000px;}
.yb0{bottom:432.975000px;}
.y6f{bottom:434.235000px;}
.yd6{bottom:439.995000px;}
.y39{bottom:444.135000px;}
.y130{bottom:445.575000px;}
.y144{bottom:448.815000px;}
.y10c{bottom:450.075000px;}
.yff{bottom:452.055000px;}
.yaf{bottom:452.775000px;}
.y6e{bottom:457.995000px;}
.yd5{bottom:463.935000px;}
.y38{bottom:468.075000px;}
.y12f{bottom:469.335000px;}
.yae{bottom:473.835000px;}
.yfe{bottom:475.815000px;}
.y6d{bottom:481.755000px;}
.yd4{bottom:488.955000px;}
.y37{bottom:491.835000px;}
.y12e{bottom:492.555000px;}
.yad{bottom:497.595000px;}
.yfd{bottom:499.575000px;}
.y6c{bottom:505.515000px;}
.yd3{bottom:513.435000px;}
.y12d{bottom:515.055000px;}
.y36{bottom:515.595000px;}
.yac{bottom:521.355000px;}
.yfc{bottom:523.335000px;}
.y6b{bottom:529.455000px;}
.yd2{bottom:537.375000px;}
.y12c{bottom:538.815000px;}
.y35{bottom:539.355000px;}
.yab{bottom:545.295000px;}
.yfb{bottom:547.275000px;}
.y6a{bottom:553.215000px;}
.yd1{bottom:561.165000px;}
.y12b{bottom:562.605000px;}
.y34{bottom:563.115000px;}
.yaa{bottom:569.085000px;}
.yfa{bottom:571.065000px;}
.y69{bottom:577.005000px;}
.yd0{bottom:584.925000px;}
.y12a{bottom:586.365000px;}
.y33{bottom:587.055000px;}
.ya9{bottom:592.845000px;}
.yf9{bottom:594.825000px;}
.y68{bottom:600.765000px;}
.ycf{bottom:608.685000px;}
.y129{bottom:610.305000px;}
.y32{bottom:610.845000px;}
.ya8{bottom:616.605000px;}
.yf8{bottom:618.585000px;}
.y67{bottom:624.525000px;}
.yce{bottom:632.625000px;}
.y128{bottom:634.065000px;}
.y31{bottom:634.605000px;}
.ya7{bottom:640.545000px;}
.yf7{bottom:642.525000px;}
.y66{bottom:648.465000px;}
.ycd{bottom:656.385000px;}
.y127{bottom:657.825000px;}
.y30{bottom:658.365000px;}
.ya6{bottom:664.305000px;}
.yf6{bottom:666.285000px;}
.y65{bottom:672.225000px;}
.ycc{bottom:680.145000px;}
.y126{bottom:681.585000px;}
.y2f{bottom:682.305000px;}
.ya5{bottom:688.065000px;}
.yf5{bottom:690.045000px;}
.y64{bottom:695.985000px;}
.ycb{bottom:703.905000px;}
.y125{bottom:705.345000px;}
.y2e{bottom:706.065000px;}
.y49{bottom:707.505000px;}
.ya4{bottom:711.825000px;}
.yf4{bottom:713.805000px;}
.y27{bottom:719.205000px;}
.y63{bottom:719.745000px;}
.yca{bottom:727.845000px;}
.y124{bottom:729.285000px;}
.y2d{bottom:729.825000px;}
.ya3{bottom:735.765000px;}
.yf3{bottom:737.745000px;}
.y26{bottom:738.105000px;}
.y62{bottom:743.685000px;}
.yc9{bottom:751.605000px;}
.y123{bottom:753.045000px;}
.y2c{bottom:753.585000px;}
.y25{bottom:757.185000px;}
.ya2{bottom:759.525000px;}
.yf2{bottom:761.505000px;}
.y8f{bottom:766.185000px;}
.y61{bottom:767.445000px;}
.yc8{bottom:775.365000px;}
.y24{bottom:775.905000px;}
.y122{bottom:776.805000px;}
.y2b{bottom:777.525000px;}
.y162{bottom:779.685000px;}
.ya1{bottom:783.285000px;}
.yf1{bottom:785.265000px;}
.y8e{bottom:785.985000px;}
.y60{bottom:791.205000px;}
.y23{bottom:793.005000px;}
.yc7{bottom:799.125000px;}
.y121{bottom:800.745000px;}
.y2a{bottom:801.285000px;}
.y8d{bottom:805.785000px;}
.ya0{bottom:807.045000px;}
.yf0{bottom:809.025000px;}
.y22{bottom:812.445000px;}
.y5f{bottom:814.965000px;}
.y161{bottom:818.565000px;}
.yc6{bottom:822.885000px;}
.y29{bottom:825.045000px;}
.y8c{bottom:825.585000px;}
.y120{bottom:825.765000px;}
.y9f{bottom:830.985000px;}
.y21{bottom:831.345000px;}
.yef{bottom:832.965000px;}
.y5e{bottom:838.950000px;}
.y8b{bottom:845.610000px;}
.yc5{bottom:846.870000px;}
.y28{bottom:848.445000px;}
.y48{bottom:848.805000px;}
.y11f{bottom:849.570000px;}
.y20{bottom:850.245000px;}
.y9e{bottom:854.790000px;}
.yee{bottom:856.770000px;}
.y160{bottom:857.310000px;}
.y5d{bottom:862.710000px;}
.y8a{bottom:865.410000px;}
.yc4{bottom:870.630000px;}
.y11e{bottom:874.590000px;}
.y9d{bottom:878.550000px;}
.y13d{bottom:879.990000px;}
.yed{bottom:880.530000px;}
.y15f{bottom:881.070000px;}
.y89{bottom:885.210000px;}
.y5c{bottom:886.470000px;}
.y18{bottom:888.810000px;}
.yc3{bottom:894.390000px;}
.y11d{bottom:898.530000px;}
.y9c{bottom:902.310000px;}
.yec{bottom:904.290000px;}
.y88{bottom:905.010000px;}
.y17{bottom:907.710000px;}
.y5b{bottom:910.230000px;}
.yc2{bottom:918.150000px;}
.y11c{bottom:923.550000px;}
.y87{bottom:926.070000px;}
.y16{bottom:926.790000px;}
.yeb{bottom:928.230000px;}
.y5a{bottom:934.170000px;}
.yc1{bottom:942.090000px;}
.y15e{bottom:943.710000px;}
.y15{bottom:945.690000px;}
.y11b{bottom:947.490000px;}
.y86{bottom:950.010000px;}
.yea{bottom:951.990000px;}
.y59{bottom:957.930000px;}
.y1f{bottom:959.190000px;}
.yc0{bottom:964.590000px;}
.y14{bottom:964.770000px;}
.y15d{bottom:967.650000px;}
.y11a{bottom:972.510000px;}
.y85{bottom:973.770000px;}
.ye9{bottom:975.750000px;}
.y58{bottom:981.690000px;}
.y13{bottom:983.670000px;}
.ybf{bottom:984.390000px;}
.y15c{bottom:991.410000px;}
.y6{bottom:992.670000px;}
.y1e{bottom:995.370000px;}
.y119{bottom:996.270000px;}
.y84{bottom:997.530000px;}
.ye8{bottom:999.510000px;}
.ybe{bottom:1004.190000px;}
.y12{bottom:1005.450000px;}
.y1d{bottom:1005.990000px;}
.y83{bottom:1021.290000px;}
.ye7{bottom:1023.270000px;}
.ybd{bottom:1023.990000px;}
.y1c{bottom:1025.970000px;}
.y11{bottom:1027.230000px;}
.y57{bottom:1029.390000px;}
.y15b{bottom:1030.110000px;}
.y82{bottom:1045.230000px;}
.y10{bottom:1046.850000px;}
.ye6{bottom:1047.210000px;}
.y1b{bottom:1049.190000px;}
.y56{bottom:1053.150000px;}
.y15a{bottom:1054.050000px;}
.yf{bottom:1067.730000px;}
.y81{bottom:1068.990000px;}
.ye5{bottom:1070.970000px;}
.y55{bottom:1076.910000px;}
.y1a{bottom:1081.050000px;}
.ye{bottom:1082.850000px;}
.y80{bottom:1092.750000px;}
.ye4{bottom:1093.830000px;}
.y54{bottom:1096.890000px;}
.yd{bottom:1097.790000px;}
.yc{bottom:1112.730000px;}
.ye3{bottom:1116.150000px;}
.y53{bottom:1116.330000px;}
.y7f{bottom:1116.510000px;}
.yb{bottom:1127.850000px;}
.y19{bottom:1141.200000px;}
.ya{bottom:1142.820000px;}
.y4d{bottom:1155.420000px;}
.y9{bottom:1157.760000px;}
.y7d{bottom:1170.720000px;}
.y4a{bottom:1171.980000px;}
.y4c{bottom:1174.860000px;}
.y3{bottom:1185.300000px;}
.y2{bottom:1202.580000px;}
.y1{bottom:1219.860000px;}
.h12{height:5.163750px;}
.hf{height:19.440000px;}
.h14{height:19.620000px;}
.hd{height:29.691562px;}
.h3{height:43.156758px;}
.h8{height:44.860781px;}
.h4{height:47.700000px;}
.h10{height:50.229844px;}
.hb{height:53.077852px;}
.h2{height:53.573906px;}
.h5{height:58.833281px;}
.h6{height:59.383125px;}
.h11{height:62.820000px;}
.h13{height:63.949219px;}
.hc{height:64.546875px;}
.h7{height:75.519844px;}
.h9{height:85.052461px;}
.ha{height:90.807891px;}
.he{height:1262.880000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w3{width:163.290000px;}
.wc{width:188.310000px;}
.w8{width:191.010000px;}
.w9{width:446.115000px;}
.wb{width:448.815000px;}
.w6{width:623.085000px;}
.wa{width:623.265000px;}
.w7{width:892.979987px;}
.w4{width:892.980000px;}
.w5{width:893.250000px;}
.w1{width:894.000000px;}
.w2{width:894.059987px;}
.w0{width:894.060000px;}
.x0{left:0.000000px;}
.x16{left:8.100000px;}
.x20{left:10.260000px;}
.x18{left:13.140000px;}
.x6{left:25.559987px;}
.x7{left:34.019987px;}
.x10{left:36.179987px;}
.x5{left:37.620000px;}
.x1e{left:40.134000px;}
.x19{left:42.120000px;}
.x21{left:82.800000px;}
.x15{left:127.655987px;}
.x1c{left:129.276000px;}
.x27{left:138.275987px;}
.x13{left:143.676000px;}
.x26{left:159.689987px;}
.x1a{left:180.749987px;}
.x23{left:202.169987px;}
.x24{left:208.649987px;}
.x11{left:224.129987px;}
.x1{left:227.729987px;}
.x1b{left:234.029987px;}
.xf{left:239.609987px;}
.xe{left:260.849987px;}
.x8{left:269.309987px;}
.xa{left:271.154987px;}
.x2{left:280.874987px;}
.x25{left:297.749987px;}
.x9{left:315.074987px;}
.x17{left:319.395000px;}
.xb{left:401.114987px;}
.xd{left:421.994987px;}
.x14{left:440.709000px;}
.x12{left:514.004987px;}
.xc{left:519.584987px;}
.x1f{left:577.185000px;}
.x4{left:664.349987px;}
.x3{left:667.589987px;}
.x22{left:750.569987px;}
.x1d{left:757.949987px;}
@media print{
.v1{vertical-align:-63.360000pt;}
.v0{vertical-align:0.000000pt;}
.ls8{letter-spacing:-0.640000pt;}
.ls5{letter-spacing:-0.320000pt;}
.lsb{letter-spacing:-0.256000pt;}
.ls6{letter-spacing:-0.097067pt;}
.ls4{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.064000pt;}
.ls0{letter-spacing:0.160000pt;}
.ls2{letter-spacing:0.231040pt;}
.ls1{letter-spacing:0.320000pt;}
.lsc{letter-spacing:19.840000pt;}
.ls7{letter-spacing:28.928000pt;}
.lsa{letter-spacing:30.848000pt;}
.ls3{letter-spacing:623.840000pt;}
.wsa{word-spacing:-64.000000pt;}
.ws9{word-spacing:-58.880000pt;}
.wsb{word-spacing:-16.064000pt;}
.ws5{word-spacing:-16.000000pt;}
.wsc{word-spacing:-15.744000pt;}
.ws4{word-spacing:-14.720000pt;}
.ws3{word-spacing:-14.622933pt;}
.ws2{word-spacing:-13.600000pt;}
.ws0{word-spacing:-13.280000pt;}
.ws1{word-spacing:-12.960000pt;}
.ws8{word-spacing:-12.640000pt;}
.ws7{word-spacing:-10.720000pt;}
.ws6{word-spacing:0.000000pt;}
._20{margin-left:-5.013760pt;}
._8{margin-left:-3.808000pt;}
._7{margin-left:-2.848000pt;}
._2{margin-left:-1.141760pt;}
._1{width:0.892160pt;}
._5{width:1.787520pt;}
._11{width:3.016960pt;}
._23{width:4.032000pt;}
._1d{width:4.928000pt;}
._0{width:5.949440pt;}
._21{width:6.874880pt;}
._9{width:7.938560pt;}
._f{width:8.896000pt;}
._4{width:10.252160pt;}
._3{width:11.155200pt;}
._1a{width:12.083840pt;}
._a{width:13.568000pt;}
._b{width:14.595840pt;}
._c{width:17.475840pt;}
._22{width:19.031040pt;}
._d{width:19.968000pt;}
._10{width:21.248000pt;}
._12{width:22.848000pt;}
._13{width:24.057600pt;}
._24{width:25.738240pt;}
._1b{width:26.944000pt;}
._6{width:28.224000pt;}
._27{width:30.016000pt;}
._16{width:30.976000pt;}
._17{width:32.032000pt;}
._26{width:33.172907pt;}
._25{width:34.080427pt;}
._15{width:41.401600pt;}
._14{width:42.293760pt;}
._19{width:45.621760pt;}
._18{width:58.560000pt;}
._1f{width:75.648000pt;}
._1e{width:76.789760pt;}
._e{width:96.704000pt;}
._1c{width:132.224000pt;}
.fs9{font-size:5.120000pt;}
.fs6{font-size:29.440000pt;}
.fs7{font-size:42.880000pt;}
.fs8{font-size:50.560000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.fs4{font-size:90.880000pt;}
.y0{bottom:0.000000pt;}
.y4b{bottom:4.480000pt;}
.y7e{bottom:4.640000pt;}
.y51{bottom:13.280000pt;}
.y8{bottom:13.600000pt;}
.y50{bottom:28.480000pt;}
.y7{bottom:29.600000pt;}
.y52{bottom:38.112000pt;}
.y4e{bottom:39.232000pt;}
.y4f{bottom:43.840000pt;}
.y5{bottom:53.760000pt;}
.y4{bottom:71.392000pt;}
.y47{bottom:98.592000pt;}
.y46{bottom:119.712000pt;}
.ye2{bottom:131.072000pt;}
.y9b{bottom:132.032000pt;}
.y159{bottom:134.586667pt;}
.y7c{bottom:135.546667pt;}
.ybc{bottom:139.066667pt;}
.y45{bottom:140.826667pt;}
.y13c{bottom:142.106667pt;}
.y150{bottom:145.146667pt;}
.y118{bottom:146.106667pt;}
.y10b{bottom:147.866667pt;}
.ye1{bottom:152.986667pt;}
.y9a{bottom:153.146667pt;}
.y7b{bottom:155.546667pt;}
.ybb{bottom:160.186667pt;}
.y44{bottom:162.106667pt;}
.y13b{bottom:163.226667pt;}
.y14f{bottom:164.986667pt;}
.y143{bottom:165.626667pt;}
.y117{bottom:167.226667pt;}
.y10a{bottom:168.986667pt;}
.y7a{bottom:173.146667pt;}
.y99{bottom:174.266667pt;}
.ye0{bottom:174.746667pt;}
.yba{bottom:181.306667pt;}
.y43{bottom:183.226667pt;}
.y13a{bottom:184.346667pt;}
.y14e{bottom:186.106667pt;}
.y142{bottom:186.746667pt;}
.y116{bottom:188.346667pt;}
.y109{bottom:190.106667pt;}
.y79{bottom:190.746667pt;}
.y98{bottom:195.386667pt;}
.ydf{bottom:196.666667pt;}
.yb9{bottom:202.426667pt;}
.y42{bottom:204.346667pt;}
.y139{bottom:205.626667pt;}
.y14d{bottom:207.226667pt;}
.y141{bottom:207.866667pt;}
.y78{bottom:208.506667pt;}
.y115{bottom:209.626667pt;}
.y108{bottom:211.386667pt;}
.y97{bottom:216.666667pt;}
.yde{bottom:218.426667pt;}
.yb8{bottom:223.706667pt;}
.y158{bottom:224.666667pt;}
.y41{bottom:225.466667pt;}
.y77{bottom:226.106667pt;}
.y138{bottom:226.746667pt;}
.y14c{bottom:228.346667pt;}
.y140{bottom:228.986667pt;}
.y114{bottom:230.746667pt;}
.y107{bottom:232.506667pt;}
.y96{bottom:237.786667pt;}
.ydd{bottom:239.546667pt;}
.y76{bottom:243.746667pt;}
.yb7{bottom:244.866667pt;}
.y157{bottom:245.826667pt;}
.y40{bottom:246.746667pt;}
.y137{bottom:247.906667pt;}
.y14b{bottom:249.666667pt;}
.y13f{bottom:251.426667pt;}
.y113{bottom:251.906667pt;}
.y106{bottom:253.666667pt;}
.y95{bottom:257.826667pt;}
.y75{bottom:261.346667pt;}
.ydc{bottom:261.986667pt;}
.yb6{bottom:265.986667pt;}
.y156{bottom:266.946667pt;}
.y3f{bottom:267.866667pt;}
.y136{bottom:269.026667pt;}
.y14a{bottom:270.786667pt;}
.y112{bottom:273.026667pt;}
.y13e{bottom:273.666667pt;}
.y105{bottom:274.786667pt;}
.y94{bottom:275.426667pt;}
.y74{bottom:280.066667pt;}
.ydb{bottom:283.106667pt;}
.yb5{bottom:287.106667pt;}
.y3e{bottom:288.986667pt;}
.y135{bottom:290.306667pt;}
.y149{bottom:291.906667pt;}
.y93{bottom:293.026667pt;}
.y111{bottom:294.306667pt;}
.y104{bottom:296.066667pt;}
.y73{bottom:301.346667pt;}
.y155{bottom:301.506667pt;}
.yda{bottom:304.226667pt;}
.yb4{bottom:308.386667pt;}
.y3d{bottom:310.146667pt;}
.y92{bottom:310.786667pt;}
.y134{bottom:311.426667pt;}
.y148{bottom:313.026667pt;}
.y110{bottom:315.426667pt;}
.y103{bottom:317.186667pt;}
.y72{bottom:322.466667pt;}
.y154{bottom:322.626667pt;}
.yd9{bottom:326.466667pt;}
.y91{bottom:328.386667pt;}
.yb3{bottom:329.506667pt;}
.y3c{bottom:331.426667pt;}
.y133{bottom:332.546667pt;}
.y147{bottom:334.306667pt;}
.y10f{bottom:336.546667pt;}
.y102{bottom:338.306667pt;}
.y153{bottom:340.866667pt;}
.y71{bottom:343.586667pt;}
.y90{bottom:345.986667pt;}
.yd8{bottom:347.746667pt;}
.yb2{bottom:349.506667pt;}
.y3b{bottom:352.546667pt;}
.y132{bottom:353.666667pt;}
.y146{bottom:355.426667pt;}
.y10e{bottom:357.666667pt;}
.y152{bottom:359.266667pt;}
.y101{bottom:359.426667pt;}
.y70{bottom:364.706667pt;}
.yb1{bottom:367.106667pt;}
.yd7{bottom:368.866667pt;}
.y3a{bottom:373.666667pt;}
.y131{bottom:374.946667pt;}
.y145{bottom:376.546667pt;}
.y10d{bottom:378.786667pt;}
.y151{bottom:379.746667pt;}
.y100{bottom:380.706667pt;}
.yb0{bottom:384.866667pt;}
.y6f{bottom:385.986667pt;}
.yd6{bottom:391.106667pt;}
.y39{bottom:394.786667pt;}
.y130{bottom:396.066667pt;}
.y144{bottom:398.946667pt;}
.y10c{bottom:400.066667pt;}
.yff{bottom:401.826667pt;}
.yaf{bottom:402.466667pt;}
.y6e{bottom:407.106667pt;}
.yd5{bottom:412.386667pt;}
.y38{bottom:416.066667pt;}
.y12f{bottom:417.186667pt;}
.yae{bottom:421.186667pt;}
.yfe{bottom:422.946667pt;}
.y6d{bottom:428.226667pt;}
.yd4{bottom:434.626667pt;}
.y37{bottom:437.186667pt;}
.y12e{bottom:437.826667pt;}
.yad{bottom:442.306667pt;}
.yfd{bottom:444.066667pt;}
.y6c{bottom:449.346667pt;}
.yd3{bottom:456.386667pt;}
.y12d{bottom:457.826667pt;}
.y36{bottom:458.306667pt;}
.yac{bottom:463.426667pt;}
.yfc{bottom:465.186667pt;}
.y6b{bottom:470.626667pt;}
.yd2{bottom:477.666667pt;}
.y12c{bottom:478.946667pt;}
.y35{bottom:479.426667pt;}
.yab{bottom:484.706667pt;}
.yfb{bottom:486.466667pt;}
.y6a{bottom:491.746667pt;}
.yd1{bottom:498.813333pt;}
.y12b{bottom:500.093333pt;}
.y34{bottom:500.546667pt;}
.yaa{bottom:505.853333pt;}
.yfa{bottom:507.613333pt;}
.y69{bottom:512.893333pt;}
.yd0{bottom:519.933333pt;}
.y12a{bottom:521.213333pt;}
.y33{bottom:521.826667pt;}
.ya9{bottom:526.973333pt;}
.yf9{bottom:528.733333pt;}
.y68{bottom:534.013333pt;}
.ycf{bottom:541.053333pt;}
.y129{bottom:542.493333pt;}
.y32{bottom:542.973333pt;}
.ya8{bottom:548.093333pt;}
.yf8{bottom:549.853333pt;}
.y67{bottom:555.133333pt;}
.yce{bottom:562.333333pt;}
.y128{bottom:563.613333pt;}
.y31{bottom:564.093333pt;}
.ya7{bottom:569.373333pt;}
.yf7{bottom:571.133333pt;}
.y66{bottom:576.413333pt;}
.ycd{bottom:583.453333pt;}
.y127{bottom:584.733333pt;}
.y30{bottom:585.213333pt;}
.ya6{bottom:590.493333pt;}
.yf6{bottom:592.253333pt;}
.y65{bottom:597.533333pt;}
.ycc{bottom:604.573333pt;}
.y126{bottom:605.853333pt;}
.y2f{bottom:606.493333pt;}
.ya5{bottom:611.613333pt;}
.yf5{bottom:613.373333pt;}
.y64{bottom:618.653333pt;}
.ycb{bottom:625.693333pt;}
.y125{bottom:626.973333pt;}
.y2e{bottom:627.613333pt;}
.y49{bottom:628.893333pt;}
.ya4{bottom:632.733333pt;}
.yf4{bottom:634.493333pt;}
.y27{bottom:639.293333pt;}
.y63{bottom:639.773333pt;}
.yca{bottom:646.973333pt;}
.y124{bottom:648.253333pt;}
.y2d{bottom:648.733333pt;}
.ya3{bottom:654.013333pt;}
.yf3{bottom:655.773333pt;}
.y26{bottom:656.093333pt;}
.y62{bottom:661.053333pt;}
.yc9{bottom:668.093333pt;}
.y123{bottom:669.373333pt;}
.y2c{bottom:669.853333pt;}
.y25{bottom:673.053333pt;}
.ya2{bottom:675.133333pt;}
.yf2{bottom:676.893333pt;}
.y8f{bottom:681.053333pt;}
.y61{bottom:682.173333pt;}
.yc8{bottom:689.213333pt;}
.y24{bottom:689.693333pt;}
.y122{bottom:690.493333pt;}
.y2b{bottom:691.133333pt;}
.y162{bottom:693.053333pt;}
.ya1{bottom:696.253333pt;}
.yf1{bottom:698.013333pt;}
.y8e{bottom:698.653333pt;}
.y60{bottom:703.293333pt;}
.y23{bottom:704.893333pt;}
.yc7{bottom:710.333333pt;}
.y121{bottom:711.773333pt;}
.y2a{bottom:712.253333pt;}
.y8d{bottom:716.253333pt;}
.ya0{bottom:717.373333pt;}
.yf0{bottom:719.133333pt;}
.y22{bottom:722.173333pt;}
.y5f{bottom:724.413333pt;}
.y161{bottom:727.613333pt;}
.yc6{bottom:731.453333pt;}
.y29{bottom:733.373333pt;}
.y8c{bottom:733.853333pt;}
.y120{bottom:734.013333pt;}
.y9f{bottom:738.653333pt;}
.y21{bottom:738.973333pt;}
.yef{bottom:740.413333pt;}
.y5e{bottom:745.733333pt;}
.y8b{bottom:751.653333pt;}
.yc5{bottom:752.773333pt;}
.y28{bottom:754.173333pt;}
.y48{bottom:754.493333pt;}
.y11f{bottom:755.173333pt;}
.y20{bottom:755.773333pt;}
.y9e{bottom:759.813333pt;}
.yee{bottom:761.573333pt;}
.y160{bottom:762.053333pt;}
.y5d{bottom:766.853333pt;}
.y8a{bottom:769.253333pt;}
.yc4{bottom:773.893333pt;}
.y11e{bottom:777.413333pt;}
.y9d{bottom:780.933333pt;}
.y13d{bottom:782.213333pt;}
.yed{bottom:782.693333pt;}
.y15f{bottom:783.173333pt;}
.y89{bottom:786.853333pt;}
.y5c{bottom:787.973333pt;}
.y18{bottom:790.053333pt;}
.yc3{bottom:795.013333pt;}
.y11d{bottom:798.693333pt;}
.y9c{bottom:802.053333pt;}
.yec{bottom:803.813333pt;}
.y88{bottom:804.453333pt;}
.y17{bottom:806.853333pt;}
.y5b{bottom:809.093333pt;}
.yc2{bottom:816.133333pt;}
.y11c{bottom:820.933333pt;}
.y87{bottom:823.173333pt;}
.y16{bottom:823.813333pt;}
.yeb{bottom:825.093333pt;}
.y5a{bottom:830.373333pt;}
.yc1{bottom:837.413333pt;}
.y15e{bottom:838.853333pt;}
.y15{bottom:840.613333pt;}
.y11b{bottom:842.213333pt;}
.y86{bottom:844.453333pt;}
.yea{bottom:846.213333pt;}
.y59{bottom:851.493333pt;}
.y1f{bottom:852.613333pt;}
.yc0{bottom:857.413333pt;}
.y14{bottom:857.573333pt;}
.y15d{bottom:860.133333pt;}
.y11a{bottom:864.453333pt;}
.y85{bottom:865.573333pt;}
.ye9{bottom:867.333333pt;}
.y58{bottom:872.613333pt;}
.y13{bottom:874.373333pt;}
.ybf{bottom:875.013333pt;}
.y15c{bottom:881.253333pt;}
.y6{bottom:882.373333pt;}
.y1e{bottom:884.773333pt;}
.y119{bottom:885.573333pt;}
.y84{bottom:886.693333pt;}
.ye8{bottom:888.453333pt;}
.ybe{bottom:892.613333pt;}
.y12{bottom:893.733333pt;}
.y1d{bottom:894.213333pt;}
.y83{bottom:907.813333pt;}
.ye7{bottom:909.573333pt;}
.ybd{bottom:910.213333pt;}
.y1c{bottom:911.973333pt;}
.y11{bottom:913.093333pt;}
.y57{bottom:915.013333pt;}
.y15b{bottom:915.653333pt;}
.y82{bottom:929.093333pt;}
.y10{bottom:930.533333pt;}
.ye6{bottom:930.853333pt;}
.y1b{bottom:932.613333pt;}
.y56{bottom:936.133333pt;}
.y15a{bottom:936.933333pt;}
.yf{bottom:949.093333pt;}
.y81{bottom:950.213333pt;}
.ye5{bottom:951.973333pt;}
.y55{bottom:957.253333pt;}
.y1a{bottom:960.933333pt;}
.ye{bottom:962.533333pt;}
.y80{bottom:971.333333pt;}
.ye4{bottom:972.293333pt;}
.y54{bottom:975.013333pt;}
.yd{bottom:975.813333pt;}
.yc{bottom:989.093333pt;}
.ye3{bottom:992.133333pt;}
.y53{bottom:992.293333pt;}
.y7f{bottom:992.453333pt;}
.yb{bottom:1002.533333pt;}
.y19{bottom:1014.400000pt;}
.ya{bottom:1015.840000pt;}
.y4d{bottom:1027.040000pt;}
.y9{bottom:1029.120000pt;}
.y7d{bottom:1040.640000pt;}
.y4a{bottom:1041.760000pt;}
.y4c{bottom:1044.320000pt;}
.y3{bottom:1053.600000pt;}
.y2{bottom:1068.960000pt;}
.y1{bottom:1084.320000pt;}
.h12{height:4.590000pt;}
.hf{height:17.280000pt;}
.h14{height:17.440000pt;}
.hd{height:26.392500pt;}
.h3{height:38.361562pt;}
.h8{height:39.876250pt;}
.h4{height:42.400000pt;}
.h10{height:44.648750pt;}
.hb{height:47.180312pt;}
.h2{height:47.621250pt;}
.h5{height:52.296250pt;}
.h6{height:52.785000pt;}
.h11{height:55.840000pt;}
.h13{height:56.843750pt;}
.hc{height:57.375000pt;}
.h7{height:67.128750pt;}
.h9{height:75.602187pt;}
.ha{height:80.718125pt;}
.he{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w3{width:145.146667pt;}
.wc{width:167.386667pt;}
.w8{width:169.786667pt;}
.w9{width:396.546667pt;}
.wb{width:398.946667pt;}
.w6{width:553.853333pt;}
.wa{width:554.013333pt;}
.w7{width:793.759988pt;}
.w4{width:793.760000pt;}
.w5{width:794.000000pt;}
.w1{width:794.666667pt;}
.w2{width:794.719988pt;}
.w0{width:794.720000pt;}
.x0{left:0.000000pt;}
.x16{left:7.200000pt;}
.x20{left:9.120000pt;}
.x18{left:11.680000pt;}
.x6{left:22.719988pt;}
.x7{left:30.239988pt;}
.x10{left:32.159988pt;}
.x5{left:33.440000pt;}
.x1e{left:35.674667pt;}
.x19{left:37.440000pt;}
.x21{left:73.600000pt;}
.x15{left:113.471988pt;}
.x1c{left:114.912000pt;}
.x27{left:122.911988pt;}
.x13{left:127.712000pt;}
.x26{left:141.946655pt;}
.x1a{left:160.666655pt;}
.x23{left:179.706655pt;}
.x24{left:185.466655pt;}
.x11{left:199.226655pt;}
.x1{left:202.426655pt;}
.x1b{left:208.026655pt;}
.xf{left:212.986655pt;}
.xe{left:231.866655pt;}
.x8{left:239.386655pt;}
.xa{left:241.026655pt;}
.x2{left:249.666655pt;}
.x25{left:264.666655pt;}
.x9{left:280.066655pt;}
.x17{left:283.906667pt;}
.xb{left:356.546655pt;}
.xd{left:375.106655pt;}
.x14{left:391.741333pt;}
.x12{left:456.893321pt;}
.xc{left:461.853321pt;}
.x1f{left:513.053333pt;}
.x4{left:590.533321pt;}
.x3{left:593.413321pt;}
.x22{left:667.173322pt;}
.x1d{left:673.733322pt;}
}




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