
    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_f64c6eb1a8bcecd426c60752.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.120605;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_aafb2900b96f60a578d66dad.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_4197271033485951359c094b.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_f1d2a9bb79a62f794bbe8d30.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.914062;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_99f2491252f54e502d6e8a7c.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.995605;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_1a1a913da414e2fe377c39b3.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.914062;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_a7aeda538ba7cdcb4b0866c4.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_55bc2b72abc430721d41cd60.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_31f48b75bc3c3bfbff5f503a.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.208008;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffa{font-family:ffa;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: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;}
.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:-14.400000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:14.400000px;}
.lse{letter-spacing:-0.216000px;}
.lsf{letter-spacing:-0.144000px;}
.ls11{letter-spacing:-0.018000px;}
.ls0{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.002160px;}
.ls7{letter-spacing:0.048000px;}
.lsc{letter-spacing:0.056880px;}
.ls1{letter-spacing:0.144000px;}
.ls2{letter-spacing:0.180000px;}
.lsb{letter-spacing:0.216000px;}
.lsa{letter-spacing:0.360000px;}
.ls12{letter-spacing:0.720000px;}
.ls5{letter-spacing:1.512000px;}
.ls4{letter-spacing:2.376000px;}
.ls3{letter-spacing:2.801520px;}
.ls6{letter-spacing:4.322160px;}
.ls8{letter-spacing:19.442160px;}
.lsd{letter-spacing:30.960000px;}
.ls10{letter-spacing:54.864000px;}
.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;}
}
.ws0{word-spacing:-72.000000px;}
.wsf{word-spacing:-18.216000px;}
.ws3{word-spacing:-18.144000px;}
.ws1{word-spacing:-18.000000px;}
.ws11{word-spacing:-17.856000px;}
.ws10{word-spacing:-17.784000px;}
.ws4{word-spacing:-16.056000px;}
.ws5{word-spacing:-15.840000px;}
.ws12{word-spacing:-13.482000px;}
.wsa{word-spacing:-11.303280px;}
.wse{word-spacing:-11.248560px;}
.wsc{word-spacing:-11.246400px;}
.ws2{word-spacing:0.000000px;}
.ws7{word-spacing:0.216000px;}
.wsd{word-spacing:0.336000px;}
.wsb{word-spacing:4.392000px;}
.ws9{word-spacing:8.584560px;}
.ws8{word-spacing:9.304560px;}
.ws6{word-spacing:12.904560px;}
._22{margin-left:-7.495200px;}
._21{margin-left:-5.472000px;}
._f{margin-left:-4.176000px;}
._5{margin-left:-3.096000px;}
._0{margin-left:-1.258560px;}
._1{width:1.042560px;}
._4{width:2.072640px;}
._3{width:3.960000px;}
._2{width:5.760000px;}
._8{width:6.912000px;}
._d{width:7.920000px;}
._14{width:9.040320px;}
._13{width:10.937760px;}
._7{width:12.017760px;}
._6{width:13.282560px;}
._12{width:14.400000px;}
._10{width:15.408000px;}
._11{width:16.522560px;}
._20{width:18.325440px;}
._16{width:19.621440px;}
._15{width:20.952000px;}
._1c{width:22.285440px;}
._1b{width:23.938560px;}
._e{width:25.056000px;}
._a{width:26.373120px;}
._9{width:27.408000px;}
._b{width:28.453440px;}
._29{width:29.488800px;}
._1e{width:30.528000px;}
._1f{width:31.536000px;}
._28{width:32.650560px;}
._23{width:33.696000px;}
._24{width:34.776000px;}
._27{width:36.576000px;}
._18{width:38.194560px;}
._1d{width:39.528000px;}
._17{width:41.146560px;}
._26{width:46.834560px;}
._19{width:56.232000px;}
._1a{width:58.777440px;}
._25{width:75.672000px;}
._c{width:846.156000px;}
.fc2{color:rgb(238,0,0);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:51.120000px;}
.fs3{font-size:54.000000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y84{bottom:3.960000px;}
.y91{bottom:5.220000px;}
.y94{bottom:5.400000px;}
.ybd{bottom:6.840000px;}
.y6d{bottom:7.020000px;}
.y73{bottom:7.200000px;}
.y98{bottom:23.040000px;}
.y71{bottom:30.780000px;}
.y6f{bottom:30.960000px;}
.ya8{bottom:31.005000px;}
.yad{bottom:32.040000px;}
.yac{bottom:57.240000px;}
.ybc{bottom:57.285000px;}
.y2{bottom:58.320000px;}
.y1{bottom:78.516000px;}
.yab{bottom:82.260000px;}
.yaa{bottom:107.460000px;}
.yb1{bottom:114.696000px;}
.y2c{bottom:118.116000px;}
.y82{bottom:119.196000px;}
.y6b{bottom:121.536000px;}
.y120{bottom:124.596000px;}
.y50{bottom:130.716000px;}
.yd1{bottom:132.516000px;}
.yb0{bottom:135.396000px;}
.yf8{bottom:141.156000px;}
.y2b{bottom:141.876000px;}
.y11f{bottom:148.356000px;}
.y81{bottom:150.150000px;}
.y6a{bottom:152.490000px;}
.yaf{bottom:156.090000px;}
.y4f{bottom:161.850000px;}
.yd0{bottom:163.470000px;}
.yf7{bottom:164.910000px;}
.y2a{bottom:165.630000px;}
.y11e{bottom:172.110000px;}
.yae{bottom:176.790000px;}
.y80{bottom:181.290000px;}
.y69{bottom:183.630000px;}
.yc9{bottom:185.610000px;}
.yf6{bottom:188.670000px;}
.y29{bottom:189.390000px;}
.y4e{bottom:192.810000px;}
.ya9{bottom:194.250000px;}
.ycf{bottom:194.610000px;}
.y11d{bottom:195.870000px;}
.y7f{bottom:212.250000px;}
.yf5{bottom:212.430000px;}
.y28{bottom:213.330000px;}
.y68{bottom:214.590000px;}
.y11c{bottom:219.810000px;}
.y4d{bottom:223.950000px;}
.yce{bottom:225.570000px;}
.yf4{bottom:236.370000px;}
.y27{bottom:237.090000px;}
.y7e{bottom:243.390000px;}
.y11b{bottom:243.570000px;}
.y67{bottom:245.730000px;}
.y4c{bottom:254.910000px;}
.ycd{bottom:256.710000px;}
.yf3{bottom:260.130000px;}
.y26{bottom:260.850000px;}
.y11a{bottom:267.330000px;}
.y7d{bottom:274.350000px;}
.y66{bottom:276.690000px;}
.yf2{bottom:283.890000px;}
.y25{bottom:284.610000px;}
.y4b{bottom:286.050000px;}
.ycc{bottom:287.670000px;}
.y119{bottom:291.090000px;}
.y7c{bottom:305.490000px;}
.yf1{bottom:307.650000px;}
.y65{bottom:307.830000px;}
.y24{bottom:308.550000px;}
.y118{bottom:315.030000px;}
.y4a{bottom:317.010000px;}
.ya7{bottom:318.450000px;}
.ycb{bottom:318.810000px;}
.yf0{bottom:331.410000px;}
.y23{bottom:332.310000px;}
.y7b{bottom:336.495000px;}
.y64{bottom:338.835000px;}
.yca{bottom:345.855000px;}
.y49{bottom:348.015000px;}
.yef{bottom:355.395000px;}
.y22{bottom:356.115000px;}
.y117{bottom:362.595000px;}
.ya6{bottom:366.195000px;}
.y7a{bottom:367.635000px;}
.y63{bottom:369.975000px;}
.y48{bottom:379.155000px;}
.y21{bottom:379.875000px;}
.y116{bottom:386.355000px;}
.ya5{bottom:389.955000px;}
.y79{bottom:398.595000px;}
.y62{bottom:400.935000px;}
.yee{bottom:402.915000px;}
.y20{bottom:403.815000px;}
.y47{bottom:410.115000px;}
.ya4{bottom:413.715000px;}
.yed{bottom:426.675000px;}
.y1f{bottom:427.575000px;}
.y78{bottom:429.735000px;}
.y115{bottom:434.055000px;}
.y61{bottom:434.415000px;}
.y46{bottom:441.255000px;}
.y77{bottom:450.435000px;}
.yec{bottom:450.615000px;}
.y1e{bottom:451.335000px;}
.y114{bottom:457.815000px;}
.ya3{bottom:461.415000px;}
.y76{bottom:467.895000px;}
.y60{bottom:468.255000px;}
.y45{bottom:472.215000px;}
.yeb{bottom:474.375000px;}
.y1d{bottom:475.095000px;}
.y113{bottom:481.575000px;}
.ya2{bottom:485.175000px;}
.yea{bottom:498.135000px;}
.y1c{bottom:499.035000px;}
.y5f{bottom:502.095000px;}
.y44{bottom:503.355000px;}
.y112{bottom:505.335000px;}
.ya1{bottom:508.935000px;}
.y75{bottom:515.415000px;}
.ye9{bottom:521.895000px;}
.y1b{bottom:522.795000px;}
.y111{bottom:529.275000px;}
.ya0{bottom:532.875000px;}
.y43{bottom:534.315000px;}
.y5e{bottom:535.755000px;}
.ye8{bottom:545.835000px;}
.y1a{bottom:546.555000px;}
.y110{bottom:553.035000px;}
.yc8{bottom:555.015000px;}
.y9f{bottom:557.355000px;}
.y74{bottom:563.115000px;}
.y42{bottom:565.455000px;}
.y5d{bottom:568.875000px;}
.ye7{bottom:569.595000px;}
.y19{bottom:570.315000px;}
.yc7{bottom:572.475000px;}
.y10f{bottom:576.795000px;}
.ye6{bottom:593.355000px;}
.y18{bottom:594.075000px;}
.y41{bottom:596.415000px;}
.y5c{bottom:599.835000px;}
.y10e{bottom:600.555000px;}
.y72{bottom:610.665000px;}
.y9e{bottom:611.385000px;}
.ye5{bottom:617.145000px;}
.y17{bottom:618.045000px;}
.yc6{bottom:620.205000px;}
.y10d{bottom:624.525000px;}
.y40{bottom:627.585000px;}
.y5b{bottom:631.005000px;}
.y9d{bottom:633.705000px;}
.ye4{bottom:641.085000px;}
.y16{bottom:641.805000px;}
.yc5{bottom:643.965000px;}
.y10c{bottom:648.285000px;}
.y9c{bottom:654.405000px;}
.y70{bottom:658.365000px;}
.y3f{bottom:658.545000px;}
.y5a{bottom:664.485000px;}
.ye3{bottom:664.845000px;}
.yc4{bottom:667.725000px;}
.y9b{bottom:671.865000px;}
.y10b{bottom:672.045000px;}
.y15{bottom:672.765000px;}
.ye2{bottom:688.605000px;}
.y3e{bottom:689.685000px;}
.yc3{bottom:691.665000px;}
.y10a{bottom:695.805000px;}
.y59{bottom:698.145000px;}
.y14{bottom:703.905000px;}
.y6e{bottom:705.885000px;}
.y9a{bottom:707.505000px;}
.ye1{bottom:712.365000px;}
.yc2{bottom:715.425000px;}
.y109{bottom:719.745000px;}
.y3d{bottom:720.645000px;}
.y99{bottom:725.325000px;}
.y58{bottom:731.985000px;}
.y13{bottom:734.865000px;}
.ye0{bottom:736.305000px;}
.yc1{bottom:739.905000px;}
.y97{bottom:743.325000px;}
.y108{bottom:743.505000px;}
.y3c{bottom:751.785000px;}
.y6c{bottom:754.305000px;}
.ydf{bottom:760.065000px;}
.y57{bottom:765.825000px;}
.y12{bottom:766.005000px;}
.y107{bottom:767.265000px;}
.yc0{bottom:770.145000px;}
.y96{bottom:778.965000px;}
.y3b{bottom:782.745000px;}
.yde{bottom:783.825000px;}
.y106{bottom:791.025000px;}
.ybf{bottom:792.465000px;}
.y95{bottom:796.785000px;}
.y11{bottom:796.965000px;}
.y56{bottom:799.665000px;}
.ydd{bottom:807.585000px;}
.ybe{bottom:813.165000px;}
.y3a{bottom:813.885000px;}
.y93{bottom:814.605000px;}
.y105{bottom:814.965000px;}
.y10{bottom:828.105000px;}
.ybb{bottom:830.625000px;}
.ydc{bottom:831.525000px;}
.y92{bottom:832.605000px;}
.y55{bottom:833.505000px;}
.y104{bottom:838.725000px;}
.y39{bottom:844.845000px;}
.y90{bottom:851.145000px;}
.ydb{bottom:855.285000px;}
.yf{bottom:859.065000px;}
.y103{bottom:862.485000px;}
.y54{bottom:867.345000px;}
.y8f{bottom:873.690000px;}
.y38{bottom:876.030000px;}
.yda{bottom:879.090000px;}
.y102{bottom:886.290000px;}
.ye{bottom:890.250000px;}
.y8e{bottom:894.390000px;}
.y53{bottom:901.230000px;}
.yd9{bottom:902.850000px;}
.yba{bottom:904.650000px;}
.y37{bottom:906.990000px;}
.y101{bottom:910.050000px;}
.y8d{bottom:915.090000px;}
.yd{bottom:919.950000px;}
.yd8{bottom:926.610000px;}
.yb9{bottom:928.410000px;}
.y8c{bottom:932.550000px;}
.y100{bottom:933.990000px;}
.y52{bottom:934.890000px;}
.y36{bottom:938.130000px;}
.yc{bottom:949.650000px;}
.yd7{bottom:950.550000px;}
.yb8{bottom:952.350000px;}
.y8b{bottom:953.250000px;}
.yff{bottom:957.750000px;}
.y51{bottom:968.730000px;}
.y35{bottom:969.090000px;}
.y8a{bottom:973.950000px;}
.yd6{bottom:974.310000px;}
.yb7{bottom:976.110000px;}
.yb{bottom:980.790000px;}
.yfe{bottom:981.510000px;}
.y89{bottom:994.650000px;}
.yd5{bottom:998.070000px;}
.yb6{bottom:999.870000px;}
.y34{bottom:1000.230000px;}
.yfd{bottom:1005.270000px;}
.ya{bottom:1011.750000px;}
.y88{bottom:1015.350000px;}
.yd4{bottom:1021.830000px;}
.yb5{bottom:1023.630000px;}
.yfc{bottom:1029.210000px;}
.y33{bottom:1031.190000px;}
.y87{bottom:1036.050000px;}
.y9{bottom:1042.890000px;}
.yd3{bottom:1045.770000px;}
.yb4{bottom:1047.570000px;}
.yfb{bottom:1052.970000px;}
.y86{bottom:1056.750000px;}
.y32{bottom:1062.330000px;}
.yd2{bottom:1069.530000px;}
.yb3{bottom:1071.330000px;}
.y8{bottom:1073.850000px;}
.yfa{bottom:1076.730000px;}
.y85{bottom:1077.450000px;}
.y31{bottom:1093.290000px;}
.yb2{bottom:1095.810000px;}
.y7{bottom:1097.790000px;}
.y83{bottom:1098.870000px;}
.yf9{bottom:1100.490000px;}
.y6{bottom:1121.550000px;}
.y30{bottom:1124.430000px;}
.y5{bottom:1145.340000px;}
.y2f{bottom:1145.700000px;}
.y2e{bottom:1168.380000px;}
.y4{bottom:1169.100000px;}
.y2d{bottom:1192.140000px;}
.y3{bottom:1193.040000px;}
.he{height:17.820000px;}
.h10{height:18.000000px;}
.hd{height:20.700000px;}
.h9{height:23.760000px;}
.h17{height:23.796000px;}
.h12{height:23.940000px;}
.h11{height:35.640000px;}
.hf{height:37.705078px;}
.h4{height:46.736719px;}
.hb{height:47.520000px;}
.hc{height:47.556000px;}
.ha{height:47.700000px;}
.h13{height:47.736000px;}
.h5{height:50.273438px;}
.h3{height:50.800781px;}
.h15{height:52.417969px;}
.h6{height:54.246094px;}
.h7{height:59.343750px;}
.h8{height:64.054688px;}
.h2{height:65.884219px;}
.h16{height:74.016000px;}
.h14{height:124.200000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wf{width:48.600000px;}
.w11{width:55.620000px;}
.w15{width:57.096000px;}
.w10{width:64.296000px;}
.wb{width:66.240000px;}
.wa{width:66.276000px;}
.w8{width:66.816000px;}
.w1b{width:67.680000px;}
.w14{width:68.400000px;}
.w21{width:73.620000px;}
.wd{width:76.860000px;}
.w16{width:80.280000px;}
.w1a{width:81.396000px;}
.w23{width:82.836000px;}
.wc{width:83.160000px;}
.w12{width:85.896000px;}
.w20{width:89.316000px;}
.w1f{width:91.260000px;}
.w18{width:97.236000px;}
.w9{width:97.920000px;}
.w24{width:98.280000px;}
.w5{width:99.216000px;}
.w1e{width:101.556000px;}
.w13{width:108.360000px;}
.we{width:108.540000px;}
.w6{width:115.380000px;}
.w19{width:143.460000px;}
.w3{width:145.260000px;}
.w7{width:153.540000px;}
.w17{width:287.310000px;}
.w4{width:317.235000px;}
.w1d{width:321.330000px;}
.w22{width:495.975000px;}
.w1c{width:677.085000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x14{left:8.100000px;}
.x2b{left:35.100000px;}
.x2{left:108.035987px;}
.x13{left:128.735987px;}
.xb{left:133.955987px;}
.x33{left:162.029987px;}
.x11{left:163.289987px;}
.xf{left:179.129987px;}
.x9{left:180.389987px;}
.x12{left:216.029987px;}
.x15{left:253.290000px;}
.x19{left:261.570000px;}
.x21{left:265.170000px;}
.xd{left:271.829987px;}
.xa{left:318.314987px;}
.xc{left:324.434987px;}
.x1a{left:328.395000px;}
.x22{left:329.475000px;}
.x3{left:332.354987px;}
.xe{left:333.974987px;}
.x10{left:346.934987px;}
.x20{left:366.014987px;}
.x23{left:385.095000px;}
.x18{left:391.754987px;}
.x28{left:395.355000px;}
.x1b{left:426.315000px;}
.x2c{left:429.375000px;}
.x1{left:434.054987px;}
.x8{left:446.474987px;}
.x24{left:470.985000px;}
.x1c{left:492.585000px;}
.x2d{left:530.925000px;}
.x7{left:545.504987px;}
.x1d{left:558.825000px;}
.x16{left:570.525000px;}
.x6{left:576.464987px;}
.x25{left:579.345000px;}
.x5{left:592.484987px;}
.x30{left:604.005000px;}
.x4{left:618.944987px;}
.x2e{left:622.185000px;}
.x29{left:636.045000px;}
.x1e{left:641.985000px;}
.x26{left:647.745000px;}
.x17{left:669.750000px;}
.x31{left:686.850000px;}
.x27{left:704.850000px;}
.x1f{left:708.270000px;}
.x2f{left:711.510000px;}
.x2a{left:717.450000px;}
.x32{left:723.389987px;}
@media print{
.v1{vertical-align:-12.800000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:12.800000pt;}
.lse{letter-spacing:-0.192000pt;}
.lsf{letter-spacing:-0.128000pt;}
.ls11{letter-spacing:-0.016000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.001920pt;}
.ls7{letter-spacing:0.042667pt;}
.lsc{letter-spacing:0.050560pt;}
.ls1{letter-spacing:0.128000pt;}
.ls2{letter-spacing:0.160000pt;}
.lsb{letter-spacing:0.192000pt;}
.lsa{letter-spacing:0.320000pt;}
.ls12{letter-spacing:0.640000pt;}
.ls5{letter-spacing:1.344000pt;}
.ls4{letter-spacing:2.112000pt;}
.ls3{letter-spacing:2.490240pt;}
.ls6{letter-spacing:3.841920pt;}
.ls8{letter-spacing:17.281920pt;}
.lsd{letter-spacing:27.520000pt;}
.ls10{letter-spacing:48.768000pt;}
.ws0{word-spacing:-64.000000pt;}
.wsf{word-spacing:-16.192000pt;}
.ws3{word-spacing:-16.128000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws11{word-spacing:-15.872000pt;}
.ws10{word-spacing:-15.808000pt;}
.ws4{word-spacing:-14.272000pt;}
.ws5{word-spacing:-14.080000pt;}
.ws12{word-spacing:-11.984000pt;}
.wsa{word-spacing:-10.047360pt;}
.wse{word-spacing:-9.998720pt;}
.wsc{word-spacing:-9.996800pt;}
.ws2{word-spacing:0.000000pt;}
.ws7{word-spacing:0.192000pt;}
.wsd{word-spacing:0.298667pt;}
.wsb{word-spacing:3.904000pt;}
.ws9{word-spacing:7.630720pt;}
.ws8{word-spacing:8.270720pt;}
.ws6{word-spacing:11.470720pt;}
._22{margin-left:-6.662400pt;}
._21{margin-left:-4.864000pt;}
._f{margin-left:-3.712000pt;}
._5{margin-left:-2.752000pt;}
._0{margin-left:-1.118720pt;}
._1{width:0.926720pt;}
._4{width:1.842347pt;}
._3{width:3.520000pt;}
._2{width:5.120000pt;}
._8{width:6.144000pt;}
._d{width:7.040000pt;}
._14{width:8.035840pt;}
._13{width:9.722453pt;}
._7{width:10.682453pt;}
._6{width:11.806720pt;}
._12{width:12.800000pt;}
._10{width:13.696000pt;}
._11{width:14.686720pt;}
._20{width:16.289280pt;}
._16{width:17.441280pt;}
._15{width:18.624000pt;}
._1c{width:19.809280pt;}
._1b{width:21.278720pt;}
._e{width:22.272000pt;}
._a{width:23.442773pt;}
._9{width:24.362667pt;}
._b{width:25.291947pt;}
._29{width:26.212267pt;}
._1e{width:27.136000pt;}
._1f{width:28.032000pt;}
._28{width:29.022720pt;}
._23{width:29.952000pt;}
._24{width:30.912000pt;}
._27{width:32.512000pt;}
._18{width:33.950720pt;}
._1d{width:35.136000pt;}
._17{width:36.574720pt;}
._26{width:41.630720pt;}
._19{width:49.984000pt;}
._1a{width:52.246613pt;}
._25{width:67.264000pt;}
._c{width:752.138667pt;}
.fs2{font-size:45.440000pt;}
.fs3{font-size:48.000000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y84{bottom:3.520000pt;}
.y91{bottom:4.640000pt;}
.y94{bottom:4.800000pt;}
.ybd{bottom:6.080000pt;}
.y6d{bottom:6.240000pt;}
.y73{bottom:6.400000pt;}
.y98{bottom:20.480000pt;}
.y71{bottom:27.360000pt;}
.y6f{bottom:27.520000pt;}
.ya8{bottom:27.560000pt;}
.yad{bottom:28.480000pt;}
.yac{bottom:50.880000pt;}
.ybc{bottom:50.920000pt;}
.y2{bottom:51.840000pt;}
.y1{bottom:69.792000pt;}
.yab{bottom:73.120000pt;}
.yaa{bottom:95.520000pt;}
.yb1{bottom:101.952000pt;}
.y2c{bottom:104.992000pt;}
.y82{bottom:105.952000pt;}
.y6b{bottom:108.032000pt;}
.y120{bottom:110.752000pt;}
.y50{bottom:116.192000pt;}
.yd1{bottom:117.792000pt;}
.yb0{bottom:120.352000pt;}
.yf8{bottom:125.472000pt;}
.y2b{bottom:126.112000pt;}
.y11f{bottom:131.872000pt;}
.y81{bottom:133.466667pt;}
.y6a{bottom:135.546667pt;}
.yaf{bottom:138.746667pt;}
.y4f{bottom:143.866667pt;}
.yd0{bottom:145.306667pt;}
.yf7{bottom:146.586667pt;}
.y2a{bottom:147.226667pt;}
.y11e{bottom:152.986667pt;}
.yae{bottom:157.146667pt;}
.y80{bottom:161.146667pt;}
.y69{bottom:163.226667pt;}
.yc9{bottom:164.986667pt;}
.yf6{bottom:167.706667pt;}
.y29{bottom:168.346667pt;}
.y4e{bottom:171.386667pt;}
.ya9{bottom:172.666667pt;}
.ycf{bottom:172.986667pt;}
.y11d{bottom:174.106667pt;}
.y7f{bottom:188.666667pt;}
.yf5{bottom:188.826667pt;}
.y28{bottom:189.626667pt;}
.y68{bottom:190.746667pt;}
.y11c{bottom:195.386667pt;}
.y4d{bottom:199.066667pt;}
.yce{bottom:200.506667pt;}
.yf4{bottom:210.106667pt;}
.y27{bottom:210.746667pt;}
.y7e{bottom:216.346667pt;}
.y11b{bottom:216.506667pt;}
.y67{bottom:218.426667pt;}
.y4c{bottom:226.586667pt;}
.ycd{bottom:228.186667pt;}
.yf3{bottom:231.226667pt;}
.y26{bottom:231.866667pt;}
.y11a{bottom:237.626667pt;}
.y7d{bottom:243.866667pt;}
.y66{bottom:245.946667pt;}
.yf2{bottom:252.346667pt;}
.y25{bottom:252.986667pt;}
.y4b{bottom:254.266667pt;}
.ycc{bottom:255.706667pt;}
.y119{bottom:258.746667pt;}
.y7c{bottom:271.546667pt;}
.yf1{bottom:273.466667pt;}
.y65{bottom:273.626667pt;}
.y24{bottom:274.266667pt;}
.y118{bottom:280.026667pt;}
.y4a{bottom:281.786667pt;}
.ya7{bottom:283.066667pt;}
.ycb{bottom:283.386667pt;}
.yf0{bottom:294.586667pt;}
.y23{bottom:295.386667pt;}
.y7b{bottom:299.106667pt;}
.y64{bottom:301.186667pt;}
.yca{bottom:307.426667pt;}
.y49{bottom:309.346667pt;}
.yef{bottom:315.906667pt;}
.y22{bottom:316.546667pt;}
.y117{bottom:322.306667pt;}
.ya6{bottom:325.506667pt;}
.y7a{bottom:326.786667pt;}
.y63{bottom:328.866667pt;}
.y48{bottom:337.026667pt;}
.y21{bottom:337.666667pt;}
.y116{bottom:343.426667pt;}
.ya5{bottom:346.626667pt;}
.y79{bottom:354.306667pt;}
.y62{bottom:356.386667pt;}
.yee{bottom:358.146667pt;}
.y20{bottom:358.946667pt;}
.y47{bottom:364.546667pt;}
.ya4{bottom:367.746667pt;}
.yed{bottom:379.266667pt;}
.y1f{bottom:380.066667pt;}
.y78{bottom:381.986667pt;}
.y115{bottom:385.826667pt;}
.y61{bottom:386.146667pt;}
.y46{bottom:392.226667pt;}
.y77{bottom:400.386667pt;}
.yec{bottom:400.546667pt;}
.y1e{bottom:401.186667pt;}
.y114{bottom:406.946667pt;}
.ya3{bottom:410.146667pt;}
.y76{bottom:415.906667pt;}
.y60{bottom:416.226667pt;}
.y45{bottom:419.746667pt;}
.yeb{bottom:421.666667pt;}
.y1d{bottom:422.306667pt;}
.y113{bottom:428.066667pt;}
.ya2{bottom:431.266667pt;}
.yea{bottom:442.786667pt;}
.y1c{bottom:443.586667pt;}
.y5f{bottom:446.306667pt;}
.y44{bottom:447.426667pt;}
.y112{bottom:449.186667pt;}
.ya1{bottom:452.386667pt;}
.y75{bottom:458.146667pt;}
.ye9{bottom:463.906667pt;}
.y1b{bottom:464.706667pt;}
.y111{bottom:470.466667pt;}
.ya0{bottom:473.666667pt;}
.y43{bottom:474.946667pt;}
.y5e{bottom:476.226667pt;}
.ye8{bottom:485.186667pt;}
.y1a{bottom:485.826667pt;}
.y110{bottom:491.586667pt;}
.yc8{bottom:493.346667pt;}
.y9f{bottom:495.426667pt;}
.y74{bottom:500.546667pt;}
.y42{bottom:502.626667pt;}
.y5d{bottom:505.666667pt;}
.ye7{bottom:506.306667pt;}
.y19{bottom:506.946667pt;}
.yc7{bottom:508.866667pt;}
.y10f{bottom:512.706667pt;}
.ye6{bottom:527.426667pt;}
.y18{bottom:528.066667pt;}
.y41{bottom:530.146667pt;}
.y5c{bottom:533.186667pt;}
.y10e{bottom:533.826667pt;}
.y72{bottom:542.813333pt;}
.y9e{bottom:543.453333pt;}
.ye5{bottom:548.573333pt;}
.y17{bottom:549.373333pt;}
.yc6{bottom:551.293333pt;}
.y10d{bottom:555.133333pt;}
.y40{bottom:557.853333pt;}
.y5b{bottom:560.893333pt;}
.y9d{bottom:563.293333pt;}
.ye4{bottom:569.853333pt;}
.y16{bottom:570.493333pt;}
.yc5{bottom:572.413333pt;}
.y10c{bottom:576.253333pt;}
.y9c{bottom:581.693333pt;}
.y70{bottom:585.213333pt;}
.y3f{bottom:585.373333pt;}
.y5a{bottom:590.653333pt;}
.ye3{bottom:590.973333pt;}
.yc4{bottom:593.533333pt;}
.y9b{bottom:597.213333pt;}
.y10b{bottom:597.373333pt;}
.y15{bottom:598.013333pt;}
.ye2{bottom:612.093333pt;}
.y3e{bottom:613.053333pt;}
.yc3{bottom:614.813333pt;}
.y10a{bottom:618.493333pt;}
.y59{bottom:620.573333pt;}
.y14{bottom:625.693333pt;}
.y6e{bottom:627.453333pt;}
.y9a{bottom:628.893333pt;}
.ye1{bottom:633.213333pt;}
.yc2{bottom:635.933333pt;}
.y109{bottom:639.773333pt;}
.y3d{bottom:640.573333pt;}
.y99{bottom:644.733333pt;}
.y58{bottom:650.653333pt;}
.y13{bottom:653.213333pt;}
.ye0{bottom:654.493333pt;}
.yc1{bottom:657.693333pt;}
.y97{bottom:660.733333pt;}
.y108{bottom:660.893333pt;}
.y3c{bottom:668.253333pt;}
.y6c{bottom:670.493333pt;}
.ydf{bottom:675.613333pt;}
.y57{bottom:680.733333pt;}
.y12{bottom:680.893333pt;}
.y107{bottom:682.013333pt;}
.yc0{bottom:684.573333pt;}
.y96{bottom:692.413333pt;}
.y3b{bottom:695.773333pt;}
.yde{bottom:696.733333pt;}
.y106{bottom:703.133333pt;}
.ybf{bottom:704.413333pt;}
.y95{bottom:708.253333pt;}
.y11{bottom:708.413333pt;}
.y56{bottom:710.813333pt;}
.ydd{bottom:717.853333pt;}
.ybe{bottom:722.813333pt;}
.y3a{bottom:723.453333pt;}
.y93{bottom:724.093333pt;}
.y105{bottom:724.413333pt;}
.y10{bottom:736.093333pt;}
.ybb{bottom:738.333333pt;}
.ydc{bottom:739.133333pt;}
.y92{bottom:740.093333pt;}
.y55{bottom:740.893333pt;}
.y104{bottom:745.533333pt;}
.y39{bottom:750.973333pt;}
.y90{bottom:756.573333pt;}
.ydb{bottom:760.253333pt;}
.yf{bottom:763.613333pt;}
.y103{bottom:766.653333pt;}
.y54{bottom:770.973333pt;}
.y8f{bottom:776.613333pt;}
.y38{bottom:778.693333pt;}
.yda{bottom:781.413333pt;}
.y102{bottom:787.813333pt;}
.ye{bottom:791.333333pt;}
.y8e{bottom:795.013333pt;}
.y53{bottom:801.093333pt;}
.yd9{bottom:802.533333pt;}
.yba{bottom:804.133333pt;}
.y37{bottom:806.213333pt;}
.y101{bottom:808.933333pt;}
.y8d{bottom:813.413333pt;}
.yd{bottom:817.733333pt;}
.yd8{bottom:823.653333pt;}
.yb9{bottom:825.253333pt;}
.y8c{bottom:828.933333pt;}
.y100{bottom:830.213333pt;}
.y52{bottom:831.013333pt;}
.y36{bottom:833.893333pt;}
.yc{bottom:844.133333pt;}
.yd7{bottom:844.933333pt;}
.yb8{bottom:846.533333pt;}
.y8b{bottom:847.333333pt;}
.yff{bottom:851.333333pt;}
.y51{bottom:861.093333pt;}
.y35{bottom:861.413333pt;}
.y8a{bottom:865.733333pt;}
.yd6{bottom:866.053333pt;}
.yb7{bottom:867.653333pt;}
.yb{bottom:871.813333pt;}
.yfe{bottom:872.453333pt;}
.y89{bottom:884.133333pt;}
.yd5{bottom:887.173333pt;}
.yb6{bottom:888.773333pt;}
.y34{bottom:889.093333pt;}
.yfd{bottom:893.573333pt;}
.ya{bottom:899.333333pt;}
.y88{bottom:902.533333pt;}
.yd4{bottom:908.293333pt;}
.yb5{bottom:909.893333pt;}
.yfc{bottom:914.853333pt;}
.y33{bottom:916.613333pt;}
.y87{bottom:920.933333pt;}
.y9{bottom:927.013333pt;}
.yd3{bottom:929.573333pt;}
.yb4{bottom:931.173333pt;}
.yfb{bottom:935.973333pt;}
.y86{bottom:939.333333pt;}
.y32{bottom:944.293333pt;}
.yd2{bottom:950.693333pt;}
.yb3{bottom:952.293333pt;}
.y8{bottom:954.533333pt;}
.yfa{bottom:957.093333pt;}
.y85{bottom:957.733333pt;}
.y31{bottom:971.813333pt;}
.yb2{bottom:974.053333pt;}
.y7{bottom:975.813333pt;}
.y83{bottom:976.773333pt;}
.yf9{bottom:978.213333pt;}
.y6{bottom:996.933333pt;}
.y30{bottom:999.493333pt;}
.y5{bottom:1018.080000pt;}
.y2f{bottom:1018.400000pt;}
.y2e{bottom:1038.560000pt;}
.y4{bottom:1039.200000pt;}
.y2d{bottom:1059.680000pt;}
.y3{bottom:1060.480000pt;}
.he{height:15.840000pt;}
.h10{height:16.000000pt;}
.hd{height:18.400000pt;}
.h9{height:21.120000pt;}
.h17{height:21.152000pt;}
.h12{height:21.280000pt;}
.h11{height:31.680000pt;}
.hf{height:33.515625pt;}
.h4{height:41.543750pt;}
.hb{height:42.240000pt;}
.hc{height:42.272000pt;}
.ha{height:42.400000pt;}
.h13{height:42.432000pt;}
.h5{height:44.687500pt;}
.h3{height:45.156250pt;}
.h15{height:46.593750pt;}
.h6{height:48.218750pt;}
.h7{height:52.750000pt;}
.h8{height:56.937500pt;}
.h2{height:58.563750pt;}
.h16{height:65.792000pt;}
.h14{height:110.400000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wf{width:43.200000pt;}
.w11{width:49.440000pt;}
.w15{width:50.752000pt;}
.w10{width:57.152000pt;}
.wb{width:58.880000pt;}
.wa{width:58.912000pt;}
.w8{width:59.392000pt;}
.w1b{width:60.160000pt;}
.w14{width:60.800000pt;}
.w21{width:65.440000pt;}
.wd{width:68.320000pt;}
.w16{width:71.360000pt;}
.w1a{width:72.352000pt;}
.w23{width:73.632000pt;}
.wc{width:73.920000pt;}
.w12{width:76.352000pt;}
.w20{width:79.392000pt;}
.w1f{width:81.120000pt;}
.w18{width:86.432000pt;}
.w9{width:87.040000pt;}
.w24{width:87.360000pt;}
.w5{width:88.192000pt;}
.w1e{width:90.272000pt;}
.w13{width:96.320000pt;}
.we{width:96.480000pt;}
.w6{width:102.560000pt;}
.w19{width:127.520000pt;}
.w3{width:129.120000pt;}
.w7{width:136.480000pt;}
.w17{width:255.386667pt;}
.w4{width:281.986667pt;}
.w1d{width:285.626667pt;}
.w22{width:440.866667pt;}
.w1c{width:601.853333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x14{left:7.200000pt;}
.x2b{left:31.200000pt;}
.x2{left:96.031988pt;}
.x13{left:114.431988pt;}
.xb{left:119.071988pt;}
.x33{left:144.026655pt;}
.x11{left:145.146655pt;}
.xf{left:159.226655pt;}
.x9{left:160.346655pt;}
.x12{left:192.026655pt;}
.x15{left:225.146667pt;}
.x19{left:232.506667pt;}
.x21{left:235.706667pt;}
.xd{left:241.626655pt;}
.xa{left:282.946655pt;}
.xc{left:288.386655pt;}
.x1a{left:291.906667pt;}
.x22{left:292.866667pt;}
.x3{left:295.426655pt;}
.xe{left:296.866655pt;}
.x10{left:308.386655pt;}
.x20{left:325.346655pt;}
.x23{left:342.306667pt;}
.x18{left:348.226655pt;}
.x28{left:351.426667pt;}
.x1b{left:378.946667pt;}
.x2c{left:381.666667pt;}
.x1{left:385.826655pt;}
.x8{left:396.866655pt;}
.x24{left:418.653333pt;}
.x1c{left:437.853333pt;}
.x2d{left:471.933333pt;}
.x7{left:484.893322pt;}
.x1d{left:496.733333pt;}
.x16{left:507.133333pt;}
.x6{left:512.413322pt;}
.x25{left:514.973333pt;}
.x5{left:526.653322pt;}
.x30{left:536.893333pt;}
.x4{left:550.173322pt;}
.x2e{left:553.053333pt;}
.x29{left:565.373333pt;}
.x1e{left:570.653333pt;}
.x26{left:575.773333pt;}
.x17{left:595.333333pt;}
.x31{left:610.533333pt;}
.x27{left:626.533333pt;}
.x1f{left:629.573333pt;}
.x2f{left:632.453333pt;}
.x2a{left:637.733333pt;}
.x32{left:643.013322pt;}
}




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