
    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_caa7fff6578ed2b42e55dcd3.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.049805;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_c973316a6c999fefcf714d57.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.147461;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_bbec06d4197e9cf10c68414e.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.856934;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_3f42f6e201f07baccee8999d.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.147461;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_aa71dbf6c9e65ee79f236ee7.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938477;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_575f91809e8a0c48d02869cc.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.172852;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_a600cb39efd1451d0130d023.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.130371;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_9fc21d7b59668ba0a8f7f139.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.065918;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_81d6cc249edd32c730123da0.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.049805;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_f279c71c8894d12abfa284fa.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.065918;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);}
.v0{vertical-align:0.000000px;}
.ls18{letter-spacing:-0.936000px;}
.ls15{letter-spacing:-0.720000px;}
.lsf{letter-spacing:-0.310200px;}
.ls4{letter-spacing:-0.306600px;}
.ls12{letter-spacing:-0.288000px;}
.ls6{letter-spacing:-0.259800px;}
.ls13{letter-spacing:-0.216000px;}
.ls1a{letter-spacing:-0.144000px;}
.lsb{letter-spacing:-0.132600px;}
.ls3{letter-spacing:-0.106800px;}
.ls5{letter-spacing:-0.053280px;}
.ls2{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.037440px;}
.ls0{letter-spacing:0.106560px;}
.ls1{letter-spacing:0.106800px;}
.ls10{letter-spacing:0.144000px;}
.ls1b{letter-spacing:0.149760px;}
.ls11{letter-spacing:0.175800px;}
.ls19{letter-spacing:0.180000px;}
.ls14{letter-spacing:0.216000px;}
.ls8{letter-spacing:0.259800px;}
.lse{letter-spacing:0.360000px;}
.ls7{letter-spacing:0.612000px;}
.ls1c{letter-spacing:0.720000px;}
.lsc{letter-spacing:3.600000px;}
.ls16{letter-spacing:3.749760px;}
.lsd{letter-spacing:4.320000px;}
.ls17{letter-spacing:7.200000px;}
.ls9{letter-spacing:849.185760px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-33.533520px;}
.ws1{word-spacing:-33.426720px;}
.wsa{word-spacing:-21.097440px;}
.ws9{word-spacing:-21.060000px;}
.ws11{word-spacing:-18.216000px;}
.wsc{word-spacing:-18.144000px;}
.ws10{word-spacing:-18.000000px;}
.ws15{word-spacing:-17.856000px;}
.wsf{word-spacing:-17.784000px;}
.wsd{word-spacing:-17.749560px;}
.wse{word-spacing:-17.712000px;}
.ws6{word-spacing:-17.225280px;}
.ws7{word-spacing:-16.873080px;}
.ws3{word-spacing:-16.613280px;}
.ws4{word-spacing:-16.506480px;}
.ws5{word-spacing:-16.353480px;}
.ws2{word-spacing:-16.306680px;}
.ws14{word-spacing:-15.300000px;}
.ws12{word-spacing:-15.046800px;}
.ws13{word-spacing:-14.940000px;}
.ws16{word-spacing:-14.886720px;}
.wsb{word-spacing:-14.837640px;}
.ws8{word-spacing:0.000000px;}
._1d{margin-left:-11.646240px;}
._1e{margin-left:-10.186560px;}
._27{margin-left:-8.242320px;}
._28{margin-left:-7.018800px;}
._29{margin-left:-5.962080px;}
._c{margin-left:-4.168320px;}
._9{margin-left:-3.062640px;}
._0{margin-left:-1.299840px;}
._3{width:1.195200px;}
._a{width:2.294640px;}
._b{width:3.311280px;}
._19{width:4.383840px;}
._7{width:5.736960px;}
._8{width:7.657440px;}
._d{width:9.501840px;}
._e{width:10.756800px;}
._16{width:12.310560px;}
._f{width:13.625280px;}
._1a{width:15.597360px;}
._21{width:16.723920px;}
._1c{width:17.854320px;}
._22{width:19.295280px;}
._13{width:20.736720px;}
._11{width:22.410000px;}
._10{width:23.724720px;}
._17{width:25.577280px;}
._18{width:26.652960px;}
._1b{width:27.907920px;}
._15{width:29.342160px;}
._14{width:30.836160px;}
._1f{width:32.472000px;}
._20{width:33.552000px;}
._26{width:38.664000px;}
._2a{width:45.288000px;}
._23{width:46.368000px;}
._12{width:49.660560px;}
._24{width:67.656000px;}
._25{width:69.360000px;}
._2{width:476.945280px;}
._5{width:766.206720px;}
._6{width:1176.006720px;}
._1{width:1427.621280px;}
._4{width:1429.422720px;}
.fc4{color:rgb(33,37,41);}
.fc2{color:rgb(47,84,150);}
.fc1{color:transparent;}
.fc3{color:rgb(48,48,48);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:36.000000px;}
.fs9{font-size:38.880000px;}
.fs7{font-size:48.240000px;}
.fs1{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs6{font-size:77.760000px;}
.fs4{font-size:84.240000px;}
.fs5{font-size:95.760000px;}
.fs3{font-size:120.240000px;}
.y0{bottom:0.000000px;}
.y6{bottom:8.280000px;}
.y5{bottom:25.560000px;}
.y4{bottom:42.840000px;}
.y1{bottom:56.700000px;}
.y3{bottom:60.150000px;}
.y8c{bottom:88.236000px;}
.y8b{bottom:93.456000px;}
.y3e{bottom:98.136000px;}
.y8a{bottom:105.336000px;}
.y89{bottom:110.556000px;}
.y3d{bottom:115.416000px;}
.y11a{bottom:117.216000px;}
.y140{bottom:118.116000px;}
.y88{bottom:122.616000px;}
.ybc{bottom:127.836000px;}
.y3c{bottom:132.696000px;}
.y119{bottom:137.916000px;}
.y13f{bottom:138.816000px;}
.y87{bottom:139.896000px;}
.y86{bottom:145.116000px;}
.y3b{bottom:149.976000px;}
.y85{bottom:157.170000px;}
.y118{bottom:158.610000px;}
.y84{bottom:162.390000px;}
.y3a{bottom:167.250000px;}
.y13e{bottom:168.510000px;}
.y83{bottom:174.450000px;}
.y117{bottom:179.310000px;}
.y82{bottom:179.670000px;}
.y39{bottom:184.530000px;}
.y13d{bottom:189.210000px;}
.y81{bottom:191.730000px;}
.y80{bottom:196.950000px;}
.y116{bottom:200.010000px;}
.y38{bottom:201.810000px;}
.y7f{bottom:208.830000px;}
.y7e{bottom:214.050000px;}
.y37{bottom:218.910000px;}
.y115{bottom:220.710000px;}
.y7d{bottom:226.110000px;}
.y7c{bottom:231.330000px;}
.y36{bottom:236.190000px;}
.y13c{bottom:239.610000px;}
.y114{bottom:241.410000px;}
.y7b{bottom:243.390000px;}
.ybb{bottom:248.610000px;}
.y35{bottom:253.470000px;}
.y7a{bottom:260.670000px;}
.y113{bottom:262.110000px;}
.yba{bottom:265.890000px;}
.y13b{bottom:269.310000px;}
.y34{bottom:270.750000px;}
.y79{bottom:277.950000px;}
.y112{bottom:282.810000px;}
.yea{bottom:283.170000px;}
.y33{bottom:288.030000px;}
.y13a{bottom:290.010000px;}
.yb9{bottom:292.710000px;}
.y78{bottom:295.230000px;}
.ye9{bottom:300.450000px;}
.y111{bottom:303.510000px;}
.y32{bottom:305.130000px;}
.y77{bottom:312.330000px;}
.y76{bottom:317.550000px;}
.y139{bottom:319.710000px;}
.y31{bottom:322.410000px;}
.y110{bottom:324.210000px;}
.y75{bottom:329.655000px;}
.y74{bottom:334.875000px;}
.y30{bottom:339.735000px;}
.y138{bottom:340.455000px;}
.yb8{bottom:341.355000px;}
.y10f{bottom:344.955000px;}
.y2f{bottom:357.015000px;}
.y137{bottom:361.155000px;}
.y73{bottom:361.695000px;}
.yb7{bottom:362.055000px;}
.y10e{bottom:365.655000px;}
.y2e{bottom:374.295000px;}
.yb6{bottom:382.755000px;}
.y10d{bottom:386.355000px;}
.y136{bottom:390.855000px;}
.y2d{bottom:391.575000px;}
.y72{bottom:396.795000px;}
.y10c{bottom:407.055000px;}
.y2c{bottom:408.675000px;}
.ye7{bottom:411.195000px;}
.y135{bottom:411.555000px;}
.yb4{bottom:412.455000px;}
.y71{bottom:417.495000px;}
.ye8{bottom:418.035000px;}
.yb5{bottom:419.295000px;}
.y2b{bottom:425.955000px;}
.y10b{bottom:427.755000px;}
.ye5{bottom:431.895000px;}
.y134{bottom:432.255000px;}
.yb3{bottom:433.155000px;}
.y70{bottom:438.195000px;}
.ye6{bottom:438.735000px;}
.y2a{bottom:443.235000px;}
.y10a{bottom:448.455000px;}
.ye4{bottom:452.595000px;}
.yb2{bottom:453.855000px;}
.y29{bottom:460.515000px;}
.y133{bottom:461.955000px;}
.y6e{bottom:467.895000px;}
.y109{bottom:469.155000px;}
.ye3{bottom:473.295000px;}
.yb1{bottom:474.555000px;}
.y6f{bottom:474.735000px;}
.y28{bottom:477.795000px;}
.y132{bottom:482.655000px;}
.y6d{bottom:488.595000px;}
.y108{bottom:489.855000px;}
.y27{bottom:495.075000px;}
.yb0{bottom:495.255000px;}
.ye2{bottom:502.995000px;}
.y6b{bottom:509.295000px;}
.y107{bottom:510.555000px;}
.y26{bottom:512.175000px;}
.y131{bottom:512.355000px;}
.yaf{bottom:515.955000px;}
.y6c{bottom:516.135000px;}
.ye0{bottom:523.695000px;}
.y25{bottom:529.455000px;}
.y6a{bottom:529.995000px;}
.ye1{bottom:530.535000px;}
.y106{bottom:531.255000px;}
.y130{bottom:533.055000px;}
.ydf{bottom:544.395000px;}
.yad{bottom:545.655000px;}
.y24{bottom:546.735000px;}
.y69{bottom:550.695000px;}
.y105{bottom:551.955000px;}
.yae{bottom:552.495000px;}
.y12f{bottom:562.755000px;}
.y23{bottom:564.015000px;}
.ydd{bottom:565.095000px;}
.yac{bottom:566.355000px;}
.y68{bottom:571.395000px;}
.yde{bottom:571.935000px;}
.y104{bottom:572.655000px;}
.y22{bottom:581.295000px;}
.y12e{bottom:583.455000px;}
.ydb{bottom:585.795000px;}
.yab{bottom:587.055000px;}
.y67{bottom:592.095000px;}
.ydc{bottom:592.635000px;}
.y103{bottom:593.355000px;}
.y21{bottom:598.425000px;}
.yda{bottom:606.525000px;}
.yaa{bottom:607.785000px;}
.y12d{bottom:613.185000px;}
.y102{bottom:614.085000px;}
.y20{bottom:615.705000px;}
.y65{bottom:621.825000px;}
.yd9{bottom:627.225000px;}
.ya9{bottom:628.485000px;}
.y66{bottom:628.665000px;}
.y1f{bottom:632.985000px;}
.y12c{bottom:633.885000px;}
.y101{bottom:634.785000px;}
.y63{bottom:642.525000px;}
.ya7{bottom:649.185000px;}
.y64{bottom:649.365000px;}
.y1e{bottom:650.265000px;}
.y100{bottom:655.485000px;}
.ya8{bottom:656.025000px;}
.yd7{bottom:656.925000px;}
.y61{bottom:663.225000px;}
.y12b{bottom:663.585000px;}
.yd8{bottom:663.765000px;}
.y1d{bottom:667.545000px;}
.ya6{bottom:669.885000px;}
.y62{bottom:670.065000px;}
.yff{bottom:676.185000px;}
.yd5{bottom:677.625000px;}
.y60{bottom:683.925000px;}
.y12a{bottom:684.285000px;}
.yd6{bottom:684.465000px;}
.y1c{bottom:684.825000px;}
.ya5{bottom:690.585000px;}
.yfe{bottom:696.885000px;}
.yd3{bottom:698.325000px;}
.y1b{bottom:701.925000px;}
.y5e{bottom:704.625000px;}
.y129{bottom:704.985000px;}
.yd4{bottom:705.165000px;}
.ya4{bottom:711.285000px;}
.y5f{bottom:711.465000px;}
.yfd{bottom:717.585000px;}
.yd2{bottom:719.025000px;}
.y1a{bottom:719.205000px;}
.y5d{bottom:725.325000px;}
.y128{bottom:725.685000px;}
.y19{bottom:736.485000px;}
.ya3{bottom:736.845000px;}
.yfc{bottom:738.285000px;}
.yd1{bottom:739.725000px;}
.y5c{bottom:746.025000px;}
.y127{bottom:746.385000px;}
.y18{bottom:753.765000px;}
.y14e{bottom:754.665000px;}
.yfb{bottom:758.985000px;}
.ycf{bottom:769.425000px;}
.y17{bottom:771.045000px;}
.y14d{bottom:775.365000px;}
.y5a{bottom:775.725000px;}
.y126{bottom:776.085000px;}
.yd0{bottom:776.265000px;}
.yfa{bottom:779.685000px;}
.ya2{bottom:781.665000px;}
.y5b{bottom:782.565000px;}
.y16{bottom:788.325000px;}
.yce{bottom:790.125000px;}
.y59{bottom:796.425000px;}
.y125{bottom:796.785000px;}
.ya1{bottom:802.365000px;}
.y14c{bottom:805.065000px;}
.y15{bottom:805.425000px;}
.yf9{bottom:809.385000px;}
.ycd{bottom:810.825000px;}
.y57{bottom:817.125000px;}
.y124{bottom:817.485000px;}
.y14{bottom:822.705000px;}
.y58{bottom:823.965000px;}
.y14b{bottom:825.765000px;}
.yf8{bottom:830.085000px;}
.ycc{bottom:831.525000px;}
.y9f{bottom:832.065000px;}
.y56{bottom:837.825000px;}
.ya0{bottom:838.905000px;}
.y13{bottom:839.985000px;}
.y14a{bottom:846.465000px;}
.y123{bottom:847.185000px;}
.yf7{bottom:850.785000px;}
.ycb{bottom:852.225000px;}
.y9e{bottom:852.765000px;}
.y12{bottom:857.265000px;}
.y55{bottom:858.525000px;}
.y122{bottom:867.930000px;}
.yf6{bottom:871.530000px;}
.y9d{bottom:873.510000px;}
.y11{bottom:874.590000px;}
.y149{bottom:876.210000px;}
.y54{bottom:879.270000px;}
.yc9{bottom:881.970000px;}
.yca{bottom:888.810000px;}
.y10{bottom:891.870000px;}
.y9c{bottom:894.210000px;}
.y148{bottom:896.910000px;}
.y121{bottom:897.630000px;}
.y52{bottom:899.970000px;}
.yf5{bottom:901.230000px;}
.yc8{bottom:902.670000px;}
.y47{bottom:904.110000px;}
.y53{bottom:906.810000px;}
.yf{bottom:911.850000px;}
.y9b{bottom:914.910000px;}
.y120{bottom:918.330000px;}
.yf4{bottom:921.930000px;}
.yc7{bottom:923.370000px;}
.y51{bottom:923.730000px;}
.y147{bottom:926.610000px;}
.ye{bottom:935.070000px;}
.y46{bottom:938.310000px;}
.yf3{bottom:942.630000px;}
.yc6{bottom:944.070000px;}
.y9a{bottom:944.610000px;}
.y146{bottom:947.310000px;}
.y11f{bottom:948.030000px;}
.y50{bottom:955.410000px;}
.yf2{bottom:963.330000px;}
.y99{bottom:965.310000px;}
.yd{bottom:966.390000px;}
.y145{bottom:968.010000px;}
.y45{bottom:968.730000px;}
.yc4{bottom:973.770000px;}
.y4f{bottom:976.110000px;}
.yc5{bottom:980.610000px;}
.yf1{bottom:984.030000px;}
.y97{bottom:986.010000px;}
.yc{bottom:986.730000px;}
.y98{bottom:992.850000px;}
.yc3{bottom:994.470000px;}
.y4e{bottom:996.810000px;}
.y144{bottom:997.710000px;}
.y44{bottom:997.890000px;}
.y11e{bottom:998.430000px;}
.yf0{bottom:1004.730000px;}
.y95{bottom:1006.710000px;}
.y96{bottom:1013.550000px;}
.yc1{bottom:1015.170000px;}
.y4d{bottom:1017.510000px;}
.y143{bottom:1018.410000px;}
.yb{bottom:1021.290000px;}
.yc2{bottom:1022.010000px;}
.yef{bottom:1025.430000px;}
.y43{bottom:1027.230000px;}
.y94{bottom:1027.410000px;}
.y11d{bottom:1028.130000px;}
.yc0{bottom:1035.870000px;}
.y4c{bottom:1038.210000px;}
.yee{bottom:1046.130000px;}
.y142{bottom:1048.110000px;}
.y11c{bottom:1048.830000px;}
.ya{bottom:1053.510000px;}
.y42{bottom:1056.390000px;}
.ybf{bottom:1056.570000px;}
.y92{bottom:1057.110000px;}
.y4b{bottom:1058.910000px;}
.y93{bottom:1063.950000px;}
.yed{bottom:1066.830000px;}
.y141{bottom:1068.810000px;}
.y9{bottom:1074.210000px;}
.y11b{bottom:1074.390000px;}
.ybd{bottom:1077.270000px;}
.y91{bottom:1077.810000px;}
.y4a{bottom:1079.610000px;}
.y2{bottom:1080.870000px;}
.ybe{bottom:1084.110000px;}
.y41{bottom:1085.550000px;}
.yec{bottom:1087.530000px;}
.y8{bottom:1094.910000px;}
.y90{bottom:1098.510000px;}
.y49{bottom:1103.370000px;}
.yeb{bottom:1108.230000px;}
.y7{bottom:1111.650000px;}
.y40{bottom:1114.890000px;}
.y8f{bottom:1119.210000px;}
.y48{bottom:1133.820000px;}
.y3f{bottom:1137.060000px;}
.y8d{bottom:1139.940000px;}
.y8e{bottom:1146.780000px;}
.h13{height:32.425313px;}
.h12{height:35.806641px;}
.h11{height:40.231406px;}
.h15{height:41.008711px;}
.ha{height:43.506914px;}
.h6{height:49.838906px;}
.h14{height:50.801836px;}
.h2{height:55.243125px;}
.h5{height:55.995820px;}
.h7{height:60.046875px;}
.h10{height:61.207031px;}
.h4{height:62.067656px;}
.hd{height:65.884219px;}
.h9{height:67.464844px;}
.hb{height:70.254844px;}
.hc{height:71.613281px;}
.hf{height:74.039062px;}
.h3{height:74.196000px;}
.he{height:91.177734px;}
.h8{height:112.666289px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:692.205000px;}
.w4{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:10.620000px;}
.x4{left:43.020000px;}
.x1{left:106.235987px;}
.x1f{left:111.095987px;}
.x20{left:115.955987px;}
.x9{left:122.795987px;}
.x28{left:149.255973px;}
.x29{left:161.489987px;}
.x14{left:176.249973px;}
.x15{left:182.369987px;}
.x34{left:221.609973px;}
.x18{left:229.529973px;}
.x33{left:231.149973px;}
.x35{left:233.849987px;}
.x19{left:235.649987px;}
.x6{left:243.929987px;}
.x40{left:259.049973px;}
.x5{left:266.259000px;}
.x41{left:271.289987px;}
.x22{left:273.629973px;}
.x2c{left:275.609973px;}
.x23{left:285.914987px;}
.x26{left:288.074973px;}
.x24{left:292.034973px;}
.x27{left:300.314987px;}
.x25{left:304.274987px;}
.x1e{left:322.274987px;}
.x1c{left:335.234973px;}
.x1d{left:347.474987px;}
.x16{left:354.314973px;}
.x17{left:360.434987px;}
.x44{left:362.234973px;}
.x2f{left:371.594973px;}
.x45{left:374.474987px;}
.x30{left:383.834987px;}
.x12{left:393.734973px;}
.x13{left:399.854987px;}
.xa{left:402.554973px;}
.x2a{left:406.514973px;}
.xb{left:408.674987px;}
.x21{left:412.454987px;}
.x2b{left:418.754987px;}
.x38{left:439.634973px;}
.x31{left:440.894973px;}
.x39{left:451.874987px;}
.x32{left:453.134987px;}
.x3a{left:455.474973px;}
.x3b{left:467.714987px;}
.x3{left:501.729000px;}
.xc{left:503.024973px;}
.x10{left:507.344973px;}
.xd{left:509.144987px;}
.x11{left:513.464987px;}
.x42{left:535.964973px;}
.x43{left:548.204987px;}
.x36{left:576.644973px;}
.x2d{left:586.544973px;}
.x37{left:588.884987px;}
.x2e{left:598.784987px;}
.xe{left:620.744973px;}
.xf{left:626.864987px;}
.x7{left:636.584987px;}
.x3c{left:638.744987px;}
.x3d{left:663.089973px;}
.x3e{left:675.329987px;}
.x3f{left:774.509973px;}
.x1a{left:776.309973px;}
.x1b{left:782.429987px;}
.x8{left:786.749987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls18{letter-spacing:-0.832000pt;}
.ls15{letter-spacing:-0.640000pt;}
.lsf{letter-spacing:-0.275733pt;}
.ls4{letter-spacing:-0.272533pt;}
.ls12{letter-spacing:-0.256000pt;}
.ls6{letter-spacing:-0.230933pt;}
.ls13{letter-spacing:-0.192000pt;}
.ls1a{letter-spacing:-0.128000pt;}
.lsb{letter-spacing:-0.117867pt;}
.ls3{letter-spacing:-0.094933pt;}
.ls5{letter-spacing:-0.047360pt;}
.ls2{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.033280pt;}
.ls0{letter-spacing:0.094720pt;}
.ls1{letter-spacing:0.094933pt;}
.ls10{letter-spacing:0.128000pt;}
.ls1b{letter-spacing:0.133120pt;}
.ls11{letter-spacing:0.156267pt;}
.ls19{letter-spacing:0.160000pt;}
.ls14{letter-spacing:0.192000pt;}
.ls8{letter-spacing:0.230933pt;}
.lse{letter-spacing:0.320000pt;}
.ls7{letter-spacing:0.544000pt;}
.ls1c{letter-spacing:0.640000pt;}
.lsc{letter-spacing:3.200000pt;}
.ls16{letter-spacing:3.333120pt;}
.lsd{letter-spacing:3.840000pt;}
.ls17{letter-spacing:6.400000pt;}
.ls9{letter-spacing:754.831787pt;}
.ws0{word-spacing:-29.807573pt;}
.ws1{word-spacing:-29.712640pt;}
.wsa{word-spacing:-18.753280pt;}
.ws9{word-spacing:-18.720000pt;}
.ws11{word-spacing:-16.192000pt;}
.wsc{word-spacing:-16.128000pt;}
.ws10{word-spacing:-16.000000pt;}
.ws15{word-spacing:-15.872000pt;}
.wsf{word-spacing:-15.808000pt;}
.wsd{word-spacing:-15.777387pt;}
.wse{word-spacing:-15.744000pt;}
.ws6{word-spacing:-15.311360pt;}
.ws7{word-spacing:-14.998293pt;}
.ws3{word-spacing:-14.767360pt;}
.ws4{word-spacing:-14.672427pt;}
.ws5{word-spacing:-14.536427pt;}
.ws2{word-spacing:-14.494827pt;}
.ws14{word-spacing:-13.600000pt;}
.ws12{word-spacing:-13.374933pt;}
.ws13{word-spacing:-13.280000pt;}
.ws16{word-spacing:-13.232640pt;}
.wsb{word-spacing:-13.189013pt;}
.ws8{word-spacing:0.000000pt;}
._1d{margin-left:-10.352213pt;}
._1e{margin-left:-9.054720pt;}
._27{margin-left:-7.326507pt;}
._28{margin-left:-6.238933pt;}
._29{margin-left:-5.299627pt;}
._c{margin-left:-3.705173pt;}
._9{margin-left:-2.722347pt;}
._0{margin-left:-1.155413pt;}
._3{width:1.062400pt;}
._a{width:2.039680pt;}
._b{width:2.943360pt;}
._19{width:3.896747pt;}
._7{width:5.099520pt;}
._8{width:6.806613pt;}
._d{width:8.446080pt;}
._e{width:9.561600pt;}
._16{width:10.942720pt;}
._f{width:12.111360pt;}
._1a{width:13.864320pt;}
._21{width:14.865707pt;}
._1c{width:15.870507pt;}
._22{width:17.151360pt;}
._13{width:18.432640pt;}
._11{width:19.920000pt;}
._10{width:21.088640pt;}
._17{width:22.735360pt;}
._18{width:23.691520pt;}
._1b{width:24.807040pt;}
._15{width:26.081920pt;}
._14{width:27.409920pt;}
._1f{width:28.864000pt;}
._20{width:29.824000pt;}
._26{width:34.368000pt;}
._2a{width:40.256000pt;}
._23{width:41.216000pt;}
._12{width:44.142720pt;}
._24{width:60.138667pt;}
._25{width:61.653333pt;}
._2{width:423.951360pt;}
._5{width:681.072640pt;}
._6{width:1045.339307pt;}
._1{width:1268.996693pt;}
._4{width:1270.597973pt;}
.fs8{font-size:32.000000pt;}
.fs9{font-size:34.560000pt;}
.fs7{font-size:42.880000pt;}
.fs1{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs6{font-size:69.120000pt;}
.fs4{font-size:74.880000pt;}
.fs5{font-size:85.120000pt;}
.fs3{font-size:106.880000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:7.360000pt;}
.y5{bottom:22.720000pt;}
.y4{bottom:38.080000pt;}
.y1{bottom:50.400000pt;}
.y3{bottom:53.466667pt;}
.y8c{bottom:78.432000pt;}
.y8b{bottom:83.072000pt;}
.y3e{bottom:87.232000pt;}
.y8a{bottom:93.632000pt;}
.y89{bottom:98.272000pt;}
.y3d{bottom:102.592000pt;}
.y11a{bottom:104.192000pt;}
.y140{bottom:104.992000pt;}
.y88{bottom:108.992000pt;}
.ybc{bottom:113.632000pt;}
.y3c{bottom:117.952000pt;}
.y119{bottom:122.592000pt;}
.y13f{bottom:123.392000pt;}
.y87{bottom:124.352000pt;}
.y86{bottom:128.992000pt;}
.y3b{bottom:133.312000pt;}
.y85{bottom:139.706667pt;}
.y118{bottom:140.986667pt;}
.y84{bottom:144.346667pt;}
.y3a{bottom:148.666667pt;}
.y13e{bottom:149.786667pt;}
.y83{bottom:155.066667pt;}
.y117{bottom:159.386667pt;}
.y82{bottom:159.706667pt;}
.y39{bottom:164.026667pt;}
.y13d{bottom:168.186667pt;}
.y81{bottom:170.426667pt;}
.y80{bottom:175.066667pt;}
.y116{bottom:177.786667pt;}
.y38{bottom:179.386667pt;}
.y7f{bottom:185.626667pt;}
.y7e{bottom:190.266667pt;}
.y37{bottom:194.586667pt;}
.y115{bottom:196.186667pt;}
.y7d{bottom:200.986667pt;}
.y7c{bottom:205.626667pt;}
.y36{bottom:209.946667pt;}
.y13c{bottom:212.986667pt;}
.y114{bottom:214.586667pt;}
.y7b{bottom:216.346667pt;}
.ybb{bottom:220.986667pt;}
.y35{bottom:225.306667pt;}
.y7a{bottom:231.706667pt;}
.y113{bottom:232.986667pt;}
.yba{bottom:236.346667pt;}
.y13b{bottom:239.386667pt;}
.y34{bottom:240.666667pt;}
.y79{bottom:247.066667pt;}
.y112{bottom:251.386667pt;}
.yea{bottom:251.706667pt;}
.y33{bottom:256.026667pt;}
.y13a{bottom:257.786667pt;}
.yb9{bottom:260.186667pt;}
.y78{bottom:262.426667pt;}
.ye9{bottom:267.066667pt;}
.y111{bottom:269.786667pt;}
.y32{bottom:271.226667pt;}
.y77{bottom:277.626667pt;}
.y76{bottom:282.266667pt;}
.y139{bottom:284.186667pt;}
.y31{bottom:286.586667pt;}
.y110{bottom:288.186667pt;}
.y75{bottom:293.026667pt;}
.y74{bottom:297.666667pt;}
.y30{bottom:301.986667pt;}
.y138{bottom:302.626667pt;}
.yb8{bottom:303.426667pt;}
.y10f{bottom:306.626667pt;}
.y2f{bottom:317.346667pt;}
.y137{bottom:321.026667pt;}
.y73{bottom:321.506667pt;}
.yb7{bottom:321.826667pt;}
.y10e{bottom:325.026667pt;}
.y2e{bottom:332.706667pt;}
.yb6{bottom:340.226667pt;}
.y10d{bottom:343.426667pt;}
.y136{bottom:347.426667pt;}
.y2d{bottom:348.066667pt;}
.y72{bottom:352.706667pt;}
.y10c{bottom:361.826667pt;}
.y2c{bottom:363.266667pt;}
.ye7{bottom:365.506667pt;}
.y135{bottom:365.826667pt;}
.yb4{bottom:366.626667pt;}
.y71{bottom:371.106667pt;}
.ye8{bottom:371.586667pt;}
.yb5{bottom:372.706667pt;}
.y2b{bottom:378.626667pt;}
.y10b{bottom:380.226667pt;}
.ye5{bottom:383.906667pt;}
.y134{bottom:384.226667pt;}
.yb3{bottom:385.026667pt;}
.y70{bottom:389.506667pt;}
.ye6{bottom:389.986667pt;}
.y2a{bottom:393.986667pt;}
.y10a{bottom:398.626667pt;}
.ye4{bottom:402.306667pt;}
.yb2{bottom:403.426667pt;}
.y29{bottom:409.346667pt;}
.y133{bottom:410.626667pt;}
.y6e{bottom:415.906667pt;}
.y109{bottom:417.026667pt;}
.ye3{bottom:420.706667pt;}
.yb1{bottom:421.826667pt;}
.y6f{bottom:421.986667pt;}
.y28{bottom:424.706667pt;}
.y132{bottom:429.026667pt;}
.y6d{bottom:434.306667pt;}
.y108{bottom:435.426667pt;}
.y27{bottom:440.066667pt;}
.yb0{bottom:440.226667pt;}
.ye2{bottom:447.106667pt;}
.y6b{bottom:452.706667pt;}
.y107{bottom:453.826667pt;}
.y26{bottom:455.266667pt;}
.y131{bottom:455.426667pt;}
.yaf{bottom:458.626667pt;}
.y6c{bottom:458.786667pt;}
.ye0{bottom:465.506667pt;}
.y25{bottom:470.626667pt;}
.y6a{bottom:471.106667pt;}
.ye1{bottom:471.586667pt;}
.y106{bottom:472.226667pt;}
.y130{bottom:473.826667pt;}
.ydf{bottom:483.906667pt;}
.yad{bottom:485.026667pt;}
.y24{bottom:485.986667pt;}
.y69{bottom:489.506667pt;}
.y105{bottom:490.626667pt;}
.yae{bottom:491.106667pt;}
.y12f{bottom:500.226667pt;}
.y23{bottom:501.346667pt;}
.ydd{bottom:502.306667pt;}
.yac{bottom:503.426667pt;}
.y68{bottom:507.906667pt;}
.yde{bottom:508.386667pt;}
.y104{bottom:509.026667pt;}
.y22{bottom:516.706667pt;}
.y12e{bottom:518.626667pt;}
.ydb{bottom:520.706667pt;}
.yab{bottom:521.826667pt;}
.y67{bottom:526.306667pt;}
.ydc{bottom:526.786667pt;}
.y103{bottom:527.426667pt;}
.y21{bottom:531.933333pt;}
.yda{bottom:539.133333pt;}
.yaa{bottom:540.253333pt;}
.y12d{bottom:545.053333pt;}
.y102{bottom:545.853333pt;}
.y20{bottom:547.293333pt;}
.y65{bottom:552.733333pt;}
.yd9{bottom:557.533333pt;}
.ya9{bottom:558.653333pt;}
.y66{bottom:558.813333pt;}
.y1f{bottom:562.653333pt;}
.y12c{bottom:563.453333pt;}
.y101{bottom:564.253333pt;}
.y63{bottom:571.133333pt;}
.ya7{bottom:577.053333pt;}
.y64{bottom:577.213333pt;}
.y1e{bottom:578.013333pt;}
.y100{bottom:582.653333pt;}
.ya8{bottom:583.133333pt;}
.yd7{bottom:583.933333pt;}
.y61{bottom:589.533333pt;}
.y12b{bottom:589.853333pt;}
.yd8{bottom:590.013333pt;}
.y1d{bottom:593.373333pt;}
.ya6{bottom:595.453333pt;}
.y62{bottom:595.613333pt;}
.yff{bottom:601.053333pt;}
.yd5{bottom:602.333333pt;}
.y60{bottom:607.933333pt;}
.y12a{bottom:608.253333pt;}
.yd6{bottom:608.413333pt;}
.y1c{bottom:608.733333pt;}
.ya5{bottom:613.853333pt;}
.yfe{bottom:619.453333pt;}
.yd3{bottom:620.733333pt;}
.y1b{bottom:623.933333pt;}
.y5e{bottom:626.333333pt;}
.y129{bottom:626.653333pt;}
.yd4{bottom:626.813333pt;}
.ya4{bottom:632.253333pt;}
.y5f{bottom:632.413333pt;}
.yfd{bottom:637.853333pt;}
.yd2{bottom:639.133333pt;}
.y1a{bottom:639.293333pt;}
.y5d{bottom:644.733333pt;}
.y128{bottom:645.053333pt;}
.y19{bottom:654.653333pt;}
.ya3{bottom:654.973333pt;}
.yfc{bottom:656.253333pt;}
.yd1{bottom:657.533333pt;}
.y5c{bottom:663.133333pt;}
.y127{bottom:663.453333pt;}
.y18{bottom:670.013333pt;}
.y14e{bottom:670.813333pt;}
.yfb{bottom:674.653333pt;}
.ycf{bottom:683.933333pt;}
.y17{bottom:685.373333pt;}
.y14d{bottom:689.213333pt;}
.y5a{bottom:689.533333pt;}
.y126{bottom:689.853333pt;}
.yd0{bottom:690.013333pt;}
.yfa{bottom:693.053333pt;}
.ya2{bottom:694.813333pt;}
.y5b{bottom:695.613333pt;}
.y16{bottom:700.733333pt;}
.yce{bottom:702.333333pt;}
.y59{bottom:707.933333pt;}
.y125{bottom:708.253333pt;}
.ya1{bottom:713.213333pt;}
.y14c{bottom:715.613333pt;}
.y15{bottom:715.933333pt;}
.yf9{bottom:719.453333pt;}
.ycd{bottom:720.733333pt;}
.y57{bottom:726.333333pt;}
.y124{bottom:726.653333pt;}
.y14{bottom:731.293333pt;}
.y58{bottom:732.413333pt;}
.y14b{bottom:734.013333pt;}
.yf8{bottom:737.853333pt;}
.ycc{bottom:739.133333pt;}
.y9f{bottom:739.613333pt;}
.y56{bottom:744.733333pt;}
.ya0{bottom:745.693333pt;}
.y13{bottom:746.653333pt;}
.y14a{bottom:752.413333pt;}
.y123{bottom:753.053333pt;}
.yf7{bottom:756.253333pt;}
.ycb{bottom:757.533333pt;}
.y9e{bottom:758.013333pt;}
.y12{bottom:762.013333pt;}
.y55{bottom:763.133333pt;}
.y122{bottom:771.493333pt;}
.yf6{bottom:774.693333pt;}
.y9d{bottom:776.453333pt;}
.y11{bottom:777.413333pt;}
.y149{bottom:778.853333pt;}
.y54{bottom:781.573333pt;}
.yc9{bottom:783.973333pt;}
.yca{bottom:790.053333pt;}
.y10{bottom:792.773333pt;}
.y9c{bottom:794.853333pt;}
.y148{bottom:797.253333pt;}
.y121{bottom:797.893333pt;}
.y52{bottom:799.973333pt;}
.yf5{bottom:801.093333pt;}
.yc8{bottom:802.373333pt;}
.y47{bottom:803.653333pt;}
.y53{bottom:806.053333pt;}
.yf{bottom:810.533333pt;}
.y9b{bottom:813.253333pt;}
.y120{bottom:816.293333pt;}
.yf4{bottom:819.493333pt;}
.yc7{bottom:820.773333pt;}
.y51{bottom:821.093333pt;}
.y147{bottom:823.653333pt;}
.ye{bottom:831.173333pt;}
.y46{bottom:834.053333pt;}
.yf3{bottom:837.893333pt;}
.yc6{bottom:839.173333pt;}
.y9a{bottom:839.653333pt;}
.y146{bottom:842.053333pt;}
.y11f{bottom:842.693333pt;}
.y50{bottom:849.253333pt;}
.yf2{bottom:856.293333pt;}
.y99{bottom:858.053333pt;}
.yd{bottom:859.013333pt;}
.y145{bottom:860.453333pt;}
.y45{bottom:861.093333pt;}
.yc4{bottom:865.573333pt;}
.y4f{bottom:867.653333pt;}
.yc5{bottom:871.653333pt;}
.yf1{bottom:874.693333pt;}
.y97{bottom:876.453333pt;}
.yc{bottom:877.093333pt;}
.y98{bottom:882.533333pt;}
.yc3{bottom:883.973333pt;}
.y4e{bottom:886.053333pt;}
.y144{bottom:886.853333pt;}
.y44{bottom:887.013333pt;}
.y11e{bottom:887.493333pt;}
.yf0{bottom:893.093333pt;}
.y95{bottom:894.853333pt;}
.y96{bottom:900.933333pt;}
.yc1{bottom:902.373333pt;}
.y4d{bottom:904.453333pt;}
.y143{bottom:905.253333pt;}
.yb{bottom:907.813333pt;}
.yc2{bottom:908.453333pt;}
.yef{bottom:911.493333pt;}
.y43{bottom:913.093333pt;}
.y94{bottom:913.253333pt;}
.y11d{bottom:913.893333pt;}
.yc0{bottom:920.773333pt;}
.y4c{bottom:922.853333pt;}
.yee{bottom:929.893333pt;}
.y142{bottom:931.653333pt;}
.y11c{bottom:932.293333pt;}
.ya{bottom:936.453333pt;}
.y42{bottom:939.013333pt;}
.ybf{bottom:939.173333pt;}
.y92{bottom:939.653333pt;}
.y4b{bottom:941.253333pt;}
.y93{bottom:945.733333pt;}
.yed{bottom:948.293333pt;}
.y141{bottom:950.053333pt;}
.y9{bottom:954.853333pt;}
.y11b{bottom:955.013333pt;}
.ybd{bottom:957.573333pt;}
.y91{bottom:958.053333pt;}
.y4a{bottom:959.653333pt;}
.y2{bottom:960.773333pt;}
.ybe{bottom:963.653333pt;}
.y41{bottom:964.933333pt;}
.yec{bottom:966.693333pt;}
.y8{bottom:973.253333pt;}
.y90{bottom:976.453333pt;}
.y49{bottom:980.773333pt;}
.yeb{bottom:985.093333pt;}
.y7{bottom:988.133333pt;}
.y40{bottom:991.013333pt;}
.y8f{bottom:994.853333pt;}
.y48{bottom:1007.840000pt;}
.y3f{bottom:1010.720000pt;}
.y8d{bottom:1013.280000pt;}
.y8e{bottom:1019.360000pt;}
.h13{height:28.822500pt;}
.h12{height:31.828125pt;}
.h11{height:35.761250pt;}
.h15{height:36.452187pt;}
.ha{height:38.672812pt;}
.h6{height:44.301250pt;}
.h14{height:45.157187pt;}
.h2{height:49.105000pt;}
.h5{height:49.774063pt;}
.h7{height:53.375000pt;}
.h10{height:54.406250pt;}
.h4{height:55.171250pt;}
.hd{height:58.563750pt;}
.h9{height:59.968750pt;}
.hb{height:62.448750pt;}
.hc{height:63.656250pt;}
.hf{height:65.812500pt;}
.h3{height:65.952000pt;}
.he{height:81.046875pt;}
.h8{height:100.147812pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:615.293333pt;}
.w4{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:9.440000pt;}
.x4{left:38.240000pt;}
.x1{left:94.431988pt;}
.x1f{left:98.751988pt;}
.x20{left:103.071988pt;}
.x9{left:109.151988pt;}
.x28{left:132.671976pt;}
.x29{left:143.546655pt;}
.x14{left:156.666643pt;}
.x15{left:162.106655pt;}
.x34{left:196.986643pt;}
.x18{left:204.026643pt;}
.x33{left:205.466643pt;}
.x35{left:207.866655pt;}
.x19{left:209.466655pt;}
.x6{left:216.826655pt;}
.x40{left:230.266643pt;}
.x5{left:236.674667pt;}
.x41{left:241.146655pt;}
.x22{left:243.226643pt;}
.x2c{left:244.986643pt;}
.x23{left:254.146655pt;}
.x26{left:256.066643pt;}
.x24{left:259.586643pt;}
.x27{left:266.946655pt;}
.x25{left:270.466655pt;}
.x1e{left:286.466655pt;}
.x1c{left:297.986643pt;}
.x1d{left:308.866655pt;}
.x16{left:314.946643pt;}
.x17{left:320.386655pt;}
.x44{left:321.986643pt;}
.x2f{left:330.306643pt;}
.x45{left:332.866655pt;}
.x30{left:341.186655pt;}
.x12{left:349.986643pt;}
.x13{left:355.426655pt;}
.xa{left:357.826643pt;}
.x2a{left:361.346643pt;}
.xb{left:363.266655pt;}
.x21{left:366.626655pt;}
.x2b{left:372.226655pt;}
.x38{left:390.786643pt;}
.x31{left:391.906643pt;}
.x39{left:401.666655pt;}
.x32{left:402.786655pt;}
.x3a{left:404.866643pt;}
.x3b{left:415.746655pt;}
.x3{left:445.981333pt;}
.xc{left:447.133310pt;}
.x10{left:450.973310pt;}
.xd{left:452.573322pt;}
.x11{left:456.413322pt;}
.x42{left:476.413310pt;}
.x43{left:487.293322pt;}
.x36{left:512.573310pt;}
.x2d{left:521.373310pt;}
.x37{left:523.453322pt;}
.x2e{left:532.253322pt;}
.xe{left:551.773310pt;}
.xf{left:557.213322pt;}
.x7{left:565.853322pt;}
.x3c{left:567.773322pt;}
.x3d{left:589.413310pt;}
.x3e{left:600.293322pt;}
.x3f{left:688.453310pt;}
.x1a{left:690.053310pt;}
.x1b{left:695.493322pt;}
.x8{left:699.333322pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  