
    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_b45f2ac76888442f750b087f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910156;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_4d03643df08650b5ec612347.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.065430;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_63f87c4deb456abb89ac33f7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.088379;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_23dd288b888edb7ac315b647.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.088379;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_6cdd1918dd589398debf716b.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.088379;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_b984dd1fdd97da9db0d16146.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.088379;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_984f5bdbdb26668368131cff.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.432129;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_f06808cd6592648e2cc4f783.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.432129;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_1be7b329bfa292d93ff297a8.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.962402;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);}
.m4{transform:matrix(0.250595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250595,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.250605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250605,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.251214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251214,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:-20.880000px;}
.v3{vertical-align:-4.908637px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls23{letter-spacing:-0.444600px;}
.ls2a{letter-spacing:-0.367800px;}
.ls16{letter-spacing:-0.291600px;}
.ls13{letter-spacing:-0.243600px;}
.lse{letter-spacing:-0.186600px;}
.lsa{letter-spacing:-0.135000px;}
.ls10{letter-spacing:-0.121200px;}
.ls26{letter-spacing:-0.108000px;}
.ls1e{letter-spacing:-0.100218px;}
.ls9{letter-spacing:-0.090000px;}
.lsc{letter-spacing:-0.084600px;}
.lsb{letter-spacing:-0.084000px;}
.ls24{letter-spacing:-0.068400px;}
.ls25{letter-spacing:-0.054379px;}
.ls7{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.045360px;}
.ls12{letter-spacing:0.048960px;}
.ls1a{letter-spacing:0.064800px;}
.ls5{letter-spacing:0.068400px;}
.ls3{letter-spacing:0.074160px;}
.lsf{letter-spacing:0.074400px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls1d{letter-spacing:0.108000px;}
.ls29{letter-spacing:0.113400px;}
.ls19{letter-spacing:0.116400px;}
.ls21{letter-spacing:0.122425px;}
.ls8{letter-spacing:0.144000px;}
.lsd{letter-spacing:0.173400px;}
.ls20{letter-spacing:0.180000px;}
.ls14{letter-spacing:0.181200px;}
.ls1f{letter-spacing:0.206640px;}
.ls22{letter-spacing:0.220454px;}
.ls15{letter-spacing:0.275400px;}
.ls0{letter-spacing:0.360000px;}
.ls18{letter-spacing:0.813600px;}
.ls17{letter-spacing:1.533600px;}
.ls6{letter-spacing:4.413600px;}
.ls4{letter-spacing:9.093600px;}
.ls28{letter-spacing:47.726640px;}
.ls1b{letter-spacing:63.566640px;}
.ls1c{letter-spacing:68.148000px;}
.ls27{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws2{word-spacing:-60.120000px;}
.wsf{word-spacing:-54.000000px;}
.ws11{word-spacing:-19.891188px;}
.ws14{word-spacing:-16.901454px;}
.ws10{word-spacing:-15.044727px;}
.ws8{word-spacing:-14.493600px;}
.wsa{word-spacing:-14.372400px;}
.wsc{word-spacing:-13.407600px;}
.ws4{word-spacing:-13.399800px;}
.ws17{word-spacing:-13.339800px;}
.ws6{word-spacing:-13.300800px;}
.wse{word-spacing:-13.294800px;}
.wsb{word-spacing:-13.275360px;}
.ws3{word-spacing:-13.226400px;}
.ws5{word-spacing:-13.039800px;}
.wsd{word-spacing:-12.934800px;}
.ws18{word-spacing:-12.858600px;}
.ws15{word-spacing:-11.880000px;}
.ws16{word-spacing:-11.772000px;}
.ws12{word-spacing:-10.533600px;}
.ws13{word-spacing:-10.465200px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws9{word-spacing:0.000000px;}
.ws7{word-spacing:4.304880px;}
._16{margin-left:-9.555516px;}
._b{margin-left:-3.186600px;}
._d{margin-left:-2.162394px;}
._0{margin-left:-1.158000px;}
._2{width:1.006812px;}
._3{width:2.289228px;}
._4{width:3.667200px;}
._a{width:5.050200px;}
._c{width:6.304319px;}
._9{width:8.056200px;}
._5{width:9.679200px;}
._8{width:11.542800px;}
._6{width:14.271840px;}
._7{width:15.548161px;}
._1{width:17.027388px;}
._10{width:18.290239px;}
._12{width:19.689342px;}
._11{width:20.711160px;}
._13{width:21.851874px;}
._17{width:43.887600px;}
._14{width:54.973440px;}
._15{width:56.620560px;}
._f{width:69.287901px;}
._e{width:2116.046400px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs7{font-size:47.880000px;}
.fs8{font-size:51.049826px;}
.fs2{font-size:54.000000px;}
.fsa{font-size:54.117724px;}
.fsd{font-size:55.113437px;}
.fs1{font-size:60.120000px;}
.fsb{font-size:60.992203px;}
.fs5{font-size:65.880000px;}
.fs9{font-size:71.911534px;}
.fs10{font-size:72.000000px;}
.fse{font-size:73.484582px;}
.fsc{font-size:73.631552px;}
.fs4{font-size:83.880000px;}
.fsf{font-size:85.752353px;}
.ydf{bottom:-26.449345px;}
.y9b{bottom:-5.798166px;}
.yde{bottom:-1.084815px;}
.ye1{bottom:-0.210000px;}
.y0{bottom:0.000000px;}
.y9d{bottom:5.062080px;}
.yc6{bottom:7.605655px;}
.yc4{bottom:7.789366px;}
.yf9{bottom:7.830000px;}
.yf7{bottom:7.920000px;}
.yc9{bottom:10.257224px;}
.ycc{bottom:10.287842px;}
.yc2{bottom:18.370507px;}
.ydc{bottom:25.881257px;}
.y2{bottom:73.380000px;}
.y2b{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.y75{bottom:114.330000px;}
.y47{bottom:115.500000px;}
.y131{bottom:120.090000px;}
.y101{bottom:125.670000px;}
.y188{bottom:129.720000px;}
.yc0{bottom:131.520000px;}
.y74{bottom:131.880000px;}
.y130{bottom:137.640000px;}
.y29{bottom:142.500000px;}
.y187{bottom:147.270000px;}
.y15c{bottom:148.350000px;}
.y73{bottom:149.430000px;}
.y46{bottom:151.140000px;}
.y100{bottom:153.030000px;}
.y12f{bottom:155.280000px;}
.y99{bottom:156.000000px;}
.y28{bottom:160.050000px;}
.ybf{bottom:166.350000px;}
.y72{bottom:167.070000px;}
.y12e{bottom:172.830000px;}
.y98{bottom:173.550000px;}
.y186{bottom:173.910000px;}
.y15b{bottom:175.260000px;}
.y27{bottom:177.600000px;}
.ybe{bottom:177.780000px;}
.yc1{bottom:179.434964px;}
.yff{bottom:180.300000px;}
.y45{bottom:185.970000px;}
.y12d{bottom:190.470000px;}
.y185{bottom:191.460000px;}
.y71{bottom:193.620000px;}
.y26{bottom:195.240000px;}
.y44{bottom:197.400000px;}
.y97{bottom:200.190000px;}
.yfe{bottom:207.660000px;}
.y12c{bottom:208.020000px;}
.y15a{bottom:212.250000px;}
.y25{bottom:212.790000px;}
.ycb{bottom:216.948205px;}
.y184{bottom:218.100000px;}
.y12b{bottom:225.570000px;}
.y70{bottom:229.260000px;}
.y159{bottom:229.890000px;}
.y24{bottom:230.340000px;}
.yfd{bottom:235.020000px;}
.y96{bottom:235.380000px;}
.y183{bottom:235.650000px;}
.y12a{bottom:243.210000px;}
.y6f{bottom:246.810000px;}
.y158{bottom:247.440000px;}
.y23{bottom:247.980000px;}
.y95{bottom:251.940000px;}
.y182{bottom:253.200000px;}
.y129{bottom:260.760000px;}
.yfc{bottom:262.380000px;}
.y6e{bottom:264.360000px;}
.y22{bottom:265.530000px;}
.y94{bottom:268.500000px;}
.y157{bottom:274.350000px;}
.y128{bottom:278.400000px;}
.y181{bottom:279.840000px;}
.y6d{bottom:282.000000px;}
.y21{bottom:283.170000px;}
.y93{bottom:285.060000px;}
.yfb{bottom:289.650000px;}
.y127{bottom:295.950000px;}
.y180{bottom:297.390000px;}
.yca{bottom:299.067237px;}
.yc7{bottom:299.067242px;}
.y6c{bottom:299.550000px;}
.yc3{bottom:299.802078px;}
.y20{bottom:300.720000px;}
.y92{bottom:301.710000px;}
.yc5{bottom:306.783109px;}
.y156{bottom:311.700000px;}
.yfa{bottom:317.010000px;}
.y6b{bottom:317.190000px;}
.y1f{bottom:318.270000px;}
.y17f{bottom:323.940000px;}
.y126{bottom:331.500000px;}
.yda{bottom:332.490000px;}
.y6a{bottom:334.740000px;}
.y1e{bottom:335.910000px;}
.y91{bottom:336.630000px;}
.y17e{bottom:341.580000px;}
.yf8{bottom:344.370000px;}
.y125{bottom:349.140000px;}
.yd9{bottom:350.040000px;}
.y1d{bottom:353.460000px;}
.y17d{bottom:359.130000px;}
.y155{bottom:359.940000px;}
.y69{bottom:361.290000px;}
.y124{bottom:366.690000px;}
.yd8{bottom:367.680000px;}
.y90{bottom:368.850000px;}
.yc8{bottom:368.872986px;}
.y9a{bottom:370.860000px;}
.yf6{bottom:371.640000px;}
.y9c{bottom:372.455469px;}
.y154{bottom:377.580000px;}
.y1c{bottom:380.370000px;}
.y123{bottom:384.330000px;}
.yd7{bottom:385.230000px;}
.y17c{bottom:385.770000px;}
.y153{bottom:395.130000px;}
.y68{bottom:396.930000px;}
.y122{bottom:401.880000px;}
.yd6{bottom:402.780000px;}
.y17b{bottom:403.320000px;}
.y152{bottom:412.770000px;}
.y67{bottom:414.480000px;}
.y8f{bottom:419.430000px;}
.yd5{bottom:420.420000px;}
.y17a{bottom:420.870000px;}
.y121{bottom:428.790000px;}
.y1b{bottom:428.970000px;}
.y66{bottom:432.120000px;}
.yd4{bottom:437.970000px;}
.ybd{bottom:444.450000px;}
.y179{bottom:447.510000px;}
.y151{bottom:448.320000px;}
.y65{bottom:449.670000px;}
.y8e{bottom:454.980000px;}
.yf5{bottom:455.970000px;}
.ybc{bottom:462.000000px;}
.yd3{bottom:464.610000px;}
.y178{bottom:465.060000px;}
.y150{bottom:465.870000px;}
.y1a{bottom:466.050000px;}
.y64{bottom:467.220000px;}
.y8d{bottom:473.460000px;}
.yf4{bottom:473.550000px;}
.y120{bottom:476.700000px;}
.ybb{bottom:479.580000px;}
.y14f{bottom:483.540000px;}
.y19{bottom:483.630000px;}
.yf3{bottom:491.190000px;}
.y177{bottom:491.730000px;}
.y8c{bottom:491.820000px;}
.y11f{bottom:492.540000px;}
.y63{bottom:493.890000px;}
.yba{bottom:497.220000px;}
.yd2{bottom:500.190000px;}
.y14e{bottom:501.090000px;}
.y18{bottom:501.180000px;}
.y11e{bottom:508.380000px;}
.yf2{bottom:508.740000px;}
.y176{bottom:509.280000px;}
.y8b{bottom:510.270000px;}
.yb9{bottom:514.770000px;}
.y14d{bottom:518.730000px;}
.y17{bottom:518.820000px;}
.y11d{bottom:523.860000px;}
.yf1{bottom:526.380000px;}
.y175{bottom:526.830000px;}
.y62{bottom:529.440000px;}
.yb8{bottom:532.410000px;}
.yd1{bottom:535.020000px;}
.y11c{bottom:536.010000px;}
.y16{bottom:536.370000px;}
.yf0{bottom:543.930000px;}
.y14c{bottom:545.640000px;}
.y8a{bottom:546.720000px;}
.y61{bottom:547.080000px;}
.yd0{bottom:549.150000px;}
.yb7{bottom:549.960000px;}
.y174{bottom:553.470000px;}
.y15{bottom:553.920000px;}
.ycf{bottom:560.580000px;}
.yef{bottom:561.480000px;}
.y11b{bottom:563.370000px;}
.ydb{bottom:563.412689px;}
.y60{bottom:564.630000px;}
.yb6{bottom:567.510000px;}
.y173{bottom:571.020000px;}
.y14{bottom:571.560000px;}
.y89{bottom:573.270000px;}
.yee{bottom:579.120000px;}
.y5f{bottom:582.180000px;}
.yb5{bottom:585.150000px;}
.y13{bottom:589.110000px;}
.y11a{bottom:590.730000px;}
.y14b{bottom:593.880000px;}
.yed{bottom:596.670000px;}
.y172{bottom:597.660000px;}
.y5e{bottom:599.820000px;}
.yb4{bottom:602.700000px;}
.ydd{bottom:602.776696px;}
.y12{bottom:606.750000px;}
.y88{bottom:608.910000px;}
.ye0{bottom:609.930000px;}
.y14a{bottom:611.430000px;}
.yec{bottom:614.310000px;}
.y171{bottom:615.210000px;}
.y119{bottom:618.000000px;}
.y11{bottom:624.300000px;}
.y5d{bottom:626.370000px;}
.y149{bottom:629.070000px;}
.yb3{bottom:629.340000px;}
.yeb{bottom:631.860000px;}
.y170{bottom:641.760000px;}
.y10{bottom:641.850000px;}
.y87{bottom:644.460000px;}
.y118{bottom:645.360000px;}
.y148{bottom:646.620000px;}
.yea{bottom:649.410000px;}
.y5c{bottom:658.950000px;}
.y16f{bottom:659.400000px;}
.yf{bottom:659.490000px;}
.y147{bottom:664.260000px;}
.yb2{bottom:665.250000px;}
.ye9{bottom:667.050000px;}
.y117{bottom:672.720000px;}
.y86{bottom:676.680000px;}
.y16e{bottom:676.950000px;}
.ye{bottom:677.040000px;}
.y43{bottom:677.760000px;}
.y146{bottom:681.810000px;}
.ye8{bottom:684.600000px;}
.y5b{bottom:694.590000px;}
.yd{bottom:694.680000px;}
.y42{bottom:695.400000px;}
.y145{bottom:699.360000px;}
.y116{bottom:699.990000px;}
.ye7{bottom:702.240000px;}
.y16d{bottom:703.590000px;}
.y5a{bottom:712.140000px;}
.yc{bottom:712.230000px;}
.y41{bottom:712.950000px;}
.yb1{bottom:713.490000px;}
.y144{bottom:717.000000px;}
.ye6{bottom:719.790000px;}
.y16c{bottom:721.140000px;}
.y59{bottom:729.690000px;}
.y40{bottom:730.590000px;}
.yb0{bottom:731.040000px;}
.y16b{bottom:738.690000px;}
.yb{bottom:739.140000px;}
.y85{bottom:745.350000px;}
.ye5{bottom:746.340000px;}
.y58{bottom:747.330000px;}
.y3f{bottom:748.140000px;}
.yaf{bottom:748.680000px;}
.y115{bottom:748.770000px;}
.y143{bottom:752.550000px;}
.y84{bottom:762.900000px;}
.y16a{bottom:765.330000px;}
.y3e{bottom:765.690000px;}
.y142{bottom:770.190000px;}
.y57{bottom:773.880000px;}
.yae{bottom:775.230000px;}
.ye4{bottom:781.980000px;}
.y169{bottom:782.880000px;}
.y3d{bottom:783.330000px;}
.y114{bottom:784.320000px;}
.ya{bottom:787.380000px;}
.y141{bottom:787.740000px;}
.y83{bottom:789.450000px;}
.y3c{bottom:800.880000px;}
.y113{bottom:801.870000px;}
.y140{bottom:805.290000px;}
.y56{bottom:809.520000px;}
.yad{bottom:810.780000px;}
.ye3{bottom:816.810000px;}
.y3b{bottom:818.520000px;}
.y112{bottom:819.510000px;}
.y82{bottom:822.030000px;}
.y13f{bottom:822.930000px;}
.y9{bottom:823.200000px;}
.y55{bottom:827.070000px;}
.ye2{bottom:828.240000px;}
.yac{bottom:828.420000px;}
.y3a{bottom:836.070000px;}
.y111{bottom:837.060000px;}
.y13e{bottom:840.480000px;}
.y54{bottom:844.620000px;}
.yab{bottom:845.970000px;}
.y39{bottom:853.620000px;}
.y110{bottom:854.700000px;}
.y81{bottom:857.670000px;}
.y13d{bottom:858.030000px;}
.y8{bottom:859.200000px;}
.y53{bottom:862.260000px;}
.yaa{bottom:863.610000px;}
.y168{bottom:871.260000px;}
.y10f{bottom:872.250000px;}
.y80{bottom:875.220000px;}
.y13c{bottom:875.670000px;}
.y52{bottom:879.810000px;}
.y38{bottom:880.260000px;}
.ya9{bottom:881.160000px;}
.y167{bottom:888.810000px;}
.y10e{bottom:889.800000px;}
.y7f{bottom:892.860000px;}
.y13b{bottom:893.220000px;}
.y7{bottom:895.200000px;}
.ya8{bottom:898.710000px;}
.y51{bottom:906.450000px;}
.y10d{bottom:907.440000px;}
.y13a{bottom:910.860000px;}
.y6{bottom:913.200000px;}
.y166{bottom:915.450000px;}
.y37{bottom:916.170000px;}
.ya7{bottom:916.350000px;}
.y7e{bottom:919.410000px;}
.y10c{bottom:925.620000px;}
.y139{bottom:928.410000px;}
.y165{bottom:933.000000px;}
.ya6{bottom:933.900000px;}
.y50{bottom:942.270000px;}
.y138{bottom:945.960000px;}
.y5{bottom:949.290000px;}
.y164{bottom:950.550000px;}
.ya5{bottom:951.540000px;}
.y7d{bottom:954.960000px;}
.y10b{bottom:955.140000px;}
.yce{bottom:955.410000px;}
.y36{bottom:964.410000px;}
.ya4{bottom:969.090000px;}
.y7c{bottom:972.600000px;}
.ycd{bottom:972.960000px;}
.y163{bottom:977.190000px;}
.y137{bottom:981.600000px;}
.y35{bottom:981.960000px;}
.ya3{bottom:986.640000px;}
.y4{bottom:987.630000px;}
.y10a{bottom:989.970000px;}
.y7b{bottom:990.150000px;}
.y4f{bottom:990.600000px;}
.y162{bottom:994.740000px;}
.y136{bottom:999.150000px;}
.y34{bottom:999.600000px;}
.y109{bottom:1004.010000px;}
.ya2{bottom:1004.280000px;}
.y7a{bottom:1007.790000px;}
.y4e{bottom:1008.150000px;}
.y3{bottom:1012.320000px;}
.y135{bottom:1016.820000px;}
.y33{bottom:1017.180000px;}
.y108{bottom:1018.170000px;}
.ya1{bottom:1021.860000px;}
.y79{bottom:1025.370000px;}
.y4d{bottom:1025.820000px;}
.y107{bottom:1032.210000px;}
.y134{bottom:1034.370000px;}
.y32{bottom:1034.820000px;}
.y161{bottom:1038.960000px;}
.y78{bottom:1042.920000px;}
.y4c{bottom:1043.370000px;}
.y106{bottom:1046.250000px;}
.ya0{bottom:1048.500000px;}
.y133{bottom:1051.920000px;}
.y31{bottom:1052.370000px;}
.y160{bottom:1056.510000px;}
.y105{bottom:1060.290000px;}
.y77{bottom:1060.560000px;}
.y4b{bottom:1060.920000px;}
.y132{bottom:1069.560000px;}
.y30{bottom:1069.920000px;}
.y104{bottom:1072.530000px;}
.y4a{bottom:1078.560000px;}
.y15f{bottom:1083.150000px;}
.y9f{bottom:1084.050000px;}
.y76{bottom:1087.110000px;}
.y2f{bottom:1087.560000px;}
.y49{bottom:1096.110000px;}
.y103{bottom:1099.890000px;}
.y15e{bottom:1100.700000px;}
.y2e{bottom:1105.110000px;}
.y48{bottom:1113.750000px;}
.y9e{bottom:1116.270000px;}
.y2d{bottom:1122.750000px;}
.y102{bottom:1127.160000px;}
.y15d{bottom:1127.610000px;}
.y2c{bottom:1140.300000px;}
.y2a{bottom:1194.300000px;}
.h1b{height:15.480000px;}
.h1a{height:19.371770px;}
.h14{height:22.045375px;}
.h12{height:22.229087px;}
.he{height:23.438919px;}
.hc{height:25.034389px;}
.h1f{height:26.550000px;}
.h1d{height:26.640000px;}
.h15{height:27.740431px;}
.h2{height:30.022383px;}
.h3{height:39.155273px;}
.ha{height:41.661211px;}
.hd{height:44.419331px;}
.h20{height:46.986328px;}
.h1e{height:50.902383px;}
.h6{height:52.311445px;}
.h11{height:53.070364px;}
.h7{height:55.779258px;}
.hb{height:56.320312px;}
.h5{height:57.323320px;}
.h1c{height:62.648438px;}
.h9{height:62.703281px;}
.h13{height:63.612962px;}
.h8{height:68.710781px;}
.h4{height:72.985430px;}
.h19{height:74.614596px;}
.hf{height:75.001483px;}
.h17{height:76.642123px;}
.h16{height:76.795407px;}
.h10{height:241.427496px;}
.h18{height:368.417311px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w5{width:17.310686px;}
.w6{width:32.411496px;}
.w8{width:50.745384px;}
.w9{width:61.200000px;}
.wb{width:112.680000px;}
.wd{width:141.840000px;}
.wc{width:144.300000px;}
.wa{width:194.880000px;}
.w3{width:203.285024px;}
.w7{width:524.325000px;}
.w4{width:598.553759px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xc{left:4.747513px;}
.x26{left:7.740000px;}
.x18{left:10.051861px;}
.x30{left:38.160000px;}
.x33{left:42.300000px;}
.x31{left:58.170000px;}
.x32{left:62.550000px;}
.x34{left:66.780000px;}
.x1{left:68.040000px;}
.x2d{left:70.019987px;}
.x1b{left:71.189987px;}
.x2f{left:80.130000px;}
.x10{left:83.789987px;}
.x2c{left:85.769987px;}
.x2b{left:88.469987px;}
.x8{left:95.039987px;}
.x2a{left:108.449987px;}
.x36{left:111.239987px;}
.x2e{left:113.309987px;}
.x23{left:115.019987px;}
.x12{left:147.337500px;}
.x25{left:148.680000px;}
.x1e{left:164.745000px;}
.xe{left:175.169987px;}
.x35{left:177.329987px;}
.x24{left:188.939987px;}
.x2{left:202.799987px;}
.x11{left:203.879987px;}
.x1d{left:216.029987px;}
.x16{left:240.520542px;}
.xb{left:247.548906px;}
.x1c{left:266.879987px;}
.x5{left:304.319987px;}
.x6{left:332.219987px;}
.x27{left:344.280000px;}
.xa{left:345.345000px;}
.x19{left:378.453552px;}
.x28{left:457.680000px;}
.x7{left:498.359987px;}
.xd{left:506.279987px;}
.x1f{left:508.079526px;}
.x14{left:530.198279px;}
.x9{left:550.139987px;}
.x13{left:591.617207px;}
.x21{left:597.420000px;}
.x29{left:602.700000px;}
.x20{left:609.543823px;}
.x15{left:668.315445px;}
.x17{left:704.225905px;}
.x1a{left:706.804098px;}
.x4{left:741.389987px;}
.xf{left:748.139987px;}
.x3{left:792.059987px;}
.x22{left:810.059987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-4.363233pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls23{letter-spacing:-0.395200pt;}
.ls2a{letter-spacing:-0.326933pt;}
.ls16{letter-spacing:-0.259200pt;}
.ls13{letter-spacing:-0.216533pt;}
.lse{letter-spacing:-0.165867pt;}
.lsa{letter-spacing:-0.120000pt;}
.ls10{letter-spacing:-0.107733pt;}
.ls26{letter-spacing:-0.096000pt;}
.ls1e{letter-spacing:-0.089083pt;}
.ls9{letter-spacing:-0.080000pt;}
.lsc{letter-spacing:-0.075200pt;}
.lsb{letter-spacing:-0.074667pt;}
.ls24{letter-spacing:-0.060800pt;}
.ls25{letter-spacing:-0.048337pt;}
.ls7{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.040320pt;}
.ls12{letter-spacing:0.043520pt;}
.ls1a{letter-spacing:0.057600pt;}
.ls5{letter-spacing:0.060800pt;}
.ls3{letter-spacing:0.065920pt;}
.lsf{letter-spacing:0.066133pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls1d{letter-spacing:0.096000pt;}
.ls29{letter-spacing:0.100800pt;}
.ls19{letter-spacing:0.103467pt;}
.ls21{letter-spacing:0.108823pt;}
.ls8{letter-spacing:0.128000pt;}
.lsd{letter-spacing:0.154133pt;}
.ls20{letter-spacing:0.160000pt;}
.ls14{letter-spacing:0.161067pt;}
.ls1f{letter-spacing:0.183680pt;}
.ls22{letter-spacing:0.195959pt;}
.ls15{letter-spacing:0.244800pt;}
.ls0{letter-spacing:0.320000pt;}
.ls18{letter-spacing:0.723200pt;}
.ls17{letter-spacing:1.363200pt;}
.ls6{letter-spacing:3.923200pt;}
.ls4{letter-spacing:8.083200pt;}
.ls28{letter-spacing:42.423680pt;}
.ls1b{letter-spacing:56.503680pt;}
.ls1c{letter-spacing:60.576000pt;}
.ls27{letter-spacing:71.863680pt;}
.ws2{word-spacing:-53.440000pt;}
.wsf{word-spacing:-48.000000pt;}
.ws11{word-spacing:-17.681056pt;}
.ws14{word-spacing:-15.023515pt;}
.ws10{word-spacing:-13.373091pt;}
.ws8{word-spacing:-12.883200pt;}
.wsa{word-spacing:-12.775467pt;}
.wsc{word-spacing:-11.917867pt;}
.ws4{word-spacing:-11.910933pt;}
.ws17{word-spacing:-11.857600pt;}
.ws6{word-spacing:-11.822933pt;}
.wse{word-spacing:-11.817600pt;}
.wsb{word-spacing:-11.800320pt;}
.ws3{word-spacing:-11.756800pt;}
.ws5{word-spacing:-11.590933pt;}
.wsd{word-spacing:-11.497600pt;}
.ws18{word-spacing:-11.429867pt;}
.ws15{word-spacing:-10.560000pt;}
.ws16{word-spacing:-10.464000pt;}
.ws12{word-spacing:-9.363200pt;}
.ws13{word-spacing:-9.302400pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws9{word-spacing:0.000000pt;}
.ws7{word-spacing:3.826560pt;}
._16{margin-left:-8.493792pt;}
._b{margin-left:-2.832534pt;}
._d{margin-left:-1.922128pt;}
._0{margin-left:-1.029333pt;}
._2{width:0.894944pt;}
._3{width:2.034869pt;}
._4{width:3.259733pt;}
._a{width:4.489067pt;}
._c{width:5.603839pt;}
._9{width:7.161067pt;}
._5{width:8.603733pt;}
._8{width:10.260266pt;}
._6{width:12.686080pt;}
._7{width:13.820588pt;}
._1{width:15.135456pt;}
._10{width:16.257990pt;}
._12{width:17.501637pt;}
._11{width:18.409920pt;}
._13{width:19.423888pt;}
._17{width:39.011200pt;}
._14{width:48.865280pt;}
._15{width:50.329387pt;}
._f{width:61.589246pt;}
._e{width:1880.930133pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs7{font-size:42.560000pt;}
.fs8{font-size:45.377623pt;}
.fs2{font-size:48.000000pt;}
.fsa{font-size:48.104644pt;}
.fsd{font-size:48.989722pt;}
.fs1{font-size:53.440000pt;}
.fsb{font-size:54.215292pt;}
.fs5{font-size:58.560000pt;}
.fs9{font-size:63.921364pt;}
.fs10{font-size:64.000000pt;}
.fse{font-size:65.319629pt;}
.fsc{font-size:65.450268pt;}
.fs4{font-size:74.560000pt;}
.fsf{font-size:76.224314pt;}
.ydf{bottom:-23.510529pt;}
.y9b{bottom:-5.153925pt;}
.yde{bottom:-0.964280pt;}
.ye1{bottom:-0.186667pt;}
.y0{bottom:0.000000pt;}
.y9d{bottom:4.499627pt;}
.yc6{bottom:6.760582pt;}
.yc4{bottom:6.923881pt;}
.yf9{bottom:6.960000pt;}
.yf7{bottom:7.040000pt;}
.yc9{bottom:9.117532pt;}
.ycc{bottom:9.144749pt;}
.yc2{bottom:16.329339pt;}
.ydc{bottom:23.005562pt;}
.y2{bottom:65.226667pt;}
.y2b{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.y75{bottom:101.626667pt;}
.y47{bottom:102.666667pt;}
.y131{bottom:106.746667pt;}
.y101{bottom:111.706667pt;}
.y188{bottom:115.306667pt;}
.yc0{bottom:116.906667pt;}
.y74{bottom:117.226667pt;}
.y130{bottom:122.346667pt;}
.y29{bottom:126.666667pt;}
.y187{bottom:130.906667pt;}
.y15c{bottom:131.866667pt;}
.y73{bottom:132.826667pt;}
.y46{bottom:134.346667pt;}
.y100{bottom:136.026667pt;}
.y12f{bottom:138.026667pt;}
.y99{bottom:138.666667pt;}
.y28{bottom:142.266667pt;}
.ybf{bottom:147.866667pt;}
.y72{bottom:148.506667pt;}
.y12e{bottom:153.626667pt;}
.y98{bottom:154.266667pt;}
.y186{bottom:154.586667pt;}
.y15b{bottom:155.786667pt;}
.y27{bottom:157.866667pt;}
.ybe{bottom:158.026667pt;}
.yc1{bottom:159.497746pt;}
.yff{bottom:160.266667pt;}
.y45{bottom:165.306667pt;}
.y12d{bottom:169.306667pt;}
.y185{bottom:170.186667pt;}
.y71{bottom:172.106667pt;}
.y26{bottom:173.546667pt;}
.y44{bottom:175.466667pt;}
.y97{bottom:177.946667pt;}
.yfe{bottom:184.586667pt;}
.y12c{bottom:184.906667pt;}
.y15a{bottom:188.666667pt;}
.y25{bottom:189.146667pt;}
.ycb{bottom:192.842849pt;}
.y184{bottom:193.866667pt;}
.y12b{bottom:200.506667pt;}
.y70{bottom:203.786667pt;}
.y159{bottom:204.346667pt;}
.y24{bottom:204.746667pt;}
.yfd{bottom:208.906667pt;}
.y96{bottom:209.226667pt;}
.y183{bottom:209.466667pt;}
.y12a{bottom:216.186667pt;}
.y6f{bottom:219.386667pt;}
.y158{bottom:219.946667pt;}
.y23{bottom:220.426667pt;}
.y95{bottom:223.946667pt;}
.y182{bottom:225.066667pt;}
.y129{bottom:231.786667pt;}
.yfc{bottom:233.226667pt;}
.y6e{bottom:234.986667pt;}
.y22{bottom:236.026667pt;}
.y94{bottom:238.666667pt;}
.y157{bottom:243.866667pt;}
.y128{bottom:247.466667pt;}
.y181{bottom:248.746667pt;}
.y6d{bottom:250.666667pt;}
.y21{bottom:251.706667pt;}
.y93{bottom:253.386667pt;}
.yfb{bottom:257.466667pt;}
.y127{bottom:263.066667pt;}
.y180{bottom:264.346667pt;}
.yca{bottom:265.837544pt;}
.yc7{bottom:265.837548pt;}
.y6c{bottom:266.266667pt;}
.yc3{bottom:266.490736pt;}
.y20{bottom:267.306667pt;}
.y92{bottom:268.186667pt;}
.yc5{bottom:272.696097pt;}
.y156{bottom:277.066667pt;}
.yfa{bottom:281.786667pt;}
.y6b{bottom:281.946667pt;}
.y1f{bottom:282.906667pt;}
.y17f{bottom:287.946667pt;}
.y126{bottom:294.666667pt;}
.yda{bottom:295.546667pt;}
.y6a{bottom:297.546667pt;}
.y1e{bottom:298.586667pt;}
.y91{bottom:299.226667pt;}
.y17e{bottom:303.626667pt;}
.yf8{bottom:306.106667pt;}
.y125{bottom:310.346667pt;}
.yd9{bottom:311.146667pt;}
.y1d{bottom:314.186667pt;}
.y17d{bottom:319.226667pt;}
.y155{bottom:319.946667pt;}
.y69{bottom:321.146667pt;}
.y124{bottom:325.946667pt;}
.yd8{bottom:326.826667pt;}
.y90{bottom:327.866667pt;}
.yc8{bottom:327.887099pt;}
.y9a{bottom:329.653333pt;}
.yf6{bottom:330.346667pt;}
.y9c{bottom:331.071528pt;}
.y154{bottom:335.626667pt;}
.y1c{bottom:338.106667pt;}
.y123{bottom:341.626667pt;}
.yd7{bottom:342.426667pt;}
.y17c{bottom:342.906667pt;}
.y153{bottom:351.226667pt;}
.y68{bottom:352.826667pt;}
.y122{bottom:357.226667pt;}
.yd6{bottom:358.026667pt;}
.y17b{bottom:358.506667pt;}
.y152{bottom:366.906667pt;}
.y67{bottom:368.426667pt;}
.y8f{bottom:372.826667pt;}
.yd5{bottom:373.706667pt;}
.y17a{bottom:374.106667pt;}
.y121{bottom:381.146667pt;}
.y1b{bottom:381.306667pt;}
.y66{bottom:384.106667pt;}
.yd4{bottom:389.306667pt;}
.ybd{bottom:395.066667pt;}
.y179{bottom:397.786667pt;}
.y151{bottom:398.506667pt;}
.y65{bottom:399.706667pt;}
.y8e{bottom:404.426667pt;}
.yf5{bottom:405.306667pt;}
.ybc{bottom:410.666667pt;}
.yd3{bottom:412.986667pt;}
.y178{bottom:413.386667pt;}
.y150{bottom:414.106667pt;}
.y1a{bottom:414.266667pt;}
.y64{bottom:415.306667pt;}
.y8d{bottom:420.853333pt;}
.yf4{bottom:420.933333pt;}
.y120{bottom:423.733333pt;}
.ybb{bottom:426.293333pt;}
.y14f{bottom:429.813333pt;}
.y19{bottom:429.893333pt;}
.yf3{bottom:436.613333pt;}
.y177{bottom:437.093333pt;}
.y8c{bottom:437.173333pt;}
.y11f{bottom:437.813333pt;}
.y63{bottom:439.013333pt;}
.yba{bottom:441.973333pt;}
.yd2{bottom:444.613333pt;}
.y14e{bottom:445.413333pt;}
.y18{bottom:445.493333pt;}
.y11e{bottom:451.893333pt;}
.yf2{bottom:452.213333pt;}
.y176{bottom:452.693333pt;}
.y8b{bottom:453.573333pt;}
.yb9{bottom:457.573333pt;}
.y14d{bottom:461.093333pt;}
.y17{bottom:461.173333pt;}
.y11d{bottom:465.653333pt;}
.yf1{bottom:467.893333pt;}
.y175{bottom:468.293333pt;}
.y62{bottom:470.613333pt;}
.yb8{bottom:473.253333pt;}
.yd1{bottom:475.573333pt;}
.y11c{bottom:476.453333pt;}
.y16{bottom:476.773333pt;}
.yf0{bottom:483.493333pt;}
.y14c{bottom:485.013333pt;}
.y8a{bottom:485.973333pt;}
.y61{bottom:486.293333pt;}
.yd0{bottom:488.133333pt;}
.yb7{bottom:488.853333pt;}
.y174{bottom:491.973333pt;}
.y15{bottom:492.373333pt;}
.ycf{bottom:498.293333pt;}
.yef{bottom:499.093333pt;}
.y11b{bottom:500.773333pt;}
.ydb{bottom:500.811279pt;}
.y60{bottom:501.893333pt;}
.yb6{bottom:504.453333pt;}
.y173{bottom:507.573333pt;}
.y14{bottom:508.053333pt;}
.y89{bottom:509.573333pt;}
.yee{bottom:514.773333pt;}
.y5f{bottom:517.493333pt;}
.yb5{bottom:520.133333pt;}
.y13{bottom:523.653333pt;}
.y11a{bottom:525.093333pt;}
.y14b{bottom:527.893333pt;}
.yed{bottom:530.373333pt;}
.y172{bottom:531.253333pt;}
.y5e{bottom:533.173333pt;}
.yb4{bottom:535.733333pt;}
.ydd{bottom:535.801508pt;}
.y12{bottom:539.333333pt;}
.y88{bottom:541.253333pt;}
.ye0{bottom:542.160000pt;}
.y14a{bottom:543.493333pt;}
.yec{bottom:546.053333pt;}
.y171{bottom:546.853333pt;}
.y119{bottom:549.333333pt;}
.y11{bottom:554.933333pt;}
.y5d{bottom:556.773333pt;}
.y149{bottom:559.173333pt;}
.yb3{bottom:559.413333pt;}
.yeb{bottom:561.653333pt;}
.y170{bottom:570.453333pt;}
.y10{bottom:570.533333pt;}
.y87{bottom:572.853333pt;}
.y118{bottom:573.653333pt;}
.y148{bottom:574.773333pt;}
.yea{bottom:577.253333pt;}
.y5c{bottom:585.733333pt;}
.y16f{bottom:586.133333pt;}
.yf{bottom:586.213333pt;}
.y147{bottom:590.453333pt;}
.yb2{bottom:591.333333pt;}
.ye9{bottom:592.933333pt;}
.y117{bottom:597.973333pt;}
.y86{bottom:601.493333pt;}
.y16e{bottom:601.733333pt;}
.ye{bottom:601.813333pt;}
.y43{bottom:602.453333pt;}
.y146{bottom:606.053333pt;}
.ye8{bottom:608.533333pt;}
.y5b{bottom:617.413333pt;}
.yd{bottom:617.493333pt;}
.y42{bottom:618.133333pt;}
.y145{bottom:621.653333pt;}
.y116{bottom:622.213333pt;}
.ye7{bottom:624.213333pt;}
.y16d{bottom:625.413333pt;}
.y5a{bottom:633.013333pt;}
.yc{bottom:633.093333pt;}
.y41{bottom:633.733333pt;}
.yb1{bottom:634.213333pt;}
.y144{bottom:637.333333pt;}
.ye6{bottom:639.813333pt;}
.y16c{bottom:641.013333pt;}
.y59{bottom:648.613333pt;}
.y40{bottom:649.413333pt;}
.yb0{bottom:649.813333pt;}
.y16b{bottom:656.613333pt;}
.yb{bottom:657.013333pt;}
.y85{bottom:662.533333pt;}
.ye5{bottom:663.413333pt;}
.y58{bottom:664.293333pt;}
.y3f{bottom:665.013333pt;}
.yaf{bottom:665.493333pt;}
.y115{bottom:665.573333pt;}
.y143{bottom:668.933333pt;}
.y84{bottom:678.133333pt;}
.y16a{bottom:680.293333pt;}
.y3e{bottom:680.613333pt;}
.y142{bottom:684.613333pt;}
.y57{bottom:687.893333pt;}
.yae{bottom:689.093333pt;}
.ye4{bottom:695.093333pt;}
.y169{bottom:695.893333pt;}
.y3d{bottom:696.293333pt;}
.y114{bottom:697.173333pt;}
.ya{bottom:699.893333pt;}
.y141{bottom:700.213333pt;}
.y83{bottom:701.733333pt;}
.y3c{bottom:711.893333pt;}
.y113{bottom:712.773333pt;}
.y140{bottom:715.813333pt;}
.y56{bottom:719.573333pt;}
.yad{bottom:720.693333pt;}
.ye3{bottom:726.053333pt;}
.y3b{bottom:727.573333pt;}
.y112{bottom:728.453333pt;}
.y82{bottom:730.693333pt;}
.y13f{bottom:731.493333pt;}
.y9{bottom:731.733333pt;}
.y55{bottom:735.173333pt;}
.ye2{bottom:736.213333pt;}
.yac{bottom:736.373333pt;}
.y3a{bottom:743.173333pt;}
.y111{bottom:744.053333pt;}
.y13e{bottom:747.093333pt;}
.y54{bottom:750.773333pt;}
.yab{bottom:751.973333pt;}
.y39{bottom:758.773333pt;}
.y110{bottom:759.733333pt;}
.y81{bottom:762.373333pt;}
.y13d{bottom:762.693333pt;}
.y8{bottom:763.733333pt;}
.y53{bottom:766.453333pt;}
.yaa{bottom:767.653333pt;}
.y168{bottom:774.453333pt;}
.y10f{bottom:775.333333pt;}
.y80{bottom:777.973333pt;}
.y13c{bottom:778.373333pt;}
.y52{bottom:782.053333pt;}
.y38{bottom:782.453333pt;}
.ya9{bottom:783.253333pt;}
.y167{bottom:790.053333pt;}
.y10e{bottom:790.933333pt;}
.y7f{bottom:793.653333pt;}
.y13b{bottom:793.973333pt;}
.y7{bottom:795.733333pt;}
.ya8{bottom:798.853333pt;}
.y51{bottom:805.733333pt;}
.y10d{bottom:806.613333pt;}
.y13a{bottom:809.653333pt;}
.y6{bottom:811.733333pt;}
.y166{bottom:813.733333pt;}
.y37{bottom:814.373333pt;}
.ya7{bottom:814.533333pt;}
.y7e{bottom:817.253333pt;}
.y10c{bottom:822.773333pt;}
.y139{bottom:825.253333pt;}
.y165{bottom:829.333333pt;}
.ya6{bottom:830.133333pt;}
.y50{bottom:837.573333pt;}
.y138{bottom:840.853333pt;}
.y5{bottom:843.813333pt;}
.y164{bottom:844.933333pt;}
.ya5{bottom:845.813333pt;}
.y7d{bottom:848.853333pt;}
.y10b{bottom:849.013333pt;}
.yce{bottom:849.253333pt;}
.y36{bottom:857.253333pt;}
.ya4{bottom:861.413333pt;}
.y7c{bottom:864.533333pt;}
.ycd{bottom:864.853333pt;}
.y163{bottom:868.613333pt;}
.y137{bottom:872.533333pt;}
.y35{bottom:872.853333pt;}
.ya3{bottom:877.013333pt;}
.y4{bottom:877.893333pt;}
.y10a{bottom:879.973333pt;}
.y7b{bottom:880.133333pt;}
.y4f{bottom:880.533333pt;}
.y162{bottom:884.213333pt;}
.y136{bottom:888.133333pt;}
.y34{bottom:888.533333pt;}
.y109{bottom:892.453333pt;}
.ya2{bottom:892.693333pt;}
.y7a{bottom:895.813333pt;}
.y4e{bottom:896.133333pt;}
.y3{bottom:899.840000pt;}
.y135{bottom:903.840000pt;}
.y33{bottom:904.160000pt;}
.y108{bottom:905.040000pt;}
.ya1{bottom:908.320000pt;}
.y79{bottom:911.440000pt;}
.y4d{bottom:911.840000pt;}
.y107{bottom:917.520000pt;}
.y134{bottom:919.440000pt;}
.y32{bottom:919.840000pt;}
.y161{bottom:923.520000pt;}
.y78{bottom:927.040000pt;}
.y4c{bottom:927.440000pt;}
.y106{bottom:930.000000pt;}
.ya0{bottom:932.000000pt;}
.y133{bottom:935.040000pt;}
.y31{bottom:935.440000pt;}
.y160{bottom:939.120000pt;}
.y105{bottom:942.480000pt;}
.y77{bottom:942.720000pt;}
.y4b{bottom:943.040000pt;}
.y132{bottom:950.720000pt;}
.y30{bottom:951.040000pt;}
.y104{bottom:953.360000pt;}
.y4a{bottom:958.720000pt;}
.y15f{bottom:962.800000pt;}
.y9f{bottom:963.600000pt;}
.y76{bottom:966.320000pt;}
.y2f{bottom:966.720000pt;}
.y49{bottom:974.320000pt;}
.y103{bottom:977.680000pt;}
.y15e{bottom:978.400000pt;}
.y2e{bottom:982.320000pt;}
.y48{bottom:990.000000pt;}
.y9e{bottom:992.240000pt;}
.y2d{bottom:998.000000pt;}
.y102{bottom:1001.920000pt;}
.y15d{bottom:1002.320000pt;}
.y2c{bottom:1013.600000pt;}
.y2a{bottom:1061.600000pt;}
.h1b{height:13.760000pt;}
.h1a{height:17.219351pt;}
.h14{height:19.595889pt;}
.h12{height:19.759188pt;}
.he{height:20.834595pt;}
.hc{height:22.252790pt;}
.h1f{height:23.600000pt;}
.h1d{height:23.680000pt;}
.h15{height:24.658161pt;}
.h2{height:26.686562pt;}
.h3{height:34.804688pt;}
.ha{height:37.032187pt;}
.hd{height:39.483850pt;}
.h20{height:41.765625pt;}
.h1e{height:45.246562pt;}
.h6{height:46.499062pt;}
.h11{height:47.173657pt;}
.h7{height:49.581562pt;}
.hb{height:50.062500pt;}
.h5{height:50.954062pt;}
.h1c{height:55.687500pt;}
.h9{height:55.736250pt;}
.h13{height:56.544855pt;}
.h8{height:61.076250pt;}
.h4{height:64.875937pt;}
.h19{height:66.324086pt;}
.hf{height:66.667985pt;}
.h17{height:68.126332pt;}
.h16{height:68.262584pt;}
.h10{height:214.602219pt;}
.h18{height:327.482054pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w5{width:15.387276pt;}
.w6{width:28.810219pt;}
.w8{width:45.107008pt;}
.w9{width:54.400000pt;}
.wb{width:100.160000pt;}
.wd{width:126.080000pt;}
.wc{width:128.266667pt;}
.wa{width:173.226667pt;}
.w3{width:180.697799pt;}
.w7{width:466.066667pt;}
.w4{width:532.047786pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xc{left:4.220012pt;}
.x26{left:6.880000pt;}
.x18{left:8.934988pt;}
.x30{left:33.920000pt;}
.x33{left:37.600000pt;}
.x31{left:51.706667pt;}
.x32{left:55.600000pt;}
.x34{left:59.360000pt;}
.x1{left:60.480000pt;}
.x2d{left:62.239988pt;}
.x1b{left:63.279988pt;}
.x2f{left:71.226667pt;}
.x10{left:74.479988pt;}
.x2c{left:76.239988pt;}
.x2b{left:78.639988pt;}
.x8{left:84.479988pt;}
.x2a{left:96.399988pt;}
.x36{left:98.879988pt;}
.x2e{left:100.719988pt;}
.x23{left:102.239988pt;}
.x12{left:130.966667pt;}
.x25{left:132.160000pt;}
.x1e{left:146.440000pt;}
.xe{left:155.706655pt;}
.x35{left:157.626655pt;}
.x24{left:167.946655pt;}
.x2{left:180.266655pt;}
.x11{left:181.226655pt;}
.x1d{left:192.026655pt;}
.x16{left:213.796037pt;}
.xb{left:220.043472pt;}
.x1c{left:237.226655pt;}
.x5{left:270.506655pt;}
.x6{left:295.306655pt;}
.x27{left:306.026667pt;}
.xa{left:306.973333pt;}
.x19{left:336.403157pt;}
.x28{left:406.826667pt;}
.x7{left:442.986655pt;}
.xd{left:450.026655pt;}
.x1f{left:451.626245pt;}
.x14{left:471.287359pt;}
.x9{left:489.013322pt;}
.x13{left:525.881962pt;}
.x21{left:531.040000pt;}
.x29{left:535.733333pt;}
.x20{left:541.816732pt;}
.x15{left:594.058173pt;}
.x17{left:625.978582pt;}
.x1a{left:628.270310pt;}
.x4{left:659.013322pt;}
.xf{left:665.013322pt;}
.x3{left:704.053322pt;}
.x22{left:720.053322pt;}
}




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