
    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_b42a31a3db6d91c179f096ee.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_ca96a51c9c4e0bec2bd183a3.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;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_9b010dc20d205b2e45ac165a.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;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_972c4209c9ee2f189e566841.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.112305;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_453be6660ad9d215b60a475c.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.095703;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_22a4e2fb11271c5afbfc1770.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_6a2efd4c9b13aeb01b09e557.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284180;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);}
.v1{vertical-align:-94.320000px;}
.v2{vertical-align:-91.440000px;}
.v5{vertical-align:-38.880000px;}
.v6{vertical-align:-33.120000px;}
.v4{vertical-align:-27.360000px;}
.v7{vertical-align:-12.240000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:38.880000px;}
.ls1d{letter-spacing:-1.080000px;}
.ls27{letter-spacing:-0.900000px;}
.ls24{letter-spacing:-0.756000px;}
.lsc{letter-spacing:-0.684000px;}
.ls4{letter-spacing:-0.378600px;}
.ls1a{letter-spacing:-0.369600px;}
.ls12{letter-spacing:-0.360000px;}
.ls3{letter-spacing:-0.350400px;}
.lsa{letter-spacing:-0.341400px;}
.ls28{letter-spacing:-0.216000px;}
.ls6{letter-spacing:-0.180000px;}
.ls22{letter-spacing:-0.037440px;}
.ls9{letter-spacing:-0.028080px;}
.ls1{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.028080px;}
.ls2{letter-spacing:0.037440px;}
.ls1f{letter-spacing:0.082560px;}
.ls2b{letter-spacing:0.124560px;}
.ls10{letter-spacing:0.180000px;}
.lsd{letter-spacing:0.252720px;}
.ls20{letter-spacing:0.288000px;}
.ls2d{letter-spacing:0.304560px;}
.ls5{letter-spacing:0.341400px;}
.ls23{letter-spacing:0.350400px;}
.ls7{letter-spacing:0.360000px;}
.ls2a{letter-spacing:0.504000px;}
.ls1c{letter-spacing:0.540000px;}
.ls29{letter-spacing:0.576000px;}
.ls11{letter-spacing:0.900000px;}
.lse{letter-spacing:1.980000px;}
.ls15{letter-spacing:2.700000px;}
.ls1b{letter-spacing:3.780000px;}
.ls2c{letter-spacing:5.580000px;}
.ls17{letter-spacing:7.740000px;}
.ls30{letter-spacing:8.820000px;}
.ls2f{letter-spacing:10.260000px;}
.ls2e{letter-spacing:11.340000px;}
.ls21{letter-spacing:14.220000px;}
.ls26{letter-spacing:14.376000px;}
.ls1e{letter-spacing:16.020000px;}
.ls14{letter-spacing:16.560000px;}
.ls13{letter-spacing:17.460000px;}
.ls16{letter-spacing:18.180000px;}
.ls18{letter-spacing:18.540000px;}
.lsf{letter-spacing:19.620000px;}
.ls25{letter-spacing:20.700000px;}
.ls19{letter-spacing:23.940000px;}
.lsb{letter-spacing:148.836000px;}
.ls0{letter-spacing:997.896000px;}
.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;}
}
.ws10{word-spacing:-84.240000px;}
.ws5{word-spacing:-21.420000px;}
.wse{word-spacing:-21.410400px;}
.ws8{word-spacing:-21.401400px;}
.ws1{word-spacing:-21.097440px;}
.ws6{word-spacing:-21.088080px;}
.ws0{word-spacing:-21.060000px;}
.wsd{word-spacing:-21.022560px;}
.ws7{word-spacing:-20.718600px;}
.ws2{word-spacing:-20.709600px;}
.wsa{word-spacing:-20.700000px;}
.ws3{word-spacing:-20.681400px;}
.wsf{word-spacing:-20.304000px;}
.ws12{word-spacing:-18.576000px;}
.ws13{word-spacing:-18.504000px;}
.wsc{word-spacing:-18.000000px;}
.ws11{word-spacing:-17.784000px;}
.wsb{word-spacing:-13.860000px;}
.ws9{word-spacing:-9.720000px;}
.ws4{word-spacing:0.000000px;}
._2a{margin-left:-2.611440px;}
._0{margin-left:-1.595520px;}
._3{width:1.185840px;}
._1f{width:2.496240px;}
._7{width:4.348080px;}
._2{width:5.402160px;}
._6{width:6.536640px;}
._1{width:8.300880px;}
._27{width:9.851040px;}
._1b{width:10.951200px;}
._1a{width:11.962080px;}
._17{width:13.141440px;}
._16{width:14.405040px;}
._28{width:15.415920px;}
._f{width:16.605840px;}
._e{width:17.685360px;}
._c{width:19.388880px;}
._33{width:22.060800px;}
._2e{width:23.081760px;}
._29{width:24.092640px;}
._34{width:25.093440px;}
._b{width:26.114400px;}
._a{width:28.046880px;}
._24{width:29.820960px;}
._25{width:31.168080px;}
._8{width:32.428080px;}
._9{width:33.526800px;}
._26{width:34.787520px;}
._22{width:36.550080px;}
._21{width:37.571040px;}
._15{width:38.918880px;}
._14{width:40.098240px;}
._23{width:41.441040px;}
._31{width:43.040160px;}
._32{width:44.136720px;}
._1c{width:45.910800px;}
._2d{width:47.427120px;}
._20{width:48.774960px;}
._13{width:50.279760px;}
._12{width:51.554880px;}
._10{width:52.734240px;}
._11{width:54.548400px;}
._37{width:55.682640px;}
._35{width:57.114720px;}
._19{width:58.631040px;}
._18{width:59.810400px;}
._3d{width:60.900480px;}
._d{width:62.758800px;}
._2b{width:64.696320px;}
._2c{width:65.702160px;}
._36{width:67.287360px;}
._2f{width:68.402880px;}
._30{width:69.407520px;}
._38{width:71.351280px;}
._3c{width:72.593280px;}
._3b{width:73.710000px;}
._1e{width:84.399120px;}
._3a{width:88.111920px;}
._39{width:89.457840px;}
._1d{width:180.248160px;}
._5{width:2124.816000px;}
._4{width:2178.816000px;}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:38.880000px;}
.fs7{font-size:48.240000px;}
.fs5{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs0{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.fs3{font-size:131.760000px;}
.y0{bottom:0.000000px;}
.y47{bottom:5.040000px;}
.y65{bottom:5.085000px;}
.y45{bottom:5.220000px;}
.y4b{bottom:16.560000px;}
.y7d{bottom:16.605000px;}
.y4e{bottom:16.740000px;}
.y6d{bottom:16.770000px;}
.y4a{bottom:28.260000px;}
.y6c{bottom:28.290000px;}
.y7c{bottom:28.305000px;}
.y7a{bottom:28.434000px;}
.y4d{bottom:28.440000px;}
.y77{bottom:28.485000px;}
.y7b{bottom:51.660000px;}
.y51{bottom:51.705000px;}
.y40{bottom:56.556000px;}
.y1{bottom:57.456000px;}
.y3f{bottom:73.296000px;}
.y3e{bottom:90.576000px;}
.yca{bottom:110.556000px;}
.ybf{bottom:117.396000px;}
.y104{bottom:118.836000px;}
.y22{bottom:123.156000px;}
.y6a{bottom:128.916000px;}
.ycc{bottom:130.536000px;}
.y116{bottom:131.616000px;}
.y11a{bottom:133.596000px;}
.y83{bottom:133.776000px;}
.yb8{bottom:134.136000px;}
.ybe{bottom:137.376000px;}
.y103{bottom:138.816000px;}
.y21{bottom:149.796000px;}
.ybd{bottom:150.510000px;}
.y69{bottom:152.310000px;}
.y3c{bottom:154.470000px;}
.y115{bottom:154.830000px;}
.y82{bottom:156.990000px;}
.yb7{bottom:157.350000px;}
.ycb{bottom:158.790000px;}
.yd1{bottom:170.490000px;}
.y68{bottom:175.530000px;}
.y20{bottom:176.070000px;}
.ybc{bottom:177.330000px;}
.y108{bottom:178.050000px;}
.y106{bottom:178.770000px;}
.y81{bottom:180.210000px;}
.yb6{bottom:180.570000px;}
.y3b{bottom:181.110000px;}
.ybb{bottom:190.290000px;}
.yc5{bottom:197.130000px;}
.y109{bottom:198.570000px;}
.y67{bottom:198.750000px;}
.y1f{bottom:199.290000px;}
.y102{bottom:201.450000px;}
.y80{bottom:203.430000px;}
.yb5{bottom:203.790000px;}
.y3a{bottom:207.750000px;}
.ycf{bottom:210.270000px;}
.yc4{bottom:217.110000px;}
.y10e{bottom:218.550000px;}
.y66{bottom:221.970000px;}
.y101{bottom:224.670000px;}
.y111{bottom:226.470000px;}
.y7f{bottom:226.650000px;}
.yb4{bottom:227.010000px;}
.yc6{bottom:230.250000px;}
.y39{bottom:234.210000px;}
.yc3{bottom:237.090000px;}
.y76{bottom:245.190000px;}
.y1e{bottom:246.090000px;}
.y100{bottom:247.890000px;}
.ye1{bottom:250.050000px;}
.yc2{bottom:250.230000px;}
.ya8{bottom:250.410000px;}
.yc9{bottom:257.070000px;}
.y38{bottom:260.850000px;}
.y64{bottom:268.590000px;}
.yce{bottom:270.030000px;}
.yff{bottom:271.110000px;}
.y1d{bottom:272.775000px;}
.yd4{bottom:273.315000px;}
.ya7{bottom:273.675000px;}
.yc1{bottom:276.915000px;}
.y37{bottom:287.535000px;}
.yc0{bottom:290.055000px;}
.y63{bottom:291.855000px;}
.yfe{bottom:294.375000px;}
.yd3{bottom:296.535000px;}
.ya6{bottom:296.895000px;}
.y1c{bottom:299.235000px;}
.y36{bottom:313.995000px;}
.y79{bottom:315.075000px;}
.yfd{bottom:317.775000px;}
.ya5{bottom:319.755000px;}
.yb3{bottom:320.115000px;}
.y1b{bottom:325.875000px;}
.y62{bottom:338.295000px;}
.y35{bottom:340.635000px;}
.yfc{bottom:340.995000px;}
.ya4{bottom:342.975000px;}
.yb2{bottom:343.335000px;}
.y1a{bottom:352.515000px;}
.y61{bottom:361.515000px;}
.yfb{bottom:364.215000px;}
.y107{bottom:364.395000px;}
.ya3{bottom:366.375000px;}
.yb1{bottom:366.735000px;}
.y34{bottom:367.275000px;}
.y19{bottom:378.975000px;}
.y60{bottom:384.915000px;}
.yfa{bottom:387.435000px;}
.ya2{bottom:389.595000px;}
.yb0{bottom:389.955000px;}
.y33{bottom:393.735000px;}
.y18{bottom:405.615000px;}
.y5f{bottom:408.135000px;}
.y10d{bottom:410.295000px;}
.yf9{bottom:410.655000px;}
.yc8{bottom:412.815000px;}
.ya1{bottom:413.175000px;}
.y32{bottom:420.375000px;}
.y5e{bottom:431.355000px;}
.y17{bottom:432.255000px;}
.y10c{bottom:433.695000px;}
.yf8{bottom:434.055000px;}
.yc7{bottom:436.035000px;}
.ya0{bottom:436.395000px;}
.y31{bottom:446.835000px;}
.y5d{bottom:454.575000px;}
.y10b{bottom:456.915000px;}
.yf7{bottom:457.275000px;}
.y16{bottom:458.715000px;}
.yd2{bottom:459.255000px;}
.y9f{bottom:459.615000px;}
.y30{bottom:473.475000px;}
.y5c{bottom:477.795000px;}
.yf6{bottom:480.495000px;}
.yd8{bottom:482.655000px;}
.y9e{bottom:483.015000px;}
.y15{bottom:485.355000px;}
.y2f{bottom:494.715000px;}
.y5b{bottom:501.195000px;}
.yf5{bottom:503.715000px;}
.yd7{bottom:505.875000px;}
.y9d{bottom:506.235000px;}
.y14{bottom:511.995000px;}
.y5a{bottom:524.415000px;}
.yf4{bottom:526.935000px;}
.y114{bottom:528.915000px;}
.ye0{bottom:529.095000px;}
.y9c{bottom:529.455000px;}
.y13{bottom:538.455000px;}
.y59{bottom:547.635000px;}
.yf3{bottom:550.335000px;}
.yda{bottom:552.315000px;}
.y9b{bottom:552.675000px;}
.y12{bottom:565.125000px;}
.y58{bottom:570.885000px;}
.yf2{bottom:573.585000px;}
.y110{bottom:575.385000px;}
.ydf{bottom:575.565000px;}
.yaf{bottom:575.925000px;}
.y11{bottom:591.765000px;}
.y75{bottom:594.105000px;}
.yf1{bottom:596.805000px;}
.y10f{bottom:598.785000px;}
.ye2{bottom:598.965000px;}
.y9a{bottom:599.325000px;}
.y57{bottom:617.505000px;}
.yf0{bottom:620.025000px;}
.y10{bottom:620.205000px;}
.y99{bottom:622.185000px;}
.yae{bottom:622.545000px;}
.y56{bottom:640.725000px;}
.yef{bottom:643.245000px;}
.y98{bottom:645.405000px;}
.yad{bottom:645.765000px;}
.yf{bottom:656.745000px;}
.y55{bottom:663.945000px;}
.yee{bottom:666.645000px;}
.y119{bottom:668.445000px;}
.y97{bottom:668.625000px;}
.yac{bottom:668.985000px;}
.y74{bottom:687.165000px;}
.yed{bottom:689.865000px;}
.y96{bottom:691.845000px;}
.yab{bottom:692.205000px;}
.ye{bottom:693.285000px;}
.y54{bottom:710.385000px;}
.yec{bottom:713.085000px;}
.y95{bottom:715.245000px;}
.yaa{bottom:715.605000px;}
.yd{bottom:727.845000px;}
.y73{bottom:733.785000px;}
.yeb{bottom:736.305000px;}
.y10a{bottom:736.485000px;}
.yde{bottom:738.465000px;}
.y94{bottom:738.825000px;}
.yc{bottom:754.485000px;}
.y53{bottom:757.005000px;}
.yea{bottom:759.525000px;}
.yd9{bottom:761.685000px;}
.y93{bottom:762.045000px;}
.y52{bottom:780.225000px;}
.yb{bottom:781.125000px;}
.ye9{bottom:782.925000px;}
.ydd{bottom:784.905000px;}
.y92{bottom:785.265000px;}
.y50{bottom:803.445000px;}
.ye8{bottom:806.145000px;}
.ya{bottom:807.585000px;}
.ydc{bottom:808.125000px;}
.y91{bottom:808.485000px;}
.y78{bottom:826.665000px;}
.ye7{bottom:829.365000px;}
.y90{bottom:831.525000px;}
.ya9{bottom:831.885000px;}
.y9{bottom:834.225000px;}
.y2e{bottom:838.770000px;}
.y72{bottom:850.110000px;}
.ye6{bottom:852.810000px;}
.yd0{bottom:854.790000px;}
.y8f{bottom:855.150000px;}
.y8{bottom:860.910000px;}
.y2d{bottom:865.410000px;}
.y4f{bottom:873.330000px;}
.y105{bottom:878.010000px;}
.y8e{bottom:878.370000px;}
.y7{bottom:887.370000px;}
.y2c{bottom:891.870000px;}
.y71{bottom:896.550000px;}
.ye4{bottom:901.230000px;}
.y8d{bottom:901.590000px;}
.y6{bottom:914.010000px;}
.y2b{bottom:918.510000px;}
.y4c{bottom:919.770000px;}
.yd6{bottom:924.450000px;}
.y8c{bottom:924.810000px;}
.y5{bottom:940.650000px;}
.y70{bottom:942.990000px;}
.y2a{bottom:945.150000px;}
.y113{bottom:947.670000px;}
.ycd{bottom:947.850000px;}
.y8b{bottom:948.210000px;}
.y49{bottom:966.390000px;}
.y4{bottom:966.570000px;}
.y112{bottom:970.890000px;}
.ye3{bottom:971.070000px;}
.y8a{bottom:971.430000px;}
.y29{bottom:971.610000px;}
.y6f{bottom:989.610000px;}
.y3{bottom:989.790000px;}
.ye5{bottom:994.290000px;}
.y89{bottom:994.650000px;}
.y28{bottom:998.250000px;}
.y2{bottom:1008.330000px;}
.y48{bottom:1012.830000px;}
.y118{bottom:1017.330000px;}
.ydb{bottom:1017.510000px;}
.y88{bottom:1017.870000px;}
.y27{bottom:1024.890000px;}
.y46{bottom:1036.050000px;}
.y117{bottom:1040.550000px;}
.yba{bottom:1040.730000px;}
.y87{bottom:1041.090000px;}
.y26{bottom:1051.350000px;}
.y44{bottom:1059.270000px;}
.yd5{bottom:1064.130000px;}
.y86{bottom:1064.490000px;}
.y25{bottom:1077.990000px;}
.y6e{bottom:1082.670000px;}
.yb9{bottom:1087.350000px;}
.y43{bottom:1087.710000px;}
.y24{bottom:1104.630000px;}
.y6b{bottom:1105.890000px;}
.y85{bottom:1110.570000px;}
.y42{bottom:1110.930000px;}
.y7e{bottom:1129.140000px;}
.y23{bottom:1131.120000px;}
.y84{bottom:1133.820000px;}
.y41{bottom:1134.180000px;}
.y3d{bottom:1180.260000px;}
.h9{height:23.220000px;}
.hd{height:23.256000px;}
.h8{height:23.400000px;}
.h10{height:23.436000px;}
.h14{height:38.158594px;}
.h16{height:43.124063px;}
.h19{height:43.268906px;}
.h15{height:43.304062px;}
.ha{height:46.440000px;}
.he{height:46.476000px;}
.hb{height:46.620000px;}
.hf{height:46.656000px;}
.h18{height:47.344922px;}
.h1d{height:49.556953px;}
.h7{height:58.651172px;}
.h11{height:69.840000px;}
.hc{height:69.876000px;}
.h1a{height:70.628906px;}
.h2{height:70.664062px;}
.h1f{height:74.121328px;}
.h13{height:75.519844px;}
.h1c{height:82.635820px;}
.h6{height:82.676953px;}
.h3{height:84.898125px;}
.h12{height:91.878047px;}
.h17{height:91.998047px;}
.h1b{height:92.058047px;}
.h1e{height:93.301875px;}
.h4{height:96.508125px;}
.h5{height:132.789375px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:48.780000px;}
.w4{width:85.320000px;}
.w6{width:169.920000px;}
.w10{width:171.180000px;}
.w8{width:255.990000px;}
.wf{width:256.935000px;}
.wc{width:257.070000px;}
.wb{width:258.375000px;}
.wa{width:341.130000px;}
.wd{width:342.435000px;}
.we{width:342.570000px;}
.w9{width:343.515000px;}
.w11{width:428.325000px;}
.w7{width:429.585000px;}
.w5{width:514.185000px;}
.w2{width:599.505000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xe{left:5.220000px;}
.x11{left:22.680000px;}
.x10{left:33.300000px;}
.xd{left:122.436000px;}
.x5{left:127.656000px;}
.x19{left:170.130000px;}
.x1b{left:171.570000px;}
.x3{left:174.810000px;}
.x12{left:207.750000px;}
.x13{left:292.350000px;}
.x18{left:293.610000px;}
.x1d{left:295.410000px;}
.x1c{left:306.435000px;}
.x4{left:349.995000px;}
.x1e{left:367.815000px;}
.x14{left:378.435000px;}
.x16{left:379.515000px;}
.xc{left:411.015000px;}
.x6{left:416.775000px;}
.x9{left:446.655000px;}
.x15{left:463.575000px;}
.x17{left:465.015000px;}
.x2{left:527.325000px;}
.x7{left:535.245000px;}
.xf{left:721.950000px;}
.x8{left:737.430000px;}
.x1{left:738.510000px;}
.x1a{left:747.510000px;}
.xb{left:756.510000px;}
.xa{left:765.510000px;}
@media print{
.v1{vertical-align:-83.840000pt;}
.v2{vertical-align:-81.280000pt;}
.v5{vertical-align:-34.560000pt;}
.v6{vertical-align:-29.440000pt;}
.v4{vertical-align:-24.320000pt;}
.v7{vertical-align:-10.880000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:34.560000pt;}
.ls1d{letter-spacing:-0.960000pt;}
.ls27{letter-spacing:-0.800000pt;}
.ls24{letter-spacing:-0.672000pt;}
.lsc{letter-spacing:-0.608000pt;}
.ls4{letter-spacing:-0.336533pt;}
.ls1a{letter-spacing:-0.328533pt;}
.ls12{letter-spacing:-0.320000pt;}
.ls3{letter-spacing:-0.311467pt;}
.lsa{letter-spacing:-0.303467pt;}
.ls28{letter-spacing:-0.192000pt;}
.ls6{letter-spacing:-0.160000pt;}
.ls22{letter-spacing:-0.033280pt;}
.ls9{letter-spacing:-0.024960pt;}
.ls1{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.024960pt;}
.ls2{letter-spacing:0.033280pt;}
.ls1f{letter-spacing:0.073387pt;}
.ls2b{letter-spacing:0.110720pt;}
.ls10{letter-spacing:0.160000pt;}
.lsd{letter-spacing:0.224640pt;}
.ls20{letter-spacing:0.256000pt;}
.ls2d{letter-spacing:0.270720pt;}
.ls5{letter-spacing:0.303467pt;}
.ls23{letter-spacing:0.311467pt;}
.ls7{letter-spacing:0.320000pt;}
.ls2a{letter-spacing:0.448000pt;}
.ls1c{letter-spacing:0.480000pt;}
.ls29{letter-spacing:0.512000pt;}
.ls11{letter-spacing:0.800000pt;}
.lse{letter-spacing:1.760000pt;}
.ls15{letter-spacing:2.400000pt;}
.ls1b{letter-spacing:3.360000pt;}
.ls2c{letter-spacing:4.960000pt;}
.ls17{letter-spacing:6.880000pt;}
.ls30{letter-spacing:7.840000pt;}
.ls2f{letter-spacing:9.120000pt;}
.ls2e{letter-spacing:10.080000pt;}
.ls21{letter-spacing:12.640000pt;}
.ls26{letter-spacing:12.778667pt;}
.ls1e{letter-spacing:14.240000pt;}
.ls14{letter-spacing:14.720000pt;}
.ls13{letter-spacing:15.520000pt;}
.ls16{letter-spacing:16.160000pt;}
.ls18{letter-spacing:16.480000pt;}
.lsf{letter-spacing:17.440000pt;}
.ls25{letter-spacing:18.400000pt;}
.ls19{letter-spacing:21.280000pt;}
.lsb{letter-spacing:132.298667pt;}
.ls0{letter-spacing:887.018667pt;}
.ws10{word-spacing:-74.880000pt;}
.ws5{word-spacing:-19.040000pt;}
.wse{word-spacing:-19.031467pt;}
.ws8{word-spacing:-19.023467pt;}
.ws1{word-spacing:-18.753280pt;}
.ws6{word-spacing:-18.744960pt;}
.ws0{word-spacing:-18.720000pt;}
.wsd{word-spacing:-18.686720pt;}
.ws7{word-spacing:-18.416533pt;}
.ws2{word-spacing:-18.408533pt;}
.wsa{word-spacing:-18.400000pt;}
.ws3{word-spacing:-18.383467pt;}
.wsf{word-spacing:-18.048000pt;}
.ws12{word-spacing:-16.512000pt;}
.ws13{word-spacing:-16.448000pt;}
.wsc{word-spacing:-16.000000pt;}
.ws11{word-spacing:-15.808000pt;}
.wsb{word-spacing:-12.320000pt;}
.ws9{word-spacing:-8.640000pt;}
.ws4{word-spacing:0.000000pt;}
._2a{margin-left:-2.321280pt;}
._0{margin-left:-1.418240pt;}
._3{width:1.054080pt;}
._1f{width:2.218880pt;}
._7{width:3.864960pt;}
._2{width:4.801920pt;}
._6{width:5.810347pt;}
._1{width:7.378560pt;}
._27{width:8.756480pt;}
._1b{width:9.734400pt;}
._1a{width:10.632960pt;}
._17{width:11.681280pt;}
._16{width:12.804480pt;}
._28{width:13.703040pt;}
._f{width:14.760747pt;}
._e{width:15.720320pt;}
._c{width:17.234560pt;}
._33{width:19.609600pt;}
._2e{width:20.517120pt;}
._29{width:21.415680pt;}
._34{width:22.305280pt;}
._b{width:23.212800pt;}
._a{width:24.930560pt;}
._24{width:26.507520pt;}
._25{width:27.704960pt;}
._8{width:28.824960pt;}
._9{width:29.801600pt;}
._26{width:30.922240pt;}
._22{width:32.488960pt;}
._21{width:33.396480pt;}
._15{width:34.594560pt;}
._14{width:35.642880pt;}
._23{width:36.836480pt;}
._31{width:38.257920pt;}
._32{width:39.232640pt;}
._1c{width:40.809600pt;}
._2d{width:42.157440pt;}
._20{width:43.355520pt;}
._13{width:44.693120pt;}
._12{width:45.826560pt;}
._10{width:46.874880pt;}
._11{width:48.487467pt;}
._37{width:49.495680pt;}
._35{width:50.768640pt;}
._19{width:52.116480pt;}
._18{width:53.164800pt;}
._3d{width:54.133760pt;}
._d{width:55.785600pt;}
._2b{width:57.507840pt;}
._2c{width:58.401920pt;}
._36{width:59.810987pt;}
._2f{width:60.802560pt;}
._30{width:61.695573pt;}
._38{width:63.423360pt;}
._3c{width:64.527360pt;}
._3b{width:65.520000pt;}
._1e{width:75.021440pt;}
._3a{width:78.321707pt;}
._39{width:79.518080pt;}
._1d{width:160.220587pt;}
._5{width:1888.725333pt;}
._4{width:1936.725333pt;}
.fs6{font-size:34.560000pt;}
.fs7{font-size:42.880000pt;}
.fs5{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.fs3{font-size:117.120000pt;}
.y0{bottom:0.000000pt;}
.y47{bottom:4.480000pt;}
.y65{bottom:4.520000pt;}
.y45{bottom:4.640000pt;}
.y4b{bottom:14.720000pt;}
.y7d{bottom:14.760000pt;}
.y4e{bottom:14.880000pt;}
.y6d{bottom:14.906667pt;}
.y4a{bottom:25.120000pt;}
.y6c{bottom:25.146667pt;}
.y7c{bottom:25.160000pt;}
.y7a{bottom:25.274667pt;}
.y4d{bottom:25.280000pt;}
.y77{bottom:25.320000pt;}
.y7b{bottom:45.920000pt;}
.y51{bottom:45.960000pt;}
.y40{bottom:50.272000pt;}
.y1{bottom:51.072000pt;}
.y3f{bottom:65.152000pt;}
.y3e{bottom:80.512000pt;}
.yca{bottom:98.272000pt;}
.ybf{bottom:104.352000pt;}
.y104{bottom:105.632000pt;}
.y22{bottom:109.472000pt;}
.y6a{bottom:114.592000pt;}
.ycc{bottom:116.032000pt;}
.y116{bottom:116.992000pt;}
.y11a{bottom:118.752000pt;}
.y83{bottom:118.912000pt;}
.yb8{bottom:119.232000pt;}
.ybe{bottom:122.112000pt;}
.y103{bottom:123.392000pt;}
.y21{bottom:133.152000pt;}
.ybd{bottom:133.786667pt;}
.y69{bottom:135.386667pt;}
.y3c{bottom:137.306667pt;}
.y115{bottom:137.626667pt;}
.y82{bottom:139.546667pt;}
.yb7{bottom:139.866667pt;}
.ycb{bottom:141.146667pt;}
.yd1{bottom:151.546667pt;}
.y68{bottom:156.026667pt;}
.y20{bottom:156.506667pt;}
.ybc{bottom:157.626667pt;}
.y108{bottom:158.266667pt;}
.y106{bottom:158.906667pt;}
.y81{bottom:160.186667pt;}
.yb6{bottom:160.506667pt;}
.y3b{bottom:160.986667pt;}
.ybb{bottom:169.146667pt;}
.yc5{bottom:175.226667pt;}
.y109{bottom:176.506667pt;}
.y67{bottom:176.666667pt;}
.y1f{bottom:177.146667pt;}
.y102{bottom:179.066667pt;}
.y80{bottom:180.826667pt;}
.yb5{bottom:181.146667pt;}
.y3a{bottom:184.666667pt;}
.ycf{bottom:186.906667pt;}
.yc4{bottom:192.986667pt;}
.y10e{bottom:194.266667pt;}
.y66{bottom:197.306667pt;}
.y101{bottom:199.706667pt;}
.y111{bottom:201.306667pt;}
.y7f{bottom:201.466667pt;}
.yb4{bottom:201.786667pt;}
.yc6{bottom:204.666667pt;}
.y39{bottom:208.186667pt;}
.yc3{bottom:210.746667pt;}
.y76{bottom:217.946667pt;}
.y1e{bottom:218.746667pt;}
.y100{bottom:220.346667pt;}
.ye1{bottom:222.266667pt;}
.yc2{bottom:222.426667pt;}
.ya8{bottom:222.586667pt;}
.yc9{bottom:228.506667pt;}
.y38{bottom:231.866667pt;}
.y64{bottom:238.746667pt;}
.yce{bottom:240.026667pt;}
.yff{bottom:240.986667pt;}
.y1d{bottom:242.466667pt;}
.yd4{bottom:242.946667pt;}
.ya7{bottom:243.266667pt;}
.yc1{bottom:246.146667pt;}
.y37{bottom:255.586667pt;}
.yc0{bottom:257.826667pt;}
.y63{bottom:259.426667pt;}
.yfe{bottom:261.666667pt;}
.yd3{bottom:263.586667pt;}
.ya6{bottom:263.906667pt;}
.y1c{bottom:265.986667pt;}
.y36{bottom:279.106667pt;}
.y79{bottom:280.066667pt;}
.yfd{bottom:282.466667pt;}
.ya5{bottom:284.226667pt;}
.yb3{bottom:284.546667pt;}
.y1b{bottom:289.666667pt;}
.y62{bottom:300.706667pt;}
.y35{bottom:302.786667pt;}
.yfc{bottom:303.106667pt;}
.ya4{bottom:304.866667pt;}
.yb2{bottom:305.186667pt;}
.y1a{bottom:313.346667pt;}
.y61{bottom:321.346667pt;}
.yfb{bottom:323.746667pt;}
.y107{bottom:323.906667pt;}
.ya3{bottom:325.666667pt;}
.yb1{bottom:325.986667pt;}
.y34{bottom:326.466667pt;}
.y19{bottom:336.866667pt;}
.y60{bottom:342.146667pt;}
.yfa{bottom:344.386667pt;}
.ya2{bottom:346.306667pt;}
.yb0{bottom:346.626667pt;}
.y33{bottom:349.986667pt;}
.y18{bottom:360.546667pt;}
.y5f{bottom:362.786667pt;}
.y10d{bottom:364.706667pt;}
.yf9{bottom:365.026667pt;}
.yc8{bottom:366.946667pt;}
.ya1{bottom:367.266667pt;}
.y32{bottom:373.666667pt;}
.y5e{bottom:383.426667pt;}
.y17{bottom:384.226667pt;}
.y10c{bottom:385.506667pt;}
.yf8{bottom:385.826667pt;}
.yc7{bottom:387.586667pt;}
.ya0{bottom:387.906667pt;}
.y31{bottom:397.186667pt;}
.y5d{bottom:404.066667pt;}
.y10b{bottom:406.146667pt;}
.yf7{bottom:406.466667pt;}
.y16{bottom:407.746667pt;}
.yd2{bottom:408.226667pt;}
.y9f{bottom:408.546667pt;}
.y30{bottom:420.866667pt;}
.y5c{bottom:424.706667pt;}
.yf6{bottom:427.106667pt;}
.yd8{bottom:429.026667pt;}
.y9e{bottom:429.346667pt;}
.y15{bottom:431.426667pt;}
.y2f{bottom:439.746667pt;}
.y5b{bottom:445.506667pt;}
.yf5{bottom:447.746667pt;}
.yd7{bottom:449.666667pt;}
.y9d{bottom:449.986667pt;}
.y14{bottom:455.106667pt;}
.y5a{bottom:466.146667pt;}
.yf4{bottom:468.386667pt;}
.y114{bottom:470.146667pt;}
.ye0{bottom:470.306667pt;}
.y9c{bottom:470.626667pt;}
.y13{bottom:478.626667pt;}
.y59{bottom:486.786667pt;}
.yf3{bottom:489.186667pt;}
.yda{bottom:490.946667pt;}
.y9b{bottom:491.266667pt;}
.y12{bottom:502.333333pt;}
.y58{bottom:507.453333pt;}
.yf2{bottom:509.853333pt;}
.y110{bottom:511.453333pt;}
.ydf{bottom:511.613333pt;}
.yaf{bottom:511.933333pt;}
.y11{bottom:526.013333pt;}
.y75{bottom:528.093333pt;}
.yf1{bottom:530.493333pt;}
.y10f{bottom:532.253333pt;}
.ye2{bottom:532.413333pt;}
.y9a{bottom:532.733333pt;}
.y57{bottom:548.893333pt;}
.yf0{bottom:551.133333pt;}
.y10{bottom:551.293333pt;}
.y99{bottom:553.053333pt;}
.yae{bottom:553.373333pt;}
.y56{bottom:569.533333pt;}
.yef{bottom:571.773333pt;}
.y98{bottom:573.693333pt;}
.yad{bottom:574.013333pt;}
.yf{bottom:583.773333pt;}
.y55{bottom:590.173333pt;}
.yee{bottom:592.573333pt;}
.y119{bottom:594.173333pt;}
.y97{bottom:594.333333pt;}
.yac{bottom:594.653333pt;}
.y74{bottom:610.813333pt;}
.yed{bottom:613.213333pt;}
.y96{bottom:614.973333pt;}
.yab{bottom:615.293333pt;}
.ye{bottom:616.253333pt;}
.y54{bottom:631.453333pt;}
.yec{bottom:633.853333pt;}
.y95{bottom:635.773333pt;}
.yaa{bottom:636.093333pt;}
.yd{bottom:646.973333pt;}
.y73{bottom:652.253333pt;}
.yeb{bottom:654.493333pt;}
.y10a{bottom:654.653333pt;}
.yde{bottom:656.413333pt;}
.y94{bottom:656.733333pt;}
.yc{bottom:670.653333pt;}
.y53{bottom:672.893333pt;}
.yea{bottom:675.133333pt;}
.yd9{bottom:677.053333pt;}
.y93{bottom:677.373333pt;}
.y52{bottom:693.533333pt;}
.yb{bottom:694.333333pt;}
.ye9{bottom:695.933333pt;}
.ydd{bottom:697.693333pt;}
.y92{bottom:698.013333pt;}
.y50{bottom:714.173333pt;}
.ye8{bottom:716.573333pt;}
.ya{bottom:717.853333pt;}
.ydc{bottom:718.333333pt;}
.y91{bottom:718.653333pt;}
.y78{bottom:734.813333pt;}
.ye7{bottom:737.213333pt;}
.y90{bottom:739.133333pt;}
.ya9{bottom:739.453333pt;}
.y9{bottom:741.533333pt;}
.y2e{bottom:745.573333pt;}
.y72{bottom:755.653333pt;}
.ye6{bottom:758.053333pt;}
.yd0{bottom:759.813333pt;}
.y8f{bottom:760.133333pt;}
.y8{bottom:765.253333pt;}
.y2d{bottom:769.253333pt;}
.y4f{bottom:776.293333pt;}
.y105{bottom:780.453333pt;}
.y8e{bottom:780.773333pt;}
.y7{bottom:788.773333pt;}
.y2c{bottom:792.773333pt;}
.y71{bottom:796.933333pt;}
.ye4{bottom:801.093333pt;}
.y8d{bottom:801.413333pt;}
.y6{bottom:812.453333pt;}
.y2b{bottom:816.453333pt;}
.y4c{bottom:817.573333pt;}
.yd6{bottom:821.733333pt;}
.y8c{bottom:822.053333pt;}
.y5{bottom:836.133333pt;}
.y70{bottom:838.213333pt;}
.y2a{bottom:840.133333pt;}
.y113{bottom:842.373333pt;}
.ycd{bottom:842.533333pt;}
.y8b{bottom:842.853333pt;}
.y49{bottom:859.013333pt;}
.y4{bottom:859.173333pt;}
.y112{bottom:863.013333pt;}
.ye3{bottom:863.173333pt;}
.y8a{bottom:863.493333pt;}
.y29{bottom:863.653333pt;}
.y6f{bottom:879.653333pt;}
.y3{bottom:879.813333pt;}
.ye5{bottom:883.813333pt;}
.y89{bottom:884.133333pt;}
.y28{bottom:887.333333pt;}
.y2{bottom:896.293333pt;}
.y48{bottom:900.293333pt;}
.y118{bottom:904.293333pt;}
.ydb{bottom:904.453333pt;}
.y88{bottom:904.773333pt;}
.y27{bottom:911.013333pt;}
.y46{bottom:920.933333pt;}
.y117{bottom:924.933333pt;}
.yba{bottom:925.093333pt;}
.y87{bottom:925.413333pt;}
.y26{bottom:934.533333pt;}
.y44{bottom:941.573333pt;}
.yd5{bottom:945.893333pt;}
.y86{bottom:946.213333pt;}
.y25{bottom:958.213333pt;}
.y6e{bottom:962.373333pt;}
.yb9{bottom:966.533333pt;}
.y43{bottom:966.853333pt;}
.y24{bottom:981.893333pt;}
.y6b{bottom:983.013333pt;}
.y85{bottom:987.173333pt;}
.y42{bottom:987.493333pt;}
.y7e{bottom:1003.680000pt;}
.y23{bottom:1005.440000pt;}
.y84{bottom:1007.840000pt;}
.y41{bottom:1008.160000pt;}
.y3d{bottom:1049.120000pt;}
.h9{height:20.640000pt;}
.hd{height:20.672000pt;}
.h8{height:20.800000pt;}
.h10{height:20.832000pt;}
.h14{height:33.918750pt;}
.h16{height:38.332500pt;}
.h19{height:38.461250pt;}
.h15{height:38.492500pt;}
.ha{height:41.280000pt;}
.he{height:41.312000pt;}
.hb{height:41.440000pt;}
.hf{height:41.472000pt;}
.h18{height:42.084375pt;}
.h1d{height:44.050625pt;}
.h7{height:52.134375pt;}
.h11{height:62.080000pt;}
.hc{height:62.112000pt;}
.h1a{height:62.781250pt;}
.h2{height:62.812500pt;}
.h1f{height:65.885625pt;}
.h13{height:67.128750pt;}
.h1c{height:73.454062pt;}
.h6{height:73.490625pt;}
.h3{height:75.465000pt;}
.h12{height:81.669375pt;}
.h17{height:81.776042pt;}
.h1b{height:81.829375pt;}
.h1e{height:82.935000pt;}
.h4{height:85.785000pt;}
.h5{height:118.035000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:43.360000pt;}
.w4{width:75.840000pt;}
.w6{width:151.040000pt;}
.w10{width:152.160000pt;}
.w8{width:227.546667pt;}
.wf{width:228.386667pt;}
.wc{width:228.506667pt;}
.wb{width:229.666667pt;}
.wa{width:303.226667pt;}
.wd{width:304.386667pt;}
.we{width:304.506667pt;}
.w9{width:305.346667pt;}
.w11{width:380.733333pt;}
.w7{width:381.853333pt;}
.w5{width:457.053333pt;}
.w2{width:532.893333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xe{left:4.640000pt;}
.x11{left:20.160000pt;}
.x10{left:29.600000pt;}
.xd{left:108.832000pt;}
.x5{left:113.472000pt;}
.x19{left:151.226667pt;}
.x1b{left:152.506667pt;}
.x3{left:155.386667pt;}
.x12{left:184.666667pt;}
.x13{left:259.866667pt;}
.x18{left:260.986667pt;}
.x1d{left:262.586667pt;}
.x1c{left:272.386667pt;}
.x4{left:311.106667pt;}
.x1e{left:326.946667pt;}
.x14{left:336.386667pt;}
.x16{left:337.346667pt;}
.xc{left:365.346667pt;}
.x6{left:370.466667pt;}
.x9{left:397.026667pt;}
.x15{left:412.066667pt;}
.x17{left:413.346667pt;}
.x2{left:468.733333pt;}
.x7{left:475.773333pt;}
.xf{left:641.733333pt;}
.x8{left:655.493333pt;}
.x1{left:656.453333pt;}
.x1a{left:664.453333pt;}
.xb{left:672.453333pt;}
.xa{left:680.453333pt;}
}




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