
    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_dc90f9612c609d143876c785.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_99a028ad7b8fff492fb1084a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_d18172cd972c00f4df9bf2f8.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.940000;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_6558f6d20da926d3e1df2c04.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.923000;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_02be7a9b7fc1b94228d7fd6b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.911000;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_224144ee5e007bc5ee869b7d.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.894000;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_f18684e2022eb8e8b6253e8c.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910023;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_02695d8b30ae49aae929fa1b.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.922000;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);}
.v4{vertical-align:-18.900000px;}
.v1{vertical-align:-16.800000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:21.000000px;}
.v2{vertical-align:25.200000px;}
.ls4{letter-spacing:-0.900000px;}
.ls7{letter-spacing:-0.600000px;}
.ls6{letter-spacing:-0.300000px;}
.ls8{letter-spacing:-0.240000px;}
.ls0{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.300000px;}
.ls9{letter-spacing:0.540000px;}
.ls1{letter-spacing:1.200000px;}
.ls2{letter-spacing:1.425000px;}
.ls3{letter-spacing:71.999400px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-15.675000px;}
.ws29{word-spacing:-9.750000px;}
.ws2a{word-spacing:-8.775000px;}
.ws4{word-spacing:-8.673600px;}
.ws89{word-spacing:-4.266000px;}
.ws69{word-spacing:-3.960000px;}
.ws30{word-spacing:-3.840000px;}
.ws5a{word-spacing:-3.360000px;}
.ws64{word-spacing:-3.300000px;}
.ws44{word-spacing:-3.240000px;}
.ws71{word-spacing:-2.808000px;}
.ws66{word-spacing:-2.460000px;}
.ws31{word-spacing:-2.340000px;}
.ws41{word-spacing:-2.100000px;}
.ws2d{word-spacing:-1.980000px;}
.ws4e{word-spacing:-1.860000px;}
.ws9b{word-spacing:-1.782000px;}
.wsc{word-spacing:-1.740000px;}
.ws98{word-spacing:-1.728000px;}
.ws9{word-spacing:-1.680000px;}
.ws82{word-spacing:-1.674000px;}
.ws2{word-spacing:-1.668000px;}
.ws3{word-spacing:-1.500000px;}
.wsd{word-spacing:-1.320000px;}
.ws5{word-spacing:-1.200000px;}
.ws1e{word-spacing:-1.080000px;}
.ws6a{word-spacing:-0.960000px;}
.ws7a{word-spacing:-0.840000px;}
.ws2b{word-spacing:-0.660000px;}
.ws56{word-spacing:-0.540000px;}
.ws17{word-spacing:-0.480000px;}
.ws61{word-spacing:-0.420000px;}
.ws97{word-spacing:-0.270000px;}
.ws20{word-spacing:-0.240000px;}
.ws14{word-spacing:-0.120000px;}
.ws76{word-spacing:-0.048000px;}
.ws0{word-spacing:0.000000px;}
.ws35{word-spacing:0.060000px;}
.ws43{word-spacing:0.120000px;}
.ws52{word-spacing:0.180000px;}
.ws70{word-spacing:0.216000px;}
.ws4c{word-spacing:0.240000px;}
.ws94{word-spacing:0.270000px;}
.ws8b{word-spacing:0.378000px;}
.ws4a{word-spacing:0.420000px;}
.ws25{word-spacing:0.540000px;}
.ws7e{word-spacing:0.600000px;}
.ws68{word-spacing:0.660000px;}
.ws55{word-spacing:0.720000px;}
.ws1f{word-spacing:0.960000px;}
.ws67{word-spacing:1.020000px;}
.ws57{word-spacing:1.080000px;}
.ws3f{word-spacing:1.140000px;}
.wsa{word-spacing:1.200000px;}
.ws40{word-spacing:1.320000px;}
.ws9a{word-spacing:1.350000px;}
.ws7{word-spacing:1.500000px;}
.ws7b{word-spacing:1.800000px;}
.ws16{word-spacing:1.860000px;}
.ws99{word-spacing:1.890000px;}
.ws3c{word-spacing:2.100000px;}
.ws6d{word-spacing:2.106000px;}
.ws3b{word-spacing:2.160000px;}
.ws2c{word-spacing:2.220000px;}
.ws72{word-spacing:2.268000px;}
.ws63{word-spacing:2.400000px;}
.ws28{word-spacing:2.460000px;}
.ws75{word-spacing:2.538000px;}
.ws5d{word-spacing:2.580000px;}
.ws13{word-spacing:2.640000px;}
.ws80{word-spacing:2.646000px;}
.ws7c{word-spacing:2.700000px;}
.ws3d{word-spacing:2.820000px;}
.ws26{word-spacing:2.880000px;}
.ws23{word-spacing:3.060000px;}
.ws24{word-spacing:3.180000px;}
.ws1b{word-spacing:3.240000px;}
.ws8{word-spacing:3.420000px;}
.ws60{word-spacing:3.600000px;}
.ws4b{word-spacing:3.660000px;}
.ws9c{word-spacing:3.672000px;}
.ws5b{word-spacing:3.780000px;}
.ws47{word-spacing:3.840000px;}
.ws42{word-spacing:3.900000px;}
.ws11{word-spacing:4.020000px;}
.ws2e{word-spacing:4.140000px;}
.ws3a{word-spacing:4.200000px;}
.ws1d{word-spacing:4.320000px;}
.ws8d{word-spacing:4.536000px;}
.ws27{word-spacing:4.560000px;}
.ws48{word-spacing:4.620000px;}
.ws34{word-spacing:4.740000px;}
.ws1c{word-spacing:4.980000px;}
.ws12{word-spacing:5.100000px;}
.ws6c{word-spacing:5.220000px;}
.ws38{word-spacing:5.280000px;}
.ws32{word-spacing:5.340000px;}
.ws62{word-spacing:5.400000px;}
.wse{word-spacing:5.520000px;}
.ws53{word-spacing:5.580000px;}
.ws18{word-spacing:5.640000px;}
.ws59{word-spacing:5.700000px;}
.ws4f{word-spacing:5.760000px;}
.ws6f{word-spacing:5.778000px;}
.ws39{word-spacing:5.880000px;}
.ws74{word-spacing:5.994000px;}
.ws9e{word-spacing:6.210000px;}
.ws5e{word-spacing:6.360000px;}
.ws7d{word-spacing:6.780000px;}
.ws6b{word-spacing:7.080000px;}
.ws19{word-spacing:7.200000px;}
.ws65{word-spacing:7.740000px;}
.ws8e{word-spacing:7.776000px;}
.ws6e{word-spacing:8.154000px;}
.ws95{word-spacing:8.262000px;}
.ws36{word-spacing:8.280000px;}
.ws5f{word-spacing:8.340000px;}
.ws81{word-spacing:8.478000px;}
.ws6{word-spacing:8.640000px;}
.ws90{word-spacing:8.856000px;}
.ws10{word-spacing:9.120000px;}
.ws91{word-spacing:9.180000px;}
.ws79{word-spacing:9.360000px;}
.ws8c{word-spacing:9.774000px;}
.ws73{word-spacing:10.530000px;}
.ws1a{word-spacing:10.560000px;}
.ws3e{word-spacing:10.860000px;}
.ws37{word-spacing:11.040000px;}
.ws92{word-spacing:11.448000px;}
.ws78{word-spacing:11.580000px;}
.ws50{word-spacing:11.820000px;}
.ws46{word-spacing:11.880000px;}
.ws21{word-spacing:12.420000px;}
.ws83{word-spacing:12.474000px;}
.ws4d{word-spacing:12.840000px;}
.ws7f{word-spacing:13.020000px;}
.ws8a{word-spacing:13.122000px;}
.ws45{word-spacing:13.200000px;}
.ws5c{word-spacing:13.680000px;}
.ws15{word-spacing:15.360000px;}
.ws9d{word-spacing:15.768000px;}
.ws49{word-spacing:15.900000px;}
.ws33{word-spacing:16.140000px;}
.wsb{word-spacing:16.560000px;}
.ws2f{word-spacing:16.860000px;}
.ws9f{word-spacing:17.280000px;}
.ws8f{word-spacing:17.820000px;}
.ws54{word-spacing:17.940000px;}
.ws51{word-spacing:18.180000px;}
.ws86{word-spacing:18.468000px;}
.wsf{word-spacing:18.600000px;}
.ws77{word-spacing:19.560000px;}
.ws87{word-spacing:20.520000px;}
.ws22{word-spacing:22.500000px;}
.ws88{word-spacing:24.030000px;}
.ws58{word-spacing:25.680000px;}
.ws84{word-spacing:26.946000px;}
.ws96{word-spacing:27.054000px;}
.ws93{word-spacing:29.484000px;}
.ws85{word-spacing:41.742000px;}
._8{margin-left:-20.400000px;}
._9{margin-left:-13.320000px;}
._0{margin-left:-11.676000px;}
._6{margin-left:-10.440000px;}
._7{margin-left:-7.740000px;}
._4{margin-left:-4.680000px;}
._3{margin-left:-3.180000px;}
._1{margin-left:-1.200000px;}
._2{width:1.152000px;}
._b{width:11.988000px;}
._c{width:71.998800px;}
._5{width:1824.300000px;}
._a{width:2443.980000px;}
.fc4{color:transparent;}
.fc3{color:rgb(123,22,26);}
.fc2{color:rgb(35,31,32);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:6.000000px;}
.fs9{font-size:31.200000px;}
.fsd{font-size:35.100000px;}
.fs5{font-size:36.000000px;}
.fsc{font-size:39.000000px;}
.fs4{font-size:42.000000px;}
.fsb{font-size:46.800000px;}
.fs6{font-size:48.000000px;}
.fse{font-size:54.000000px;}
.fs7{font-size:57.000000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:102.000000px;}
.fsa{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y2e{bottom:32.781450px;}
.y2d{bottom:47.025450px;}
.y2c{bottom:61.269450px;}
.y5{bottom:66.525004px;}
.y2b{bottom:75.513450px;}
.y4{bottom:97.125005px;}
.ya5{bottom:97.605150px;}
.yb0{bottom:99.912000px;}
.ya4{bottom:115.605150px;}
.yaf{bottom:116.409000px;}
.y5c{bottom:128.751900px;}
.y44{bottom:129.069600px;}
.yae{bottom:132.906000px;}
.ya3{bottom:133.605150px;}
.y21{bottom:139.264499px;}
.y5b{bottom:143.751900px;}
.y43{bottom:147.069600px;}
.yad{bottom:149.403000px;}
.ya2{bottom:151.605150px;}
.y5a{bottom:158.751900px;}
.y42{bottom:165.069600px;}
.ya1{bottom:169.605150px;}
.yac{bottom:170.625000px;}
.y59{bottom:173.751900px;}
.yab{bottom:182.415000px;}
.ya0{bottom:187.605150px;}
.y58{bottom:188.751900px;}
.ybd{bottom:189.456000px;}
.y41{bottom:192.069600px;}
.y18{bottom:196.933500px;}
.yaa{bottom:198.912000px;}
.ybc{bottom:203.700000px;}
.y57{bottom:203.751900px;}
.y9f{bottom:205.605150px;}
.y20{bottom:209.518500px;}
.y17{bottom:209.533503px;}
.ya9{bottom:215.409000px;}
.ybb{bottom:217.944000px;}
.y1f{bottom:222.118502px;}
.y16{bottom:222.133505px;}
.y9e{bottom:223.605150px;}
.ya8{bottom:231.906000px;}
.y56{bottom:231.951900px;}
.yba{bottom:232.188000px;}
.y1e{bottom:234.718504px;}
.y15{bottom:234.733496px;}
.y40{bottom:237.075150px;}
.y9d{bottom:241.605150px;}
.y55{bottom:242.751900px;}
.yb9{bottom:246.432000px;}
.ya7{bottom:248.403000px;}
.y3f{bottom:255.075150px;}
.y9c{bottom:259.605150px;}
.y1d{bottom:259.918497px;}
.y14{bottom:259.933500px;}
.yb8{bottom:260.676000px;}
.y54{bottom:261.951900px;}
.ya6{bottom:269.625000px;}
.y1c{bottom:272.518500px;}
.y13{bottom:272.533503px;}
.y3e{bottom:273.075150px;}
.yb7{bottom:274.920000px;}
.y9b{bottom:277.605150px;}
.y1b{bottom:285.118502px;}
.y12{bottom:285.133499px;}
.yb6{bottom:289.164000px;}
.y3d{bottom:291.075150px;}
.y9a{bottom:295.605150px;}
.yb5{bottom:303.408000px;}
.y51{bottom:309.069600px;}
.y3c{bottom:309.075150px;}
.y1a{bottom:310.318501px;}
.y11{bottom:310.333501px;}
.y96{bottom:313.605150px;}
.yb4{bottom:317.652000px;}
.y19{bottom:322.918500px;}
.y10{bottom:322.933500px;}
.y50{bottom:327.069600px;}
.y3b{bottom:327.075150px;}
.y95{bottom:331.605150px;}
.yb3{bottom:331.896000px;}
.y4f{bottom:345.069600px;}
.y3a{bottom:345.075150px;}
.yb2{bottom:346.140000px;}
.yf{bottom:348.133500px;}
.y94{bottom:349.605150px;}
.yb1{bottom:360.390000px;}
.y4e{bottom:363.069600px;}
.y39{bottom:363.075150px;}
.yf5{bottom:367.165800px;}
.y93{bottom:367.605150px;}
.ycc{bottom:367.620150px;}
.y4d{bottom:381.069600px;}
.y38{bottom:381.075150px;}
.yf4{bottom:383.662800px;}
.ycb{bottom:384.117150px;}
.y92{bottom:385.605150px;}
.ye{bottom:386.785499px;}
.y4c{bottom:399.069600px;}
.y37{bottom:399.075150px;}
.yf3{bottom:400.159800px;}
.yca{bottom:400.614150px;}
.y91{bottom:403.605150px;}
.yd{bottom:408.044999px;}
.yf2{bottom:416.656800px;}
.y4b{bottom:417.069600px;}
.y36{bottom:417.075150px;}
.yc9{bottom:417.111150px;}
.y90{bottom:421.605150px;}
.yf1{bottom:433.153800px;}
.yc8{bottom:433.608150px;}
.y4a{bottom:435.069600px;}
.y35{bottom:435.075150px;}
.y8f{bottom:439.605150px;}
.yf0{bottom:449.650800px;}
.yc7{bottom:450.105150px;}
.y49{bottom:453.069600px;}
.y34{bottom:453.075150px;}
.y8e{bottom:457.605150px;}
.yef{bottom:466.147800px;}
.y48{bottom:471.069600px;}
.y33{bottom:471.075150px;}
.y8d{bottom:475.605150px;}
.y47{bottom:489.069600px;}
.y32{bottom:489.075150px;}
.yee{bottom:491.649300px;}
.y8c{bottom:493.605150px;}
.yc{bottom:502.864502px;}
.y46{bottom:507.069600px;}
.y31{bottom:507.075150px;}
.yed{bottom:508.146300px;}
.y8b{bottom:511.605150px;}
.yc6{bottom:514.605150px;}
.yb{bottom:520.864502px;}
.yec{bottom:524.643300px;}
.y45{bottom:525.069600px;}
.y30{bottom:525.075150px;}
.y8a{bottom:529.605150px;}
.ya{bottom:538.864499px;}
.yc5{bottom:540.105150px;}
.yeb{bottom:541.140300px;}
.y89{bottom:547.605150px;}
.y9{bottom:556.864499px;}
.yea{bottom:557.637300px;}
.y88{bottom:565.605150px;}
.ye9{bottom:574.134300px;}
.yc4{bottom:579.108150px;}
.y99{bottom:583.605150px;}
.ye8{bottom:590.631300px;}
.y87{bottom:592.605150px;}
.yc3{bottom:595.605150px;}
.y98{bottom:601.605150px;}
.ye7{bottom:616.131300px;}
.y97{bottom:619.605150px;}
.yc2{bottom:621.105150px;}
.y6c{bottom:623.571150px;}
.y86{bottom:637.605150px;}
.y6b{bottom:641.571150px;}
.y8{bottom:645.510000px;}
.y85{bottom:655.605150px;}
.ye6{bottom:658.221150px;}
.yc1{bottom:660.099150px;}
.y7{bottom:666.771000px;}
.y84{bottom:673.605150px;}
.ye5{bottom:674.718150px;}
.yc0{bottom:681.105150px;}
.y6a{bottom:685.086150px;}
.ye4{bottom:691.215150px;}
.y83{bottom:691.605150px;}
.y69{bottom:703.086150px;}
.ybf{bottom:706.605150px;}
.ye3{bottom:707.712150px;}
.y82{bottom:709.605150px;}
.y68{bottom:721.086150px;}
.ye2{bottom:724.209150px;}
.y6{bottom:726.298500px;}
.y81{bottom:727.605150px;}
.y67{bottom:739.086150px;}
.ye1{bottom:740.706150px;}
.y80{bottom:745.605150px;}
.y3{bottom:752.599495px;}
.y66{bottom:757.086150px;}
.ye0{bottom:757.203150px;}
.y7f{bottom:763.605150px;}
.ydf{bottom:773.700150px;}
.y65{bottom:775.086150px;}
.y7e{bottom:781.605150px;}
.yde{bottom:790.197150px;}
.y64{bottom:793.086150px;}
.y7d{bottom:799.605150px;}
.ydd{bottom:806.694150px;}
.y63{bottom:811.086150px;}
.y7c{bottom:817.605150px;}
.ydc{bottom:823.191150px;}
.y62{bottom:829.086150px;}
.y7b{bottom:835.605150px;}
.ydb{bottom:839.688150px;}
.y61{bottom:847.086150px;}
.y7a{bottom:853.605150px;}
.yda{bottom:856.185150px;}
.y60{bottom:865.086150px;}
.y79{bottom:871.605150px;}
.yd9{bottom:872.682150px;}
.y2{bottom:879.369000px;}
.yd8{bottom:889.179150px;}
.y78{bottom:889.605150px;}
.yd7{bottom:905.676150px;}
.y77{bottom:907.605150px;}
.yd6{bottom:922.173150px;}
.y76{bottom:925.605150px;}
.y5f{bottom:937.086150px;}
.yd5{bottom:938.670150px;}
.y75{bottom:943.605150px;}
.yd4{bottom:955.167150px;}
.y74{bottom:961.605150px;}
.y1{bottom:966.726000px;}
.yd3{bottom:971.664150px;}
.y73{bottom:979.605150px;}
.yd2{bottom:988.161150px;}
.y2a{bottom:996.360150px;}
.y72{bottom:997.605150px;}
.yd1{bottom:1004.658150px;}
.ybe{bottom:1006.605150px;}
.y29{bottom:1009.107150px;}
.y22{bottom:1009.506000px;}
.y5e{bottom:1012.089150px;}
.y71{bottom:1015.605150px;}
.yd0{bottom:1021.155150px;}
.y28{bottom:1021.854150px;}
.y70{bottom:1033.605150px;}
.y27{bottom:1034.601150px;}
.ycf{bottom:1037.652150px;}
.y5d{bottom:1042.086150px;}
.y26{bottom:1047.348150px;}
.y6f{bottom:1051.605150px;}
.yce{bottom:1054.149150px;}
.y25{bottom:1060.095150px;}
.y6e{bottom:1069.605150px;}
.ycd{bottom:1070.646150px;}
.y24{bottom:1072.842150px;}
.y23{bottom:1085.589150px;}
.y2f{bottom:1086.270150px;}
.y6d{bottom:1114.770150px;}
.y53{bottom:1175.919000px;}
.y52{bottom:1177.419750px;}
.h10{height:4.170000px;}
.h11{height:22.089600px;}
.h17{height:24.394500px;}
.h9{height:25.488000px;}
.ha{height:29.736000px;}
.h7{height:32.130000px;}
.h12{height:33.264000px;}
.hb{height:33.984000px;}
.h18{height:37.530000px;}
.h1a{height:37.554000px;}
.h19{height:38.232000px;}
.hf{height:38.646000px;}
.hc{height:41.580000px;}
.hd{height:41.700000px;}
.h15{height:42.480000px;}
.h6{height:45.900000px;}
.h16{height:48.105000px;}
.h3{height:48.195000px;}
.he{height:49.896000px;}
.h2{height:55.080000px;}
.h14{height:57.632400px;}
.h13{height:74.844000px;}
.h5{height:78.030000px;}
.h4{height:119.055004px;}
.h8{height:1188.000000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w1{width:893.250000px;}
.w3{width:918.000000px;}
.x0{left:0.000000px;}
.xa{left:12.600000px;}
.xc{left:72.000000px;}
.xd{left:90.006600px;}
.x7{left:93.534150px;}
.x10{left:95.989500px;}
.x8{left:100.500000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.xb{left:112.500000px;}
.x6{left:175.434150px;}
.x4{left:203.484001px;}
.x3{left:454.959000px;}
.xf{left:461.250000px;}
.xe{left:479.250000px;}
.x9{left:483.750000px;}
.x11{left:485.235000px;}
.x5{left:684.000000px;}
@media print{
.v4{vertical-align:-16.800000pt;}
.v1{vertical-align:-14.933333pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:18.666667pt;}
.v2{vertical-align:22.400000pt;}
.ls4{letter-spacing:-0.800000pt;}
.ls7{letter-spacing:-0.533333pt;}
.ls6{letter-spacing:-0.266667pt;}
.ls8{letter-spacing:-0.213333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.266667pt;}
.ls9{letter-spacing:0.480000pt;}
.ls1{letter-spacing:1.066667pt;}
.ls2{letter-spacing:1.266667pt;}
.ls3{letter-spacing:63.999467pt;}
.ws1{word-spacing:-13.933333pt;}
.ws29{word-spacing:-8.666667pt;}
.ws2a{word-spacing:-7.800000pt;}
.ws4{word-spacing:-7.709867pt;}
.ws89{word-spacing:-3.792000pt;}
.ws69{word-spacing:-3.520000pt;}
.ws30{word-spacing:-3.413333pt;}
.ws5a{word-spacing:-2.986667pt;}
.ws64{word-spacing:-2.933333pt;}
.ws44{word-spacing:-2.880000pt;}
.ws71{word-spacing:-2.496000pt;}
.ws66{word-spacing:-2.186667pt;}
.ws31{word-spacing:-2.080000pt;}
.ws41{word-spacing:-1.866667pt;}
.ws2d{word-spacing:-1.760000pt;}
.ws4e{word-spacing:-1.653333pt;}
.ws9b{word-spacing:-1.584000pt;}
.wsc{word-spacing:-1.546667pt;}
.ws98{word-spacing:-1.536000pt;}
.ws9{word-spacing:-1.493333pt;}
.ws82{word-spacing:-1.488000pt;}
.ws2{word-spacing:-1.482667pt;}
.ws3{word-spacing:-1.333333pt;}
.wsd{word-spacing:-1.173333pt;}
.ws5{word-spacing:-1.066667pt;}
.ws1e{word-spacing:-0.960000pt;}
.ws6a{word-spacing:-0.853333pt;}
.ws7a{word-spacing:-0.746667pt;}
.ws2b{word-spacing:-0.586667pt;}
.ws56{word-spacing:-0.480000pt;}
.ws17{word-spacing:-0.426667pt;}
.ws61{word-spacing:-0.373333pt;}
.ws97{word-spacing:-0.240000pt;}
.ws20{word-spacing:-0.213333pt;}
.ws14{word-spacing:-0.106667pt;}
.ws76{word-spacing:-0.042667pt;}
.ws0{word-spacing:0.000000pt;}
.ws35{word-spacing:0.053333pt;}
.ws43{word-spacing:0.106667pt;}
.ws52{word-spacing:0.160000pt;}
.ws70{word-spacing:0.192000pt;}
.ws4c{word-spacing:0.213333pt;}
.ws94{word-spacing:0.240000pt;}
.ws8b{word-spacing:0.336000pt;}
.ws4a{word-spacing:0.373333pt;}
.ws25{word-spacing:0.480000pt;}
.ws7e{word-spacing:0.533333pt;}
.ws68{word-spacing:0.586667pt;}
.ws55{word-spacing:0.640000pt;}
.ws1f{word-spacing:0.853333pt;}
.ws67{word-spacing:0.906667pt;}
.ws57{word-spacing:0.960000pt;}
.ws3f{word-spacing:1.013333pt;}
.wsa{word-spacing:1.066667pt;}
.ws40{word-spacing:1.173333pt;}
.ws9a{word-spacing:1.200000pt;}
.ws7{word-spacing:1.333333pt;}
.ws7b{word-spacing:1.600000pt;}
.ws16{word-spacing:1.653333pt;}
.ws99{word-spacing:1.680000pt;}
.ws3c{word-spacing:1.866667pt;}
.ws6d{word-spacing:1.872000pt;}
.ws3b{word-spacing:1.920000pt;}
.ws2c{word-spacing:1.973333pt;}
.ws72{word-spacing:2.016000pt;}
.ws63{word-spacing:2.133333pt;}
.ws28{word-spacing:2.186667pt;}
.ws75{word-spacing:2.256000pt;}
.ws5d{word-spacing:2.293333pt;}
.ws13{word-spacing:2.346667pt;}
.ws80{word-spacing:2.352000pt;}
.ws7c{word-spacing:2.400000pt;}
.ws3d{word-spacing:2.506667pt;}
.ws26{word-spacing:2.560000pt;}
.ws23{word-spacing:2.720000pt;}
.ws24{word-spacing:2.826667pt;}
.ws1b{word-spacing:2.880000pt;}
.ws8{word-spacing:3.040000pt;}
.ws60{word-spacing:3.200000pt;}
.ws4b{word-spacing:3.253333pt;}
.ws9c{word-spacing:3.264000pt;}
.ws5b{word-spacing:3.360000pt;}
.ws47{word-spacing:3.413333pt;}
.ws42{word-spacing:3.466667pt;}
.ws11{word-spacing:3.573333pt;}
.ws2e{word-spacing:3.680000pt;}
.ws3a{word-spacing:3.733333pt;}
.ws1d{word-spacing:3.840000pt;}
.ws8d{word-spacing:4.032000pt;}
.ws27{word-spacing:4.053333pt;}
.ws48{word-spacing:4.106667pt;}
.ws34{word-spacing:4.213333pt;}
.ws1c{word-spacing:4.426667pt;}
.ws12{word-spacing:4.533333pt;}
.ws6c{word-spacing:4.640000pt;}
.ws38{word-spacing:4.693333pt;}
.ws32{word-spacing:4.746667pt;}
.ws62{word-spacing:4.800000pt;}
.wse{word-spacing:4.906667pt;}
.ws53{word-spacing:4.960000pt;}
.ws18{word-spacing:5.013333pt;}
.ws59{word-spacing:5.066667pt;}
.ws4f{word-spacing:5.120000pt;}
.ws6f{word-spacing:5.136000pt;}
.ws39{word-spacing:5.226667pt;}
.ws74{word-spacing:5.328000pt;}
.ws9e{word-spacing:5.520000pt;}
.ws5e{word-spacing:5.653333pt;}
.ws7d{word-spacing:6.026667pt;}
.ws6b{word-spacing:6.293333pt;}
.ws19{word-spacing:6.400000pt;}
.ws65{word-spacing:6.880000pt;}
.ws8e{word-spacing:6.912000pt;}
.ws6e{word-spacing:7.248000pt;}
.ws95{word-spacing:7.344000pt;}
.ws36{word-spacing:7.360000pt;}
.ws5f{word-spacing:7.413333pt;}
.ws81{word-spacing:7.536000pt;}
.ws6{word-spacing:7.680000pt;}
.ws90{word-spacing:7.872000pt;}
.ws10{word-spacing:8.106667pt;}
.ws91{word-spacing:8.160000pt;}
.ws79{word-spacing:8.320000pt;}
.ws8c{word-spacing:8.688000pt;}
.ws73{word-spacing:9.360000pt;}
.ws1a{word-spacing:9.386667pt;}
.ws3e{word-spacing:9.653333pt;}
.ws37{word-spacing:9.813333pt;}
.ws92{word-spacing:10.176000pt;}
.ws78{word-spacing:10.293333pt;}
.ws50{word-spacing:10.506667pt;}
.ws46{word-spacing:10.560000pt;}
.ws21{word-spacing:11.040000pt;}
.ws83{word-spacing:11.088000pt;}
.ws4d{word-spacing:11.413333pt;}
.ws7f{word-spacing:11.573333pt;}
.ws8a{word-spacing:11.664000pt;}
.ws45{word-spacing:11.733333pt;}
.ws5c{word-spacing:12.160000pt;}
.ws15{word-spacing:13.653333pt;}
.ws9d{word-spacing:14.016000pt;}
.ws49{word-spacing:14.133333pt;}
.ws33{word-spacing:14.346667pt;}
.wsb{word-spacing:14.720000pt;}
.ws2f{word-spacing:14.986667pt;}
.ws9f{word-spacing:15.360000pt;}
.ws8f{word-spacing:15.840000pt;}
.ws54{word-spacing:15.946667pt;}
.ws51{word-spacing:16.160000pt;}
.ws86{word-spacing:16.416000pt;}
.wsf{word-spacing:16.533333pt;}
.ws77{word-spacing:17.386667pt;}
.ws87{word-spacing:18.240000pt;}
.ws22{word-spacing:20.000000pt;}
.ws88{word-spacing:21.360000pt;}
.ws58{word-spacing:22.826667pt;}
.ws84{word-spacing:23.952000pt;}
.ws96{word-spacing:24.048000pt;}
.ws93{word-spacing:26.208000pt;}
.ws85{word-spacing:37.104000pt;}
._8{margin-left:-18.133333pt;}
._9{margin-left:-11.840000pt;}
._0{margin-left:-10.378667pt;}
._6{margin-left:-9.280000pt;}
._7{margin-left:-6.880000pt;}
._4{margin-left:-4.160000pt;}
._3{margin-left:-2.826667pt;}
._1{margin-left:-1.066667pt;}
._2{width:1.024000pt;}
._b{width:10.656000pt;}
._c{width:63.998933pt;}
._5{width:1621.600000pt;}
._a{width:2172.426667pt;}
.fs8{font-size:5.333333pt;}
.fs9{font-size:27.733333pt;}
.fsd{font-size:31.200000pt;}
.fs5{font-size:32.000000pt;}
.fsc{font-size:34.666667pt;}
.fs4{font-size:37.333333pt;}
.fsb{font-size:41.600000pt;}
.fs6{font-size:42.666667pt;}
.fse{font-size:48.000000pt;}
.fs7{font-size:50.666667pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:90.666667pt;}
.fsa{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y2e{bottom:29.139067pt;}
.y2d{bottom:41.800400pt;}
.y2c{bottom:54.461733pt;}
.y5{bottom:59.133337pt;}
.y2b{bottom:67.123067pt;}
.y4{bottom:86.333337pt;}
.ya5{bottom:86.760133pt;}
.yb0{bottom:88.810667pt;}
.ya4{bottom:102.760133pt;}
.yaf{bottom:103.474667pt;}
.y5c{bottom:114.446133pt;}
.y44{bottom:114.728533pt;}
.yae{bottom:118.138667pt;}
.ya3{bottom:118.760133pt;}
.y21{bottom:123.790666pt;}
.y5b{bottom:127.779467pt;}
.y43{bottom:130.728533pt;}
.yad{bottom:132.802667pt;}
.ya2{bottom:134.760133pt;}
.y5a{bottom:141.112800pt;}
.y42{bottom:146.728533pt;}
.ya1{bottom:150.760133pt;}
.yac{bottom:151.666667pt;}
.y59{bottom:154.446133pt;}
.yab{bottom:162.146667pt;}
.ya0{bottom:166.760133pt;}
.y58{bottom:167.779467pt;}
.ybd{bottom:168.405333pt;}
.y41{bottom:170.728533pt;}
.y18{bottom:175.052000pt;}
.yaa{bottom:176.810667pt;}
.ybc{bottom:181.066667pt;}
.y57{bottom:181.112800pt;}
.y9f{bottom:182.760133pt;}
.y20{bottom:186.238666pt;}
.y17{bottom:186.252002pt;}
.ya9{bottom:191.474667pt;}
.ybb{bottom:193.728000pt;}
.y1f{bottom:197.438668pt;}
.y16{bottom:197.452004pt;}
.y9e{bottom:198.760133pt;}
.ya8{bottom:206.138667pt;}
.y56{bottom:206.179467pt;}
.yba{bottom:206.389333pt;}
.y1e{bottom:208.638670pt;}
.y15{bottom:208.651996pt;}
.y40{bottom:210.733467pt;}
.y9d{bottom:214.760133pt;}
.y55{bottom:215.779467pt;}
.yb9{bottom:219.050667pt;}
.ya7{bottom:220.802667pt;}
.y3f{bottom:226.733467pt;}
.y9c{bottom:230.760133pt;}
.y1d{bottom:231.038664pt;}
.y14{bottom:231.052000pt;}
.yb8{bottom:231.712000pt;}
.y54{bottom:232.846133pt;}
.ya6{bottom:239.666667pt;}
.y1c{bottom:242.238666pt;}
.y13{bottom:242.252002pt;}
.y3e{bottom:242.733467pt;}
.yb7{bottom:244.373333pt;}
.y9b{bottom:246.760133pt;}
.y1b{bottom:253.438668pt;}
.y12{bottom:253.451999pt;}
.yb6{bottom:257.034667pt;}
.y3d{bottom:258.733467pt;}
.y9a{bottom:262.760133pt;}
.yb5{bottom:269.696000pt;}
.y51{bottom:274.728533pt;}
.y3c{bottom:274.733467pt;}
.y1a{bottom:275.838667pt;}
.y11{bottom:275.852001pt;}
.y96{bottom:278.760133pt;}
.yb4{bottom:282.357333pt;}
.y19{bottom:287.038667pt;}
.y10{bottom:287.052000pt;}
.y50{bottom:290.728533pt;}
.y3b{bottom:290.733467pt;}
.y95{bottom:294.760133pt;}
.yb3{bottom:295.018667pt;}
.y4f{bottom:306.728533pt;}
.y3a{bottom:306.733467pt;}
.yb2{bottom:307.680000pt;}
.yf{bottom:309.452000pt;}
.y94{bottom:310.760133pt;}
.yb1{bottom:320.346667pt;}
.y4e{bottom:322.728533pt;}
.y39{bottom:322.733467pt;}
.yf5{bottom:326.369600pt;}
.y93{bottom:326.760133pt;}
.ycc{bottom:326.773467pt;}
.y4d{bottom:338.728533pt;}
.y38{bottom:338.733467pt;}
.yf4{bottom:341.033600pt;}
.ycb{bottom:341.437467pt;}
.y92{bottom:342.760133pt;}
.ye{bottom:343.809333pt;}
.y4c{bottom:354.728533pt;}
.y37{bottom:354.733467pt;}
.yf3{bottom:355.697600pt;}
.yca{bottom:356.101467pt;}
.y91{bottom:358.760133pt;}
.yd{bottom:362.706666pt;}
.yf2{bottom:370.361600pt;}
.y4b{bottom:370.728533pt;}
.y36{bottom:370.733467pt;}
.yc9{bottom:370.765467pt;}
.y90{bottom:374.760133pt;}
.yf1{bottom:385.025600pt;}
.yc8{bottom:385.429467pt;}
.y4a{bottom:386.728533pt;}
.y35{bottom:386.733467pt;}
.y8f{bottom:390.760133pt;}
.yf0{bottom:399.689600pt;}
.yc7{bottom:400.093467pt;}
.y49{bottom:402.728533pt;}
.y34{bottom:402.733467pt;}
.y8e{bottom:406.760133pt;}
.yef{bottom:414.353600pt;}
.y48{bottom:418.728533pt;}
.y33{bottom:418.733467pt;}
.y8d{bottom:422.760133pt;}
.y47{bottom:434.728533pt;}
.y32{bottom:434.733467pt;}
.yee{bottom:437.021600pt;}
.y8c{bottom:438.760133pt;}
.yc{bottom:446.990669pt;}
.y46{bottom:450.728533pt;}
.y31{bottom:450.733467pt;}
.yed{bottom:451.685600pt;}
.y8b{bottom:454.760133pt;}
.yc6{bottom:457.426800pt;}
.yb{bottom:462.990669pt;}
.yec{bottom:466.349600pt;}
.y45{bottom:466.728533pt;}
.y30{bottom:466.733467pt;}
.y8a{bottom:470.760133pt;}
.ya{bottom:478.990666pt;}
.yc5{bottom:480.093467pt;}
.yeb{bottom:481.013600pt;}
.y89{bottom:486.760133pt;}
.y9{bottom:494.990666pt;}
.yea{bottom:495.677600pt;}
.y88{bottom:502.760133pt;}
.ye9{bottom:510.341600pt;}
.yc4{bottom:514.762800pt;}
.y99{bottom:518.760133pt;}
.ye8{bottom:525.005600pt;}
.y87{bottom:526.760133pt;}
.yc3{bottom:529.426800pt;}
.y98{bottom:534.760133pt;}
.ye7{bottom:547.672267pt;}
.y97{bottom:550.760133pt;}
.yc2{bottom:552.093467pt;}
.y6c{bottom:554.285467pt;}
.y86{bottom:566.760133pt;}
.y6b{bottom:570.285467pt;}
.y8{bottom:573.786667pt;}
.y85{bottom:582.760133pt;}
.ye6{bottom:585.085467pt;}
.yc1{bottom:586.754800pt;}
.y7{bottom:592.685334pt;}
.y84{bottom:598.760133pt;}
.ye5{bottom:599.749467pt;}
.yc0{bottom:605.426800pt;}
.y6a{bottom:608.965467pt;}
.ye4{bottom:614.413467pt;}
.y83{bottom:614.760133pt;}
.y69{bottom:624.965467pt;}
.ybf{bottom:628.093467pt;}
.ye3{bottom:629.077467pt;}
.y82{bottom:630.760133pt;}
.y68{bottom:640.965467pt;}
.ye2{bottom:643.741467pt;}
.y6{bottom:645.598667pt;}
.y81{bottom:646.760133pt;}
.y67{bottom:656.965467pt;}
.ye1{bottom:658.405467pt;}
.y80{bottom:662.760133pt;}
.y3{bottom:668.977329pt;}
.y66{bottom:672.965467pt;}
.ye0{bottom:673.069467pt;}
.y7f{bottom:678.760133pt;}
.ydf{bottom:687.733467pt;}
.y65{bottom:688.965467pt;}
.y7e{bottom:694.760133pt;}
.yde{bottom:702.397467pt;}
.y64{bottom:704.965467pt;}
.y7d{bottom:710.760133pt;}
.ydd{bottom:717.061467pt;}
.y63{bottom:720.965467pt;}
.y7c{bottom:726.760133pt;}
.ydc{bottom:731.725467pt;}
.y62{bottom:736.965467pt;}
.y7b{bottom:742.760133pt;}
.ydb{bottom:746.389467pt;}
.y61{bottom:752.965467pt;}
.y7a{bottom:758.760133pt;}
.yda{bottom:761.053467pt;}
.y60{bottom:768.965467pt;}
.y79{bottom:774.760133pt;}
.yd9{bottom:775.717467pt;}
.y2{bottom:781.661334pt;}
.yd8{bottom:790.381467pt;}
.y78{bottom:790.760133pt;}
.yd7{bottom:805.045467pt;}
.y77{bottom:806.760133pt;}
.yd6{bottom:819.709467pt;}
.y76{bottom:822.760133pt;}
.y5f{bottom:832.965467pt;}
.yd5{bottom:834.373467pt;}
.y75{bottom:838.760133pt;}
.yd4{bottom:849.037467pt;}
.y74{bottom:854.760133pt;}
.y1{bottom:859.312000pt;}
.yd3{bottom:863.701467pt;}
.y73{bottom:870.760133pt;}
.yd2{bottom:878.365467pt;}
.y2a{bottom:885.653467pt;}
.y72{bottom:886.760133pt;}
.yd1{bottom:893.029467pt;}
.ybe{bottom:894.760133pt;}
.y29{bottom:896.984133pt;}
.y22{bottom:897.338667pt;}
.y5e{bottom:899.634800pt;}
.y71{bottom:902.760133pt;}
.yd0{bottom:907.693467pt;}
.y28{bottom:908.314800pt;}
.y70{bottom:918.760133pt;}
.y27{bottom:919.645467pt;}
.ycf{bottom:922.357467pt;}
.y5d{bottom:926.298800pt;}
.y26{bottom:930.976133pt;}
.y6f{bottom:934.760133pt;}
.yce{bottom:937.021467pt;}
.y25{bottom:942.306800pt;}
.y6e{bottom:950.760133pt;}
.ycd{bottom:951.685467pt;}
.y24{bottom:953.637467pt;}
.y23{bottom:964.968133pt;}
.y2f{bottom:965.573467pt;}
.y6d{bottom:990.906800pt;}
.y53{bottom:1045.261333pt;}
.y52{bottom:1046.595333pt;}
.h10{height:3.706667pt;}
.h11{height:19.635200pt;}
.h17{height:21.684000pt;}
.h9{height:22.656000pt;}
.ha{height:26.432000pt;}
.h7{height:28.560000pt;}
.h12{height:29.568000pt;}
.hb{height:30.208000pt;}
.h18{height:33.360000pt;}
.h1a{height:33.381333pt;}
.h19{height:33.984000pt;}
.hf{height:34.352000pt;}
.hc{height:36.960000pt;}
.hd{height:37.066667pt;}
.h15{height:37.760000pt;}
.h6{height:40.800000pt;}
.h16{height:42.760000pt;}
.h3{height:42.840000pt;}
.he{height:44.352000pt;}
.h2{height:48.960000pt;}
.h14{height:51.228800pt;}
.h13{height:66.528000pt;}
.h5{height:69.360000pt;}
.h4{height:105.826671pt;}
.h8{height:1056.000000pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w1{width:794.000000pt;}
.w3{width:816.000000pt;}
.x0{left:0.000000pt;}
.xa{left:11.200000pt;}
.xc{left:64.000000pt;}
.xd{left:80.005867pt;}
.x7{left:83.141467pt;}
.x10{left:85.324000pt;}
.x8{left:89.333333pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.xb{left:100.000000pt;}
.x6{left:155.941467pt;}
.x4{left:180.874667pt;}
.x3{left:404.408000pt;}
.xf{left:410.000000pt;}
.xe{left:426.000000pt;}
.x9{left:430.000000pt;}
.x11{left:431.320000pt;}
.x5{left:608.000000pt;}
}




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