
    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_4b96fffdb6ac53da1ac1f1b3.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.706543;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_bc7e2c62efbd3fa54634bb7d.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.401855;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_7eb83e8092c4d8a7d796eb37.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_1de569c58ba729d0152a9652.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_40fb98e36c3995b410d70037.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_79fba03fa81f3a70a55a0ef3.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_d494ee20a0a661be4b856511.woff2')format("woff");}.ff7{font-family:ff7;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);}
.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;}
.lsf{letter-spacing:-2.160000px;}
.ls7{letter-spacing:-1.440000px;}
.ls3{letter-spacing:-0.576000px;}
.lsb{letter-spacing:-0.288000px;}
.ls5{letter-spacing:-0.216000px;}
.ls4{letter-spacing:-0.144000px;}
.ls1{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.072000px;}
.ls0{letter-spacing:0.144000px;}
.ls8{letter-spacing:0.288000px;}
.lsc{letter-spacing:0.504000px;}
.ls9{letter-spacing:0.576000px;}
.ls2{letter-spacing:0.720000px;}
.ls6{letter-spacing:7.920000px;}
.lsd{letter-spacing:12.960000px;}
.lse{letter-spacing:27.360000px;}
.lsa{letter-spacing:67.800000px;}
.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;}
}
.ws5{word-spacing:-18.288000px;}
.ws7{word-spacing:-18.072000px;}
.ws2{word-spacing:-18.000000px;}
.ws1{word-spacing:-17.856000px;}
.ws4{word-spacing:-17.784000px;}
.ws6{word-spacing:-17.712000px;}
.ws8{word-spacing:-15.552000px;}
.ws3{word-spacing:-0.072000px;}
.ws0{word-spacing:0.000000px;}
._12{margin-left:-2.040000px;}
._0{margin-left:-1.008000px;}
._1{width:1.356000px;}
._a{width:2.472000px;}
._c{width:3.828000px;}
._4{width:4.896000px;}
._5{width:5.988000px;}
._2{width:7.776000px;}
._3{width:8.796000px;}
._d{width:9.816000px;}
._18{width:10.860000px;}
._15{width:11.952000px;}
._10{width:13.608000px;}
._11{width:14.688000px;}
._14{width:15.696000px;}
._6{width:16.920000px;}
._e{width:19.800000px;}
._9{width:21.384000px;}
._b{width:22.824000px;}
._8{width:24.708000px;}
._7{width:25.848000px;}
._1a{width:27.216000px;}
._1d{width:28.368000px;}
._1e{width:29.376000px;}
._29{width:31.320000px;}
._19{width:32.616000px;}
._f{width:34.128000px;}
._1c{width:35.136000px;}
._1b{width:36.144000px;}
._16{width:37.944000px;}
._17{width:39.528000px;}
._21{width:40.536000px;}
._13{width:41.652000px;}
._28{width:43.812000px;}
._27{width:45.108000px;}
._26{width:46.260000px;}
._1f{width:52.104000px;}
._20{width:53.136000px;}
._23{width:58.812000px;}
._22{width:60.336000px;}
._24{width:86.544000px;}
._25{width:87.840000px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y29{bottom:111.240000px;}
.y14a{bottom:122.220000px;}
.ycb{bottom:122.760000px;}
.y102{bottom:122.940000px;}
.y9e{bottom:123.120000px;}
.y53{bottom:123.840000px;}
.y72{bottom:126.540000px;}
.y1a4{bottom:129.420000px;}
.y28{bottom:131.940000px;}
.y149{bottom:142.920000px;}
.yca{bottom:143.640000px;}
.y101{bottom:143.820000px;}
.y9d{bottom:144.000000px;}
.y52{bottom:144.540000px;}
.y71{bottom:147.240000px;}
.y185{bottom:149.940000px;}
.y1a3{bottom:150.120000px;}
.y27{bottom:152.640000px;}
.y148{bottom:163.620000px;}
.y138{bottom:164.340000px;}
.yc9{bottom:164.520000px;}
.y9c{bottom:164.880000px;}
.y51{bottom:165.240000px;}
.y70{bottom:167.940000px;}
.y184{bottom:170.820000px;}
.y26{bottom:173.340000px;}
.y147{bottom:184.320000px;}
.yc8{bottom:185.220000px;}
.ye9{bottom:185.580000px;}
.y9b{bottom:185.760000px;}
.y50{bottom:185.940000px;}
.y6f{bottom:188.640000px;}
.y183{bottom:191.520000px;}
.y163{bottom:191.880000px;}
.y146{bottom:205.020000px;}
.yc7{bottom:205.920000px;}
.ye8{bottom:206.280000px;}
.y9a{bottom:206.460000px;}
.y4f{bottom:206.640000px;}
.y6e{bottom:209.520000px;}
.y182{bottom:212.220000px;}
.y162{bottom:212.760000px;}
.y25{bottom:217.830000px;}
.y145{bottom:225.750000px;}
.y11e{bottom:226.290000px;}
.yc6{bottom:226.650000px;}
.y137{bottom:226.830000px;}
.ye7{bottom:227.010000px;}
.y99{bottom:227.190000px;}
.y4e{bottom:227.370000px;}
.y6d{bottom:230.430000px;}
.y181{bottom:232.950000px;}
.y1a2{bottom:233.130000px;}
.y161{bottom:233.490000px;}
.y24{bottom:238.710000px;}
.y144{bottom:246.630000px;}
.yc5{bottom:247.350000px;}
.y11d{bottom:247.530000px;}
.ye6{bottom:247.710000px;}
.y4d{bottom:248.070000px;}
.y6c{bottom:251.310000px;}
.y1a1{bottom:254.010000px;}
.y160{bottom:254.190000px;}
.y23{bottom:259.410000px;}
.y143{bottom:267.510000px;}
.yc4{bottom:268.050000px;}
.y11c{bottom:268.230000px;}
.ye5{bottom:268.410000px;}
.y136{bottom:268.590000px;}
.y98{bottom:268.770000px;}
.y6b{bottom:272.010000px;}
.y15f{bottom:274.890000px;}
.y180{bottom:277.590000px;}
.y22{bottom:280.110000px;}
.y142{bottom:288.390000px;}
.yc3{bottom:288.750000px;}
.y11b{bottom:288.930000px;}
.ye4{bottom:289.290000px;}
.y135{bottom:289.470000px;}
.y97{bottom:289.650000px;}
.y4c{bottom:292.530000px;}
.y6a{bottom:292.710000px;}
.y15e{bottom:295.590000px;}
.y17f{bottom:298.470000px;}
.y21{bottom:300.810000px;}
.y141{bottom:309.270000px;}
.yc2{bottom:309.450000px;}
.y11a{bottom:309.630000px;}
.ye3{bottom:310.170000px;}
.y96{bottom:310.350000px;}
.y4b{bottom:313.410000px;}
.y15d{bottom:316.290000px;}
.y20{bottom:321.510000px;}
.y140{bottom:329.970000px;}
.yc1{bottom:330.330000px;}
.ye2{bottom:330.870000px;}
.y95{bottom:331.050000px;}
.y4a{bottom:334.110000px;}
.y15c{bottom:336.990000px;}
.y1f{bottom:342.210000px;}
.y17e{bottom:342.930000px;}
.y13f{bottom:350.670000px;}
.y119{bottom:351.030000px;}
.yc0{bottom:351.210000px;}
.ye1{bottom:351.570000px;}
.y94{bottom:351.750000px;}
.y49{bottom:354.810000px;}
.y15b{bottom:357.690000px;}
.y17d{bottom:363.810000px;}
.y13e{bottom:371.550000px;}
.y118{bottom:371.730000px;}
.ybf{bottom:372.090000px;}
.y134{bottom:372.270000px;}
.ye0{bottom:372.450000px;}
.y93{bottom:372.630000px;}
.y48{bottom:375.510000px;}
.y15a{bottom:378.390000px;}
.y69{bottom:378.570000px;}
.y17c{bottom:384.510000px;}
.y1e{bottom:386.670000px;}
.y13d{bottom:392.430000px;}
.y117{bottom:392.610000px;}
.ybe{bottom:392.790000px;}
.y133{bottom:392.970000px;}
.ydf{bottom:393.330000px;}
.y92{bottom:393.510000px;}
.y47{bottom:396.210000px;}
.y68{bottom:399.450000px;}
.y17b{bottom:405.210000px;}
.y1a0{bottom:408.090000px;}
.y13c{bottom:413.310000px;}
.ybd{bottom:413.490000px;}
.y132{bottom:413.670000px;}
.yde{bottom:414.210000px;}
.y91{bottom:414.390000px;}
.y46{bottom:416.550000px;}
.y67{bottom:420.150000px;}
.y159{bottom:422.850000px;}
.y1d{bottom:431.490000px;}
.y100{bottom:434.190000px;}
.ybc{bottom:434.370000px;}
.ydd{bottom:434.910000px;}
.y90{bottom:435.270000px;}
.y66{bottom:440.850000px;}
.y158{bottom:443.730000px;}
.y17a{bottom:449.670000px;}
.y1c{bottom:452.415000px;}
.yff{bottom:454.935000px;}
.ybb{bottom:455.115000px;}
.ydc{bottom:455.655000px;}
.y8f{bottom:456.015000px;}
.y45{bottom:461.415000px;}
.y65{bottom:461.595000px;}
.y19f{bottom:464.655000px;}
.y179{bottom:470.595000px;}
.y1b{bottom:472.935000px;}
.yfe{bottom:475.635000px;}
.y116{bottom:475.815000px;}
.yba{bottom:475.995000px;}
.ydb{bottom:476.535000px;}
.y8e{bottom:476.715000px;}
.y44{bottom:482.295000px;}
.y19e{bottom:485.355000px;}
.y157{bottom:488.235000px;}
.y178{bottom:491.295000px;}
.y1a{bottom:493.635000px;}
.yfd{bottom:496.515000px;}
.y131{bottom:496.695000px;}
.yb9{bottom:496.875000px;}
.yda{bottom:497.235000px;}
.y8d{bottom:497.595000px;}
.y43{bottom:502.995000px;}
.y19d{bottom:506.055000px;}
.y156{bottom:509.115000px;}
.y177{bottom:511.995000px;}
.y19{bottom:514.335000px;}
.yfc{bottom:517.215000px;}
.yb8{bottom:517.575000px;}
.yd9{bottom:517.935000px;}
.y8c{bottom:518.475000px;}
.y42{bottom:523.695000px;}
.y19c{bottom:526.755000px;}
.y176{bottom:532.695000px;}
.y18{bottom:535.035000px;}
.y115{bottom:537.915000px;}
.yfb{bottom:538.095000px;}
.yb7{bottom:538.275000px;}
.y130{bottom:538.455000px;}
.yd8{bottom:538.635000px;}
.y8b{bottom:539.175000px;}
.y41{bottom:544.395000px;}
.y19b{bottom:547.455000px;}
.y175{bottom:553.395000px;}
.y155{bottom:553.755000px;}
.y17{bottom:555.735000px;}
.y114{bottom:558.615000px;}
.yfa{bottom:558.795000px;}
.y13b{bottom:558.975000px;}
.yb6{bottom:559.155000px;}
.yd7{bottom:559.335000px;}
.y8a{bottom:559.875000px;}
.y40{bottom:565.095000px;}
.y19a{bottom:568.155000px;}
.y16{bottom:576.435000px;}
.y113{bottom:579.135000px;}
.yf9{bottom:579.495000px;}
.y12f{bottom:579.855000px;}
.yb5{bottom:580.035000px;}
.yd6{bottom:580.215000px;}
.y89{bottom:580.575000px;}
.y3f{bottom:585.795000px;}
.y174{bottom:588.495000px;}
.y199{bottom:588.855000px;}
.y154{bottom:598.395000px;}
.y112{bottom:600.015000px;}
.yf8{bottom:600.195000px;}
.y12e{bottom:600.555000px;}
.yb4{bottom:600.735000px;}
.yd5{bottom:600.915000px;}
.y88{bottom:601.275000px;}
.y3e{bottom:606.495000px;}
.y198{bottom:609.555000px;}
.y153{bottom:619.275000px;}
.y15{bottom:620.715000px;}
.yf7{bottom:620.895000px;}
.y12d{bottom:621.255000px;}
.yb3{bottom:621.435000px;}
.yd4{bottom:621.615000px;}
.y87{bottom:621.975000px;}
.y3d{bottom:627.195000px;}
.y197{bottom:630.255000px;}
.y173{bottom:633.675000px;}
.y152{bottom:639.975000px;}
.yf6{bottom:641.595000px;}
.y111{bottom:641.775000px;}
.y12c{bottom:641.955000px;}
.yb2{bottom:642.135000px;}
.yd3{bottom:642.495000px;}
.y86{bottom:642.675000px;}
.y3c{bottom:647.895000px;}
.y196{bottom:650.955000px;}
.y172{bottom:654.555000px;}
.y151{bottom:660.675000px;}
.yf5{bottom:662.475000px;}
.y12b{bottom:662.655000px;}
.yb1{bottom:662.835000px;}
.y85{bottom:663.375000px;}
.y14{bottom:665.355000px;}
.y64{bottom:668.595000px;}
.y195{bottom:671.655000px;}
.y171{bottom:675.255000px;}
.y150{bottom:681.375000px;}
.yf4{bottom:683.385000px;}
.yb0{bottom:683.745000px;}
.yd2{bottom:684.105000px;}
.y84{bottom:684.285000px;}
.y63{bottom:689.325000px;}
.y3b{bottom:692.385000px;}
.y170{bottom:695.985000px;}
.y14f{bottom:702.105000px;}
.yf3{bottom:704.265000px;}
.yaf{bottom:704.625000px;}
.y83{bottom:704.805000px;}
.y62{bottom:710.025000px;}
.y13{bottom:710.385000px;}
.y194{bottom:713.085000px;}
.y16f{bottom:716.685000px;}
.y14e{bottom:722.805000px;}
.yf2{bottom:724.965000px;}
.yae{bottom:725.505000px;}
.y82{bottom:725.865000px;}
.y12{bottom:731.265000px;}
.y193{bottom:733.785000px;}
.y3a{bottom:737.205000px;}
.y16e{bottom:737.385000px;}
.y14d{bottom:743.505000px;}
.yf1{bottom:745.665000px;}
.y12a{bottom:745.845000px;}
.yad{bottom:746.205000px;}
.y81{bottom:746.745000px;}
.y11{bottom:751.965000px;}
.y61{bottom:754.485000px;}
.y39{bottom:758.085000px;}
.y14c{bottom:764.205000px;}
.y110{bottom:766.365000px;}
.yf0{bottom:766.545000px;}
.yac{bottom:766.905000px;}
.y80{bottom:767.445000px;}
.y10{bottom:772.665000px;}
.y192{bottom:775.185000px;}
.y60{bottom:775.365000px;}
.y38{bottom:778.785000px;}
.y14b{bottom:784.905000px;}
.yef{bottom:787.245000px;}
.y129{bottom:787.425000px;}
.yab{bottom:787.785000px;}
.y7f{bottom:788.145000px;}
.yf{bottom:793.365000px;}
.y191{bottom:795.885000px;}
.y5f{bottom:796.065000px;}
.y37{bottom:799.485000px;}
.yee{bottom:807.945000px;}
.y10f{bottom:808.125000px;}
.y128{bottom:808.305000px;}
.yaa{bottom:808.665000px;}
.y7e{bottom:808.845000px;}
.ye{bottom:814.065000px;}
.y190{bottom:816.585000px;}
.y5e{bottom:816.765000px;}
.y36{bottom:820.185000px;}
.y16d{bottom:823.245000px;}
.yed{bottom:828.825000px;}
.y10e{bottom:829.005000px;}
.y127{bottom:829.185000px;}
.ya9{bottom:829.365000px;}
.y7d{bottom:829.545000px;}
.yd{bottom:834.765000px;}
.y5d{bottom:837.465000px;}
.yec{bottom:849.705000px;}
.y126{bottom:849.885000px;}
.ya8{bottom:850.065000px;}
.y7c{bottom:850.245000px;}
.y1ac{bottom:850.785000px;}
.y18f{bottom:852.045000px;}
.yc{bottom:855.465000px;}
.y5c{bottom:858.165000px;}
.y35{bottom:864.285000px;}
.y16c{bottom:867.885000px;}
.y10d{bottom:870.405000px;}
.yeb{bottom:870.585000px;}
.ya7{bottom:870.765000px;}
.y7b{bottom:870.945000px;}
.y18e{bottom:872.925000px;}
.y5b{bottom:878.865000px;}
.y1ab{bottom:886.965000px;}
.y16b{bottom:888.765000px;}
.y10c{bottom:891.105000px;}
.y13a{bottom:891.285000px;}
.yd1{bottom:891.465000px;}
.y7a{bottom:891.645000px;}
.yb{bottom:900.105000px;}
.y18d{bottom:908.385000px;}
.y34{bottom:908.925000px;}
.y16a{bottom:909.465000px;}
.y10b{bottom:911.805000px;}
.y139{bottom:911.985000px;}
.yd0{bottom:912.165000px;}
.y79{bottom:912.345000px;}
.ya6{bottom:912.525000px;}
.ya{bottom:921.030000px;}
.y1aa{bottom:923.010000px;}
.y5a{bottom:923.550000px;}
.y18c{bottom:929.310000px;}
.y169{bottom:930.210000px;}
.y10a{bottom:932.550000px;}
.ycf{bottom:932.910000px;}
.y125{bottom:933.090000px;}
.y78{bottom:933.270000px;}
.ya5{bottom:933.450000px;}
.y9{bottom:941.730000px;}
.y59{bottom:944.070000px;}
.y168{bottom:950.910000px;}
.y109{bottom:953.430000px;}
.yce{bottom:953.610000px;}
.y124{bottom:953.790000px;}
.y77{bottom:953.970000px;}
.y33{bottom:954.150000px;}
.y1a9{bottom:959.190000px;}
.y8{bottom:962.430000px;}
.y18b{bottom:964.950000px;}
.y167{bottom:971.610000px;}
.y108{bottom:974.130000px;}
.ycd{bottom:974.310000px;}
.yea{bottom:974.490000px;}
.y76{bottom:974.670000px;}
.ya4{bottom:974.850000px;}
.y32{bottom:975.030000px;}
.y18a{bottom:985.830000px;}
.y58{bottom:988.530000px;}
.y166{bottom:992.310000px;}
.y107{bottom:995.010000px;}
.ycc{bottom:995.190000px;}
.y75{bottom:995.370000px;}
.ya3{bottom:995.550000px;}
.y31{bottom:995.730000px;}
.y7{bottom:1006.890000px;}
.y165{bottom:1013.010000px;}
.y106{bottom:1015.890000px;}
.y74{bottom:1016.070000px;}
.ya2{bottom:1016.250000px;}
.y30{bottom:1016.430000px;}
.y6{bottom:1027.770000px;}
.y189{bottom:1030.290000px;}
.y1a8{bottom:1031.370000px;}
.y57{bottom:1033.170000px;}
.y164{bottom:1033.710000px;}
.y123{bottom:1036.590000px;}
.y105{bottom:1036.770000px;}
.y73{bottom:1036.950000px;}
.y2f{bottom:1037.130000px;}
.y5{bottom:1048.470000px;}
.y188{bottom:1051.170000px;}
.y56{bottom:1054.410000px;}
.y122{bottom:1057.290000px;}
.y104{bottom:1057.470000px;}
.ya1{bottom:1057.650000px;}
.y2e{bottom:1057.830000px;}
.y1a7{bottom:1067.370000px;}
.y4{bottom:1069.170000px;}
.y55{bottom:1075.110000px;}
.y121{bottom:1077.990000px;}
.y103{bottom:1078.170000px;}
.ya0{bottom:1078.350000px;}
.y2d{bottom:1078.530000px;}
.y187{bottom:1095.630000px;}
.y120{bottom:1098.510000px;}
.y9f{bottom:1099.050000px;}
.y2c{bottom:1099.230000px;}
.y1a6{bottom:1103.550000px;}
.y3{bottom:1104.270000px;}
.y11f{bottom:1119.390000px;}
.y54{bottom:1119.750000px;}
.y2b{bottom:1119.930000px;}
.y1a5{bottom:1139.730000px;}
.y2{bottom:1140.090000px;}
.y186{bottom:1140.450000px;}
.y2a{bottom:1140.630000px;}
.y1{bottom:1192.860000px;}
.h2{height:50.308594px;}
.h5{height:64.546875px;}
.h4{height:70.664062px;}
.h3{height:72.562500px;}
.h6{height:74.004654px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w0{width:892.440000px;}
.w1{width:892.500000px;}
.x0{left:0.000000px;}
.x1{left:127.656000px;}
.x2{left:133.596000px;}
.x3{left:135.216000px;}
.x4{left:171.210000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsf{letter-spacing:-1.920000pt;}
.ls7{letter-spacing:-1.280000pt;}
.ls3{letter-spacing:-0.512000pt;}
.lsb{letter-spacing:-0.256000pt;}
.ls5{letter-spacing:-0.192000pt;}
.ls4{letter-spacing:-0.128000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.064000pt;}
.ls0{letter-spacing:0.128000pt;}
.ls8{letter-spacing:0.256000pt;}
.lsc{letter-spacing:0.448000pt;}
.ls9{letter-spacing:0.512000pt;}
.ls2{letter-spacing:0.640000pt;}
.ls6{letter-spacing:7.040000pt;}
.lsd{letter-spacing:11.520000pt;}
.lse{letter-spacing:24.320000pt;}
.lsa{letter-spacing:60.266667pt;}
.ws5{word-spacing:-16.256000pt;}
.ws7{word-spacing:-16.064000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws1{word-spacing:-15.872000pt;}
.ws4{word-spacing:-15.808000pt;}
.ws6{word-spacing:-15.744000pt;}
.ws8{word-spacing:-13.824000pt;}
.ws3{word-spacing:-0.064000pt;}
.ws0{word-spacing:0.000000pt;}
._12{margin-left:-1.813333pt;}
._0{margin-left:-0.896000pt;}
._1{width:1.205333pt;}
._a{width:2.197333pt;}
._c{width:3.402667pt;}
._4{width:4.352000pt;}
._5{width:5.322667pt;}
._2{width:6.912000pt;}
._3{width:7.818667pt;}
._d{width:8.725333pt;}
._18{width:9.653333pt;}
._15{width:10.624000pt;}
._10{width:12.096000pt;}
._11{width:13.056000pt;}
._14{width:13.952000pt;}
._6{width:15.040000pt;}
._e{width:17.600000pt;}
._9{width:19.008000pt;}
._b{width:20.288000pt;}
._8{width:21.962667pt;}
._7{width:22.976000pt;}
._1a{width:24.192000pt;}
._1d{width:25.216000pt;}
._1e{width:26.112000pt;}
._29{width:27.840000pt;}
._19{width:28.992000pt;}
._f{width:30.336000pt;}
._1c{width:31.232000pt;}
._1b{width:32.128000pt;}
._16{width:33.728000pt;}
._17{width:35.136000pt;}
._21{width:36.032000pt;}
._13{width:37.024000pt;}
._28{width:38.944000pt;}
._27{width:40.096000pt;}
._26{width:41.120000pt;}
._1f{width:46.314667pt;}
._20{width:47.232000pt;}
._23{width:52.277333pt;}
._22{width:53.632000pt;}
._24{width:76.928000pt;}
._25{width:78.080000pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y29{bottom:98.880000pt;}
.y14a{bottom:108.640000pt;}
.ycb{bottom:109.120000pt;}
.y102{bottom:109.280000pt;}
.y9e{bottom:109.440000pt;}
.y53{bottom:110.080000pt;}
.y72{bottom:112.480000pt;}
.y1a4{bottom:115.040000pt;}
.y28{bottom:117.280000pt;}
.y149{bottom:127.040000pt;}
.yca{bottom:127.680000pt;}
.y101{bottom:127.840000pt;}
.y9d{bottom:128.000000pt;}
.y52{bottom:128.480000pt;}
.y71{bottom:130.880000pt;}
.y185{bottom:133.280000pt;}
.y1a3{bottom:133.440000pt;}
.y27{bottom:135.680000pt;}
.y148{bottom:145.440000pt;}
.y138{bottom:146.080000pt;}
.yc9{bottom:146.240000pt;}
.y9c{bottom:146.560000pt;}
.y51{bottom:146.880000pt;}
.y70{bottom:149.280000pt;}
.y184{bottom:151.840000pt;}
.y26{bottom:154.080000pt;}
.y147{bottom:163.840000pt;}
.yc8{bottom:164.640000pt;}
.ye9{bottom:164.960000pt;}
.y9b{bottom:165.120000pt;}
.y50{bottom:165.280000pt;}
.y6f{bottom:167.680000pt;}
.y183{bottom:170.240000pt;}
.y163{bottom:170.560000pt;}
.y146{bottom:182.240000pt;}
.yc7{bottom:183.040000pt;}
.ye8{bottom:183.360000pt;}
.y9a{bottom:183.520000pt;}
.y4f{bottom:183.680000pt;}
.y6e{bottom:186.240000pt;}
.y182{bottom:188.640000pt;}
.y162{bottom:189.120000pt;}
.y25{bottom:193.626667pt;}
.y145{bottom:200.666667pt;}
.y11e{bottom:201.146667pt;}
.yc6{bottom:201.466667pt;}
.y137{bottom:201.626667pt;}
.ye7{bottom:201.786667pt;}
.y99{bottom:201.946667pt;}
.y4e{bottom:202.106667pt;}
.y6d{bottom:204.826667pt;}
.y181{bottom:207.066667pt;}
.y1a2{bottom:207.226667pt;}
.y161{bottom:207.546667pt;}
.y24{bottom:212.186667pt;}
.y144{bottom:219.226667pt;}
.yc5{bottom:219.866667pt;}
.y11d{bottom:220.026667pt;}
.ye6{bottom:220.186667pt;}
.y4d{bottom:220.506667pt;}
.y6c{bottom:223.386667pt;}
.y1a1{bottom:225.786667pt;}
.y160{bottom:225.946667pt;}
.y23{bottom:230.586667pt;}
.y143{bottom:237.786667pt;}
.yc4{bottom:238.266667pt;}
.y11c{bottom:238.426667pt;}
.ye5{bottom:238.586667pt;}
.y136{bottom:238.746667pt;}
.y98{bottom:238.906667pt;}
.y6b{bottom:241.786667pt;}
.y15f{bottom:244.346667pt;}
.y180{bottom:246.746667pt;}
.y22{bottom:248.986667pt;}
.y142{bottom:256.346667pt;}
.yc3{bottom:256.666667pt;}
.y11b{bottom:256.826667pt;}
.ye4{bottom:257.146667pt;}
.y135{bottom:257.306667pt;}
.y97{bottom:257.466667pt;}
.y4c{bottom:260.026667pt;}
.y6a{bottom:260.186667pt;}
.y15e{bottom:262.746667pt;}
.y17f{bottom:265.306667pt;}
.y21{bottom:267.386667pt;}
.y141{bottom:274.906667pt;}
.yc2{bottom:275.066667pt;}
.y11a{bottom:275.226667pt;}
.ye3{bottom:275.706667pt;}
.y96{bottom:275.866667pt;}
.y4b{bottom:278.586667pt;}
.y15d{bottom:281.146667pt;}
.y20{bottom:285.786667pt;}
.y140{bottom:293.306667pt;}
.yc1{bottom:293.626667pt;}
.ye2{bottom:294.106667pt;}
.y95{bottom:294.266667pt;}
.y4a{bottom:296.986667pt;}
.y15c{bottom:299.546667pt;}
.y1f{bottom:304.186667pt;}
.y17e{bottom:304.826667pt;}
.y13f{bottom:311.706667pt;}
.y119{bottom:312.026667pt;}
.yc0{bottom:312.186667pt;}
.ye1{bottom:312.506667pt;}
.y94{bottom:312.666667pt;}
.y49{bottom:315.386667pt;}
.y15b{bottom:317.946667pt;}
.y17d{bottom:323.386667pt;}
.y13e{bottom:330.266667pt;}
.y118{bottom:330.426667pt;}
.ybf{bottom:330.746667pt;}
.y134{bottom:330.906667pt;}
.ye0{bottom:331.066667pt;}
.y93{bottom:331.226667pt;}
.y48{bottom:333.786667pt;}
.y15a{bottom:336.346667pt;}
.y69{bottom:336.506667pt;}
.y17c{bottom:341.786667pt;}
.y1e{bottom:343.706667pt;}
.y13d{bottom:348.826667pt;}
.y117{bottom:348.986667pt;}
.ybe{bottom:349.146667pt;}
.y133{bottom:349.306667pt;}
.ydf{bottom:349.626667pt;}
.y92{bottom:349.786667pt;}
.y47{bottom:352.186667pt;}
.y68{bottom:355.066667pt;}
.y17b{bottom:360.186667pt;}
.y1a0{bottom:362.746667pt;}
.y13c{bottom:367.386667pt;}
.ybd{bottom:367.546667pt;}
.y132{bottom:367.706667pt;}
.yde{bottom:368.186667pt;}
.y91{bottom:368.346667pt;}
.y46{bottom:370.266667pt;}
.y67{bottom:373.466667pt;}
.y159{bottom:375.866667pt;}
.y1d{bottom:383.546667pt;}
.y100{bottom:385.946667pt;}
.ybc{bottom:386.106667pt;}
.ydd{bottom:386.586667pt;}
.y90{bottom:386.906667pt;}
.y66{bottom:391.866667pt;}
.y158{bottom:394.426667pt;}
.y17a{bottom:399.706667pt;}
.y1c{bottom:402.146667pt;}
.yff{bottom:404.386667pt;}
.ybb{bottom:404.546667pt;}
.ydc{bottom:405.026667pt;}
.y8f{bottom:405.346667pt;}
.y45{bottom:410.146667pt;}
.y65{bottom:410.306667pt;}
.y19f{bottom:413.026667pt;}
.y179{bottom:418.306667pt;}
.y1b{bottom:420.386667pt;}
.yfe{bottom:422.786667pt;}
.y116{bottom:422.946667pt;}
.yba{bottom:423.106667pt;}
.ydb{bottom:423.586667pt;}
.y8e{bottom:423.746667pt;}
.y44{bottom:428.706667pt;}
.y19e{bottom:431.426667pt;}
.y157{bottom:433.986667pt;}
.y178{bottom:436.706667pt;}
.y1a{bottom:438.786667pt;}
.yfd{bottom:441.346667pt;}
.y131{bottom:441.506667pt;}
.yb9{bottom:441.666667pt;}
.yda{bottom:441.986667pt;}
.y8d{bottom:442.306667pt;}
.y43{bottom:447.106667pt;}
.y19d{bottom:449.826667pt;}
.y156{bottom:452.546667pt;}
.y177{bottom:455.106667pt;}
.y19{bottom:457.186667pt;}
.yfc{bottom:459.746667pt;}
.yb8{bottom:460.066667pt;}
.yd9{bottom:460.386667pt;}
.y8c{bottom:460.866667pt;}
.y42{bottom:465.506667pt;}
.y19c{bottom:468.226667pt;}
.y176{bottom:473.506667pt;}
.y18{bottom:475.586667pt;}
.y115{bottom:478.146667pt;}
.yfb{bottom:478.306667pt;}
.yb7{bottom:478.466667pt;}
.y130{bottom:478.626667pt;}
.yd8{bottom:478.786667pt;}
.y8b{bottom:479.266667pt;}
.y41{bottom:483.906667pt;}
.y19b{bottom:486.626667pt;}
.y175{bottom:491.906667pt;}
.y155{bottom:492.226667pt;}
.y17{bottom:493.986667pt;}
.y114{bottom:496.546667pt;}
.yfa{bottom:496.706667pt;}
.y13b{bottom:496.866667pt;}
.yb6{bottom:497.026667pt;}
.yd7{bottom:497.186667pt;}
.y8a{bottom:497.666667pt;}
.y40{bottom:502.306667pt;}
.y19a{bottom:505.026667pt;}
.y16{bottom:512.386667pt;}
.y113{bottom:514.786667pt;}
.yf9{bottom:515.106667pt;}
.y12f{bottom:515.426667pt;}
.yb5{bottom:515.586667pt;}
.yd6{bottom:515.746667pt;}
.y89{bottom:516.066667pt;}
.y3f{bottom:520.706667pt;}
.y174{bottom:523.106667pt;}
.y199{bottom:523.426667pt;}
.y154{bottom:531.906667pt;}
.y112{bottom:533.346667pt;}
.yf8{bottom:533.506667pt;}
.y12e{bottom:533.826667pt;}
.yb4{bottom:533.986667pt;}
.yd5{bottom:534.146667pt;}
.y88{bottom:534.466667pt;}
.y3e{bottom:539.106667pt;}
.y198{bottom:541.826667pt;}
.y153{bottom:550.466667pt;}
.y15{bottom:551.746667pt;}
.yf7{bottom:551.906667pt;}
.y12d{bottom:552.226667pt;}
.yb3{bottom:552.386667pt;}
.yd4{bottom:552.546667pt;}
.y87{bottom:552.866667pt;}
.y3d{bottom:557.506667pt;}
.y197{bottom:560.226667pt;}
.y173{bottom:563.266667pt;}
.y152{bottom:568.866667pt;}
.yf6{bottom:570.306667pt;}
.y111{bottom:570.466667pt;}
.y12c{bottom:570.626667pt;}
.yb2{bottom:570.786667pt;}
.yd3{bottom:571.106667pt;}
.y86{bottom:571.266667pt;}
.y3c{bottom:575.906667pt;}
.y196{bottom:578.626667pt;}
.y172{bottom:581.826667pt;}
.y151{bottom:587.266667pt;}
.yf5{bottom:588.866667pt;}
.y12b{bottom:589.026667pt;}
.yb1{bottom:589.186667pt;}
.y85{bottom:589.666667pt;}
.y14{bottom:591.426667pt;}
.y64{bottom:594.306667pt;}
.y195{bottom:597.026667pt;}
.y171{bottom:600.226667pt;}
.y150{bottom:605.666667pt;}
.yf4{bottom:607.453333pt;}
.yb0{bottom:607.773333pt;}
.yd2{bottom:608.093333pt;}
.y84{bottom:608.253333pt;}
.y63{bottom:612.733333pt;}
.y3b{bottom:615.453333pt;}
.y170{bottom:618.653333pt;}
.y14f{bottom:624.093333pt;}
.yf3{bottom:626.013333pt;}
.yaf{bottom:626.333333pt;}
.y83{bottom:626.493333pt;}
.y62{bottom:631.133333pt;}
.y13{bottom:631.453333pt;}
.y194{bottom:633.853333pt;}
.y16f{bottom:637.053333pt;}
.y14e{bottom:642.493333pt;}
.yf2{bottom:644.413333pt;}
.yae{bottom:644.893333pt;}
.y82{bottom:645.213333pt;}
.y12{bottom:650.013333pt;}
.y193{bottom:652.253333pt;}
.y3a{bottom:655.293333pt;}
.y16e{bottom:655.453333pt;}
.y14d{bottom:660.893333pt;}
.yf1{bottom:662.813333pt;}
.y12a{bottom:662.973333pt;}
.yad{bottom:663.293333pt;}
.y81{bottom:663.773333pt;}
.y11{bottom:668.413333pt;}
.y61{bottom:670.653333pt;}
.y39{bottom:673.853333pt;}
.y14c{bottom:679.293333pt;}
.y110{bottom:681.213333pt;}
.yf0{bottom:681.373333pt;}
.yac{bottom:681.693333pt;}
.y80{bottom:682.173333pt;}
.y10{bottom:686.813333pt;}
.y192{bottom:689.053333pt;}
.y60{bottom:689.213333pt;}
.y38{bottom:692.253333pt;}
.y14b{bottom:697.693333pt;}
.yef{bottom:699.773333pt;}
.y129{bottom:699.933333pt;}
.yab{bottom:700.253333pt;}
.y7f{bottom:700.573333pt;}
.yf{bottom:705.213333pt;}
.y191{bottom:707.453333pt;}
.y5f{bottom:707.613333pt;}
.y37{bottom:710.653333pt;}
.yee{bottom:718.173333pt;}
.y10f{bottom:718.333333pt;}
.y128{bottom:718.493333pt;}
.yaa{bottom:718.813333pt;}
.y7e{bottom:718.973333pt;}
.ye{bottom:723.613333pt;}
.y190{bottom:725.853333pt;}
.y5e{bottom:726.013333pt;}
.y36{bottom:729.053333pt;}
.y16d{bottom:731.773333pt;}
.yed{bottom:736.733333pt;}
.y10e{bottom:736.893333pt;}
.y127{bottom:737.053333pt;}
.ya9{bottom:737.213333pt;}
.y7d{bottom:737.373333pt;}
.yd{bottom:742.013333pt;}
.y5d{bottom:744.413333pt;}
.yec{bottom:755.293333pt;}
.y126{bottom:755.453333pt;}
.ya8{bottom:755.613333pt;}
.y7c{bottom:755.773333pt;}
.y1ac{bottom:756.253333pt;}
.y18f{bottom:757.373333pt;}
.yc{bottom:760.413333pt;}
.y5c{bottom:762.813333pt;}
.y35{bottom:768.253333pt;}
.y16c{bottom:771.453333pt;}
.y10d{bottom:773.693333pt;}
.yeb{bottom:773.853333pt;}
.ya7{bottom:774.013333pt;}
.y7b{bottom:774.173333pt;}
.y18e{bottom:775.933333pt;}
.y5b{bottom:781.213333pt;}
.y1ab{bottom:788.413333pt;}
.y16b{bottom:790.013333pt;}
.y10c{bottom:792.093333pt;}
.y13a{bottom:792.253333pt;}
.yd1{bottom:792.413333pt;}
.y7a{bottom:792.573333pt;}
.yb{bottom:800.093333pt;}
.y18d{bottom:807.453333pt;}
.y34{bottom:807.933333pt;}
.y16a{bottom:808.413333pt;}
.y10b{bottom:810.493333pt;}
.y139{bottom:810.653333pt;}
.yd0{bottom:810.813333pt;}
.y79{bottom:810.973333pt;}
.ya6{bottom:811.133333pt;}
.ya{bottom:818.693333pt;}
.y1aa{bottom:820.453333pt;}
.y5a{bottom:820.933333pt;}
.y18c{bottom:826.053333pt;}
.y169{bottom:826.853333pt;}
.y10a{bottom:828.933333pt;}
.ycf{bottom:829.253333pt;}
.y125{bottom:829.413333pt;}
.y78{bottom:829.573333pt;}
.ya5{bottom:829.733333pt;}
.y9{bottom:837.093333pt;}
.y59{bottom:839.173333pt;}
.y168{bottom:845.253333pt;}
.y109{bottom:847.493333pt;}
.yce{bottom:847.653333pt;}
.y124{bottom:847.813333pt;}
.y77{bottom:847.973333pt;}
.y33{bottom:848.133333pt;}
.y1a9{bottom:852.613333pt;}
.y8{bottom:855.493333pt;}
.y18b{bottom:857.733333pt;}
.y167{bottom:863.653333pt;}
.y108{bottom:865.893333pt;}
.ycd{bottom:866.053333pt;}
.yea{bottom:866.213333pt;}
.y76{bottom:866.373333pt;}
.ya4{bottom:866.533333pt;}
.y32{bottom:866.693333pt;}
.y18a{bottom:876.293333pt;}
.y58{bottom:878.693333pt;}
.y166{bottom:882.053333pt;}
.y107{bottom:884.453333pt;}
.ycc{bottom:884.613333pt;}
.y75{bottom:884.773333pt;}
.ya3{bottom:884.933333pt;}
.y31{bottom:885.093333pt;}
.y7{bottom:895.013333pt;}
.y165{bottom:900.453333pt;}
.y106{bottom:903.013333pt;}
.y74{bottom:903.173333pt;}
.ya2{bottom:903.333333pt;}
.y30{bottom:903.493333pt;}
.y6{bottom:913.573333pt;}
.y189{bottom:915.813333pt;}
.y1a8{bottom:916.773333pt;}
.y57{bottom:918.373333pt;}
.y164{bottom:918.853333pt;}
.y123{bottom:921.413333pt;}
.y105{bottom:921.573333pt;}
.y73{bottom:921.733333pt;}
.y2f{bottom:921.893333pt;}
.y5{bottom:931.973333pt;}
.y188{bottom:934.373333pt;}
.y56{bottom:937.253333pt;}
.y122{bottom:939.813333pt;}
.y104{bottom:939.973333pt;}
.ya1{bottom:940.133333pt;}
.y2e{bottom:940.293333pt;}
.y1a7{bottom:948.773333pt;}
.y4{bottom:950.373333pt;}
.y55{bottom:955.653333pt;}
.y121{bottom:958.213333pt;}
.y103{bottom:958.373333pt;}
.ya0{bottom:958.533333pt;}
.y2d{bottom:958.693333pt;}
.y187{bottom:973.893333pt;}
.y120{bottom:976.453333pt;}
.y9f{bottom:976.933333pt;}
.y2c{bottom:977.093333pt;}
.y1a6{bottom:980.933333pt;}
.y3{bottom:981.573333pt;}
.y11f{bottom:995.013333pt;}
.y54{bottom:995.333333pt;}
.y2b{bottom:995.493333pt;}
.y1a5{bottom:1013.093333pt;}
.y2{bottom:1013.413333pt;}
.y186{bottom:1013.733333pt;}
.y2a{bottom:1013.893333pt;}
.y1{bottom:1060.320000pt;}
.h2{height:44.718750pt;}
.h5{height:57.375000pt;}
.h4{height:62.812500pt;}
.h3{height:64.500000pt;}
.h6{height:65.781915pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w0{width:793.280000pt;}
.w1{width:793.333333pt;}
.x0{left:0.000000pt;}
.x1{left:113.472000pt;}
.x2{left:118.752000pt;}
.x3{left:120.192000pt;}
.x4{left:152.186667pt;}
}




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