
    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_099dc51a046a5acb3ba307e4.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_1c8fb80eb4d0879c0d1e115e.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_5ae45686d04301ec3d11e522.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_21479061199a3a012287add2.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_a0b648f17067bfd81c09db48.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_cb0ac5b349a65778c765231b.woff2')format("woff");}.ff6{font-family:ff6;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;}
@font-face{font-family:ff7;src:url('chunks/assets/font_2e0c34268ef8fa73beb02627.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.938965;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;}
.m1{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,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);}
.m2{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);}
.v5{vertical-align:-69.120000px;}
.v4{vertical-align:-62.760006px;}
.v3{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:20.880000px;}
.v1{vertical-align:27.360000px;}
.v2{vertical-align:30.240000px;}
.ls1a{letter-spacing:-1.080000px;}
.lsf{letter-spacing:-0.540000px;}
.ls24{letter-spacing:-0.486600px;}
.lsd{letter-spacing:-0.360000px;}
.ls21{letter-spacing:-0.269400px;}
.lsc{letter-spacing:-0.226200px;}
.ls18{letter-spacing:-0.223800px;}
.ls10{letter-spacing:-0.216000px;}
.ls1f{letter-spacing:-0.206400px;}
.ls1b{letter-spacing:-0.126000px;}
.ls1d{letter-spacing:-0.053280px;}
.lsb{letter-spacing:0.000000px;}
.ls25{letter-spacing:0.010080px;}
.ls2{letter-spacing:0.012960px;}
.ls13{letter-spacing:0.106800px;}
.lsa{letter-spacing:0.108000px;}
.ls4{letter-spacing:0.180000px;}
.ls12{letter-spacing:0.181200px;}
.ls15{letter-spacing:0.259800px;}
.ls11{letter-spacing:0.298800px;}
.ls3{letter-spacing:0.315360px;}
.ls0{letter-spacing:0.360000px;}
.ls1c{letter-spacing:0.666000px;}
.ls23{letter-spacing:0.732000px;}
.lse{letter-spacing:0.900000px;}
.ls14{letter-spacing:0.924000px;}
.ls19{letter-spacing:1.080000px;}
.ls1e{letter-spacing:3.240000px;}
.ls16{letter-spacing:5.940000px;}
.ls1{letter-spacing:6.840000px;}
.ls17{letter-spacing:16.020000px;}
.ls22{letter-spacing:18.900000px;}
.ls6{letter-spacing:24.840000px;}
.ls9{letter-spacing:66.240000px;}
.ls8{letter-spacing:66.960000px;}
.ls5{letter-spacing:67.680000px;}
.ls7{letter-spacing:68.400000px;}
.ls20{letter-spacing:120.420000px;}
.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:-18.000000px;}
.ws13{word-spacing:-17.784000px;}
.ws14{word-spacing:-16.020000px;}
.ws10{word-spacing:-15.864000px;}
.ws17{word-spacing:-15.606000px;}
.ws12{word-spacing:-15.300000px;}
.wsf{word-spacing:-15.238800px;}
.wse{word-spacing:-15.046800px;}
.ws5{word-spacing:-14.940000px;}
.ws18{word-spacing:-14.886720px;}
.ws19{word-spacing:-14.733600px;}
.ws15{word-spacing:-14.580000px;}
.ws0{word-spacing:-13.860000px;}
.wsa{word-spacing:-13.500000px;}
.ws9{word-spacing:-13.284000px;}
.ws16{word-spacing:-13.140000px;}
.ws3{word-spacing:-12.420000px;}
.wsc{word-spacing:-12.241200px;}
.wsd{word-spacing:-12.240000px;}
.ws1a{word-spacing:-12.060000px;}
.ws11{word-spacing:-11.836200px;}
.ws1b{word-spacing:-11.790600px;}
.ws6{word-spacing:-11.700000px;}
.ws2{word-spacing:-10.440000px;}
.ws1{word-spacing:-10.213800px;}
.ws1c{word-spacing:-8.292000px;}
.ws1e{word-spacing:-7.570080px;}
.ws8{word-spacing:-7.560000px;}
.ws1d{word-spacing:-7.073400px;}
.wsb{word-spacing:0.000000px;}
.ws7{word-spacing:53.100000px;}
._19{margin-left:-2.106000px;}
._4{margin-left:-1.080000px;}
._1{width:1.085760px;}
._3{width:2.518080px;}
._c{width:3.942000px;}
._d{width:5.448240px;}
._0{width:6.472800px;}
._2{width:7.593600px;}
._e{width:9.126000px;}
._f{width:10.152000px;}
._12{width:11.473920px;}
._13{width:12.746880px;}
._14{width:13.804560px;}
._b{width:15.498000px;}
._a{width:17.091360px;}
._9{width:18.286560px;}
._6{width:19.656000px;}
._17{width:20.788800px;}
._18{width:21.842160px;}
._8{width:23.714640px;}
._7{width:25.278480px;}
._15{width:27.495840px;}
._16{width:28.850640px;}
._1d{width:42.402960px;}
._1c{width:44.305200px;}
._1e{width:45.828000px;}
._1f{width:46.940880px;}
._1b{width:72.535680px;}
._1a{width:73.681200px;}
._10{width:118.379997px;}
._11{width:1834.296000px;}
._5{width:2055.546720px;}
.fc8{color:transparent;}
.fc7{color:rgb(0,0,255);}
.fc4{color:rgb(255,0,0);}
.fcb{color:rgb(34,34,34);}
.fca{color:rgb(33,33,33);}
.fc9{color:rgb(31,31,31);}
.fc6{color:rgb(166,166,166);}
.fc5{color:rgb(128,128,128);}
.fc3{color:rgb(13,13,13);}
.fc2{color:rgb(26,26,26);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:5.760000px;}
.fsa{font-size:12.240000px;}
.fsb{font-size:18.000000px;}
.fs9{font-size:30.240000px;}
.fs7{font-size:36.000000px;}
.fs5{font-size:38.880000px;}
.fs1{font-size:41.760000px;}
.fs2{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fsc{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fsd{font-size:84.240000px;}
.fse{font-size:95.760000px;}
.fs8{font-size:126.000000px;}
.y0{bottom:0.000000px;}
.y45{bottom:4.320000px;}
.yaa{bottom:5.220000px;}
.y2f{bottom:5.580000px;}
.ycf{bottom:6.480000px;}
.yae{bottom:7.740000px;}
.yb6{bottom:8.085000px;}
.yb3{bottom:8.265000px;}
.yb0{bottom:8.445000px;}
.yb1{bottom:8.805000px;}
.ybc{bottom:9.525000px;}
.ycd{bottom:12.600000px;}
.ycb{bottom:12.780000px;}
.yac{bottom:13.680000px;}
.y3{bottom:18.000000px;}
.y44{bottom:18.180000px;}
.y48{bottom:18.900000px;}
.y2e{bottom:19.440000px;}
.y83{bottom:19.980000px;}
.ya9{bottom:23.040000px;}
.y2d{bottom:29.340000px;}
.y2{bottom:30.060000px;}
.y82{bottom:39.960000px;}
.ya8{bottom:40.860000px;}
.y1{bottom:43.020000px;}
.y2c{bottom:47.160000px;}
.y2b{bottom:64.980000px;}
.yd0{bottom:79.920000px;}
.y7f{bottom:80.100000px;}
.y42{bottom:81.360000px;}
.yc2{bottom:81.720000px;}
.y2a{bottom:82.980000px;}
.yce{bottom:83.340000px;}
.y147{bottom:95.220000px;}
.y7e{bottom:99.900000px;}
.y29{bottom:100.800000px;}
.y41{bottom:101.340000px;}
.yc1{bottom:101.520000px;}
.ycc{bottom:102.780000px;}
.y109{bottom:105.120000px;}
.y146{bottom:109.080000px;}
.y28{bottom:118.620000px;}
.y108{bottom:118.980000px;}
.y7d{bottom:119.700000px;}
.y40{bottom:121.140000px;}
.yc0{bottom:121.320000px;}
.y145{bottom:122.760000px;}
.y107{bottom:132.840000px;}
.yca{bottom:135.360000px;}
.y27{bottom:136.440000px;}
.y144{bottom:136.620000px;}
.y7c{bottom:139.500000px;}
.y3f{bottom:140.940000px;}
.ybf{bottom:141.120000px;}
.y143{bottom:150.510000px;}
.y106{bottom:152.670000px;}
.y26{bottom:154.260000px;}
.ybe{bottom:158.610000px;}
.y7b{bottom:159.330000px;}
.y3e{bottom:160.770000px;}
.y142{bottom:164.190000px;}
.y105{bottom:166.350000px;}
.ybd{bottom:171.570000px;}
.y25{bottom:172.080000px;}
.yc9{bottom:175.350000px;}
.y141{bottom:178.050000px;}
.y7a{bottom:179.310000px;}
.y3d{bottom:180.570000px;}
.ybb{bottom:183.465000px;}
.y104{bottom:186.150000px;}
.y24{bottom:190.080000px;}
.y140{bottom:191.910000px;}
.yc8{bottom:196.410000px;}
.y79{bottom:199.110000px;}
.y103{bottom:200.010000px;}
.y3c{bottom:200.550000px;}
.y31{bottom:201.600000px;}
.y13f{bottom:205.590000px;}
.y23{bottom:207.900000px;}
.yba{bottom:209.385000px;}
.y78{bottom:218.910000px;}
.y102{bottom:219.810000px;}
.y3b{bottom:220.350000px;}
.y13e{bottom:225.390000px;}
.y22{bottom:225.720000px;}
.yb9{bottom:232.245000px;}
.y101{bottom:233.670000px;}
.y77{bottom:238.710000px;}
.y3a{bottom:240.150000px;}
.y21{bottom:243.570000px;}
.y13d{bottom:245.550000px;}
.y100{bottom:253.470000px;}
.yb8{bottom:256.725000px;}
.y76{bottom:258.510000px;}
.y39{bottom:259.950000px;}
.y20{bottom:261.390000px;}
.y13c{bottom:266.970000px;}
.yff{bottom:267.150000px;}
.y75{bottom:278.490000px;}
.y1f{bottom:279.390000px;}
.yb7{bottom:279.585000px;}
.y38{bottom:279.750000px;}
.yfe{bottom:286.950000px;}
.y13b{bottom:288.570000px;}
.y1e{bottom:297.210000px;}
.y74{bottom:298.290000px;}
.yfd{bottom:300.810000px;}
.y37{bottom:300.990000px;}
.yb5{bottom:304.065000px;}
.y13a{bottom:310.170000px;}
.yfc{bottom:314.670000px;}
.y1d{bottom:315.030000px;}
.y73{bottom:318.090000px;}
.y36{bottom:323.490000px;}
.yb4{bottom:326.925000px;}
.y139{bottom:331.590000px;}
.y1c{bottom:332.850000px;}
.yfb{bottom:334.470000px;}
.y72{bottom:337.890000px;}
.y35{bottom:343.290000px;}
.yfa{bottom:348.150000px;}
.y1b{bottom:350.670000px;}
.yb2{bottom:351.225000px;}
.y138{bottom:353.190000px;}
.y71{bottom:357.690000px;}
.y34{bottom:363.090000px;}
.yf9{bottom:367.950000px;}
.y1a{bottom:368.490000px;}
.yaf{bottom:374.265000px;}
.y137{bottom:374.610000px;}
.y70{bottom:377.670000px;}
.yf8{bottom:381.810000px;}
.y33{bottom:382.530000px;}
.y19{bottom:390.630000px;}
.yf7{bottom:395.670000px;}
.y136{bottom:396.210000px;}
.y6f{bottom:397.470000px;}
.yad{bottom:398.595000px;}
.y32{bottom:402.915000px;}
.y30{bottom:403.230000px;}
.yf6{bottom:415.515000px;}
.y18{bottom:416.595000px;}
.y6e{bottom:417.315000px;}
.y135{bottom:417.855000px;}
.ya7{bottom:421.455000px;}
.yf5{bottom:429.195000px;}
.y6d{bottom:437.115000px;}
.y134{bottom:439.275000px;}
.yf4{bottom:448.995000px;}
.y6c{bottom:456.915000px;}
.yab{bottom:457.095000px;}
.y133{bottom:457.635000px;}
.yf3{bottom:462.855000px;}
.yf2{bottom:476.715000px;}
.y6b{bottom:476.895000px;}
.y132{bottom:480.315000px;}
.ya6{bottom:481.935000px;}
.yf1{bottom:493.635000px;}
.y131{bottom:494.175000px;}
.y6a{bottom:496.695000px;}
.ya5{bottom:501.735000px;}
.yf0{bottom:513.075000px;}
.y130{bottom:513.975000px;}
.y69{bottom:516.495000px;}
.ya4{bottom:521.535000px;}
.y12f{bottom:527.835000px;}
.y68{bottom:536.295000px;}
.yef{bottom:536.475000px;}
.ya3{bottom:541.335000px;}
.y12e{bottom:541.515000px;}
.y67{bottom:556.095000px;}
.ya2{bottom:561.135000px;}
.y12d{bottom:561.315000px;}
.yee{bottom:562.575000px;}
.y12c{bottom:575.175000px;}
.y66{bottom:576.075000px;}
.yed{bottom:579.495000px;}
.ya1{bottom:581.115000px;}
.y12b{bottom:589.035000px;}
.y65{bottom:595.875000px;}
.yec{bottom:597.135000px;}
.ya0{bottom:600.915000px;}
.y12a{bottom:608.835000px;}
.yeb{bottom:614.415000px;}
.y64{bottom:615.675000px;}
.y9f{bottom:620.715000px;}
.y129{bottom:628.635000px;}
.yea{bottom:631.155000px;}
.y63{bottom:635.475000px;}
.y9e{bottom:640.515000px;}
.y128{bottom:642.315000px;}
.ye9{bottom:648.825000px;}
.y62{bottom:655.305000px;}
.y127{bottom:656.205000px;}
.y9d{bottom:660.345000px;}
.ye8{bottom:666.105000px;}
.y61{bottom:675.285000px;}
.y126{bottom:676.005000px;}
.y9c{bottom:680.325000px;}
.ye7{bottom:683.025000px;}
.y125{bottom:689.865000px;}
.y60{bottom:695.085000px;}
.y9b{bottom:700.125000px;}
.ye6{bottom:700.305000px;}
.y124{bottom:709.665000px;}
.y5f{bottom:714.885000px;}
.ye5{bottom:717.765000px;}
.y9a{bottom:719.925000px;}
.y123{bottom:723.345000px;}
.y5e{bottom:734.685000px;}
.ye4{bottom:735.045000px;}
.y99{bottom:739.725000px;}
.y122{bottom:743.145000px;}
.ye3{bottom:752.325000px;}
.y5d{bottom:754.125000px;}
.yc7{bottom:754.485000px;}
.y121{bottom:757.005000px;}
.y98{bottom:759.525000px;}
.ye2{bottom:769.605000px;}
.y5c{bottom:774.105000px;}
.yc6{bottom:774.465000px;}
.y120{bottom:776.805000px;}
.y97{bottom:779.505000px;}
.ye1{bottom:786.885000px;}
.y11f{bottom:790.485000px;}
.y5b{bottom:794.265000px;}
.y96{bottom:799.305000px;}
.ye0{bottom:804.165000px;}
.y11e{bottom:810.285000px;}
.y5a{bottom:814.065000px;}
.y95{bottom:819.105000px;}
.ydf{bottom:820.905000px;}
.y11d{bottom:824.145000px;}
.y17{bottom:825.585000px;}
.y59{bottom:833.505000px;}
.yc5{bottom:833.865000px;}
.yde{bottom:838.185000px;}
.y94{bottom:838.545000px;}
.y11c{bottom:843.945000px;}
.y16{bottom:844.485000px;}
.y58{bottom:853.305000px;}
.yc4{bottom:853.665000px;}
.ydd{bottom:855.825000px;}
.y15{bottom:856.725000px;}
.y11b{bottom:857.805000px;}
.y93{bottom:858.345000px;}
.y14{bottom:864.285000px;}
.ydc{bottom:872.745000px;}
.y57{bottom:873.285000px;}
.yc3{bottom:873.645000px;}
.y11a{bottom:877.605000px;}
.y92{bottom:878.685000px;}
.y13{bottom:885.345000px;}
.ydb{bottom:890.025000px;}
.y119{bottom:891.285000px;}
.y56{bottom:893.445000px;}
.y12{bottom:895.965000px;}
.y91{bottom:898.530000px;}
.yda{bottom:907.710000px;}
.y118{bottom:911.130000px;}
.y55{bottom:913.290000px;}
.y11{bottom:917.250000px;}
.y90{bottom:918.330000px;}
.yd9{bottom:924.810000px;}
.y117{bottom:924.990000px;}
.y10{bottom:927.150000px;}
.y54{bottom:933.090000px;}
.y8f{bottom:938.130000px;}
.yf{bottom:940.290000px;}
.yd8{bottom:942.090000px;}
.y116{bottom:944.790000px;}
.y53{bottom:952.890000px;}
.y8e{bottom:957.930000px;}
.ye{bottom:960.270000px;}
.y115{bottom:964.590000px;}
.y52{bottom:972.870000px;}
.yd7{bottom:976.290000px;}
.y8d{bottom:977.550000px;}
.y114{bottom:978.450000px;}
.yd{bottom:980.430000px;}
.y51{bottom:992.670000px;}
.yd6{bottom:993.570000px;}
.y8c{bottom:997.350000px;}
.y113{bottom:998.250000px;}
.yc{bottom:1000.590000px;}
.y112{bottom:1011.930000px;}
.y50{bottom:1012.470000px;}
.yd5{bottom:1016.070000px;}
.y8b{bottom:1017.510000px;}
.y111{bottom:1025.790000px;}
.yb{bottom:1026.690000px;}
.y4f{bottom:1032.270000px;}
.y8a{bottom:1037.310000px;}
.yd4{bottom:1041.270000px;}
.y110{bottom:1045.590000px;}
.y4e{bottom:1052.070000px;}
.y89{bottom:1057.110000px;}
.y10f{bottom:1059.450000px;}
.yd3{bottom:1061.070000px;}
.ya{bottom:1068.450000px;}
.y4d{bottom:1072.050000px;}
.y88{bottom:1078.350000px;}
.y10e{bottom:1079.250000px;}
.yd2{bottom:1081.050000px;}
.y4c{bottom:1091.850000px;}
.y10d{bottom:1092.930000px;}
.y87{bottom:1100.850000px;}
.y9{bottom:1101.210000px;}
.y10c{bottom:1106.790000px;}
.y4b{bottom:1111.650000px;}
.y43{bottom:1112.730000px;}
.y8{bottom:1117.950000px;}
.y86{bottom:1120.650000px;}
.y10b{bottom:1126.590000px;}
.y4a{bottom:1131.450000px;}
.yd1{bottom:1140.090000px;}
.y85{bottom:1140.450000px;}
.y49{bottom:1151.280000px;}
.y10a{bottom:1154.160000px;}
.y7{bottom:1155.960000px;}
.y84{bottom:1159.920000px;}
.y6{bottom:1167.480000px;}
.y47{bottom:1169.460000px;}
.y5{bottom:1175.940000px;}
.y81{bottom:1178.460000px;}
.y46{bottom:1188.720000px;}
.y4{bottom:1197.540000px;}
.y80{bottom:1197.720000px;}
.h6{height:5.650313px;}
.hf{height:12.012891px;}
.h26{height:12.335625px;}
.h19{height:17.805000px;}
.h11{height:18.140625px;}
.h25{height:19.438500px;}
.h1b{height:21.945000px;}
.h1f{height:22.845000px;}
.h1d{height:23.025000px;}
.h1e{height:24.285000px;}
.h1c{height:24.321000px;}
.h20{height:24.465000px;}
.h21{height:25.905000px;}
.h16{height:27.705000px;}
.hd{height:29.664141px;}
.h24{height:31.858500px;}
.h23{height:32.976000px;}
.h1a{height:34.905000px;}
.h22{height:35.332031px;}
.h3{height:40.985156px;}
.hc{height:42.086250px;}
.h17{height:42.922699px;}
.he{height:47.321367px;}
.h7{height:47.344922px;}
.h4{height:48.616875px;}
.h29{height:50.558906px;}
.h2a{height:50.678906px;}
.h2{height:52.998047px;}
.h18{height:53.445000px;}
.h8{height:54.421875px;}
.h13{height:55.503472px;}
.h14{height:58.651172px;}
.h9{height:60.226875px;}
.hb{height:66.543750px;}
.h12{height:66.757500px;}
.h15{height:70.664062px;}
.h5{height:72.562500px;}
.h27{height:82.676953px;}
.h28{height:96.508125px;}
.ha{height:126.984375px;}
.h10{height:403.230000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w3{width:101.730000px;}
.w9{width:123.465000px;}
.wc{width:123.825000px;}
.wb{width:129.270000px;}
.w8{width:135.216000px;}
.wa{width:139.161000px;}
.wd{width:139.521000px;}
.wf{width:148.176000px;}
.we{width:183.259500px;}
.w11{width:183.270000px;}
.w5{width:203.059500px;}
.w10{width:223.035000px;}
.w4{width:232.050000px;}
.w6{width:258.690000px;}
.w7{width:268.440000px;}
.w2{width:640.890000px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.xb{left:-36.900000px;}
.xa{left:-19.800000px;}
.x0{left:0.000000px;}
.x14{left:8.089500px;}
.x18{left:9.180000px;}
.x9{left:10.650000px;}
.x27{left:11.865000px;}
.x29{left:14.580000px;}
.x1a{left:20.505000px;}
.x1c{left:23.220000px;}
.x8{left:26.850000px;}
.x24{left:28.800000px;}
.x20{left:31.305000px;}
.x1e{left:32.925000px;}
.x1d{left:35.100000px;}
.x21{left:37.260000px;}
.x1f{left:39.270000px;}
.x22{left:40.710000px;}
.x7{left:42.510000px;}
.x23{left:43.950000px;}
.x6{left:58.710000px;}
.x2a{left:67.320000px;}
.x5{left:78.150000px;}
.x2d{left:79.740000px;}
.x2{left:81.036000px;}
.x17{left:88.590000px;}
.x2c{left:101.325000px;}
.x2b{left:102.945000px;}
.xe{left:108.036000px;}
.x11{left:113.076000px;}
.x12{left:114.876000px;}
.x13{left:134.136000px;}
.x2e{left:158.250000px;}
.x25{left:262.155000px;}
.x15{left:284.115000px;}
.xf{left:359.715000px;}
.xd{left:384.375000px;}
.x26{left:410.340000px;}
.x19{left:419.340000px;}
.x10{left:434.265000px;}
.x1{left:435.345000px;}
.x3{left:445.605000px;}
.x16{left:543.720000px;}
.xc{left:590.370000px;}
.x28{left:633.390000px;}
.x1b{left:682.890000px;}
.x4{left:721.950000px;}
@media print{
.v5{vertical-align:-61.440000pt;}
.v4{vertical-align:-55.786672pt;}
.v3{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:18.560000pt;}
.v1{vertical-align:24.320000pt;}
.v2{vertical-align:26.880000pt;}
.ls1a{letter-spacing:-0.960000pt;}
.lsf{letter-spacing:-0.480000pt;}
.ls24{letter-spacing:-0.432533pt;}
.lsd{letter-spacing:-0.320000pt;}
.ls21{letter-spacing:-0.239467pt;}
.lsc{letter-spacing:-0.201067pt;}
.ls18{letter-spacing:-0.198933pt;}
.ls10{letter-spacing:-0.192000pt;}
.ls1f{letter-spacing:-0.183467pt;}
.ls1b{letter-spacing:-0.112000pt;}
.ls1d{letter-spacing:-0.047360pt;}
.lsb{letter-spacing:0.000000pt;}
.ls25{letter-spacing:0.008960pt;}
.ls2{letter-spacing:0.011520pt;}
.ls13{letter-spacing:0.094933pt;}
.lsa{letter-spacing:0.096000pt;}
.ls4{letter-spacing:0.160000pt;}
.ls12{letter-spacing:0.161067pt;}
.ls15{letter-spacing:0.230933pt;}
.ls11{letter-spacing:0.265600pt;}
.ls3{letter-spacing:0.280320pt;}
.ls0{letter-spacing:0.320000pt;}
.ls1c{letter-spacing:0.592000pt;}
.ls23{letter-spacing:0.650667pt;}
.lse{letter-spacing:0.800000pt;}
.ls14{letter-spacing:0.821333pt;}
.ls19{letter-spacing:0.960000pt;}
.ls1e{letter-spacing:2.880000pt;}
.ls16{letter-spacing:5.280000pt;}
.ls1{letter-spacing:6.080000pt;}
.ls17{letter-spacing:14.240000pt;}
.ls22{letter-spacing:16.800000pt;}
.ls6{letter-spacing:22.080000pt;}
.ls9{letter-spacing:58.880000pt;}
.ls8{letter-spacing:59.520000pt;}
.ls5{letter-spacing:60.160000pt;}
.ls7{letter-spacing:60.800000pt;}
.ls20{letter-spacing:107.040000pt;}
.ws4{word-spacing:-16.000000pt;}
.ws13{word-spacing:-15.808000pt;}
.ws14{word-spacing:-14.240000pt;}
.ws10{word-spacing:-14.101333pt;}
.ws17{word-spacing:-13.872000pt;}
.ws12{word-spacing:-13.600000pt;}
.wsf{word-spacing:-13.545600pt;}
.wse{word-spacing:-13.374933pt;}
.ws5{word-spacing:-13.280000pt;}
.ws18{word-spacing:-13.232640pt;}
.ws19{word-spacing:-13.096533pt;}
.ws15{word-spacing:-12.960000pt;}
.ws0{word-spacing:-12.320000pt;}
.wsa{word-spacing:-12.000000pt;}
.ws9{word-spacing:-11.808000pt;}
.ws16{word-spacing:-11.680000pt;}
.ws3{word-spacing:-11.040000pt;}
.wsc{word-spacing:-10.881067pt;}
.wsd{word-spacing:-10.880000pt;}
.ws1a{word-spacing:-10.720000pt;}
.ws11{word-spacing:-10.521067pt;}
.ws1b{word-spacing:-10.480533pt;}
.ws6{word-spacing:-10.400000pt;}
.ws2{word-spacing:-9.280000pt;}
.ws1{word-spacing:-9.078933pt;}
.ws1c{word-spacing:-7.370667pt;}
.ws1e{word-spacing:-6.728960pt;}
.ws8{word-spacing:-6.720000pt;}
.ws1d{word-spacing:-6.287467pt;}
.wsb{word-spacing:0.000000pt;}
.ws7{word-spacing:47.200000pt;}
._19{margin-left:-1.872000pt;}
._4{margin-left:-0.960000pt;}
._1{width:0.965120pt;}
._3{width:2.238293pt;}
._c{width:3.504000pt;}
._d{width:4.842880pt;}
._0{width:5.753600pt;}
._2{width:6.749867pt;}
._e{width:8.112000pt;}
._f{width:9.024000pt;}
._12{width:10.199040pt;}
._13{width:11.330560pt;}
._14{width:12.270720pt;}
._b{width:13.776000pt;}
._a{width:15.192320pt;}
._9{width:16.254720pt;}
._6{width:17.472000pt;}
._17{width:18.478933pt;}
._18{width:19.415253pt;}
._8{width:21.079680pt;}
._7{width:22.469760pt;}
._15{width:24.440747pt;}
._16{width:25.645013pt;}
._1d{width:37.691520pt;}
._1c{width:39.382400pt;}
._1e{width:40.736000pt;}
._1f{width:41.725227pt;}
._1b{width:64.476160pt;}
._1a{width:65.494400pt;}
._10{width:105.226664pt;}
._11{width:1630.485333pt;}
._5{width:1827.152640pt;}
.fs6{font-size:5.120000pt;}
.fsa{font-size:10.880000pt;}
.fsb{font-size:16.000000pt;}
.fs9{font-size:26.880000pt;}
.fs7{font-size:32.000000pt;}
.fs5{font-size:34.560000pt;}
.fs1{font-size:37.120000pt;}
.fs2{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fsc{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fsd{font-size:74.880000pt;}
.fse{font-size:85.120000pt;}
.fs8{font-size:112.000000pt;}
.y0{bottom:0.000000pt;}
.y45{bottom:3.840000pt;}
.yaa{bottom:4.640000pt;}
.y2f{bottom:4.960000pt;}
.ycf{bottom:5.760000pt;}
.yae{bottom:6.880000pt;}
.yb6{bottom:7.186667pt;}
.yb3{bottom:7.346667pt;}
.yb0{bottom:7.506667pt;}
.yb1{bottom:7.826667pt;}
.ybc{bottom:8.466667pt;}
.ycd{bottom:11.200000pt;}
.ycb{bottom:11.360000pt;}
.yac{bottom:12.160000pt;}
.y3{bottom:16.000000pt;}
.y44{bottom:16.160000pt;}
.y48{bottom:16.800000pt;}
.y2e{bottom:17.280000pt;}
.y83{bottom:17.760000pt;}
.ya9{bottom:20.480000pt;}
.y2d{bottom:26.080000pt;}
.y2{bottom:26.720000pt;}
.y82{bottom:35.520000pt;}
.ya8{bottom:36.320000pt;}
.y1{bottom:38.240000pt;}
.y2c{bottom:41.920000pt;}
.y2b{bottom:57.760000pt;}
.yd0{bottom:71.040000pt;}
.y7f{bottom:71.200000pt;}
.y42{bottom:72.320000pt;}
.yc2{bottom:72.640000pt;}
.y2a{bottom:73.760000pt;}
.yce{bottom:74.080000pt;}
.y147{bottom:84.640000pt;}
.y7e{bottom:88.800000pt;}
.y29{bottom:89.600000pt;}
.y41{bottom:90.080000pt;}
.yc1{bottom:90.240000pt;}
.ycc{bottom:91.360000pt;}
.y109{bottom:93.440000pt;}
.y146{bottom:96.960000pt;}
.y28{bottom:105.440000pt;}
.y108{bottom:105.760000pt;}
.y7d{bottom:106.400000pt;}
.y40{bottom:107.680000pt;}
.yc0{bottom:107.840000pt;}
.y145{bottom:109.120000pt;}
.y107{bottom:118.080000pt;}
.yca{bottom:120.320000pt;}
.y27{bottom:121.280000pt;}
.y144{bottom:121.440000pt;}
.y7c{bottom:124.000000pt;}
.y3f{bottom:125.280000pt;}
.ybf{bottom:125.440000pt;}
.y143{bottom:133.786667pt;}
.y106{bottom:135.706667pt;}
.y26{bottom:137.120000pt;}
.ybe{bottom:140.986667pt;}
.y7b{bottom:141.626667pt;}
.y3e{bottom:142.906667pt;}
.y142{bottom:145.946667pt;}
.y105{bottom:147.866667pt;}
.ybd{bottom:152.506667pt;}
.y25{bottom:152.960000pt;}
.yc9{bottom:155.866667pt;}
.y141{bottom:158.266667pt;}
.y7a{bottom:159.386667pt;}
.y3d{bottom:160.506667pt;}
.ybb{bottom:163.080000pt;}
.y104{bottom:165.466667pt;}
.y24{bottom:168.960000pt;}
.y140{bottom:170.586667pt;}
.yc8{bottom:174.586667pt;}
.y79{bottom:176.986667pt;}
.y103{bottom:177.786667pt;}
.y3c{bottom:178.266667pt;}
.y31{bottom:179.200000pt;}
.y13f{bottom:182.746667pt;}
.y23{bottom:184.800000pt;}
.yba{bottom:186.120000pt;}
.y78{bottom:194.586667pt;}
.y102{bottom:195.386667pt;}
.y3b{bottom:195.866667pt;}
.y13e{bottom:200.346667pt;}
.y22{bottom:200.640000pt;}
.yb9{bottom:206.440000pt;}
.y101{bottom:207.706667pt;}
.y77{bottom:212.186667pt;}
.y3a{bottom:213.466667pt;}
.y21{bottom:216.506667pt;}
.y13d{bottom:218.266667pt;}
.y100{bottom:225.306667pt;}
.yb8{bottom:228.200000pt;}
.y76{bottom:229.786667pt;}
.y39{bottom:231.066667pt;}
.y20{bottom:232.346667pt;}
.y13c{bottom:237.306667pt;}
.yff{bottom:237.466667pt;}
.y75{bottom:247.546667pt;}
.y1f{bottom:248.346667pt;}
.yb7{bottom:248.520000pt;}
.y38{bottom:248.666667pt;}
.yfe{bottom:255.066667pt;}
.y13b{bottom:256.506667pt;}
.y1e{bottom:264.186667pt;}
.y74{bottom:265.146667pt;}
.yfd{bottom:267.386667pt;}
.y37{bottom:267.546667pt;}
.yb5{bottom:270.280000pt;}
.y13a{bottom:275.706667pt;}
.yfc{bottom:279.706667pt;}
.y1d{bottom:280.026667pt;}
.y73{bottom:282.746667pt;}
.y36{bottom:287.546667pt;}
.yb4{bottom:290.600000pt;}
.y139{bottom:294.746667pt;}
.y1c{bottom:295.866667pt;}
.yfb{bottom:297.306667pt;}
.y72{bottom:300.346667pt;}
.y35{bottom:305.146667pt;}
.yfa{bottom:309.466667pt;}
.y1b{bottom:311.706667pt;}
.yb2{bottom:312.200000pt;}
.y138{bottom:313.946667pt;}
.y71{bottom:317.946667pt;}
.y34{bottom:322.746667pt;}
.yf9{bottom:327.066667pt;}
.y1a{bottom:327.546667pt;}
.yaf{bottom:332.680000pt;}
.y137{bottom:332.986667pt;}
.y70{bottom:335.706667pt;}
.yf8{bottom:339.386667pt;}
.y33{bottom:340.026667pt;}
.y19{bottom:347.226667pt;}
.yf7{bottom:351.706667pt;}
.y136{bottom:352.186667pt;}
.y6f{bottom:353.306667pt;}
.yad{bottom:354.306667pt;}
.y32{bottom:358.146667pt;}
.y30{bottom:358.426667pt;}
.yf6{bottom:369.346667pt;}
.y18{bottom:370.306667pt;}
.y6e{bottom:370.946667pt;}
.y135{bottom:371.426667pt;}
.ya7{bottom:374.626667pt;}
.yf5{bottom:381.506667pt;}
.y6d{bottom:388.546667pt;}
.y134{bottom:390.466667pt;}
.yf4{bottom:399.106667pt;}
.y6c{bottom:406.146667pt;}
.yab{bottom:406.306667pt;}
.y133{bottom:406.786667pt;}
.yf3{bottom:411.426667pt;}
.yf2{bottom:423.746667pt;}
.y6b{bottom:423.906667pt;}
.y132{bottom:426.946667pt;}
.ya6{bottom:428.386667pt;}
.yf1{bottom:438.786667pt;}
.y131{bottom:439.266667pt;}
.y6a{bottom:441.506667pt;}
.ya5{bottom:445.986667pt;}
.yf0{bottom:456.066667pt;}
.y130{bottom:456.866667pt;}
.y69{bottom:459.106667pt;}
.ya4{bottom:463.586667pt;}
.y12f{bottom:469.186667pt;}
.y68{bottom:476.706667pt;}
.yef{bottom:476.866667pt;}
.ya3{bottom:481.186667pt;}
.y12e{bottom:481.346667pt;}
.y67{bottom:494.306667pt;}
.ya2{bottom:498.786667pt;}
.y12d{bottom:498.946667pt;}
.yee{bottom:500.066667pt;}
.y12c{bottom:511.266667pt;}
.y66{bottom:512.066667pt;}
.yed{bottom:515.106667pt;}
.ya1{bottom:516.546667pt;}
.y12b{bottom:523.586667pt;}
.y65{bottom:529.666667pt;}
.yec{bottom:530.786667pt;}
.ya0{bottom:534.146667pt;}
.y12a{bottom:541.186667pt;}
.yeb{bottom:546.146667pt;}
.y64{bottom:547.266667pt;}
.y9f{bottom:551.746667pt;}
.y129{bottom:558.786667pt;}
.yea{bottom:561.026667pt;}
.y63{bottom:564.866667pt;}
.y9e{bottom:569.346667pt;}
.y128{bottom:570.946667pt;}
.ye9{bottom:576.733333pt;}
.y62{bottom:582.493333pt;}
.y127{bottom:583.293333pt;}
.y9d{bottom:586.973333pt;}
.ye8{bottom:592.093333pt;}
.y61{bottom:600.253333pt;}
.y126{bottom:600.893333pt;}
.y9c{bottom:604.733333pt;}
.ye7{bottom:607.133333pt;}
.y125{bottom:613.213333pt;}
.y60{bottom:617.853333pt;}
.y9b{bottom:622.333333pt;}
.ye6{bottom:622.493333pt;}
.y124{bottom:630.813333pt;}
.y5f{bottom:635.453333pt;}
.ye5{bottom:638.013333pt;}
.y9a{bottom:639.933333pt;}
.y123{bottom:642.973333pt;}
.y5e{bottom:653.053333pt;}
.ye4{bottom:653.373333pt;}
.y99{bottom:657.533333pt;}
.y122{bottom:660.573333pt;}
.ye3{bottom:668.733333pt;}
.y5d{bottom:670.333333pt;}
.yc7{bottom:670.653333pt;}
.y121{bottom:672.893333pt;}
.y98{bottom:675.133333pt;}
.ye2{bottom:684.093333pt;}
.y5c{bottom:688.093333pt;}
.yc6{bottom:688.413333pt;}
.y120{bottom:690.493333pt;}
.y97{bottom:692.893333pt;}
.ye1{bottom:699.453333pt;}
.y11f{bottom:702.653333pt;}
.y5b{bottom:706.013333pt;}
.y96{bottom:710.493333pt;}
.ye0{bottom:714.813333pt;}
.y11e{bottom:720.253333pt;}
.y5a{bottom:723.613333pt;}
.y95{bottom:728.093333pt;}
.ydf{bottom:729.693333pt;}
.y11d{bottom:732.573333pt;}
.y17{bottom:733.853333pt;}
.y59{bottom:740.893333pt;}
.yc5{bottom:741.213333pt;}
.yde{bottom:745.053333pt;}
.y94{bottom:745.373333pt;}
.y11c{bottom:750.173333pt;}
.y16{bottom:750.653333pt;}
.y58{bottom:758.493333pt;}
.yc4{bottom:758.813333pt;}
.ydd{bottom:760.733333pt;}
.y15{bottom:761.533333pt;}
.y11b{bottom:762.493333pt;}
.y93{bottom:762.973333pt;}
.y14{bottom:768.253333pt;}
.ydc{bottom:775.773333pt;}
.y57{bottom:776.253333pt;}
.yc3{bottom:776.573333pt;}
.y11a{bottom:780.093333pt;}
.y92{bottom:781.053333pt;}
.y13{bottom:786.973333pt;}
.ydb{bottom:791.133333pt;}
.y119{bottom:792.253333pt;}
.y56{bottom:794.173333pt;}
.y12{bottom:796.413333pt;}
.y91{bottom:798.693333pt;}
.yda{bottom:806.853333pt;}
.y118{bottom:809.893333pt;}
.y55{bottom:811.813333pt;}
.y11{bottom:815.333333pt;}
.y90{bottom:816.293333pt;}
.yd9{bottom:822.053333pt;}
.y117{bottom:822.213333pt;}
.y10{bottom:824.133333pt;}
.y54{bottom:829.413333pt;}
.y8f{bottom:833.893333pt;}
.yf{bottom:835.813333pt;}
.yd8{bottom:837.413333pt;}
.y116{bottom:839.813333pt;}
.y53{bottom:847.013333pt;}
.y8e{bottom:851.493333pt;}
.ye{bottom:853.573333pt;}
.y115{bottom:857.413333pt;}
.y52{bottom:864.773333pt;}
.yd7{bottom:867.813333pt;}
.y8d{bottom:868.933333pt;}
.y114{bottom:869.733333pt;}
.yd{bottom:871.493333pt;}
.y51{bottom:882.373333pt;}
.yd6{bottom:883.173333pt;}
.y8c{bottom:886.533333pt;}
.y113{bottom:887.333333pt;}
.yc{bottom:889.413333pt;}
.y112{bottom:899.493333pt;}
.y50{bottom:899.973333pt;}
.yd5{bottom:903.173333pt;}
.y8b{bottom:904.453333pt;}
.y111{bottom:911.813333pt;}
.yb{bottom:912.613333pt;}
.y4f{bottom:917.573333pt;}
.y8a{bottom:922.053333pt;}
.yd4{bottom:925.573333pt;}
.y110{bottom:929.413333pt;}
.y4e{bottom:935.173333pt;}
.y89{bottom:939.653333pt;}
.y10f{bottom:941.733333pt;}
.yd3{bottom:943.173333pt;}
.ya{bottom:949.733333pt;}
.y4d{bottom:952.933333pt;}
.y88{bottom:958.533333pt;}
.y10e{bottom:959.333333pt;}
.yd2{bottom:960.933333pt;}
.y4c{bottom:970.533333pt;}
.y10d{bottom:971.493333pt;}
.y87{bottom:978.533333pt;}
.y9{bottom:978.853333pt;}
.y10c{bottom:983.813333pt;}
.y4b{bottom:988.133333pt;}
.y43{bottom:989.093333pt;}
.y8{bottom:993.733333pt;}
.y86{bottom:996.133333pt;}
.y10b{bottom:1001.413333pt;}
.y4a{bottom:1005.733333pt;}
.yd1{bottom:1013.413333pt;}
.y85{bottom:1013.733333pt;}
.y49{bottom:1023.360000pt;}
.y10a{bottom:1025.920000pt;}
.y7{bottom:1027.520000pt;}
.y84{bottom:1031.040000pt;}
.y6{bottom:1037.760000pt;}
.y47{bottom:1039.520000pt;}
.y5{bottom:1045.280000pt;}
.y81{bottom:1047.520000pt;}
.y46{bottom:1056.640000pt;}
.y4{bottom:1064.480000pt;}
.y80{bottom:1064.640000pt;}
.h6{height:5.022500pt;}
.hf{height:10.678125pt;}
.h26{height:10.965000pt;}
.h19{height:15.826667pt;}
.h11{height:16.125000pt;}
.h25{height:17.278667pt;}
.h1b{height:19.506667pt;}
.h1f{height:20.306667pt;}
.h1d{height:20.466667pt;}
.h1e{height:21.586667pt;}
.h1c{height:21.618667pt;}
.h20{height:21.746667pt;}
.h21{height:23.026667pt;}
.h16{height:24.626667pt;}
.hd{height:26.368125pt;}
.h24{height:28.318667pt;}
.h23{height:29.312000pt;}
.h1a{height:31.026667pt;}
.h22{height:31.406250pt;}
.h3{height:36.431250pt;}
.hc{height:37.410000pt;}
.h17{height:38.153511pt;}
.he{height:42.063437pt;}
.h7{height:42.084375pt;}
.h4{height:43.215000pt;}
.h29{height:44.941250pt;}
.h2a{height:45.047917pt;}
.h2{height:47.109375pt;}
.h18{height:47.506667pt;}
.h8{height:48.375000pt;}
.h13{height:49.336419pt;}
.h14{height:52.134375pt;}
.h9{height:53.535000pt;}
.hb{height:59.150000pt;}
.h12{height:59.340000pt;}
.h15{height:62.812500pt;}
.h5{height:64.500000pt;}
.h27{height:73.490625pt;}
.h28{height:85.785000pt;}
.ha{height:112.875000pt;}
.h10{height:358.426667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w3{width:90.426667pt;}
.w9{width:109.746667pt;}
.wc{width:110.066667pt;}
.wb{width:114.906667pt;}
.w8{width:120.192000pt;}
.wa{width:123.698667pt;}
.wd{width:124.018667pt;}
.wf{width:131.712000pt;}
.we{width:162.897333pt;}
.w11{width:162.906667pt;}
.w5{width:180.497333pt;}
.w10{width:198.253333pt;}
.w4{width:206.266667pt;}
.w6{width:229.946667pt;}
.w7{width:238.613333pt;}
.w2{width:569.680000pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.xb{left:-32.800000pt;}
.xa{left:-17.600000pt;}
.x0{left:0.000000pt;}
.x14{left:7.190667pt;}
.x18{left:8.160000pt;}
.x9{left:9.466667pt;}
.x27{left:10.546667pt;}
.x29{left:12.960000pt;}
.x1a{left:18.226667pt;}
.x1c{left:20.640000pt;}
.x8{left:23.866667pt;}
.x24{left:25.600000pt;}
.x20{left:27.826667pt;}
.x1e{left:29.266667pt;}
.x1d{left:31.200000pt;}
.x21{left:33.120000pt;}
.x1f{left:34.906667pt;}
.x22{left:36.186667pt;}
.x7{left:37.786667pt;}
.x23{left:39.066667pt;}
.x6{left:52.186667pt;}
.x2a{left:59.840000pt;}
.x5{left:69.466667pt;}
.x2d{left:70.880000pt;}
.x2{left:72.032000pt;}
.x17{left:78.746667pt;}
.x2c{left:90.066667pt;}
.x2b{left:91.506667pt;}
.xe{left:96.032000pt;}
.x11{left:100.512000pt;}
.x12{left:102.112000pt;}
.x13{left:119.232000pt;}
.x2e{left:140.666667pt;}
.x25{left:233.026667pt;}
.x15{left:252.546667pt;}
.xf{left:319.746667pt;}
.xd{left:341.666667pt;}
.x26{left:364.746667pt;}
.x19{left:372.746667pt;}
.x10{left:386.013333pt;}
.x1{left:386.973333pt;}
.x3{left:396.093333pt;}
.x16{left:483.306667pt;}
.xc{left:524.773333pt;}
.x28{left:563.013333pt;}
.x1b{left:607.013333pt;}
.x4{left:641.733333pt;}
}




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