
    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_294e6a970824f041ea3e38b7.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.914062;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_ed5c240faa55bcff49854b3c.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.921387;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_8b5f9ab5e850a6b8a0e712d2.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.944824;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_aaf9163b686a1c8d583a7771.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.921387;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_16c07fe09db79286bdd4720b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.914062;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_81ddd2219674f9756958b65e.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.040039;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_e9d6e9192a95c2a327f8f23b.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.740234;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);}
.v2{vertical-align:-23.760000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls12{letter-spacing:-0.360000px;}
.ls7{letter-spacing:-0.259800px;}
.ls4{letter-spacing:-0.216000px;}
.ls11{letter-spacing:-0.206400px;}
.lsd{letter-spacing:-0.106800px;}
.ls3{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.106800px;}
.ls2{letter-spacing:0.119520px;}
.ls1{letter-spacing:0.180000px;}
.lsa{letter-spacing:0.206400px;}
.ls5{letter-spacing:0.259920px;}
.lsb{letter-spacing:0.298800px;}
.ls0{letter-spacing:0.360000px;}
.lsc{letter-spacing:0.368640px;}
.lse{letter-spacing:0.540000px;}
.ls10{letter-spacing:36.642720px;}
.ls6{letter-spacing:63.306720px;}
.ls9{letter-spacing:82.026720px;}
.ls8{letter-spacing:119.700000px;}
.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;}
}
.ws4{word-spacing:-41.760000px;}
.ws5{word-spacing:-16.560000px;}
.ws1{word-spacing:-15.300000px;}
.ws9{word-spacing:-15.146400px;}
.wsa{word-spacing:-15.046800px;}
.ws0{word-spacing:-14.940000px;}
.ws8{word-spacing:-14.833200px;}
.wsb{word-spacing:-14.733600px;}
.ws7{word-spacing:-14.680200px;}
.wsc{word-spacing:-14.580000px;}
.ws2{word-spacing:-13.500000px;}
.ws3{word-spacing:-10.440000px;}
.ws6{word-spacing:0.000000px;}
._c{margin-left:-11.340000px;}
._20{margin-left:-3.838560px;}
._9{margin-left:-2.801040px;}
._1{margin-left:-1.598400px;}
._0{width:1.022160px;}
._6{width:2.080080px;}
._2{width:3.365040px;}
._5{width:4.500000px;}
._b{width:5.916240px;}
._10{width:7.521120px;}
._a{width:8.718720px;}
._12{width:10.212720px;}
._11{width:11.414160px;}
._7{width:12.759120px;}
._8{width:13.896240px;}
._1e{width:16.434000px;}
._1c{width:17.987760px;}
._1b{width:19.116960px;}
._1d{width:20.348400px;}
._16{width:22.230720px;}
._15{width:23.246640px;}
._22{width:24.268320px;}
._1f{width:25.989840px;}
._17{width:27.152880px;}
._14{width:28.820880px;}
._f{width:30.008880px;}
._e{width:31.084080px;}
._1a{width:33.029760px;}
._21{width:34.061040px;}
._18{width:35.072880px;}
._13{width:37.821840px;}
._25{width:85.397040px;}
._24{width:86.472720px;}
._26{width:87.688320px;}
._27{width:88.962240px;}
._19{width:119.700000px;}
._23{width:134.798400px;}
._4{width:136.056000px;}
._d{width:201.060000px;}
._3{width:636.906000px;}
.fc4{color:rgb(17,85,204);}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(76,148,216);}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:41.760000px;}
.fs3{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.yc2{bottom:3.240000px;}
.ye9{bottom:3.270000px;}
.yb8{bottom:19.440000px;}
.y10c{bottom:20.340000px;}
.ycb{bottom:20.520000px;}
.ye8{bottom:20.550000px;}
.yc1{bottom:20.565000px;}
.yc{bottom:35.820000px;}
.yb7{bottom:36.540000px;}
.y10b{bottom:37.620000px;}
.y111{bottom:37.794000px;}
.yca{bottom:37.800000px;}
.ye7{bottom:37.830000px;}
.yc0{bottom:37.845000px;}
.y82{bottom:45.900000px;}
.yb{bottom:54.180000px;}
.y108{bottom:54.900000px;}
.ye6{bottom:54.930000px;}
.y110{bottom:55.074000px;}
.yc9{bottom:55.080000px;}
.ybf{bottom:55.125000px;}
.yd8{bottom:57.420000px;}
.y81{bottom:64.260000px;}
.ya{bottom:69.696000px;}
.yc8{bottom:72.180000px;}
.ye5{bottom:72.210000px;}
.y115{bottom:72.225000px;}
.y10f{bottom:72.354000px;}
.y10d{bottom:72.360000px;}
.ybe{bottom:72.405000px;}
.yd7{bottom:75.816000px;}
.y80{bottom:79.776000px;}
.yc7{bottom:89.460000px;}
.ye4{bottom:89.490000px;}
.ybd{bottom:89.505000px;}
.ydc{bottom:89.685000px;}
.yd6{bottom:91.296000px;}
.y10a{bottom:106.560000px;}
.yc6{bottom:106.740000px;}
.ye3{bottom:106.770000px;}
.ybc{bottom:106.785000px;}
.y41{bottom:112.176000px;}
.y105{bottom:114.696000px;}
.ycc{bottom:117.396000px;}
.y13c{bottom:119.736000px;}
.yc5{bottom:124.020000px;}
.ye2{bottom:124.050000px;}
.ybb{bottom:124.065000px;}
.yb5{bottom:126.216000px;}
.y10e{bottom:126.936000px;}
.y40{bottom:129.456000px;}
.y104{bottom:131.976000px;}
.y76{bottom:136.296000px;}
.y13b{bottom:137.016000px;}
.yc4{bottom:141.300000px;}
.ye1{bottom:141.330000px;}
.yba{bottom:141.345000px;}
.yb4{bottom:143.316000px;}
.y3f{bottom:146.556000px;}
.y103{bottom:149.076000px;}
.yc3{bottom:151.050000px;}
.y75{bottom:153.570000px;}
.y13a{bottom:154.290000px;}
.ye0{bottom:158.430000px;}
.ydb{bottom:158.625000px;}
.yb3{bottom:160.590000px;}
.y3e{bottom:163.830000px;}
.y102{bottom:166.350000px;}
.y74{bottom:170.670000px;}
.y139{bottom:171.570000px;}
.ydf{bottom:175.710000px;}
.yda{bottom:175.905000px;}
.yb2{bottom:177.870000px;}
.y3d{bottom:181.110000px;}
.y101{bottom:183.630000px;}
.y73{bottom:187.950000px;}
.y138{bottom:188.670000px;}
.yde{bottom:192.990000px;}
.yb1{bottom:195.150000px;}
.y3c{bottom:198.390000px;}
.y100{bottom:200.910000px;}
.y72{bottom:205.230000px;}
.y137{bottom:205.950000px;}
.yb0{bottom:212.430000px;}
.y3b{bottom:215.670000px;}
.yff{bottom:218.190000px;}
.y71{bottom:222.510000px;}
.y136{bottom:223.230000px;}
.yaf{bottom:229.710000px;}
.y3a{bottom:232.770000px;}
.yfe{bottom:235.470000px;}
.y70{bottom:239.790000px;}
.y135{bottom:240.510000px;}
.yae{bottom:246.810000px;}
.y39{bottom:250.050000px;}
.yfd{bottom:252.570000px;}
.y6f{bottom:257.070000px;}
.y134{bottom:257.790000px;}
.yad{bottom:264.090000px;}
.y38{bottom:267.330000px;}
.yfc{bottom:269.850000px;}
.y6e{bottom:274.170000px;}
.y133{bottom:275.070000px;}
.yac{bottom:281.370000px;}
.y37{bottom:284.610000px;}
.yfb{bottom:287.130000px;}
.y6d{bottom:291.450000px;}
.y132{bottom:292.170000px;}
.yab{bottom:298.650000px;}
.y36{bottom:301.890000px;}
.yfa{bottom:304.410000px;}
.y6c{bottom:308.730000px;}
.y131{bottom:309.450000px;}
.yaa{bottom:315.930000px;}
.y35{bottom:319.170000px;}
.yf9{bottom:321.690000px;}
.yb9{bottom:322.770000px;}
.y6b{bottom:326.010000px;}
.y130{bottom:326.730000px;}
.ya9{bottom:333.030000px;}
.y34{bottom:336.270000px;}
.yf8{bottom:339.015000px;}
.y6a{bottom:343.335000px;}
.y12f{bottom:344.055000px;}
.ya8{bottom:350.355000px;}
.y33{bottom:353.595000px;}
.yf7{bottom:356.115000px;}
.y69{bottom:360.615000px;}
.y12e{bottom:361.335000px;}
.ya7{bottom:367.635000px;}
.y32{bottom:370.875000px;}
.yf6{bottom:373.395000px;}
.y68{bottom:377.715000px;}
.y12d{bottom:378.615000px;}
.y109{bottom:384.375000px;}
.ya6{bottom:384.915000px;}
.y31{bottom:388.155000px;}
.yf5{bottom:390.675000px;}
.y67{bottom:394.995000px;}
.y12c{bottom:395.715000px;}
.ya5{bottom:402.195000px;}
.y30{bottom:405.435000px;}
.yf4{bottom:407.955000px;}
.y66{bottom:412.275000px;}
.y12b{bottom:412.995000px;}
.ya4{bottom:419.475000px;}
.y2f{bottom:422.715000px;}
.yf3{bottom:425.235000px;}
.y65{bottom:429.555000px;}
.y12a{bottom:430.275000px;}
.ya3{bottom:436.575000px;}
.y2e{bottom:439.815000px;}
.yf2{bottom:442.335000px;}
.y64{bottom:446.835000px;}
.y129{bottom:447.555000px;}
.ya2{bottom:453.855000px;}
.y2d{bottom:457.095000px;}
.yf1{bottom:459.615000px;}
.y63{bottom:464.115000px;}
.y128{bottom:464.835000px;}
.ya1{bottom:471.135000px;}
.y2c{bottom:474.375000px;}
.yf0{bottom:476.895000px;}
.y62{bottom:481.215000px;}
.y127{bottom:481.935000px;}
.ya0{bottom:488.415000px;}
.y2b{bottom:491.655000px;}
.yef{bottom:494.175000px;}
.yb6{bottom:494.535000px;}
.y61{bottom:498.495000px;}
.y126{bottom:499.215000px;}
.y2a{bottom:505.695000px;}
.yee{bottom:511.455000px;}
.y60{bottom:515.775000px;}
.y125{bottom:516.495000px;}
.y107{bottom:521.535000px;}
.y9f{bottom:522.975000px;}
.y29{bottom:526.035000px;}
.yed{bottom:528.735000px;}
.y5f{bottom:533.055000px;}
.y124{bottom:533.775000px;}
.y9e{bottom:540.075000px;}
.y28{bottom:543.315000px;}
.yec{bottom:545.835000px;}
.y5e{bottom:550.335000px;}
.y123{bottom:551.055000px;}
.y9d{bottom:557.355000px;}
.y27{bottom:560.595000px;}
.yeb{bottom:563.115000px;}
.y5d{bottom:567.435000px;}
.y122{bottom:568.335000px;}
.y9c{bottom:574.635000px;}
.y26{bottom:577.875000px;}
.yea{bottom:580.395000px;}
.y5c{bottom:584.715000px;}
.y121{bottom:585.435000px;}
.y9b{bottom:591.915000px;}
.y25{bottom:595.155000px;}
.y5b{bottom:601.995000px;}
.y120{bottom:602.715000px;}
.ydd{bottom:603.435000px;}
.y9a{bottom:609.225000px;}
.y24{bottom:612.465000px;}
.y5a{bottom:619.305000px;}
.y11f{bottom:620.025000px;}
.y99{bottom:626.505000px;}
.y23{bottom:629.565000px;}
.y59{bottom:636.585000px;}
.y11e{bottom:637.305000px;}
.y98{bottom:643.605000px;}
.y22{bottom:646.845000px;}
.y58{bottom:653.865000px;}
.y11d{bottom:654.585000px;}
.y106{bottom:658.725000px;}
.y97{bottom:660.885000px;}
.y21{bottom:664.125000px;}
.y57{bottom:670.965000px;}
.y11c{bottom:671.865000px;}
.y96{bottom:678.165000px;}
.y20{bottom:681.405000px;}
.y56{bottom:688.245000px;}
.y11b{bottom:688.965000px;}
.y95{bottom:695.445000px;}
.y1f{bottom:698.685000px;}
.y55{bottom:705.525000px;}
.y11a{bottom:706.245000px;}
.y94{bottom:712.725000px;}
.y1e{bottom:715.965000px;}
.y54{bottom:722.805000px;}
.y119{bottom:723.525000px;}
.y93{bottom:729.825000px;}
.y1d{bottom:733.065000px;}
.y53{bottom:740.085000px;}
.y118{bottom:740.805000px;}
.y92{bottom:747.105000px;}
.y1c{bottom:750.345000px;}
.y52{bottom:757.365000px;}
.y117{bottom:758.085000px;}
.y91{bottom:764.385000px;}
.y1b{bottom:767.625000px;}
.y51{bottom:774.465000px;}
.y116{bottom:775.365000px;}
.y90{bottom:781.665000px;}
.y1a{bottom:784.905000px;}
.y50{bottom:791.745000px;}
.y19{bottom:798.945000px;}
.y4f{bottom:809.025000px;}
.y114{bottom:815.505000px;}
.y8f{bottom:816.225000px;}
.y18{bottom:819.465000px;}
.y4e{bottom:826.305000px;}
.yd9{bottom:826.845000px;}
.y8e{bottom:833.325000px;}
.y17{bottom:843.045000px;}
.y4d{bottom:843.585000px;}
.y8d{bottom:850.605000px;}
.y4c{bottom:860.685000px;}
.y16{bottom:861.945000px;}
.y8c{bottom:867.885000px;}
.y15{bottom:875.130000px;}
.y4b{bottom:878.010000px;}
.y8b{bottom:885.210000px;}
.y14{bottom:894.030000px;}
.y4a{bottom:895.290000px;}
.y8a{bottom:902.490000px;}
.y49{bottom:912.570000px;}
.y13{bottom:912.930000px;}
.y113{bottom:918.330000px;}
.y89{bottom:919.770000px;}
.y48{bottom:929.850000px;}
.y12{bottom:932.010000px;}
.y88{bottom:936.870000px;}
.y47{bottom:947.130000px;}
.y11{bottom:950.910000px;}
.y87{bottom:954.150000px;}
.y46{bottom:964.230000px;}
.y10{bottom:969.990000px;}
.y86{bottom:971.430000px;}
.y45{bottom:981.510000px;}
.y85{bottom:988.710000px;}
.yf{bottom:989.250000px;}
.y44{bottom:998.790000px;}
.y84{bottom:1005.990000px;}
.ye{bottom:1009.950000px;}
.y43{bottom:1016.070000px;}
.y112{bottom:1021.110000px;}
.y83{bottom:1023.090000px;}
.yd5{bottom:1029.210000px;}
.yd{bottom:1030.650000px;}
.y42{bottom:1033.350000px;}
.y7f{bottom:1040.730000px;}
.yd4{bottom:1047.930000px;}
.y9{bottom:1050.810000px;}
.y7e{bottom:1059.450000px;}
.yd3{bottom:1065.210000px;}
.y8{bottom:1069.530000px;}
.y7d{bottom:1076.730000px;}
.yd2{bottom:1083.210000px;}
.y7{bottom:1086.810000px;}
.y7c{bottom:1094.550000px;}
.yd1{bottom:1099.950000px;}
.y6{bottom:1104.810000px;}
.y7b{bottom:1111.290000px;}
.y5{bottom:1121.550000px;}
.yd0{bottom:1141.920000px;}
.y7a{bottom:1153.260000px;}
.ycf{bottom:1160.460000px;}
.y4{bottom:1163.520000px;}
.y79{bottom:1171.800000px;}
.yce{bottom:1177.560000px;}
.y3{bottom:1182.060000px;}
.y78{bottom:1189.080000px;}
.ycd{bottom:1194.840000px;}
.y2{bottom:1199.160000px;}
.y77{bottom:1206.360000px;}
.y1{bottom:1216.440000px;}
.h12{height:17.280000px;}
.hb{height:29.158594px;}
.h15{height:34.560000px;}
.h7{height:37.705078px;}
.h2{height:41.726953px;}
.h5{height:42.164648px;}
.hd{height:43.302656px;}
.he{height:43.506914px;}
.h3{height:46.251562px;}
.h9{height:47.998125px;}
.h6{height:48.224531px;}
.hc{height:49.255313px;}
.hf{height:50.580000px;}
.h4{height:50.800781px;}
.h8{height:52.171875px;}
.ha{height:53.224453px;}
.h1a{height:86.220000px;}
.h1b{height:86.256000px;}
.h19{height:86.400000px;}
.h17{height:120.600000px;}
.h16{height:120.816000px;}
.h18{height:138.096000px;}
.h11{height:155.340000px;}
.h10{height:155.370000px;}
.h13{height:189.930000px;}
.h14{height:207.030000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:71.640000px;}
.w4{width:77.220000px;}
.w5{width:81.756000px;}
.wd{width:95.040000px;}
.we{width:95.076000px;}
.wc{width:95.220000px;}
.wb{width:95.256000px;}
.wa{width:95.400000px;}
.w9{width:103.140000px;}
.w6{width:105.300000px;}
.w7{width:111.096000px;}
.w8{width:116.676000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1f{left:7.020000px;}
.x19{left:8.460000px;}
.x18{left:10.440000px;}
.x28{left:12.960000px;}
.x21{left:14.040000px;}
.x26{left:15.120000px;}
.x2e{left:16.560000px;}
.x27{left:17.640000px;}
.x31{left:18.900000px;}
.x1d{left:20.205000px;}
.x2d{left:21.450000px;}
.x1c{left:23.085000px;}
.x23{left:25.020000px;}
.x2c{left:26.460000px;}
.x2f{left:27.540000px;}
.x29{left:29.520000px;}
.x1a{left:30.600000px;}
.x2b{left:32.400000px;}
.x2a{left:34.230000px;}
.x3b{left:36.180000px;}
.x30{left:37.665000px;}
.x24{left:39.600000px;}
.x3a{left:41.760000px;}
.x39{left:43.740000px;}
.x32{left:58.320000px;}
.x8{left:72.179987px;}
.x2{left:108.035987px;}
.x1{left:128.015987px;}
.x3d{left:129.275987px;}
.x3f{left:135.035987px;}
.xf{left:140.975987px;}
.x10{left:142.055987px;}
.x5{left:157.169987px;}
.x13{left:161.129987px;}
.x9{left:166.889987px;}
.x15{left:182.369987px;}
.x17{left:191.909987px;}
.x11{left:197.309987px;}
.x34{left:205.590000px;}
.x16{left:216.029987px;}
.x33{left:224.129987px;}
.x1b{left:260.490000px;}
.x3e{left:295.274987px;}
.x35{left:302.295000px;}
.x1e{left:343.875000px;}
.xa{left:346.574987px;}
.xd{left:352.694987px;}
.x3c{left:362.414987px;}
.xe{left:366.374987px;}
.xc{left:373.754987px;}
.xb{left:383.114987px;}
.x7{left:386.354987px;}
.x40{left:396.074987px;}
.x14{left:398.954987px;}
.x6{left:412.274987px;}
.x3{left:446.474987px;}
.x20{left:450.615000px;}
.x36{left:495.825000px;}
.x4{left:518.504987px;}
.x22{left:563.145000px;}
.x37{left:592.485000px;}
.x25{left:681.450000px;}
.x38{left:689.190000px;}
.x12{left:785.129987px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls12{letter-spacing:-0.320000pt;}
.ls7{letter-spacing:-0.230933pt;}
.ls4{letter-spacing:-0.192000pt;}
.ls11{letter-spacing:-0.183467pt;}
.lsd{letter-spacing:-0.094933pt;}
.ls3{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.094933pt;}
.ls2{letter-spacing:0.106240pt;}
.ls1{letter-spacing:0.160000pt;}
.lsa{letter-spacing:0.183467pt;}
.ls5{letter-spacing:0.231040pt;}
.lsb{letter-spacing:0.265600pt;}
.ls0{letter-spacing:0.320000pt;}
.lsc{letter-spacing:0.327680pt;}
.lse{letter-spacing:0.480000pt;}
.ls10{letter-spacing:32.571307pt;}
.ls6{letter-spacing:56.272640pt;}
.ls9{letter-spacing:72.912640pt;}
.ls8{letter-spacing:106.400000pt;}
.ws4{word-spacing:-37.120000pt;}
.ws5{word-spacing:-14.720000pt;}
.ws1{word-spacing:-13.600000pt;}
.ws9{word-spacing:-13.463467pt;}
.wsa{word-spacing:-13.374933pt;}
.ws0{word-spacing:-13.280000pt;}
.ws8{word-spacing:-13.185067pt;}
.wsb{word-spacing:-13.096533pt;}
.ws7{word-spacing:-13.049067pt;}
.wsc{word-spacing:-12.960000pt;}
.ws2{word-spacing:-12.000000pt;}
.ws3{word-spacing:-9.280000pt;}
.ws6{word-spacing:0.000000pt;}
._c{margin-left:-10.080000pt;}
._20{margin-left:-3.412053pt;}
._9{margin-left:-2.489813pt;}
._1{margin-left:-1.420800pt;}
._0{width:0.908587pt;}
._6{width:1.848960pt;}
._2{width:2.991147pt;}
._5{width:4.000000pt;}
._b{width:5.258880pt;}
._10{width:6.685440pt;}
._a{width:7.749973pt;}
._12{width:9.077973pt;}
._11{width:10.145920pt;}
._7{width:11.341440pt;}
._8{width:12.352213pt;}
._1e{width:14.608000pt;}
._1c{width:15.989120pt;}
._1b{width:16.992853pt;}
._1d{width:18.087467pt;}
._16{width:19.760640pt;}
._15{width:20.663680pt;}
._22{width:21.571840pt;}
._1f{width:23.102080pt;}
._17{width:24.135893pt;}
._14{width:25.618560pt;}
._f{width:26.674560pt;}
._e{width:27.630293pt;}
._1a{width:29.359787pt;}
._21{width:30.276480pt;}
._18{width:31.175893pt;}
._13{width:33.619413pt;}
._25{width:75.908480pt;}
._24{width:76.864640pt;}
._26{width:77.945173pt;}
._27{width:79.077547pt;}
._19{width:106.400000pt;}
._23{width:119.820800pt;}
._4{width:120.938667pt;}
._d{width:178.720000pt;}
._3{width:566.138667pt;}
.fs4{font-size:37.120000pt;}
.fs3{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.yc2{bottom:2.880000pt;}
.ye9{bottom:2.906667pt;}
.yb8{bottom:17.280000pt;}
.y10c{bottom:18.080000pt;}
.ycb{bottom:18.240000pt;}
.ye8{bottom:18.266667pt;}
.yc1{bottom:18.280000pt;}
.yc{bottom:31.840000pt;}
.yb7{bottom:32.480000pt;}
.y10b{bottom:33.440000pt;}
.y111{bottom:33.594667pt;}
.yca{bottom:33.600000pt;}
.ye7{bottom:33.626667pt;}
.yc0{bottom:33.640000pt;}
.y82{bottom:40.800000pt;}
.yb{bottom:48.160000pt;}
.y108{bottom:48.800000pt;}
.ye6{bottom:48.826667pt;}
.y110{bottom:48.954667pt;}
.yc9{bottom:48.960000pt;}
.ybf{bottom:49.000000pt;}
.yd8{bottom:51.040000pt;}
.y81{bottom:57.120000pt;}
.ya{bottom:61.952000pt;}
.yc8{bottom:64.160000pt;}
.ye5{bottom:64.186667pt;}
.y115{bottom:64.200000pt;}
.y10f{bottom:64.314667pt;}
.y10d{bottom:64.320000pt;}
.ybe{bottom:64.360000pt;}
.yd7{bottom:67.392000pt;}
.y80{bottom:70.912000pt;}
.yc7{bottom:79.520000pt;}
.ye4{bottom:79.546667pt;}
.ybd{bottom:79.560000pt;}
.ydc{bottom:79.720000pt;}
.yd6{bottom:81.152000pt;}
.y10a{bottom:94.720000pt;}
.yc6{bottom:94.880000pt;}
.ye3{bottom:94.906667pt;}
.ybc{bottom:94.920000pt;}
.y41{bottom:99.712000pt;}
.y105{bottom:101.952000pt;}
.ycc{bottom:104.352000pt;}
.y13c{bottom:106.432000pt;}
.yc5{bottom:110.240000pt;}
.ye2{bottom:110.266667pt;}
.ybb{bottom:110.280000pt;}
.yb5{bottom:112.192000pt;}
.y10e{bottom:112.832000pt;}
.y40{bottom:115.072000pt;}
.y104{bottom:117.312000pt;}
.y76{bottom:121.152000pt;}
.y13b{bottom:121.792000pt;}
.yc4{bottom:125.600000pt;}
.ye1{bottom:125.626667pt;}
.yba{bottom:125.640000pt;}
.yb4{bottom:127.392000pt;}
.y3f{bottom:130.272000pt;}
.y103{bottom:132.512000pt;}
.yc3{bottom:134.266667pt;}
.y75{bottom:136.506667pt;}
.y13a{bottom:137.146667pt;}
.ye0{bottom:140.826667pt;}
.ydb{bottom:141.000000pt;}
.yb3{bottom:142.746667pt;}
.y3e{bottom:145.626667pt;}
.y102{bottom:147.866667pt;}
.y74{bottom:151.706667pt;}
.y139{bottom:152.506667pt;}
.ydf{bottom:156.186667pt;}
.yda{bottom:156.360000pt;}
.yb2{bottom:158.106667pt;}
.y3d{bottom:160.986667pt;}
.y101{bottom:163.226667pt;}
.y73{bottom:167.066667pt;}
.y138{bottom:167.706667pt;}
.yde{bottom:171.546667pt;}
.yb1{bottom:173.466667pt;}
.y3c{bottom:176.346667pt;}
.y100{bottom:178.586667pt;}
.y72{bottom:182.426667pt;}
.y137{bottom:183.066667pt;}
.yb0{bottom:188.826667pt;}
.y3b{bottom:191.706667pt;}
.yff{bottom:193.946667pt;}
.y71{bottom:197.786667pt;}
.y136{bottom:198.426667pt;}
.yaf{bottom:204.186667pt;}
.y3a{bottom:206.906667pt;}
.yfe{bottom:209.306667pt;}
.y70{bottom:213.146667pt;}
.y135{bottom:213.786667pt;}
.yae{bottom:219.386667pt;}
.y39{bottom:222.266667pt;}
.yfd{bottom:224.506667pt;}
.y6f{bottom:228.506667pt;}
.y134{bottom:229.146667pt;}
.yad{bottom:234.746667pt;}
.y38{bottom:237.626667pt;}
.yfc{bottom:239.866667pt;}
.y6e{bottom:243.706667pt;}
.y133{bottom:244.506667pt;}
.yac{bottom:250.106667pt;}
.y37{bottom:252.986667pt;}
.yfb{bottom:255.226667pt;}
.y6d{bottom:259.066667pt;}
.y132{bottom:259.706667pt;}
.yab{bottom:265.466667pt;}
.y36{bottom:268.346667pt;}
.yfa{bottom:270.586667pt;}
.y6c{bottom:274.426667pt;}
.y131{bottom:275.066667pt;}
.yaa{bottom:280.826667pt;}
.y35{bottom:283.706667pt;}
.yf9{bottom:285.946667pt;}
.yb9{bottom:286.906667pt;}
.y6b{bottom:289.786667pt;}
.y130{bottom:290.426667pt;}
.ya9{bottom:296.026667pt;}
.y34{bottom:298.906667pt;}
.yf8{bottom:301.346667pt;}
.y6a{bottom:305.186667pt;}
.y12f{bottom:305.826667pt;}
.ya8{bottom:311.426667pt;}
.y33{bottom:314.306667pt;}
.yf7{bottom:316.546667pt;}
.y69{bottom:320.546667pt;}
.y12e{bottom:321.186667pt;}
.ya7{bottom:326.786667pt;}
.y32{bottom:329.666667pt;}
.yf6{bottom:331.906667pt;}
.y68{bottom:335.746667pt;}
.y12d{bottom:336.546667pt;}
.y109{bottom:341.666667pt;}
.ya6{bottom:342.146667pt;}
.y31{bottom:345.026667pt;}
.yf5{bottom:347.266667pt;}
.y67{bottom:351.106667pt;}
.y12c{bottom:351.746667pt;}
.ya5{bottom:357.506667pt;}
.y30{bottom:360.386667pt;}
.yf4{bottom:362.626667pt;}
.y66{bottom:366.466667pt;}
.y12b{bottom:367.106667pt;}
.ya4{bottom:372.866667pt;}
.y2f{bottom:375.746667pt;}
.yf3{bottom:377.986667pt;}
.y65{bottom:381.826667pt;}
.y12a{bottom:382.466667pt;}
.ya3{bottom:388.066667pt;}
.y2e{bottom:390.946667pt;}
.yf2{bottom:393.186667pt;}
.y64{bottom:397.186667pt;}
.y129{bottom:397.826667pt;}
.ya2{bottom:403.426667pt;}
.y2d{bottom:406.306667pt;}
.yf1{bottom:408.546667pt;}
.y63{bottom:412.546667pt;}
.y128{bottom:413.186667pt;}
.ya1{bottom:418.786667pt;}
.y2c{bottom:421.666667pt;}
.yf0{bottom:423.906667pt;}
.y62{bottom:427.746667pt;}
.y127{bottom:428.386667pt;}
.ya0{bottom:434.146667pt;}
.y2b{bottom:437.026667pt;}
.yef{bottom:439.266667pt;}
.yb6{bottom:439.586667pt;}
.y61{bottom:443.106667pt;}
.y126{bottom:443.746667pt;}
.y2a{bottom:449.506667pt;}
.yee{bottom:454.626667pt;}
.y60{bottom:458.466667pt;}
.y125{bottom:459.106667pt;}
.y107{bottom:463.586667pt;}
.y9f{bottom:464.866667pt;}
.y29{bottom:467.586667pt;}
.yed{bottom:469.986667pt;}
.y5f{bottom:473.826667pt;}
.y124{bottom:474.466667pt;}
.y9e{bottom:480.066667pt;}
.y28{bottom:482.946667pt;}
.yec{bottom:485.186667pt;}
.y5e{bottom:489.186667pt;}
.y123{bottom:489.826667pt;}
.y9d{bottom:495.426667pt;}
.y27{bottom:498.306667pt;}
.yeb{bottom:500.546667pt;}
.y5d{bottom:504.386667pt;}
.y122{bottom:505.186667pt;}
.y9c{bottom:510.786667pt;}
.y26{bottom:513.666667pt;}
.yea{bottom:515.906667pt;}
.y5c{bottom:519.746667pt;}
.y121{bottom:520.386667pt;}
.y9b{bottom:526.146667pt;}
.y25{bottom:529.026667pt;}
.y5b{bottom:535.106667pt;}
.y120{bottom:535.746667pt;}
.ydd{bottom:536.386667pt;}
.y9a{bottom:541.533333pt;}
.y24{bottom:544.413333pt;}
.y5a{bottom:550.493333pt;}
.y11f{bottom:551.133333pt;}
.y99{bottom:556.893333pt;}
.y23{bottom:559.613333pt;}
.y59{bottom:565.853333pt;}
.y11e{bottom:566.493333pt;}
.y98{bottom:572.093333pt;}
.y22{bottom:574.973333pt;}
.y58{bottom:581.213333pt;}
.y11d{bottom:581.853333pt;}
.y106{bottom:585.533333pt;}
.y97{bottom:587.453333pt;}
.y21{bottom:590.333333pt;}
.y57{bottom:596.413333pt;}
.y11c{bottom:597.213333pt;}
.y96{bottom:602.813333pt;}
.y20{bottom:605.693333pt;}
.y56{bottom:611.773333pt;}
.y11b{bottom:612.413333pt;}
.y95{bottom:618.173333pt;}
.y1f{bottom:621.053333pt;}
.y55{bottom:627.133333pt;}
.y11a{bottom:627.773333pt;}
.y94{bottom:633.533333pt;}
.y1e{bottom:636.413333pt;}
.y54{bottom:642.493333pt;}
.y119{bottom:643.133333pt;}
.y93{bottom:648.733333pt;}
.y1d{bottom:651.613333pt;}
.y53{bottom:657.853333pt;}
.y118{bottom:658.493333pt;}
.y92{bottom:664.093333pt;}
.y1c{bottom:666.973333pt;}
.y52{bottom:673.213333pt;}
.y117{bottom:673.853333pt;}
.y91{bottom:679.453333pt;}
.y1b{bottom:682.333333pt;}
.y51{bottom:688.413333pt;}
.y116{bottom:689.213333pt;}
.y90{bottom:694.813333pt;}
.y1a{bottom:697.693333pt;}
.y50{bottom:703.773333pt;}
.y19{bottom:710.173333pt;}
.y4f{bottom:719.133333pt;}
.y114{bottom:724.893333pt;}
.y8f{bottom:725.533333pt;}
.y18{bottom:728.413333pt;}
.y4e{bottom:734.493333pt;}
.yd9{bottom:734.973333pt;}
.y8e{bottom:740.733333pt;}
.y17{bottom:749.373333pt;}
.y4d{bottom:749.853333pt;}
.y8d{bottom:756.093333pt;}
.y4c{bottom:765.053333pt;}
.y16{bottom:766.173333pt;}
.y8c{bottom:771.453333pt;}
.y15{bottom:777.893333pt;}
.y4b{bottom:780.453333pt;}
.y8b{bottom:786.853333pt;}
.y14{bottom:794.693333pt;}
.y4a{bottom:795.813333pt;}
.y8a{bottom:802.213333pt;}
.y49{bottom:811.173333pt;}
.y13{bottom:811.493333pt;}
.y113{bottom:816.293333pt;}
.y89{bottom:817.573333pt;}
.y48{bottom:826.533333pt;}
.y12{bottom:828.453333pt;}
.y88{bottom:832.773333pt;}
.y47{bottom:841.893333pt;}
.y11{bottom:845.253333pt;}
.y87{bottom:848.133333pt;}
.y46{bottom:857.093333pt;}
.y10{bottom:862.213333pt;}
.y86{bottom:863.493333pt;}
.y45{bottom:872.453333pt;}
.y85{bottom:878.853333pt;}
.yf{bottom:879.333333pt;}
.y44{bottom:887.813333pt;}
.y84{bottom:894.213333pt;}
.ye{bottom:897.733333pt;}
.y43{bottom:903.173333pt;}
.y112{bottom:907.653333pt;}
.y83{bottom:909.413333pt;}
.yd5{bottom:914.853333pt;}
.yd{bottom:916.133333pt;}
.y42{bottom:918.533333pt;}
.y7f{bottom:925.093333pt;}
.yd4{bottom:931.493333pt;}
.y9{bottom:934.053333pt;}
.y7e{bottom:941.733333pt;}
.yd3{bottom:946.853333pt;}
.y8{bottom:950.693333pt;}
.y7d{bottom:957.093333pt;}
.yd2{bottom:962.853333pt;}
.y7{bottom:966.053333pt;}
.y7c{bottom:972.933333pt;}
.yd1{bottom:977.733333pt;}
.y6{bottom:982.053333pt;}
.y7b{bottom:987.813333pt;}
.y5{bottom:996.933333pt;}
.yd0{bottom:1015.040000pt;}
.y7a{bottom:1025.120000pt;}
.ycf{bottom:1031.520000pt;}
.y4{bottom:1034.240000pt;}
.y79{bottom:1041.600000pt;}
.yce{bottom:1046.720000pt;}
.y3{bottom:1050.720000pt;}
.y78{bottom:1056.960000pt;}
.ycd{bottom:1062.080000pt;}
.y2{bottom:1065.920000pt;}
.y77{bottom:1072.320000pt;}
.y1{bottom:1081.280000pt;}
.h12{height:15.360000pt;}
.hb{height:25.918750pt;}
.h15{height:30.720000pt;}
.h7{height:33.515625pt;}
.h2{height:37.090625pt;}
.h5{height:37.479688pt;}
.hd{height:38.491250pt;}
.he{height:38.672812pt;}
.h3{height:41.112500pt;}
.h9{height:42.665000pt;}
.h6{height:42.866250pt;}
.hc{height:43.782500pt;}
.hf{height:44.960000pt;}
.h4{height:45.156250pt;}
.h8{height:46.375000pt;}
.ha{height:47.310625pt;}
.h1a{height:76.640000pt;}
.h1b{height:76.672000pt;}
.h19{height:76.800000pt;}
.h17{height:107.200000pt;}
.h16{height:107.392000pt;}
.h18{height:122.752000pt;}
.h11{height:138.080000pt;}
.h10{height:138.106667pt;}
.h13{height:168.826667pt;}
.h14{height:184.026667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:63.680000pt;}
.w4{width:68.640000pt;}
.w5{width:72.672000pt;}
.wd{width:84.480000pt;}
.we{width:84.512000pt;}
.wc{width:84.640000pt;}
.wb{width:84.672000pt;}
.wa{width:84.800000pt;}
.w9{width:91.680000pt;}
.w6{width:93.600000pt;}
.w7{width:98.752000pt;}
.w8{width:103.712000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1f{left:6.240000pt;}
.x19{left:7.520000pt;}
.x18{left:9.280000pt;}
.x28{left:11.520000pt;}
.x21{left:12.480000pt;}
.x26{left:13.440000pt;}
.x2e{left:14.720000pt;}
.x27{left:15.680000pt;}
.x31{left:16.800000pt;}
.x1d{left:17.960000pt;}
.x2d{left:19.066667pt;}
.x1c{left:20.520000pt;}
.x23{left:22.240000pt;}
.x2c{left:23.520000pt;}
.x2f{left:24.480000pt;}
.x29{left:26.240000pt;}
.x1a{left:27.200000pt;}
.x2b{left:28.800000pt;}
.x2a{left:30.426667pt;}
.x3b{left:32.160000pt;}
.x30{left:33.480000pt;}
.x24{left:35.200000pt;}
.x3a{left:37.120000pt;}
.x39{left:38.880000pt;}
.x32{left:51.840000pt;}
.x8{left:64.159988pt;}
.x2{left:96.031988pt;}
.x1{left:113.791988pt;}
.x3d{left:114.911988pt;}
.x3f{left:120.031988pt;}
.xf{left:125.311988pt;}
.x10{left:126.271988pt;}
.x5{left:139.706655pt;}
.x13{left:143.226655pt;}
.x9{left:148.346655pt;}
.x15{left:162.106655pt;}
.x17{left:170.586655pt;}
.x11{left:175.386655pt;}
.x34{left:182.746667pt;}
.x16{left:192.026655pt;}
.x33{left:199.226655pt;}
.x1b{left:231.546667pt;}
.x3e{left:262.466655pt;}
.x35{left:268.706667pt;}
.x1e{left:305.666667pt;}
.xa{left:308.066655pt;}
.xd{left:313.506655pt;}
.x3c{left:322.146655pt;}
.xe{left:325.666655pt;}
.xc{left:332.226655pt;}
.xb{left:340.546655pt;}
.x7{left:343.426655pt;}
.x40{left:352.066655pt;}
.x14{left:354.626655pt;}
.x6{left:366.466655pt;}
.x3{left:396.866655pt;}
.x20{left:400.546667pt;}
.x36{left:440.733333pt;}
.x4{left:460.893322pt;}
.x22{left:500.573333pt;}
.x37{left:526.653333pt;}
.x25{left:605.733333pt;}
.x38{left:612.613333pt;}
.x12{left:697.893322pt;}
}




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