
    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_9c9c5ff68a3a13bf8665a915.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_b5e48f1a1498b00d236eabe7.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_e061f9f6179cb25c20737959.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.109375;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_819a9b34e38d523d672bc595.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.109375;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_96e1c0f3c828e359e2bc7ce4.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_69681d0c30db8a1d6f11aba9.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_b4ad9eb3246b3ba548a07210.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_d38ec20734733b0f4dcc3fa8.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.372070;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_217e395f7f331cb3ea5925ca.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.909180;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:ffa;src:url('chunks/assets/font_785384a0ab030c4f7444a400.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_ef121d362efb8dbfe22ba15b.woff2')format("woff");}.ffb{font-family:ffb;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:-20.880000px;}
.v3{vertical-align:-15.120000px;}
.v5{vertical-align:-12.240000px;}
.v8{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:12.240000px;}
.v2{vertical-align:15.120000px;}
.v9{vertical-align:18.000000px;}
.v7{vertical-align:40.320000px;}
.v4{vertical-align:45.360000px;}
.ls32{letter-spacing:-0.367800px;}
.ls31{letter-spacing:-0.244200px;}
.ls12{letter-spacing:-0.199200px;}
.lsa{letter-spacing:-0.186600px;}
.ls29{letter-spacing:-0.141600px;}
.ls7{letter-spacing:-0.135000px;}
.lsb{letter-spacing:-0.121200px;}
.ls28{letter-spacing:-0.101400px;}
.ls6{letter-spacing:-0.090000px;}
.ls9{letter-spacing:-0.084600px;}
.lse{letter-spacing:-0.063600px;}
.ls1e{letter-spacing:-0.037800px;}
.ls17{letter-spacing:-0.018360px;}
.ls13{letter-spacing:-0.013320px;}
.ls16{letter-spacing:-0.009000px;}
.ls8{letter-spacing:-0.008400px;}
.ls15{letter-spacing:-0.007560px;}
.ls2b{letter-spacing:-0.006120px;}
.ls4{letter-spacing:0.000000px;}
.ls21{letter-spacing:0.023040px;}
.ls22{letter-spacing:0.038160px;}
.lsc{letter-spacing:0.045360px;}
.lsd{letter-spacing:0.048960px;}
.ls1b{letter-spacing:0.051840px;}
.ls14{letter-spacing:0.053280px;}
.ls20{letter-spacing:0.055440px;}
.ls19{letter-spacing:0.060480px;}
.ls1c{letter-spacing:0.060600px;}
.ls3{letter-spacing:0.065520px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls2e{letter-spacing:0.095400px;}
.ls1f{letter-spacing:0.098400px;}
.ls27{letter-spacing:0.111000px;}
.ls11{letter-spacing:0.115800px;}
.ls2a{letter-spacing:0.118200px;}
.ls5{letter-spacing:0.144000px;}
.ls25{letter-spacing:0.153600px;}
.ls26{letter-spacing:0.166200px;}
.ls1a{letter-spacing:0.171840px;}
.ls2c{letter-spacing:0.172200px;}
.ls1d{letter-spacing:0.173400px;}
.ls2d{letter-spacing:0.180000px;}
.ls18{letter-spacing:0.180480px;}
.ls24{letter-spacing:0.217440px;}
.ls0{letter-spacing:0.360000px;}
.ls23{letter-spacing:0.383040px;}
.ls33{letter-spacing:47.726640px;}
.ls2f{letter-spacing:63.864000px;}
.lsf{letter-spacing:67.050360px;}
.ls30{letter-spacing:80.846640px;}
.ls10{letter-spacing:202.773600px;}
.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;}
}
.ws5{word-spacing:-14.493600px;}
.ws7{word-spacing:-14.372400px;}
.ws12{word-spacing:-13.399800px;}
.ws20{word-spacing:-13.398600px;}
.ws19{word-spacing:-13.392600px;}
.ws1d{word-spacing:-13.380000px;}
.ws1e{word-spacing:-13.344600px;}
.wsa{word-spacing:-13.342200px;}
.ws1a{word-spacing:-13.337400px;}
.ws14{word-spacing:-13.324800px;}
.ws21{word-spacing:-13.321800px;}
.ws17{word-spacing:-13.287000px;}
.ws18{word-spacing:-13.281840px;}
.wse{word-spacing:-13.279680px;}
.ws16{word-spacing:-13.278240px;}
.ws8{word-spacing:-13.275360px;}
.ws2{word-spacing:-13.226400px;}
.ws1f{word-spacing:-13.220280px;}
.wsf{word-spacing:-13.218840px;}
.ws24{word-spacing:-13.217400px;}
.wsd{word-spacing:-13.213080px;}
.ws10{word-spacing:-13.208040px;}
.ws13{word-spacing:-13.188600px;}
.ws9{word-spacing:-13.162800px;}
.ws1b{word-spacing:-13.125000px;}
.ws1c{word-spacing:-13.084800px;}
.ws3{word-spacing:-13.039800px;}
.wsc{word-spacing:-13.027200px;}
.ws22{word-spacing:-12.982200px;}
.ws23{word-spacing:-12.858600px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.wsb{word-spacing:-9.266400px;}
.ws11{word-spacing:-8.614200px;}
.ws15{word-spacing:-8.553600px;}
.ws6{word-spacing:0.000000px;}
.ws4{word-spacing:4.304880px;}
._b{margin-left:-3.939960px;}
._2{margin-left:-2.705400px;}
._0{margin-left:-1.050000px;}
._1{width:1.055640px;}
._4{width:2.104200px;}
._3{width:3.272760px;}
._7{width:4.550522px;}
._5{width:5.831400px;}
._9{width:7.034040px;}
._a{width:8.176560px;}
._6{width:9.559200px;}
._8{width:11.062200px;}
._10{width:14.581680px;}
._d{width:16.076400px;}
._f{width:17.111400px;}
._11{width:18.216360px;}
._c{width:20.320560px;}
._e{width:202.773600px;}
.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;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs7{font-size:72.000000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y73{bottom:0.090000px;}
.y66{bottom:5.040000px;}
.y8b{bottom:7.830000px;}
.y89{bottom:7.920000px;}
.y87{bottom:7.950000px;}
.yec{bottom:13.140000px;}
.y65{bottom:15.120000px;}
.y75{bottom:17.190000px;}
.y71{bottom:19.260000px;}
.y67{bottom:24.570000px;}
.y74{bottom:34.830000px;}
.yad{bottom:35.190000px;}
.y72{bottom:41.670000px;}
.y2{bottom:73.380000px;}
.y27{bottom:74.190000px;}
.ycf{bottom:74.460000px;}
.y1{bottom:101.640000px;}
.y98{bottom:111.360000px;}
.y6e{bottom:116.400000px;}
.ybd{bottom:117.210000px;}
.y130{bottom:123.060000px;}
.y97{bottom:128.910000px;}
.y42{bottom:130.350000px;}
.ybc{bottom:132.240000px;}
.y10d{bottom:135.480000px;}
.y12f{bottom:140.610000px;}
.y41{bottom:147.900000px;}
.y6d{bottom:152.040000px;}
.y10c{bottom:153.030000px;}
.ybb{bottom:159.510000px;}
.y154{bottom:160.320000px;}
.y96{bottom:164.460000px;}
.y40{bottom:165.540000px;}
.y12e{bottom:167.250000px;}
.y10b{bottom:170.670000px;}
.y25{bottom:176.790000px;}
.y153{bottom:177.870000px;}
.y95{bottom:182.100000px;}
.y3f{bottom:183.090000px;}
.yba{bottom:186.870000px;}
.y6c{bottom:187.590000px;}
.ye6{bottom:187.950000px;}
.y10a{bottom:188.220000px;}
.y12d{bottom:193.800000px;}
.y24{bottom:194.340000px;}
.y152{bottom:195.510000px;}
.y3e{bottom:200.730000px;}
.ye5{bottom:202.890000px;}
.y109{bottom:205.860000px;}
.y12c{bottom:211.350000px;}
.y23{bottom:211.980000px;}
.yb9{bottom:214.230000px;}
.y94{bottom:217.650000px;}
.y3d{bottom:218.280000px;}
.y151{bottom:222.060000px;}
.y6b{bottom:223.230000px;}
.y108{bottom:223.410000px;}
.y12b{bottom:228.990000px;}
.y22{bottom:229.530000px;}
.ye4{bottom:230.250000px;}
.y93{bottom:235.290000px;}
.y3c{bottom:235.830000px;}
.y150{bottom:239.610000px;}
.yb8{bottom:241.590000px;}
.y21{bottom:247.080000px;}
.y92{bottom:252.840000px;}
.y12a{bottom:255.540000px;}
.y14f{bottom:257.250000px;}
.ye3{bottom:257.520000px;}
.y6a{bottom:258.780000px;}
.y107{bottom:258.960000px;}
.y3b{bottom:262.470000px;}
.yb7{bottom:268.860000px;}
.y91{bottom:270.390000px;}
.y129{bottom:273.180000px;}
.y106{bottom:276.600000px;}
.y20{bottom:282.720000px;}
.y14e{bottom:283.800000px;}
.ye2{bottom:284.880000px;}
.y105{bottom:294.150000px;}
.y69{bottom:294.330000px;}
.yb6{bottom:296.220000px;}
.y90{bottom:296.940000px;}
.y3a{bottom:298.020000px;}
.y128{bottom:299.730000px;}
.y1f{bottom:300.270000px;}
.y14d{bottom:301.440000px;}
.y104{bottom:311.790000px;}
.y68{bottom:311.970000px;}
.ye1{bottom:312.240000px;}
.y127{bottom:317.280000px;}
.y1e{bottom:317.820000px;}
.y14c{bottom:318.990000px;}
.yb5{bottom:323.580000px;}
.y64{bottom:326.190000px;}
.y8f{bottom:327.000000px;}
.y103{bottom:329.340000px;}
.y39{bottom:330.240000px;}
.y1d{bottom:335.460000px;}
.ye0{bottom:339.600000px;}
.y126{bottom:344.190000px;}
.y14b{bottom:345.540000px;}
.yb4{bottom:350.940000px;}
.y54{bottom:352.650000px;}
.y8e{bottom:354.360000px;}
.y14a{bottom:363.180000px;}
.y102{bottom:364.890000px;}
.ydf{bottom:366.870000px;}
.y53{bottom:370.200000px;}
.y1c{bottom:371.010000px;}
.yb3{bottom:378.210000px;}
.y8d{bottom:381.630000px;}
.y101{bottom:382.530000px;}
.y63{bottom:386.310000px;}
.y52{bottom:387.750000px;}
.y1b{bottom:388.650000px;}
.y149{bottom:389.730000px;}
.y125{bottom:392.520000px;}
.yde{bottom:394.260000px;}
.y100{bottom:400.080000px;}
.y62{bottom:403.950000px;}
.y51{bottom:405.390000px;}
.yb2{bottom:405.570000px;}
.y1a{bottom:406.200000px;}
.y148{bottom:407.370000px;}
.y8c{bottom:408.990000px;}
.yff{bottom:417.630000px;}
.y124{bottom:419.430000px;}
.y61{bottom:421.500000px;}
.ydd{bottom:421.620000px;}
.y50{bottom:422.940000px;}
.y19{bottom:423.750000px;}
.yb1{bottom:432.930000px;}
.y147{bottom:433.920000px;}
.yfe{bottom:435.270000px;}
.y8a{bottom:436.350000px;}
.y60{bottom:439.050000px;}
.y4f{bottom:440.580000px;}
.ydc{bottom:448.890000px;}
.y18{bottom:450.660000px;}
.y146{bottom:451.470000px;}
.y123{bottom:456.420000px;}
.y5f{bottom:456.690000px;}
.y4e{bottom:458.130000px;}
.yb0{bottom:460.200000px;}
.y86{bottom:463.620000px;}
.yfd{bottom:470.850000px;}
.y122{bottom:474.000000px;}
.ydb{bottom:476.250000px;}
.y145{bottom:478.140000px;}
.yaf{bottom:487.590000px;}
.yfc{bottom:488.490000px;}
.y88{bottom:491.010000px;}
.y5e{bottom:492.270000px;}
.y4d{bottom:493.710000px;}
.y144{bottom:495.690000px;}
.y17{bottom:499.290000px;}
.y121{bottom:500.910000px;}
.yda{bottom:503.610000px;}
.yfb{bottom:506.040000px;}
.y5d{bottom:509.910000px;}
.y4c{bottom:511.350000px;}
.y143{bottom:513.330000px;}
.yac{bottom:514.950000px;}
.yfa{bottom:523.590000px;}
.y4b{bottom:528.900000px;}
.yd9{bottom:530.970000px;}
.y16{bottom:536.370000px;}
.y5c{bottom:536.460000px;}
.y120{bottom:538.260000px;}
.y85{bottom:539.700000px;}
.y142{bottom:539.880000px;}
.yf9{bottom:541.230000px;}
.yae{bottom:542.310000px;}
.y4a{bottom:546.540000px;}
.y15{bottom:553.920000px;}
.y141{bottom:557.430000px;}
.yd8{bottom:558.240000px;}
.yf8{bottom:558.780000px;}
.y49{bottom:564.090000px;}
.y14{bottom:571.470000px;}
.y5b{bottom:572.010000px;}
.y84{bottom:575.340000px;}
.y48{bottom:581.640000px;}
.y140{bottom:584.070000px;}
.yd7{bottom:585.600000px;}
.yf7{bottom:585.690000px;}
.y11f{bottom:586.590000px;}
.y13{bottom:589.110000px;}
.y5a{bottom:589.650000px;}
.yab{bottom:591.000000px;}
.y83{bottom:592.890000px;}
.y47{bottom:599.280000px;}
.y13f{bottom:601.620000px;}
.y11e{bottom:604.140000px;}
.y12{bottom:606.660000px;}
.y59{bottom:607.200000px;}
.y82{bottom:610.440000px;}
.yd6{bottom:612.960000px;}
.y46{bottom:616.830000px;}
.y13e{bottom:619.260000px;}
.y11{bottom:624.300000px;}
.y58{bottom:624.840000px;}
.yaa{bottom:626.550000px;}
.y81{bottom:628.080000px;}
.yf6{bottom:631.410000px;}
.y11d{bottom:633.660000px;}
.yd5{bottom:640.320000px;}
.y10{bottom:641.850000px;}
.y45{bottom:643.470000px;}
.ya9{bottom:644.190000px;}
.y80{bottom:645.630000px;}
.y13d{bottom:645.810000px;}
.y57{bottom:651.390000px;}
.y11c{bottom:653.820000px;}
.yf5{bottom:658.680000px;}
.yf{bottom:659.400000px;}
.ya8{bottom:661.740000px;}
.y13c{bottom:663.360000px;}
.yd4{bottom:667.590000px;}
.y7f{bottom:672.180000px;}
.y11b{bottom:673.980000px;}
.ye{bottom:677.040000px;}
.y44{bottom:679.020000px;}
.ya7{bottom:679.290000px;}
.yf4{bottom:686.040000px;}
.y56{bottom:686.940000px;}
.y13b{bottom:690.000000px;}
.yd{bottom:694.590000px;}
.yd3{bottom:694.950000px;}
.y7e{bottom:704.850000px;}
.y13a{bottom:707.550000px;}
.y43{bottom:711.240000px;}
.y11a{bottom:712.140000px;}
.ya6{bottom:712.320000px;}
.yf3{bottom:713.400000px;}
.y55{bottom:719.160000px;}
.yc{bottom:721.500000px;}
.yd2{bottom:722.310000px;}
.y139{bottom:734.190000px;}
.ya5{bottom:739.590000px;}
.yf2{bottom:740.670000px;}
.y7d{bottom:740.760000px;}
.y119{bottom:747.690000px;}
.yd1{bottom:749.610000px;}
.y38{bottom:749.850000px;}
.y138{bottom:751.740000px;}
.y118{bottom:765.330000px;}
.ya4{bottom:766.950000px;}
.y37{bottom:767.490000px;}
.yf1{bottom:768.030000px;}
.y137{bottom:769.290000px;}
.yb{bottom:769.830000px;}
.y117{bottom:782.880000px;}
.y36{bottom:785.040000px;}
.ycd{bottom:786.930000px;}
.y7c{bottom:789.000000px;}
.ya3{bottom:794.310000px;}
.yf0{bottom:795.390000px;}
.y136{bottom:795.930000px;}
.yd0{bottom:798.390000px;}
.y116{bottom:800.520000px;}
.y35{bottom:802.680000px;}
.ycc{bottom:804.480000px;}
.ya{bottom:805.650000px;}
.y135{bottom:813.480000px;}
.y115{bottom:818.070000px;}
.y34{bottom:820.230000px;}
.ya2{bottom:821.670000px;}
.yef{bottom:822.750000px;}
.y7b{bottom:824.550000px;}
.yce{bottom:824.940000px;}
.ycb{bottom:840.030000px;}
.y9{bottom:841.650000px;}
.y114{bottom:844.980000px;}
.y33{bottom:846.780000px;}
.ya1{bottom:848.940000px;}
.yee{bottom:850.020000px;}
.yca{bottom:857.670000px;}
.y7a{bottom:860.190000px;}
.yc9{bottom:875.220000px;}
.ya0{bottom:876.300000px;}
.yed{bottom:877.380000px;}
.y32{bottom:879.450000px;}
.y8{bottom:881.430000px;}
.y155{bottom:884.220000px;}
.yc8{bottom:892.860000px;}
.y113{bottom:893.220000px;}
.y79{bottom:895.740000px;}
.y7{bottom:899.430000px;}
.y134{bottom:901.860000px;}
.y9f{bottom:903.660000px;}
.yea{bottom:904.740000px;}
.y112{bottom:910.860000px;}
.y31{bottom:915.270000px;}
.yc7{bottom:919.410000px;}
.y111{bottom:928.410000px;}
.y9e{bottom:930.930000px;}
.y78{bottom:931.380000px;}
.y6{bottom:931.740000px;}
.yeb{bottom:932.100000px;}
.y133{bottom:936.960000px;}
.y110{bottom:945.960000px;}
.y5{bottom:951.090000px;}
.yc6{bottom:954.960000px;}
.y9d{bottom:958.290000px;}
.y30{bottom:963.600000px;}
.y77{bottom:966.930000px;}
.yc5{bottom:972.600000px;}
.ye9{bottom:980.790000px;}
.y2f{bottom:981.150000px;}
.y9c{bottom:985.650000px;}
.y4{bottom:989.340000px;}
.yc4{bottom:990.150000px;}
.y2e{bottom:998.790000px;}
.y10f{bottom:999.150000px;}
.y76{bottom:1002.480000px;}
.yc3{bottom:1007.790000px;}
.y3{bottom:1014.030000px;}
.ye8{bottom:1016.370000px;}
.y70{bottom:1016.730000px;}
.y10e{bottom:1016.820000px;}
.y132{bottom:1025.370000px;}
.ye7{bottom:1033.920000px;}
.y2d{bottom:1034.370000px;}
.y131{bottom:1042.920000px;}
.yc2{bottom:1043.370000px;}
.y2c{bottom:1051.920000px;}
.yc1{bottom:1060.920000px;}
.y2b{bottom:1069.560000px;}
.y9b{bottom:1069.920000px;}
.yc0{bottom:1078.560000px;}
.y2a{bottom:1087.110000px;}
.y9a{bottom:1087.560000px;}
.ybf{bottom:1096.110000px;}
.y6f{bottom:1104.750000px;}
.y99{bottom:1105.110000px;}
.ybe{bottom:1113.750000px;}
.y29{bottom:1122.750000px;}
.y28{bottom:1140.300000px;}
.y26{bottom:1194.300000px;}
.h16{height:26.550000px;}
.h17{height:26.580000px;}
.h14{height:26.640000px;}
.h15{height:26.670000px;}
.h2{height:30.022383px;}
.h6{height:37.191445px;}
.hc{height:38.790000px;}
.h3{height:40.100098px;}
.hf{height:49.050000px;}
.h13{height:50.902383px;}
.h11{height:52.238672px;}
.h7{height:53.573730px;}
.h18{height:53.910000px;}
.h12{height:54.030000px;}
.h8{height:55.779258px;}
.h1c{height:57.323320px;}
.h5{height:58.706543px;}
.hb{height:59.973223px;}
.h1d{height:61.793886px;}
.ha{height:62.585859px;}
.h9{height:68.582109px;}
.h1b{height:74.004654px;}
.h10{height:74.562891px;}
.h4{height:74.746582px;}
.he{height:93.893730px;}
.hd{height:119.922891px;}
.h19{height:893.160000px;}
.h1a{height:893.250000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w21{width:34.920000px;}
.w1c{width:39.870000px;}
.w20{width:39.900000px;}
.w1d{width:39.960000px;}
.w1e{width:41.400000px;}
.w17{width:43.470000px;}
.w16{width:43.500000px;}
.w14{width:43.560000px;}
.w1f{width:45.810000px;}
.w26{width:48.450000px;}
.w13{width:51.750000px;}
.w25{width:60.030000px;}
.w15{width:60.120000px;}
.wc{width:66.690000px;}
.w24{width:68.400000px;}
.w1b{width:72.480000px;}
.w22{width:72.990000px;}
.wf{width:77.880000px;}
.wd{width:81.810000px;}
.we{width:84.780000px;}
.w8{width:93.780000px;}
.w9{width:93.810000px;}
.wa{width:100.890000px;}
.wb{width:103.170000px;}
.w4{width:105.690000px;}
.w7{width:107.280000px;}
.w5{width:127.560000px;}
.w11{width:155.070000px;}
.w10{width:186.750000px;}
.w23{width:319.440000px;}
.w3{width:339.870000px;}
.w12{width:358.680000px;}
.w6{width:397.920000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.w19{width:1262.250000px;}
.w1a{width:1262.519981px;}
.w18{width:1262.520000px;}
.x0{left:0.000000px;}
.x2b{left:3.510000px;}
.x16{left:4.860000px;}
.xd{left:8.100000px;}
.x1{left:68.040000px;}
.x4a{left:95.039987px;}
.x29{left:107.999981px;}
.x4b{left:111.239987px;}
.xa{left:119.640000px;}
.xe{left:122.039987px;}
.xf{left:128.820000px;}
.x1b{left:144.180000px;}
.x15{left:149.400000px;}
.xb{left:155.640000px;}
.x14{left:160.050000px;}
.x40{left:161.099981px;}
.x11{left:167.250000px;}
.x13{left:169.950000px;}
.x10{left:173.100000px;}
.x2a{left:187.290000px;}
.x20{left:189.390000px;}
.x12{left:210.990000px;}
.x41{left:215.490000px;}
.x2{left:229.889987px;}
.x1c{left:248.160000px;}
.x7{left:258.149987px;}
.x2c{left:260.580000px;}
.x17{left:277.680000px;}
.x5{left:281.639987px;}
.x42{left:289.200000px;}
.x2d{left:301.170000px;}
.x9{left:316.289987px;}
.x2e{left:341.850000px;}
.x21{left:345.180000px;}
.x44{left:350.040000px;}
.x2f{left:382.530000px;}
.x18{left:385.680000px;}
.x45{left:394.230000px;}
.x1d{left:398.190000px;}
.xc{left:407.910000px;}
.x27{left:414.569981px;}
.x30{left:423.120000px;}
.x22{left:441.930000px;}
.x46{left:455.070000px;}
.x31{left:463.800000px;}
.x19{left:480.180000px;}
.x1e{left:483.690000px;}
.x47{left:499.350000px;}
.x23{left:502.770000px;}
.x32{left:504.480000px;}
.x33{left:545.070000px;}
.x24{left:546.990000px;}
.x48{left:548.610000px;}
.x1f{left:562.380000px;}
.x1a{left:574.710000px;}
.x34{left:585.750000px;}
.x8{left:590.819987px;}
.x25{left:599.550000px;}
.x43{left:609.360000px;}
.x35{left:627.870000px;}
.x26{left:643.740000px;}
.x6{left:667.139987px;}
.x36{left:668.550000px;}
.x37{left:715.080000px;}
.x4{left:726.809987px;}
.x38{left:755.760000px;}
.x39{left:796.470000px;}
.x49{left:808.619987px;}
.x3{left:816.989987px;}
.x3a{left:837.060000px;}
.x3b{left:877.740000px;}
.x3c{left:918.420000px;}
.x3d{left:959.010000px;}
.x3e{left:999.690000px;}
.x3f{left:1040.370000px;}
.x28{left:1146.299981px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v5{vertical-align:-10.880000pt;}
.v8{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:10.880000pt;}
.v2{vertical-align:13.440000pt;}
.v9{vertical-align:16.000000pt;}
.v7{vertical-align:35.840000pt;}
.v4{vertical-align:40.320000pt;}
.ls32{letter-spacing:-0.326933pt;}
.ls31{letter-spacing:-0.217067pt;}
.ls12{letter-spacing:-0.177067pt;}
.lsa{letter-spacing:-0.165867pt;}
.ls29{letter-spacing:-0.125867pt;}
.ls7{letter-spacing:-0.120000pt;}
.lsb{letter-spacing:-0.107733pt;}
.ls28{letter-spacing:-0.090133pt;}
.ls6{letter-spacing:-0.080000pt;}
.ls9{letter-spacing:-0.075200pt;}
.lse{letter-spacing:-0.056533pt;}
.ls1e{letter-spacing:-0.033600pt;}
.ls17{letter-spacing:-0.016320pt;}
.ls13{letter-spacing:-0.011840pt;}
.ls16{letter-spacing:-0.008000pt;}
.ls8{letter-spacing:-0.007467pt;}
.ls15{letter-spacing:-0.006720pt;}
.ls2b{letter-spacing:-0.005440pt;}
.ls4{letter-spacing:0.000000pt;}
.ls21{letter-spacing:0.020480pt;}
.ls22{letter-spacing:0.033920pt;}
.lsc{letter-spacing:0.040320pt;}
.lsd{letter-spacing:0.043520pt;}
.ls1b{letter-spacing:0.046080pt;}
.ls14{letter-spacing:0.047360pt;}
.ls20{letter-spacing:0.049280pt;}
.ls19{letter-spacing:0.053760pt;}
.ls1c{letter-spacing:0.053867pt;}
.ls3{letter-spacing:0.058240pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls2e{letter-spacing:0.084800pt;}
.ls1f{letter-spacing:0.087467pt;}
.ls27{letter-spacing:0.098667pt;}
.ls11{letter-spacing:0.102933pt;}
.ls2a{letter-spacing:0.105067pt;}
.ls5{letter-spacing:0.128000pt;}
.ls25{letter-spacing:0.136533pt;}
.ls26{letter-spacing:0.147733pt;}
.ls1a{letter-spacing:0.152747pt;}
.ls2c{letter-spacing:0.153067pt;}
.ls1d{letter-spacing:0.154133pt;}
.ls2d{letter-spacing:0.160000pt;}
.ls18{letter-spacing:0.160427pt;}
.ls24{letter-spacing:0.193280pt;}
.ls0{letter-spacing:0.320000pt;}
.ls23{letter-spacing:0.340480pt;}
.ls33{letter-spacing:42.423680pt;}
.ls2f{letter-spacing:56.768000pt;}
.lsf{letter-spacing:59.600320pt;}
.ls30{letter-spacing:71.863680pt;}
.ls10{letter-spacing:180.243200pt;}
.ws5{word-spacing:-12.883200pt;}
.ws7{word-spacing:-12.775467pt;}
.ws12{word-spacing:-11.910933pt;}
.ws20{word-spacing:-11.909867pt;}
.ws19{word-spacing:-11.904533pt;}
.ws1d{word-spacing:-11.893333pt;}
.ws1e{word-spacing:-11.861867pt;}
.wsa{word-spacing:-11.859733pt;}
.ws1a{word-spacing:-11.855467pt;}
.ws14{word-spacing:-11.844267pt;}
.ws21{word-spacing:-11.841600pt;}
.ws17{word-spacing:-11.810667pt;}
.ws18{word-spacing:-11.806080pt;}
.wse{word-spacing:-11.804160pt;}
.ws16{word-spacing:-11.802880pt;}
.ws8{word-spacing:-11.800320pt;}
.ws2{word-spacing:-11.756800pt;}
.ws1f{word-spacing:-11.751360pt;}
.wsf{word-spacing:-11.750080pt;}
.ws24{word-spacing:-11.748800pt;}
.wsd{word-spacing:-11.744960pt;}
.ws10{word-spacing:-11.740480pt;}
.ws13{word-spacing:-11.723200pt;}
.ws9{word-spacing:-11.700267pt;}
.ws1b{word-spacing:-11.666667pt;}
.ws1c{word-spacing:-11.630933pt;}
.ws3{word-spacing:-11.590933pt;}
.wsc{word-spacing:-11.579733pt;}
.ws22{word-spacing:-11.539733pt;}
.ws23{word-spacing:-11.429867pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.wsb{word-spacing:-8.236800pt;}
.ws11{word-spacing:-7.657067pt;}
.ws15{word-spacing:-7.603200pt;}
.ws6{word-spacing:0.000000pt;}
.ws4{word-spacing:3.826560pt;}
._b{margin-left:-3.502187pt;}
._2{margin-left:-2.404800pt;}
._0{margin-left:-0.933333pt;}
._1{width:0.938347pt;}
._4{width:1.870400pt;}
._3{width:2.909120pt;}
._7{width:4.044908pt;}
._5{width:5.183466pt;}
._9{width:6.252480pt;}
._a{width:7.268054pt;}
._6{width:8.497067pt;}
._8{width:9.833067pt;}
._10{width:12.961493pt;}
._d{width:14.290133pt;}
._f{width:15.210133pt;}
._11{width:16.192320pt;}
._c{width:18.062720pt;}
._e{width:180.243200pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs7{font-size:64.000000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y73{bottom:0.080000pt;}
.y66{bottom:4.480000pt;}
.y8b{bottom:6.960000pt;}
.y89{bottom:7.040000pt;}
.y87{bottom:7.066667pt;}
.yec{bottom:11.680000pt;}
.y65{bottom:13.440000pt;}
.y75{bottom:15.280000pt;}
.y71{bottom:17.120000pt;}
.y67{bottom:21.840000pt;}
.y74{bottom:30.960000pt;}
.yad{bottom:31.280000pt;}
.y72{bottom:37.040000pt;}
.y2{bottom:65.226667pt;}
.y27{bottom:65.946667pt;}
.ycf{bottom:66.186667pt;}
.y1{bottom:90.346667pt;}
.y98{bottom:98.986667pt;}
.y6e{bottom:103.466667pt;}
.ybd{bottom:104.186667pt;}
.y130{bottom:109.386667pt;}
.y97{bottom:114.586667pt;}
.y42{bottom:115.866667pt;}
.ybc{bottom:117.546667pt;}
.y10d{bottom:120.426667pt;}
.y12f{bottom:124.986667pt;}
.y41{bottom:131.466667pt;}
.y6d{bottom:135.146667pt;}
.y10c{bottom:136.026667pt;}
.ybb{bottom:141.786667pt;}
.y154{bottom:142.506667pt;}
.y96{bottom:146.186667pt;}
.y40{bottom:147.146667pt;}
.y12e{bottom:148.666667pt;}
.y10b{bottom:151.706667pt;}
.y25{bottom:157.146667pt;}
.y153{bottom:158.106667pt;}
.y95{bottom:161.866667pt;}
.y3f{bottom:162.746667pt;}
.yba{bottom:166.106667pt;}
.y6c{bottom:166.746667pt;}
.ye6{bottom:167.066667pt;}
.y10a{bottom:167.306667pt;}
.y12d{bottom:172.266667pt;}
.y24{bottom:172.746667pt;}
.y152{bottom:173.786667pt;}
.y3e{bottom:178.426667pt;}
.ye5{bottom:180.346667pt;}
.y109{bottom:182.986667pt;}
.y12c{bottom:187.866667pt;}
.y23{bottom:188.426667pt;}
.yb9{bottom:190.426667pt;}
.y94{bottom:193.466667pt;}
.y3d{bottom:194.026667pt;}
.y151{bottom:197.386667pt;}
.y6b{bottom:198.426667pt;}
.y108{bottom:198.586667pt;}
.y12b{bottom:203.546667pt;}
.y22{bottom:204.026667pt;}
.ye4{bottom:204.666667pt;}
.y93{bottom:209.146667pt;}
.y3c{bottom:209.626667pt;}
.y150{bottom:212.986667pt;}
.yb8{bottom:214.746667pt;}
.y21{bottom:219.626667pt;}
.y92{bottom:224.746667pt;}
.y12a{bottom:227.146667pt;}
.y14f{bottom:228.666667pt;}
.ye3{bottom:228.906667pt;}
.y6a{bottom:230.026667pt;}
.y107{bottom:230.186667pt;}
.y3b{bottom:233.306667pt;}
.yb7{bottom:238.986667pt;}
.y91{bottom:240.346667pt;}
.y129{bottom:242.826667pt;}
.y106{bottom:245.866667pt;}
.y20{bottom:251.306667pt;}
.y14e{bottom:252.266667pt;}
.ye2{bottom:253.226667pt;}
.y105{bottom:261.466667pt;}
.y69{bottom:261.626667pt;}
.yb6{bottom:263.306667pt;}
.y90{bottom:263.946667pt;}
.y3a{bottom:264.906667pt;}
.y128{bottom:266.426667pt;}
.y1f{bottom:266.906667pt;}
.y14d{bottom:267.946667pt;}
.y104{bottom:277.146667pt;}
.y68{bottom:277.306667pt;}
.ye1{bottom:277.546667pt;}
.y127{bottom:282.026667pt;}
.y1e{bottom:282.506667pt;}
.y14c{bottom:283.546667pt;}
.yb5{bottom:287.626667pt;}
.y64{bottom:289.946667pt;}
.y8f{bottom:290.666667pt;}
.y103{bottom:292.746667pt;}
.y39{bottom:293.546667pt;}
.y1d{bottom:298.186667pt;}
.ye0{bottom:301.866667pt;}
.y126{bottom:305.946667pt;}
.y14b{bottom:307.146667pt;}
.yb4{bottom:311.946667pt;}
.y54{bottom:313.466667pt;}
.y8e{bottom:314.986667pt;}
.y14a{bottom:322.826667pt;}
.y102{bottom:324.346667pt;}
.ydf{bottom:326.106667pt;}
.y53{bottom:329.066667pt;}
.y1c{bottom:329.786667pt;}
.yb3{bottom:336.186667pt;}
.y8d{bottom:339.226667pt;}
.y101{bottom:340.026667pt;}
.y63{bottom:343.386667pt;}
.y52{bottom:344.666667pt;}
.y1b{bottom:345.466667pt;}
.y149{bottom:346.426667pt;}
.y125{bottom:348.906667pt;}
.yde{bottom:350.453333pt;}
.y100{bottom:355.626667pt;}
.y62{bottom:359.066667pt;}
.y51{bottom:360.346667pt;}
.yb2{bottom:360.506667pt;}
.y1a{bottom:361.066667pt;}
.y148{bottom:362.106667pt;}
.y8c{bottom:363.546667pt;}
.yff{bottom:371.226667pt;}
.y124{bottom:372.826667pt;}
.y61{bottom:374.666667pt;}
.ydd{bottom:374.773333pt;}
.y50{bottom:375.946667pt;}
.y19{bottom:376.666667pt;}
.yb1{bottom:384.826667pt;}
.y147{bottom:385.706667pt;}
.yfe{bottom:386.906667pt;}
.y8a{bottom:387.866667pt;}
.y60{bottom:390.266667pt;}
.y4f{bottom:391.626667pt;}
.ydc{bottom:399.013333pt;}
.y18{bottom:400.586667pt;}
.y146{bottom:401.306667pt;}
.y123{bottom:405.706667pt;}
.y5f{bottom:405.946667pt;}
.y4e{bottom:407.226667pt;}
.yb0{bottom:409.066667pt;}
.y86{bottom:412.106667pt;}
.yfd{bottom:418.533333pt;}
.y122{bottom:421.333333pt;}
.ydb{bottom:423.333333pt;}
.y145{bottom:425.013333pt;}
.yaf{bottom:433.413333pt;}
.yfc{bottom:434.213333pt;}
.y88{bottom:436.453333pt;}
.y5e{bottom:437.573333pt;}
.y4d{bottom:438.853333pt;}
.y144{bottom:440.613333pt;}
.y17{bottom:443.813333pt;}
.y121{bottom:445.253333pt;}
.yda{bottom:447.653333pt;}
.yfb{bottom:449.813333pt;}
.y5d{bottom:453.253333pt;}
.y4c{bottom:454.533333pt;}
.y143{bottom:456.293333pt;}
.yac{bottom:457.733333pt;}
.yfa{bottom:465.413333pt;}
.y4b{bottom:470.133333pt;}
.yd9{bottom:471.973333pt;}
.y16{bottom:476.773333pt;}
.y5c{bottom:476.853333pt;}
.y120{bottom:478.453333pt;}
.y85{bottom:479.733333pt;}
.y142{bottom:479.893333pt;}
.yf9{bottom:481.093333pt;}
.yae{bottom:482.053333pt;}
.y4a{bottom:485.813333pt;}
.y15{bottom:492.373333pt;}
.y141{bottom:495.493333pt;}
.yd8{bottom:496.213333pt;}
.yf8{bottom:496.693333pt;}
.y49{bottom:501.413333pt;}
.y14{bottom:507.973333pt;}
.y5b{bottom:508.453333pt;}
.y84{bottom:511.413333pt;}
.y48{bottom:517.013333pt;}
.y140{bottom:519.173333pt;}
.yd7{bottom:520.533333pt;}
.yf7{bottom:520.613333pt;}
.y11f{bottom:521.413333pt;}
.y13{bottom:523.653333pt;}
.y5a{bottom:524.133333pt;}
.yab{bottom:525.333333pt;}
.y83{bottom:527.013333pt;}
.y47{bottom:532.693333pt;}
.y13f{bottom:534.773333pt;}
.y11e{bottom:537.013333pt;}
.y12{bottom:539.253333pt;}
.y59{bottom:539.733333pt;}
.y82{bottom:542.613333pt;}
.yd6{bottom:544.853333pt;}
.y46{bottom:548.293333pt;}
.y13e{bottom:550.453333pt;}
.y11{bottom:554.933333pt;}
.y58{bottom:555.413333pt;}
.yaa{bottom:556.933333pt;}
.y81{bottom:558.293333pt;}
.yf6{bottom:561.253333pt;}
.y11d{bottom:563.253333pt;}
.yd5{bottom:569.173333pt;}
.y10{bottom:570.533333pt;}
.y45{bottom:571.973333pt;}
.ya9{bottom:572.613333pt;}
.y80{bottom:573.893333pt;}
.y13d{bottom:574.053333pt;}
.y57{bottom:579.013333pt;}
.y11c{bottom:581.173333pt;}
.yf5{bottom:585.493333pt;}
.yf{bottom:586.133333pt;}
.ya8{bottom:588.213333pt;}
.y13c{bottom:589.653333pt;}
.yd4{bottom:593.413333pt;}
.y7f{bottom:597.493333pt;}
.y11b{bottom:599.093333pt;}
.ye{bottom:601.813333pt;}
.y44{bottom:603.573333pt;}
.ya7{bottom:603.813333pt;}
.yf4{bottom:609.813333pt;}
.y56{bottom:610.613333pt;}
.y13b{bottom:613.333333pt;}
.yd{bottom:617.413333pt;}
.yd3{bottom:617.733333pt;}
.y7e{bottom:626.533333pt;}
.y13a{bottom:628.933333pt;}
.y43{bottom:632.213333pt;}
.y11a{bottom:633.013333pt;}
.ya6{bottom:633.173333pt;}
.yf3{bottom:634.133333pt;}
.y55{bottom:639.253333pt;}
.yc{bottom:641.333333pt;}
.yd2{bottom:642.053333pt;}
.y139{bottom:652.613333pt;}
.ya5{bottom:657.413333pt;}
.yf2{bottom:658.373333pt;}
.y7d{bottom:658.453333pt;}
.y119{bottom:664.613333pt;}
.yd1{bottom:666.320000pt;}
.y38{bottom:666.533333pt;}
.y138{bottom:668.213333pt;}
.y118{bottom:680.293333pt;}
.ya4{bottom:681.733333pt;}
.y37{bottom:682.213333pt;}
.yf1{bottom:682.693333pt;}
.y137{bottom:683.813333pt;}
.yb{bottom:684.293333pt;}
.y117{bottom:695.893333pt;}
.y36{bottom:697.813333pt;}
.ycd{bottom:699.493333pt;}
.y7c{bottom:701.333333pt;}
.ya3{bottom:706.053333pt;}
.yf0{bottom:707.013333pt;}
.y136{bottom:707.493333pt;}
.yd0{bottom:709.680000pt;}
.y116{bottom:711.573333pt;}
.y35{bottom:713.493333pt;}
.ycc{bottom:715.093333pt;}
.ya{bottom:716.133333pt;}
.y135{bottom:723.093333pt;}
.y115{bottom:727.173333pt;}
.y34{bottom:729.093333pt;}
.ya2{bottom:730.373333pt;}
.yef{bottom:731.333333pt;}
.y7b{bottom:732.933333pt;}
.yce{bottom:733.280000pt;}
.ycb{bottom:746.693333pt;}
.y9{bottom:748.133333pt;}
.y114{bottom:751.093333pt;}
.y33{bottom:752.693333pt;}
.ya1{bottom:754.613333pt;}
.yee{bottom:755.573333pt;}
.yca{bottom:762.373333pt;}
.y7a{bottom:764.613333pt;}
.yc9{bottom:777.973333pt;}
.ya0{bottom:778.933333pt;}
.yed{bottom:779.893333pt;}
.y32{bottom:781.733333pt;}
.y8{bottom:783.493333pt;}
.y155{bottom:785.973333pt;}
.yc8{bottom:793.653333pt;}
.y113{bottom:793.973333pt;}
.y79{bottom:796.213333pt;}
.y7{bottom:799.493333pt;}
.y134{bottom:801.653333pt;}
.y9f{bottom:803.253333pt;}
.yea{bottom:804.213333pt;}
.y112{bottom:809.653333pt;}
.y31{bottom:813.573333pt;}
.yc7{bottom:817.253333pt;}
.y111{bottom:825.253333pt;}
.y9e{bottom:827.493333pt;}
.y78{bottom:827.893333pt;}
.y6{bottom:828.213333pt;}
.yeb{bottom:828.533333pt;}
.y133{bottom:832.853333pt;}
.y110{bottom:840.853333pt;}
.y5{bottom:845.413333pt;}
.yc6{bottom:848.853333pt;}
.y9d{bottom:851.813333pt;}
.y30{bottom:856.533333pt;}
.y77{bottom:859.493333pt;}
.yc5{bottom:864.533333pt;}
.ye9{bottom:871.813333pt;}
.y2f{bottom:872.133333pt;}
.y9c{bottom:876.133333pt;}
.y4{bottom:879.413333pt;}
.yc4{bottom:880.133333pt;}
.y2e{bottom:887.813333pt;}
.y10f{bottom:888.133333pt;}
.y76{bottom:891.093333pt;}
.yc3{bottom:895.813333pt;}
.y3{bottom:901.360000pt;}
.ye8{bottom:903.440000pt;}
.y70{bottom:903.760000pt;}
.y10e{bottom:903.840000pt;}
.y132{bottom:911.440000pt;}
.ye7{bottom:919.040000pt;}
.y2d{bottom:919.440000pt;}
.y131{bottom:927.040000pt;}
.yc2{bottom:927.440000pt;}
.y2c{bottom:935.040000pt;}
.yc1{bottom:943.040000pt;}
.y2b{bottom:950.720000pt;}
.y9b{bottom:951.040000pt;}
.yc0{bottom:958.720000pt;}
.y2a{bottom:966.320000pt;}
.y9a{bottom:966.720000pt;}
.ybf{bottom:974.320000pt;}
.y6f{bottom:982.000000pt;}
.y99{bottom:982.320000pt;}
.ybe{bottom:990.000000pt;}
.y29{bottom:998.000000pt;}
.y28{bottom:1013.600000pt;}
.y26{bottom:1061.600000pt;}
.h16{height:23.600000pt;}
.h17{height:23.626667pt;}
.h14{height:23.680000pt;}
.h15{height:23.706667pt;}
.h2{height:26.686562pt;}
.h6{height:33.059063pt;}
.hc{height:34.480000pt;}
.h3{height:35.644531pt;}
.hf{height:43.600000pt;}
.h13{height:45.246562pt;}
.h11{height:46.434375pt;}
.h7{height:47.621094pt;}
.h18{height:47.920000pt;}
.h12{height:48.026667pt;}
.h8{height:49.581562pt;}
.h1c{height:50.954062pt;}
.h5{height:52.183594pt;}
.hb{height:53.309531pt;}
.h1d{height:54.927899pt;}
.ha{height:55.631875pt;}
.h9{height:60.961875pt;}
.h1b{height:65.781915pt;}
.h10{height:66.278125pt;}
.h4{height:66.441406pt;}
.he{height:83.461094pt;}
.hd{height:106.598125pt;}
.h19{height:793.920000pt;}
.h1a{height:794.000000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w21{width:31.040000pt;}
.w1c{width:35.440000pt;}
.w20{width:35.466667pt;}
.w1d{width:35.520000pt;}
.w1e{width:36.800000pt;}
.w17{width:38.640000pt;}
.w16{width:38.666667pt;}
.w14{width:38.720000pt;}
.w1f{width:40.720000pt;}
.w26{width:43.066667pt;}
.w13{width:46.000000pt;}
.w25{width:53.360000pt;}
.w15{width:53.440000pt;}
.wc{width:59.280000pt;}
.w24{width:60.800000pt;}
.w1b{width:64.426667pt;}
.w22{width:64.880000pt;}
.wf{width:69.226667pt;}
.wd{width:72.720000pt;}
.we{width:75.360000pt;}
.w8{width:83.360000pt;}
.w9{width:83.386667pt;}
.wa{width:89.680000pt;}
.wb{width:91.706667pt;}
.w4{width:93.946667pt;}
.w7{width:95.360000pt;}
.w5{width:113.386667pt;}
.w11{width:137.840000pt;}
.w10{width:166.000000pt;}
.w23{width:283.946667pt;}
.w3{width:302.106667pt;}
.w12{width:318.826667pt;}
.w6{width:353.706667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.w19{width:1122.000000pt;}
.w1a{width:1122.239983pt;}
.w18{width:1122.240000pt;}
.x0{left:0.000000pt;}
.x2b{left:3.120000pt;}
.x16{left:4.320000pt;}
.xd{left:7.200000pt;}
.x1{left:60.480000pt;}
.x4a{left:84.479988pt;}
.x29{left:95.999983pt;}
.x4b{left:98.879988pt;}
.xa{left:106.346667pt;}
.xe{left:108.479988pt;}
.xf{left:114.506667pt;}
.x1b{left:128.160000pt;}
.x15{left:132.800000pt;}
.xb{left:138.346667pt;}
.x14{left:142.266667pt;}
.x40{left:143.199983pt;}
.x11{left:148.666667pt;}
.x13{left:151.066667pt;}
.x10{left:153.866667pt;}
.x2a{left:166.480000pt;}
.x20{left:168.346667pt;}
.x12{left:187.546667pt;}
.x41{left:191.546667pt;}
.x2{left:204.346655pt;}
.x1c{left:220.586667pt;}
.x7{left:229.466655pt;}
.x2c{left:231.626667pt;}
.x17{left:246.826667pt;}
.x5{left:250.346655pt;}
.x42{left:257.066667pt;}
.x2d{left:267.706667pt;}
.x9{left:281.146655pt;}
.x2e{left:303.866667pt;}
.x21{left:306.826667pt;}
.x44{left:311.146667pt;}
.x2f{left:340.026667pt;}
.x18{left:342.826667pt;}
.x45{left:350.426667pt;}
.x1d{left:353.946667pt;}
.xc{left:362.586667pt;}
.x27{left:368.506650pt;}
.x30{left:376.106667pt;}
.x22{left:392.826667pt;}
.x46{left:404.506667pt;}
.x31{left:412.266667pt;}
.x19{left:426.826667pt;}
.x1e{left:429.946667pt;}
.x47{left:443.866667pt;}
.x23{left:446.906667pt;}
.x32{left:448.426667pt;}
.x33{left:484.506667pt;}
.x24{left:486.213333pt;}
.x48{left:487.653333pt;}
.x1f{left:499.893333pt;}
.x1a{left:510.853333pt;}
.x34{left:520.666667pt;}
.x8{left:525.173322pt;}
.x25{left:532.933333pt;}
.x43{left:541.653333pt;}
.x35{left:558.106667pt;}
.x26{left:572.213333pt;}
.x6{left:593.013322pt;}
.x36{left:594.266667pt;}
.x37{left:635.626667pt;}
.x4{left:646.053322pt;}
.x38{left:671.786667pt;}
.x39{left:707.973333pt;}
.x49{left:718.773322pt;}
.x3{left:726.213322pt;}
.x3a{left:744.053333pt;}
.x3b{left:780.213333pt;}
.x3c{left:816.373333pt;}
.x3d{left:852.453333pt;}
.x3e{left:888.613333pt;}
.x3f{left:924.773333pt;}
.x28{left:1018.933317pt;}
}




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