
    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_c6a39d9560efe8d065a847e0.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.064453;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_ca5889483e66781b2f36d888.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284180;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_efa3bdc060cf7cb33fbffc96.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.691406;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_0f8abc1ec94fb7af4fc6ab7b.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_e29ef25944a8c9be51396ded.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.080566;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_286d2b4c1b7b7f2b04e771de.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.311035;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_5b89f1ca0441c1b666bd7424.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_5fe5fd0daa456cea960576de.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.284180;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_15e9b3bc886dcb0c238bacdc.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.893555;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_4ca097ae661f7b851cdd6a1b.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.956543;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_c6c02c1167eb39dd99503ce3.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.402354;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);}
.v2{vertical-align:-82.800000px;}
.v1{vertical-align:-81.360000px;}
.v0{vertical-align:0.000000px;}
.ls1e{letter-spacing:-1.440000px;}
.ls26{letter-spacing:-1.008000px;}
.ls1f{letter-spacing:-0.936000px;}
.ls6{letter-spacing:-0.720000px;}
.ls11{letter-spacing:-0.432000px;}
.ls8{letter-spacing:-0.414600px;}
.ls5{letter-spacing:-0.397200px;}
.ls1b{letter-spacing:-0.360000px;}
.lsd{letter-spacing:-0.288000px;}
.ls27{letter-spacing:-0.158400px;}
.ls13{letter-spacing:-0.144000px;}
.ls20{letter-spacing:-0.072000px;}
.ls4{letter-spacing:-0.034560px;}
.ls3{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.017280px;}
.ls0{letter-spacing:0.025920px;}
.lse{letter-spacing:0.072000px;}
.ls15{letter-spacing:0.144000px;}
.ls29{letter-spacing:0.180000px;}
.ls12{letter-spacing:0.216000px;}
.ls1a{letter-spacing:0.288000px;}
.ls7{letter-spacing:0.305400px;}
.lsf{letter-spacing:0.360000px;}
.ls14{letter-spacing:0.432000px;}
.lsc{letter-spacing:0.575040px;}
.ls18{letter-spacing:0.720000px;}
.ls28{letter-spacing:0.828000px;}
.ls10{letter-spacing:1.080000px;}
.ls21{letter-spacing:1.224000px;}
.ls19{letter-spacing:1.416000px;}
.lsa{letter-spacing:2.160000px;}
.ls17{letter-spacing:4.320000px;}
.lsb{letter-spacing:5.760000px;}
.ls16{letter-spacing:7.200000px;}
.ls1d{letter-spacing:7.920000px;}
.ls1c{letter-spacing:18.000000px;}
.ls25{letter-spacing:34.841280px;}
.ls2{letter-spacing:63.540000px;}
.ls24{letter-spacing:67.961280px;}
.ls22{letter-spacing:76.440000px;}
.ls9{letter-spacing:109.416000px;}
.ls23{letter-spacing:859.836000px;}
.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;}
}
.ws1{word-spacing:-21.060000px;}
.ws0{word-spacing:-19.440000px;}
.ws2{word-spacing:-19.405440px;}
.ws5{word-spacing:-18.000000px;}
.ws7{word-spacing:-17.712000px;}
.ws6{word-spacing:-17.064000px;}
.ws3{word-spacing:-16.560000px;}
.ws4{word-spacing:0.000000px;}
._11{margin-left:-2.333280px;}
._5{margin-left:-1.008000px;}
._0{width:1.244160px;}
._c{width:2.286720px;}
._b{width:3.643200px;}
._7{width:5.166720px;}
._8{width:7.137120px;}
._16{width:8.198880px;}
._a{width:9.699840px;}
._9{width:10.929600px;}
._17{width:11.975040px;}
._1b{width:13.046400px;}
._15{width:14.400000px;}
._6{width:15.448320px;}
._14{width:16.907520px;}
._25{width:18.098400px;}
._24{width:19.347840px;}
._21{width:20.880000px;}
._f{width:22.320000px;}
._10{width:23.832000px;}
._1c{width:25.200000px;}
._1d{width:26.364000px;}
._20{width:27.831840px;}
._18{width:29.232000px;}
._12{width:30.312000px;}
._13{width:31.320000px;}
._22{width:33.696000px;}
._23{width:34.704000px;}
._1e{width:47.952000px;}
._1f{width:49.536000px;}
._d{width:62.795520px;}
._e{width:65.511360px;}
._19{width:68.544000px;}
._1a{width:70.128000px;}
._26{width:257.158560px;}
._1{width:480.335520px;}
._4{width:736.860000px;}
._2{width:751.980000px;}
._3{width:812.448480px;}
._27{width:846.300000px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs0{font-size:77.760000px;}
.fs4{font-size:84.240000px;}
.fs3{font-size:131.760000px;}
.fs5{font-size:329.760000px;}
.y0{bottom:0.000000px;}
.ye{bottom:0.180000px;}
.y66{bottom:4.320000px;}
.ya0{bottom:4.500000px;}
.yc4{bottom:7.020000px;}
.yaf{bottom:14.760000px;}
.yaa{bottom:14.790000px;}
.y9d{bottom:14.940000px;}
.yc5{bottom:17.280000px;}
.yc{bottom:21.240000px;}
.y9f{bottom:25.200000px;}
.ya7{bottom:25.230000px;}
.yc3{bottom:27.720000px;}
.yd{bottom:31.140000px;}
.yad{bottom:35.460000px;}
.ya5{bottom:35.490000px;}
.y9c{bottom:35.640000px;}
.yb{bottom:41.940000px;}
.y9e{bottom:45.900000px;}
.ya6{bottom:45.930000px;}
.yac{bottom:56.160000px;}
.ya9{bottom:56.190000px;}
.ya2{bottom:56.340000px;}
.y5{bottom:57.600000px;}
.ya{bottom:62.640000px;}
.ya3{bottom:66.600000px;}
.ya8{bottom:66.630000px;}
.yae{bottom:76.860000px;}
.y4{bottom:86.940000px;}
.yb0{bottom:87.300000px;}
.y3{bottom:119.880000px;}
.yc0{bottom:145.656000px;}
.y97{bottom:146.016000px;}
.y35{bottom:149.076000px;}
.ydb{bottom:162.390000px;}
.ybf{bottom:166.350000px;}
.y96{bottom:166.710000px;}
.y34{bottom:168.150000px;}
.y64{bottom:171.930000px;}
.yfb{bottom:176.610000px;}
.yda{bottom:183.090000px;}
.y33{bottom:187.050000px;}
.y95{bottom:187.410000px;}
.y63{bottom:192.630000px;}
.yfa{bottom:195.510000px;}
.yd9{bottom:203.790000px;}
.y32{bottom:205.950000px;}
.ybe{bottom:207.750000px;}
.y94{bottom:208.110000px;}
.y62{bottom:213.330000px;}
.yf9{bottom:214.590000px;}
.yd8{bottom:224.490000px;}
.y31{bottom:225.030000px;}
.ybd{bottom:228.450000px;}
.y93{bottom:228.810000px;}
.yf8{bottom:233.490000px;}
.y61{bottom:234.030000px;}
.y30{bottom:243.930000px;}
.yd7{bottom:245.190000px;}
.ybc{bottom:249.150000px;}
.y92{bottom:249.510000px;}
.yf7{bottom:252.570000px;}
.y60{bottom:254.730000px;}
.y2f{bottom:263.010000px;}
.yd6{bottom:265.890000px;}
.ybb{bottom:269.850000px;}
.y91{bottom:270.210000px;}
.yf6{bottom:271.470000px;}
.y5f{bottom:275.430000px;}
.y2e{bottom:281.910000px;}
.yd5{bottom:286.590000px;}
.yf5{bottom:290.370000px;}
.yba{bottom:290.550000px;}
.y90{bottom:290.910000px;}
.y5e{bottom:296.130000px;}
.y2d{bottom:300.990000px;}
.yd4{bottom:302.790000px;}
.yf4{bottom:309.450000px;}
.yb9{bottom:311.250000px;}
.y8f{bottom:311.610000px;}
.y5d{bottom:316.830000px;}
.y2c{bottom:319.890000px;}
.yf3{bottom:328.350000px;}
.yb8{bottom:331.950000px;}
.y8e{bottom:332.310000px;}
.y5c{bottom:337.530000px;}
.y2b{bottom:338.790000px;}
.yf2{bottom:347.430000px;}
.yb7{bottom:352.650000px;}
.y8d{bottom:353.010000px;}
.y2a{bottom:357.510000px;}
.y5b{bottom:358.230000px;}
.yf1{bottom:366.330000px;}
.yb6{bottom:373.350000px;}
.y8c{bottom:373.710000px;}
.y29{bottom:376.770000px;}
.y5a{bottom:378.930000px;}
.yf0{bottom:385.455000px;}
.yb5{bottom:394.095000px;}
.y8b{bottom:394.455000px;}
.y28{bottom:395.895000px;}
.y59{bottom:399.675000px;}
.yef{bottom:404.355000px;}
.y27{bottom:414.795000px;}
.y8a{bottom:415.155000px;}
.y58{bottom:420.375000px;}
.yee{bottom:423.255000px;}
.y26{bottom:433.695000px;}
.yb4{bottom:435.495000px;}
.y89{bottom:435.855000px;}
.y57{bottom:441.075000px;}
.yed{bottom:442.335000px;}
.y25{bottom:452.775000px;}
.yb3{bottom:456.195000px;}
.y88{bottom:456.555000px;}
.yec{bottom:461.235000px;}
.y56{bottom:461.775000px;}
.y24{bottom:471.675000px;}
.yb2{bottom:476.895000px;}
.y87{bottom:477.255000px;}
.yeb{bottom:480.315000px;}
.y55{bottom:482.475000px;}
.y23{bottom:490.755000px;}
.yb1{bottom:497.235000px;}
.y86{bottom:497.955000px;}
.yea{bottom:499.215000px;}
.y54{bottom:503.175000px;}
.y22{bottom:509.655000px;}
.yab{bottom:512.895000px;}
.ye9{bottom:518.115000px;}
.y85{bottom:518.655000px;}
.y53{bottom:523.875000px;}
.y21{bottom:529.455000px;}
.ye8{bottom:537.195000px;}
.y84{bottom:539.355000px;}
.y52{bottom:544.575000px;}
.y20{bottom:551.775000px;}
.ye7{bottom:556.095000px;}
.y83{bottom:560.055000px;}
.y51{bottom:565.275000px;}
.y1f{bottom:574.275000px;}
.ye6{bottom:575.175000px;}
.y82{bottom:580.755000px;}
.y50{bottom:585.975000px;}
.yd3{bottom:590.835000px;}
.y1e{bottom:596.595000px;}
.y81{bottom:601.455000px;}
.y4f{bottom:606.675000px;}
.yd2{bottom:611.535000px;}
.ye5{bottom:616.935000px;}
.ya4{bottom:617.115000px;}
.y1d{bottom:618.555000px;}
.y80{bottom:622.155000px;}
.y4e{bottom:627.375000px;}
.yd1{bottom:632.265000px;}
.ye4{bottom:637.665000px;}
.y1c{bottom:641.445000px;}
.y7f{bottom:642.885000px;}
.y4d{bottom:648.105000px;}
.yd0{bottom:652.965000px;}
.ye3{bottom:658.365000px;}
.y7e{bottom:663.585000px;}
.y1b{bottom:663.945000px;}
.y4c{bottom:668.805000px;}
.ycf{bottom:673.665000px;}
.ye2{bottom:679.065000px;}
.y7d{bottom:684.285000px;}
.y1a{bottom:686.445000px;}
.y4b{bottom:689.505000px;}
.yce{bottom:694.365000px;}
.ye1{bottom:699.765000px;}
.ya1{bottom:700.665000px;}
.y7c{bottom:704.985000px;}
.y19{bottom:708.765000px;}
.y4a{bottom:710.205000px;}
.ycd{bottom:715.065000px;}
.ye0{bottom:720.285000px;}
.y7b{bottom:725.685000px;}
.y18{bottom:730.725000px;}
.y49{bottom:730.905000px;}
.ycc{bottom:735.765000px;}
.ydf{bottom:742.245000px;}
.y7a{bottom:746.385000px;}
.y48{bottom:751.605000px;}
.y17{bottom:753.585000px;}
.ycb{bottom:756.465000px;}
.yde{bottom:764.385000px;}
.y79{bottom:767.085000px;}
.y47{bottom:772.305000px;}
.y16{bottom:775.905000px;}
.yca{bottom:777.165000px;}
.y9b{bottom:784.185000px;}
.ydd{bottom:785.085000px;}
.y78{bottom:787.785000px;}
.y46{bottom:793.005000px;}
.yc9{bottom:794.265000px;}
.y15{bottom:800.205000px;}
.ydc{bottom:807.045000px;}
.y77{bottom:808.485000px;}
.y45{bottom:813.705000px;}
.y14{bottom:824.325000px;}
.y76{bottom:829.185000px;}
.y44{bottom:834.405000px;}
.y13{bottom:848.445000px;}
.y75{bottom:849.885000px;}
.y9a{bottom:851.505000px;}
.y43{bottom:854.925000px;}
.yc8{bottom:857.085000px;}
.y106{bottom:867.165000px;}
.y74{bottom:870.585000px;}
.y99{bottom:872.205000px;}
.y12{bottom:872.565000px;}
.y42{bottom:875.625000px;}
.y105{bottom:887.910000px;}
.y73{bottom:891.330000px;}
.y98{bottom:892.590000px;}
.y41{bottom:896.370000px;}
.y11{bottom:896.730000px;}
.yc7{bottom:899.250000px;}
.y104{bottom:904.110000px;}
.y72{bottom:912.030000px;}
.y40{bottom:917.070000px;}
.y10{bottom:920.850000px;}
.y103{bottom:924.810000px;}
.y71{bottom:932.730000px;}
.y3f{bottom:937.770000px;}
.yf{bottom:944.790000px;}
.y70{bottom:953.430000px;}
.y3e{bottom:958.470000px;}
.y9{bottom:960.990000px;}
.yc6{bottom:962.070000px;}
.y102{bottom:970.170000px;}
.y6f{bottom:974.130000px;}
.y3d{bottom:979.170000px;}
.y101{bottom:989.070000px;}
.y6e{bottom:994.830000px;}
.y3c{bottom:999.870000px;}
.y100{bottom:1008.150000px;}
.y6d{bottom:1015.530000px;}
.y3b{bottom:1020.570000px;}
.yc2{bottom:1025.070000px;}
.yff{bottom:1027.050000px;}
.y6c{bottom:1036.230000px;}
.y65{bottom:1036.770000px;}
.y3a{bottom:1041.270000px;}
.y8{bottom:1044.150000px;}
.yfe{bottom:1046.130000px;}
.y6b{bottom:1056.930000px;}
.y39{bottom:1061.970000px;}
.yfd{bottom:1065.030000px;}
.yc1{bottom:1072.230000px;}
.y6a{bottom:1077.630000px;}
.yfc{bottom:1083.930000px;}
.y7{bottom:1087.350000px;}
.y69{bottom:1098.330000px;}
.y38{bottom:1103.010000px;}
.y68{bottom:1119.030000px;}
.y37{bottom:1121.910000px;}
.y6{bottom:1139.580000px;}
.y67{bottom:1139.760000px;}
.y36{bottom:1141.020000px;}
.y2{bottom:1160.460000px;}
.y1{bottom:1192.140000px;}
.h1d{height:20.685000px;}
.h16{height:41.385000px;}
.h18{height:41.422500px;}
.h3{height:45.184219px;}
.h17{height:46.425000px;}
.hc{height:56.213437px;}
.h19{height:61.101562px;}
.hf{height:62.085000px;}
.h12{height:62.100000px;}
.he{height:64.546875px;}
.hd{height:64.978594px;}
.h4{height:65.010937px;}
.h1c{height:68.084282px;}
.h11{height:70.628906px;}
.h6{height:70.664062px;}
.h1b{height:72.562500px;}
.h9{height:72.846211px;}
.h1a{height:74.004654px;}
.h2{height:76.279219px;}
.h5{height:76.317188px;}
.hb{height:78.367500px;}
.h8{height:78.825000px;}
.h13{height:82.800000px;}
.h14{height:82.830000px;}
.ha{height:84.898125px;}
.h15{height:103.485000px;}
.h7{height:132.789375px;}
.h10{height:323.641406px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wd{width:52.560000px;}
.wc{width:61.740000px;}
.we{width:63.036000px;}
.w5{width:74.014500px;}
.w4{width:82.470000px;}
.wf{width:84.225000px;}
.w7{width:121.341000px;}
.w9{width:126.921000px;}
.w8{width:142.956000px;}
.w6{width:147.409500px;}
.wa{width:157.845000px;}
.w3{width:180.735000px;}
.wb{width:201.799500px;}
.w10{width:232.395000px;}
.w11{width:337.753500px;}
.w12{width:401.325000px;}
.w2{width:475.843500px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:7.918500px;}
.x33{left:8.985000px;}
.x1f{left:10.425000px;}
.x2c{left:12.780000px;}
.x2f{left:14.040000px;}
.x22{left:15.120000px;}
.x3d{left:16.365000px;}
.x2d{left:17.460000px;}
.x34{left:18.540000px;}
.x26{left:20.145000px;}
.x2e{left:21.240000px;}
.x42{left:22.500000px;}
.x31{left:23.580000px;}
.x24{left:25.545000px;}
.x2a{left:27.210000px;}
.x1d{left:29.149500px;}
.x29{left:31.140000px;}
.x25{left:32.565000px;}
.x20{left:34.590000px;}
.x2b{left:37.470000px;}
.x32{left:39.240000px;}
.x1c{left:40.849500px;}
.x28{left:42.840000px;}
.x43{left:44.805000px;}
.x30{left:52.560000px;}
.x3f{left:54.345000px;}
.x38{left:57.223500px;}
.x40{left:62.670000px;}
.x35{left:67.320000px;}
.x41{left:69.330000px;}
.x3{left:77.041500px;}
.x1{left:84.960000px;}
.x8{left:86.790000px;}
.xe{left:88.740000px;}
.x1b{left:96.886500px;}
.x19{left:99.576000px;}
.x37{left:105.336000px;}
.xa{left:110.916000px;}
.x36{left:113.076000px;}
.xc{left:115.056000px;}
.x10{left:127.476000px;}
.x46{left:134.676000px;}
.x45{left:135.936000px;}
.x1a{left:137.376000px;}
.x18{left:158.970000px;}
.x6{left:172.650000px;}
.xb{left:185.250000px;}
.x47{left:204.150000px;}
.x2{left:219.630000px;}
.x1e{left:245.025000px;}
.x39{left:299.415000px;}
.x3a{left:361.875000px;}
.x21{left:367.095000px;}
.xf{left:376.455000px;}
.x3b{left:415.155000px;}
.xd{left:446.505000px;}
.x3c{left:478.920000px;}
.x23{left:510.780000px;}
.x14{left:551.265000px;}
.x5{left:552.900000px;}
.x3e{left:563.880000px;}
.x15{left:579.345000px;}
.x11{left:583.305000px;}
.x12{left:600.045000px;}
.x13{left:616.965000px;}
.x16{left:634.650000px;}
.x27{left:638.430000px;}
.x17{left:644.910000px;}
.x7{left:733.650000px;}
.x44{left:763.350000px;}
.x9{left:808.020000px;}
@media print{
.v2{vertical-align:-73.600000pt;}
.v1{vertical-align:-72.320000pt;}
.v0{vertical-align:0.000000pt;}
.ls1e{letter-spacing:-1.280000pt;}
.ls26{letter-spacing:-0.896000pt;}
.ls1f{letter-spacing:-0.832000pt;}
.ls6{letter-spacing:-0.640000pt;}
.ls11{letter-spacing:-0.384000pt;}
.ls8{letter-spacing:-0.368533pt;}
.ls5{letter-spacing:-0.353067pt;}
.ls1b{letter-spacing:-0.320000pt;}
.lsd{letter-spacing:-0.256000pt;}
.ls27{letter-spacing:-0.140800pt;}
.ls13{letter-spacing:-0.128000pt;}
.ls20{letter-spacing:-0.064000pt;}
.ls4{letter-spacing:-0.030720pt;}
.ls3{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.015360pt;}
.ls0{letter-spacing:0.023040pt;}
.lse{letter-spacing:0.064000pt;}
.ls15{letter-spacing:0.128000pt;}
.ls29{letter-spacing:0.160000pt;}
.ls12{letter-spacing:0.192000pt;}
.ls1a{letter-spacing:0.256000pt;}
.ls7{letter-spacing:0.271467pt;}
.lsf{letter-spacing:0.320000pt;}
.ls14{letter-spacing:0.384000pt;}
.lsc{letter-spacing:0.511147pt;}
.ls18{letter-spacing:0.640000pt;}
.ls28{letter-spacing:0.736000pt;}
.ls10{letter-spacing:0.960000pt;}
.ls21{letter-spacing:1.088000pt;}
.ls19{letter-spacing:1.258667pt;}
.lsa{letter-spacing:1.920000pt;}
.ls17{letter-spacing:3.840000pt;}
.lsb{letter-spacing:5.120000pt;}
.ls16{letter-spacing:6.400000pt;}
.ls1d{letter-spacing:7.040000pt;}
.ls1c{letter-spacing:16.000000pt;}
.ls25{letter-spacing:30.970027pt;}
.ls2{letter-spacing:56.480000pt;}
.ls24{letter-spacing:60.410027pt;}
.ls22{letter-spacing:67.946667pt;}
.ls9{letter-spacing:97.258667pt;}
.ls23{letter-spacing:764.298667pt;}
.ws1{word-spacing:-18.720000pt;}
.ws0{word-spacing:-17.280000pt;}
.ws2{word-spacing:-17.249280pt;}
.ws5{word-spacing:-16.000000pt;}
.ws7{word-spacing:-15.744000pt;}
.ws6{word-spacing:-15.168000pt;}
.ws3{word-spacing:-14.720000pt;}
.ws4{word-spacing:0.000000pt;}
._11{margin-left:-2.074027pt;}
._5{margin-left:-0.896000pt;}
._0{width:1.105920pt;}
._c{width:2.032640pt;}
._b{width:3.238400pt;}
._7{width:4.592640pt;}
._8{width:6.344107pt;}
._16{width:7.287893pt;}
._a{width:8.622080pt;}
._9{width:9.715200pt;}
._17{width:10.644480pt;}
._1b{width:11.596800pt;}
._15{width:12.800000pt;}
._6{width:13.731840pt;}
._14{width:15.028907pt;}
._25{width:16.087467pt;}
._24{width:17.198080pt;}
._21{width:18.560000pt;}
._f{width:19.840000pt;}
._10{width:21.184000pt;}
._1c{width:22.400000pt;}
._1d{width:23.434667pt;}
._20{width:24.739413pt;}
._18{width:25.984000pt;}
._12{width:26.944000pt;}
._13{width:27.840000pt;}
._22{width:29.952000pt;}
._23{width:30.848000pt;}
._1e{width:42.624000pt;}
._1f{width:44.032000pt;}
._d{width:55.818240pt;}
._e{width:58.232320pt;}
._19{width:60.928000pt;}
._1a{width:62.336000pt;}
._26{width:228.585387pt;}
._1{width:426.964907pt;}
._4{width:654.986667pt;}
._2{width:668.426667pt;}
._3{width:722.176427pt;}
._27{width:752.266667pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs0{font-size:69.120000pt;}
.fs4{font-size:74.880000pt;}
.fs3{font-size:117.120000pt;}
.fs5{font-size:293.120000pt;}
.y0{bottom:0.000000pt;}
.ye{bottom:0.160000pt;}
.y66{bottom:3.840000pt;}
.ya0{bottom:4.000000pt;}
.yc4{bottom:6.240000pt;}
.yaf{bottom:13.120000pt;}
.yaa{bottom:13.146667pt;}
.y9d{bottom:13.280000pt;}
.yc5{bottom:15.360000pt;}
.yc{bottom:18.880000pt;}
.y9f{bottom:22.400000pt;}
.ya7{bottom:22.426667pt;}
.yc3{bottom:24.640000pt;}
.yd{bottom:27.680000pt;}
.yad{bottom:31.520000pt;}
.ya5{bottom:31.546667pt;}
.y9c{bottom:31.680000pt;}
.yb{bottom:37.280000pt;}
.y9e{bottom:40.800000pt;}
.ya6{bottom:40.826667pt;}
.yac{bottom:49.920000pt;}
.ya9{bottom:49.946667pt;}
.ya2{bottom:50.080000pt;}
.y5{bottom:51.200000pt;}
.ya{bottom:55.680000pt;}
.ya3{bottom:59.200000pt;}
.ya8{bottom:59.226667pt;}
.yae{bottom:68.320000pt;}
.y4{bottom:77.280000pt;}
.yb0{bottom:77.600000pt;}
.y3{bottom:106.560000pt;}
.yc0{bottom:129.472000pt;}
.y97{bottom:129.792000pt;}
.y35{bottom:132.512000pt;}
.ydb{bottom:144.346667pt;}
.ybf{bottom:147.866667pt;}
.y96{bottom:148.186667pt;}
.y34{bottom:149.466667pt;}
.y64{bottom:152.826667pt;}
.yfb{bottom:156.986667pt;}
.yda{bottom:162.746667pt;}
.y33{bottom:166.266667pt;}
.y95{bottom:166.586667pt;}
.y63{bottom:171.226667pt;}
.yfa{bottom:173.786667pt;}
.yd9{bottom:181.146667pt;}
.y32{bottom:183.066667pt;}
.ybe{bottom:184.666667pt;}
.y94{bottom:184.986667pt;}
.y62{bottom:189.626667pt;}
.yf9{bottom:190.746667pt;}
.yd8{bottom:199.546667pt;}
.y31{bottom:200.026667pt;}
.ybd{bottom:203.066667pt;}
.y93{bottom:203.386667pt;}
.yf8{bottom:207.546667pt;}
.y61{bottom:208.026667pt;}
.y30{bottom:216.826667pt;}
.yd7{bottom:217.946667pt;}
.ybc{bottom:221.466667pt;}
.y92{bottom:221.786667pt;}
.yf7{bottom:224.506667pt;}
.y60{bottom:226.426667pt;}
.y2f{bottom:233.786667pt;}
.yd6{bottom:236.346667pt;}
.ybb{bottom:239.866667pt;}
.y91{bottom:240.186667pt;}
.yf6{bottom:241.306667pt;}
.y5f{bottom:244.826667pt;}
.y2e{bottom:250.586667pt;}
.yd5{bottom:254.746667pt;}
.yf5{bottom:258.106667pt;}
.yba{bottom:258.266667pt;}
.y90{bottom:258.586667pt;}
.y5e{bottom:263.226667pt;}
.y2d{bottom:267.546667pt;}
.yd4{bottom:269.146667pt;}
.yf4{bottom:275.066667pt;}
.yb9{bottom:276.666667pt;}
.y8f{bottom:276.986667pt;}
.y5d{bottom:281.626667pt;}
.y2c{bottom:284.346667pt;}
.yf3{bottom:291.866667pt;}
.yb8{bottom:295.066667pt;}
.y8e{bottom:295.386667pt;}
.y5c{bottom:300.026667pt;}
.y2b{bottom:301.146667pt;}
.yf2{bottom:308.826667pt;}
.yb7{bottom:313.466667pt;}
.y8d{bottom:313.786667pt;}
.y2a{bottom:317.786667pt;}
.y5b{bottom:318.426667pt;}
.yf1{bottom:325.626667pt;}
.yb6{bottom:331.866667pt;}
.y8c{bottom:332.186667pt;}
.y29{bottom:334.906667pt;}
.y5a{bottom:336.826667pt;}
.yf0{bottom:342.626667pt;}
.yb5{bottom:350.306667pt;}
.y8b{bottom:350.626667pt;}
.y28{bottom:351.906667pt;}
.y59{bottom:355.266667pt;}
.yef{bottom:359.426667pt;}
.y27{bottom:368.706667pt;}
.y8a{bottom:369.026667pt;}
.y58{bottom:373.666667pt;}
.yee{bottom:376.226667pt;}
.y26{bottom:385.506667pt;}
.yb4{bottom:387.106667pt;}
.y89{bottom:387.426667pt;}
.y57{bottom:392.066667pt;}
.yed{bottom:393.186667pt;}
.y25{bottom:402.466667pt;}
.yb3{bottom:405.506667pt;}
.y88{bottom:405.826667pt;}
.yec{bottom:409.986667pt;}
.y56{bottom:410.466667pt;}
.y24{bottom:419.266667pt;}
.yb2{bottom:423.906667pt;}
.y87{bottom:424.226667pt;}
.yeb{bottom:426.946667pt;}
.y55{bottom:428.866667pt;}
.y23{bottom:436.226667pt;}
.yb1{bottom:441.986667pt;}
.y86{bottom:442.626667pt;}
.yea{bottom:443.746667pt;}
.y54{bottom:447.266667pt;}
.y22{bottom:453.026667pt;}
.yab{bottom:455.906667pt;}
.ye9{bottom:460.546667pt;}
.y85{bottom:461.026667pt;}
.y53{bottom:465.666667pt;}
.y21{bottom:470.626667pt;}
.ye8{bottom:477.506667pt;}
.y84{bottom:479.426667pt;}
.y52{bottom:484.066667pt;}
.y20{bottom:490.466667pt;}
.ye7{bottom:494.306667pt;}
.y83{bottom:497.826667pt;}
.y51{bottom:502.466667pt;}
.y1f{bottom:510.466667pt;}
.ye6{bottom:511.266667pt;}
.y82{bottom:516.226667pt;}
.y50{bottom:520.866667pt;}
.yd3{bottom:525.186667pt;}
.y1e{bottom:530.306667pt;}
.y81{bottom:534.626667pt;}
.y4f{bottom:539.266667pt;}
.yd2{bottom:543.586667pt;}
.ye5{bottom:548.386667pt;}
.ya4{bottom:548.546667pt;}
.y1d{bottom:549.826667pt;}
.y80{bottom:553.026667pt;}
.y4e{bottom:557.666667pt;}
.yd1{bottom:562.013333pt;}
.ye4{bottom:566.813333pt;}
.y1c{bottom:570.173333pt;}
.y7f{bottom:571.453333pt;}
.y4d{bottom:576.093333pt;}
.yd0{bottom:580.413333pt;}
.ye3{bottom:585.213333pt;}
.y7e{bottom:589.853333pt;}
.y1b{bottom:590.173333pt;}
.y4c{bottom:594.493333pt;}
.ycf{bottom:598.813333pt;}
.ye2{bottom:603.613333pt;}
.y7d{bottom:608.253333pt;}
.y1a{bottom:610.173333pt;}
.y4b{bottom:612.893333pt;}
.yce{bottom:617.213333pt;}
.ye1{bottom:622.013333pt;}
.ya1{bottom:622.813333pt;}
.y7c{bottom:626.653333pt;}
.y19{bottom:630.013333pt;}
.y4a{bottom:631.293333pt;}
.ycd{bottom:635.613333pt;}
.ye0{bottom:640.253333pt;}
.y7b{bottom:645.053333pt;}
.y18{bottom:649.533333pt;}
.y49{bottom:649.693333pt;}
.ycc{bottom:654.013333pt;}
.ydf{bottom:659.773333pt;}
.y7a{bottom:663.453333pt;}
.y48{bottom:668.093333pt;}
.y17{bottom:669.853333pt;}
.ycb{bottom:672.413333pt;}
.yde{bottom:679.453333pt;}
.y79{bottom:681.853333pt;}
.y47{bottom:686.493333pt;}
.y16{bottom:689.693333pt;}
.yca{bottom:690.813333pt;}
.y9b{bottom:697.053333pt;}
.ydd{bottom:697.853333pt;}
.y78{bottom:700.253333pt;}
.y46{bottom:704.893333pt;}
.yc9{bottom:706.013333pt;}
.y15{bottom:711.293333pt;}
.ydc{bottom:717.373333pt;}
.y77{bottom:718.653333pt;}
.y45{bottom:723.293333pt;}
.y14{bottom:732.733333pt;}
.y76{bottom:737.053333pt;}
.y44{bottom:741.693333pt;}
.y13{bottom:754.173333pt;}
.y75{bottom:755.453333pt;}
.y9a{bottom:756.893333pt;}
.y43{bottom:759.933333pt;}
.yc8{bottom:761.853333pt;}
.y106{bottom:770.813333pt;}
.y74{bottom:773.853333pt;}
.y99{bottom:775.293333pt;}
.y12{bottom:775.613333pt;}
.y42{bottom:778.333333pt;}
.y105{bottom:789.253333pt;}
.y73{bottom:792.293333pt;}
.y98{bottom:793.413333pt;}
.y41{bottom:796.773333pt;}
.y11{bottom:797.093333pt;}
.yc7{bottom:799.333333pt;}
.y104{bottom:803.653333pt;}
.y72{bottom:810.693333pt;}
.y40{bottom:815.173333pt;}
.y10{bottom:818.533333pt;}
.y103{bottom:822.053333pt;}
.y71{bottom:829.093333pt;}
.y3f{bottom:833.573333pt;}
.yf{bottom:839.813333pt;}
.y70{bottom:847.493333pt;}
.y3e{bottom:851.973333pt;}
.y9{bottom:854.213333pt;}
.yc6{bottom:855.173333pt;}
.y102{bottom:862.373333pt;}
.y6f{bottom:865.893333pt;}
.y3d{bottom:870.373333pt;}
.y101{bottom:879.173333pt;}
.y6e{bottom:884.293333pt;}
.y3c{bottom:888.773333pt;}
.y100{bottom:896.133333pt;}
.y6d{bottom:902.693333pt;}
.y3b{bottom:907.173333pt;}
.yc2{bottom:911.173333pt;}
.yff{bottom:912.933333pt;}
.y6c{bottom:921.093333pt;}
.y65{bottom:921.573333pt;}
.y3a{bottom:925.573333pt;}
.y8{bottom:928.133333pt;}
.yfe{bottom:929.893333pt;}
.y6b{bottom:939.493333pt;}
.y39{bottom:943.973333pt;}
.yfd{bottom:946.693333pt;}
.yc1{bottom:953.093333pt;}
.y6a{bottom:957.893333pt;}
.yfc{bottom:963.493333pt;}
.y7{bottom:966.533333pt;}
.y69{bottom:976.293333pt;}
.y38{bottom:980.453333pt;}
.y68{bottom:994.693333pt;}
.y37{bottom:997.253333pt;}
.y6{bottom:1012.960000pt;}
.y67{bottom:1013.120000pt;}
.y36{bottom:1014.240000pt;}
.y2{bottom:1031.520000pt;}
.y1{bottom:1059.680000pt;}
.h1d{height:18.386667pt;}
.h16{height:36.786667pt;}
.h18{height:36.820000pt;}
.h3{height:40.163750pt;}
.h17{height:41.266667pt;}
.hc{height:49.967500pt;}
.h19{height:54.312500pt;}
.hf{height:55.186667pt;}
.h12{height:55.200000pt;}
.he{height:57.375000pt;}
.hd{height:57.758750pt;}
.h4{height:57.787500pt;}
.h1c{height:60.519362pt;}
.h11{height:62.781250pt;}
.h6{height:62.812500pt;}
.h1b{height:64.500000pt;}
.h9{height:64.752187pt;}
.h1a{height:65.781915pt;}
.h2{height:67.803750pt;}
.h5{height:67.837500pt;}
.hb{height:69.660000pt;}
.h8{height:70.066667pt;}
.h13{height:73.600000pt;}
.h14{height:73.626667pt;}
.ha{height:75.465000pt;}
.h15{height:91.986667pt;}
.h7{height:118.035000pt;}
.h10{height:287.681250pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wd{width:46.720000pt;}
.wc{width:54.880000pt;}
.we{width:56.032000pt;}
.w5{width:65.790667pt;}
.w4{width:73.306667pt;}
.wf{width:74.866667pt;}
.w7{width:107.858667pt;}
.w9{width:112.818667pt;}
.w8{width:127.072000pt;}
.w6{width:131.030667pt;}
.wa{width:140.306667pt;}
.w3{width:160.653333pt;}
.wb{width:179.377333pt;}
.w10{width:206.573333pt;}
.w11{width:300.225333pt;}
.w12{width:356.733333pt;}
.w2{width:422.972000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:7.038667pt;}
.x33{left:7.986667pt;}
.x1f{left:9.266667pt;}
.x2c{left:11.360000pt;}
.x2f{left:12.480000pt;}
.x22{left:13.440000pt;}
.x3d{left:14.546667pt;}
.x2d{left:15.520000pt;}
.x34{left:16.480000pt;}
.x26{left:17.906667pt;}
.x2e{left:18.880000pt;}
.x42{left:20.000000pt;}
.x31{left:20.960000pt;}
.x24{left:22.706667pt;}
.x2a{left:24.186667pt;}
.x1d{left:25.910667pt;}
.x29{left:27.680000pt;}
.x25{left:28.946667pt;}
.x20{left:30.746667pt;}
.x2b{left:33.306667pt;}
.x32{left:34.880000pt;}
.x1c{left:36.310667pt;}
.x28{left:38.080000pt;}
.x43{left:39.826667pt;}
.x30{left:46.720000pt;}
.x3f{left:48.306667pt;}
.x38{left:50.865333pt;}
.x40{left:55.706667pt;}
.x35{left:59.840000pt;}
.x41{left:61.626667pt;}
.x3{left:68.481333pt;}
.x1{left:75.520000pt;}
.x8{left:77.146667pt;}
.xe{left:78.880000pt;}
.x1b{left:86.121333pt;}
.x19{left:88.512000pt;}
.x37{left:93.632000pt;}
.xa{left:98.592000pt;}
.x36{left:100.512000pt;}
.xc{left:102.272000pt;}
.x10{left:113.312000pt;}
.x46{left:119.712000pt;}
.x45{left:120.832000pt;}
.x1a{left:122.112000pt;}
.x18{left:141.306667pt;}
.x6{left:153.466667pt;}
.xb{left:164.666667pt;}
.x47{left:181.466667pt;}
.x2{left:195.226667pt;}
.x1e{left:217.800000pt;}
.x39{left:266.146667pt;}
.x3a{left:321.666667pt;}
.x21{left:326.306667pt;}
.xf{left:334.626667pt;}
.x3b{left:369.026667pt;}
.xd{left:396.893333pt;}
.x3c{left:425.706667pt;}
.x23{left:454.026667pt;}
.x14{left:490.013333pt;}
.x5{left:491.466667pt;}
.x3e{left:501.226667pt;}
.x15{left:514.973333pt;}
.x11{left:518.493333pt;}
.x12{left:533.373333pt;}
.x13{left:548.413333pt;}
.x16{left:564.133333pt;}
.x27{left:567.493333pt;}
.x17{left:573.253333pt;}
.x7{left:652.133333pt;}
.x44{left:678.533333pt;}
.x9{left:718.240000pt;}
}




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