
    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_896d67e75c0e55ae9b044530.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.914551;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_6a547693a7d7b3dc4d01bc44.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.941406;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_2178e8b19cca302a84fe2dca.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.941406;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_d6b660a84136204c30e795a2.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.130371;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_7b831f3a3f75697db727be28.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.130371;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_2d14e77333b0b9e9fa2dd08c.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.006836;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_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.003906;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_65bbb22b1b6ad73369d85f67.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_0950a9058abdf6adcf12fc05.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_0ecf9f5b1826674fe554c1f6.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.040039;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.739746;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:ffc;src:url('chunks/assets/font_5ad189b37a58e274b8a07206.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.739746;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:ffd;src:url('chunks/assets/font_5ff7d32877158cbe0acc50d0.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.914551;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:ffe;src:url('chunks/assets/font_124c908cd72efcd810953414.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.853027;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:fff;src:url('chunks/assets/font_7c3131597e2b2ece3d3d1706.woff2')format("woff");}.fff{font-family:fff;line-height:0.853027;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:ff10;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff10{font-family:ff10;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;}
.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:-33.120000px;}
.v3{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:20.880000px;}
.v2{vertical-align:33.120000px;}
.v6{vertical-align:40.320000px;}
.v5{vertical-align:46.080000px;}
.lse{letter-spacing:-0.720000px;}
.ls11{letter-spacing:-0.612000px;}
.ls10{letter-spacing:-0.540000px;}
.ls9{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.018000px;}
.ls17{letter-spacing:0.053280px;}
.ls14{letter-spacing:0.144720px;}
.ls8{letter-spacing:0.180000px;}
.ls16{letter-spacing:0.197280px;}
.lsd{letter-spacing:0.206400px;}
.ls1d{letter-spacing:0.259800px;}
.ls1b{letter-spacing:0.259920px;}
.ls1a{letter-spacing:0.298800px;}
.ls12{letter-spacing:0.350640px;}
.ls6{letter-spacing:0.360000px;}
.ls7{letter-spacing:0.480000px;}
.ls5{letter-spacing:1.330560px;}
.lsb{letter-spacing:1.332000px;}
.lsa{letter-spacing:1.386000px;}
.ls4{letter-spacing:1.698000px;}
.ls1{letter-spacing:1.699920px;}
.ls2{letter-spacing:2.052000px;}
.lsc{letter-spacing:2.106000px;}
.ls0{letter-spacing:2.106720px;}
.ls3{letter-spacing:2.448000px;}
.ls15{letter-spacing:16.559280px;}
.ls1c{letter-spacing:45.306720px;}
.ls13{letter-spacing:46.026720px;}
.ls18{letter-spacing:64.026720px;}
.ls19{letter-spacing:75.546720px;}
.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;}
}
.wsf{word-spacing:-59.760000px;}
.ws9{word-spacing:-37.440000px;}
.ws0{word-spacing:-18.665280px;}
.ws1{word-spacing:-17.945280px;}
.ws4{word-spacing:-17.418240px;}
.ws5{word-spacing:-16.668240px;}
.ws2{word-spacing:-16.613280px;}
.wsb{word-spacing:-15.840000px;}
.ws8{word-spacing:-15.300000px;}
.ws7{word-spacing:-15.146400px;}
.ws3{word-spacing:-14.970240px;}
.ws6{word-spacing:-14.940000px;}
.wsc{word-spacing:-13.500000px;}
.wsd{word-spacing:-12.060000px;}
.wsa{word-spacing:-10.440000px;}
.wse{word-spacing:0.000000px;}
._3{margin-left:-9.036960px;}
._4{margin-left:-3.644400px;}
._2{margin-left:-2.152800px;}
._8{margin-left:-1.077120px;}
._0{width:1.374480px;}
._1{width:3.016800px;}
._9{width:4.133280px;}
._7{width:6.056160px;}
._a{width:7.938000px;}
._b{width:8.951520px;}
._f{width:10.052160px;}
._12{width:11.175840px;}
._c{width:12.310320px;}
._10{width:13.745280px;}
._11{width:16.732800px;}
._e{width:18.585360px;}
._d{width:19.601280px;}
._1f{width:21.633120px;}
._16{width:23.648880px;}
._1b{width:27.765120px;}
._19{width:28.899120px;}
._1a{width:30.354720px;}
._1c{width:37.945920px;}
._17{width:39.142800px;}
._18{width:40.878480px;}
._6{width:42.090960px;}
._1e{width:71.562720px;}
._1d{width:72.862320px;}
._15{width:89.585040px;}
._14{width:181.984080px;}
._5{width:201.060000px;}
._13{width:253.591920px;}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(128,97,159);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:41.760000px;}
.fs3{font-size:48.240000px;}
.fs2{font-size:54.000000px;}
.fs6{font-size:56.880000px;}
.fs1{font-size:59.760000px;}
.fs8{font-size:63.360000px;}
.fs0{font-size:66.240000px;}
.fs7{font-size:108.000000px;}
.fs4{font-size:144.000000px;}
.fs5{font-size:149.760000px;}
.y0{bottom:0.000000px;}
.ye4{bottom:3.240000px;}
.y7{bottom:25.560000px;}
.y6{bottom:45.900000px;}
.y8d{bottom:89.136000px;}
.y9d{bottom:92.916000px;}
.yd7{bottom:95.076000px;}
.y62{bottom:98.676000px;}
.y8c{bottom:106.236000px;}
.y3d{bottom:110.016000px;}
.yd6{bottom:112.356000px;}
.y61{bottom:115.956000px;}
.y8b{bottom:123.516000px;}
.y3c{bottom:127.296000px;}
.yd5{bottom:129.636000px;}
.y60{bottom:129.996000px;}
.y10d{bottom:133.236000px;}
.y10f{bottom:139.176000px;}
.y8a{bottom:140.796000px;}
.y3b{bottom:144.396000px;}
.y9c{bottom:144.576000px;}
.yd4{bottom:148.176000px;}
.y10c{bottom:150.510000px;}
.y89{bottom:158.070000px;}
.y10e{bottom:159.150000px;}
.y3a{bottom:161.670000px;}
.y9b{bottom:161.850000px;}
.yd3{bottom:166.710000px;}
.y10b{bottom:167.610000px;}
.y88{bottom:175.350000px;}
.y39{bottom:178.950000px;}
.y9a{bottom:179.130000px;}
.y10a{bottom:184.890000px;}
.yd2{bottom:185.430000px;}
.y87{bottom:192.630000px;}
.y38{bottom:196.230000px;}
.y99{bottom:196.410000px;}
.y109{bottom:202.170000px;}
.yd1{bottom:203.970000px;}
.y86{bottom:209.730000px;}
.y37{bottom:213.510000px;}
.y108{bottom:219.450000px;}
.yd0{bottom:222.690000px;}
.y85{bottom:227.010000px;}
.y36{bottom:230.790000px;}
.y107{bottom:236.730000px;}
.ycf{bottom:239.970000px;}
.y84{bottom:244.290000px;}
.y35{bottom:247.890000px;}
.y98{bottom:248.070000px;}
.y106{bottom:254.010000px;}
.yce{bottom:257.070000px;}
.y83{bottom:261.570000px;}
.y34{bottom:265.170000px;}
.y97{bottom:265.350000px;}
.y105{bottom:271.110000px;}
.ycd{bottom:274.350000px;}
.y82{bottom:278.850000px;}
.y33{bottom:282.450000px;}
.y96{bottom:282.630000px;}
.y104{bottom:288.390000px;}
.ycc{bottom:291.630000px;}
.y81{bottom:296.130000px;}
.y32{bottom:299.730000px;}
.y103{bottom:305.670000px;}
.ycb{bottom:308.910000px;}
.y80{bottom:313.230000px;}
.y31{bottom:317.010000px;}
.y102{bottom:322.950000px;}
.yca{bottom:326.190000px;}
.y7f{bottom:330.510000px;}
.y30{bottom:334.110000px;}
.y95{bottom:334.290000px;}
.y101{bottom:340.275000px;}
.yc9{bottom:343.515000px;}
.y7e{bottom:347.835000px;}
.y2f{bottom:351.435000px;}
.y94{bottom:351.615000px;}
.y100{bottom:357.555000px;}
.yc8{bottom:360.615000px;}
.y7d{bottom:365.115000px;}
.y2e{bottom:368.715000px;}
.y93{bottom:368.895000px;}
.yff{bottom:374.655000px;}
.yc7{bottom:377.895000px;}
.y7c{bottom:382.395000px;}
.y2d{bottom:385.995000px;}
.y92{bottom:386.175000px;}
.yfe{bottom:391.935000px;}
.yc6{bottom:395.175000px;}
.y7b{bottom:399.495000px;}
.y2c{bottom:403.275000px;}
.yfd{bottom:409.215000px;}
.yc5{bottom:412.455000px;}
.y7a{bottom:416.775000px;}
.y2b{bottom:420.555000px;}
.yfc{bottom:426.495000px;}
.yc4{bottom:429.735000px;}
.y79{bottom:434.055000px;}
.y2a{bottom:437.655000px;}
.y91{bottom:437.835000px;}
.yfb{bottom:443.775000px;}
.yc3{bottom:447.015000px;}
.y78{bottom:451.335000px;}
.y29{bottom:454.935000px;}
.y90{bottom:455.115000px;}
.yfa{bottom:460.875000px;}
.yc2{bottom:464.115000px;}
.y77{bottom:468.615000px;}
.y5f{bottom:469.335000px;}
.y28{bottom:472.215000px;}
.y8f{bottom:472.395000px;}
.yf9{bottom:478.155000px;}
.yc1{bottom:481.395000px;}
.y76{bottom:485.895000px;}
.y5e{bottom:488.235000px;}
.y27{bottom:489.495000px;}
.y8e{bottom:489.675000px;}
.yf8{bottom:495.435000px;}
.yc0{bottom:498.675000px;}
.y75{bottom:502.995000px;}
.y26{bottom:506.775000px;}
.yf7{bottom:512.715000px;}
.ybf{bottom:515.955000px;}
.y74{bottom:520.275000px;}
.y25{bottom:524.055000px;}
.yf6{bottom:529.995000px;}
.ybe{bottom:533.235000px;}
.y73{bottom:537.555000px;}
.y24{bottom:541.155000px;}
.y5d{bottom:541.335000px;}
.yf5{bottom:547.275000px;}
.ybd{bottom:550.515000px;}
.y72{bottom:554.835000px;}
.y23{bottom:558.435000px;}
.y5c{bottom:558.615000px;}
.ybc{bottom:560.595000px;}
.yf4{bottom:564.375000px;}
.y71{bottom:572.115000px;}
.y22{bottom:575.715000px;}
.y5b{bottom:575.895000px;}
.yf3{bottom:581.655000px;}
.ybb{bottom:587.595000px;}
.y70{bottom:589.395000px;}
.y21{bottom:592.995000px;}
.y5a{bottom:593.175000px;}
.yf2{bottom:598.935000px;}
.yba{bottom:604.905000px;}
.y6f{bottom:606.525000px;}
.y20{bottom:610.305000px;}
.yf1{bottom:616.245000px;}
.yb9{bottom:622.185000px;}
.y6e{bottom:623.805000px;}
.y1f{bottom:627.405000px;}
.y59{bottom:627.585000px;}
.yf0{bottom:633.525000px;}
.yb8{bottom:639.465000px;}
.y6d{bottom:641.085000px;}
.y1e{bottom:644.685000px;}
.y58{bottom:644.865000px;}
.yef{bottom:650.805000px;}
.yb7{bottom:656.745000px;}
.y6c{bottom:658.365000px;}
.y1d{bottom:661.965000px;}
.y57{bottom:662.145000px;}
.yee{bottom:667.905000px;}
.yb6{bottom:674.025000px;}
.y6b{bottom:675.645000px;}
.y1c{bottom:679.245000px;}
.y56{bottom:679.425000px;}
.yed{bottom:685.185000px;}
.yb5{bottom:691.125000px;}
.y6a{bottom:692.745000px;}
.y1b{bottom:696.165000px;}
.y55{bottom:696.525000px;}
.yec{bottom:702.465000px;}
.yb4{bottom:708.405000px;}
.y69{bottom:710.025000px;}
.y1a{bottom:711.645000px;}
.y54{bottom:713.805000px;}
.yeb{bottom:719.745000px;}
.yb3{bottom:725.685000px;}
.y68{bottom:727.305000px;}
.y19{bottom:728.385000px;}
.y53{bottom:731.085000px;}
.yea{bottom:734.505000px;}
.yb2{bottom:742.965000px;}
.y67{bottom:744.585000px;}
.y18{bottom:745.125000px;}
.y52{bottom:748.365000px;}
.ye9{bottom:752.505000px;}
.yb1{bottom:760.245000px;}
.y17{bottom:761.865000px;}
.y51{bottom:765.645000px;}
.ye8{bottom:770.505000px;}
.yb0{bottom:777.345000px;}
.y16{bottom:778.785000px;}
.y66{bottom:779.145000px;}
.y50{bottom:782.925000px;}
.ye7{bottom:788.505000px;}
.yaf{bottom:794.625000px;}
.y15{bottom:795.525000px;}
.y65{bottom:796.245000px;}
.y4f{bottom:800.025000px;}
.ye6{bottom:806.505000px;}
.yae{bottom:811.905000px;}
.y14{bottom:812.265000px;}
.y64{bottom:813.525000px;}
.y4e{bottom:817.305000px;}
.ye5{bottom:824.505000px;}
.y63{bottom:827.565000px;}
.y13{bottom:829.005000px;}
.yad{bottom:829.185000px;}
.y4d{bottom:834.585000px;}
.ye3{bottom:842.505000px;}
.y12{bottom:845.745000px;}
.yac{bottom:846.465000px;}
.y4c{bottom:851.865000px;}
.y11{bottom:862.485000px;}
.yab{bottom:863.745000px;}
.y4b{bottom:869.145000px;}
.yaa{bottom:873.870000px;}
.y10{bottom:878.730000px;}
.ye2{bottom:881.070000px;}
.y4a{bottom:886.470000px;}
.ye1{bottom:898.170000px;}
.ya9{bottom:900.870000px;}
.yf{bottom:902.670000px;}
.y49{bottom:903.570000px;}
.ye0{bottom:915.450000px;}
.ya8{bottom:918.150000px;}
.ye{bottom:920.850000px;}
.ydf{bottom:932.730000px;}
.yd{bottom:933.810000px;}
.ya7{bottom:935.430000px;}
.y48{bottom:938.130000px;}
.yde{bottom:950.010000px;}
.yc{bottom:951.810000px;}
.ya6{bottom:952.710000px;}
.y47{bottom:955.410000px;}
.ydd{bottom:967.290000px;}
.ya5{bottom:969.990000px;}
.y46{bottom:972.690000px;}
.yb{bottom:980.610000px;}
.ydc{bottom:984.570000px;}
.ya4{bottom:987.090000px;}
.y45{bottom:989.790000px;}
.ydb{bottom:1002.750000px;}
.ya3{bottom:1004.370000px;}
.y44{bottom:1007.070000px;}
.ya{bottom:1011.750000px;}
.yda{bottom:1021.110000px;}
.ya2{bottom:1021.650000px;}
.y43{bottom:1024.350000px;}
.ya1{bottom:1038.930000px;}
.yd9{bottom:1039.470000px;}
.y42{bottom:1041.630000px;}
.y9{bottom:1049.010000px;}
.ya0{bottom:1056.210000px;}
.yd8{bottom:1057.830000px;}
.y41{bottom:1058.910000px;}
.y9f{bottom:1073.490000px;}
.y40{bottom:1076.190000px;}
.y9e{bottom:1083.570000px;}
.y8{bottom:1090.950000px;}
.y3f{bottom:1093.290000px;}
.y3e{bottom:1110.570000px;}
.y5{bottom:1140.120000px;}
.y4{bottom:1160.280000px;}
.y3{bottom:1179.180000px;}
.y2{bottom:1196.460000px;}
.y1{bottom:1215.360000px;}
.h15{height:17.280000px;}
.hb{height:29.178984px;}
.hd{height:37.731445px;}
.hc{height:38.100586px;}
.hf{height:41.756133px;}
.he{height:42.164648px;}
.h9{height:42.342891px;}
.h11{height:43.506914px;}
.h3{height:43.681992px;}
.ha{height:44.271563px;}
.h2{height:46.283906px;}
.h6{height:48.774375px;}
.h10{height:49.255313px;}
.h5{height:63.070312px;}
.h7{height:65.884219px;}
.h12{height:87.836133px;}
.h13{height:90.684141px;}
.h14{height:90.864141px;}
.h4{height:105.257812px;}
.h8{height:105.665625px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:186.150000px;}
.w3{width:267.915000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x23{left:29.340000px;}
.x6{left:63.899987px;}
.xf{left:85.139987px;}
.x18{left:90.935987px;}
.x9{left:93.455987px;}
.x16{left:112.175987px;}
.x10{left:117.935987px;}
.xd{left:122.615987px;}
.x25{left:131.435987px;}
.x7{left:137.915987px;}
.x17{left:139.175987px;}
.xe{left:142.415987px;}
.x19{left:144.935987px;}
.x1e{left:171.929987px;}
.x1{left:183.089987px;}
.xc{left:196.589987px;}
.x21{left:208.829987px;}
.x1c{left:221.429987px;}
.x2{left:223.409987px;}
.x22{left:224.850000px;}
.x1a{left:235.289987px;}
.x1f{left:303.734987px;}
.x15{left:310.574987px;}
.x13{left:313.274987px;}
.xa{left:328.574987px;}
.x3{left:344.774987px;}
.x4{left:363.134987px;}
.x8{left:382.754987px;}
.x20{left:443.054987px;}
.xb{left:451.874987px;}
.x1d{left:461.234987px;}
.x12{left:462.494987px;}
.x1b{left:468.644987px;}
.x24{left:492.765000px;}
.x5{left:494.564987px;}
.x11{left:664.349987px;}
.x14{left:719.789987px;}
@media print{
.v1{vertical-align:-29.440000pt;}
.v3{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:18.560000pt;}
.v2{vertical-align:29.440000pt;}
.v6{vertical-align:35.840000pt;}
.v5{vertical-align:40.960000pt;}
.lse{letter-spacing:-0.640000pt;}
.ls11{letter-spacing:-0.544000pt;}
.ls10{letter-spacing:-0.480000pt;}
.ls9{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.016000pt;}
.ls17{letter-spacing:0.047360pt;}
.ls14{letter-spacing:0.128640pt;}
.ls8{letter-spacing:0.160000pt;}
.ls16{letter-spacing:0.175360pt;}
.lsd{letter-spacing:0.183467pt;}
.ls1d{letter-spacing:0.230933pt;}
.ls1b{letter-spacing:0.231040pt;}
.ls1a{letter-spacing:0.265600pt;}
.ls12{letter-spacing:0.311680pt;}
.ls6{letter-spacing:0.320000pt;}
.ls7{letter-spacing:0.426667pt;}
.ls5{letter-spacing:1.182720pt;}
.lsb{letter-spacing:1.184000pt;}
.lsa{letter-spacing:1.232000pt;}
.ls4{letter-spacing:1.509333pt;}
.ls1{letter-spacing:1.511040pt;}
.ls2{letter-spacing:1.824000pt;}
.lsc{letter-spacing:1.872000pt;}
.ls0{letter-spacing:1.872640pt;}
.ls3{letter-spacing:2.176000pt;}
.ls15{letter-spacing:14.719360pt;}
.ls1c{letter-spacing:40.272640pt;}
.ls13{letter-spacing:40.912640pt;}
.ls18{letter-spacing:56.912640pt;}
.ls19{letter-spacing:67.152640pt;}
.wsf{word-spacing:-53.120000pt;}
.ws9{word-spacing:-33.280000pt;}
.ws0{word-spacing:-16.591360pt;}
.ws1{word-spacing:-15.951360pt;}
.ws4{word-spacing:-15.482880pt;}
.ws5{word-spacing:-14.816213pt;}
.ws2{word-spacing:-14.767360pt;}
.wsb{word-spacing:-14.080000pt;}
.ws8{word-spacing:-13.600000pt;}
.ws7{word-spacing:-13.463467pt;}
.ws3{word-spacing:-13.306880pt;}
.ws6{word-spacing:-13.280000pt;}
.wsc{word-spacing:-12.000000pt;}
.wsd{word-spacing:-10.720000pt;}
.wsa{word-spacing:-9.280000pt;}
.wse{word-spacing:0.000000pt;}
._3{margin-left:-8.032853pt;}
._4{margin-left:-3.239467pt;}
._2{margin-left:-1.913600pt;}
._8{margin-left:-0.957440pt;}
._0{width:1.221760pt;}
._1{width:2.681600pt;}
._9{width:3.674027pt;}
._7{width:5.383253pt;}
._a{width:7.056000pt;}
._b{width:7.956907pt;}
._f{width:8.935253pt;}
._12{width:9.934080pt;}
._c{width:10.942507pt;}
._10{width:12.218027pt;}
._11{width:14.873600pt;}
._e{width:16.520320pt;}
._d{width:17.423360pt;}
._1f{width:19.229440pt;}
._16{width:21.021227pt;}
._1b{width:24.680107pt;}
._19{width:25.688107pt;}
._1a{width:26.981973pt;}
._1c{width:33.729707pt;}
._17{width:34.793600pt;}
._18{width:36.336427pt;}
._6{width:37.414187pt;}
._1e{width:63.611307pt;}
._1d{width:64.766507pt;}
._15{width:79.631147pt;}
._14{width:161.763627pt;}
._5{width:178.720000pt;}
._13{width:225.415040pt;}
.fs9{font-size:37.120000pt;}
.fs3{font-size:42.880000pt;}
.fs2{font-size:48.000000pt;}
.fs6{font-size:50.560000pt;}
.fs1{font-size:53.120000pt;}
.fs8{font-size:56.320000pt;}
.fs0{font-size:58.880000pt;}
.fs7{font-size:96.000000pt;}
.fs4{font-size:128.000000pt;}
.fs5{font-size:133.120000pt;}
.y0{bottom:0.000000pt;}
.ye4{bottom:2.880000pt;}
.y7{bottom:22.720000pt;}
.y6{bottom:40.800000pt;}
.y8d{bottom:79.232000pt;}
.y9d{bottom:82.592000pt;}
.yd7{bottom:84.512000pt;}
.y62{bottom:87.712000pt;}
.y8c{bottom:94.432000pt;}
.y3d{bottom:97.792000pt;}
.yd6{bottom:99.872000pt;}
.y61{bottom:103.072000pt;}
.y8b{bottom:109.792000pt;}
.y3c{bottom:113.152000pt;}
.yd5{bottom:115.232000pt;}
.y60{bottom:115.552000pt;}
.y10d{bottom:118.432000pt;}
.y10f{bottom:123.712000pt;}
.y8a{bottom:125.152000pt;}
.y3b{bottom:128.352000pt;}
.y9c{bottom:128.512000pt;}
.yd4{bottom:131.712000pt;}
.y10c{bottom:133.786667pt;}
.y89{bottom:140.506667pt;}
.y10e{bottom:141.466667pt;}
.y3a{bottom:143.706667pt;}
.y9b{bottom:143.866667pt;}
.yd3{bottom:148.186667pt;}
.y10b{bottom:148.986667pt;}
.y88{bottom:155.866667pt;}
.y39{bottom:159.066667pt;}
.y9a{bottom:159.226667pt;}
.y10a{bottom:164.346667pt;}
.yd2{bottom:164.826667pt;}
.y87{bottom:171.226667pt;}
.y38{bottom:174.426667pt;}
.y99{bottom:174.586667pt;}
.y109{bottom:179.706667pt;}
.yd1{bottom:181.306667pt;}
.y86{bottom:186.426667pt;}
.y37{bottom:189.786667pt;}
.y108{bottom:195.066667pt;}
.yd0{bottom:197.946667pt;}
.y85{bottom:201.786667pt;}
.y36{bottom:205.146667pt;}
.y107{bottom:210.426667pt;}
.ycf{bottom:213.306667pt;}
.y84{bottom:217.146667pt;}
.y35{bottom:220.346667pt;}
.y98{bottom:220.506667pt;}
.y106{bottom:225.786667pt;}
.yce{bottom:228.506667pt;}
.y83{bottom:232.506667pt;}
.y34{bottom:235.706667pt;}
.y97{bottom:235.866667pt;}
.y105{bottom:240.986667pt;}
.ycd{bottom:243.866667pt;}
.y82{bottom:247.866667pt;}
.y33{bottom:251.066667pt;}
.y96{bottom:251.226667pt;}
.y104{bottom:256.346667pt;}
.ycc{bottom:259.226667pt;}
.y81{bottom:263.226667pt;}
.y32{bottom:266.426667pt;}
.y103{bottom:271.706667pt;}
.ycb{bottom:274.586667pt;}
.y80{bottom:278.426667pt;}
.y31{bottom:281.786667pt;}
.y102{bottom:287.066667pt;}
.yca{bottom:289.946667pt;}
.y7f{bottom:293.786667pt;}
.y30{bottom:296.986667pt;}
.y95{bottom:297.146667pt;}
.y101{bottom:302.466667pt;}
.yc9{bottom:305.346667pt;}
.y7e{bottom:309.186667pt;}
.y2f{bottom:312.386667pt;}
.y94{bottom:312.546667pt;}
.y100{bottom:317.826667pt;}
.yc8{bottom:320.546667pt;}
.y7d{bottom:324.546667pt;}
.y2e{bottom:327.746667pt;}
.y93{bottom:327.906667pt;}
.yff{bottom:333.026667pt;}
.yc7{bottom:335.906667pt;}
.y7c{bottom:339.906667pt;}
.y2d{bottom:343.106667pt;}
.y92{bottom:343.266667pt;}
.yfe{bottom:348.386667pt;}
.yc6{bottom:351.266667pt;}
.y7b{bottom:355.106667pt;}
.y2c{bottom:358.466667pt;}
.yfd{bottom:363.746667pt;}
.yc5{bottom:366.626667pt;}
.y7a{bottom:370.466667pt;}
.y2b{bottom:373.826667pt;}
.yfc{bottom:379.106667pt;}
.yc4{bottom:381.986667pt;}
.y79{bottom:385.826667pt;}
.y2a{bottom:389.026667pt;}
.y91{bottom:389.186667pt;}
.yfb{bottom:394.466667pt;}
.yc3{bottom:397.346667pt;}
.y78{bottom:401.186667pt;}
.y29{bottom:404.386667pt;}
.y90{bottom:404.546667pt;}
.yfa{bottom:409.666667pt;}
.yc2{bottom:412.546667pt;}
.y77{bottom:416.546667pt;}
.y5f{bottom:417.186667pt;}
.y28{bottom:419.746667pt;}
.y8f{bottom:419.906667pt;}
.yf9{bottom:425.026667pt;}
.yc1{bottom:427.906667pt;}
.y76{bottom:431.906667pt;}
.y5e{bottom:433.986667pt;}
.y27{bottom:435.106667pt;}
.y8e{bottom:435.266667pt;}
.yf8{bottom:440.386667pt;}
.yc0{bottom:443.266667pt;}
.y75{bottom:447.106667pt;}
.y26{bottom:450.466667pt;}
.yf7{bottom:455.746667pt;}
.ybf{bottom:458.626667pt;}
.y74{bottom:462.466667pt;}
.y25{bottom:465.826667pt;}
.yf6{bottom:471.106667pt;}
.ybe{bottom:473.986667pt;}
.y73{bottom:477.826667pt;}
.y24{bottom:481.026667pt;}
.y5d{bottom:481.186667pt;}
.yf5{bottom:486.466667pt;}
.ybd{bottom:489.346667pt;}
.y72{bottom:493.186667pt;}
.y23{bottom:496.386667pt;}
.y5c{bottom:496.546667pt;}
.ybc{bottom:498.306667pt;}
.yf4{bottom:501.666667pt;}
.y71{bottom:508.546667pt;}
.y22{bottom:511.746667pt;}
.y5b{bottom:511.906667pt;}
.yf3{bottom:517.026667pt;}
.ybb{bottom:522.306667pt;}
.y70{bottom:523.906667pt;}
.y21{bottom:527.106667pt;}
.y5a{bottom:527.266667pt;}
.yf2{bottom:532.386667pt;}
.yba{bottom:537.693333pt;}
.y6f{bottom:539.133333pt;}
.y20{bottom:542.493333pt;}
.yf1{bottom:547.773333pt;}
.yb9{bottom:553.053333pt;}
.y6e{bottom:554.493333pt;}
.y1f{bottom:557.693333pt;}
.y59{bottom:557.853333pt;}
.yf0{bottom:563.133333pt;}
.yb8{bottom:568.413333pt;}
.y6d{bottom:569.853333pt;}
.y1e{bottom:573.053333pt;}
.y58{bottom:573.213333pt;}
.yef{bottom:578.493333pt;}
.yb7{bottom:583.773333pt;}
.y6c{bottom:585.213333pt;}
.y1d{bottom:588.413333pt;}
.y57{bottom:588.573333pt;}
.yee{bottom:593.693333pt;}
.yb6{bottom:599.133333pt;}
.y6b{bottom:600.573333pt;}
.y1c{bottom:603.773333pt;}
.y56{bottom:603.933333pt;}
.yed{bottom:609.053333pt;}
.yb5{bottom:614.333333pt;}
.y6a{bottom:615.773333pt;}
.y1b{bottom:618.813333pt;}
.y55{bottom:619.133333pt;}
.yec{bottom:624.413333pt;}
.yb4{bottom:629.693333pt;}
.y69{bottom:631.133333pt;}
.y1a{bottom:632.573333pt;}
.y54{bottom:634.493333pt;}
.yeb{bottom:639.773333pt;}
.yb3{bottom:645.053333pt;}
.y68{bottom:646.493333pt;}
.y19{bottom:647.453333pt;}
.y53{bottom:649.853333pt;}
.yea{bottom:652.893333pt;}
.yb2{bottom:660.413333pt;}
.y67{bottom:661.853333pt;}
.y18{bottom:662.333333pt;}
.y52{bottom:665.213333pt;}
.ye9{bottom:668.893333pt;}
.yb1{bottom:675.773333pt;}
.y17{bottom:677.213333pt;}
.y51{bottom:680.573333pt;}
.ye8{bottom:684.893333pt;}
.yb0{bottom:690.973333pt;}
.y16{bottom:692.253333pt;}
.y66{bottom:692.573333pt;}
.y50{bottom:695.933333pt;}
.ye7{bottom:700.893333pt;}
.yaf{bottom:706.333333pt;}
.y15{bottom:707.133333pt;}
.y65{bottom:707.773333pt;}
.y4f{bottom:711.133333pt;}
.ye6{bottom:716.893333pt;}
.yae{bottom:721.693333pt;}
.y14{bottom:722.013333pt;}
.y64{bottom:723.133333pt;}
.y4e{bottom:726.493333pt;}
.ye5{bottom:732.893333pt;}
.y63{bottom:735.613333pt;}
.y13{bottom:736.893333pt;}
.yad{bottom:737.053333pt;}
.y4d{bottom:741.853333pt;}
.ye3{bottom:748.893333pt;}
.y12{bottom:751.773333pt;}
.yac{bottom:752.413333pt;}
.y4c{bottom:757.213333pt;}
.y11{bottom:766.653333pt;}
.yab{bottom:767.773333pt;}
.y4b{bottom:772.573333pt;}
.yaa{bottom:776.773333pt;}
.y10{bottom:781.093333pt;}
.ye2{bottom:783.173333pt;}
.y4a{bottom:787.973333pt;}
.ye1{bottom:798.373333pt;}
.ya9{bottom:800.773333pt;}
.yf{bottom:802.373333pt;}
.y49{bottom:803.173333pt;}
.ye0{bottom:813.733333pt;}
.ya8{bottom:816.133333pt;}
.ye{bottom:818.533333pt;}
.ydf{bottom:829.093333pt;}
.yd{bottom:830.053333pt;}
.ya7{bottom:831.493333pt;}
.y48{bottom:833.893333pt;}
.yde{bottom:844.453333pt;}
.yc{bottom:846.053333pt;}
.ya6{bottom:846.853333pt;}
.y47{bottom:849.253333pt;}
.ydd{bottom:859.813333pt;}
.ya5{bottom:862.213333pt;}
.y46{bottom:864.613333pt;}
.yb{bottom:871.653333pt;}
.ydc{bottom:875.173333pt;}
.ya4{bottom:877.413333pt;}
.y45{bottom:879.813333pt;}
.ydb{bottom:891.333333pt;}
.ya3{bottom:892.773333pt;}
.y44{bottom:895.173333pt;}
.ya{bottom:899.333333pt;}
.yda{bottom:907.653333pt;}
.ya2{bottom:908.133333pt;}
.y43{bottom:910.533333pt;}
.ya1{bottom:923.493333pt;}
.yd9{bottom:923.973333pt;}
.y42{bottom:925.893333pt;}
.y9{bottom:932.453333pt;}
.ya0{bottom:938.853333pt;}
.yd8{bottom:940.293333pt;}
.y41{bottom:941.253333pt;}
.y9f{bottom:954.213333pt;}
.y40{bottom:956.613333pt;}
.y9e{bottom:963.173333pt;}
.y8{bottom:969.733333pt;}
.y3f{bottom:971.813333pt;}
.y3e{bottom:987.173333pt;}
.y5{bottom:1013.440000pt;}
.y4{bottom:1031.360000pt;}
.y3{bottom:1048.160000pt;}
.y2{bottom:1063.520000pt;}
.y1{bottom:1080.320000pt;}
.h15{height:15.360000pt;}
.hb{height:25.936875pt;}
.hd{height:33.539062pt;}
.hc{height:33.867188pt;}
.hf{height:37.116563pt;}
.he{height:37.479688pt;}
.h9{height:37.638125pt;}
.h11{height:38.672812pt;}
.h3{height:38.828437pt;}
.ha{height:39.352500pt;}
.h2{height:41.141250pt;}
.h6{height:43.355000pt;}
.h10{height:43.782500pt;}
.h5{height:56.062500pt;}
.h7{height:58.563750pt;}
.h12{height:78.076562pt;}
.h13{height:80.608125pt;}
.h14{height:80.768125pt;}
.h4{height:93.562500pt;}
.h8{height:93.925000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:165.466667pt;}
.w3{width:238.146667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x23{left:26.080000pt;}
.x6{left:56.799988pt;}
.xf{left:75.679988pt;}
.x18{left:80.831988pt;}
.x9{left:83.071988pt;}
.x16{left:99.711988pt;}
.x10{left:104.831988pt;}
.xd{left:108.991988pt;}
.x25{left:116.831988pt;}
.x7{left:122.591988pt;}
.x17{left:123.711988pt;}
.xe{left:126.591988pt;}
.x19{left:128.831988pt;}
.x1e{left:152.826655pt;}
.x1{left:162.746655pt;}
.xc{left:174.746655pt;}
.x21{left:185.626655pt;}
.x1c{left:196.826655pt;}
.x2{left:198.586655pt;}
.x22{left:199.866667pt;}
.x1a{left:209.146655pt;}
.x1f{left:269.986655pt;}
.x15{left:276.066655pt;}
.x13{left:278.466655pt;}
.xa{left:292.066655pt;}
.x3{left:306.466655pt;}
.x4{left:322.786655pt;}
.x8{left:340.226655pt;}
.x20{left:393.826655pt;}
.xb{left:401.666655pt;}
.x1d{left:409.986655pt;}
.x12{left:411.106655pt;}
.x1b{left:416.573322pt;}
.x24{left:438.013333pt;}
.x5{left:439.613322pt;}
.x11{left:590.533322pt;}
.x14{left:639.813322pt;}
}




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