
    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_490a41e44d04f9456522c311.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.961914;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_859d66f070d9d60ab46646b8.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.115234;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_f381a2da9061b1a4737fd37f.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.106934;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_3726ee4df0f9d594ec7f8b39.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.892578;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_7dfb395a8dbc674d48139a3d.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.115234;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_3928ca210b29b966de805188.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.106934;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_a5464647b05299752a590195.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.104492;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);}
.v0{vertical-align:0.000000px;}
.lsb{letter-spacing:-0.936000px;}
.lsf{letter-spacing:-0.864000px;}
.lsc{letter-spacing:-0.720000px;}
.ls7{letter-spacing:-0.576000px;}
.ls6{letter-spacing:-0.504000px;}
.ls8{letter-spacing:-0.432000px;}
.ls19{letter-spacing:-0.305400px;}
.ls9{letter-spacing:-0.216000px;}
.ls10{letter-spacing:-0.189600px;}
.ls4{letter-spacing:-0.181200px;}
.lsa{letter-spacing:-0.144000px;}
.ls14{letter-spacing:-0.109200px;}
.ls1f{letter-spacing:-0.106800px;}
.ls1d{letter-spacing:-0.053280px;}
.ls16{letter-spacing:-0.018720px;}
.ls3{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.018720px;}
.ls20{letter-spacing:0.053280px;}
.ls1{letter-spacing:0.108000px;}
.ls5{letter-spacing:0.144000px;}
.lsd{letter-spacing:0.162000px;}
.ls17{letter-spacing:0.208200px;}
.ls18{letter-spacing:0.262200px;}
.ls2{letter-spacing:0.288000px;}
.ls0{letter-spacing:0.305280px;}
.ls1a{letter-spacing:0.305400px;}
.ls15{letter-spacing:0.414600px;}
.ls13{letter-spacing:0.530400px;}
.ls1e{letter-spacing:0.612000px;}
.ls1c{letter-spacing:0.613440px;}
.ls11{letter-spacing:0.702000px;}
.lse{letter-spacing:1.421280px;}
.ls21{letter-spacing:15.066720px;}
.ls1b{letter-spacing:126.485280px;}
.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;}
}
.ws8{word-spacing:-95.760000px;}
.ws13{word-spacing:-27.323280px;}
.ws15{word-spacing:-27.151680px;}
.ws2{word-spacing:-27.000000px;}
.ws19{word-spacing:-26.829480px;}
.ws14{word-spacing:-26.640000px;}
.ws12{word-spacing:-26.621280px;}
.ws18{word-spacing:-26.602560px;}
.ws11{word-spacing:-26.431680px;}
.wsc{word-spacing:-20.304000px;}
.wse{word-spacing:-20.160000px;}
.ws3{word-spacing:-20.016000px;}
.wsd{word-spacing:-19.872000px;}
.wsb{word-spacing:-19.800000px;}
.wsa{word-spacing:-19.584000px;}
.ws9{word-spacing:-19.440000px;}
.ws10{word-spacing:-19.152000px;}
.ws17{word-spacing:-18.829320px;}
.ws1d{word-spacing:-18.720120px;}
.ws1b{word-spacing:-18.676920px;}
.ws1a{word-spacing:-18.414720px;}
.ws16{word-spacing:-18.305520px;}
.ws1c{word-spacing:-18.109320px;}
.ws1e{word-spacing:-17.225280px;}
.ws20{word-spacing:-16.666560px;}
.ws6{word-spacing:-16.613280px;}
.ws1f{word-spacing:-16.506480px;}
.wsf{word-spacing:-15.120000px;}
.ws4{word-spacing:-15.012000px;}
.ws5{word-spacing:-14.508000px;}
.ws0{word-spacing:-13.410720px;}
.ws1{word-spacing:-13.229520px;}
.ws7{word-spacing:0.000000px;}
._1b{margin-left:-5.084640px;}
._8{margin-left:-3.944160px;}
._7{margin-left:-2.538000px;}
._0{margin-left:-1.061280px;}
._3{width:1.013040px;}
._6{width:2.408880px;}
._a{width:3.510000px;}
._4{width:4.536000px;}
._18{width:5.592000px;}
._1{width:6.946560px;}
._2{width:8.200800px;}
._5{width:9.370080px;}
._13{width:11.352000px;}
._9{width:12.390720px;}
._14{width:13.464000px;}
._15{width:14.760240px;}
._23{width:16.272000px;}
._17{width:17.319120px;}
._16{width:18.677280px;}
._19{width:21.586560px;}
._1a{width:23.544000px;}
._1d{width:25.752000px;}
._1c{width:26.856000px;}
._1e{width:28.872000px;}
._f{width:30.077280px;}
._e{width:31.248000px;}
._10{width:32.514720px;}
._24{width:38.232000px;}
._12{width:44.136000px;}
._11{width:45.360000px;}
._27{width:47.952000px;}
._31{width:49.175280px;}
._2a{width:51.192000px;}
._29{width:52.218000px;}
._22{width:53.928000px;}
._34{width:54.984960px;}
._21{width:56.208000px;}
._c{width:65.442720px;}
._d{width:66.638400px;}
._25{width:71.550000px;}
._2b{width:73.008000px;}
._1f{width:77.332320px;}
._20{width:79.414800px;}
._28{width:108.918000px;}
._2e{width:124.898400px;}
._2d{width:125.963760px;}
._2f{width:128.092800px;}
._30{width:129.342960px;}
._26{width:131.706000px;}
._33{width:168.290880px;}
._32{width:169.697280px;}
._35{width:208.502640px;}
._2c{width:845.741280px;}
._b{width:847.542720px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,0,0);}
.fs5{font-size:5.760000px;}
.fs8{font-size:38.880000px;}
.fs1{font-size:48.240000px;}
.fs6{font-size:54.000000px;}
.fs7{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs9{font-size:84.240000px;}
.fs4{font-size:95.760000px;}
.fs3{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.yb9{bottom:2.880000px;}
.ybd{bottom:3.060000px;}
.ycd{bottom:7.740000px;}
.yc8{bottom:12.240000px;}
.yd2{bottom:12.420000px;}
.yc5{bottom:12.450000px;}
.yd6{bottom:12.780000px;}
.yda{bottom:13.320000px;}
.yb8{bottom:18.360000px;}
.ybf{bottom:18.540000px;}
.ybc{bottom:18.720000px;}
.ycf{bottom:23.220000px;}
.ycc{bottom:23.400000px;}
.yba{bottom:26.100000px;}
.yc7{bottom:27.720000px;}
.yd1{bottom:27.900000px;}
.yc4{bottom:27.930000px;}
.yd5{bottom:28.440000px;}
.yd9{bottom:28.800000px;}
.yc2{bottom:33.840000px;}
.yb7{bottom:34.020000px;}
.ycb{bottom:38.880000px;}
.yd8{bottom:44.460000px;}
.yb6{bottom:49.500000px;}
.y9{bottom:56.556000px;}
.y8{bottom:77.796000px;}
.y31{bottom:130.716000px;}
.y113{bottom:133.776000px;}
.y30{bottom:147.996000px;}
.y112{bottom:151.050000px;}
.y2f{bottom:152.490000px;}
.y73{bottom:153.930000px;}
.y52{bottom:155.370000px;}
.yb0{bottom:163.470000px;}
.y2e{bottom:165.450000px;}
.y111{bottom:168.330000px;}
.yee{bottom:174.090000px;}
.y72{bottom:174.630000px;}
.ydb{bottom:175.530000px;}
.y51{bottom:176.070000px;}
.y95{bottom:180.390000px;}
.yaf{bottom:184.170000px;}
.yd7{bottom:193.170000px;}
.y71{bottom:195.330000px;}
.y94{bottom:201.090000px;}
.y110{bottom:203.610000px;}
.yed{bottom:213.870000px;}
.y50{bottom:214.770000px;}
.y70{bottom:216.030000px;}
.y10f{bottom:220.890000px;}
.yae{bottom:222.870000px;}
.y4f{bottom:235.470000px;}
.yec{bottom:235.650000px;}
.y6f{bottom:236.730000px;}
.y10e{bottom:238.170000px;}
.y93{bottom:239.790000px;}
.yad{bottom:243.570000px;}
.y135{bottom:249.150000px;}
.yd4{bottom:250.950000px;}
.y4e{bottom:256.170000px;}
.y6e{bottom:257.430000px;}
.y92{bottom:260.490000px;}
.yac{bottom:264.270000px;}
.y134{bottom:266.430000px;}
.y10d{bottom:273.270000px;}
.y4d{bottom:276.870000px;}
.y6d{bottom:278.130000px;}
.yeb{bottom:278.310000px;}
.y91{bottom:281.190000px;}
.y133{bottom:283.710000px;}
.yab{bottom:284.970000px;}
.y10c{bottom:290.550000px;}
.yd3{bottom:292.755000px;}
.y2d{bottom:297.615000px;}
.y6c{bottom:298.875000px;}
.y132{bottom:301.035000px;}
.y90{bottom:301.935000px;}
.y10b{bottom:307.875000px;}
.y2c{bottom:315.075000px;}
.y4c{bottom:318.315000px;}
.y8f{bottom:322.635000px;}
.yaa{bottom:323.715000px;}
.yd0{bottom:324.615000px;}
.yea{bottom:325.335000px;}
.y2b{bottom:334.335000px;}
.y6b{bottom:337.575000px;}
.y4b{bottom:339.015000px;}
.y10a{bottom:343.155000px;}
.y8e{bottom:343.335000px;}
.ya9{bottom:344.415000px;}
.y131{bottom:353.415000px;}
.y2a{bottom:355.035000px;}
.y6a{bottom:358.275000px;}
.y4a{bottom:359.715000px;}
.y109{bottom:360.435000px;}
.y8d{bottom:364.035000px;}
.ya8{bottom:365.115000px;}
.yce{bottom:365.835000px;}
.ye9{bottom:367.995000px;}
.y130{bottom:370.695000px;}
.y29{bottom:375.735000px;}
.y108{bottom:377.715000px;}
.y49{bottom:380.415000px;}
.y8c{bottom:384.735000px;}
.ya7{bottom:385.815000px;}
.y12f{bottom:387.975000px;}
.y28{bottom:396.435000px;}
.y69{bottom:396.975000px;}
.y12e{bottom:405.255000px;}
.y8b{bottom:405.435000px;}
.ye8{bottom:412.275000px;}
.y107{bottom:412.815000px;}
.y27{bottom:416.415000px;}
.y68{bottom:417.675000px;}
.yca{bottom:418.035000px;}
.y48{bottom:419.115000px;}
.y12d{bottom:422.535000px;}
.ya6{bottom:424.515000px;}
.y106{bottom:430.095000px;}
.y26{bottom:431.895000px;}
.ye7{bottom:432.975000px;}
.y47{bottom:439.815000px;}
.y8a{bottom:444.135000px;}
.ya5{bottom:445.215000px;}
.y25{bottom:447.375000px;}
.ye6{bottom:453.675000px;}
.y67{bottom:456.375000px;}
.y12c{bottom:457.635000px;}
.y46{bottom:460.515000px;}
.y24{bottom:462.855000px;}
.y89{bottom:464.835000px;}
.ya4{bottom:465.915000px;}
.yc9{bottom:470.235000px;}
.ye5{bottom:474.375000px;}
.y12b{bottom:474.915000px;}
.y66{bottom:477.075000px;}
.y23{bottom:478.515000px;}
.y45{bottom:481.215000px;}
.y105{bottom:482.655000px;}
.y88{bottom:485.535000px;}
.ya3{bottom:486.615000px;}
.y12a{bottom:492.195000px;}
.y22{bottom:493.995000px;}
.ye4{bottom:495.075000px;}
.y104{bottom:499.935000px;}
.y44{bottom:501.915000px;}
.yc6{bottom:502.095000px;}
.y87{bottom:506.235000px;}
.ya2{bottom:507.315000px;}
.y21{bottom:509.475000px;}
.y65{bottom:515.775000px;}
.y103{bottom:517.215000px;}
.y20{bottom:524.955000px;}
.y86{bottom:526.755000px;}
.y129{bottom:527.475000px;}
.y102{bottom:534.315000px;}
.y64{bottom:536.475000px;}
.y1f{bottom:540.615000px;}
.yc3{bottom:543.315000px;}
.y128{bottom:544.755000px;}
.ya1{bottom:547.275000px;}
.y85{bottom:547.455000px;}
.y101{bottom:551.625000px;}
.y1e{bottom:556.125000px;}
.y63{bottom:557.205000px;}
.y43{bottom:561.345000px;}
.y1d{bottom:571.605000px;}
.y62{bottom:577.905000px;}
.y127{bottom:580.065000px;}
.y42{bottom:582.045000px;}
.yc1{bottom:584.745000px;}
.y84{bottom:586.185000px;}
.y100{bottom:586.905000px;}
.y1c{bottom:587.085000px;}
.ya0{bottom:591.585000px;}
.ye3{bottom:595.905000px;}
.y126{bottom:597.345000px;}
.y61{bottom:598.605000px;}
.y1b{bottom:602.745000px;}
.yff{bottom:604.185000px;}
.y83{bottom:606.885000px;}
.y9f{bottom:612.285000px;}
.y125{bottom:614.445000px;}
.ye2{bottom:616.605000px;}
.y1a{bottom:618.225000px;}
.y60{bottom:619.305000px;}
.yfe{bottom:621.465000px;}
.y41{bottom:623.445000px;}
.y82{bottom:627.585000px;}
.y124{bottom:631.725000px;}
.yc0{bottom:631.905000px;}
.y9e{bottom:632.985000px;}
.y19{bottom:633.705000px;}
.ye1{bottom:637.305000px;}
.y5f{bottom:640.005000px;}
.y81{bottom:648.285000px;}
.y18{bottom:649.185000px;}
.y9d{bottom:653.685000px;}
.yfd{bottom:656.565000px;}
.ye0{bottom:658.005000px;}
.y40{bottom:662.145000px;}
.y17{bottom:664.845000px;}
.y123{bottom:667.005000px;}
.y80{bottom:668.985000px;}
.yfc{bottom:673.845000px;}
.y9c{bottom:674.385000px;}
.y5e{bottom:678.705000px;}
.ybe{bottom:679.245000px;}
.y16{bottom:680.325000px;}
.y3f{bottom:682.845000px;}
.y122{bottom:684.285000px;}
.y7f{bottom:689.685000px;}
.yfb{bottom:691.125000px;}
.y9b{bottom:695.085000px;}
.y15{bottom:695.805000px;}
.y5d{bottom:699.405000px;}
.y121{bottom:701.565000px;}
.y3e{bottom:703.545000px;}
.y7e{bottom:710.385000px;}
.ybb{bottom:711.105000px;}
.y14{bottom:711.285000px;}
.y5c{bottom:720.105000px;}
.y3d{bottom:724.245000px;}
.yfa{bottom:726.405000px;}
.y13{bottom:727.665000px;}
.y7d{bottom:731.085000px;}
.y9a{bottom:733.785000px;}
.y120{bottom:736.665000px;}
.ydf{bottom:739.365000px;}
.y5b{bottom:740.805000px;}
.yb5{bottom:743.145000px;}
.yf9{bottom:743.685000px;}
.y3c{bottom:744.945000px;}
.y12{bottom:748.365000px;}
.y11f{bottom:753.945000px;}
.y99{bottom:754.485000px;}
.yf8{bottom:760.965000px;}
.y5a{bottom:761.505000px;}
.y3b{bottom:765.645000px;}
.y11{bottom:769.065000px;}
.y7c{bottom:769.785000px;}
.y11e{bottom:771.225000px;}
.yf7{bottom:778.245000px;}
.y59{bottom:782.205000px;}
.yde{bottom:783.645000px;}
.y3a{bottom:786.345000px;}
.y10{bottom:789.765000px;}
.y7b{bottom:790.485000px;}
.y98{bottom:793.185000px;}
.y58{bottom:802.905000px;}
.ydd{bottom:804.345000px;}
.y11d{bottom:806.505000px;}
.y39{bottom:807.045000px;}
.yb4{bottom:809.790000px;}
.yf{bottom:810.510000px;}
.y7a{bottom:811.230000px;}
.yf6{bottom:813.390000px;}
.y97{bottom:813.930000px;}
.y57{bottom:823.650000px;}
.y11c{bottom:823.830000px;}
.ydc{bottom:825.090000px;}
.yb3{bottom:830.490000px;}
.yf5{bottom:830.670000px;}
.y79{bottom:831.930000px;}
.y11b{bottom:841.110000px;}
.y38{bottom:845.790000px;}
.yf4{bottom:847.950000px;}
.ye{bottom:850.650000px;}
.y78{bottom:852.630000px;}
.y56{bottom:863.070000px;}
.yf3{bottom:865.230000px;}
.y37{bottom:866.490000px;}
.yb2{bottom:869.190000px;}
.y77{bottom:873.330000px;}
.y11a{bottom:876.210000px;}
.yd{bottom:878.190000px;}
.y36{bottom:887.190000px;}
.yb1{bottom:889.890000px;}
.y119{bottom:893.490000px;}
.y76{bottom:894.030000px;}
.yf2{bottom:900.330000px;}
.y35{bottom:907.890000px;}
.y118{bottom:910.770000px;}
.y75{bottom:914.730000px;}
.yf1{bottom:917.610000px;}
.yc{bottom:924.450000px;}
.y34{bottom:928.590000px;}
.y55{bottom:929.850000px;}
.yf0{bottom:934.890000px;}
.y74{bottom:935.430000px;}
.y117{bottom:946.050000px;}
.y33{bottom:949.290000px;}
.yef{bottom:952.170000px;}
.y96{bottom:953.430000px;}
.yb{bottom:955.590000px;}
.y116{bottom:963.330000px;}
.y54{bottom:974.130000px;}
.y115{bottom:980.610000px;}
.ya{bottom:986.550000px;}
.y32{bottom:989.250000px;}
.y53{bottom:994.830000px;}
.y114{bottom:997.710000px;}
.y7{bottom:1033.890000px;}
.y6{bottom:1047.570000px;}
.y5{bottom:1061.430000px;}
.y4{bottom:1075.320000px;}
.y3{bottom:1089.000000px;}
.y2{bottom:1102.860000px;}
.y1{bottom:1117.980000px;}
.h9{height:5.163750px;}
.h19{height:30.960000px;}
.h12{height:31.140000px;}
.h11{height:31.320000px;}
.he{height:34.855313px;}
.h16{height:40.320000px;}
.h18{height:40.500000px;}
.h15{height:40.536000px;}
.h1a{height:41.076000px;}
.h3{height:43.246406px;}
.h2{height:43.646836px;}
.h14{height:46.440000px;}
.h13{height:46.620000px;}
.hb{height:48.410156px;}
.ha{height:48.858398px;}
.h17{height:51.480000px;}
.hd{height:53.573906px;}
.h1c{height:54.069961px;}
.h1{height:54.105469px;}
.h1b{height:57.060000px;}
.h4{height:59.383125px;}
.hc{height:59.932969px;}
.h10{height:62.100000px;}
.h8{height:64.546875px;}
.h7{height:65.144531px;}
.h5{height:74.408203px;}
.hf{height:76.219102px;}
.h6{height:86.642227px;}
.h0{height:1188.000000px;}
.w3{width:148.176000px;}
.w4{width:201.990000px;}
.w5{width:309.135000px;}
.w2{width:917.999973px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x18{left:8.100000px;}
.x10{left:9.540000px;}
.x1e{left:10.620000px;}
.x13{left:13.140000px;}
.xf{left:15.480000px;}
.xe{left:16.920000px;}
.x1c{left:19.620000px;}
.x1b{left:20.700000px;}
.x1a{left:24.114000px;}
.x1d{left:25.914000px;}
.x19{left:27.714000px;}
.x16{left:29.334000px;}
.x11{left:36.534000px;}
.x17{left:54.534000px;}
.x15{left:63.720000px;}
.x1{left:127.655986px;}
.xd{left:133.055986px;}
.x6{left:166.349986px;}
.x1f{left:170.129986px;}
.x3{left:224.309986px;}
.x4{left:226.469986px;}
.x7{left:238.349986px;}
.x8{left:270.794986px;}
.x12{left:275.835000px;}
.xc{left:343.694986px;}
.x5{left:354.854986px;}
.x9{left:401.654986px;}
.x2{left:428.294986px;}
.xb{left:435.524986px;}
.x14{left:477.825000px;}
.xa{left:515.804973px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsb{letter-spacing:-0.832000pt;}
.lsf{letter-spacing:-0.768000pt;}
.lsc{letter-spacing:-0.640000pt;}
.ls7{letter-spacing:-0.512000pt;}
.ls6{letter-spacing:-0.448000pt;}
.ls8{letter-spacing:-0.384000pt;}
.ls19{letter-spacing:-0.271467pt;}
.ls9{letter-spacing:-0.192000pt;}
.ls10{letter-spacing:-0.168533pt;}
.ls4{letter-spacing:-0.161067pt;}
.lsa{letter-spacing:-0.128000pt;}
.ls14{letter-spacing:-0.097067pt;}
.ls1f{letter-spacing:-0.094933pt;}
.ls1d{letter-spacing:-0.047360pt;}
.ls16{letter-spacing:-0.016640pt;}
.ls3{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.016640pt;}
.ls20{letter-spacing:0.047360pt;}
.ls1{letter-spacing:0.096000pt;}
.ls5{letter-spacing:0.128000pt;}
.lsd{letter-spacing:0.144000pt;}
.ls17{letter-spacing:0.185067pt;}
.ls18{letter-spacing:0.233067pt;}
.ls2{letter-spacing:0.256000pt;}
.ls0{letter-spacing:0.271360pt;}
.ls1a{letter-spacing:0.271467pt;}
.ls15{letter-spacing:0.368533pt;}
.ls13{letter-spacing:0.471467pt;}
.ls1e{letter-spacing:0.544000pt;}
.ls1c{letter-spacing:0.545280pt;}
.ls11{letter-spacing:0.624000pt;}
.lse{letter-spacing:1.263360pt;}
.ls21{letter-spacing:13.392640pt;}
.ls1b{letter-spacing:112.431360pt;}
.ws8{word-spacing:-85.120000pt;}
.ws13{word-spacing:-24.287360pt;}
.ws15{word-spacing:-24.134827pt;}
.ws2{word-spacing:-24.000000pt;}
.ws19{word-spacing:-23.848427pt;}
.ws14{word-spacing:-23.680000pt;}
.ws12{word-spacing:-23.663360pt;}
.ws18{word-spacing:-23.646720pt;}
.ws11{word-spacing:-23.494827pt;}
.wsc{word-spacing:-18.048000pt;}
.wse{word-spacing:-17.920000pt;}
.ws3{word-spacing:-17.792000pt;}
.wsd{word-spacing:-17.664000pt;}
.wsb{word-spacing:-17.600000pt;}
.wsa{word-spacing:-17.408000pt;}
.ws9{word-spacing:-17.280000pt;}
.ws10{word-spacing:-17.024000pt;}
.ws17{word-spacing:-16.737173pt;}
.ws1d{word-spacing:-16.640107pt;}
.ws1b{word-spacing:-16.601707pt;}
.ws1a{word-spacing:-16.368640pt;}
.ws16{word-spacing:-16.271573pt;}
.ws1c{word-spacing:-16.097173pt;}
.ws1e{word-spacing:-15.311360pt;}
.ws20{word-spacing:-14.814720pt;}
.ws6{word-spacing:-14.767360pt;}
.ws1f{word-spacing:-14.672427pt;}
.wsf{word-spacing:-13.440000pt;}
.ws4{word-spacing:-13.344000pt;}
.ws5{word-spacing:-12.896000pt;}
.ws0{word-spacing:-11.920640pt;}
.ws1{word-spacing:-11.759573pt;}
.ws7{word-spacing:0.000000pt;}
._1b{margin-left:-4.519680pt;}
._8{margin-left:-3.505920pt;}
._7{margin-left:-2.256000pt;}
._0{margin-left:-0.943360pt;}
._3{width:0.900480pt;}
._6{width:2.141227pt;}
._a{width:3.120000pt;}
._4{width:4.032000pt;}
._18{width:4.970667pt;}
._1{width:6.174720pt;}
._2{width:7.289600pt;}
._5{width:8.328960pt;}
._13{width:10.090667pt;}
._9{width:11.013973pt;}
._14{width:11.968000pt;}
._15{width:13.120213pt;}
._23{width:14.464000pt;}
._17{width:15.394773pt;}
._16{width:16.602027pt;}
._19{width:19.188053pt;}
._1a{width:20.928000pt;}
._1d{width:22.890667pt;}
._1c{width:23.872000pt;}
._1e{width:25.664000pt;}
._f{width:26.735360pt;}
._e{width:27.776000pt;}
._10{width:28.901973pt;}
._24{width:33.984000pt;}
._12{width:39.232000pt;}
._11{width:40.320000pt;}
._27{width:42.624000pt;}
._31{width:43.711360pt;}
._2a{width:45.504000pt;}
._29{width:46.416000pt;}
._22{width:47.936000pt;}
._34{width:48.875520pt;}
._21{width:49.962667pt;}
._c{width:58.171307pt;}
._d{width:59.234133pt;}
._25{width:63.600000pt;}
._2b{width:64.896000pt;}
._1f{width:68.739840pt;}
._20{width:70.590933pt;}
._28{width:96.816000pt;}
._2e{width:111.020800pt;}
._2d{width:111.967787pt;}
._2f{width:113.860267pt;}
._30{width:114.971520pt;}
._26{width:117.072000pt;}
._33{width:149.591893pt;}
._32{width:150.842027pt;}
._35{width:185.335680pt;}
._2c{width:751.770027pt;}
._b{width:753.371307pt;}
.fs5{font-size:5.120000pt;}
.fs8{font-size:34.560000pt;}
.fs1{font-size:42.880000pt;}
.fs6{font-size:48.000000pt;}
.fs7{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs9{font-size:74.880000pt;}
.fs4{font-size:85.120000pt;}
.fs3{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.yb9{bottom:2.560000pt;}
.ybd{bottom:2.720000pt;}
.ycd{bottom:6.880000pt;}
.yc8{bottom:10.880000pt;}
.yd2{bottom:11.040000pt;}
.yc5{bottom:11.066667pt;}
.yd6{bottom:11.360000pt;}
.yda{bottom:11.840000pt;}
.yb8{bottom:16.320000pt;}
.ybf{bottom:16.480000pt;}
.ybc{bottom:16.640000pt;}
.ycf{bottom:20.640000pt;}
.ycc{bottom:20.800000pt;}
.yba{bottom:23.200000pt;}
.yc7{bottom:24.640000pt;}
.yd1{bottom:24.800000pt;}
.yc4{bottom:24.826667pt;}
.yd5{bottom:25.280000pt;}
.yd9{bottom:25.600000pt;}
.yc2{bottom:30.080000pt;}
.yb7{bottom:30.240000pt;}
.ycb{bottom:34.560000pt;}
.yd8{bottom:39.520000pt;}
.yb6{bottom:44.000000pt;}
.y9{bottom:50.272000pt;}
.y8{bottom:69.152000pt;}
.y31{bottom:116.192000pt;}
.y113{bottom:118.912000pt;}
.y30{bottom:131.552000pt;}
.y112{bottom:134.266667pt;}
.y2f{bottom:135.546667pt;}
.y73{bottom:136.826667pt;}
.y52{bottom:138.106667pt;}
.yb0{bottom:145.306667pt;}
.y2e{bottom:147.066667pt;}
.y111{bottom:149.626667pt;}
.yee{bottom:154.746667pt;}
.y72{bottom:155.226667pt;}
.ydb{bottom:156.026667pt;}
.y51{bottom:156.506667pt;}
.y95{bottom:160.346667pt;}
.yaf{bottom:163.706667pt;}
.yd7{bottom:171.706667pt;}
.y71{bottom:173.626667pt;}
.y94{bottom:178.746667pt;}
.y110{bottom:180.986667pt;}
.yed{bottom:190.106667pt;}
.y50{bottom:190.906667pt;}
.y70{bottom:192.026667pt;}
.y10f{bottom:196.346667pt;}
.yae{bottom:198.106667pt;}
.y4f{bottom:209.306667pt;}
.yec{bottom:209.466667pt;}
.y6f{bottom:210.426667pt;}
.y10e{bottom:211.706667pt;}
.y93{bottom:213.146667pt;}
.yad{bottom:216.506667pt;}
.y135{bottom:221.466667pt;}
.yd4{bottom:223.066667pt;}
.y4e{bottom:227.706667pt;}
.y6e{bottom:228.826667pt;}
.y92{bottom:231.546667pt;}
.yac{bottom:234.906667pt;}
.y134{bottom:236.826667pt;}
.y10d{bottom:242.906667pt;}
.y4d{bottom:246.106667pt;}
.y6d{bottom:247.226667pt;}
.yeb{bottom:247.386667pt;}
.y91{bottom:249.946667pt;}
.y133{bottom:252.186667pt;}
.yab{bottom:253.306667pt;}
.y10c{bottom:258.266667pt;}
.yd3{bottom:260.226667pt;}
.y2d{bottom:264.546667pt;}
.y6c{bottom:265.666667pt;}
.y132{bottom:267.586667pt;}
.y90{bottom:268.386667pt;}
.y10b{bottom:273.666667pt;}
.y2c{bottom:280.066667pt;}
.y4c{bottom:282.946667pt;}
.y8f{bottom:286.786667pt;}
.yaa{bottom:287.746667pt;}
.yd0{bottom:288.546667pt;}
.yea{bottom:289.186667pt;}
.y2b{bottom:297.186667pt;}
.y6b{bottom:300.066667pt;}
.y4b{bottom:301.346667pt;}
.y10a{bottom:305.026667pt;}
.y8e{bottom:305.186667pt;}
.ya9{bottom:306.146667pt;}
.y131{bottom:314.146667pt;}
.y2a{bottom:315.586667pt;}
.y6a{bottom:318.466667pt;}
.y4a{bottom:319.746667pt;}
.y109{bottom:320.386667pt;}
.y8d{bottom:323.586667pt;}
.ya8{bottom:324.546667pt;}
.yce{bottom:325.186667pt;}
.ye9{bottom:327.106667pt;}
.y130{bottom:329.506667pt;}
.y29{bottom:333.986667pt;}
.y108{bottom:335.746667pt;}
.y49{bottom:338.146667pt;}
.y8c{bottom:341.986667pt;}
.ya7{bottom:342.946667pt;}
.y12f{bottom:344.866667pt;}
.y28{bottom:352.386667pt;}
.y69{bottom:352.866667pt;}
.y12e{bottom:360.226667pt;}
.y8b{bottom:360.386667pt;}
.ye8{bottom:366.466667pt;}
.y107{bottom:366.946667pt;}
.y27{bottom:370.146667pt;}
.y68{bottom:371.266667pt;}
.yca{bottom:371.586667pt;}
.y48{bottom:372.546667pt;}
.y12d{bottom:375.586667pt;}
.ya6{bottom:377.346667pt;}
.y106{bottom:382.306667pt;}
.y26{bottom:383.906667pt;}
.ye7{bottom:384.866667pt;}
.y47{bottom:390.946667pt;}
.y8a{bottom:394.786667pt;}
.ya5{bottom:395.746667pt;}
.y25{bottom:397.666667pt;}
.ye6{bottom:403.266667pt;}
.y67{bottom:405.666667pt;}
.y12c{bottom:406.786667pt;}
.y46{bottom:409.346667pt;}
.y24{bottom:411.426667pt;}
.y89{bottom:413.186667pt;}
.ya4{bottom:414.146667pt;}
.yc9{bottom:417.986667pt;}
.ye5{bottom:421.666667pt;}
.y12b{bottom:422.146667pt;}
.y66{bottom:424.066667pt;}
.y23{bottom:425.346667pt;}
.y45{bottom:427.746667pt;}
.y105{bottom:429.026667pt;}
.y88{bottom:431.586667pt;}
.ya3{bottom:432.546667pt;}
.y12a{bottom:437.506667pt;}
.y22{bottom:439.106667pt;}
.ye4{bottom:440.066667pt;}
.y104{bottom:444.386667pt;}
.y44{bottom:446.146667pt;}
.yc6{bottom:446.306667pt;}
.y87{bottom:449.986667pt;}
.ya2{bottom:450.946667pt;}
.y21{bottom:452.866667pt;}
.y65{bottom:458.466667pt;}
.y103{bottom:459.746667pt;}
.y20{bottom:466.626667pt;}
.y86{bottom:468.226667pt;}
.y129{bottom:468.866667pt;}
.y102{bottom:474.946667pt;}
.y64{bottom:476.866667pt;}
.y1f{bottom:480.546667pt;}
.yc3{bottom:482.946667pt;}
.y128{bottom:484.226667pt;}
.ya1{bottom:486.466667pt;}
.y85{bottom:486.626667pt;}
.y101{bottom:490.333333pt;}
.y1e{bottom:494.333333pt;}
.y63{bottom:495.293333pt;}
.y43{bottom:498.973333pt;}
.y1d{bottom:508.093333pt;}
.y62{bottom:513.693333pt;}
.y127{bottom:515.613333pt;}
.y42{bottom:517.373333pt;}
.yc1{bottom:519.773333pt;}
.y84{bottom:521.053333pt;}
.y100{bottom:521.693333pt;}
.y1c{bottom:521.853333pt;}
.ya0{bottom:525.853333pt;}
.ye3{bottom:529.693333pt;}
.y126{bottom:530.973333pt;}
.y61{bottom:532.093333pt;}
.y1b{bottom:535.773333pt;}
.yff{bottom:537.053333pt;}
.y83{bottom:539.453333pt;}
.y9f{bottom:544.253333pt;}
.y125{bottom:546.173333pt;}
.ye2{bottom:548.093333pt;}
.y1a{bottom:549.533333pt;}
.y60{bottom:550.493333pt;}
.yfe{bottom:552.413333pt;}
.y41{bottom:554.173333pt;}
.y82{bottom:557.853333pt;}
.y124{bottom:561.533333pt;}
.yc0{bottom:561.693333pt;}
.y9e{bottom:562.653333pt;}
.y19{bottom:563.293333pt;}
.ye1{bottom:566.493333pt;}
.y5f{bottom:568.893333pt;}
.y81{bottom:576.253333pt;}
.y18{bottom:577.053333pt;}
.y9d{bottom:581.053333pt;}
.yfd{bottom:583.613333pt;}
.ye0{bottom:584.893333pt;}
.y40{bottom:588.573333pt;}
.y17{bottom:590.973333pt;}
.y123{bottom:592.893333pt;}
.y80{bottom:594.653333pt;}
.yfc{bottom:598.973333pt;}
.y9c{bottom:599.453333pt;}
.y5e{bottom:603.293333pt;}
.ybe{bottom:603.773333pt;}
.y16{bottom:604.733333pt;}
.y3f{bottom:606.973333pt;}
.y122{bottom:608.253333pt;}
.y7f{bottom:613.053333pt;}
.yfb{bottom:614.333333pt;}
.y9b{bottom:617.853333pt;}
.y15{bottom:618.493333pt;}
.y5d{bottom:621.693333pt;}
.y121{bottom:623.613333pt;}
.y3e{bottom:625.373333pt;}
.y7e{bottom:631.453333pt;}
.ybb{bottom:632.093333pt;}
.y14{bottom:632.253333pt;}
.y5c{bottom:640.093333pt;}
.y3d{bottom:643.773333pt;}
.yfa{bottom:645.693333pt;}
.y13{bottom:646.813333pt;}
.y7d{bottom:649.853333pt;}
.y9a{bottom:652.253333pt;}
.y120{bottom:654.813333pt;}
.ydf{bottom:657.213333pt;}
.y5b{bottom:658.493333pt;}
.yb5{bottom:660.573333pt;}
.yf9{bottom:661.053333pt;}
.y3c{bottom:662.173333pt;}
.y12{bottom:665.213333pt;}
.y11f{bottom:670.173333pt;}
.y99{bottom:670.653333pt;}
.yf8{bottom:676.413333pt;}
.y5a{bottom:676.893333pt;}
.y3b{bottom:680.573333pt;}
.y11{bottom:683.613333pt;}
.y7c{bottom:684.253333pt;}
.y11e{bottom:685.533333pt;}
.yf7{bottom:691.773333pt;}
.y59{bottom:695.293333pt;}
.yde{bottom:696.573333pt;}
.y3a{bottom:698.973333pt;}
.y10{bottom:702.013333pt;}
.y7b{bottom:702.653333pt;}
.y98{bottom:705.053333pt;}
.y58{bottom:713.693333pt;}
.ydd{bottom:714.973333pt;}
.y11d{bottom:716.893333pt;}
.y39{bottom:717.373333pt;}
.yb4{bottom:719.813333pt;}
.yf{bottom:720.453333pt;}
.y7a{bottom:721.093333pt;}
.yf6{bottom:723.013333pt;}
.y97{bottom:723.493333pt;}
.y57{bottom:732.133333pt;}
.y11c{bottom:732.293333pt;}
.ydc{bottom:733.413333pt;}
.yb3{bottom:738.213333pt;}
.yf5{bottom:738.373333pt;}
.y79{bottom:739.493333pt;}
.y11b{bottom:747.653333pt;}
.y38{bottom:751.813333pt;}
.yf4{bottom:753.733333pt;}
.ye{bottom:756.133333pt;}
.y78{bottom:757.893333pt;}
.y56{bottom:767.173333pt;}
.yf3{bottom:769.093333pt;}
.y37{bottom:770.213333pt;}
.yb2{bottom:772.613333pt;}
.y77{bottom:776.293333pt;}
.y11a{bottom:778.853333pt;}
.yd{bottom:780.613333pt;}
.y36{bottom:788.613333pt;}
.yb1{bottom:791.013333pt;}
.y119{bottom:794.213333pt;}
.y76{bottom:794.693333pt;}
.yf2{bottom:800.293333pt;}
.y35{bottom:807.013333pt;}
.y118{bottom:809.573333pt;}
.y75{bottom:813.093333pt;}
.yf1{bottom:815.653333pt;}
.yc{bottom:821.733333pt;}
.y34{bottom:825.413333pt;}
.y55{bottom:826.533333pt;}
.yf0{bottom:831.013333pt;}
.y74{bottom:831.493333pt;}
.y117{bottom:840.933333pt;}
.y33{bottom:843.813333pt;}
.yef{bottom:846.373333pt;}
.y96{bottom:847.493333pt;}
.yb{bottom:849.413333pt;}
.y116{bottom:856.293333pt;}
.y54{bottom:865.893333pt;}
.y115{bottom:871.653333pt;}
.ya{bottom:876.933333pt;}
.y32{bottom:879.333333pt;}
.y53{bottom:884.293333pt;}
.y114{bottom:886.853333pt;}
.y7{bottom:919.013333pt;}
.y6{bottom:931.173333pt;}
.y5{bottom:943.493333pt;}
.y4{bottom:955.840000pt;}
.y3{bottom:968.000000pt;}
.y2{bottom:980.320000pt;}
.y1{bottom:993.760000pt;}
.h9{height:4.590000pt;}
.h19{height:27.520000pt;}
.h12{height:27.680000pt;}
.h11{height:27.840000pt;}
.he{height:30.982500pt;}
.h16{height:35.840000pt;}
.h18{height:36.000000pt;}
.h15{height:36.032000pt;}
.h1a{height:36.512000pt;}
.h3{height:38.441250pt;}
.h2{height:38.797187pt;}
.h14{height:41.280000pt;}
.h13{height:41.440000pt;}
.hb{height:43.031250pt;}
.ha{height:43.429688pt;}
.h17{height:45.760000pt;}
.hd{height:47.621250pt;}
.h1c{height:48.062188pt;}
.h1{height:48.093750pt;}
.h1b{height:50.720000pt;}
.h4{height:52.785000pt;}
.hc{height:53.273750pt;}
.h10{height:55.200000pt;}
.h8{height:57.375000pt;}
.h7{height:57.906250pt;}
.h5{height:66.140625pt;}
.hf{height:67.750312pt;}
.h6{height:77.015312pt;}
.h0{height:1056.000000pt;}
.w3{width:131.712000pt;}
.w4{width:179.546667pt;}
.w5{width:274.786667pt;}
.w2{width:815.999976pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x18{left:7.200000pt;}
.x10{left:8.480000pt;}
.x1e{left:9.440000pt;}
.x13{left:11.680000pt;}
.xf{left:13.760000pt;}
.xe{left:15.040000pt;}
.x1c{left:17.440000pt;}
.x1b{left:18.400000pt;}
.x1a{left:21.434667pt;}
.x1d{left:23.034667pt;}
.x19{left:24.634667pt;}
.x16{left:26.074667pt;}
.x11{left:32.474667pt;}
.x17{left:48.474667pt;}
.x15{left:56.640000pt;}
.x1{left:113.471988pt;}
.xd{left:118.271988pt;}
.x6{left:147.866655pt;}
.x1f{left:151.226655pt;}
.x3{left:199.386655pt;}
.x4{left:201.306655pt;}
.x7{left:211.866655pt;}
.x8{left:240.706655pt;}
.x12{left:245.186667pt;}
.xc{left:305.506655pt;}
.x5{left:315.426655pt;}
.x9{left:357.026655pt;}
.x2{left:380.706655pt;}
.xb{left:387.133321pt;}
.x14{left:424.733333pt;}
.xa{left:458.493309pt;}
}




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