
    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_5e4ca83017926c95fc7eb05b.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_df87a8fec00b2581d04ff15e.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_dbd762a3e1efd8ccdcaeb5a6.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_38752b7025b1849186133fc5.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.084961;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_d3ef0c3a8c8517629191cd44.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_4e0fef12ed06fbc2fd31ad1c.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.758789;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_646a42739596fe7f161f26c2.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls7{letter-spacing:-0.540000px;}
.ls13{letter-spacing:-0.259800px;}
.lse{letter-spacing:-0.106800px;}
.ls3{letter-spacing:-0.053280px;}
.ls2{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.053280px;}
.ls17{letter-spacing:0.156000px;}
.ls6{letter-spacing:0.180000px;}
.ls10{letter-spacing:0.206400px;}
.lsa{letter-spacing:0.259800px;}
.ls5{letter-spacing:0.259920px;}
.ls12{letter-spacing:0.298800px;}
.ls4{letter-spacing:0.360000px;}
.ls18{letter-spacing:4.500000px;}
.ls16{letter-spacing:11.466720px;}
.ls15{letter-spacing:11.676000px;}
.ls1{letter-spacing:15.238800px;}
.ls0{letter-spacing:15.300000px;}
.lsd{letter-spacing:32.346720px;}
.lsc{letter-spacing:35.946720px;}
.ls14{letter-spacing:41.706720px;}
.lsb{letter-spacing:56.106720px;}
.ls8{letter-spacing:64.746720px;}
.ls11{letter-spacing:65.466720px;}
.ls9{letter-spacing:75.546720px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5{word-spacing:-59.760000px;}
.ws1{word-spacing:-16.560000px;}
.ws6{word-spacing:-15.300000px;}
.ws7{word-spacing:-15.199800px;}
.wsa{word-spacing:-15.146400px;}
.ws9{word-spacing:-14.993280px;}
.ws4{word-spacing:-14.940000px;}
.ws2{word-spacing:-14.886720px;}
.ws8{word-spacing:-14.833200px;}
.wsb{word-spacing:-14.680200px;}
.ws0{word-spacing:-13.500000px;}
.ws3{word-spacing:0.000000px;}
._5{margin-left:-15.752880px;}
._6{margin-left:-14.186880px;}
._3{margin-left:-1.080000px;}
._0{width:1.109280px;}
._4{width:2.125920px;}
._e{width:3.471840px;}
._b{width:4.500000px;}
._10{width:5.570640px;}
._7{width:6.620400px;}
._c{width:8.067600px;}
._12{width:9.322560px;}
._d{width:11.115360px;}
._f{width:12.250800px;}
._11{width:13.711200px;}
._1{width:16.091760px;}
._2{width:17.570880px;}
._15{width:19.123200px;}
._20{width:20.284800px;}
._16{width:21.394080px;}
._13{width:22.914240px;}
._14{width:24.049680px;}
._1f{width:25.995600px;}
._22{width:27.489600px;}
._21{width:28.983600px;}
._23{width:30.644400px;}
._25{width:31.758720px;}
._24{width:35.736480px;}
._19{width:49.268400px;}
._1d{width:59.854560px;}
._1c{width:61.194240px;}
._17{width:106.159920px;}
._1a{width:119.400480px;}
._1e{width:145.780800px;}
._18{width:179.758080px;}
._1b{width:188.303760px;}
._a{width:244.056000px;}
._9{width:501.906000px;}
._8{width:751.296000px;}
.fc4{color:transparent;}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(255,0,0);}
.fc5{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs4{font-size:66.384000px;}
.fs2{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y5c{bottom:3.240000px;}
.ye3{bottom:11.700000px;}
.y5a{bottom:11.880000px;}
.y66{bottom:20.340000px;}
.y5e{bottom:20.520000px;}
.y5b{bottom:20.550000px;}
.ycd{bottom:20.565000px;}
.y65{bottom:28.980000px;}
.y5f{bottom:29.160000px;}
.y69{bottom:29.205000px;}
.yb{bottom:35.100000px;}
.y62{bottom:37.620000px;}
.y113{bottom:37.794000px;}
.y60{bottom:37.800000px;}
.ybb{bottom:37.830000px;}
.y6a{bottom:37.845000px;}
.y115{bottom:46.434000px;}
.yc1{bottom:46.440000px;}
.ybe{bottom:46.470000px;}
.yc9{bottom:46.485000px;}
.ya{bottom:50.760000px;}
.y67{bottom:54.900000px;}
.y112{bottom:55.074000px;}
.yc3{bottom:55.080000px;}
.yb7{bottom:55.110000px;}
.ycc{bottom:55.125000px;}
.y114{bottom:63.534000px;}
.yc0{bottom:63.540000px;}
.ybd{bottom:63.570000px;}
.y109{bottom:63.720000px;}
.yc8{bottom:63.765000px;}
.y9{bottom:66.240000px;}
.y116{bottom:72.174000px;}
.yc2{bottom:72.180000px;}
.yb6{bottom:72.210000px;}
.ycb{bottom:72.225000px;}
.y10a{bottom:72.360000px;}
.y10c{bottom:72.405000px;}
.yc6{bottom:80.820000px;}
.ybc{bottom:80.850000px;}
.ycf{bottom:80.865000px;}
.y10f{bottom:81.000000px;}
.y10d{bottom:81.045000px;}
.yc5{bottom:89.460000px;}
.yba{bottom:89.490000px;}
.yca{bottom:89.505000px;}
.y110{bottom:89.640000px;}
.yc4{bottom:106.740000px;}
.yb9{bottom:106.770000px;}
.yce{bottom:106.785000px;}
.y96{bottom:111.816000px;}
.yf2{bottom:112.716000px;}
.y111{bottom:116.136000px;}
.ydd{bottom:121.536000px;}
.yd1{bottom:123.156000px;}
.yb8{bottom:124.050000px;}
.yb3{bottom:127.656000px;}
.y95{bottom:129.096000px;}
.y128{bottom:138.636000px;}
.y73{bottom:138.816000px;}
.y3f{bottom:140.436000px;}
.yb2{bottom:144.936000px;}
.y94{bottom:146.376000px;}
.y72{bottom:156.090000px;}
.y3e{bottom:157.710000px;}
.yb1{bottom:162.210000px;}
.y93{bottom:163.650000px;}
.y71{bottom:173.370000px;}
.y3d{bottom:174.810000px;}
.yb0{bottom:179.310000px;}
.y92{bottom:180.930000px;}
.y70{bottom:190.650000px;}
.y3c{bottom:192.090000px;}
.yaf{bottom:196.590000px;}
.y91{bottom:198.030000px;}
.y10e{bottom:203.070000px;}
.y6f{bottom:207.930000px;}
.y3b{bottom:209.370000px;}
.yae{bottom:213.870000px;}
.y90{bottom:215.310000px;}
.yd0{bottom:224.130000px;}
.ydc{bottom:225.030000px;}
.y6e{bottom:225.210000px;}
.y3a{bottom:226.650000px;}
.yad{bottom:231.150000px;}
.y8f{bottom:232.590000px;}
.y6d{bottom:242.310000px;}
.y39{bottom:243.930000px;}
.yac{bottom:248.430000px;}
.y8e{bottom:249.870000px;}
.y6c{bottom:259.590000px;}
.y38{bottom:261.210000px;}
.yab{bottom:265.710000px;}
.y8d{bottom:267.150000px;}
.y6b{bottom:274.350000px;}
.ydb{bottom:276.870000px;}
.y37{bottom:278.310000px;}
.yaa{bottom:282.810000px;}
.y8c{bottom:284.430000px;}
.yda{bottom:294.150000px;}
.y36{bottom:295.590000px;}
.ya9{bottom:300.090000px;}
.y8b{bottom:301.530000px;}
.yd9{bottom:308.910000px;}
.y68{bottom:309.630000px;}
.y35{bottom:312.870000px;}
.ya8{bottom:317.370000px;}
.y8a{bottom:318.810000px;}
.y10b{bottom:324.570000px;}
.yc7{bottom:328.350000px;}
.y34{bottom:330.150000px;}
.ya7{bottom:334.650000px;}
.y89{bottom:336.090000px;}
.yd8{bottom:344.055000px;}
.y33{bottom:349.635000px;}
.ya6{bottom:351.975000px;}
.y88{bottom:353.415000px;}
.yd7{bottom:362.055000px;}
.y64{bottom:362.235000px;}
.y32{bottom:366.915000px;}
.ya5{bottom:369.075000px;}
.y87{bottom:370.695000px;}
.yd6{bottom:380.055000px;}
.y31{bottom:384.195000px;}
.ya4{bottom:386.355000px;}
.y86{bottom:387.795000px;}
.y30{bottom:401.475000px;}
.ya3{bottom:403.635000px;}
.y85{bottom:405.075000px;}
.yd5{bottom:415.335000px;}
.y2f{bottom:418.575000px;}
.ya2{bottom:420.915000px;}
.y84{bottom:422.355000px;}
.yf1{bottom:430.995000px;}
.y63{bottom:431.895000px;}
.y2e{bottom:435.855000px;}
.ya1{bottom:438.195000px;}
.y83{bottom:439.635000px;}
.y108{bottom:446.115000px;}
.yf0{bottom:448.275000px;}
.ybf{bottom:449.895000px;}
.y2d{bottom:453.135000px;}
.yd4{bottom:453.855000px;}
.ya0{bottom:455.475000px;}
.y82{bottom:456.915000px;}
.yef{bottom:465.555000px;}
.y2c{bottom:470.415000px;}
.yd3{bottom:471.135000px;}
.y9f{bottom:472.575000px;}
.y81{bottom:474.195000px;}
.yee{bottom:482.835000px;}
.y61{bottom:484.455000px;}
.yd2{bottom:485.175000px;}
.y2b{bottom:487.695000px;}
.y9e{bottom:489.855000px;}
.y80{bottom:491.295000px;}
.yed{bottom:500.115000px;}
.y2a{bottom:504.975000px;}
.y9d{bottom:507.135000px;}
.y7f{bottom:508.575000px;}
.yec{bottom:517.395000px;}
.y29{bottom:522.075000px;}
.y9c{bottom:524.415000px;}
.y7e{bottom:525.855000px;}
.yeb{bottom:534.495000px;}
.y5d{bottom:536.835000px;}
.y28{bottom:539.355000px;}
.y9b{bottom:541.695000px;}
.y7d{bottom:543.135000px;}
.yea{bottom:548.535000px;}
.y107{bottom:550.335000px;}
.y27{bottom:556.635000px;}
.y9a{bottom:558.975000px;}
.y7c{bottom:560.415000px;}
.yb5{bottom:571.395000px;}
.y26{bottom:573.915000px;}
.y99{bottom:576.075000px;}
.y7b{bottom:577.695000px;}
.y106{bottom:588.855000px;}
.y59{bottom:589.395000px;}
.y25{bottom:591.195000px;}
.y98{bottom:593.355000px;}
.y7a{bottom:594.795000px;}
.y105{bottom:606.165000px;}
.y24{bottom:608.505000px;}
.y97{bottom:610.665000px;}
.y79{bottom:612.105000px;}
.y104{bottom:623.445000px;}
.y23{bottom:625.605000px;}
.y58{bottom:627.945000px;}
.y78{bottom:629.385000px;}
.y103{bottom:640.725000px;}
.y22{bottom:642.885000px;}
.y57{bottom:645.225000px;}
.y77{bottom:646.665000px;}
.y102{bottom:658.005000px;}
.y21{bottom:660.165000px;}
.y56{bottom:662.505000px;}
.y76{bottom:663.945000px;}
.y101{bottom:675.105000px;}
.y20{bottom:677.445000px;}
.y55{bottom:679.605000px;}
.y75{bottom:681.225000px;}
.y100{bottom:692.385000px;}
.y127{bottom:694.725000px;}
.y74{bottom:695.085000px;}
.y1f{bottom:696.885000px;}
.yff{bottom:709.665000px;}
.yb4{bottom:710.205000px;}
.y126{bottom:711.825000px;}
.y54{bottom:714.165000px;}
.y1e{bottom:714.525000px;}
.yfe{bottom:726.945000px;}
.y125{bottom:729.105000px;}
.y53{bottom:731.445000px;}
.y1d{bottom:733.605000px;}
.yfd{bottom:744.225000px;}
.y124{bottom:746.385000px;}
.y52{bottom:748.725000px;}
.y1c{bottom:752.505000px;}
.yfc{bottom:761.325000px;}
.y123{bottom:763.665000px;}
.y51{bottom:765.825000px;}
.y1b{bottom:771.585000px;}
.yfb{bottom:778.605000px;}
.y122{bottom:780.945000px;}
.y50{bottom:783.105000px;}
.y1a{bottom:790.485000px;}
.yfa{bottom:795.885000px;}
.y121{bottom:798.225000px;}
.y4f{bottom:800.385000px;}
.y19{bottom:809.385000px;}
.yf9{bottom:813.165000px;}
.y120{bottom:815.325000px;}
.y4e{bottom:817.665000px;}
.y18{bottom:828.465000px;}
.yf8{bottom:830.445000px;}
.y11f{bottom:832.605000px;}
.y4d{bottom:834.945000px;}
.y17{bottom:847.365000px;}
.yf7{bottom:847.725000px;}
.y11e{bottom:849.885000px;}
.y4c{bottom:852.225000px;}
.ye9{bottom:864.825000px;}
.y16{bottom:866.445000px;}
.y11d{bottom:867.165000px;}
.y4b{bottom:869.325000px;}
.ye8{bottom:882.150000px;}
.y11c{bottom:884.490000px;}
.y15{bottom:885.390000px;}
.y4a{bottom:886.650000px;}
.ye7{bottom:899.430000px;}
.y11b{bottom:901.770000px;}
.y49{bottom:903.930000px;}
.y14{bottom:904.290000px;}
.ye6{bottom:916.710000px;}
.y11a{bottom:918.870000px;}
.y48{bottom:921.210000px;}
.y13{bottom:923.370000px;}
.ye5{bottom:933.990000px;}
.y119{bottom:936.150000px;}
.y47{bottom:938.490000px;}
.y12{bottom:942.270000px;}
.ye4{bottom:951.270000px;}
.y118{bottom:953.430000px;}
.y46{bottom:955.770000px;}
.y11{bottom:961.350000px;}
.ye2{bottom:966.030000px;}
.y117{bottom:968.190000px;}
.y45{bottom:972.870000px;}
.y10{bottom:980.250000px;}
.yf6{bottom:984.030000px;}
.y44{bottom:990.150000px;}
.yf{bottom:999.150000px;}
.ye1{bottom:1001.130000px;}
.yf5{bottom:1002.030000px;}
.y43{bottom:1007.430000px;}
.ye{bottom:1017.690000px;}
.ye0{bottom:1019.130000px;}
.yf4{bottom:1019.850000px;}
.y42{bottom:1024.710000px;}
.yd{bottom:1035.690000px;}
.ydf{bottom:1037.130000px;}
.yf3{bottom:1037.850000px;}
.y41{bottom:1041.990000px;}
.yde{bottom:1055.130000px;}
.yc{bottom:1056.390000px;}
.y40{bottom:1059.090000px;}
.y8{bottom:1076.190000px;}
.y7{bottom:1091.670000px;}
.y6{bottom:1107.510000px;}
.y5{bottom:1125.510000px;}
.y4{bottom:1142.280000px;}
.y3{bottom:1183.320000px;}
.y2{bottom:1199.160000px;}
.y1{bottom:1216.440000px;}
.h19{height:17.100000px;}
.h17{height:17.280000px;}
.h11{height:34.380000px;}
.h18{height:34.416000px;}
.he{height:34.560000px;}
.h9{height:34.596000px;}
.h3{height:37.705078px;}
.h2{height:41.726953px;}
.h5{height:42.164648px;}
.h16{height:43.506914px;}
.h10{height:44.265586px;}
.h7{height:46.251562px;}
.h8{height:46.352109px;}
.h6{height:46.736719px;}
.hf{height:48.496641px;}
.h1b{height:49.255313px;}
.h4{height:50.800781px;}
.hb{height:51.660000px;}
.hd{height:51.696000px;}
.ha{height:51.840000px;}
.hc{height:68.940000px;}
.h1a{height:86.220000px;}
.h15{height:103.500000px;}
.h13{height:120.780000px;}
.h14{height:120.816000px;}
.h12{height:138.096000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:127.080000px;}
.w7{width:127.116000px;}
.w8{width:127.296000px;}
.w4{width:158.940000px;}
.w3{width:158.970000px;}
.w5{width:159.150000px;}
.w9{width:212.250000px;}
.wa{width:212.430000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x18{left:7.740000px;}
.x3f{left:8.820000px;}
.x2a{left:10.620000px;}
.x20{left:12.240000px;}
.x25{left:14.220000px;}
.x30{left:15.300000px;}
.x2d{left:16.380000px;}
.x1c{left:17.820000px;}
.x28{left:19.800000px;}
.x26{left:21.420000px;}
.x2e{left:23.220000px;}
.x21{left:25.200000px;}
.x2f{left:27.030000px;}
.x23{left:28.470000px;}
.x32{left:29.520000px;}
.x24{left:31.320000px;}
.x1a{left:32.580000px;}
.x3d{left:34.020000px;}
.x27{left:35.130000px;}
.x5c{left:36.360000px;}
.x2b{left:38.880000px;}
.x3b{left:40.140000px;}
.x3c{left:41.220000px;}
.x1f{left:42.480000px;}
.x31{left:43.770000px;}
.x5e{left:45.540000px;}
.x45{left:47.160000px;}
.x40{left:49.680000px;}
.x22{left:50.760000px;}
.x29{left:52.425000px;}
.x1b{left:53.640000px;}
.x2c{left:56.550000px;}
.x3e{left:57.780000px;}
.x4b{left:59.760000px;}
.x1d{left:61.590000px;}
.x4d{left:63.900000px;}
.x52{left:79.560000px;}
.x53{left:82.440000px;}
.x57{left:86.760000px;}
.x54{left:88.200000px;}
.x56{left:89.280000px;}
.x55{left:90.720000px;}
.x4e{left:93.060000px;}
.x37{left:100.296000px;}
.x1{left:108.035987px;}
.x2{left:117.395987px;}
.x8{left:125.495987px;}
.x17{left:127.296000px;}
.x64{left:135.035987px;}
.x7{left:138.275987px;}
.x36{left:139.535987px;}
.x4{left:157.169987px;}
.x41{left:169.049987px;}
.x5f{left:174.089987px;}
.x14{left:185.969987px;}
.x33{left:187.589987px;}
.x12{left:201.269987px;}
.x44{left:228.090000px;}
.xf{left:230.789987px;}
.xb{left:243.569987px;}
.x5a{left:255.090000px;}
.x49{left:257.429987px;}
.x38{left:260.130000px;}
.x4f{left:271.289987px;}
.x19{left:287.175000px;}
.x58{left:288.794987px;}
.x13{left:296.174987px;}
.xc{left:306.434987px;}
.x4a{left:313.275000px;}
.x61{left:327.854987px;}
.x42{left:329.834987px;}
.x35{left:338.114987px;}
.xd{left:342.254987px;}
.x10{left:350.534987px;}
.x46{left:355.935000px;}
.x62{left:358.814987px;}
.x16{left:376.274987px;}
.xa{left:377.354987px;}
.x15{left:378.974987px;}
.x11{left:382.394987px;}
.x63{left:387.974987px;}
.x59{left:393.014987px;}
.x6{left:396.434987px;}
.xe{left:406.874987px;}
.x5{left:412.274987px;}
.x39{left:419.835000px;}
.x9{left:446.474987px;}
.x47{left:483.765000px;}
.x5b{left:510.765000px;}
.x3{left:518.504987px;}
.x4c{left:526.425000px;}
.x3a{left:579.705000px;}
.x1e{left:606.705000px;}
.x34{left:609.584987px;}
.x48{left:611.565000px;}
.x43{left:619.844987px;}
.x51{left:636.944987px;}
.x5d{left:638.565000px;}
.x50{left:650.084987px;}
.x60{left:655.889987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls7{letter-spacing:-0.480000pt;}
.ls13{letter-spacing:-0.230933pt;}
.lse{letter-spacing:-0.094933pt;}
.ls3{letter-spacing:-0.047360pt;}
.ls2{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.047360pt;}
.ls17{letter-spacing:0.138667pt;}
.ls6{letter-spacing:0.160000pt;}
.ls10{letter-spacing:0.183467pt;}
.lsa{letter-spacing:0.230933pt;}
.ls5{letter-spacing:0.231040pt;}
.ls12{letter-spacing:0.265600pt;}
.ls4{letter-spacing:0.320000pt;}
.ls18{letter-spacing:4.000000pt;}
.ls16{letter-spacing:10.192640pt;}
.ls15{letter-spacing:10.378667pt;}
.ls1{letter-spacing:13.545600pt;}
.ls0{letter-spacing:13.600000pt;}
.lsd{letter-spacing:28.752640pt;}
.lsc{letter-spacing:31.952640pt;}
.ls14{letter-spacing:37.072640pt;}
.lsb{letter-spacing:49.872640pt;}
.ls8{letter-spacing:57.552640pt;}
.ls11{letter-spacing:58.192640pt;}
.ls9{letter-spacing:67.152640pt;}
.ws5{word-spacing:-53.120000pt;}
.ws1{word-spacing:-14.720000pt;}
.ws6{word-spacing:-13.600000pt;}
.ws7{word-spacing:-13.510933pt;}
.wsa{word-spacing:-13.463467pt;}
.ws9{word-spacing:-13.327360pt;}
.ws4{word-spacing:-13.280000pt;}
.ws2{word-spacing:-13.232640pt;}
.ws8{word-spacing:-13.185067pt;}
.wsb{word-spacing:-13.049067pt;}
.ws0{word-spacing:-12.000000pt;}
.ws3{word-spacing:0.000000pt;}
._5{margin-left:-14.002560pt;}
._6{margin-left:-12.610560pt;}
._3{margin-left:-0.960000pt;}
._0{width:0.986027pt;}
._4{width:1.889707pt;}
._e{width:3.086080pt;}
._b{width:4.000000pt;}
._10{width:4.951680pt;}
._7{width:5.884800pt;}
._c{width:7.171200pt;}
._12{width:8.286720pt;}
._d{width:9.880320pt;}
._f{width:10.889600pt;}
._11{width:12.187733pt;}
._1{width:14.303787pt;}
._2{width:15.618560pt;}
._15{width:16.998400pt;}
._20{width:18.030933pt;}
._16{width:19.016960pt;}
._13{width:20.368213pt;}
._14{width:21.377493pt;}
._1f{width:23.107200pt;}
._22{width:24.435200pt;}
._21{width:25.763200pt;}
._23{width:27.239467pt;}
._25{width:28.229973pt;}
._24{width:31.765760pt;}
._19{width:43.794133pt;}
._1d{width:53.204053pt;}
._1c{width:54.394880pt;}
._17{width:94.364373pt;}
._1a{width:106.133760pt;}
._1e{width:129.582933pt;}
._18{width:159.784960pt;}
._1b{width:167.381120pt;}
._a{width:216.938667pt;}
._9{width:446.138667pt;}
._8{width:667.818667pt;}
.fs1{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs4{font-size:59.008000pt;}
.fs2{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y5c{bottom:2.880000pt;}
.ye3{bottom:10.400000pt;}
.y5a{bottom:10.560000pt;}
.y66{bottom:18.080000pt;}
.y5e{bottom:18.240000pt;}
.y5b{bottom:18.266667pt;}
.ycd{bottom:18.280000pt;}
.y65{bottom:25.760000pt;}
.y5f{bottom:25.920000pt;}
.y69{bottom:25.960000pt;}
.yb{bottom:31.200000pt;}
.y62{bottom:33.440000pt;}
.y113{bottom:33.594667pt;}
.y60{bottom:33.600000pt;}
.ybb{bottom:33.626667pt;}
.y6a{bottom:33.640000pt;}
.y115{bottom:41.274667pt;}
.yc1{bottom:41.280000pt;}
.ybe{bottom:41.306667pt;}
.yc9{bottom:41.320000pt;}
.ya{bottom:45.120000pt;}
.y67{bottom:48.800000pt;}
.y112{bottom:48.954667pt;}
.yc3{bottom:48.960000pt;}
.yb7{bottom:48.986667pt;}
.ycc{bottom:49.000000pt;}
.y114{bottom:56.474667pt;}
.yc0{bottom:56.480000pt;}
.ybd{bottom:56.506667pt;}
.y109{bottom:56.640000pt;}
.yc8{bottom:56.680000pt;}
.y9{bottom:58.880000pt;}
.y116{bottom:64.154667pt;}
.yc2{bottom:64.160000pt;}
.yb6{bottom:64.186667pt;}
.ycb{bottom:64.200000pt;}
.y10a{bottom:64.320000pt;}
.y10c{bottom:64.360000pt;}
.yc6{bottom:71.840000pt;}
.ybc{bottom:71.866667pt;}
.ycf{bottom:71.880000pt;}
.y10f{bottom:72.000000pt;}
.y10d{bottom:72.040000pt;}
.yc5{bottom:79.520000pt;}
.yba{bottom:79.546667pt;}
.yca{bottom:79.560000pt;}
.y110{bottom:79.680000pt;}
.yc4{bottom:94.880000pt;}
.yb9{bottom:94.906667pt;}
.yce{bottom:94.920000pt;}
.y96{bottom:99.392000pt;}
.yf2{bottom:100.192000pt;}
.y111{bottom:103.232000pt;}
.ydd{bottom:108.032000pt;}
.yd1{bottom:109.472000pt;}
.yb8{bottom:110.266667pt;}
.yb3{bottom:113.472000pt;}
.y95{bottom:114.752000pt;}
.y128{bottom:123.232000pt;}
.y73{bottom:123.392000pt;}
.y3f{bottom:124.832000pt;}
.yb2{bottom:128.832000pt;}
.y94{bottom:130.112000pt;}
.y72{bottom:138.746667pt;}
.y3e{bottom:140.186667pt;}
.yb1{bottom:144.186667pt;}
.y93{bottom:145.466667pt;}
.y71{bottom:154.106667pt;}
.y3d{bottom:155.386667pt;}
.yb0{bottom:159.386667pt;}
.y92{bottom:160.826667pt;}
.y70{bottom:169.466667pt;}
.y3c{bottom:170.746667pt;}
.yaf{bottom:174.746667pt;}
.y91{bottom:176.026667pt;}
.y10e{bottom:180.506667pt;}
.y6f{bottom:184.826667pt;}
.y3b{bottom:186.106667pt;}
.yae{bottom:190.106667pt;}
.y90{bottom:191.386667pt;}
.yd0{bottom:199.226667pt;}
.ydc{bottom:200.026667pt;}
.y6e{bottom:200.186667pt;}
.y3a{bottom:201.466667pt;}
.yad{bottom:205.466667pt;}
.y8f{bottom:206.746667pt;}
.y6d{bottom:215.386667pt;}
.y39{bottom:216.826667pt;}
.yac{bottom:220.826667pt;}
.y8e{bottom:222.106667pt;}
.y6c{bottom:230.746667pt;}
.y38{bottom:232.186667pt;}
.yab{bottom:236.186667pt;}
.y8d{bottom:237.466667pt;}
.y6b{bottom:243.866667pt;}
.ydb{bottom:246.106667pt;}
.y37{bottom:247.386667pt;}
.yaa{bottom:251.386667pt;}
.y8c{bottom:252.826667pt;}
.yda{bottom:261.466667pt;}
.y36{bottom:262.746667pt;}
.ya9{bottom:266.746667pt;}
.y8b{bottom:268.026667pt;}
.yd9{bottom:274.586667pt;}
.y68{bottom:275.226667pt;}
.y35{bottom:278.106667pt;}
.ya8{bottom:282.106667pt;}
.y8a{bottom:283.386667pt;}
.y10b{bottom:288.506667pt;}
.yc7{bottom:291.866667pt;}
.y34{bottom:293.466667pt;}
.ya7{bottom:297.466667pt;}
.y89{bottom:298.746667pt;}
.yd8{bottom:305.826667pt;}
.y33{bottom:310.786667pt;}
.ya6{bottom:312.866667pt;}
.y88{bottom:314.146667pt;}
.yd7{bottom:321.826667pt;}
.y64{bottom:321.986667pt;}
.y32{bottom:326.146667pt;}
.ya5{bottom:328.066667pt;}
.y87{bottom:329.506667pt;}
.yd6{bottom:337.826667pt;}
.y31{bottom:341.506667pt;}
.ya4{bottom:343.426667pt;}
.y86{bottom:344.706667pt;}
.y30{bottom:356.866667pt;}
.ya3{bottom:358.786667pt;}
.y85{bottom:360.066667pt;}
.yd5{bottom:369.186667pt;}
.y2f{bottom:372.066667pt;}
.ya2{bottom:374.146667pt;}
.y84{bottom:375.426667pt;}
.yf1{bottom:383.106667pt;}
.y63{bottom:383.906667pt;}
.y2e{bottom:387.426667pt;}
.ya1{bottom:389.506667pt;}
.y83{bottom:390.786667pt;}
.y108{bottom:396.546667pt;}
.yf0{bottom:398.466667pt;}
.ybf{bottom:399.906667pt;}
.y2d{bottom:402.786667pt;}
.yd4{bottom:403.426667pt;}
.ya0{bottom:404.866667pt;}
.y82{bottom:406.146667pt;}
.yef{bottom:413.826667pt;}
.y2c{bottom:418.146667pt;}
.yd3{bottom:418.786667pt;}
.y9f{bottom:420.066667pt;}
.y81{bottom:421.506667pt;}
.yee{bottom:429.186667pt;}
.y61{bottom:430.626667pt;}
.yd2{bottom:431.266667pt;}
.y2b{bottom:433.506667pt;}
.y9e{bottom:435.426667pt;}
.y80{bottom:436.706667pt;}
.yed{bottom:444.546667pt;}
.y2a{bottom:448.866667pt;}
.y9d{bottom:450.786667pt;}
.y7f{bottom:452.066667pt;}
.yec{bottom:459.906667pt;}
.y29{bottom:464.066667pt;}
.y9c{bottom:466.146667pt;}
.y7e{bottom:467.426667pt;}
.yeb{bottom:475.106667pt;}
.y5d{bottom:477.186667pt;}
.y28{bottom:479.426667pt;}
.y9b{bottom:481.506667pt;}
.y7d{bottom:482.786667pt;}
.yea{bottom:487.586667pt;}
.y107{bottom:489.186667pt;}
.y27{bottom:494.786667pt;}
.y9a{bottom:496.866667pt;}
.y7c{bottom:498.146667pt;}
.yb5{bottom:507.906667pt;}
.y26{bottom:510.146667pt;}
.y99{bottom:512.066667pt;}
.y7b{bottom:513.506667pt;}
.y106{bottom:523.426667pt;}
.y59{bottom:523.906667pt;}
.y25{bottom:525.506667pt;}
.y98{bottom:527.426667pt;}
.y7a{bottom:528.706667pt;}
.y105{bottom:538.813333pt;}
.y24{bottom:540.893333pt;}
.y97{bottom:542.813333pt;}
.y79{bottom:544.093333pt;}
.y104{bottom:554.173333pt;}
.y23{bottom:556.093333pt;}
.y58{bottom:558.173333pt;}
.y78{bottom:559.453333pt;}
.y103{bottom:569.533333pt;}
.y22{bottom:571.453333pt;}
.y57{bottom:573.533333pt;}
.y77{bottom:574.813333pt;}
.y102{bottom:584.893333pt;}
.y21{bottom:586.813333pt;}
.y56{bottom:588.893333pt;}
.y76{bottom:590.173333pt;}
.y101{bottom:600.093333pt;}
.y20{bottom:602.173333pt;}
.y55{bottom:604.093333pt;}
.y75{bottom:605.533333pt;}
.y100{bottom:615.453333pt;}
.y127{bottom:617.533333pt;}
.y74{bottom:617.853333pt;}
.y1f{bottom:619.453333pt;}
.yff{bottom:630.813333pt;}
.yb4{bottom:631.293333pt;}
.y126{bottom:632.733333pt;}
.y54{bottom:634.813333pt;}
.y1e{bottom:635.133333pt;}
.yfe{bottom:646.173333pt;}
.y125{bottom:648.093333pt;}
.y53{bottom:650.173333pt;}
.y1d{bottom:652.093333pt;}
.yfd{bottom:661.533333pt;}
.y124{bottom:663.453333pt;}
.y52{bottom:665.533333pt;}
.y1c{bottom:668.893333pt;}
.yfc{bottom:676.733333pt;}
.y123{bottom:678.813333pt;}
.y51{bottom:680.733333pt;}
.y1b{bottom:685.853333pt;}
.yfb{bottom:692.093333pt;}
.y122{bottom:694.173333pt;}
.y50{bottom:696.093333pt;}
.y1a{bottom:702.653333pt;}
.yfa{bottom:707.453333pt;}
.y121{bottom:709.533333pt;}
.y4f{bottom:711.453333pt;}
.y19{bottom:719.453333pt;}
.yf9{bottom:722.813333pt;}
.y120{bottom:724.733333pt;}
.y4e{bottom:726.813333pt;}
.y18{bottom:736.413333pt;}
.yf8{bottom:738.173333pt;}
.y11f{bottom:740.093333pt;}
.y4d{bottom:742.173333pt;}
.y17{bottom:753.213333pt;}
.yf7{bottom:753.533333pt;}
.y11e{bottom:755.453333pt;}
.y4c{bottom:757.533333pt;}
.ye9{bottom:768.733333pt;}
.y16{bottom:770.173333pt;}
.y11d{bottom:770.813333pt;}
.y4b{bottom:772.733333pt;}
.ye8{bottom:784.133333pt;}
.y11c{bottom:786.213333pt;}
.y15{bottom:787.013333pt;}
.y4a{bottom:788.133333pt;}
.ye7{bottom:799.493333pt;}
.y11b{bottom:801.573333pt;}
.y49{bottom:803.493333pt;}
.y14{bottom:803.813333pt;}
.ye6{bottom:814.853333pt;}
.y11a{bottom:816.773333pt;}
.y48{bottom:818.853333pt;}
.y13{bottom:820.773333pt;}
.ye5{bottom:830.213333pt;}
.y119{bottom:832.133333pt;}
.y47{bottom:834.213333pt;}
.y12{bottom:837.573333pt;}
.ye4{bottom:845.573333pt;}
.y118{bottom:847.493333pt;}
.y46{bottom:849.573333pt;}
.y11{bottom:854.533333pt;}
.ye2{bottom:858.693333pt;}
.y117{bottom:860.613333pt;}
.y45{bottom:864.773333pt;}
.y10{bottom:871.333333pt;}
.yf6{bottom:874.693333pt;}
.y44{bottom:880.133333pt;}
.yf{bottom:888.133333pt;}
.ye1{bottom:889.893333pt;}
.yf5{bottom:890.693333pt;}
.y43{bottom:895.493333pt;}
.ye{bottom:904.613333pt;}
.ye0{bottom:905.893333pt;}
.yf4{bottom:906.533333pt;}
.y42{bottom:910.853333pt;}
.yd{bottom:920.613333pt;}
.ydf{bottom:921.893333pt;}
.yf3{bottom:922.533333pt;}
.y41{bottom:926.213333pt;}
.yde{bottom:937.893333pt;}
.yc{bottom:939.013333pt;}
.y40{bottom:941.413333pt;}
.y8{bottom:956.613333pt;}
.y7{bottom:970.373333pt;}
.y6{bottom:984.453333pt;}
.y5{bottom:1000.453333pt;}
.y4{bottom:1015.360000pt;}
.y3{bottom:1051.840000pt;}
.y2{bottom:1065.920000pt;}
.y1{bottom:1081.280000pt;}
.h19{height:15.200000pt;}
.h17{height:15.360000pt;}
.h11{height:30.560000pt;}
.h18{height:30.592000pt;}
.he{height:30.720000pt;}
.h9{height:30.752000pt;}
.h3{height:33.515625pt;}
.h2{height:37.090625pt;}
.h5{height:37.479688pt;}
.h16{height:38.672812pt;}
.h10{height:39.347188pt;}
.h7{height:41.112500pt;}
.h8{height:41.201875pt;}
.h6{height:41.543750pt;}
.hf{height:43.108125pt;}
.h1b{height:43.782500pt;}
.h4{height:45.156250pt;}
.hb{height:45.920000pt;}
.hd{height:45.952000pt;}
.ha{height:46.080000pt;}
.hc{height:61.280000pt;}
.h1a{height:76.640000pt;}
.h15{height:92.000000pt;}
.h13{height:107.360000pt;}
.h14{height:107.392000pt;}
.h12{height:122.752000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:112.960000pt;}
.w7{width:112.992000pt;}
.w8{width:113.152000pt;}
.w4{width:141.280000pt;}
.w3{width:141.306667pt;}
.w5{width:141.466667pt;}
.w9{width:188.666667pt;}
.wa{width:188.826667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x18{left:6.880000pt;}
.x3f{left:7.840000pt;}
.x2a{left:9.440000pt;}
.x20{left:10.880000pt;}
.x25{left:12.640000pt;}
.x30{left:13.600000pt;}
.x2d{left:14.560000pt;}
.x1c{left:15.840000pt;}
.x28{left:17.600000pt;}
.x26{left:19.040000pt;}
.x2e{left:20.640000pt;}
.x21{left:22.400000pt;}
.x2f{left:24.026667pt;}
.x23{left:25.306667pt;}
.x32{left:26.240000pt;}
.x24{left:27.840000pt;}
.x1a{left:28.960000pt;}
.x3d{left:30.240000pt;}
.x27{left:31.226667pt;}
.x5c{left:32.320000pt;}
.x2b{left:34.560000pt;}
.x3b{left:35.680000pt;}
.x3c{left:36.640000pt;}
.x1f{left:37.760000pt;}
.x31{left:38.906667pt;}
.x5e{left:40.480000pt;}
.x45{left:41.920000pt;}
.x40{left:44.160000pt;}
.x22{left:45.120000pt;}
.x29{left:46.600000pt;}
.x1b{left:47.680000pt;}
.x2c{left:50.266667pt;}
.x3e{left:51.360000pt;}
.x4b{left:53.120000pt;}
.x1d{left:54.746667pt;}
.x4d{left:56.800000pt;}
.x52{left:70.720000pt;}
.x53{left:73.280000pt;}
.x57{left:77.120000pt;}
.x54{left:78.400000pt;}
.x56{left:79.360000pt;}
.x55{left:80.640000pt;}
.x4e{left:82.720000pt;}
.x37{left:89.152000pt;}
.x1{left:96.031988pt;}
.x2{left:104.351988pt;}
.x8{left:111.551988pt;}
.x17{left:113.152000pt;}
.x64{left:120.031988pt;}
.x7{left:122.911988pt;}
.x36{left:124.031988pt;}
.x4{left:139.706655pt;}
.x41{left:150.266655pt;}
.x5f{left:154.746655pt;}
.x14{left:165.306655pt;}
.x33{left:166.746655pt;}
.x12{left:178.906655pt;}
.x44{left:202.746667pt;}
.xf{left:205.146655pt;}
.xb{left:216.506655pt;}
.x5a{left:226.746667pt;}
.x49{left:228.826655pt;}
.x38{left:231.226667pt;}
.x4f{left:241.146655pt;}
.x19{left:255.266667pt;}
.x58{left:256.706655pt;}
.x13{left:263.266655pt;}
.xc{left:272.386655pt;}
.x4a{left:278.466667pt;}
.x61{left:291.426655pt;}
.x42{left:293.186655pt;}
.x35{left:300.546655pt;}
.xd{left:304.226655pt;}
.x10{left:311.586655pt;}
.x46{left:316.386667pt;}
.x62{left:318.946655pt;}
.x16{left:334.466655pt;}
.xa{left:335.426655pt;}
.x15{left:336.866655pt;}
.x11{left:339.906655pt;}
.x63{left:344.866655pt;}
.x59{left:349.346655pt;}
.x6{left:352.386655pt;}
.xe{left:361.666655pt;}
.x5{left:366.466655pt;}
.x39{left:373.186667pt;}
.x9{left:396.866655pt;}
.x47{left:430.013333pt;}
.x5b{left:454.013333pt;}
.x3{left:460.893322pt;}
.x4c{left:467.933333pt;}
.x3a{left:515.293333pt;}
.x1e{left:539.293333pt;}
.x34{left:541.853322pt;}
.x48{left:543.613333pt;}
.x43{left:550.973322pt;}
.x51{left:566.173322pt;}
.x5d{left:567.613333pt;}
.x50{left:577.853322pt;}
.x60{left:583.013322pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  