
    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_80c908ace6cd5ac215abe7c8.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.196289;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_7016a1ce486a1ce9a387c129.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.003906;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_300dd62c39783da0cc9fc496.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.050293;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_ba975503f1adca73df4b5deb.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.073242;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_bc1479a457a5f96257ae0d0d.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.073242;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_8e381172977d4736794af7a1.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.050293;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_4735706dce13e4b0999b9ee2.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.901855;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);}
.v2{vertical-align:-27.360000px;}
.v3{vertical-align:-12.240000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls13{letter-spacing:-0.144000px;}
.ls10{letter-spacing:-0.106800px;}
.ls6{letter-spacing:-0.058320px;}
.ls5{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.144000px;}
.ls4{letter-spacing:0.174240px;}
.ls0{letter-spacing:0.360000px;}
.lsc{letter-spacing:0.504000px;}
.ls7{letter-spacing:0.720000px;}
.ls11{letter-spacing:0.900000px;}
.ls8{letter-spacing:1.440000px;}
.ls3{letter-spacing:2.160000px;}
.lsb{letter-spacing:4.320000px;}
.ls2{letter-spacing:5.760000px;}
.lsd{letter-spacing:8.640000px;}
.lse{letter-spacing:11.520000px;}
.lsf{letter-spacing:12.960000px;}
.lsa{letter-spacing:20.160000px;}
.ls9{letter-spacing:27.360000px;}
.ls12{letter-spacing:44.820000px;}
.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;}
}
.ws2{word-spacing:-18.144000px;}
.ws1{word-spacing:-18.000000px;}
.ws7{word-spacing:-17.856000px;}
.ws5{word-spacing:-15.300000px;}
.ws3{word-spacing:-14.940000px;}
.ws6{word-spacing:-14.833200px;}
.ws0{word-spacing:-13.447440px;}
.ws4{word-spacing:0.000000px;}
._1e{margin-left:-4.568640px;}
._5{margin-left:-3.559920px;}
._4{margin-left:-2.400000px;}
._0{margin-left:-1.192320px;}
._1{width:1.015920px;}
._2{width:2.216880px;}
._10{width:3.734160px;}
._c{width:4.800960px;}
._7{width:6.120000px;}
._8{width:7.132080px;}
._11{width:8.208480px;}
._d{width:9.216000px;}
._9{width:10.296000px;}
._a{width:11.664000px;}
._12{width:13.464000px;}
._19{width:14.976000px;}
._17{width:16.920000px;}
._18{width:19.120320px;}
._15{width:20.232000px;}
._b{width:21.384000px;}
._21{width:22.456080px;}
._22{width:23.639760px;}
._1a{width:24.912000px;}
._e{width:26.712000px;}
._f{width:27.936000px;}
._16{width:29.160000px;}
._28{width:31.104000px;}
._29{width:33.408000px;}
._1f{width:35.424000px;}
._20{width:36.576000px;}
._1d{width:38.232000px;}
._14{width:39.528000px;}
._13{width:40.536000px;}
._1b{width:42.264000px;}
._1c{width:43.272000px;}
._2a{width:44.352000px;}
._24{width:48.312000px;}
._25{width:50.124000px;}
._26{width:52.920000px;}
._27{width:54.000000px;}
._23{width:192.666240px;}
._3{width:194.376000px;}
._6{width:1864.536000px;}
.fc4{color:rgb(5,99,193);}
.fc3{color:transparent;}
.fc2{color:rgb(31,78,121);}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:38.880000px;}
.fs3{font-size:48.240000px;}
.fs1{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.y9{bottom:-12.060000px;}
.yb{bottom:-11.700000px;}
.ye{bottom:-10.440000px;}
.y0{bottom:0.000000px;}
.y8{bottom:4.680000px;}
.ya{bottom:5.040000px;}
.yd{bottom:6.300000px;}
.ya7{bottom:12.240000px;}
.yea{bottom:12.270000px;}
.y14{bottom:12.600000px;}
.y44{bottom:12.780000px;}
.ya8{bottom:15.300000px;}
.y6{bottom:18.000000px;}
.y3{bottom:19.800000px;}
.yc{bottom:20.160000px;}
.y7{bottom:21.420000px;}
.yfa{bottom:29.340000px;}
.yac{bottom:29.520000px;}
.yaa{bottom:29.550000px;}
.y5{bottom:37.260000px;}
.y2{bottom:39.060000px;}
.y12{bottom:57.420000px;}
.y11{bottom:73.260000px;}
.y42{bottom:110.160000px;}
.ybe{bottom:112.500000px;}
.yff{bottom:114.120000px;}
.y41{bottom:115.380000px;}
.y73{bottom:115.560000px;}
.y11b{bottom:123.120000px;}
.ya1{bottom:124.560000px;}
.y40{bottom:128.160000px;}
.y134{bottom:130.860000px;}
.y156{bottom:131.760000px;}
.ybd{bottom:133.200000px;}
.yfe{bottom:134.820000px;}
.y72{bottom:136.260000px;}
.y11a{bottom:143.820000px;}
.y133{bottom:151.560000px;}
.y155{bottom:152.460000px;}
.ybc{bottom:153.900000px;}
.ya0{bottom:154.260000px;}
.yfd{bottom:155.520000px;}
.y71{bottom:156.960000px;}
.y119{bottom:164.520000px;}
.ydf{bottom:165.960000px;}
.y132{bottom:172.260000px;}
.y3f{bottom:174.060000px;}
.ybb{bottom:174.600000px;}
.y9f{bottom:174.960000px;}
.yfc{bottom:176.220000px;}
.y70{bottom:177.660000px;}
.y154{bottom:182.160000px;}
.y118{bottom:185.220000px;}
.yde{bottom:186.660000px;}
.y131{bottom:192.960000px;}
.y3e{bottom:194.760000px;}
.yba{bottom:195.300000px;}
.yfb{bottom:196.920000px;}
.y6f{bottom:198.390000px;}
.y153{bottom:202.890000px;}
.y9e{bottom:204.690000px;}
.y117{bottom:205.950000px;}
.ydd{bottom:207.390000px;}
.y130{bottom:213.690000px;}
.y3d{bottom:215.490000px;}
.y6e{bottom:219.090000px;}
.yf9{bottom:223.410000px;}
.y152{bottom:223.590000px;}
.yb9{bottom:225.030000px;}
.y9d{bottom:225.390000px;}
.y116{bottom:226.650000px;}
.ydc{bottom:228.090000px;}
.y12f{bottom:234.390000px;}
.y3c{bottom:236.190000px;}
.y6d{bottom:239.790000px;}
.y115{bottom:247.350000px;}
.ydb{bottom:248.790000px;}
.y151{bottom:253.290000px;}
.yb8{bottom:254.730000px;}
.y9c{bottom:255.090000px;}
.y3b{bottom:256.890000px;}
.y6c{bottom:260.490000px;}
.y114{bottom:268.050000px;}
.yda{bottom:269.490000px;}
.y150{bottom:273.990000px;}
.yb7{bottom:275.430000px;}
.y9b{bottom:275.790000px;}
.y3a{bottom:277.590000px;}
.y6b{bottom:281.190000px;}
.y113{bottom:288.750000px;}
.yd9{bottom:290.190000px;}
.yb6{bottom:296.130000px;}
.y9a{bottom:296.490000px;}
.y39{bottom:298.290000px;}
.y6a{bottom:301.890000px;}
.y14f{bottom:303.690000px;}
.yd8{bottom:310.890000px;}
.y112{bottom:315.210000px;}
.y12e{bottom:317.190000px;}
.y38{bottom:318.990000px;}
.y69{bottom:322.590000px;}
.y14e{bottom:324.390000px;}
.yb5{bottom:325.830000px;}
.y99{bottom:326.190000px;}
.yf8{bottom:329.070000px;}
.yd7{bottom:331.590000px;}
.y12d{bottom:337.890000px;}
.y37{bottom:339.690000px;}
.y14d{bottom:345.090000px;}
.yb4{bottom:346.530000px;}
.y98{bottom:346.890000px;}
.y68{bottom:352.290000px;}
.y12c{bottom:358.590000px;}
.y36{bottom:360.390000px;}
.y97{bottom:367.590000px;}
.yb3{bottom:372.990000px;}
.y14c{bottom:374.790000px;}
.yf7{bottom:378.030000px;}
.y12b{bottom:379.290000px;}
.y35{bottom:381.090000px;}
.y67{bottom:381.990000px;}
.y96{bottom:388.290000px;}
.y14b{bottom:395.490000px;}
.yf6{bottom:398.730000px;}
.y12a{bottom:399.990000px;}
.y34{bottom:401.790000px;}
.yd6{bottom:402.690000px;}
.yb2{bottom:408.270000px;}
.y95{bottom:408.990000px;}
.y66{bottom:411.690000px;}
.y111{bottom:420.870000px;}
.y33{bottom:422.490000px;}
.y14a{bottom:425.190000px;}
.yf5{bottom:428.430000px;}
.y94{bottom:429.690000px;}
.yd5{bottom:432.390000px;}
.y65{bottom:441.435000px;}
.y32{bottom:443.235000px;}
.yb1{bottom:444.315000px;}
.y149{bottom:445.935000px;}
.y129{bottom:450.435000px;}
.yd4{bottom:453.135000px;}
.yf4{bottom:458.175000px;}
.y93{bottom:459.435000px;}
.y64{bottom:462.135000px;}
.y31{bottom:463.935000px;}
.y110{bottom:469.875000px;}
.y128{bottom:471.135000px;}
.yd3{bottom:473.835000px;}
.y148{bottom:475.635000px;}
.yf3{bottom:478.875000px;}
.y92{bottom:480.135000px;}
.y63{bottom:482.835000px;}
.y30{bottom:484.635000px;}
.y10f{bottom:490.575000px;}
.y127{bottom:491.835000px;}
.yb0{bottom:493.275000px;}
.yd2{bottom:494.535000px;}
.y147{bottom:496.335000px;}
.yf2{bottom:499.575000px;}
.y91{bottom:500.835000px;}
.y62{bottom:503.535000px;}
.y2f{bottom:505.335000px;}
.y126{bottom:512.535000px;}
.yd1{bottom:515.235000px;}
.y146{bottom:517.035000px;}
.yf1{bottom:520.275000px;}
.y90{bottom:521.535000px;}
.yaf{bottom:522.975000px;}
.y61{bottom:524.235000px;}
.y2e{bottom:526.035000px;}
.y125{bottom:533.235000px;}
.yd0{bottom:535.935000px;}
.yf0{bottom:540.975000px;}
.y8f{bottom:542.235000px;}
.y60{bottom:544.935000px;}
.y2d{bottom:546.735000px;}
.y10e{bottom:549.975000px;}
.yae{bottom:552.675000px;}
.y124{bottom:553.935000px;}
.ycf{bottom:556.635000px;}
.yef{bottom:561.675000px;}
.y8e{bottom:562.935000px;}
.y5f{bottom:565.635000px;}
.y2c{bottom:567.435000px;}
.y10d{bottom:570.675000px;}
.yad{bottom:573.375000px;}
.y123{bottom:574.635000px;}
.y145{bottom:576.435000px;}
.yce{bottom:577.335000px;}
.yee{bottom:582.375000px;}
.y8d{bottom:583.635000px;}
.y5e{bottom:586.335000px;}
.y2b{bottom:588.135000px;}
.y122{bottom:595.335000px;}
.y144{bottom:597.135000px;}
.yab{bottom:599.835000px;}
.y10c{bottom:600.375000px;}
.yed{bottom:603.075000px;}
.y8c{bottom:604.335000px;}
.y5d{bottom:607.035000px;}
.y2a{bottom:608.835000px;}
.y121{bottom:616.035000px;}
.y43{bottom:617.475000px;}
.y10b{bottom:621.075000px;}
.yec{bottom:623.775000px;}
.y8b{bottom:625.035000px;}
.y143{bottom:626.835000px;}
.y5c{bottom:627.735000px;}
.y29{bottom:629.535000px;}
.y13{bottom:636.195000px;}
.ycd{bottom:636.735000px;}
.y10a{bottom:641.775000px;}
.yeb{bottom:644.475000px;}
.y8a{bottom:645.735000px;}
.y142{bottom:647.535000px;}
.y5b{bottom:648.435000px;}
.y28{bottom:650.235000px;}
.ya9{bottom:652.395000px;}
.ycc{bottom:657.435000px;}
.y109{bottom:662.475000px;}
.y89{bottom:666.435000px;}
.y5a{bottom:669.135000px;}
.y27{bottom:670.935000px;}
.y141{bottom:677.265000px;}
.ycb{bottom:678.165000px;}
.y108{bottom:683.205000px;}
.y88{bottom:687.165000px;}
.y59{bottom:689.865000px;}
.y26{bottom:691.665000px;}
.y140{bottom:697.965000px;}
.yca{bottom:698.865000px;}
.y107{bottom:703.905000px;}
.ya6{bottom:705.705000px;}
.y87{bottom:707.865000px;}
.y58{bottom:710.565000px;}
.y25{bottom:712.365000px;}
.y13f{bottom:718.665000px;}
.yc9{bottom:719.565000px;}
.ye9{bottom:723.525000px;}
.y106{bottom:724.605000px;}
.y86{bottom:728.565000px;}
.y57{bottom:731.265000px;}
.y24{bottom:733.065000px;}
.yc8{bottom:740.265000px;}
.y105{bottom:745.305000px;}
.y13e{bottom:748.365000px;}
.y85{bottom:749.265000px;}
.y56{bottom:751.965000px;}
.ya5{bottom:754.665000px;}
.yc7{bottom:760.965000px;}
.y23{bottom:762.765000px;}
.y104{bottom:766.005000px;}
.y13d{bottom:769.065000px;}
.y84{bottom:769.965000px;}
.y55{bottom:772.665000px;}
.ye8{bottom:776.805000px;}
.yc6{bottom:781.665000px;}
.ya4{bottom:784.365000px;}
.y22{bottom:792.465000px;}
.y54{bottom:793.365000px;}
.y13c{bottom:798.765000px;}
.y83{bottom:799.665000px;}
.yc5{bottom:802.365000px;}
.y53{bottom:814.065000px;}
.y82{bottom:820.365000px;}
.yc4{bottom:823.065000px;}
.ye7{bottom:825.765000px;}
.y13b{bottom:828.465000px;}
.y21{bottom:829.005000px;}
.y52{bottom:834.765000px;}
.y81{bottom:841.065000px;}
.yc3{bottom:843.765000px;}
.y103{bottom:845.025000px;}
.y13a{bottom:849.165000px;}
.y51{bottom:855.465000px;}
.y20{bottom:858.705000px;}
.y80{bottom:861.765000px;}
.yc2{bottom:864.465000px;}
.y50{bottom:876.165000px;}
.y139{bottom:878.865000px;}
.y1f{bottom:881.565000px;}
.y7f{bottom:882.465000px;}
.ye6{bottom:885.165000px;}
.yc1{bottom:894.165000px;}
.y4f{bottom:896.865000px;}
.y102{bottom:898.305000px;}
.y138{bottom:899.565000px;}
.y7e{bottom:903.165000px;}
.ye5{bottom:905.865000px;}
.y1e{bottom:911.265000px;}
.y120{bottom:914.910000px;}
.y4e{bottom:917.610000px;}
.y7d{bottom:923.910000px;}
.y137{bottom:929.310000px;}
.ye4{bottom:935.610000px;}
.y4d{bottom:938.310000px;}
.y1d{bottom:941.010000px;}
.y7c{bottom:944.610000px;}
.y101{bottom:947.310000px;}
.y11f{bottom:956.310000px;}
.y4c{bottom:959.010000px;}
.y1c{bottom:961.710000px;}
.y7b{bottom:965.310000px;}
.y100{bottom:977.010000px;}
.y4b{bottom:979.710000px;}
.y7a{bottom:986.010000px;}
.y136{bottom:988.710000px;}
.y1a{bottom:991.410000px;}
.ye3{bottom:995.010000px;}
.y1b{bottom:997.350000px;}
.y11e{bottom:997.710000px;}
.y4a{bottom:1000.410000px;}
.y79{bottom:1006.710000px;}
.y135{bottom:1009.410000px;}
.y19{bottom:1012.110000px;}
.ye2{bottom:1015.710000px;}
.y11d{bottom:1018.410000px;}
.y49{bottom:1021.110000px;}
.y78{bottom:1027.410000px;}
.ya3{bottom:1030.110000px;}
.ye1{bottom:1036.410000px;}
.y11c{bottom:1039.110000px;}
.y18{bottom:1041.810000px;}
.y77{bottom:1048.110000px;}
.y48{bottom:1050.810000px;}
.ye0{bottom:1057.110000px;}
.ya2{bottom:1059.810000px;}
.y76{bottom:1068.810000px;}
.y17{bottom:1071.510000px;}
.yc0{bottom:1077.810000px;}
.y47{bottom:1080.510000px;}
.y75{bottom:1089.510000px;}
.ybf{bottom:1098.510000px;}
.y16{bottom:1101.210000px;}
.y46{bottom:1110.210000px;}
.y74{bottom:1119.210000px;}
.y15{bottom:1130.910000px;}
.y45{bottom:1139.910000px;}
.y10{bottom:1193.220000px;}
.y1{bottom:1206.180000px;}
.y4{bottom:1207.980000px;}
.yf{bottom:1208.880000px;}
.h6{height:18.000000px;}
.h8{height:18.360000px;}
.h9{height:19.620000px;}
.hb{height:28.080000px;}
.h14{height:28.260000px;}
.h15{height:35.280000px;}
.h19{height:35.316000px;}
.h12{height:38.671172px;}
.h11{height:40.254961px;}
.hf{height:41.362031px;}
.ha{height:49.868086px;}
.h16{height:51.239531px;}
.h5{height:52.020000px;}
.h1a{height:52.380000px;}
.h18{height:52.560000px;}
.h17{height:52.596000px;}
.h2{height:53.820000px;}
.hc{height:55.275469px;}
.h13{height:59.439023px;}
.hd{height:60.082031px;}
.h7{height:61.189805px;}
.he{height:61.734375px;}
.h10{height:65.122031px;}
.h4{height:65.884219px;}
.h3{height:67.824844px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w19{width:63.720000px;}
.w1d{width:70.200000px;}
.w21{width:70.920000px;}
.w25{width:70.956000px;}
.w1e{width:72.720000px;}
.w24{width:73.440000px;}
.w18{width:74.340000px;}
.w17{width:74.376000px;}
.w15{width:74.520000px;}
.w23{width:74.880000px;}
.w22{width:74.916000px;}
.w3{width:75.060000px;}
.w1b{width:78.660000px;}
.w1f{width:78.840000px;}
.w1c{width:79.956000px;}
.w20{width:80.136000px;}
.w1a{width:81.540000px;}
.w8{width:84.990000px;}
.w16{width:84.996000px;}
.w14{width:85.140000px;}
.wd{width:132.300000px;}
.w12{width:133.020000px;}
.we{width:134.676000px;}
.w13{width:135.216000px;}
.w11{width:135.756000px;}
.wb{width:137.016000px;}
.w10{width:137.556000px;}
.wc{width:137.916000px;}
.wa{width:138.600000px;}
.wf{width:138.960000px;}
.w6{width:170.100000px;}
.w5{width:175.890000px;}
.w4{width:184.530000px;}
.w2{width:383.115000px;}
.w9{width:892.979973px;}
.w7{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:1.440000px;}
.x19{left:8.100000px;}
.xb{left:10.800000px;}
.x1e{left:13.905000px;}
.x5{left:21.960000px;}
.x6{left:61.380000px;}
.x9{left:106.235987px;}
.xc{left:108.755987px;}
.x18{left:111.095987px;}
.x11{left:113.075987px;}
.xd{left:138.635987px;}
.x2{left:148.005000px;}
.x16{left:161.489987px;}
.x1{left:165.270000px;}
.x15{left:181.829987px;}
.x28{left:187.770000px;}
.x20{left:191.370000px;}
.x1a{left:244.830000px;}
.x21{left:265.890000px;}
.x14{left:286.994987px;}
.x17{left:322.274987px;}
.x29{left:346.395000px;}
.x22{left:350.895000px;}
.xe{left:376.094987px;}
.x7{left:378.075000px;}
.x1b{left:381.855000px;}
.x12{left:404.354987px;}
.x2a{left:416.595000px;}
.x2f{left:417.675000px;}
.x23{left:425.415000px;}
.x13{left:446.474987px;}
.x2b{left:490.965000px;}
.x30{left:492.585000px;}
.x24{left:499.785000px;}
.xf{left:510.584973px;}
.x10{left:516.704987px;}
.x1f{left:518.505000px;}
.x1c{left:519.765000px;}
.x2c{left:565.305000px;}
.x31{left:567.465000px;}
.x25{left:574.125000px;}
.x2d{left:638.025000px;}
.x32{left:640.905000px;}
.x26{left:648.645000px;}
.x1d{left:652.065000px;}
.x8{left:662.730000px;}
.x2e{left:712.410000px;}
.x27{left:723.030000px;}
.x4{left:765.510000px;}
.xa{left:807.990000px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v3{vertical-align:-10.880000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls13{letter-spacing:-0.128000pt;}
.ls10{letter-spacing:-0.094933pt;}
.ls6{letter-spacing:-0.051840pt;}
.ls5{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.128000pt;}
.ls4{letter-spacing:0.154880pt;}
.ls0{letter-spacing:0.320000pt;}
.lsc{letter-spacing:0.448000pt;}
.ls7{letter-spacing:0.640000pt;}
.ls11{letter-spacing:0.800000pt;}
.ls8{letter-spacing:1.280000pt;}
.ls3{letter-spacing:1.920000pt;}
.lsb{letter-spacing:3.840000pt;}
.ls2{letter-spacing:5.120000pt;}
.lsd{letter-spacing:7.680000pt;}
.lse{letter-spacing:10.240000pt;}
.lsf{letter-spacing:11.520000pt;}
.lsa{letter-spacing:17.920000pt;}
.ls9{letter-spacing:24.320000pt;}
.ls12{letter-spacing:39.840000pt;}
.ws2{word-spacing:-16.128000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws7{word-spacing:-15.872000pt;}
.ws5{word-spacing:-13.600000pt;}
.ws3{word-spacing:-13.280000pt;}
.ws6{word-spacing:-13.185067pt;}
.ws0{word-spacing:-11.953280pt;}
.ws4{word-spacing:0.000000pt;}
._1e{margin-left:-4.061013pt;}
._5{margin-left:-3.164373pt;}
._4{margin-left:-2.133333pt;}
._0{margin-left:-1.059840pt;}
._1{width:0.903040pt;}
._2{width:1.970560pt;}
._10{width:3.319253pt;}
._c{width:4.267520pt;}
._7{width:5.440000pt;}
._8{width:6.339627pt;}
._11{width:7.296427pt;}
._d{width:8.192000pt;}
._9{width:9.152000pt;}
._a{width:10.368000pt;}
._12{width:11.968000pt;}
._19{width:13.312000pt;}
._17{width:15.040000pt;}
._18{width:16.995840pt;}
._15{width:17.984000pt;}
._b{width:19.008000pt;}
._21{width:19.960960pt;}
._22{width:21.013120pt;}
._1a{width:22.144000pt;}
._e{width:23.744000pt;}
._f{width:24.832000pt;}
._16{width:25.920000pt;}
._28{width:27.648000pt;}
._29{width:29.696000pt;}
._1f{width:31.488000pt;}
._20{width:32.512000pt;}
._1d{width:33.984000pt;}
._14{width:35.136000pt;}
._13{width:36.032000pt;}
._1b{width:37.568000pt;}
._1c{width:38.464000pt;}
._2a{width:39.424000pt;}
._24{width:42.944000pt;}
._25{width:44.554667pt;}
._26{width:47.040000pt;}
._27{width:48.000000pt;}
._23{width:171.258880pt;}
._3{width:172.778667pt;}
._6{width:1657.365333pt;}
.fs4{font-size:34.560000pt;}
.fs3{font-size:42.880000pt;}
.fs1{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.y9{bottom:-10.720000pt;}
.yb{bottom:-10.400000pt;}
.ye{bottom:-9.280000pt;}
.y0{bottom:0.000000pt;}
.y8{bottom:4.160000pt;}
.ya{bottom:4.480000pt;}
.yd{bottom:5.600000pt;}
.ya7{bottom:10.880000pt;}
.yea{bottom:10.906667pt;}
.y14{bottom:11.200000pt;}
.y44{bottom:11.360000pt;}
.ya8{bottom:13.600000pt;}
.y6{bottom:16.000000pt;}
.y3{bottom:17.600000pt;}
.yc{bottom:17.920000pt;}
.y7{bottom:19.040000pt;}
.yfa{bottom:26.080000pt;}
.yac{bottom:26.240000pt;}
.yaa{bottom:26.266667pt;}
.y5{bottom:33.120000pt;}
.y2{bottom:34.720000pt;}
.y12{bottom:51.040000pt;}
.y11{bottom:65.120000pt;}
.y42{bottom:97.920000pt;}
.ybe{bottom:100.000000pt;}
.yff{bottom:101.440000pt;}
.y41{bottom:102.560000pt;}
.y73{bottom:102.720000pt;}
.y11b{bottom:109.440000pt;}
.ya1{bottom:110.720000pt;}
.y40{bottom:113.920000pt;}
.y134{bottom:116.320000pt;}
.y156{bottom:117.120000pt;}
.ybd{bottom:118.400000pt;}
.yfe{bottom:119.840000pt;}
.y72{bottom:121.120000pt;}
.y11a{bottom:127.840000pt;}
.y133{bottom:134.720000pt;}
.y155{bottom:135.520000pt;}
.ybc{bottom:136.800000pt;}
.ya0{bottom:137.120000pt;}
.yfd{bottom:138.240000pt;}
.y71{bottom:139.520000pt;}
.y119{bottom:146.240000pt;}
.ydf{bottom:147.520000pt;}
.y132{bottom:153.120000pt;}
.y3f{bottom:154.720000pt;}
.ybb{bottom:155.200000pt;}
.y9f{bottom:155.520000pt;}
.yfc{bottom:156.640000pt;}
.y70{bottom:157.920000pt;}
.y154{bottom:161.920000pt;}
.y118{bottom:164.640000pt;}
.yde{bottom:165.920000pt;}
.y131{bottom:171.520000pt;}
.y3e{bottom:173.120000pt;}
.yba{bottom:173.600000pt;}
.yfb{bottom:175.040000pt;}
.y6f{bottom:176.346667pt;}
.y153{bottom:180.346667pt;}
.y9e{bottom:181.946667pt;}
.y117{bottom:183.066667pt;}
.ydd{bottom:184.346667pt;}
.y130{bottom:189.946667pt;}
.y3d{bottom:191.546667pt;}
.y6e{bottom:194.746667pt;}
.yf9{bottom:198.586667pt;}
.y152{bottom:198.746667pt;}
.yb9{bottom:200.026667pt;}
.y9d{bottom:200.346667pt;}
.y116{bottom:201.466667pt;}
.ydc{bottom:202.746667pt;}
.y12f{bottom:208.346667pt;}
.y3c{bottom:209.946667pt;}
.y6d{bottom:213.146667pt;}
.y115{bottom:219.866667pt;}
.ydb{bottom:221.146667pt;}
.y151{bottom:225.146667pt;}
.yb8{bottom:226.426667pt;}
.y9c{bottom:226.746667pt;}
.y3b{bottom:228.346667pt;}
.y6c{bottom:231.546667pt;}
.y114{bottom:238.266667pt;}
.yda{bottom:239.546667pt;}
.y150{bottom:243.546667pt;}
.yb7{bottom:244.826667pt;}
.y9b{bottom:245.146667pt;}
.y3a{bottom:246.746667pt;}
.y6b{bottom:249.946667pt;}
.y113{bottom:256.666667pt;}
.yd9{bottom:257.946667pt;}
.yb6{bottom:263.226667pt;}
.y9a{bottom:263.546667pt;}
.y39{bottom:265.146667pt;}
.y6a{bottom:268.346667pt;}
.y14f{bottom:269.946667pt;}
.yd8{bottom:276.346667pt;}
.y112{bottom:280.186667pt;}
.y12e{bottom:281.946667pt;}
.y38{bottom:283.546667pt;}
.y69{bottom:286.746667pt;}
.y14e{bottom:288.346667pt;}
.yb5{bottom:289.626667pt;}
.y99{bottom:289.946667pt;}
.yf8{bottom:292.506667pt;}
.yd7{bottom:294.746667pt;}
.y12d{bottom:300.346667pt;}
.y37{bottom:301.946667pt;}
.y14d{bottom:306.746667pt;}
.yb4{bottom:308.026667pt;}
.y98{bottom:308.346667pt;}
.y68{bottom:313.146667pt;}
.y12c{bottom:318.746667pt;}
.y36{bottom:320.346667pt;}
.y97{bottom:326.746667pt;}
.yb3{bottom:331.546667pt;}
.y14c{bottom:333.146667pt;}
.yf7{bottom:336.026667pt;}
.y12b{bottom:337.146667pt;}
.y35{bottom:338.746667pt;}
.y67{bottom:339.546667pt;}
.y96{bottom:345.146667pt;}
.y14b{bottom:351.546667pt;}
.yf6{bottom:354.426667pt;}
.y12a{bottom:355.546667pt;}
.y34{bottom:357.146667pt;}
.yd6{bottom:357.946667pt;}
.yb2{bottom:362.906667pt;}
.y95{bottom:363.546667pt;}
.y66{bottom:365.946667pt;}
.y111{bottom:374.106667pt;}
.y33{bottom:375.546667pt;}
.y14a{bottom:377.946667pt;}
.yf5{bottom:380.826667pt;}
.y94{bottom:381.946667pt;}
.yd5{bottom:384.346667pt;}
.y65{bottom:392.386667pt;}
.y32{bottom:393.986667pt;}
.yb1{bottom:394.946667pt;}
.y149{bottom:396.386667pt;}
.y129{bottom:400.386667pt;}
.yd4{bottom:402.786667pt;}
.yf4{bottom:407.266667pt;}
.y93{bottom:408.386667pt;}
.y64{bottom:410.786667pt;}
.y31{bottom:412.386667pt;}
.y110{bottom:417.666667pt;}
.y128{bottom:418.786667pt;}
.yd3{bottom:421.186667pt;}
.y148{bottom:422.786667pt;}
.yf3{bottom:425.666667pt;}
.y92{bottom:426.786667pt;}
.y63{bottom:429.186667pt;}
.y30{bottom:430.786667pt;}
.y10f{bottom:436.066667pt;}
.y127{bottom:437.186667pt;}
.yb0{bottom:438.466667pt;}
.yd2{bottom:439.586667pt;}
.y147{bottom:441.186667pt;}
.yf2{bottom:444.066667pt;}
.y91{bottom:445.186667pt;}
.y62{bottom:447.586667pt;}
.y2f{bottom:449.186667pt;}
.y126{bottom:455.586667pt;}
.yd1{bottom:457.986667pt;}
.y146{bottom:459.586667pt;}
.yf1{bottom:462.466667pt;}
.y90{bottom:463.586667pt;}
.yaf{bottom:464.866667pt;}
.y61{bottom:465.986667pt;}
.y2e{bottom:467.586667pt;}
.y125{bottom:473.986667pt;}
.yd0{bottom:476.386667pt;}
.yf0{bottom:480.866667pt;}
.y8f{bottom:481.986667pt;}
.y60{bottom:484.386667pt;}
.y2d{bottom:485.986667pt;}
.y10e{bottom:488.866667pt;}
.yae{bottom:491.266667pt;}
.y124{bottom:492.386667pt;}
.ycf{bottom:494.786667pt;}
.yef{bottom:499.266667pt;}
.y8e{bottom:500.386667pt;}
.y5f{bottom:502.786667pt;}
.y2c{bottom:504.386667pt;}
.y10d{bottom:507.266667pt;}
.yad{bottom:509.666667pt;}
.y123{bottom:510.786667pt;}
.y145{bottom:512.386667pt;}
.yce{bottom:513.186667pt;}
.yee{bottom:517.666667pt;}
.y8d{bottom:518.786667pt;}
.y5e{bottom:521.186667pt;}
.y2b{bottom:522.786667pt;}
.y122{bottom:529.186667pt;}
.y144{bottom:530.786667pt;}
.yab{bottom:533.186667pt;}
.y10c{bottom:533.666667pt;}
.yed{bottom:536.066667pt;}
.y8c{bottom:537.186667pt;}
.y5d{bottom:539.586667pt;}
.y2a{bottom:541.186667pt;}
.y121{bottom:547.586667pt;}
.y43{bottom:548.866667pt;}
.y10b{bottom:552.066667pt;}
.yec{bottom:554.466667pt;}
.y8b{bottom:555.586667pt;}
.y143{bottom:557.186667pt;}
.y5c{bottom:557.986667pt;}
.y29{bottom:559.586667pt;}
.y13{bottom:565.506667pt;}
.ycd{bottom:565.986667pt;}
.y10a{bottom:570.466667pt;}
.yeb{bottom:572.866667pt;}
.y8a{bottom:573.986667pt;}
.y142{bottom:575.586667pt;}
.y5b{bottom:576.386667pt;}
.y28{bottom:577.986667pt;}
.ya9{bottom:579.906667pt;}
.ycc{bottom:584.386667pt;}
.y109{bottom:588.866667pt;}
.y89{bottom:592.386667pt;}
.y5a{bottom:594.786667pt;}
.y27{bottom:596.386667pt;}
.y141{bottom:602.013333pt;}
.ycb{bottom:602.813333pt;}
.y108{bottom:607.293333pt;}
.y88{bottom:610.813333pt;}
.y59{bottom:613.213333pt;}
.y26{bottom:614.813333pt;}
.y140{bottom:620.413333pt;}
.yca{bottom:621.213333pt;}
.y107{bottom:625.693333pt;}
.ya6{bottom:627.293333pt;}
.y87{bottom:629.213333pt;}
.y58{bottom:631.613333pt;}
.y25{bottom:633.213333pt;}
.y13f{bottom:638.813333pt;}
.yc9{bottom:639.613333pt;}
.ye9{bottom:643.133333pt;}
.y106{bottom:644.093333pt;}
.y86{bottom:647.613333pt;}
.y57{bottom:650.013333pt;}
.y24{bottom:651.613333pt;}
.yc8{bottom:658.013333pt;}
.y105{bottom:662.493333pt;}
.y13e{bottom:665.213333pt;}
.y85{bottom:666.013333pt;}
.y56{bottom:668.413333pt;}
.ya5{bottom:670.813333pt;}
.yc7{bottom:676.413333pt;}
.y23{bottom:678.013333pt;}
.y104{bottom:680.893333pt;}
.y13d{bottom:683.613333pt;}
.y84{bottom:684.413333pt;}
.y55{bottom:686.813333pt;}
.ye8{bottom:690.493333pt;}
.yc6{bottom:694.813333pt;}
.ya4{bottom:697.213333pt;}
.y22{bottom:704.413333pt;}
.y54{bottom:705.213333pt;}
.y13c{bottom:710.013333pt;}
.y83{bottom:710.813333pt;}
.yc5{bottom:713.213333pt;}
.y53{bottom:723.613333pt;}
.y82{bottom:729.213333pt;}
.yc4{bottom:731.613333pt;}
.ye7{bottom:734.013333pt;}
.y13b{bottom:736.413333pt;}
.y21{bottom:736.893333pt;}
.y52{bottom:742.013333pt;}
.y81{bottom:747.613333pt;}
.yc3{bottom:750.013333pt;}
.y103{bottom:751.133333pt;}
.y13a{bottom:754.813333pt;}
.y51{bottom:760.413333pt;}
.y20{bottom:763.293333pt;}
.y80{bottom:766.013333pt;}
.yc2{bottom:768.413333pt;}
.y50{bottom:778.813333pt;}
.y139{bottom:781.213333pt;}
.y1f{bottom:783.613333pt;}
.y7f{bottom:784.413333pt;}
.ye6{bottom:786.813333pt;}
.yc1{bottom:794.813333pt;}
.y4f{bottom:797.213333pt;}
.y102{bottom:798.493333pt;}
.y138{bottom:799.613333pt;}
.y7e{bottom:802.813333pt;}
.ye5{bottom:805.213333pt;}
.y1e{bottom:810.013333pt;}
.y120{bottom:813.253333pt;}
.y4e{bottom:815.653333pt;}
.y7d{bottom:821.253333pt;}
.y137{bottom:826.053333pt;}
.ye4{bottom:831.653333pt;}
.y4d{bottom:834.053333pt;}
.y1d{bottom:836.453333pt;}
.y7c{bottom:839.653333pt;}
.y101{bottom:842.053333pt;}
.y11f{bottom:850.053333pt;}
.y4c{bottom:852.453333pt;}
.y1c{bottom:854.853333pt;}
.y7b{bottom:858.053333pt;}
.y100{bottom:868.453333pt;}
.y4b{bottom:870.853333pt;}
.y7a{bottom:876.453333pt;}
.y136{bottom:878.853333pt;}
.y1a{bottom:881.253333pt;}
.ye3{bottom:884.453333pt;}
.y1b{bottom:886.533333pt;}
.y11e{bottom:886.853333pt;}
.y4a{bottom:889.253333pt;}
.y79{bottom:894.853333pt;}
.y135{bottom:897.253333pt;}
.y19{bottom:899.653333pt;}
.ye2{bottom:902.853333pt;}
.y11d{bottom:905.253333pt;}
.y49{bottom:907.653333pt;}
.y78{bottom:913.253333pt;}
.ya3{bottom:915.653333pt;}
.ye1{bottom:921.253333pt;}
.y11c{bottom:923.653333pt;}
.y18{bottom:926.053333pt;}
.y77{bottom:931.653333pt;}
.y48{bottom:934.053333pt;}
.ye0{bottom:939.653333pt;}
.ya2{bottom:942.053333pt;}
.y76{bottom:950.053333pt;}
.y17{bottom:952.453333pt;}
.yc0{bottom:958.053333pt;}
.y47{bottom:960.453333pt;}
.y75{bottom:968.453333pt;}
.ybf{bottom:976.453333pt;}
.y16{bottom:978.853333pt;}
.y46{bottom:986.853333pt;}
.y74{bottom:994.853333pt;}
.y15{bottom:1005.253333pt;}
.y45{bottom:1013.253333pt;}
.y10{bottom:1060.640000pt;}
.y1{bottom:1072.160000pt;}
.y4{bottom:1073.760000pt;}
.yf{bottom:1074.560000pt;}
.h6{height:16.000000pt;}
.h8{height:16.320000pt;}
.h9{height:17.440000pt;}
.hb{height:24.960000pt;}
.h14{height:25.120000pt;}
.h15{height:31.360000pt;}
.h19{height:31.392000pt;}
.h12{height:34.374375pt;}
.h11{height:35.782187pt;}
.hf{height:36.766250pt;}
.ha{height:44.327188pt;}
.h16{height:45.546250pt;}
.h5{height:46.240000pt;}
.h1a{height:46.560000pt;}
.h18{height:46.720000pt;}
.h17{height:46.752000pt;}
.h2{height:47.840000pt;}
.hc{height:49.133750pt;}
.h13{height:52.834688pt;}
.hd{height:53.406250pt;}
.h7{height:54.390938pt;}
.he{height:54.875000pt;}
.h10{height:57.886250pt;}
.h4{height:58.563750pt;}
.h3{height:60.288750pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w19{width:56.640000pt;}
.w1d{width:62.400000pt;}
.w21{width:63.040000pt;}
.w25{width:63.072000pt;}
.w1e{width:64.640000pt;}
.w24{width:65.280000pt;}
.w18{width:66.080000pt;}
.w17{width:66.112000pt;}
.w15{width:66.240000pt;}
.w23{width:66.560000pt;}
.w22{width:66.592000pt;}
.w3{width:66.720000pt;}
.w1b{width:69.920000pt;}
.w1f{width:70.080000pt;}
.w1c{width:71.072000pt;}
.w20{width:71.232000pt;}
.w1a{width:72.480000pt;}
.w8{width:75.546667pt;}
.w16{width:75.552000pt;}
.w14{width:75.680000pt;}
.wd{width:117.600000pt;}
.w12{width:118.240000pt;}
.we{width:119.712000pt;}
.w13{width:120.192000pt;}
.w11{width:120.672000pt;}
.wb{width:121.792000pt;}
.w10{width:122.272000pt;}
.wc{width:122.592000pt;}
.wa{width:123.200000pt;}
.wf{width:123.520000pt;}
.w6{width:151.200000pt;}
.w5{width:156.346667pt;}
.w4{width:164.026667pt;}
.w2{width:340.546667pt;}
.w9{width:793.759976pt;}
.w7{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:1.280000pt;}
.x19{left:7.200000pt;}
.xb{left:9.600000pt;}
.x1e{left:12.360000pt;}
.x5{left:19.520000pt;}
.x6{left:54.560000pt;}
.x9{left:94.431988pt;}
.xc{left:96.671988pt;}
.x18{left:98.751988pt;}
.x11{left:100.511988pt;}
.xd{left:123.231988pt;}
.x2{left:131.560000pt;}
.x16{left:143.546655pt;}
.x1{left:146.906667pt;}
.x15{left:161.626655pt;}
.x28{left:166.906667pt;}
.x20{left:170.106667pt;}
.x1a{left:217.626667pt;}
.x21{left:236.346667pt;}
.x14{left:255.106655pt;}
.x17{left:286.466655pt;}
.x29{left:307.906667pt;}
.x22{left:311.906667pt;}
.xe{left:334.306655pt;}
.x7{left:336.066667pt;}
.x1b{left:339.426667pt;}
.x12{left:359.426655pt;}
.x2a{left:370.306667pt;}
.x2f{left:371.266667pt;}
.x23{left:378.146667pt;}
.x13{left:396.866655pt;}
.x2b{left:436.413333pt;}
.x30{left:437.853333pt;}
.x24{left:444.253333pt;}
.xf{left:453.853310pt;}
.x10{left:459.293322pt;}
.x1f{left:460.893333pt;}
.x1c{left:462.013333pt;}
.x2c{left:502.493333pt;}
.x31{left:504.413333pt;}
.x25{left:510.333333pt;}
.x2d{left:567.133333pt;}
.x32{left:569.693333pt;}
.x26{left:576.573333pt;}
.x1d{left:579.613333pt;}
.x8{left:589.093333pt;}
.x2e{left:633.253333pt;}
.x27{left:642.693333pt;}
.x4{left:680.453333pt;}
.xa{left:718.213333pt;}
}




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