
    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_1e47c4a56db84c026b1772b4.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_28a2a45c42b557b7b4f602df.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_bc4d44f7af4c8e6dac0cb144.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_ad99dbeb976e7b0379ce344d.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_27eff515067f7d2d6956ce85.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_5204346a4355fc90fa460c16.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.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:-20.880000px;}
.v4{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.ls8{letter-spacing:-0.513600px;}
.ls12{letter-spacing:-0.413400px;}
.lsd{letter-spacing:-0.288000px;}
.ls11{letter-spacing:-0.259800px;}
.ls13{letter-spacing:-0.216000px;}
.ls1a{letter-spacing:-0.144000px;}
.ls6{letter-spacing:-0.053280px;}
.ls4{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.018000px;}
.ls7{letter-spacing:0.053280px;}
.ls19{letter-spacing:0.072000px;}
.ls1{letter-spacing:0.108000px;}
.ls2{letter-spacing:0.180000px;}
.ls3{letter-spacing:0.259920px;}
.ls0{letter-spacing:0.360000px;}
.lse{letter-spacing:0.504000px;}
.lsc{letter-spacing:0.720000px;}
.ls16{letter-spacing:2.880000px;}
.ls14{letter-spacing:3.600000px;}
.lsa{letter-spacing:6.480000px;}
.ls17{letter-spacing:10.080000px;}
.ls15{letter-spacing:20.880000px;}
.ls10{letter-spacing:25.200000px;}
.ls18{letter-spacing:25.920000px;}
.ls9{letter-spacing:29.520000px;}
.lsb{letter-spacing:33.840000px;}
.lsf{letter-spacing:61.920000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws10{word-spacing:-18.072000px;}
.ws2{word-spacing:-18.000000px;}
.ws11{word-spacing:-17.856000px;}
.wsd{word-spacing:-17.784000px;}
.wsa{word-spacing:-17.712000px;}
.wsf{word-spacing:-16.560000px;}
.ws5{word-spacing:-15.120000px;}
.ws7{word-spacing:-14.993280px;}
.ws4{word-spacing:-14.940000px;}
.ws6{word-spacing:-14.886720px;}
.wsb{word-spacing:-14.680200px;}
.wsc{word-spacing:-14.526600px;}
.ws8{word-spacing:-14.426400px;}
.ws0{word-spacing:-13.860000px;}
.ws1{word-spacing:-13.518000px;}
.wse{word-spacing:-10.440000px;}
.ws3{word-spacing:-9.720000px;}
.ws9{word-spacing:0.000000px;}
._16{margin-left:-2.160000px;}
._0{margin-left:-1.134000px;}
._1{width:1.182000px;}
._7{width:2.230080px;}
._3{width:3.243360px;}
._18{width:4.510560px;}
._5{width:5.796720px;}
._6{width:6.839040px;}
._c{width:8.187120px;}
._d{width:9.515040px;}
._f{width:11.246640px;}
._12{width:12.370320px;}
._a{width:13.877520px;}
._19{width:15.629280px;}
._b{width:16.789440px;}
._e{width:17.808480px;}
._9{width:19.445520px;}
._8{width:20.557440px;}
._1f{width:21.726000px;}
._22{width:23.094000px;}
._21{width:24.480000px;}
._1c{width:25.704000px;}
._1d{width:26.928000px;}
._1b{width:28.080000px;}
._17{width:29.364000px;}
._15{width:30.504000px;}
._1e{width:31.616880px;}
._13{width:32.987520px;}
._11{width:34.840080px;}
._24{width:36.797760px;}
._27{width:38.048160px;}
._10{width:40.338000px;}
._20{width:41.364000px;}
._1a{width:42.426000px;}
._28{width:44.172000px;}
._29{width:45.372000px;}
._26{width:47.592000px;}
._23{width:51.192000px;}
._2{width:57.504000px;}
._4{width:61.373520px;}
._14{width:846.156000px;}
._25{width:1343.100000px;}
.fc2{color:transparent;}
.fc1{color:rgb(56,86,35);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:38.880000px;}
.fs6{font-size:41.760000px;}
.fs2{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs5{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y22{bottom:3.240000px;}
.y96{bottom:3.780000px;}
.y4{bottom:13.500000px;}
.y21{bottom:20.520000px;}
.y5{bottom:21.060000px;}
.y3{bottom:28.980000px;}
.y20{bottom:37.800000px;}
.y2{bottom:44.460000px;}
.y1f{bottom:55.080000px;}
.y8{bottom:56.880000px;}
.y35{bottom:57.060000px;}
.y30{bottom:72.180000px;}
.y1e{bottom:72.360000px;}
.y7{bottom:77.616000px;}
.y34{bottom:77.796000px;}
.y1d{bottom:89.460000px;}
.y1c{bottom:106.740000px;}
.y2f{bottom:106.785000px;}
.y113{bottom:119.196000px;}
.y1b{bottom:124.020000px;}
.y2e{bottom:124.065000px;}
.y63{bottom:127.296000px;}
.yf7{bottom:128.196000px;}
.yac{bottom:133.776000px;}
.y112{bottom:139.896000px;}
.y1a{bottom:141.300000px;}
.y2d{bottom:141.345000px;}
.y8b{bottom:141.696000px;}
.yc0{bottom:146.556000px;}
.y62{bottom:147.996000px;}
.yf6{bottom:148.896000px;}
.yab{bottom:154.470000px;}
.y19{bottom:158.580000px;}
.y2c{bottom:158.625000px;}
.y124{bottom:159.690000px;}
.y111{bottom:160.590000px;}
.y8a{bottom:171.390000px;}
.yaa{bottom:175.170000px;}
.y2b{bottom:175.725000px;}
.y18{bottom:175.860000px;}
.ybf{bottom:175.890000px;}
.y61{bottom:177.690000px;}
.yf5{bottom:178.590000px;}
.y123{bottom:180.390000px;}
.y110{bottom:181.290000px;}
.y89{bottom:192.090000px;}
.y17{bottom:192.960000px;}
.y2a{bottom:193.005000px;}
.ya9{bottom:195.870000px;}
.yf4{bottom:199.290000px;}
.ybe{bottom:200.370000px;}
.y122{bottom:201.090000px;}
.y10f{bottom:201.990000px;}
.y60{bottom:207.390000px;}
.y16{bottom:210.240000px;}
.y29{bottom:210.285000px;}
.y88{bottom:212.790000px;}
.ya8{bottom:216.570000px;}
.yf3{bottom:219.990000px;}
.y121{bottom:221.790000px;}
.y31{bottom:222.150000px;}
.y15{bottom:227.520000px;}
.y28{bottom:227.565000px;}
.y5f{bottom:228.090000px;}
.y10e{bottom:231.690000px;}
.y87{bottom:233.490000px;}
.ya7{bottom:237.270000px;}
.y25{bottom:238.890000px;}
.yf2{bottom:240.690000px;}
.y14{bottom:244.845000px;}
.y5e{bottom:248.790000px;}
.y120{bottom:251.490000px;}
.y86{bottom:254.190000px;}
.ya6{bottom:257.970000px;}
.yf1{bottom:261.390000px;}
.y13{bottom:262.125000px;}
.y5d{bottom:269.490000px;}
.y11f{bottom:272.190000px;}
.y85{bottom:274.890000px;}
.ya5{bottom:278.670000px;}
.y27{bottom:279.225000px;}
.y12{bottom:279.405000px;}
.yf0{bottom:282.090000px;}
.ye3{bottom:284.790000px;}
.y5c{bottom:290.190000px;}
.y11e{bottom:292.890000px;}
.y84{bottom:295.590000px;}
.y11{bottom:296.505000px;}
.ya4{bottom:299.370000px;}
.yef{bottom:302.790000px;}
.ye2{bottom:305.490000px;}
.y5b{bottom:310.890000px;}
.y26{bottom:313.785000px;}
.y83{bottom:316.290000px;}
.ya3{bottom:320.070000px;}
.y11d{bottom:322.590000px;}
.yee{bottom:323.490000px;}
.ye1{bottom:326.190000px;}
.y5a{bottom:331.590000px;}
.y11c{bottom:343.335000px;}
.yed{bottom:344.235000px;}
.y82{bottom:346.035000px;}
.ye0{bottom:346.935000px;}
.ya2{bottom:349.815000px;}
.y59{bottom:352.335000px;}
.y11b{bottom:364.035000px;}
.yec{bottom:364.935000px;}
.y81{bottom:366.735000px;}
.ydf{bottom:367.635000px;}
.y58{bottom:373.035000px;}
.ya1{bottom:379.515000px;}
.yeb{bottom:385.635000px;}
.y80{bottom:387.435000px;}
.yde{bottom:388.335000px;}
.y57{bottom:393.735000px;}
.ya0{bottom:400.215000px;}
.yea{bottom:406.335000px;}
.y7f{bottom:408.135000px;}
.ydd{bottom:409.035000px;}
.ybd{bottom:412.995000px;}
.y56{bottom:414.435000px;}
.ye9{bottom:427.035000px;}
.y7e{bottom:428.835000px;}
.ydc{bottom:429.735000px;}
.y9f{bottom:429.915000px;}
.y55{bottom:435.135000px;}
.y10d{bottom:447.735000px;}
.y7d{bottom:449.535000px;}
.ydb{bottom:450.435000px;}
.y9e{bottom:450.615000px;}
.y54{bottom:455.835000px;}
.y11a{bottom:464.835000px;}
.ye8{bottom:465.195000px;}
.y10c{bottom:468.435000px;}
.y7c{bottom:470.235000px;}
.yda{bottom:471.135000px;}
.y53{bottom:476.535000px;}
.y9d{bottom:480.315000px;}
.y119{bottom:485.535000px;}
.ye7{bottom:486.975000px;}
.y10b{bottom:489.135000px;}
.y52{bottom:497.235000px;}
.y7b{bottom:499.935000px;}
.yd9{bottom:500.835000px;}
.y9c{bottom:501.015000px;}
.ye6{bottom:502.455000px;}
.y118{bottom:506.235000px;}
.y10a{bottom:509.835000px;}
.y51{bottom:517.935000px;}
.yd8{bottom:521.535000px;}
.y7a{bottom:529.635000px;}
.y109{bottom:530.535000px;}
.y9b{bottom:530.715000px;}
.y117{bottom:535.935000px;}
.yd7{bottom:542.235000px;}
.y50{bottom:547.635000px;}
.y108{bottom:551.235000px;}
.y9a{bottom:551.415000px;}
.y116{bottom:556.635000px;}
.y79{bottom:559.335000px;}
.yd6{bottom:562.935000px;}
.y107{bottom:571.935000px;}
.y4f{bottom:577.335000px;}
.y78{bottom:580.035000px;}
.y24{bottom:582.735000px;}
.yd5{bottom:583.635000px;}
.y106{bottom:592.635000px;}
.y99{bottom:593.535000px;}
.y115{bottom:598.035000px;}
.y77{bottom:600.735000px;}
.yd4{bottom:604.365000px;}
.y23{bottom:606.525000px;}
.y4e{bottom:607.065000px;}
.y98{bottom:612.645000px;}
.y105{bottom:613.365000px;}
.y76{bottom:621.465000px;}
.yd3{bottom:625.065000px;}
.y4d{bottom:627.765000px;}
.ybc{bottom:628.305000px;}
.y97{bottom:631.725000px;}
.y10{bottom:632.265000px;}
.y104{bottom:643.065000px;}
.yd2{bottom:645.765000px;}
.y4c{bottom:648.465000px;}
.y94{bottom:650.805000px;}
.y75{bottom:651.165000px;}
.ybb{bottom:653.865000px;}
.y103{bottom:663.765000px;}
.yd1{bottom:666.465000px;}
.y4b{bottom:669.165000px;}
.y95{bottom:670.065000px;}
.y74{bottom:671.865000px;}
.yba{bottom:674.565000px;}
.y102{bottom:684.465000px;}
.yd0{bottom:687.165000px;}
.y73{bottom:692.565000px;}
.yb9{bottom:695.265000px;}
.y4a{bottom:698.865000px;}
.y93{bottom:701.565000px;}
.y101{bottom:705.165000px;}
.ycf{bottom:707.865000px;}
.ye5{bottom:710.565000px;}
.y72{bottom:713.265000px;}
.yb8{bottom:715.965000px;}
.y49{bottom:719.565000px;}
.y100{bottom:725.865000px;}
.yce{bottom:728.565000px;}
.y92{bottom:728.925000px;}
.yb7{bottom:736.665000px;}
.y48{bottom:740.265000px;}
.y71{bottom:742.965000px;}
.yff{bottom:746.565000px;}
.ycd{bottom:749.265000px;}
.y91{bottom:754.485000px;}
.y47{bottom:760.965000px;}
.yb6{bottom:766.365000px;}
.yfe{bottom:767.265000px;}
.ycc{bottom:769.965000px;}
.y70{bottom:772.665000px;}
.y90{bottom:775.185000px;}
.y46{bottom:781.665000px;}
.yb5{bottom:787.065000px;}
.yfd{bottom:787.965000px;}
.ycb{bottom:790.665000px;}
.y6f{bottom:793.365000px;}
.y8f{bottom:795.885000px;}
.yfc{bottom:808.665000px;}
.y45{bottom:811.365000px;}
.yb4{bottom:816.765000px;}
.y6e{bottom:823.065000px;}
.y8e{bottom:825.585000px;}
.yfb{bottom:829.365000px;}
.y44{bottom:832.065000px;}
.yb3{bottom:837.465000px;}
.y114{bottom:841.065000px;}
.y6d{bottom:843.765000px;}
.yfa{bottom:850.065000px;}
.y43{bottom:852.765000px;}
.yb2{bottom:858.165000px;}
.y8d{bottom:863.745000px;}
.y6c{bottom:864.465000px;}
.y127{bottom:867.165000px;}
.yf9{bottom:870.810000px;}
.y42{bottom:873.510000px;}
.yca{bottom:882.510000px;}
.y6b{bottom:885.210000px;}
.yb1{bottom:887.910000px;}
.yf8{bottom:891.510000px;}
.y41{bottom:894.210000px;}
.y126{bottom:896.910000px;}
.y8c{bottom:897.450000px;}
.y6a{bottom:905.910000px;}
.yc9{bottom:912.210000px;}
.y40{bottom:914.910000px;}
.yb0{bottom:917.610000px;}
.ye4{bottom:918.870000px;}
.y125{bottom:926.610000px;}
.yc8{bottom:932.910000px;}
.y3f{bottom:935.610000px;}
.yaf{bottom:938.310000px;}
.yc7{bottom:953.610000px;}
.yf{bottom:955.050000px;}
.y3e{bottom:956.310000px;}
.yae{bottom:968.010000px;}
.yc6{bottom:974.310000px;}
.y69{bottom:977.010000px;}
.ye{bottom:977.550000px;}
.y3d{bottom:986.010000px;}
.yad{bottom:988.710000px;}
.yc5{bottom:995.010000px;}
.y68{bottom:997.710000px;}
.yd{bottom:999.330000px;}
.y3c{bottom:1006.710000px;}
.yc4{bottom:1015.710000px;}
.y67{bottom:1018.410000px;}
.yc{bottom:1020.030000px;}
.y3b{bottom:1027.410000px;}
.yc3{bottom:1036.410000px;}
.y66{bottom:1039.110000px;}
.yb{bottom:1040.730000px;}
.y3a{bottom:1048.110000px;}
.yc2{bottom:1057.110000px;}
.y39{bottom:1068.810000px;}
.ya{bottom:1070.430000px;}
.yc1{bottom:1077.810000px;}
.y38{bottom:1089.510000px;}
.y9{bottom:1091.130000px;}
.y65{bottom:1098.510000px;}
.y37{bottom:1110.210000px;}
.y64{bottom:1119.210000px;}
.y6{bottom:1120.830000px;}
.y36{bottom:1139.940000px;}
.y1{bottom:1142.100000px;}
.y33{bottom:1172.340000px;}
.y32{bottom:1193.040000px;}
.h12{height:18.360000px;}
.h13{height:18.396000px;}
.h11{height:37.620000px;}
.h7{height:38.158594px;}
.hb{height:49.868086px;}
.h3{height:52.998047px;}
.h4{height:54.421875px;}
.hf{height:55.503491px;}
.h8{height:58.651172px;}
.hd{height:60.082031px;}
.ha{height:60.226875px;}
.he{height:65.010937px;}
.h10{height:66.757500px;}
.h2{height:67.680000px;}
.h14{height:70.628906px;}
.h5{height:70.664062px;}
.h6{height:72.562500px;}
.h9{height:310.530000px;}
.hc{height:327.810000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wa{width:20.880000px;}
.w7{width:24.480000px;}
.w12{width:62.820000px;}
.wf{width:63.000000px;}
.w10{width:64.476000px;}
.w13{width:72.396000px;}
.w3{width:74.700000px;}
.w11{width:75.060000px;}
.w8{width:178.050000px;}
.wb{width:181.290000px;}
.wd{width:203.970000px;}
.we{width:211.710000px;}
.w4{width:247.710000px;}
.wc{width:259.770000px;}
.w2{width:374.115000px;}
.w6{width:494.175000px;}
.w9{width:494.535000px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:8.100000px;}
.x1e{left:14.760000px;}
.x20{left:15.840000px;}
.x25{left:16.920000px;}
.x22{left:18.765000px;}
.x27{left:20.700000px;}
.x1c{left:23.580000px;}
.x26{left:28.440000px;}
.x28{left:43.734000px;}
.x4{left:66.600000px;}
.x24{left:75.954000px;}
.x1b{left:92.925000px;}
.x19{left:94.860000px;}
.x1{left:98.316000px;}
.x7{left:106.415987px;}
.x16{left:108.036000px;}
.x17{left:109.434000px;}
.x2f{left:111.095987px;}
.xc{left:127.655987px;}
.xf{left:140.975987px;}
.x13{left:148.715987px;}
.x6{left:203.805000px;}
.x15{left:218.729987px;}
.x2b{left:259.769987px;}
.x10{left:288.974987px;}
.x9{left:327.494987px;}
.x18{left:368.535000px;}
.xb{left:384.734987px;}
.x30{left:397.694987px;}
.x12{left:429.374987px;}
.x1d{left:432.255000px;}
.x8{left:437.474987px;}
.x2c{left:444.134987px;}
.xa{left:446.474987px;}
.x3{left:472.425000px;}
.x1f{left:497.445000px;}
.x5{left:547.125000px;}
.x1a{left:573.405000px;}
.xd{left:600.405000px;}
.x14{left:603.104987px;}
.x2e{left:614.264987px;}
.x11{left:621.645000px;}
.xe{left:624.885000px;}
.x21{left:636.945000px;}
.x2a{left:691.709987px;}
.x29{left:692.789987px;}
.x23{left:710.070000px;}
.x2d{left:782.249987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v4{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.ls8{letter-spacing:-0.456533pt;}
.ls12{letter-spacing:-0.367467pt;}
.lsd{letter-spacing:-0.256000pt;}
.ls11{letter-spacing:-0.230933pt;}
.ls13{letter-spacing:-0.192000pt;}
.ls1a{letter-spacing:-0.128000pt;}
.ls6{letter-spacing:-0.047360pt;}
.ls4{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.016000pt;}
.ls7{letter-spacing:0.047360pt;}
.ls19{letter-spacing:0.064000pt;}
.ls1{letter-spacing:0.096000pt;}
.ls2{letter-spacing:0.160000pt;}
.ls3{letter-spacing:0.231040pt;}
.ls0{letter-spacing:0.320000pt;}
.lse{letter-spacing:0.448000pt;}
.lsc{letter-spacing:0.640000pt;}
.ls16{letter-spacing:2.560000pt;}
.ls14{letter-spacing:3.200000pt;}
.lsa{letter-spacing:5.760000pt;}
.ls17{letter-spacing:8.960000pt;}
.ls15{letter-spacing:18.560000pt;}
.ls10{letter-spacing:22.400000pt;}
.ls18{letter-spacing:23.040000pt;}
.ls9{letter-spacing:26.240000pt;}
.lsb{letter-spacing:30.080000pt;}
.lsf{letter-spacing:55.040000pt;}
.ws10{word-spacing:-16.064000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws11{word-spacing:-15.872000pt;}
.wsd{word-spacing:-15.808000pt;}
.wsa{word-spacing:-15.744000pt;}
.wsf{word-spacing:-14.720000pt;}
.ws5{word-spacing:-13.440000pt;}
.ws7{word-spacing:-13.327360pt;}
.ws4{word-spacing:-13.280000pt;}
.ws6{word-spacing:-13.232640pt;}
.wsb{word-spacing:-13.049067pt;}
.wsc{word-spacing:-12.912533pt;}
.ws8{word-spacing:-12.823467pt;}
.ws0{word-spacing:-12.320000pt;}
.ws1{word-spacing:-12.016000pt;}
.wse{word-spacing:-9.280000pt;}
.ws3{word-spacing:-8.640000pt;}
.ws9{word-spacing:0.000000pt;}
._16{margin-left:-1.920000pt;}
._0{margin-left:-1.008000pt;}
._1{width:1.050667pt;}
._7{width:1.982293pt;}
._3{width:2.882987pt;}
._18{width:4.009387pt;}
._5{width:5.152640pt;}
._6{width:6.079147pt;}
._c{width:7.277440pt;}
._d{width:8.457813pt;}
._f{width:9.997013pt;}
._12{width:10.995840pt;}
._a{width:12.335573pt;}
._19{width:13.892693pt;}
._b{width:14.923947pt;}
._e{width:15.829760pt;}
._9{width:17.284907pt;}
._8{width:18.273280pt;}
._1f{width:19.312000pt;}
._22{width:20.528000pt;}
._21{width:21.760000pt;}
._1c{width:22.848000pt;}
._1d{width:23.936000pt;}
._1b{width:24.960000pt;}
._17{width:26.101333pt;}
._15{width:27.114667pt;}
._1e{width:28.103893pt;}
._13{width:29.322240pt;}
._11{width:30.968960pt;}
._24{width:32.709120pt;}
._27{width:33.820587pt;}
._10{width:35.856000pt;}
._20{width:36.768000pt;}
._1a{width:37.712000pt;}
._28{width:39.264000pt;}
._29{width:40.330667pt;}
._26{width:42.304000pt;}
._23{width:45.504000pt;}
._2{width:51.114667pt;}
._4{width:54.554240pt;}
._14{width:752.138667pt;}
._25{width:1193.866667pt;}
.fs3{font-size:34.560000pt;}
.fs6{font-size:37.120000pt;}
.fs2{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs5{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y22{bottom:2.880000pt;}
.y96{bottom:3.360000pt;}
.y4{bottom:12.000000pt;}
.y21{bottom:18.240000pt;}
.y5{bottom:18.720000pt;}
.y3{bottom:25.760000pt;}
.y20{bottom:33.600000pt;}
.y2{bottom:39.520000pt;}
.y1f{bottom:48.960000pt;}
.y8{bottom:50.560000pt;}
.y35{bottom:50.720000pt;}
.y30{bottom:64.160000pt;}
.y1e{bottom:64.320000pt;}
.y7{bottom:68.992000pt;}
.y34{bottom:69.152000pt;}
.y1d{bottom:79.520000pt;}
.y1c{bottom:94.880000pt;}
.y2f{bottom:94.920000pt;}
.y113{bottom:105.952000pt;}
.y1b{bottom:110.240000pt;}
.y2e{bottom:110.280000pt;}
.y63{bottom:113.152000pt;}
.yf7{bottom:113.952000pt;}
.yac{bottom:118.912000pt;}
.y112{bottom:124.352000pt;}
.y1a{bottom:125.600000pt;}
.y2d{bottom:125.640000pt;}
.y8b{bottom:125.952000pt;}
.yc0{bottom:130.272000pt;}
.y62{bottom:131.552000pt;}
.yf6{bottom:132.352000pt;}
.yab{bottom:137.306667pt;}
.y19{bottom:140.960000pt;}
.y2c{bottom:141.000000pt;}
.y124{bottom:141.946667pt;}
.y111{bottom:142.746667pt;}
.y8a{bottom:152.346667pt;}
.yaa{bottom:155.706667pt;}
.y2b{bottom:156.200000pt;}
.y18{bottom:156.320000pt;}
.ybf{bottom:156.346667pt;}
.y61{bottom:157.946667pt;}
.yf5{bottom:158.746667pt;}
.y123{bottom:160.346667pt;}
.y110{bottom:161.146667pt;}
.y89{bottom:170.746667pt;}
.y17{bottom:171.520000pt;}
.y2a{bottom:171.560000pt;}
.ya9{bottom:174.106667pt;}
.yf4{bottom:177.146667pt;}
.ybe{bottom:178.106667pt;}
.y122{bottom:178.746667pt;}
.y10f{bottom:179.546667pt;}
.y60{bottom:184.346667pt;}
.y16{bottom:186.880000pt;}
.y29{bottom:186.920000pt;}
.y88{bottom:189.146667pt;}
.ya8{bottom:192.506667pt;}
.yf3{bottom:195.546667pt;}
.y121{bottom:197.146667pt;}
.y31{bottom:197.466667pt;}
.y15{bottom:202.240000pt;}
.y28{bottom:202.280000pt;}
.y5f{bottom:202.746667pt;}
.y10e{bottom:205.946667pt;}
.y87{bottom:207.546667pt;}
.ya7{bottom:210.906667pt;}
.y25{bottom:212.346667pt;}
.yf2{bottom:213.946667pt;}
.y14{bottom:217.640000pt;}
.y5e{bottom:221.146667pt;}
.y120{bottom:223.546667pt;}
.y86{bottom:225.946667pt;}
.ya6{bottom:229.306667pt;}
.yf1{bottom:232.346667pt;}
.y13{bottom:233.000000pt;}
.y5d{bottom:239.546667pt;}
.y11f{bottom:241.946667pt;}
.y85{bottom:244.346667pt;}
.ya5{bottom:247.706667pt;}
.y27{bottom:248.200000pt;}
.y12{bottom:248.360000pt;}
.yf0{bottom:250.746667pt;}
.ye3{bottom:253.146667pt;}
.y5c{bottom:257.946667pt;}
.y11e{bottom:260.346667pt;}
.y84{bottom:262.746667pt;}
.y11{bottom:263.560000pt;}
.ya4{bottom:266.106667pt;}
.yef{bottom:269.146667pt;}
.ye2{bottom:271.546667pt;}
.y5b{bottom:276.346667pt;}
.y26{bottom:278.920000pt;}
.y83{bottom:281.146667pt;}
.ya3{bottom:284.506667pt;}
.y11d{bottom:286.746667pt;}
.yee{bottom:287.546667pt;}
.ye1{bottom:289.946667pt;}
.y5a{bottom:294.746667pt;}
.y11c{bottom:305.186667pt;}
.yed{bottom:305.986667pt;}
.y82{bottom:307.586667pt;}
.ye0{bottom:308.386667pt;}
.ya2{bottom:310.946667pt;}
.y59{bottom:313.186667pt;}
.y11b{bottom:323.586667pt;}
.yec{bottom:324.386667pt;}
.y81{bottom:325.986667pt;}
.ydf{bottom:326.786667pt;}
.y58{bottom:331.586667pt;}
.ya1{bottom:337.346667pt;}
.yeb{bottom:342.786667pt;}
.y80{bottom:344.386667pt;}
.yde{bottom:345.186667pt;}
.y57{bottom:349.986667pt;}
.ya0{bottom:355.746667pt;}
.yea{bottom:361.186667pt;}
.y7f{bottom:362.786667pt;}
.ydd{bottom:363.586667pt;}
.ybd{bottom:367.106667pt;}
.y56{bottom:368.386667pt;}
.ye9{bottom:379.586667pt;}
.y7e{bottom:381.186667pt;}
.ydc{bottom:381.986667pt;}
.y9f{bottom:382.146667pt;}
.y55{bottom:386.786667pt;}
.y10d{bottom:397.986667pt;}
.y7d{bottom:399.586667pt;}
.ydb{bottom:400.386667pt;}
.y9e{bottom:400.546667pt;}
.y54{bottom:405.186667pt;}
.y11a{bottom:413.186667pt;}
.ye8{bottom:413.506667pt;}
.y10c{bottom:416.386667pt;}
.y7c{bottom:417.986667pt;}
.yda{bottom:418.786667pt;}
.y53{bottom:423.586667pt;}
.y9d{bottom:426.946667pt;}
.y119{bottom:431.586667pt;}
.ye7{bottom:432.866667pt;}
.y10b{bottom:434.786667pt;}
.y52{bottom:441.986667pt;}
.y7b{bottom:444.386667pt;}
.yd9{bottom:445.186667pt;}
.y9c{bottom:445.346667pt;}
.ye6{bottom:446.626667pt;}
.y118{bottom:449.986667pt;}
.y10a{bottom:453.186667pt;}
.y51{bottom:460.386667pt;}
.yd8{bottom:463.586667pt;}
.y7a{bottom:470.786667pt;}
.y109{bottom:471.586667pt;}
.y9b{bottom:471.746667pt;}
.y117{bottom:476.386667pt;}
.yd7{bottom:481.986667pt;}
.y50{bottom:486.786667pt;}
.y108{bottom:489.986667pt;}
.y9a{bottom:490.146667pt;}
.y116{bottom:494.786667pt;}
.y79{bottom:497.186667pt;}
.yd6{bottom:500.386667pt;}
.y107{bottom:508.386667pt;}
.y4f{bottom:513.186667pt;}
.y78{bottom:515.586667pt;}
.y24{bottom:517.986667pt;}
.yd5{bottom:518.786667pt;}
.y106{bottom:526.786667pt;}
.y99{bottom:527.586667pt;}
.y115{bottom:531.586667pt;}
.y77{bottom:533.986667pt;}
.yd4{bottom:537.213333pt;}
.y23{bottom:539.133333pt;}
.y4e{bottom:539.613333pt;}
.y98{bottom:544.573333pt;}
.y105{bottom:545.213333pt;}
.y76{bottom:552.413333pt;}
.yd3{bottom:555.613333pt;}
.y4d{bottom:558.013333pt;}
.ybc{bottom:558.493333pt;}
.y97{bottom:561.533333pt;}
.y10{bottom:562.013333pt;}
.y104{bottom:571.613333pt;}
.yd2{bottom:574.013333pt;}
.y4c{bottom:576.413333pt;}
.y94{bottom:578.493333pt;}
.y75{bottom:578.813333pt;}
.ybb{bottom:581.213333pt;}
.y103{bottom:590.013333pt;}
.yd1{bottom:592.413333pt;}
.y4b{bottom:594.813333pt;}
.y95{bottom:595.613333pt;}
.y74{bottom:597.213333pt;}
.yba{bottom:599.613333pt;}
.y102{bottom:608.413333pt;}
.yd0{bottom:610.813333pt;}
.y73{bottom:615.613333pt;}
.yb9{bottom:618.013333pt;}
.y4a{bottom:621.213333pt;}
.y93{bottom:623.613333pt;}
.y101{bottom:626.813333pt;}
.ycf{bottom:629.213333pt;}
.ye5{bottom:631.613333pt;}
.y72{bottom:634.013333pt;}
.yb8{bottom:636.413333pt;}
.y49{bottom:639.613333pt;}
.y100{bottom:645.213333pt;}
.yce{bottom:647.613333pt;}
.y92{bottom:647.933333pt;}
.yb7{bottom:654.813333pt;}
.y48{bottom:658.013333pt;}
.y71{bottom:660.413333pt;}
.yff{bottom:663.613333pt;}
.ycd{bottom:666.013333pt;}
.y91{bottom:670.653333pt;}
.y47{bottom:676.413333pt;}
.yb6{bottom:681.213333pt;}
.yfe{bottom:682.013333pt;}
.ycc{bottom:684.413333pt;}
.y70{bottom:686.813333pt;}
.y90{bottom:689.053333pt;}
.y46{bottom:694.813333pt;}
.yb5{bottom:699.613333pt;}
.yfd{bottom:700.413333pt;}
.ycb{bottom:702.813333pt;}
.y6f{bottom:705.213333pt;}
.y8f{bottom:707.453333pt;}
.yfc{bottom:718.813333pt;}
.y45{bottom:721.213333pt;}
.yb4{bottom:726.013333pt;}
.y6e{bottom:731.613333pt;}
.y8e{bottom:733.853333pt;}
.yfb{bottom:737.213333pt;}
.y44{bottom:739.613333pt;}
.yb3{bottom:744.413333pt;}
.y114{bottom:747.613333pt;}
.y6d{bottom:750.013333pt;}
.yfa{bottom:755.613333pt;}
.y43{bottom:758.013333pt;}
.yb2{bottom:762.813333pt;}
.y8d{bottom:767.773333pt;}
.y6c{bottom:768.413333pt;}
.y127{bottom:770.813333pt;}
.yf9{bottom:774.053333pt;}
.y42{bottom:776.453333pt;}
.yca{bottom:784.453333pt;}
.y6b{bottom:786.853333pt;}
.yb1{bottom:789.253333pt;}
.yf8{bottom:792.453333pt;}
.y41{bottom:794.853333pt;}
.y126{bottom:797.253333pt;}
.y8c{bottom:797.733333pt;}
.y6a{bottom:805.253333pt;}
.yc9{bottom:810.853333pt;}
.y40{bottom:813.253333pt;}
.yb0{bottom:815.653333pt;}
.ye4{bottom:816.773333pt;}
.y125{bottom:823.653333pt;}
.yc8{bottom:829.253333pt;}
.y3f{bottom:831.653333pt;}
.yaf{bottom:834.053333pt;}
.yc7{bottom:847.653333pt;}
.yf{bottom:848.933333pt;}
.y3e{bottom:850.053333pt;}
.yae{bottom:860.453333pt;}
.yc6{bottom:866.053333pt;}
.y69{bottom:868.453333pt;}
.ye{bottom:868.933333pt;}
.y3d{bottom:876.453333pt;}
.yad{bottom:878.853333pt;}
.yc5{bottom:884.453333pt;}
.y68{bottom:886.853333pt;}
.yd{bottom:888.293333pt;}
.y3c{bottom:894.853333pt;}
.yc4{bottom:902.853333pt;}
.y67{bottom:905.253333pt;}
.yc{bottom:906.693333pt;}
.y3b{bottom:913.253333pt;}
.yc3{bottom:921.253333pt;}
.y66{bottom:923.653333pt;}
.yb{bottom:925.093333pt;}
.y3a{bottom:931.653333pt;}
.yc2{bottom:939.653333pt;}
.y39{bottom:950.053333pt;}
.ya{bottom:951.493333pt;}
.yc1{bottom:958.053333pt;}
.y38{bottom:968.453333pt;}
.y9{bottom:969.893333pt;}
.y65{bottom:976.453333pt;}
.y37{bottom:986.853333pt;}
.y64{bottom:994.853333pt;}
.y6{bottom:996.293333pt;}
.y36{bottom:1013.280000pt;}
.y1{bottom:1015.200000pt;}
.y33{bottom:1042.080000pt;}
.y32{bottom:1060.480000pt;}
.h12{height:16.320000pt;}
.h13{height:16.352000pt;}
.h11{height:33.440000pt;}
.h7{height:33.918750pt;}
.hb{height:44.327188pt;}
.h3{height:47.109375pt;}
.h4{height:48.375000pt;}
.hf{height:49.336436pt;}
.h8{height:52.134375pt;}
.hd{height:53.406250pt;}
.ha{height:53.535000pt;}
.he{height:57.787500pt;}
.h10{height:59.340000pt;}
.h2{height:60.160000pt;}
.h14{height:62.781250pt;}
.h5{height:62.812500pt;}
.h6{height:64.500000pt;}
.h9{height:276.026667pt;}
.hc{height:291.386667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wa{width:18.560000pt;}
.w7{width:21.760000pt;}
.w12{width:55.840000pt;}
.wf{width:56.000000pt;}
.w10{width:57.312000pt;}
.w13{width:64.352000pt;}
.w3{width:66.400000pt;}
.w11{width:66.720000pt;}
.w8{width:158.266667pt;}
.wb{width:161.146667pt;}
.wd{width:181.306667pt;}
.we{width:188.186667pt;}
.w4{width:220.186667pt;}
.wc{width:230.906667pt;}
.w2{width:332.546667pt;}
.w6{width:439.266667pt;}
.w9{width:439.586667pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.200000pt;}
.x1e{left:13.120000pt;}
.x20{left:14.080000pt;}
.x25{left:15.040000pt;}
.x22{left:16.680000pt;}
.x27{left:18.400000pt;}
.x1c{left:20.960000pt;}
.x26{left:25.280000pt;}
.x28{left:38.874667pt;}
.x4{left:59.200000pt;}
.x24{left:67.514667pt;}
.x1b{left:82.600000pt;}
.x19{left:84.320000pt;}
.x1{left:87.392000pt;}
.x7{left:94.591988pt;}
.x16{left:96.032000pt;}
.x17{left:97.274667pt;}
.x2f{left:98.751988pt;}
.xc{left:113.471988pt;}
.xf{left:125.311988pt;}
.x13{left:132.191988pt;}
.x6{left:181.160000pt;}
.x15{left:194.426655pt;}
.x2b{left:230.906655pt;}
.x10{left:256.866655pt;}
.x9{left:291.106655pt;}
.x18{left:327.586667pt;}
.xb{left:341.986655pt;}
.x30{left:353.506655pt;}
.x12{left:381.666655pt;}
.x1d{left:384.226667pt;}
.x8{left:388.866655pt;}
.x2c{left:394.786655pt;}
.xa{left:396.866655pt;}
.x3{left:419.933333pt;}
.x1f{left:442.173333pt;}
.x5{left:486.333333pt;}
.x1a{left:509.693333pt;}
.xd{left:533.693333pt;}
.x14{left:536.093322pt;}
.x2e{left:546.013322pt;}
.x11{left:552.573333pt;}
.xe{left:555.453333pt;}
.x21{left:566.173333pt;}
.x2a{left:614.853322pt;}
.x29{left:615.813322pt;}
.x23{left:631.173333pt;}
.x2d{left:695.333322pt;}
}




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