
    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_4d5b051d6d06155bb6b3879b.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_d4c83e1b2eebb28c2ec0d55a.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_8ce1e6d5a14457e1ae3bb8d8.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.120605;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_cf08191fdf309de3e2da66f6.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_1c738aa9c99204122284fb98.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.976562;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_8fc16aeaf4518683ec069ed0.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_c283dea384ea44dcc2f5d97e.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.435059;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_3cce3687f858bc836c96bb76.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_817944cc63d3f8611b336796.woff2')format("woff");}.ff9{font-family:ff9;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);}
.v1{vertical-align:-84.240000px;}
.v3{vertical-align:-30.360000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:30.240000px;}
.lsa{letter-spacing:-1.008000px;}
.ls9{letter-spacing:-0.774000px;}
.ls12{letter-spacing:-0.612000px;}
.lsd{letter-spacing:-0.008640px;}
.ls7{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.008640px;}
.ls1{letter-spacing:0.017280px;}
.ls14{letter-spacing:0.018000px;}
.ls10{letter-spacing:0.120000px;}
.ls0{letter-spacing:0.149760px;}
.ls3{letter-spacing:0.153360px;}
.lse{letter-spacing:0.180000px;}
.ls8{letter-spacing:0.256200px;}
.ls2{letter-spacing:0.273360px;}
.ls5{letter-spacing:0.333360px;}
.ls6{letter-spacing:0.360000px;}
.ls13{letter-spacing:0.540000px;}
.ls4{letter-spacing:5.220000px;}
.lsc{letter-spacing:25.308000px;}
.lsb{letter-spacing:28.062720px;}
.ls11{letter-spacing:52.668000px;}
.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:-19.457280px;}
.ws6{word-spacing:-19.440000px;}
.ws7{word-spacing:-19.431360px;}
.ws3{word-spacing:-16.560000px;}
.ws0{word-spacing:-15.226440px;}
.ws2{word-spacing:-14.940000px;}
.ws9{word-spacing:-13.860000px;}
.ws8{word-spacing:-13.500000px;}
.ws4{word-spacing:-10.440000px;}
.ws5{word-spacing:0.000000px;}
._e{margin-left:-3.189600px;}
._0{margin-left:-1.134000px;}
._1{width:1.002000px;}
._7{width:2.319600px;}
._1c{width:3.321360px;}
._a{width:4.495920px;}
._b{width:5.609760px;}
._6{width:6.960000px;}
._19{width:8.268000px;}
._13{width:9.288000px;}
._12{width:10.800000px;}
._11{width:11.988000px;}
._c{width:13.505760px;}
._1f{width:14.958000px;}
._10{width:16.524000px;}
._20{width:17.736000px;}
._9{width:19.597440px;}
._8{width:20.617200px;}
._23{width:21.723600px;}
._16{width:22.734000px;}
._26{width:23.754000px;}
._28{width:24.804000px;}
._1b{width:25.902000px;}
._1a{width:27.342000px;}
._29{width:28.368000px;}
._2d{width:29.430000px;}
._30{width:31.440000px;}
._14{width:32.832000px;}
._15{width:34.080000px;}
._1e{width:36.018000px;}
._1d{width:37.098000px;}
._2b{width:39.690000px;}
._25{width:41.148000px;}
._24{width:42.228000px;}
._27{width:43.410000px;}
._31{width:45.360000px;}
._22{width:46.602000px;}
._21{width:47.628000px;}
._17{width:51.732000px;}
._18{width:53.514000px;}
._2e{width:55.728000px;}
._34{width:57.564000px;}
._2a{width:58.644000px;}
._3{width:59.652000px;}
._35{width:60.858000px;}
._36{width:63.720000px;}
._38{width:64.770000px;}
._33{width:66.204000px;}
._32{width:67.608000px;}
._2c{width:69.300000px;}
._4{width:76.500000px;}
._2f{width:77.814000px;}
._37{width:93.798000px;}
._5{width:202.500000px;}
._2{width:1037.280000px;}
._d{width:1224.300000px;}
._f{width:1664.520000px;}
.fc5{color:transparent;}
.fc4{color:rgb(33,37,41);}
.fc3{color:rgb(0,0,255);}
.fc6{color:rgb(0,176,240);}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:41.760000px;}
.fs0{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs8{font-size:72.000000px;}
.fs2{font-size:77.760000px;}
.fs5{font-size:84.240000px;}
.fs6{font-size:90.000000px;}
.fs4{font-size:126.000000px;}
.y0{bottom:0.000000px;}
.y3{bottom:2.880000px;}
.y3e{bottom:3.060000px;}
.y4{bottom:15.480000px;}
.y3f{bottom:15.660000px;}
.y2{bottom:18.720000px;}
.y3d{bottom:18.900000px;}
.y5{bottom:36.720000px;}
.y40{bottom:39.780000px;}
.y1{bottom:57.600000px;}
.y3c{bottom:60.660000px;}
.y12{bottom:71.130000px;}
.y11{bottom:90.930000px;}
.y10{bottom:110.910000px;}
.y3b{bottom:111.780000px;}
.yb5{bottom:117.000000px;}
.y7b{bottom:118.080000px;}
.y3a{bottom:129.960000px;}
.yf{bottom:130.710000px;}
.yb4{bottom:134.820000px;}
.ye2{bottom:135.000000px;}
.y7a{bottom:136.080000px;}
.ye{bottom:150.510000px;}
.yb3{bottom:152.640000px;}
.y113{bottom:153.180000px;}
.y79{bottom:153.900000px;}
.ye1{bottom:161.820000px;}
.yd{bottom:170.310000px;}
.y112{bottom:171.180000px;}
.y78{bottom:171.720000px;}
.y39{bottom:176.220000px;}
.y6{bottom:177.120000px;}
.yb2{bottom:179.460000px;}
.ye0{bottom:179.640000px;}
.y111{bottom:189.000000px;}
.y77{bottom:189.540000px;}
.yc{bottom:190.110000px;}
.yb1{bottom:197.280000px;}
.ydf{bottom:197.460000px;}
.y14{bottom:199.260000px;}
.y76{bottom:207.390000px;}
.yb{bottom:210.090000px;}
.yb0{bottom:215.310000px;}
.y110{bottom:215.850000px;}
.y38{bottom:225.030000px;}
.y75{bottom:225.210000px;}
.y13{bottom:228.450000px;}
.y156{bottom:228.630000px;}
.ya{bottom:229.890000px;}
.yaf{bottom:233.130000px;}
.yde{bottom:233.310000px;}
.y10f{bottom:233.670000px;}
.y74{bottom:242.850000px;}
.y9{bottom:249.690000px;}
.ydd{bottom:251.130000px;}
.y10e{bottom:251.490000px;}
.yae{bottom:252.930000px;}
.y73{bottom:263.010000px;}
.ydc{bottom:268.950000px;}
.y8{bottom:269.490000px;}
.y37{bottom:273.810000px;}
.y138{bottom:276.150000px;}
.y10d{bottom:278.490000px;}
.yad{bottom:285.690000px;}
.ydb{bottom:286.770000px;}
.y137{bottom:293.970000px;}
.y72{bottom:295.770000px;}
.y10c{bottom:296.310000px;}
.y7{bottom:299.955000px;}
.yac{bottom:303.510000px;}
.y36{bottom:304.590000px;}
.y136{bottom:311.790000px;}
.y71{bottom:313.590000px;}
.y10b{bottom:314.130000px;}
.yab{bottom:321.510000px;}
.yda{bottom:322.410000px;}
.y35{bottom:330.870000px;}
.y70{bottom:331.410000px;}
.y155{bottom:337.170000px;}
.y135{bottom:338.610000px;}
.yd9{bottom:340.410000px;}
.y10a{bottom:340.950000px;}
.yaa{bottom:348.330000px;}
.y6f{bottom:349.410000px;}
.y134{bottom:356.610000px;}
.y34{bottom:357.330000px;}
.yd8{bottom:357.870000px;}
.y109{bottom:358.770000px;}
.y154{bottom:363.990000px;}
.ya9{bottom:366.150000px;}
.y6e{bottom:367.230000px;}
.y108{bottom:376.590000px;}
.y133{bottom:383.430000px;}
.y33{bottom:383.610000px;}
.ya8{bottom:383.970000px;}
.y6d{bottom:385.050000px;}
.y153{bottom:390.990000px;}
.y132{bottom:401.250000px;}
.ya7{bottom:401.790000px;}
.y6c{bottom:402.870000px;}
.y107{bottom:403.590000px;}
.y32{bottom:409.890000px;}
.y152{bottom:417.810000px;}
.y131{bottom:419.070000px;}
.ya6{bottom:419.610000px;}
.y6b{bottom:420.690000px;}
.y106{bottom:421.410000px;}
.y31{bottom:436.170000px;}
.y130{bottom:436.890000px;}
.ya5{bottom:437.610000px;}
.y6a{bottom:438.690000px;}
.y105{bottom:439.230000px;}
.y151{bottom:444.675000px;}
.yd7{bottom:447.735000px;}
.ya4{bottom:455.475000px;}
.y69{bottom:456.555000px;}
.y30{bottom:462.675000px;}
.y12f{bottom:463.935000px;}
.yd6{bottom:465.555000px;}
.y104{bottom:466.095000px;}
.y150{bottom:471.495000px;}
.ya3{bottom:473.295000px;}
.y68{bottom:474.375000px;}
.y12e{bottom:481.755000px;}
.yd5{bottom:483.375000px;}
.y103{bottom:483.915000px;}
.y2f{bottom:488.955000px;}
.ya2{bottom:491.115000px;}
.y67{bottom:492.195000px;}
.y14f{bottom:498.315000px;}
.y12d{bottom:508.575000px;}
.ya1{bottom:508.935000px;}
.y66{bottom:510.015000px;}
.yd4{bottom:510.195000px;}
.y102{bottom:510.915000px;}
.y2e{bottom:515.235000px;}
.y14e{bottom:525.135000px;}
.y12c{bottom:526.395000px;}
.ya0{bottom:526.935000px;}
.y65{bottom:527.835000px;}
.yd3{bottom:528.015000px;}
.y101{bottom:528.735000px;}
.y2d{bottom:541.515000px;}
.y9f{bottom:544.755000px;}
.y64{bottom:545.835000px;}
.y100{bottom:546.555000px;}
.y14d{bottom:552.135000px;}
.y12b{bottom:553.215000px;}
.y9e{bottom:562.575000px;}
.y63{bottom:563.655000px;}
.yd2{bottom:563.835000px;}
.y2c{bottom:567.795000px;}
.y12a{bottom:571.035000px;}
.yff{bottom:573.375000px;}
.y14c{bottom:578.955000px;}
.y9d{bottom:580.395000px;}
.y62{bottom:581.475000px;}
.yd1{bottom:581.655000px;}
.y129{bottom:589.035000px;}
.yfe{bottom:591.195000px;}
.y9c{bottom:598.215000px;}
.y2b{bottom:598.755000px;}
.y61{bottom:599.295000px;}
.yd0{bottom:599.475000px;}
.y14b{bottom:605.775000px;}
.yfd{bottom:609.015000px;}
.y128{bottom:615.855000px;}
.y9b{bottom:616.035000px;}
.y60{bottom:617.115000px;}
.ycf{bottom:617.295000px;}
.y2a{bottom:620.535000px;}
.yfc{bottom:628.995000px;}
.y14a{bottom:632.595000px;}
.y127{bottom:633.675000px;}
.y9a{bottom:634.035000px;}
.yce{bottom:634.755000px;}
.y5f{bottom:635.115000px;}
.y126{bottom:651.495000px;}
.ycd{bottom:652.755000px;}
.y5e{bottom:652.935000px;}
.y29{bottom:654.375000px;}
.y149{bottom:659.415000px;}
.y99{bottom:660.495000px;}
.yfb{bottom:661.755000px;}
.y125{bottom:669.315000px;}
.ycc{bottom:672.915000px;}
.y98{bottom:678.345000px;}
.yfa{bottom:679.605000px;}
.y5d{bottom:679.785000px;}
.y28{bottom:680.685000px;}
.y148{bottom:686.445000px;}
.y124{bottom:687.165000px;}
.ycb{bottom:696.345000px;}
.yf9{bottom:697.425000px;}
.y5c{bottom:697.605000px;}
.y27{bottom:699.585000px;}
.y97{bottom:705.525000px;}
.y147{bottom:713.265000px;}
.y123{bottom:714.165000px;}
.yca{bottom:714.525000px;}
.yf8{bottom:715.245000px;}
.y5b{bottom:715.425000px;}
.y26{bottom:721.005000px;}
.y96{bottom:723.345000px;}
.y122{bottom:731.985000px;}
.yc9{bottom:732.345000px;}
.y5a{bottom:733.245000px;}
.y146{bottom:740.085000px;}
.y95{bottom:741.165000px;}
.yc8{bottom:750.165000px;}
.yf7{bottom:751.065000px;}
.y59{bottom:751.245000px;}
.y121{bottom:758.805000px;}
.y94{bottom:759.165000px;}
.y145{bottom:766.905000px;}
.yc7{bottom:768.165000px;}
.yf6{bottom:768.885000px;}
.y58{bottom:769.065000px;}
.y25{bottom:771.585000px;}
.y120{bottom:776.625000px;}
.y93{bottom:776.985000px;}
.yc6{bottom:785.985000px;}
.yf5{bottom:786.705000px;}
.y57{bottom:786.885000px;}
.y144{bottom:793.725000px;}
.y11f{bottom:794.445000px;}
.y92{bottom:794.805000px;}
.y24{bottom:799.305000px;}
.yc5{bottom:803.805000px;}
.y56{bottom:804.705000px;}
.y11e{bottom:812.445000px;}
.y91{bottom:812.625000px;}
.yf4{bottom:813.525000px;}
.y143{bottom:820.545000px;}
.yc4{bottom:821.625000px;}
.y55{bottom:822.525000px;}
.y90{bottom:830.445000px;}
.yf3{bottom:831.345000px;}
.y11d{bottom:839.265000px;}
.yc3{bottom:839.445000px;}
.y54{bottom:840.345000px;}
.y23{bottom:845.565000px;}
.y142{bottom:847.545000px;}
.y8f{bottom:848.445000px;}
.yf2{bottom:849.345000px;}
.y11c{bottom:857.085000px;}
.yc2{bottom:857.445000px;}
.y53{bottom:858.345000px;}
.y8e{bottom:866.265000px;}
.yf1{bottom:867.165000px;}
.y22{bottom:870.765000px;}
.y141{bottom:874.365000px;}
.y11b{bottom:874.905000px;}
.yc1{bottom:875.265000px;}
.y52{bottom:876.165000px;}
.y8d{bottom:884.085000px;}
.yf0{bottom:884.985000px;}
.y21{bottom:890.565000px;}
.yc0{bottom:893.085000px;}
.y51{bottom:893.985000px;}
.y140{bottom:901.185000px;}
.y11a{bottom:901.725000px;}
.y8c{bottom:901.905000px;}
.yef{bottom:902.805000px;}
.ybf{bottom:910.950000px;}
.y20{bottom:911.130000px;}
.y50{bottom:911.850000px;}
.y119{bottom:919.590000px;}
.y8b{bottom:919.770000px;}
.yee{bottom:920.670000px;}
.y13f{bottom:928.050000px;}
.ybe{bottom:928.770000px;}
.y4f{bottom:929.670000px;}
.y1f{bottom:931.830000px;}
.y8a{bottom:937.590000px;}
.yed{bottom:938.670000px;}
.ybd{bottom:946.590000px;}
.y1e{bottom:952.170000px;}
.y13e{bottom:954.870000px;}
.y118{bottom:955.410000px;}
.y89{bottom:955.590000px;}
.yec{bottom:956.490000px;}
.y4e{bottom:956.670000px;}
.ybc{bottom:964.590000px;}
.y117{bottom:973.230000px;}
.y88{bottom:973.410000px;}
.yeb{bottom:974.310000px;}
.y4d{bottom:974.490000px;}
.y13d{bottom:981.870000px;}
.ybb{bottom:982.410000px;}
.y87{bottom:991.230000px;}
.yea{bottom:992.130000px;}
.y4c{bottom:992.310000px;}
.y1d{bottom:993.930000px;}
.y116{bottom:1000.050000px;}
.yba{bottom:1000.230000px;}
.y1c{bottom:1007.790000px;}
.y13c{bottom:1008.690000px;}
.y86{bottom:1009.050000px;}
.y4b{bottom:1010.130000px;}
.ye9{bottom:1011.930000px;}
.y115{bottom:1017.870000px;}
.yb9{bottom:1018.050000px;}
.y1b{bottom:1021.650000px;}
.y85{bottom:1026.870000px;}
.y4a{bottom:1027.950000px;}
.y1a{bottom:1035.510000px;}
.yb8{bottom:1035.870000px;}
.y84{bottom:1044.510000px;}
.ye8{bottom:1044.870000px;}
.y49{bottom:1045.770000px;}
.y114{bottom:1053.690000px;}
.yb7{bottom:1053.870000px;}
.y19{bottom:1054.050000px;}
.y83{bottom:1062.330000px;}
.ye7{bottom:1062.690000px;}
.y48{bottom:1063.770000px;}
.yb6{bottom:1071.690000px;}
.ye6{bottom:1080.510000px;}
.y47{bottom:1081.590000px;}
.y18{bottom:1083.210000px;}
.y13b{bottom:1089.150000px;}
.y82{bottom:1089.510000px;}
.ye5{bottom:1098.330000px;}
.y46{bottom:1099.410000px;}
.y81{bottom:1107.330000px;}
.y17{bottom:1110.930000px;}
.y13a{bottom:1115.970000px;}
.ye4{bottom:1116.150000px;}
.y45{bottom:1117.230000px;}
.y80{bottom:1125.150000px;}
.ye3{bottom:1133.970000px;}
.y44{bottom:1135.050000px;}
.y16{bottom:1138.830000px;}
.y7f{bottom:1142.970000px;}
.y43{bottom:1153.080000px;}
.y7e{bottom:1161.000000px;}
.y139{bottom:1169.820000px;}
.y15{bottom:1170.540000px;}
.y42{bottom:1170.900000px;}
.y7d{bottom:1178.820000px;}
.y41{bottom:1190.700000px;}
.y7c{bottom:1196.640000px;}
.h2{height:30.955500px;}
.h14{height:31.135500px;}
.hd{height:40.985156px;}
.h8{height:45.461953px;}
.h16{height:48.410156px;}
.h3{height:52.998047px;}
.h13{height:54.421875px;}
.h18{height:55.503491px;}
.h17{height:56.214844px;}
.h7{height:58.621992px;}
.he{height:58.651172px;}
.h9{height:60.226875px;}
.hf{height:65.010937px;}
.h4{height:65.884219px;}
.h12{height:66.757500px;}
.h11{height:72.326250px;}
.h6{height:78.367500px;}
.h15{height:80.949375px;}
.h10{height:82.676953px;}
.hb{height:84.898125px;}
.hc{height:90.703125px;}
.ha{height:126.984375px;}
.h5{height:330.120000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:80.310000px;}
.w2{width:722.115000px;}
.w4{width:813.600000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:8.635500px;}
.x7{left:10.800000px;}
.x6{left:39.240000px;}
.x1{left:45.364500px;}
.x8{left:50.040000px;}
.x5{left:54.000000px;}
.x15{left:81.000000px;}
.xf{left:82.980000px;}
.x18{left:108.036000px;}
.x12{left:146.016000px;}
.x2{left:222.370500px;}
.x11{left:251.490000px;}
.xa{left:270.615000px;}
.xc{left:272.595000px;}
.xd{left:287.715000px;}
.x13{left:324.075000px;}
.x10{left:342.435000px;}
.xb{left:364.395000px;}
.xe{left:378.795000px;}
.x9{left:446.505000px;}
.x16{left:473.505000px;}
.x14{left:500.505000px;}
.x17{left:527.505000px;}
.x4{left:767.490000px;}
@media print{
.v1{vertical-align:-74.880000pt;}
.v3{vertical-align:-26.986667pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:26.880000pt;}
.lsa{letter-spacing:-0.896000pt;}
.ls9{letter-spacing:-0.688000pt;}
.ls12{letter-spacing:-0.544000pt;}
.lsd{letter-spacing:-0.007680pt;}
.ls7{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.007680pt;}
.ls1{letter-spacing:0.015360pt;}
.ls14{letter-spacing:0.016000pt;}
.ls10{letter-spacing:0.106667pt;}
.ls0{letter-spacing:0.133120pt;}
.ls3{letter-spacing:0.136320pt;}
.lse{letter-spacing:0.160000pt;}
.ls8{letter-spacing:0.227733pt;}
.ls2{letter-spacing:0.242987pt;}
.ls5{letter-spacing:0.296320pt;}
.ls6{letter-spacing:0.320000pt;}
.ls13{letter-spacing:0.480000pt;}
.ls4{letter-spacing:4.640000pt;}
.lsc{letter-spacing:22.496000pt;}
.lsb{letter-spacing:24.944640pt;}
.ls11{letter-spacing:46.816000pt;}
.ws1{word-spacing:-17.295360pt;}
.ws6{word-spacing:-17.280000pt;}
.ws7{word-spacing:-17.272320pt;}
.ws3{word-spacing:-14.720000pt;}
.ws0{word-spacing:-13.534613pt;}
.ws2{word-spacing:-13.280000pt;}
.ws9{word-spacing:-12.320000pt;}
.ws8{word-spacing:-12.000000pt;}
.ws4{word-spacing:-9.280000pt;}
.ws5{word-spacing:0.000000pt;}
._e{margin-left:-2.835200pt;}
._0{margin-left:-1.008000pt;}
._1{width:0.890667pt;}
._7{width:2.061867pt;}
._1c{width:2.952320pt;}
._a{width:3.996373pt;}
._b{width:4.986453pt;}
._6{width:6.186667pt;}
._19{width:7.349333pt;}
._13{width:8.256000pt;}
._12{width:9.600000pt;}
._11{width:10.656000pt;}
._c{width:12.005120pt;}
._1f{width:13.296000pt;}
._10{width:14.688000pt;}
._20{width:15.765333pt;}
._9{width:17.419947pt;}
._8{width:18.326400pt;}
._23{width:19.309867pt;}
._16{width:20.208000pt;}
._26{width:21.114667pt;}
._28{width:22.048000pt;}
._1b{width:23.024000pt;}
._1a{width:24.304000pt;}
._29{width:25.216000pt;}
._2d{width:26.160000pt;}
._30{width:27.946667pt;}
._14{width:29.184000pt;}
._15{width:30.293333pt;}
._1e{width:32.016000pt;}
._1d{width:32.976000pt;}
._2b{width:35.280000pt;}
._25{width:36.576000pt;}
._24{width:37.536000pt;}
._27{width:38.586667pt;}
._31{width:40.320000pt;}
._22{width:41.424000pt;}
._21{width:42.336000pt;}
._17{width:45.984000pt;}
._18{width:47.568000pt;}
._2e{width:49.536000pt;}
._34{width:51.168000pt;}
._2a{width:52.128000pt;}
._3{width:53.024000pt;}
._35{width:54.096000pt;}
._36{width:56.640000pt;}
._38{width:57.573333pt;}
._33{width:58.848000pt;}
._32{width:60.096000pt;}
._2c{width:61.600000pt;}
._4{width:68.000000pt;}
._2f{width:69.168000pt;}
._37{width:83.376000pt;}
._5{width:180.000000pt;}
._2{width:922.026667pt;}
._d{width:1088.266667pt;}
._f{width:1479.573333pt;}
.fs7{font-size:37.120000pt;}
.fs0{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs8{font-size:64.000000pt;}
.fs2{font-size:69.120000pt;}
.fs5{font-size:74.880000pt;}
.fs6{font-size:80.000000pt;}
.fs4{font-size:112.000000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:2.560000pt;}
.y3e{bottom:2.720000pt;}
.y4{bottom:13.760000pt;}
.y3f{bottom:13.920000pt;}
.y2{bottom:16.640000pt;}
.y3d{bottom:16.800000pt;}
.y5{bottom:32.640000pt;}
.y40{bottom:35.360000pt;}
.y1{bottom:51.200000pt;}
.y3c{bottom:53.920000pt;}
.y12{bottom:63.226667pt;}
.y11{bottom:80.826667pt;}
.y10{bottom:98.586667pt;}
.y3b{bottom:99.360000pt;}
.yb5{bottom:104.000000pt;}
.y7b{bottom:104.960000pt;}
.y3a{bottom:115.520000pt;}
.yf{bottom:116.186667pt;}
.yb4{bottom:119.840000pt;}
.ye2{bottom:120.000000pt;}
.y7a{bottom:120.960000pt;}
.ye{bottom:133.786667pt;}
.yb3{bottom:135.680000pt;}
.y113{bottom:136.160000pt;}
.y79{bottom:136.800000pt;}
.ye1{bottom:143.840000pt;}
.yd{bottom:151.386667pt;}
.y112{bottom:152.160000pt;}
.y78{bottom:152.640000pt;}
.y39{bottom:156.640000pt;}
.y6{bottom:157.440000pt;}
.yb2{bottom:159.520000pt;}
.ye0{bottom:159.680000pt;}
.y111{bottom:168.000000pt;}
.y77{bottom:168.480000pt;}
.yc{bottom:168.986667pt;}
.yb1{bottom:175.360000pt;}
.ydf{bottom:175.520000pt;}
.y14{bottom:177.120000pt;}
.y76{bottom:184.346667pt;}
.yb{bottom:186.746667pt;}
.yb0{bottom:191.386667pt;}
.y110{bottom:191.866667pt;}
.y38{bottom:200.026667pt;}
.y75{bottom:200.186667pt;}
.y13{bottom:203.066667pt;}
.y156{bottom:203.226667pt;}
.ya{bottom:204.346667pt;}
.yaf{bottom:207.226667pt;}
.yde{bottom:207.386667pt;}
.y10f{bottom:207.706667pt;}
.y74{bottom:215.866667pt;}
.y9{bottom:221.946667pt;}
.ydd{bottom:223.226667pt;}
.y10e{bottom:223.546667pt;}
.yae{bottom:224.826667pt;}
.y73{bottom:233.786667pt;}
.ydc{bottom:239.066667pt;}
.y8{bottom:239.546667pt;}
.y37{bottom:243.386667pt;}
.y138{bottom:245.466667pt;}
.y10d{bottom:247.546667pt;}
.yad{bottom:253.946667pt;}
.ydb{bottom:254.906667pt;}
.y137{bottom:261.306667pt;}
.y72{bottom:262.906667pt;}
.y10c{bottom:263.386667pt;}
.y7{bottom:266.626667pt;}
.yac{bottom:269.786667pt;}
.y36{bottom:270.746667pt;}
.y136{bottom:277.146667pt;}
.y71{bottom:278.746667pt;}
.y10b{bottom:279.226667pt;}
.yab{bottom:285.786667pt;}
.yda{bottom:286.586667pt;}
.y35{bottom:294.106667pt;}
.y70{bottom:294.586667pt;}
.y155{bottom:299.706667pt;}
.y135{bottom:300.986667pt;}
.yd9{bottom:302.586667pt;}
.y10a{bottom:303.066667pt;}
.yaa{bottom:309.626667pt;}
.y6f{bottom:310.586667pt;}
.y134{bottom:316.986667pt;}
.y34{bottom:317.626667pt;}
.yd8{bottom:318.106667pt;}
.y109{bottom:318.906667pt;}
.y154{bottom:323.546667pt;}
.ya9{bottom:325.466667pt;}
.y6e{bottom:326.426667pt;}
.y108{bottom:334.746667pt;}
.y133{bottom:340.826667pt;}
.y33{bottom:340.986667pt;}
.ya8{bottom:341.306667pt;}
.y6d{bottom:342.266667pt;}
.y153{bottom:347.546667pt;}
.y132{bottom:356.666667pt;}
.ya7{bottom:357.146667pt;}
.y6c{bottom:358.106667pt;}
.y107{bottom:358.746667pt;}
.y32{bottom:364.346667pt;}
.y152{bottom:371.386667pt;}
.y131{bottom:372.506667pt;}
.ya6{bottom:372.986667pt;}
.y6b{bottom:373.946667pt;}
.y106{bottom:374.586667pt;}
.y31{bottom:387.706667pt;}
.y130{bottom:388.346667pt;}
.ya5{bottom:388.986667pt;}
.y6a{bottom:389.946667pt;}
.y105{bottom:390.426667pt;}
.y151{bottom:395.266667pt;}
.yd7{bottom:397.986667pt;}
.ya4{bottom:404.866667pt;}
.y69{bottom:405.826667pt;}
.y30{bottom:411.266667pt;}
.y12f{bottom:412.386667pt;}
.yd6{bottom:413.826667pt;}
.y104{bottom:414.306667pt;}
.y150{bottom:419.106667pt;}
.ya3{bottom:420.706667pt;}
.y68{bottom:421.666667pt;}
.y12e{bottom:428.226667pt;}
.yd5{bottom:429.666667pt;}
.y103{bottom:430.146667pt;}
.y2f{bottom:434.626667pt;}
.ya2{bottom:436.546667pt;}
.y67{bottom:437.506667pt;}
.y14f{bottom:442.946667pt;}
.y12d{bottom:452.066667pt;}
.ya1{bottom:452.386667pt;}
.y66{bottom:453.346667pt;}
.yd4{bottom:453.506667pt;}
.y102{bottom:454.146667pt;}
.y2e{bottom:457.986667pt;}
.y14e{bottom:466.786667pt;}
.y12c{bottom:467.906667pt;}
.ya0{bottom:468.386667pt;}
.y65{bottom:469.186667pt;}
.yd3{bottom:469.346667pt;}
.y101{bottom:469.986667pt;}
.y2d{bottom:481.346667pt;}
.y9f{bottom:484.226667pt;}
.y64{bottom:485.186667pt;}
.y100{bottom:485.826667pt;}
.y14d{bottom:490.786667pt;}
.y12b{bottom:491.746667pt;}
.y9e{bottom:500.066667pt;}
.y63{bottom:501.026667pt;}
.yd2{bottom:501.186667pt;}
.y2c{bottom:504.706667pt;}
.y12a{bottom:507.586667pt;}
.yff{bottom:509.666667pt;}
.y14c{bottom:514.626667pt;}
.y9d{bottom:515.906667pt;}
.y62{bottom:516.866667pt;}
.yd1{bottom:517.026667pt;}
.y129{bottom:523.586667pt;}
.yfe{bottom:525.506667pt;}
.y9c{bottom:531.746667pt;}
.y2b{bottom:532.226667pt;}
.y61{bottom:532.706667pt;}
.yd0{bottom:532.866667pt;}
.y14b{bottom:538.466667pt;}
.yfd{bottom:541.346667pt;}
.y128{bottom:547.426667pt;}
.y9b{bottom:547.586667pt;}
.y60{bottom:548.546667pt;}
.ycf{bottom:548.706667pt;}
.y2a{bottom:551.586667pt;}
.yfc{bottom:559.106667pt;}
.y14a{bottom:562.306667pt;}
.y127{bottom:563.266667pt;}
.y9a{bottom:563.586667pt;}
.yce{bottom:564.226667pt;}
.y5f{bottom:564.546667pt;}
.y126{bottom:579.106667pt;}
.ycd{bottom:580.226667pt;}
.y5e{bottom:580.386667pt;}
.y29{bottom:581.666667pt;}
.y149{bottom:586.146667pt;}
.y99{bottom:587.106667pt;}
.yfb{bottom:588.226667pt;}
.y125{bottom:594.946667pt;}
.ycc{bottom:598.146667pt;}
.y98{bottom:602.973333pt;}
.yfa{bottom:604.093333pt;}
.y5d{bottom:604.253333pt;}
.y28{bottom:605.053333pt;}
.y148{bottom:610.173333pt;}
.y124{bottom:610.813333pt;}
.ycb{bottom:618.973333pt;}
.yf9{bottom:619.933333pt;}
.y5c{bottom:620.093333pt;}
.y27{bottom:621.853333pt;}
.y97{bottom:627.133333pt;}
.y147{bottom:634.013333pt;}
.y123{bottom:634.813333pt;}
.yca{bottom:635.133333pt;}
.yf8{bottom:635.773333pt;}
.y5b{bottom:635.933333pt;}
.y26{bottom:640.893333pt;}
.y96{bottom:642.973333pt;}
.y122{bottom:650.653333pt;}
.yc9{bottom:650.973333pt;}
.y5a{bottom:651.773333pt;}
.y146{bottom:657.853333pt;}
.y95{bottom:658.813333pt;}
.yc8{bottom:666.813333pt;}
.yf7{bottom:667.613333pt;}
.y59{bottom:667.773333pt;}
.y121{bottom:674.493333pt;}
.y94{bottom:674.813333pt;}
.y145{bottom:681.693333pt;}
.yc7{bottom:682.813333pt;}
.yf6{bottom:683.453333pt;}
.y58{bottom:683.613333pt;}
.y25{bottom:685.853333pt;}
.y120{bottom:690.333333pt;}
.y93{bottom:690.653333pt;}
.yc6{bottom:698.653333pt;}
.yf5{bottom:699.293333pt;}
.y57{bottom:699.453333pt;}
.y144{bottom:705.533333pt;}
.y11f{bottom:706.173333pt;}
.y92{bottom:706.493333pt;}
.y24{bottom:710.493333pt;}
.yc5{bottom:714.493333pt;}
.y56{bottom:715.293333pt;}
.y11e{bottom:722.173333pt;}
.y91{bottom:722.333333pt;}
.yf4{bottom:723.133333pt;}
.y143{bottom:729.373333pt;}
.yc4{bottom:730.333333pt;}
.y55{bottom:731.133333pt;}
.y90{bottom:738.173333pt;}
.yf3{bottom:738.973333pt;}
.y11d{bottom:746.013333pt;}
.yc3{bottom:746.173333pt;}
.y54{bottom:746.973333pt;}
.y23{bottom:751.613333pt;}
.y142{bottom:753.373333pt;}
.y8f{bottom:754.173333pt;}
.yf2{bottom:754.973333pt;}
.y11c{bottom:761.853333pt;}
.yc2{bottom:762.173333pt;}
.y53{bottom:762.973333pt;}
.y8e{bottom:770.013333pt;}
.yf1{bottom:770.813333pt;}
.y22{bottom:774.013333pt;}
.y141{bottom:777.213333pt;}
.y11b{bottom:777.693333pt;}
.yc1{bottom:778.013333pt;}
.y52{bottom:778.813333pt;}
.y8d{bottom:785.853333pt;}
.yf0{bottom:786.653333pt;}
.y21{bottom:791.613333pt;}
.yc0{bottom:793.853333pt;}
.y51{bottom:794.653333pt;}
.y140{bottom:801.053333pt;}
.y11a{bottom:801.533333pt;}
.y8c{bottom:801.693333pt;}
.yef{bottom:802.493333pt;}
.ybf{bottom:809.733333pt;}
.y20{bottom:809.893333pt;}
.y50{bottom:810.533333pt;}
.y119{bottom:817.413333pt;}
.y8b{bottom:817.573333pt;}
.yee{bottom:818.373333pt;}
.y13f{bottom:824.933333pt;}
.ybe{bottom:825.573333pt;}
.y4f{bottom:826.373333pt;}
.y1f{bottom:828.293333pt;}
.y8a{bottom:833.413333pt;}
.yed{bottom:834.373333pt;}
.ybd{bottom:841.413333pt;}
.y1e{bottom:846.373333pt;}
.y13e{bottom:848.773333pt;}
.y118{bottom:849.253333pt;}
.y89{bottom:849.413333pt;}
.yec{bottom:850.213333pt;}
.y4e{bottom:850.373333pt;}
.ybc{bottom:857.413333pt;}
.y117{bottom:865.093333pt;}
.y88{bottom:865.253333pt;}
.yeb{bottom:866.053333pt;}
.y4d{bottom:866.213333pt;}
.y13d{bottom:872.773333pt;}
.ybb{bottom:873.253333pt;}
.y87{bottom:881.093333pt;}
.yea{bottom:881.893333pt;}
.y4c{bottom:882.053333pt;}
.y1d{bottom:883.493333pt;}
.y116{bottom:888.933333pt;}
.yba{bottom:889.093333pt;}
.y1c{bottom:895.813333pt;}
.y13c{bottom:896.613333pt;}
.y86{bottom:896.933333pt;}
.y4b{bottom:897.893333pt;}
.ye9{bottom:899.493333pt;}
.y115{bottom:904.773333pt;}
.yb9{bottom:904.933333pt;}
.y1b{bottom:908.133333pt;}
.y85{bottom:912.773333pt;}
.y4a{bottom:913.733333pt;}
.y1a{bottom:920.453333pt;}
.yb8{bottom:920.773333pt;}
.y84{bottom:928.453333pt;}
.ye8{bottom:928.773333pt;}
.y49{bottom:929.573333pt;}
.y114{bottom:936.613333pt;}
.yb7{bottom:936.773333pt;}
.y19{bottom:936.933333pt;}
.y83{bottom:944.293333pt;}
.ye7{bottom:944.613333pt;}
.y48{bottom:945.573333pt;}
.yb6{bottom:952.613333pt;}
.ye6{bottom:960.453333pt;}
.y47{bottom:961.413333pt;}
.y18{bottom:962.853333pt;}
.y13b{bottom:968.133333pt;}
.y82{bottom:968.453333pt;}
.ye5{bottom:976.293333pt;}
.y46{bottom:977.253333pt;}
.y81{bottom:984.293333pt;}
.y17{bottom:987.493333pt;}
.y13a{bottom:991.973333pt;}
.ye4{bottom:992.133333pt;}
.y45{bottom:993.093333pt;}
.y80{bottom:1000.133333pt;}
.ye3{bottom:1007.973333pt;}
.y44{bottom:1008.933333pt;}
.y16{bottom:1012.293333pt;}
.y7f{bottom:1015.973333pt;}
.y43{bottom:1024.960000pt;}
.y7e{bottom:1032.000000pt;}
.y139{bottom:1039.840000pt;}
.y15{bottom:1040.480000pt;}
.y42{bottom:1040.800000pt;}
.y7d{bottom:1047.840000pt;}
.y41{bottom:1058.400000pt;}
.y7c{bottom:1063.680000pt;}
.h2{height:27.516000pt;}
.h14{height:27.676000pt;}
.hd{height:36.431250pt;}
.h8{height:40.410625pt;}
.h16{height:43.031250pt;}
.h3{height:47.109375pt;}
.h13{height:48.375000pt;}
.h18{height:49.336436pt;}
.h17{height:49.968750pt;}
.h7{height:52.108438pt;}
.he{height:52.134375pt;}
.h9{height:53.535000pt;}
.hf{height:57.787500pt;}
.h4{height:58.563750pt;}
.h12{height:59.340000pt;}
.h11{height:64.290000pt;}
.h6{height:69.660000pt;}
.h15{height:71.955000pt;}
.h10{height:73.490625pt;}
.hb{height:75.465000pt;}
.hc{height:80.625000pt;}
.ha{height:112.875000pt;}
.h5{height:293.440000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:71.386667pt;}
.w2{width:641.880000pt;}
.w4{width:723.200000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:7.676000pt;}
.x7{left:9.600000pt;}
.x6{left:34.880000pt;}
.x1{left:40.324000pt;}
.x8{left:44.480000pt;}
.x5{left:48.000000pt;}
.x15{left:72.000000pt;}
.xf{left:73.760000pt;}
.x18{left:96.032000pt;}
.x12{left:129.792000pt;}
.x2{left:197.662667pt;}
.x11{left:223.546667pt;}
.xa{left:240.546667pt;}
.xc{left:242.306667pt;}
.xd{left:255.746667pt;}
.x13{left:288.066667pt;}
.x10{left:304.386667pt;}
.xb{left:323.906667pt;}
.xe{left:336.706667pt;}
.x9{left:396.893333pt;}
.x16{left:420.893333pt;}
.x14{left:444.893333pt;}
.x17{left:468.893333pt;}
.x4{left:682.213333pt;}
}




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