
    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_bcecb65df7aaa828ed88ac01.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.721191;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_f49e95dce2d43c66d067ffce.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.064941;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_6af97e8bfff78d924e288dd6.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_e2632df1229b910bb3a1bf0d.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.065430;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_b5b97b9a41b48eacca549690.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.056152;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_35cef0be7d923f1d8ba6a78e.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.088379;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_9885c1ab354c64034cb56def.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.064941;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_dc2b1bd8d898cbb8e3f34445.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.976562;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_9fd9df8eccb7ba4c26473fa6.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.088379;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:-12.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:15.600000px;}
.ls11{letter-spacing:-0.330000px;}
.lsd{letter-spacing:-0.306000px;}
.ls7{letter-spacing:-0.300000px;}
.ls9{letter-spacing:-0.192000px;}
.ls13{letter-spacing:-0.162000px;}
.ls15{letter-spacing:-0.075000px;}
.ls1b{letter-spacing:-0.048000px;}
.ls4{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.054000px;}
.ls18{letter-spacing:0.060000px;}
.lsf{letter-spacing:0.120000px;}
.lsb{letter-spacing:0.180000px;}
.ls17{letter-spacing:0.192000px;}
.lse{letter-spacing:0.288000px;}
.ls5{letter-spacing:0.360000px;}
.ls6{letter-spacing:0.480000px;}
.ls1{letter-spacing:0.496800px;}
.ls8{letter-spacing:0.528000px;}
.ls1a{letter-spacing:0.540000px;}
.ls0{letter-spacing:0.556800px;}
.ls10{letter-spacing:0.600000px;}
.ls19{letter-spacing:0.660000px;}
.ls12{letter-spacing:0.870000px;}
.ls14{letter-spacing:1.080000px;}
.ls2{letter-spacing:10.920000px;}
.ls3{letter-spacing:14.880000px;}
.ls16{letter-spacing:15.480000px;}
.lsc{letter-spacing:113.880000px;}
.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;}
}
.wsa{word-spacing:-14.712000px;}
.ws5{word-spacing:-14.520000px;}
.wsb{word-spacing:-14.472000px;}
.ws9{word-spacing:-14.358000px;}
.ws8{word-spacing:-14.214000px;}
.ws1{word-spacing:-13.560000px;}
.ws0{word-spacing:-13.200000px;}
.ws6{word-spacing:-11.880000px;}
.ws4{word-spacing:-11.040000px;}
.ws2{word-spacing:-10.560000px;}
.ws3{word-spacing:-10.368000px;}
.ws7{word-spacing:0.000000px;}
._18{margin-left:-4.533600px;}
._17{margin-left:-3.468000px;}
._0{margin-left:-2.040000px;}
._2{margin-left:-1.035600px;}
._1{width:1.305600px;}
._a{width:2.400000px;}
._e{width:4.363200px;}
._6{width:5.368800px;}
._5{width:6.540000px;}
._7{width:7.634400px;}
._8{width:8.894400px;}
._9{width:10.020000px;}
._d{width:11.234400px;}
._19{width:12.738000px;}
._f{width:14.238000px;}
._b{width:15.314400px;}
._4{width:17.220000px;}
._3{width:18.420000px;}
._c{width:20.354400px;}
._1f{width:22.190400px;}
._20{width:23.958000px;}
._1e{width:25.212000px;}
._21{width:26.820000px;}
._1b{width:27.824400px;}
._1a{width:28.996800px;}
._1c{width:30.277200px;}
._23{width:31.300800px;}
._22{width:32.340000px;}
._24{width:33.996000px;}
._25{width:57.368400px;}
._26{width:58.710000px;}
._28{width:109.428000px;}
._29{width:110.582400px;}
._11{width:113.880000px;}
._12{width:134.264400px;}
._27{width:167.860800px;}
._10{width:201.510000px;}
._14{width:534.720000px;}
._15{width:636.270000px;}
._16{width:722.520000px;}
._13{width:750.960000px;}
._1d{width:1275.450000px;}
.fc5{color:transparent;}
.fc6{color:rgb(24,25,26);}
.fc4{color:rgb(255,0,0);}
.fc2{color:rgb(255,102,0);}
.fc1{color:rgb(0,0,255);}
.fc7{color:rgb(255,255,255);}
.fc3{color:rgb(31,31,31);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:6.000000px;}
.fs7{font-size:12.000000px;}
.fs5{font-size:30.000000px;}
.fsa{font-size:36.000000px;}
.fs4{font-size:39.600000px;}
.fs6{font-size:48.000000px;}
.fsb{font-size:48.150000px;}
.fs9{font-size:54.000000px;}
.fs1{font-size:60.000000px;}
.fs8{font-size:66.000000px;}
.fs0{font-size:81.600000px;}
.fs3{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y16{bottom:2.715000px;}
.yf1{bottom:2.850000px;}
.y3c{bottom:3.600000px;}
.yee{bottom:3.750000px;}
.yea{bottom:4.725000px;}
.ye6{bottom:9.525000px;}
.y19{bottom:12.900000px;}
.yf0{bottom:16.680000px;}
.y15{bottom:16.815000px;}
.y14{bottom:29.715000px;}
.y3b{bottom:31.545000px;}
.ye8{bottom:32.325000px;}
.yec{bottom:34.650000px;}
.y13{bottom:40.215000px;}
.y3a{bottom:49.245000px;}
.y12{bottom:57.915000px;}
.y39{bottom:66.945000px;}
.y11{bottom:75.345000px;}
.y38{bottom:84.345000px;}
.yb{bottom:88.237500px;}
.y10{bottom:93.045000px;}
.y37{bottom:102.045000px;}
.y7a{bottom:105.637500px;}
.yf{bottom:112.545000px;}
.y36{bottom:119.445000px;}
.y79{bottom:122.737500px;}
.ya{bottom:123.337500px;}
.y77{bottom:125.737500px;}
.ycc{bottom:129.937500px;}
.y35{bottom:137.130000px;}
.y120{bottom:138.037500px;}
.y78{bottom:140.137500px;}
.ye{bottom:140.745000px;}
.y76{bottom:144.937500px;}
.ycb{bottom:149.437500px;}
.y26{bottom:151.545000px;}
.y9{bottom:153.345000px;}
.y34{bottom:154.845000px;}
.y11f{bottom:157.245000px;}
.y46{bottom:161.430000px;}
.yc9{bottom:162.945000px;}
.y45{bottom:163.845000px;}
.y75{bottom:164.430000px;}
.yca{bottom:168.630000px;}
.yd{bottom:168.945000px;}
.yf2{bottom:171.045000px;}
.y25{bottom:171.075000px;}
.y33{bottom:172.275000px;}
.ya8{bottom:172.845000px;}
.ye3{bottom:174.045000px;}
.y44{bottom:175.530000px;}
.y11e{bottom:176.775000px;}
.y43{bottom:180.975000px;}
.yc8{bottom:182.175000px;}
.y74{bottom:183.675000px;}
.y32{bottom:189.975000px;}
.y24{bottom:190.275000px;}
.yb1{bottom:190.575000px;}
.ya7{bottom:192.375000px;}
.y42{bottom:192.975000px;}
.ye2{bottom:193.275000px;}
.y11d{bottom:195.975000px;}
.yc7{bottom:201.675000px;}
.y73{bottom:203.175000px;}
.y31{bottom:207.375000px;}
.y23{bottom:209.775000px;}
.ya6{bottom:211.575000px;}
.ye1{bottom:212.775000px;}
.y11c{bottom:215.475000px;}
.yc6{bottom:220.875000px;}
.y72{bottom:222.375000px;}
.y30{bottom:225.075000px;}
.y41{bottom:228.675000px;}
.y22{bottom:228.975000px;}
.yb0{bottom:229.275000px;}
.ya5{bottom:231.075000px;}
.ye0{bottom:231.975000px;}
.y11b{bottom:234.675000px;}
.yc5{bottom:240.375000px;}
.y71{bottom:241.875000px;}
.y2f{bottom:242.775000px;}
.y40{bottom:248.175000px;}
.y21{bottom:248.475000px;}
.ya4{bottom:250.275000px;}
.ydf{bottom:251.475000px;}
.y11a{bottom:254.175000px;}
.yc4{bottom:259.575000px;}
.y2e{bottom:260.175000px;}
.y70{bottom:261.075000px;}
.y3f{bottom:267.375000px;}
.y20{bottom:267.675000px;}
.yaf{bottom:267.975000px;}
.ya3{bottom:269.775000px;}
.yde{bottom:270.675000px;}
.y119{bottom:273.375000px;}
.y2d{bottom:277.875000px;}
.yc3{bottom:279.075000px;}
.y6f{bottom:280.575000px;}
.y3e{bottom:286.875000px;}
.y1f{bottom:287.175000px;}
.ya2{bottom:288.975000px;}
.ydd{bottom:290.175000px;}
.y118{bottom:292.875000px;}
.y2c{bottom:295.575000px;}
.yc2{bottom:298.275000px;}
.y6e{bottom:299.775000px;}
.y3d{bottom:305.775000px;}
.y1e{bottom:306.375000px;}
.yae{bottom:306.675000px;}
.ya1{bottom:308.475000px;}
.ydc{bottom:309.375000px;}
.y117{bottom:312.075000px;}
.y2b{bottom:312.975000px;}
.yc1{bottom:317.775000px;}
.y6d{bottom:319.275000px;}
.y1a{bottom:320.775000px;}
.yad{bottom:325.875000px;}
.y1d{bottom:325.920000px;}
.ya0{bottom:327.675000px;}
.ydb{bottom:328.875000px;}
.y2a{bottom:330.720000px;}
.y116{bottom:331.575000px;}
.yc0{bottom:337.005000px;}
.y6c{bottom:338.505000px;}
.y1c{bottom:345.105000px;}
.yac{bottom:345.420000px;}
.y9f{bottom:347.220000px;}
.y29{bottom:348.120000px;}
.y115{bottom:350.820000px;}
.y27{bottom:355.620000px;}
.ybf{bottom:356.520000px;}
.y6b{bottom:358.005000px;}
.y1b{bottom:364.620000px;}
.y28{bottom:365.820000px;}
.y9e{bottom:366.420000px;}
.yda{bottom:367.320000px;}
.y114{bottom:370.320000px;}
.ybe{bottom:375.720000px;}
.y6a{bottom:377.220000px;}
.yab{bottom:384.120000px;}
.y9d{bottom:385.920000px;}
.y113{bottom:389.505000px;}
.ybd{bottom:395.220000px;}
.y69{bottom:396.705000px;}
.yd9{bottom:401.820000px;}
.yaa{bottom:403.320000px;}
.y9c{bottom:405.120000px;}
.y112{bottom:409.020000px;}
.ybc{bottom:414.420000px;}
.y68{bottom:415.920000px;}
.ya9{bottom:422.820000px;}
.y9b{bottom:424.020000px;}
.y111{bottom:428.220000px;}
.ybb{bottom:433.920000px;}
.y67{bottom:435.420000px;}
.yd8{bottom:436.020000px;}
.y9a{bottom:442.020000px;}
.y110{bottom:447.720000px;}
.yba{bottom:453.120000px;}
.y66{bottom:454.620000px;}
.y99{bottom:461.505000px;}
.y10f{bottom:466.920000px;}
.yd7{bottom:470.520000px;}
.yb9{bottom:472.320000px;}
.y65{bottom:474.120000px;}
.y98{bottom:480.720000px;}
.y10e{bottom:486.420000px;}
.yb8{bottom:491.850000px;}
.y64{bottom:493.350000px;}
.y97{bottom:500.250000px;}
.yd6{bottom:504.750000px;}
.y10d{bottom:505.650000px;}
.y63{bottom:512.850000px;}
.y96{bottom:519.450000px;}
.y10c{bottom:525.150000px;}
.yb7{bottom:526.050000px;}
.y62{bottom:532.050000px;}
.y95{bottom:538.950000px;}
.yd5{bottom:539.250000px;}
.y10b{bottom:544.350000px;}
.y61{bottom:551.550000px;}
.y94{bottom:558.150000px;}
.yeb{bottom:558.600000px;}
.yb6{bottom:560.550000px;}
.y10a{bottom:563.850000px;}
.y60{bottom:570.750000px;}
.yd4{bottom:573.450000px;}
.y93{bottom:577.350000px;}
.yed{bottom:577.950000px;}
.y109{bottom:583.050000px;}
.y5f{bottom:589.950000px;}
.yb5{bottom:594.750000px;}
.y92{bottom:596.850000px;}
.y108{bottom:602.550000px;}
.yd3{bottom:607.950000px;}
.y5e{bottom:609.450000px;}
.y91{bottom:616.050000px;}
.y107{bottom:621.750000px;}
.y5d{bottom:628.650000px;}
.yb4{bottom:629.250000px;}
.yef{bottom:633.600000px;}
.y90{bottom:635.550000px;}
.y106{bottom:640.950000px;}
.yd2{bottom:642.150000px;}
.y5c{bottom:648.195000px;}
.y8f{bottom:654.795000px;}
.y105{bottom:660.495000px;}
.yb3{bottom:663.495000px;}
.y5b{bottom:667.380000px;}
.y8e{bottom:674.280000px;}
.yd1{bottom:676.695000px;}
.y104{bottom:679.695000px;}
.y5a{bottom:686.895000px;}
.y8d{bottom:693.495000px;}
.yb2{bottom:697.995000px;}
.y103{bottom:699.195000px;}
.y18{bottom:701.595000px;}
.y59{bottom:706.095000px;}
.yd0{bottom:710.895000px;}
.y8c{bottom:712.995000px;}
.y102{bottom:718.380000px;}
.y58{bottom:725.595000px;}
.y8b{bottom:732.195000px;}
.y101{bottom:737.895000px;}
.y17{bottom:740.295000px;}
.yc{bottom:743.280000px;}
.y57{bottom:744.780000px;}
.ycf{bottom:745.380000px;}
.y8a{bottom:751.695000px;}
.y100{bottom:757.095000px;}
.y56{bottom:764.295000px;}
.y89{bottom:770.895000px;}
.yff{bottom:776.580000px;}
.yce{bottom:779.580000px;}
.y55{bottom:783.495000px;}
.y88{bottom:790.395000px;}
.yfe{bottom:795.795000px;}
.ye7{bottom:798.900000px;}
.y54{bottom:803.025000px;}
.ye5{bottom:803.700000px;}
.y87{bottom:809.625000px;}
.ycd{bottom:814.125000px;}
.yfd{bottom:815.325000px;}
.ye9{bottom:817.425000px;}
.y53{bottom:822.225000px;}
.ye4{bottom:827.025000px;}
.y86{bottom:829.125000px;}
.yfc{bottom:834.525000px;}
.y52{bottom:841.725000px;}
.y85{bottom:848.325000px;}
.yfb{bottom:854.025000px;}
.y51{bottom:860.925000px;}
.y84{bottom:867.825000px;}
.yfa{bottom:873.225000px;}
.y50{bottom:880.425000px;}
.y83{bottom:887.025000px;}
.yf9{bottom:892.125000px;}
.y4f{bottom:899.625000px;}
.y82{bottom:906.525000px;}
.yf8{bottom:909.825000px;}
.y4e{bottom:919.125000px;}
.y81{bottom:925.725000px;}
.yf7{bottom:927.225000px;}
.y8{bottom:938.325000px;}
.yf6{bottom:944.925000px;}
.y80{bottom:945.225000px;}
.y7{bottom:955.725000px;}
.y4d{bottom:957.825000px;}
.yf5{bottom:962.670000px;}
.y7f{bottom:964.470000px;}
.y6{bottom:972.870000px;}
.y4c{bottom:977.070000px;}
.yf4{bottom:980.070000px;}
.y7e{bottom:983.955000px;}
.y5{bottom:990.270000px;}
.y4b{bottom:996.570000px;}
.yf3{bottom:997.755000px;}
.y7d{bottom:1003.170000px;}
.y4{bottom:1007.955000px;}
.y4a{bottom:1015.755000px;}
.y7c{bottom:1022.670000px;}
.y3{bottom:1025.670000px;}
.y49{bottom:1035.255000px;}
.y7b{bottom:1041.870000px;}
.y2{bottom:1043.070000px;}
.y1{bottom:1066.470000px;}
.y48{bottom:1071.870000px;}
.y47{bottom:1089.570000px;}
.h5{height:4.189453px;}
.ha{height:10.160156px;}
.h8{height:25.400391px;}
.h1b{height:28.200000px;}
.h11{height:30.125391px;}
.h15{height:33.515625px;}
.h18{height:33.620361px;}
.h13{height:34.986328px;}
.hb{height:37.500000px;}
.h1a{height:37.705078px;}
.h9{height:40.640625px;}
.h16{height:40.800000px;}
.h4{height:41.894531px;}
.h14{height:45.644531px;}
.h17{height:45.900000px;}
.h12{height:46.986328px;}
.h19{height:48.600000px;}
.h3{height:50.800781px;}
.h10{height:52.207031px;}
.hc{height:55.623047px;}
.hd{height:55.880859px;}
.hf{height:57.427734px;}
.h2{height:57.574219px;}
.h7{height:81.281250px;}
.h6{height:191.745000px;}
.he{height:380.220000px;}
.h1{height:1188.000000px;}
.h0{height:1188.300000px;}
.w5{width:21.337500px;}
.wb{width:103.500000px;}
.w8{width:137.100000px;}
.w9{width:147.600000px;}
.w4{width:170.130000px;}
.wa{width:187.800000px;}
.w6{width:510.450000px;}
.w3{width:701.925000px;}
.w1{width:918.000000px;}
.w7{width:918.299973px;}
.w2{width:918.299986px;}
.w0{width:918.300000px;}
.x0{left:0.000000px;}
.xf{left:8.100000px;}
.xd{left:10.500000px;}
.x23{left:11.850000px;}
.x2b{left:18.720000px;}
.x27{left:22.050000px;}
.x2a{left:23.805000px;}
.x5{left:27.900000px;}
.x21{left:35.175000px;}
.x4{left:37.800000px;}
.x25{left:48.480000px;}
.xa{left:76.837500px;}
.xb{left:98.137486px;}
.x1{left:106.237486px;}
.x11{left:111.337486px;}
.x6{left:116.737500px;}
.x1a{left:127.537486px;}
.x16{left:133.237486px;}
.x2c{left:138.337486px;}
.x8{left:189.982500px;}
.x1c{left:195.374986px;}
.x18{left:216.374986px;}
.x1f{left:221.774986px;}
.x20{left:241.274986px;}
.x13{left:267.674986px;}
.xc{left:276.375000px;}
.xe{left:297.720000px;}
.x9{left:319.012500px;}
.x10{left:322.319986px;}
.x7{left:346.912500px;}
.x1d{left:368.519986px;}
.x29{left:372.600000px;}
.x19{left:387.719986px;}
.x14{left:401.504986px;}
.x1b{left:438.449986px;}
.x17{left:441.449986px;}
.x3{left:447.749986px;}
.x26{left:450.900000px;}
.x2{left:459.149986px;}
.x1e{left:469.649986px;}
.x28{left:472.949986px;}
.x22{left:494.100000px;}
.x24{left:515.249986px;}
.x15{left:521.249986px;}
.x12{left:812.069986px;}
@media print{
.v2{vertical-align:-10.666667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:13.866667pt;}
.ls11{letter-spacing:-0.293333pt;}
.lsd{letter-spacing:-0.272000pt;}
.ls7{letter-spacing:-0.266667pt;}
.ls9{letter-spacing:-0.170667pt;}
.ls13{letter-spacing:-0.144000pt;}
.ls15{letter-spacing:-0.066667pt;}
.ls1b{letter-spacing:-0.042667pt;}
.ls4{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.048000pt;}
.ls18{letter-spacing:0.053333pt;}
.lsf{letter-spacing:0.106667pt;}
.lsb{letter-spacing:0.160000pt;}
.ls17{letter-spacing:0.170667pt;}
.lse{letter-spacing:0.256000pt;}
.ls5{letter-spacing:0.320000pt;}
.ls6{letter-spacing:0.426667pt;}
.ls1{letter-spacing:0.441600pt;}
.ls8{letter-spacing:0.469333pt;}
.ls1a{letter-spacing:0.480000pt;}
.ls0{letter-spacing:0.494933pt;}
.ls10{letter-spacing:0.533333pt;}
.ls19{letter-spacing:0.586667pt;}
.ls12{letter-spacing:0.773333pt;}
.ls14{letter-spacing:0.960000pt;}
.ls2{letter-spacing:9.706667pt;}
.ls3{letter-spacing:13.226667pt;}
.ls16{letter-spacing:13.760000pt;}
.lsc{letter-spacing:101.226667pt;}
.wsa{word-spacing:-13.077333pt;}
.ws5{word-spacing:-12.906667pt;}
.wsb{word-spacing:-12.864000pt;}
.ws9{word-spacing:-12.762667pt;}
.ws8{word-spacing:-12.634667pt;}
.ws1{word-spacing:-12.053333pt;}
.ws0{word-spacing:-11.733333pt;}
.ws6{word-spacing:-10.560000pt;}
.ws4{word-spacing:-9.813333pt;}
.ws2{word-spacing:-9.386667pt;}
.ws3{word-spacing:-9.216000pt;}
.ws7{word-spacing:0.000000pt;}
._18{margin-left:-4.029867pt;}
._17{margin-left:-3.082667pt;}
._0{margin-left:-1.813333pt;}
._2{margin-left:-0.920533pt;}
._1{width:1.160533pt;}
._a{width:2.133333pt;}
._e{width:3.878400pt;}
._6{width:4.772267pt;}
._5{width:5.813333pt;}
._7{width:6.786133pt;}
._8{width:7.906133pt;}
._9{width:8.906667pt;}
._d{width:9.986133pt;}
._19{width:11.322667pt;}
._f{width:12.656000pt;}
._b{width:13.612800pt;}
._4{width:15.306667pt;}
._3{width:16.373333pt;}
._c{width:18.092800pt;}
._1f{width:19.724800pt;}
._20{width:21.296000pt;}
._1e{width:22.410667pt;}
._21{width:23.840000pt;}
._1b{width:24.732800pt;}
._1a{width:25.774933pt;}
._1c{width:26.913067pt;}
._23{width:27.822933pt;}
._22{width:28.746667pt;}
._24{width:30.218667pt;}
._25{width:50.994133pt;}
._26{width:52.186667pt;}
._28{width:97.269333pt;}
._29{width:98.295467pt;}
._11{width:101.226667pt;}
._12{width:119.346133pt;}
._27{width:149.209600pt;}
._10{width:179.120000pt;}
._14{width:475.306667pt;}
._15{width:565.573333pt;}
._16{width:642.240000pt;}
._13{width:667.520000pt;}
._1d{width:1133.733333pt;}
.fs2{font-size:5.333333pt;}
.fs7{font-size:10.666667pt;}
.fs5{font-size:26.666667pt;}
.fsa{font-size:32.000000pt;}
.fs4{font-size:35.200000pt;}
.fs6{font-size:42.666667pt;}
.fsb{font-size:42.800000pt;}
.fs9{font-size:48.000000pt;}
.fs1{font-size:53.333333pt;}
.fs8{font-size:58.666667pt;}
.fs0{font-size:72.533333pt;}
.fs3{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y16{bottom:2.413333pt;}
.yf1{bottom:2.533333pt;}
.y3c{bottom:3.200000pt;}
.yee{bottom:3.333333pt;}
.yea{bottom:4.200000pt;}
.ye6{bottom:8.466667pt;}
.y19{bottom:11.466667pt;}
.yf0{bottom:14.826667pt;}
.y15{bottom:14.946667pt;}
.y14{bottom:26.413333pt;}
.y3b{bottom:28.040000pt;}
.ye8{bottom:28.733333pt;}
.yec{bottom:30.800000pt;}
.y13{bottom:35.746667pt;}
.y3a{bottom:43.773333pt;}
.y12{bottom:51.480000pt;}
.y39{bottom:59.506667pt;}
.y11{bottom:66.973333pt;}
.y38{bottom:74.973333pt;}
.yb{bottom:78.433333pt;}
.y10{bottom:82.706667pt;}
.y37{bottom:90.706667pt;}
.y7a{bottom:93.900000pt;}
.yf{bottom:100.040000pt;}
.y36{bottom:106.173333pt;}
.y79{bottom:109.100000pt;}
.ya{bottom:109.633333pt;}
.y77{bottom:111.766667pt;}
.ycc{bottom:115.500000pt;}
.y35{bottom:121.893333pt;}
.y120{bottom:122.700000pt;}
.y78{bottom:124.566667pt;}
.ye{bottom:125.106667pt;}
.y76{bottom:128.833333pt;}
.ycb{bottom:132.833333pt;}
.y26{bottom:134.706667pt;}
.y9{bottom:136.306667pt;}
.y34{bottom:137.640000pt;}
.y11f{bottom:139.773333pt;}
.y46{bottom:143.493333pt;}
.yc9{bottom:144.840000pt;}
.y45{bottom:145.640000pt;}
.y75{bottom:146.160000pt;}
.yca{bottom:149.893333pt;}
.yd{bottom:150.173333pt;}
.yf2{bottom:152.040000pt;}
.y25{bottom:152.066667pt;}
.y33{bottom:153.133333pt;}
.ya8{bottom:153.640000pt;}
.ye3{bottom:154.706667pt;}
.y44{bottom:156.026667pt;}
.y11e{bottom:157.133333pt;}
.y43{bottom:160.866667pt;}
.yc8{bottom:161.933333pt;}
.y74{bottom:163.266667pt;}
.y32{bottom:168.866667pt;}
.y24{bottom:169.133333pt;}
.yb1{bottom:169.400000pt;}
.ya7{bottom:171.000000pt;}
.y42{bottom:171.533333pt;}
.ye2{bottom:171.800000pt;}
.y11d{bottom:174.200000pt;}
.yc7{bottom:179.266667pt;}
.y73{bottom:180.600000pt;}
.y31{bottom:184.333333pt;}
.y23{bottom:186.466667pt;}
.ya6{bottom:188.066667pt;}
.ye1{bottom:189.133333pt;}
.y11c{bottom:191.533333pt;}
.yc6{bottom:196.333333pt;}
.y72{bottom:197.666667pt;}
.y30{bottom:200.066667pt;}
.y41{bottom:203.266667pt;}
.y22{bottom:203.533333pt;}
.yb0{bottom:203.800000pt;}
.ya5{bottom:205.400000pt;}
.ye0{bottom:206.200000pt;}
.y11b{bottom:208.600000pt;}
.yc5{bottom:213.666667pt;}
.y71{bottom:215.000000pt;}
.y2f{bottom:215.800000pt;}
.y40{bottom:220.600000pt;}
.y21{bottom:220.866667pt;}
.ya4{bottom:222.466667pt;}
.ydf{bottom:223.533333pt;}
.y11a{bottom:225.933333pt;}
.yc4{bottom:230.733333pt;}
.y2e{bottom:231.266667pt;}
.y70{bottom:232.066667pt;}
.y3f{bottom:237.666667pt;}
.y20{bottom:237.933333pt;}
.yaf{bottom:238.200000pt;}
.ya3{bottom:239.800000pt;}
.yde{bottom:240.600000pt;}
.y119{bottom:243.000000pt;}
.y2d{bottom:247.000000pt;}
.yc3{bottom:248.066667pt;}
.y6f{bottom:249.400000pt;}
.y3e{bottom:255.000000pt;}
.y1f{bottom:255.266667pt;}
.ya2{bottom:256.866667pt;}
.ydd{bottom:257.933333pt;}
.y118{bottom:260.333333pt;}
.y2c{bottom:262.733333pt;}
.yc2{bottom:265.133333pt;}
.y6e{bottom:266.466667pt;}
.y3d{bottom:271.800000pt;}
.y1e{bottom:272.333333pt;}
.yae{bottom:272.600000pt;}
.ya1{bottom:274.200000pt;}
.ydc{bottom:275.000000pt;}
.y117{bottom:277.400000pt;}
.y2b{bottom:278.200000pt;}
.yc1{bottom:282.466667pt;}
.y6d{bottom:283.800000pt;}
.y1a{bottom:285.133333pt;}
.yad{bottom:289.666667pt;}
.y1d{bottom:289.706667pt;}
.ya0{bottom:291.266667pt;}
.ydb{bottom:292.333333pt;}
.y2a{bottom:293.973333pt;}
.y116{bottom:294.733333pt;}
.yc0{bottom:299.560000pt;}
.y6c{bottom:300.893333pt;}
.y1c{bottom:306.760000pt;}
.yac{bottom:307.040000pt;}
.y9f{bottom:308.640000pt;}
.y29{bottom:309.440000pt;}
.y115{bottom:311.840000pt;}
.y27{bottom:316.106667pt;}
.ybf{bottom:316.906667pt;}
.y6b{bottom:318.226667pt;}
.y1b{bottom:324.106667pt;}
.y28{bottom:325.173333pt;}
.y9e{bottom:325.706667pt;}
.yda{bottom:326.506667pt;}
.y114{bottom:329.173333pt;}
.ybe{bottom:333.973333pt;}
.y6a{bottom:335.306667pt;}
.yab{bottom:341.440000pt;}
.y9d{bottom:343.040000pt;}
.y113{bottom:346.226667pt;}
.ybd{bottom:351.306667pt;}
.y69{bottom:352.626667pt;}
.yd9{bottom:357.173333pt;}
.yaa{bottom:358.506667pt;}
.y9c{bottom:360.106667pt;}
.y112{bottom:363.573333pt;}
.ybc{bottom:368.373333pt;}
.y68{bottom:369.706667pt;}
.ya9{bottom:375.840000pt;}
.y9b{bottom:376.906667pt;}
.y111{bottom:380.640000pt;}
.ybb{bottom:385.706667pt;}
.y67{bottom:387.040000pt;}
.yd8{bottom:387.573333pt;}
.y9a{bottom:392.906667pt;}
.y110{bottom:397.973333pt;}
.yba{bottom:402.773333pt;}
.y66{bottom:404.106667pt;}
.y99{bottom:410.226667pt;}
.y10f{bottom:415.040000pt;}
.yd7{bottom:418.240000pt;}
.yb9{bottom:419.840000pt;}
.y65{bottom:421.440000pt;}
.y98{bottom:427.306667pt;}
.y10e{bottom:432.373333pt;}
.yb8{bottom:437.200000pt;}
.y64{bottom:438.533333pt;}
.y97{bottom:444.666667pt;}
.yd6{bottom:448.666667pt;}
.y10d{bottom:449.466667pt;}
.y63{bottom:455.866667pt;}
.y96{bottom:461.733333pt;}
.y10c{bottom:466.800000pt;}
.yb7{bottom:467.600000pt;}
.y62{bottom:472.933333pt;}
.y95{bottom:479.066667pt;}
.yd5{bottom:479.333333pt;}
.y10b{bottom:483.866667pt;}
.y61{bottom:490.266667pt;}
.y94{bottom:496.133333pt;}
.yeb{bottom:496.533333pt;}
.yb6{bottom:498.266667pt;}
.y10a{bottom:501.200000pt;}
.y60{bottom:507.333333pt;}
.yd4{bottom:509.733333pt;}
.y93{bottom:513.200000pt;}
.yed{bottom:513.733333pt;}
.y109{bottom:518.266667pt;}
.y5f{bottom:524.400000pt;}
.yb5{bottom:528.666667pt;}
.y92{bottom:530.533333pt;}
.y108{bottom:535.600000pt;}
.yd3{bottom:540.400000pt;}
.y5e{bottom:541.733333pt;}
.y91{bottom:547.600000pt;}
.y107{bottom:552.666667pt;}
.y5d{bottom:558.800000pt;}
.yb4{bottom:559.333333pt;}
.yef{bottom:563.200000pt;}
.y90{bottom:564.933333pt;}
.y106{bottom:569.733333pt;}
.yd2{bottom:570.800000pt;}
.y5c{bottom:576.173333pt;}
.y8f{bottom:582.040000pt;}
.y105{bottom:587.106667pt;}
.yb3{bottom:589.773333pt;}
.y5b{bottom:593.226667pt;}
.y8e{bottom:599.360000pt;}
.yd1{bottom:601.506667pt;}
.y104{bottom:604.173333pt;}
.y5a{bottom:610.573333pt;}
.y8d{bottom:616.440000pt;}
.yb2{bottom:620.440000pt;}
.y103{bottom:621.506667pt;}
.y18{bottom:623.640000pt;}
.y59{bottom:627.640000pt;}
.yd0{bottom:631.906667pt;}
.y8c{bottom:633.773333pt;}
.y102{bottom:638.560000pt;}
.y58{bottom:644.973333pt;}
.y8b{bottom:650.840000pt;}
.y101{bottom:655.906667pt;}
.y17{bottom:658.040000pt;}
.yc{bottom:660.693333pt;}
.y57{bottom:662.026667pt;}
.ycf{bottom:662.560000pt;}
.y8a{bottom:668.173333pt;}
.y100{bottom:672.973333pt;}
.y56{bottom:679.373333pt;}
.y89{bottom:685.240000pt;}
.yff{bottom:690.293333pt;}
.yce{bottom:692.960000pt;}
.y55{bottom:696.440000pt;}
.y88{bottom:702.573333pt;}
.yfe{bottom:707.373333pt;}
.ye7{bottom:710.133333pt;}
.y54{bottom:713.800000pt;}
.ye5{bottom:714.400000pt;}
.y87{bottom:719.666667pt;}
.ycd{bottom:723.666667pt;}
.yfd{bottom:724.733333pt;}
.ye9{bottom:726.600000pt;}
.y53{bottom:730.866667pt;}
.ye4{bottom:735.133333pt;}
.y86{bottom:737.000000pt;}
.yfc{bottom:741.800000pt;}
.y52{bottom:748.200000pt;}
.y85{bottom:754.066667pt;}
.yfb{bottom:759.133333pt;}
.y51{bottom:765.266667pt;}
.y84{bottom:771.400000pt;}
.yfa{bottom:776.200000pt;}
.y50{bottom:782.600000pt;}
.y83{bottom:788.466667pt;}
.yf9{bottom:793.000000pt;}
.y4f{bottom:799.666667pt;}
.y82{bottom:805.800000pt;}
.yf8{bottom:808.733333pt;}
.y4e{bottom:817.000000pt;}
.y81{bottom:822.866667pt;}
.yf7{bottom:824.200000pt;}
.y8{bottom:834.066667pt;}
.yf6{bottom:839.933333pt;}
.y80{bottom:840.200000pt;}
.y7{bottom:849.533333pt;}
.y4d{bottom:851.400000pt;}
.yf5{bottom:855.706667pt;}
.y7f{bottom:857.306667pt;}
.y6{bottom:864.773333pt;}
.y4c{bottom:868.506667pt;}
.yf4{bottom:871.173333pt;}
.y7e{bottom:874.626667pt;}
.y5{bottom:880.240000pt;}
.y4b{bottom:885.840000pt;}
.yf3{bottom:886.893333pt;}
.y7d{bottom:891.706667pt;}
.y4{bottom:895.960000pt;}
.y4a{bottom:902.893333pt;}
.y7c{bottom:909.040000pt;}
.y3{bottom:911.706667pt;}
.y49{bottom:920.226667pt;}
.y7b{bottom:926.106667pt;}
.y2{bottom:927.173333pt;}
.y1{bottom:947.973333pt;}
.y48{bottom:952.773333pt;}
.y47{bottom:968.506667pt;}
.h5{height:3.723958pt;}
.ha{height:9.031250pt;}
.h8{height:22.578125pt;}
.h1b{height:25.066667pt;}
.h11{height:26.778125pt;}
.h15{height:29.791667pt;}
.h18{height:29.884766pt;}
.h13{height:31.098958pt;}
.hb{height:33.333333pt;}
.h1a{height:33.515625pt;}
.h9{height:36.125000pt;}
.h16{height:36.266667pt;}
.h4{height:37.239583pt;}
.h14{height:40.572917pt;}
.h17{height:40.800000pt;}
.h12{height:41.765625pt;}
.h19{height:43.200000pt;}
.h3{height:45.156250pt;}
.h10{height:46.406250pt;}
.hc{height:49.442708pt;}
.hd{height:49.671875pt;}
.hf{height:51.046875pt;}
.h2{height:51.177083pt;}
.h7{height:72.250000pt;}
.h6{height:170.440000pt;}
.he{height:337.973333pt;}
.h1{height:1056.000000pt;}
.h0{height:1056.266667pt;}
.w5{width:18.966667pt;}
.wb{width:92.000000pt;}
.w8{width:121.866667pt;}
.w9{width:131.200000pt;}
.w4{width:151.226667pt;}
.wa{width:166.933333pt;}
.w6{width:453.733333pt;}
.w3{width:623.933333pt;}
.w1{width:816.000000pt;}
.w7{width:816.266642pt;}
.w2{width:816.266655pt;}
.w0{width:816.266667pt;}
.x0{left:0.000000pt;}
.xf{left:7.200000pt;}
.xd{left:9.333333pt;}
.x23{left:10.533333pt;}
.x2b{left:16.640000pt;}
.x27{left:19.600000pt;}
.x2a{left:21.160000pt;}
.x5{left:24.800000pt;}
.x21{left:31.266667pt;}
.x4{left:33.600000pt;}
.x25{left:43.093333pt;}
.xa{left:68.300000pt;}
.xb{left:87.233321pt;}
.x1{left:94.433321pt;}
.x11{left:98.966655pt;}
.x6{left:103.766667pt;}
.x1a{left:113.366655pt;}
.x16{left:118.433321pt;}
.x2c{left:122.966655pt;}
.x8{left:168.873333pt;}
.x1c{left:173.666655pt;}
.x18{left:192.333321pt;}
.x1f{left:197.133321pt;}
.x20{left:214.466655pt;}
.x13{left:237.933321pt;}
.xc{left:245.666667pt;}
.xe{left:264.640000pt;}
.x9{left:283.566667pt;}
.x10{left:286.506655pt;}
.x7{left:308.366667pt;}
.x1d{left:327.573321pt;}
.x29{left:331.200000pt;}
.x19{left:344.639988pt;}
.x14{left:356.893321pt;}
.x1b{left:389.733321pt;}
.x17{left:392.399988pt;}
.x3{left:397.999988pt;}
.x26{left:400.800000pt;}
.x2{left:408.133321pt;}
.x1e{left:417.466655pt;}
.x28{left:420.399988pt;}
.x22{left:439.200000pt;}
.x24{left:457.999988pt;}
.x15{left:463.333321pt;}
.x12{left:721.839988pt;}
}




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