
    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_477abed42ceeb121e6763409.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_e6a3b3ed48833528c854f989.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_fa31eb116406b95bff03e135.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_5491dcadf95de80d039c817f.woff')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_482dc0b8c56eaf32092f6855.woff')format("woff");}.ff5{font-family:ff5;line-height:0.919434;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_c79ae91445e7b8bcb5b7aaf6.woff')format("woff");}.ff6{font-family:ff6;line-height:1.402354;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:-69.120000px;}
.v0{vertical-align:0.000000px;}
.ls3{letter-spacing:-1.080000px;}
.ls9{letter-spacing:-0.612000px;}
.ls2{letter-spacing:-0.360000px;}
.ls5{letter-spacing:-0.206400px;}
.ls8{letter-spacing:-0.053280px;}
.ls1{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.106800px;}
.ls4{letter-spacing:0.180000px;}
.ls6{letter-spacing:0.259800px;}
.lse{letter-spacing:0.298800px;}
.ls0{letter-spacing:0.360000px;}
.lsf{letter-spacing:0.460200px;}
.ls10{letter-spacing:0.666000px;}
.ls11{letter-spacing:1.080000px;}
.lsd{letter-spacing:16.506720px;}
.lsa{letter-spacing:21.060000px;}
.lsc{letter-spacing:46.026720px;}
.ls7{letter-spacing:201.204000px;}
.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:-18.000000px;}
.wsb{word-spacing:-16.020000px;}
.wsa{word-spacing:-15.606000px;}
.ws8{word-spacing:-15.400200px;}
.ws4{word-spacing:-15.300000px;}
.ws6{word-spacing:-15.199800px;}
.ws7{word-spacing:-15.046800px;}
.ws2{word-spacing:-14.940000px;}
.ws5{word-spacing:-14.886720px;}
.ws9{word-spacing:-14.733600px;}
.ws1{word-spacing:-14.580000px;}
.ws3{word-spacing:0.000000px;}
._17{margin-left:-8.021760px;}
._1c{margin-left:-2.031840px;}
._2{margin-left:-1.008000px;}
._0{width:1.195200px;}
._1{width:2.825520px;}
._7{width:4.123440px;}
._8{width:5.250960px;}
._a{width:6.570480px;}
._4{width:8.179200px;}
._13{width:9.213120px;}
._6{width:10.277280px;}
._5{width:11.473920px;}
._b{width:12.609360px;}
._12{width:13.864320px;}
._e{width:15.955920px;}
._f{width:17.091360px;}
._16{width:18.159120px;}
._c{width:19.601280px;}
._d{width:20.684160px;}
._15{width:21.723120px;}
._18{width:22.768560px;}
._14{width:24.621120px;}
._11{width:26.055360px;}
._10{width:27.071280px;}
._1a{width:28.283520px;}
._1f{width:30.836160px;}
._19{width:79.709520px;}
._9{width:201.204000px;}
._1d{width:291.682560px;}
._1e{width:321.574080px;}
._1b{width:437.057760px;}
._3{width:454.620000px;}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,0,0);}
.fs0{font-size:59.760000px;}
.fs1{font-size:72.000000px;}
.y13d{bottom:-4.860000px;}
.y0{bottom:0.000000px;}
.y97{bottom:3.240000px;}
.ya9{bottom:3.420000px;}
.y5{bottom:3.600000px;}
.y99{bottom:3.780000px;}
.y149{bottom:11.880000px;}
.y145{bottom:12.096000px;}
.y14a{bottom:20.520000px;}
.y146{bottom:20.736000px;}
.y4{bottom:21.240000px;}
.y91{bottom:56.160000px;}
.ydf{bottom:61.200000px;}
.y85{bottom:61.560000px;}
.y11a{bottom:61.920000px;}
.y16c{bottom:66.060000px;}
.y147{bottom:66.420000px;}
.ya7{bottom:66.780000px;}
.y84{bottom:78.840000px;}
.y44{bottom:80.820000px;}
.yde{bottom:82.980000px;}
.y16b{bottom:83.340000px;}
.ya6{bottom:83.700000px;}
.y144{bottom:88.200000px;}
.y83{bottom:96.120000px;}
.y43{bottom:98.136000px;}
.y16a{bottom:100.296000px;}
.ya5{bottom:101.376000px;}
.ydd{bottom:104.796000px;}
.y119{bottom:105.516000px;}
.y8e{bottom:113.076000px;}
.y82{bottom:113.436000px;}
.y42{bottom:115.416000px;}
.y169{bottom:117.576000px;}
.ya4{bottom:118.656000px;}
.ydc{bottom:129.096000px;}
.y118{bottom:129.816000px;}
.y81{bottom:130.716000px;}
.y41{bottom:132.516000px;}
.y168{bottom:135.036000px;}
.ya3{bottom:135.936000px;}
.ydb{bottom:146.376000px;}
.y117{bottom:147.096000px;}
.y80{bottom:147.816000px;}
.y40{bottom:149.796000px;}
.y167{bottom:152.310000px;}
.ya2{bottom:153.030000px;}
.yda{bottom:163.650000px;}
.y116{bottom:164.370000px;}
.y171{bottom:164.730000px;}
.y7f{bottom:165.090000px;}
.y3f{bottom:167.070000px;}
.y166{bottom:169.590000px;}
.ya1{bottom:170.310000px;}
.yd9{bottom:180.570000px;}
.y115{bottom:181.290000px;}
.y7e{bottom:182.370000px;}
.y3e{bottom:184.350000px;}
.y165{bottom:186.870000px;}
.ya0{bottom:187.590000px;}
.yd8{bottom:198.030000px;}
.y114{bottom:198.930000px;}
.y7d{bottom:199.650000px;}
.y3d{bottom:201.630000px;}
.y164{bottom:204.150000px;}
.y9f{bottom:204.870000px;}
.yd7{bottom:215.310000px;}
.y113{bottom:216.030000px;}
.y7c{bottom:216.930000px;}
.y3c{bottom:218.730000px;}
.y163{bottom:221.250000px;}
.y9e{bottom:222.150000px;}
.yd6{bottom:232.590000px;}
.y112{bottom:233.310000px;}
.y7b{bottom:234.030000px;}
.y3b{bottom:236.010000px;}
.y162{bottom:238.530000px;}
.y9d{bottom:239.070000px;}
.yd5{bottom:249.870000px;}
.y111{bottom:250.590000px;}
.y7a{bottom:251.310000px;}
.y3a{bottom:253.290000px;}
.y161{bottom:255.450000px;}
.y9c{bottom:260.670000px;}
.yd4{bottom:267.150000px;}
.y110{bottom:267.870000px;}
.y170{bottom:268.230000px;}
.y79{bottom:268.590000px;}
.y39{bottom:270.570000px;}
.y160{bottom:273.090000px;}
.y9b{bottom:282.450000px;}
.yd3{bottom:284.430000px;}
.y10f{bottom:285.150000px;}
.y78{bottom:285.870000px;}
.y15f{bottom:286.590000px;}
.y38{bottom:287.850000px;}
.yd2{bottom:301.530000px;}
.y10e{bottom:302.430000px;}
.y77{bottom:303.150000px;}
.y9a{bottom:304.230000px;}
.y37{bottom:305.130000px;}
.yd1{bottom:318.810000px;}
.y10d{bottom:319.530000px;}
.y76{bottom:320.430000px;}
.y36{bottom:321.870000px;}
.y98{bottom:326.010000px;}
.yd0{bottom:335.730000px;}
.y10c{bottom:336.450000px;}
.y143{bottom:336.810000px;}
.y75{bottom:337.530000px;}
.y35{bottom:339.510000px;}
.y96{bottom:347.790000px;}
.y142{bottom:354.090000px;}
.y74{bottom:354.810000px;}
.y34{bottom:356.790000px;}
.ycf{bottom:357.555000px;}
.y10b{bottom:358.275000px;}
.y141{bottom:371.055000px;}
.y73{bottom:372.135000px;}
.y33{bottom:374.115000px;}
.yce{bottom:379.335000px;}
.y10a{bottom:380.055000px;}
.y72{bottom:389.055000px;}
.y8d{bottom:389.415000px;}
.y32{bottom:391.395000px;}
.y140{bottom:392.835000px;}
.ycd{bottom:400.935000px;}
.y109{bottom:401.835000px;}
.y71{bottom:406.695000px;}
.y31{bottom:408.675000px;}
.y13f{bottom:414.435000px;}
.ycc{bottom:422.715000px;}
.y108{bottom:423.435000px;}
.y8c{bottom:423.615000px;}
.y70{bottom:423.975000px;}
.y30{bottom:425.775000px;}
.y13e{bottom:436.215000px;}
.y95{bottom:440.715000px;}
.y6f{bottom:441.075000px;}
.y2f{bottom:443.055000px;}
.ycb{bottom:444.495000px;}
.y107{bottom:447.915000px;}
.y13c{bottom:457.995000px;}
.y6e{bottom:458.355000px;}
.y2e{bottom:460.335000px;}
.y106{bottom:465.195000px;}
.yca{bottom:468.795000px;}
.y6d{bottom:475.635000px;}
.y2d{bottom:477.615000px;}
.y13b{bottom:479.775000px;}
.y105{bottom:482.295000px;}
.y6c{bottom:492.555000px;}
.y8b{bottom:492.915000px;}
.y2c{bottom:494.535000px;}
.y104{bottom:499.215000px;}
.yc9{bottom:503.355000px;}
.y6b{bottom:510.195000px;}
.y2b{bottom:511.995000px;}
.y103{bottom:516.855000px;}
.yc8{bottom:520.635000px;}
.y13a{bottom:521.355000px;}
.y6a{bottom:527.295000px;}
.y2a{bottom:529.275000px;}
.y102{bottom:534.135000px;}
.yc7{bottom:537.555000px;}
.y139{bottom:538.635000px;}
.y16f{bottom:544.215000px;}
.y69{bottom:544.575000px;}
.y29{bottom:546.555000px;}
.y101{bottom:551.415000px;}
.yc6{bottom:555.195000px;}
.y138{bottom:555.555000px;}
.y94{bottom:561.495000px;}
.y68{bottom:561.855000px;}
.y28{bottom:563.835000px;}
.y100{bottom:568.695000px;}
.yc5{bottom:572.295000px;}
.y137{bottom:573.195000px;}
.y67{bottom:579.135000px;}
.y27{bottom:581.115000px;}
.yff{bottom:585.795000px;}
.yc4{bottom:589.575000px;}
.y136{bottom:590.295000px;}
.y66{bottom:596.415000px;}
.y26{bottom:598.395000px;}
.y15e{bottom:601.635000px;}
.yfe{bottom:603.075000px;}
.yc3{bottom:606.855000px;}
.y135{bottom:607.575000px;}
.y65{bottom:613.695000px;}
.y25{bottom:615.135000px;}
.y15d{bottom:618.945000px;}
.yfd{bottom:620.385000px;}
.yc2{bottom:624.165000px;}
.y134{bottom:624.885000px;}
.y64{bottom:630.825000px;}
.y24{bottom:632.805000px;}
.y15c{bottom:636.225000px;}
.yfc{bottom:637.665000px;}
.yc1{bottom:641.445000px;}
.y133{bottom:641.805000px;}
.y90{bottom:647.745000px;}
.y63{bottom:648.105000px;}
.y23{bottom:650.085000px;}
.y15b{bottom:653.325000px;}
.yfb{bottom:654.585000px;}
.yc0{bottom:658.725000px;}
.y132{bottom:659.445000px;}
.y93{bottom:665.025000px;}
.y62{bottom:665.385000px;}
.y22{bottom:667.365000px;}
.y15a{bottom:670.605000px;}
.ybf{bottom:675.825000px;}
.yfa{bottom:676.185000px;}
.y131{bottom:676.725000px;}
.y61{bottom:682.665000px;}
.y21{bottom:684.645000px;}
.y159{bottom:687.885000px;}
.ybe{bottom:692.745000px;}
.y130{bottom:693.825000px;}
.yf9{bottom:697.965000px;}
.y60{bottom:699.585000px;}
.y8a{bottom:699.945000px;}
.y20{bottom:701.925000px;}
.y158{bottom:704.805000px;}
.y12f{bottom:711.105000px;}
.ybd{bottom:714.525000px;}
.y5f{bottom:717.225000px;}
.y1f{bottom:719.025000px;}
.yf8{bottom:719.745000px;}
.y157{bottom:722.445000px;}
.y12e{bottom:728.385000px;}
.y5e{bottom:734.325000px;}
.y1e{bottom:736.305000px;}
.y156{bottom:739.365000px;}
.yf7{bottom:741.525000px;}
.y12d{bottom:745.665000px;}
.y5d{bottom:751.605000px;}
.y1d{bottom:753.585000px;}
.y155{bottom:756.825000px;}
.ybc{bottom:758.085000px;}
.y12c{bottom:762.945000px;}
.yf6{bottom:765.825000px;}
.y16e{bottom:768.525000px;}
.y5c{bottom:768.885000px;}
.y1c{bottom:770.865000px;}
.y154{bottom:774.105000px;}
.ybb{bottom:779.685000px;}
.y12b{bottom:780.225000px;}
.yf5{bottom:783.105000px;}
.y89{bottom:785.805000px;}
.y5b{bottom:786.165000px;}
.y1b{bottom:788.145000px;}
.y153{bottom:791.385000px;}
.y12a{bottom:796.965000px;}
.yf4{bottom:800.385000px;}
.yba{bottom:801.465000px;}
.y5a{bottom:803.445000px;}
.y1a{bottom:805.425000px;}
.y152{bottom:808.665000px;}
.yf3{bottom:817.665000px;}
.y129{bottom:818.745000px;}
.y59{bottom:820.725000px;}
.y19{bottom:822.525000px;}
.yb9{bottom:825.945000px;}
.yf2{bottom:834.585000px;}
.y58{bottom:837.825000px;}
.y18{bottom:839.805000px;}
.y128{bottom:840.525000px;}
.yb8{bottom:843.045000px;}
.yf1{bottom:852.045000px;}
.y57{bottom:855.105000px;}
.y17{bottom:857.085000px;}
.yb7{bottom:860.325000px;}
.y127{bottom:862.305000px;}
.yf0{bottom:869.325000px;}
.y88{bottom:872.025000px;}
.y56{bottom:872.385000px;}
.y16{bottom:874.005000px;}
.yb6{bottom:877.290000px;}
.y151{bottom:877.650000px;}
.y126{bottom:884.130000px;}
.yef{bottom:886.650000px;}
.y55{bottom:889.710000px;}
.y15{bottom:892.050000px;}
.yb5{bottom:894.930000px;}
.yee{bottom:903.930000px;}
.y54{bottom:906.630000px;}
.y87{bottom:906.990000px;}
.y14{bottom:909.690000px;}
.yb4{bottom:912.210000px;}
.yed{bottom:921.210000px;}
.y53{bottom:924.090000px;}
.y125{bottom:925.710000px;}
.y13{bottom:926.790000px;}
.yb3{bottom:929.490000px;}
.yec{bottom:938.130000px;}
.y52{bottom:941.370000px;}
.y124{bottom:942.990000px;}
.y12{bottom:944.070000px;}
.yb2{bottom:946.590000px;}
.yeb{bottom:955.590000px;}
.y8f{bottom:958.290000px;}
.y51{bottom:958.650000px;}
.y123{bottom:959.730000px;}
.y11{bottom:961.350000px;}
.yb1{bottom:963.870000px;}
.yea{bottom:972.870000px;}
.y50{bottom:975.930000px;}
.y122{bottom:977.370000px;}
.y10{bottom:978.630000px;}
.yb0{bottom:981.150000px;}
.ye9{bottom:990.150000px;}
.y16d{bottom:992.850000px;}
.y4f{bottom:993.210000px;}
.y121{bottom:994.650000px;}
.yf{bottom:995.910000px;}
.yaf{bottom:998.430000px;}
.ye8{bottom:1007.430000px;}
.y4e{bottom:1010.490000px;}
.y120{bottom:1011.930000px;}
.ye{bottom:1013.910000px;}
.yae{bottom:1015.350000px;}
.y150{bottom:1015.710000px;}
.ye7{bottom:1024.710000px;}
.y4d{bottom:1027.590000px;}
.y11f{bottom:1029.210000px;}
.yd{bottom:1031.190000px;}
.y14f{bottom:1032.450000px;}
.yad{bottom:1036.950000px;}
.ye6{bottom:1041.990000px;}
.y4c{bottom:1044.510000px;}
.y86{bottom:1044.870000px;}
.y11e{bottom:1046.490000px;}
.yc{bottom:1048.290000px;}
.y14e{bottom:1054.230000px;}
.yac{bottom:1058.730000px;}
.ye5{bottom:1059.090000px;}
.y4b{bottom:1062.150000px;}
.y11d{bottom:1063.590000px;}
.yb{bottom:1065.570000px;}
.y14d{bottom:1076.010000px;}
.ye4{bottom:1076.370000px;}
.y4a{bottom:1079.430000px;}
.yab{bottom:1080.510000px;}
.y11c{bottom:1080.870000px;}
.ya{bottom:1082.850000px;}
.ye3{bottom:1093.290000px;}
.y49{bottom:1096.710000px;}
.y14c{bottom:1097.790000px;}
.y11b{bottom:1098.150000px;}
.y9{bottom:1100.490000px;}
.yaa{bottom:1102.290000px;}
.y48{bottom:1113.990000px;}
.ye2{bottom:1115.070000px;}
.y14b{bottom:1119.570000px;}
.y8{bottom:1121.190000px;}
.ya8{bottom:1124.070000px;}
.y47{bottom:1131.090000px;}
.ye1{bottom:1136.880000px;}
.y148{bottom:1141.380000px;}
.y7{bottom:1141.920000px;}
.y46{bottom:1148.400000px;}
.ye0{bottom:1158.480000px;}
.y6{bottom:1162.620000px;}
.y92{bottom:1165.320000px;}
.y45{bottom:1165.680000px;}
.y3{bottom:1182.600000px;}
.y2{bottom:1199.880000px;}
.y1{bottom:1216.980000px;}
.h9{height:17.100000px;}
.h7{height:17.136000px;}
.h8{height:17.280000px;}
.ha{height:17.316000px;}
.hc{height:34.380000px;}
.hb{height:34.596000px;}
.h6{height:41.726953px;}
.h2{height:58.621992px;}
.h3{height:58.651172px;}
.h5{height:60.226875px;}
.hd{height:61.423863px;}
.h4{height:72.562500px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w20{width:46.080000px;}
.w28{width:51.156000px;}
.w1d{width:57.780000px;}
.w33{width:57.996000px;}
.w25{width:59.220000px;}
.w38{width:61.020000px;}
.w39{width:65.556000px;}
.w23{width:68.040000px;}
.w21{width:71.640000px;}
.w22{width:75.096000px;}
.w9{width:78.480000px;}
.w8{width:80.640000px;}
.w31{width:81.900000px;}
.w32{width:81.936000px;}
.w30{width:82.116000px;}
.w1e{width:91.656000px;}
.w26{width:95.796000px;}
.w2c{width:98.460000px;}
.w24{width:101.736000px;}
.w1b{width:102.600000px;}
.w15{width:106.056000px;}
.w10{width:108.036000px;}
.w6{width:112.716000px;}
.w36{width:117.036000px;}
.wb{width:118.116000px;}
.w29{width:119.160000px;}
.w2{width:127.656000px;}
.w14{width:129.456000px;}
.w5{width:129.816000px;}
.wf{width:130.356000px;}
.w35{width:135.540000px;}
.w1c{width:137.916000px;}
.w2e{width:140.436000px;}
.w37{width:142.416000px;}
.wd{width:143.676000px;}
.w2d{width:143.856000px;}
.w18{width:146.916000px;}
.w19{width:154.110000px;}
.w12{width:165.270000px;}
.w16{width:174.450000px;}
.w11{width:179.490000px;}
.wc{width:185.430000px;}
.w17{width:189.210000px;}
.w13{width:196.230000px;}
.we{width:200.910000px;}
.wa{width:212.475000px;}
.w4{width:223.230000px;}
.w2a{width:226.335000px;}
.w34{width:244.695000px;}
.w1a{width:248.115000px;}
.w2b{width:251.895000px;}
.w1f{width:253.875000px;}
.w7{width:294.015000px;}
.w3{width:302.475000px;}
.w27{width:384.015000px;}
.w2f{width:390.135000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x18{left:1.080000px;}
.x49{left:3.060000px;}
.x52{left:5.040000px;}
.x57{left:6.660000px;}
.x25{left:8.100000px;}
.x47{left:9.540000px;}
.x28{left:11.160000px;}
.x2e{left:12.780000px;}
.x15{left:14.220000px;}
.x79{left:15.330000px;}
.x32{left:16.380000px;}
.x19{left:18.540000px;}
.x1f{left:20.160000px;}
.x34{left:22.680000px;}
.x5c{left:24.510000px;}
.x1d{left:26.640000px;}
.x6d{left:28.800000px;}
.x43{left:30.420000px;}
.x2b{left:31.680000px;}
.x2a{left:32.760000px;}
.x22{left:33.840000px;}
.x54{left:35.460000px;}
.x2d{left:37.080000px;}
.x78{left:38.196000px;}
.x3a{left:39.816000px;}
.x13{left:41.256000px;}
.x67{left:43.020000px;}
.x1e{left:44.496000px;}
.x5d{left:46.476000px;}
.x39{left:50.040000px;}
.x12{left:51.660000px;}
.x21{left:52.920000px;}
.x5{left:54.000000px;}
.x41{left:55.260000px;}
.x1c{left:57.240000px;}
.x68{left:58.710000px;}
.x37{left:60.480000px;}
.xd{left:64.800000px;}
.x4b{left:65.880000px;}
.x4c{left:69.480000px;}
.x77{left:71.100000px;}
.x40{left:73.260000px;}
.x4a{left:79.740000px;}
.x36{left:81.360000px;}
.x3b{left:85.140000px;}
.x38{left:89.100000px;}
.x76{left:90.756000px;}
.x3c{left:92.880000px;}
.x1b{left:96.480000px;}
.x2c{left:98.685000px;}
.x6f{left:102.090000px;}
.x7b{left:108.036000px;}
.x62{left:111.450000px;}
.x6e{left:114.690000px;}
.x63{left:119.190000px;}
.x70{left:122.250000px;}
.x29{left:139.545000px;}
.x1a{left:143.865000px;}
.x3d{left:163.110000px;}
.x44{left:165.090000px;}
.x23{left:167.790000px;}
.x30{left:173.370000px;}
.x14{left:181.470000px;}
.x6{left:191.010000px;}
.xa{left:225.030000px;}
.x42{left:234.210000px;}
.x11{left:242.670000px;}
.x2f{left:250.590000px;}
.x3{left:254.550000px;}
.x8{left:258.330000px;}
.x20{left:267.150000px;}
.xb{left:271.875000px;}
.xe{left:297.975000px;}
.x2{left:300.675000px;}
.x4e{left:303.375000px;}
.x71{left:304.815000px;}
.x64{left:306.975000px;}
.x55{left:309.135000px;}
.x5e{left:311.295000px;}
.x7{left:320.475000px;}
.x1{left:324.255000px;}
.x4d{left:329.475000px;}
.x45{left:341.895000px;}
.x3e{left:344.775000px;}
.x56{left:357.555000px;}
.x31{left:360.975000px;}
.x9{left:387.255000px;}
.x4f{left:408.135000px;}
.xc{left:426.675000px;}
.x58{left:431.355000px;}
.x5f{left:439.095000px;}
.x72{left:442.515000px;}
.x69{left:445.215000px;}
.x24{left:464.145000px;}
.x16{left:486.105000px;}
.x60{left:492.585000px;}
.x33{left:506.805000px;}
.x59{left:508.605000px;}
.x3f{left:512.385000px;}
.x6a{left:529.665000px;}
.x46{left:533.445000px;}
.x26{left:547.125000px;}
.x50{left:548.205000px;}
.x65{left:553.785000px;}
.x73{left:561.885000px;}
.x5a{left:578.985000px;}
.x61{left:614.085000px;}
.x27{left:627.945000px;}
.x48{left:682.530000px;}
.x51{left:688.470000px;}
.x6b{left:698.190000px;}
.x66{left:699.990000px;}
.x74{left:706.470000px;}
.x35{left:710.070000px;}
.x17{left:711.690000px;}
.x5b{left:744.450000px;}
.x53{left:748.590000px;}
.x10{left:756.510000px;}
.x75{left:769.830000px;}
.x6c{left:782.430000px;}
.x7a{left:797.550000px;}
.xf{left:812.130000px;}
.x4{left:821.160000px;}
@media print{
.v1{vertical-align:-61.440000pt;}
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:-0.960000pt;}
.ls9{letter-spacing:-0.544000pt;}
.ls2{letter-spacing:-0.320000pt;}
.ls5{letter-spacing:-0.183467pt;}
.ls8{letter-spacing:-0.047360pt;}
.ls1{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.094933pt;}
.ls4{letter-spacing:0.160000pt;}
.ls6{letter-spacing:0.230933pt;}
.lse{letter-spacing:0.265600pt;}
.ls0{letter-spacing:0.320000pt;}
.lsf{letter-spacing:0.409067pt;}
.ls10{letter-spacing:0.592000pt;}
.ls11{letter-spacing:0.960000pt;}
.lsd{letter-spacing:14.672640pt;}
.lsa{letter-spacing:18.720000pt;}
.lsc{letter-spacing:40.912640pt;}
.ls7{letter-spacing:178.848000pt;}
.ws0{word-spacing:-16.000000pt;}
.wsb{word-spacing:-14.240000pt;}
.wsa{word-spacing:-13.872000pt;}
.ws8{word-spacing:-13.689067pt;}
.ws4{word-spacing:-13.600000pt;}
.ws6{word-spacing:-13.510933pt;}
.ws7{word-spacing:-13.374933pt;}
.ws2{word-spacing:-13.280000pt;}
.ws5{word-spacing:-13.232640pt;}
.ws9{word-spacing:-13.096533pt;}
.ws1{word-spacing:-12.960000pt;}
.ws3{word-spacing:0.000000pt;}
._17{margin-left:-7.130453pt;}
._1c{margin-left:-1.806080pt;}
._2{margin-left:-0.896000pt;}
._0{width:1.062400pt;}
._1{width:2.511573pt;}
._7{width:3.665280pt;}
._8{width:4.667520pt;}
._a{width:5.840427pt;}
._4{width:7.270400pt;}
._13{width:8.189440pt;}
._6{width:9.135360pt;}
._5{width:10.199040pt;}
._b{width:11.208320pt;}
._12{width:12.323840pt;}
._e{width:14.183040pt;}
._f{width:15.192320pt;}
._16{width:16.141440pt;}
._c{width:17.423360pt;}
._d{width:18.385920pt;}
._15{width:19.309440pt;}
._18{width:20.238720pt;}
._14{width:21.885440pt;}
._11{width:23.160320pt;}
._10{width:24.063360pt;}
._1a{width:25.140907pt;}
._1f{width:27.409920pt;}
._19{width:70.852907pt;}
._9{width:178.848000pt;}
._1d{width:259.273387pt;}
._1e{width:285.843627pt;}
._1b{width:388.495787pt;}
._3{width:404.106667pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:64.000000pt;}
.y13d{bottom:-4.320000pt;}
.y0{bottom:0.000000pt;}
.y97{bottom:2.880000pt;}
.ya9{bottom:3.040000pt;}
.y5{bottom:3.200000pt;}
.y99{bottom:3.360000pt;}
.y149{bottom:10.560000pt;}
.y145{bottom:10.752000pt;}
.y14a{bottom:18.240000pt;}
.y146{bottom:18.432000pt;}
.y4{bottom:18.880000pt;}
.y91{bottom:49.920000pt;}
.ydf{bottom:54.400000pt;}
.y85{bottom:54.720000pt;}
.y11a{bottom:55.040000pt;}
.y16c{bottom:58.720000pt;}
.y147{bottom:59.040000pt;}
.ya7{bottom:59.360000pt;}
.y84{bottom:70.080000pt;}
.y44{bottom:71.840000pt;}
.yde{bottom:73.760000pt;}
.y16b{bottom:74.080000pt;}
.ya6{bottom:74.400000pt;}
.y144{bottom:78.400000pt;}
.y83{bottom:85.440000pt;}
.y43{bottom:87.232000pt;}
.y16a{bottom:89.152000pt;}
.ya5{bottom:90.112000pt;}
.ydd{bottom:93.152000pt;}
.y119{bottom:93.792000pt;}
.y8e{bottom:100.512000pt;}
.y82{bottom:100.832000pt;}
.y42{bottom:102.592000pt;}
.y169{bottom:104.512000pt;}
.ya4{bottom:105.472000pt;}
.ydc{bottom:114.752000pt;}
.y118{bottom:115.392000pt;}
.y81{bottom:116.192000pt;}
.y41{bottom:117.792000pt;}
.y168{bottom:120.032000pt;}
.ya3{bottom:120.832000pt;}
.ydb{bottom:130.112000pt;}
.y117{bottom:130.752000pt;}
.y80{bottom:131.392000pt;}
.y40{bottom:133.152000pt;}
.y167{bottom:135.386667pt;}
.ya2{bottom:136.026667pt;}
.yda{bottom:145.466667pt;}
.y116{bottom:146.106667pt;}
.y171{bottom:146.426667pt;}
.y7f{bottom:146.746667pt;}
.y3f{bottom:148.506667pt;}
.y166{bottom:150.746667pt;}
.ya1{bottom:151.386667pt;}
.yd9{bottom:160.506667pt;}
.y115{bottom:161.146667pt;}
.y7e{bottom:162.106667pt;}
.y3e{bottom:163.866667pt;}
.y165{bottom:166.106667pt;}
.ya0{bottom:166.746667pt;}
.yd8{bottom:176.026667pt;}
.y114{bottom:176.826667pt;}
.y7d{bottom:177.466667pt;}
.y3d{bottom:179.226667pt;}
.y164{bottom:181.466667pt;}
.y9f{bottom:182.106667pt;}
.yd7{bottom:191.386667pt;}
.y113{bottom:192.026667pt;}
.y7c{bottom:192.826667pt;}
.y3c{bottom:194.426667pt;}
.y163{bottom:196.666667pt;}
.y9e{bottom:197.466667pt;}
.yd6{bottom:206.746667pt;}
.y112{bottom:207.386667pt;}
.y7b{bottom:208.026667pt;}
.y3b{bottom:209.786667pt;}
.y162{bottom:212.026667pt;}
.y9d{bottom:212.506667pt;}
.yd5{bottom:222.106667pt;}
.y111{bottom:222.746667pt;}
.y7a{bottom:223.386667pt;}
.y3a{bottom:225.146667pt;}
.y161{bottom:227.066667pt;}
.y9c{bottom:231.706667pt;}
.yd4{bottom:237.466667pt;}
.y110{bottom:238.106667pt;}
.y170{bottom:238.426667pt;}
.y79{bottom:238.746667pt;}
.y39{bottom:240.506667pt;}
.y160{bottom:242.746667pt;}
.y9b{bottom:251.066667pt;}
.yd3{bottom:252.826667pt;}
.y10f{bottom:253.466667pt;}
.y78{bottom:254.106667pt;}
.y15f{bottom:254.746667pt;}
.y38{bottom:255.866667pt;}
.yd2{bottom:268.026667pt;}
.y10e{bottom:268.826667pt;}
.y77{bottom:269.466667pt;}
.y9a{bottom:270.426667pt;}
.y37{bottom:271.226667pt;}
.yd1{bottom:283.386667pt;}
.y10d{bottom:284.026667pt;}
.y76{bottom:284.826667pt;}
.y36{bottom:286.106667pt;}
.y98{bottom:289.786667pt;}
.yd0{bottom:298.426667pt;}
.y10c{bottom:299.066667pt;}
.y143{bottom:299.386667pt;}
.y75{bottom:300.026667pt;}
.y35{bottom:301.786667pt;}
.y96{bottom:309.146667pt;}
.y142{bottom:314.746667pt;}
.y74{bottom:315.386667pt;}
.y34{bottom:317.146667pt;}
.ycf{bottom:317.826667pt;}
.y10b{bottom:318.466667pt;}
.y141{bottom:329.826667pt;}
.y73{bottom:330.786667pt;}
.y33{bottom:332.546667pt;}
.yce{bottom:337.186667pt;}
.y10a{bottom:337.826667pt;}
.y72{bottom:345.826667pt;}
.y8d{bottom:346.146667pt;}
.y32{bottom:347.906667pt;}
.y140{bottom:349.186667pt;}
.ycd{bottom:356.386667pt;}
.y109{bottom:357.186667pt;}
.y71{bottom:361.506667pt;}
.y31{bottom:363.266667pt;}
.y13f{bottom:368.386667pt;}
.ycc{bottom:375.746667pt;}
.y108{bottom:376.386667pt;}
.y8c{bottom:376.546667pt;}
.y70{bottom:376.866667pt;}
.y30{bottom:378.466667pt;}
.y13e{bottom:387.746667pt;}
.y95{bottom:391.746667pt;}
.y6f{bottom:392.066667pt;}
.y2f{bottom:393.826667pt;}
.ycb{bottom:395.106667pt;}
.y107{bottom:398.146667pt;}
.y13c{bottom:407.106667pt;}
.y6e{bottom:407.426667pt;}
.y2e{bottom:409.186667pt;}
.y106{bottom:413.506667pt;}
.yca{bottom:416.706667pt;}
.y6d{bottom:422.786667pt;}
.y2d{bottom:424.546667pt;}
.y13b{bottom:426.466667pt;}
.y105{bottom:428.706667pt;}
.y6c{bottom:437.826667pt;}
.y8b{bottom:438.146667pt;}
.y2c{bottom:439.586667pt;}
.y104{bottom:443.746667pt;}
.yc9{bottom:447.426667pt;}
.y6b{bottom:453.506667pt;}
.y2b{bottom:455.106667pt;}
.y103{bottom:459.426667pt;}
.yc8{bottom:462.786667pt;}
.y13a{bottom:463.426667pt;}
.y6a{bottom:468.706667pt;}
.y2a{bottom:470.466667pt;}
.y102{bottom:474.786667pt;}
.yc7{bottom:477.826667pt;}
.y139{bottom:478.786667pt;}
.y16f{bottom:483.746667pt;}
.y69{bottom:484.066667pt;}
.y29{bottom:485.826667pt;}
.y101{bottom:490.146667pt;}
.yc6{bottom:493.506667pt;}
.y138{bottom:493.826667pt;}
.y94{bottom:499.106667pt;}
.y68{bottom:499.426667pt;}
.y28{bottom:501.186667pt;}
.y100{bottom:505.506667pt;}
.yc5{bottom:508.706667pt;}
.y137{bottom:509.506667pt;}
.y67{bottom:514.786667pt;}
.y27{bottom:516.546667pt;}
.yff{bottom:520.706667pt;}
.yc4{bottom:524.066667pt;}
.y136{bottom:524.706667pt;}
.y66{bottom:530.146667pt;}
.y26{bottom:531.906667pt;}
.y15e{bottom:534.786667pt;}
.yfe{bottom:536.066667pt;}
.yc3{bottom:539.426667pt;}
.y135{bottom:540.066667pt;}
.y65{bottom:545.506667pt;}
.y25{bottom:546.786667pt;}
.y15d{bottom:550.173333pt;}
.yfd{bottom:551.453333pt;}
.yc2{bottom:554.813333pt;}
.y134{bottom:555.453333pt;}
.y64{bottom:560.733333pt;}
.y24{bottom:562.493333pt;}
.y15c{bottom:565.533333pt;}
.yfc{bottom:566.813333pt;}
.yc1{bottom:570.173333pt;}
.y133{bottom:570.493333pt;}
.y90{bottom:575.773333pt;}
.y63{bottom:576.093333pt;}
.y23{bottom:577.853333pt;}
.y15b{bottom:580.733333pt;}
.yfb{bottom:581.853333pt;}
.yc0{bottom:585.533333pt;}
.y132{bottom:586.173333pt;}
.y93{bottom:591.133333pt;}
.y62{bottom:591.453333pt;}
.y22{bottom:593.213333pt;}
.y15a{bottom:596.093333pt;}
.ybf{bottom:600.733333pt;}
.yfa{bottom:601.053333pt;}
.y131{bottom:601.533333pt;}
.y61{bottom:606.813333pt;}
.y21{bottom:608.573333pt;}
.y159{bottom:611.453333pt;}
.ybe{bottom:615.773333pt;}
.y130{bottom:616.733333pt;}
.yf9{bottom:620.413333pt;}
.y60{bottom:621.853333pt;}
.y8a{bottom:622.173333pt;}
.y20{bottom:623.933333pt;}
.y158{bottom:626.493333pt;}
.y12f{bottom:632.093333pt;}
.ybd{bottom:635.133333pt;}
.y5f{bottom:637.533333pt;}
.y1f{bottom:639.133333pt;}
.yf8{bottom:639.773333pt;}
.y157{bottom:642.173333pt;}
.y12e{bottom:647.453333pt;}
.y5e{bottom:652.733333pt;}
.y1e{bottom:654.493333pt;}
.y156{bottom:657.213333pt;}
.yf7{bottom:659.133333pt;}
.y12d{bottom:662.813333pt;}
.y5d{bottom:668.093333pt;}
.y1d{bottom:669.853333pt;}
.y155{bottom:672.733333pt;}
.ybc{bottom:673.853333pt;}
.y12c{bottom:678.173333pt;}
.yf6{bottom:680.733333pt;}
.y16e{bottom:683.133333pt;}
.y5c{bottom:683.453333pt;}
.y1c{bottom:685.213333pt;}
.y154{bottom:688.093333pt;}
.ybb{bottom:693.053333pt;}
.y12b{bottom:693.533333pt;}
.yf5{bottom:696.093333pt;}
.y89{bottom:698.493333pt;}
.y5b{bottom:698.813333pt;}
.y1b{bottom:700.573333pt;}
.y153{bottom:703.453333pt;}
.y12a{bottom:708.413333pt;}
.yf4{bottom:711.453333pt;}
.yba{bottom:712.413333pt;}
.y5a{bottom:714.173333pt;}
.y1a{bottom:715.933333pt;}
.y152{bottom:718.813333pt;}
.yf3{bottom:726.813333pt;}
.y129{bottom:727.773333pt;}
.y59{bottom:729.533333pt;}
.y19{bottom:731.133333pt;}
.yb9{bottom:734.173333pt;}
.yf2{bottom:741.853333pt;}
.y58{bottom:744.733333pt;}
.y18{bottom:746.493333pt;}
.y128{bottom:747.133333pt;}
.yb8{bottom:749.373333pt;}
.yf1{bottom:757.373333pt;}
.y57{bottom:760.093333pt;}
.y17{bottom:761.853333pt;}
.yb7{bottom:764.733333pt;}
.y127{bottom:766.493333pt;}
.yf0{bottom:772.733333pt;}
.y88{bottom:775.133333pt;}
.y56{bottom:775.453333pt;}
.y16{bottom:776.893333pt;}
.yb6{bottom:779.813333pt;}
.y151{bottom:780.133333pt;}
.y126{bottom:785.893333pt;}
.yef{bottom:788.133333pt;}
.y55{bottom:790.853333pt;}
.y15{bottom:792.933333pt;}
.yb5{bottom:795.493333pt;}
.yee{bottom:803.493333pt;}
.y54{bottom:805.893333pt;}
.y87{bottom:806.213333pt;}
.y14{bottom:808.613333pt;}
.yb4{bottom:810.853333pt;}
.yed{bottom:818.853333pt;}
.y53{bottom:821.413333pt;}
.y125{bottom:822.853333pt;}
.y13{bottom:823.813333pt;}
.yb3{bottom:826.213333pt;}
.yec{bottom:833.893333pt;}
.y52{bottom:836.773333pt;}
.y124{bottom:838.213333pt;}
.y12{bottom:839.173333pt;}
.yb2{bottom:841.413333pt;}
.yeb{bottom:849.413333pt;}
.y8f{bottom:851.813333pt;}
.y51{bottom:852.133333pt;}
.y123{bottom:853.093333pt;}
.y11{bottom:854.533333pt;}
.yb1{bottom:856.773333pt;}
.yea{bottom:864.773333pt;}
.y50{bottom:867.493333pt;}
.y122{bottom:868.773333pt;}
.y10{bottom:869.893333pt;}
.yb0{bottom:872.133333pt;}
.ye9{bottom:880.133333pt;}
.y16d{bottom:882.533333pt;}
.y4f{bottom:882.853333pt;}
.y121{bottom:884.133333pt;}
.yf{bottom:885.253333pt;}
.yaf{bottom:887.493333pt;}
.ye8{bottom:895.493333pt;}
.y4e{bottom:898.213333pt;}
.y120{bottom:899.493333pt;}
.ye{bottom:901.253333pt;}
.yae{bottom:902.533333pt;}
.y150{bottom:902.853333pt;}
.ye7{bottom:910.853333pt;}
.y4d{bottom:913.413333pt;}
.y11f{bottom:914.853333pt;}
.yd{bottom:916.613333pt;}
.y14f{bottom:917.733333pt;}
.yad{bottom:921.733333pt;}
.ye6{bottom:926.213333pt;}
.y4c{bottom:928.453333pt;}
.y86{bottom:928.773333pt;}
.y11e{bottom:930.213333pt;}
.yc{bottom:931.813333pt;}
.y14e{bottom:937.093333pt;}
.yac{bottom:941.093333pt;}
.ye5{bottom:941.413333pt;}
.y4b{bottom:944.133333pt;}
.y11d{bottom:945.413333pt;}
.yb{bottom:947.173333pt;}
.y14d{bottom:956.453333pt;}
.ye4{bottom:956.773333pt;}
.y4a{bottom:959.493333pt;}
.yab{bottom:960.453333pt;}
.y11c{bottom:960.773333pt;}
.ya{bottom:962.533333pt;}
.ye3{bottom:971.813333pt;}
.y49{bottom:974.853333pt;}
.y14c{bottom:975.813333pt;}
.y11b{bottom:976.133333pt;}
.y9{bottom:978.213333pt;}
.yaa{bottom:979.813333pt;}
.y48{bottom:990.213333pt;}
.ye2{bottom:991.173333pt;}
.y14b{bottom:995.173333pt;}
.y8{bottom:996.613333pt;}
.ya8{bottom:999.173333pt;}
.y47{bottom:1005.413333pt;}
.ye1{bottom:1010.560000pt;}
.y148{bottom:1014.560000pt;}
.y7{bottom:1015.040000pt;}
.y46{bottom:1020.800000pt;}
.ye0{bottom:1029.760000pt;}
.y6{bottom:1033.440000pt;}
.y92{bottom:1035.840000pt;}
.y45{bottom:1036.160000pt;}
.y3{bottom:1051.200000pt;}
.y2{bottom:1066.560000pt;}
.y1{bottom:1081.760000pt;}
.h9{height:15.200000pt;}
.h7{height:15.232000pt;}
.h8{height:15.360000pt;}
.ha{height:15.392000pt;}
.hc{height:30.560000pt;}
.hb{height:30.752000pt;}
.h6{height:37.090625pt;}
.h2{height:52.108438pt;}
.h3{height:52.134375pt;}
.h5{height:53.535000pt;}
.hd{height:54.598989pt;}
.h4{height:64.500000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w20{width:40.960000pt;}
.w28{width:45.472000pt;}
.w1d{width:51.360000pt;}
.w33{width:51.552000pt;}
.w25{width:52.640000pt;}
.w38{width:54.240000pt;}
.w39{width:58.272000pt;}
.w23{width:60.480000pt;}
.w21{width:63.680000pt;}
.w22{width:66.752000pt;}
.w9{width:69.760000pt;}
.w8{width:71.680000pt;}
.w31{width:72.800000pt;}
.w32{width:72.832000pt;}
.w30{width:72.992000pt;}
.w1e{width:81.472000pt;}
.w26{width:85.152000pt;}
.w2c{width:87.520000pt;}
.w24{width:90.432000pt;}
.w1b{width:91.200000pt;}
.w15{width:94.272000pt;}
.w10{width:96.032000pt;}
.w6{width:100.192000pt;}
.w36{width:104.032000pt;}
.wb{width:104.992000pt;}
.w29{width:105.920000pt;}
.w2{width:113.472000pt;}
.w14{width:115.072000pt;}
.w5{width:115.392000pt;}
.wf{width:115.872000pt;}
.w35{width:120.480000pt;}
.w1c{width:122.592000pt;}
.w2e{width:124.832000pt;}
.w37{width:126.592000pt;}
.wd{width:127.712000pt;}
.w2d{width:127.872000pt;}
.w18{width:130.592000pt;}
.w19{width:136.986667pt;}
.w12{width:146.906667pt;}
.w16{width:155.066667pt;}
.w11{width:159.546667pt;}
.wc{width:164.826667pt;}
.w17{width:168.186667pt;}
.w13{width:174.426667pt;}
.we{width:178.586667pt;}
.wa{width:188.866667pt;}
.w4{width:198.426667pt;}
.w2a{width:201.186667pt;}
.w34{width:217.506667pt;}
.w1a{width:220.546667pt;}
.w2b{width:223.906667pt;}
.w1f{width:225.666667pt;}
.w7{width:261.346667pt;}
.w3{width:268.866667pt;}
.w27{width:341.346667pt;}
.w2f{width:346.786667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x18{left:0.960000pt;}
.x49{left:2.720000pt;}
.x52{left:4.480000pt;}
.x57{left:5.920000pt;}
.x25{left:7.200000pt;}
.x47{left:8.480000pt;}
.x28{left:9.920000pt;}
.x2e{left:11.360000pt;}
.x15{left:12.640000pt;}
.x79{left:13.626667pt;}
.x32{left:14.560000pt;}
.x19{left:16.480000pt;}
.x1f{left:17.920000pt;}
.x34{left:20.160000pt;}
.x5c{left:21.786667pt;}
.x1d{left:23.680000pt;}
.x6d{left:25.600000pt;}
.x43{left:27.040000pt;}
.x2b{left:28.160000pt;}
.x2a{left:29.120000pt;}
.x22{left:30.080000pt;}
.x54{left:31.520000pt;}
.x2d{left:32.960000pt;}
.x78{left:33.952000pt;}
.x3a{left:35.392000pt;}
.x13{left:36.672000pt;}
.x67{left:38.240000pt;}
.x1e{left:39.552000pt;}
.x5d{left:41.312000pt;}
.x39{left:44.480000pt;}
.x12{left:45.920000pt;}
.x21{left:47.040000pt;}
.x5{left:48.000000pt;}
.x41{left:49.120000pt;}
.x1c{left:50.880000pt;}
.x68{left:52.186667pt;}
.x37{left:53.760000pt;}
.xd{left:57.600000pt;}
.x4b{left:58.560000pt;}
.x4c{left:61.760000pt;}
.x77{left:63.200000pt;}
.x40{left:65.120000pt;}
.x4a{left:70.880000pt;}
.x36{left:72.320000pt;}
.x3b{left:75.680000pt;}
.x38{left:79.200000pt;}
.x76{left:80.672000pt;}
.x3c{left:82.560000pt;}
.x1b{left:85.760000pt;}
.x2c{left:87.720000pt;}
.x6f{left:90.746667pt;}
.x7b{left:96.032000pt;}
.x62{left:99.066667pt;}
.x6e{left:101.946667pt;}
.x63{left:105.946667pt;}
.x70{left:108.666667pt;}
.x29{left:124.040000pt;}
.x1a{left:127.880000pt;}
.x3d{left:144.986667pt;}
.x44{left:146.746667pt;}
.x23{left:149.146667pt;}
.x30{left:154.106667pt;}
.x14{left:161.306667pt;}
.x6{left:169.786667pt;}
.xa{left:200.026667pt;}
.x42{left:208.186667pt;}
.x11{left:215.706667pt;}
.x2f{left:222.746667pt;}
.x3{left:226.266667pt;}
.x8{left:229.626667pt;}
.x20{left:237.466667pt;}
.xb{left:241.666667pt;}
.xe{left:264.866667pt;}
.x2{left:267.266667pt;}
.x4e{left:269.666667pt;}
.x71{left:270.946667pt;}
.x64{left:272.866667pt;}
.x55{left:274.786667pt;}
.x5e{left:276.706667pt;}
.x7{left:284.866667pt;}
.x1{left:288.226667pt;}
.x4d{left:292.866667pt;}
.x45{left:303.906667pt;}
.x3e{left:306.466667pt;}
.x56{left:317.826667pt;}
.x31{left:320.866667pt;}
.x9{left:344.226667pt;}
.x4f{left:362.786667pt;}
.xc{left:379.266667pt;}
.x58{left:383.426667pt;}
.x5f{left:390.306667pt;}
.x72{left:393.346667pt;}
.x69{left:395.746667pt;}
.x24{left:412.573333pt;}
.x16{left:432.093333pt;}
.x60{left:437.853333pt;}
.x33{left:450.493333pt;}
.x59{left:452.093333pt;}
.x3f{left:455.453333pt;}
.x6a{left:470.813333pt;}
.x46{left:474.173333pt;}
.x26{left:486.333333pt;}
.x50{left:487.293333pt;}
.x65{left:492.253333pt;}
.x73{left:499.453333pt;}
.x5a{left:514.653333pt;}
.x61{left:545.853333pt;}
.x27{left:558.173333pt;}
.x48{left:606.693333pt;}
.x51{left:611.973333pt;}
.x6b{left:620.613333pt;}
.x66{left:622.213333pt;}
.x74{left:627.973333pt;}
.x35{left:631.173333pt;}
.x17{left:632.613333pt;}
.x5b{left:661.733333pt;}
.x53{left:665.413333pt;}
.x10{left:672.453333pt;}
.x75{left:684.293333pt;}
.x6c{left:695.493333pt;}
.x7a{left:708.933333pt;}
.xf{left:721.893333pt;}
.x4{left:729.920000pt;}
}




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