
    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_f64c6eb1a8bcecd426c60752.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.120605;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_b1ea07a2ba304df28ee68f5b.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_16496046eb165b11ac458ab8.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_3183a11af64bcd7bfe7fa90b.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.112305;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_09d1b89ea9e9b7a0597fff5e.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_8004109eda8fe09ecb5b64bb.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.084961;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_bf5a7dba347a336d8de85952.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.112305;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_53502c3ad226f18ab3201b00.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.208008;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_1f67f76811b8fbeda53616dc.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.084961;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-26.640000px;}
.v2{vertical-align:-14.400000px;}
.v4{vertical-align:-12.240000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:2.880000px;}
.v3{vertical-align:14.400000px;}
.v5{vertical-align:26.640000px;}
.ls10{letter-spacing:-0.144000px;}
.ls0{letter-spacing:0.000000px;}
.lse{letter-spacing:0.056880px;}
.lsa{letter-spacing:0.072000px;}
.ls1{letter-spacing:0.144000px;}
.lsf{letter-spacing:0.216000px;}
.ls8{letter-spacing:0.360000px;}
.ls2{letter-spacing:0.720000px;}
.ls3{letter-spacing:2.801520px;}
.ls9{letter-spacing:2.921520px;}
.lsd{letter-spacing:4.147200px;}
.lsc{letter-spacing:4.376880px;}
.lsb{letter-spacing:16.272000px;}
.ls6{letter-spacing:19.496880px;}
.ls5{letter-spacing:19.987200px;}
.ls4{letter-spacing:20.216880px;}
.ls7{letter-spacing:20.707200px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-72.000000px;}
.ws11{word-spacing:-18.216000px;}
.ws3{word-spacing:-18.144000px;}
.ws1{word-spacing:-18.000000px;}
.ws12{word-spacing:-17.856000px;}
.ws9{word-spacing:-15.840000px;}
.ws10{word-spacing:-13.716000px;}
.ws8{word-spacing:-11.303280px;}
.wsc{word-spacing:-0.384000px;}
.wsf{word-spacing:-0.360000px;}
.ws2{word-spacing:0.000000px;}
.ws7{word-spacing:0.216000px;}
.wse{word-spacing:0.336000px;}
.ws5{word-spacing:0.396000px;}
.ws6{word-spacing:7.907040px;}
.wsd{word-spacing:8.627040px;}
.wsb{word-spacing:9.347040px;}
.wsa{word-spacing:12.947040px;}
.ws4{word-spacing:13.667040px;}
._1e{margin-left:-6.900000px;}
._17{margin-left:-5.184000px;}
._9{margin-left:-4.032000px;}
._a{margin-left:-2.796000px;}
._1{margin-left:-1.152000px;}
._0{width:1.128000px;}
._5{width:2.304000px;}
._2{width:3.312000px;}
._3{width:4.416000px;}
._7{width:5.472000px;}
._d{width:6.552000px;}
._4{width:7.704000px;}
._14{width:8.784000px;}
._e{width:9.864000px;}
._f{width:11.088000px;}
._10{width:12.120000px;}
._18{width:13.224000px;}
._12{width:14.256000px;}
._8{width:15.552000px;}
._11{width:16.632000px;}
._1d{width:17.784000px;}
._16{width:19.632000px;}
._c{width:21.312000px;}
._b{width:22.896000px;}
._1c{width:24.240000px;}
._19{width:25.344000px;}
._24{width:26.856000px;}
._15{width:27.864000px;}
._6{width:29.376000px;}
._1b{width:30.744000px;}
._26{width:32.400000px;}
._25{width:33.408000px;}
._22{width:35.016000px;}
._13{width:36.336000px;}
._23{width:37.344000px;}
._1f{width:38.520000px;}
._20{width:39.696000px;}
._1a{width:41.616000px;}
._21{width:53.352000px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:51.120000px;}
.fs3{font-size:54.000000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y52{bottom:7.020000px;}
.y90{bottom:7.050000px;}
.y55{bottom:7.200000px;}
.y7e{bottom:10.620000px;}
.y81{bottom:10.800000px;}
.y5f{bottom:30.774000px;}
.y57{bottom:30.780000px;}
.y54{bottom:30.960000px;}
.y7f{bottom:34.020000px;}
.y59{bottom:54.720000px;}
.y5b{bottom:54.765000px;}
.y2{bottom:55.440000px;}
.y1{bottom:75.456000px;}
.y7c{bottom:114.876000px;}
.y2c{bottom:115.056000px;}
.ycc{bottom:115.416000px;}
.ya3{bottom:116.496000px;}
.y5e{bottom:121.176000px;}
.y112{bottom:124.596000px;}
.y50{bottom:130.716000px;}
.ya2{bottom:133.956000px;}
.ybb{bottom:143.316000px;}
.y7b{bottom:145.836000px;}
.y2b{bottom:146.016000px;}
.ycb{bottom:146.376000px;}
.y111{bottom:148.356000px;}
.ye9{bottom:154.470000px;}
.ya1{bottom:157.710000px;}
.y4f{bottom:161.850000px;}
.y5d{bottom:168.690000px;}
.y110{bottom:172.110000px;}
.y2a{bottom:176.970000px;}
.yca{bottom:177.510000px;}
.ye8{bottom:178.410000px;}
.ya0{bottom:181.470000px;}
.y4e{bottom:192.810000px;}
.y10f{bottom:195.870000px;}
.ye7{bottom:202.170000px;}
.y9f{bottom:205.410000px;}
.y7a{bottom:207.930000px;}
.y29{bottom:208.110000px;}
.yc9{bottom:208.470000px;}
.y10e{bottom:219.810000px;}
.y4d{bottom:223.950000px;}
.ye6{bottom:225.930000px;}
.y9e{bottom:229.170000px;}
.y28{bottom:239.070000px;}
.yc8{bottom:239.610000px;}
.y5c{bottom:240.150000px;}
.y10d{bottom:243.570000px;}
.ye5{bottom:249.690000px;}
.y9d{bottom:252.930000px;}
.y4c{bottom:254.910000px;}
.y27{bottom:263.010000px;}
.y10c{bottom:267.330000px;}
.y79{bottom:270.030000px;}
.yc7{bottom:270.570000px;}
.ye4{bottom:273.630000px;}
.y9c{bottom:276.690000px;}
.y4b{bottom:286.050000px;}
.y26{bottom:286.770000px;}
.y5a{bottom:287.670000px;}
.y10b{bottom:291.090000px;}
.ye3{bottom:297.390000px;}
.y78{bottom:301.170000px;}
.y9b{bottom:301.350000px;}
.yc6{bottom:301.710000px;}
.y25{bottom:310.530000px;}
.y10a{bottom:315.030000px;}
.y4a{bottom:317.010000px;}
.ye2{bottom:321.150000px;}
.y77{bottom:332.130000px;}
.yc5{bottom:332.670000px;}
.y24{bottom:334.290000px;}
.y109{bottom:338.835000px;}
.y9a{bottom:340.275000px;}
.ye1{bottom:344.955000px;}
.y49{bottom:348.015000px;}
.y23{bottom:358.275000px;}
.y58{bottom:359.175000px;}
.y108{bottom:362.595000px;}
.y76{bottom:363.315000px;}
.yc4{bottom:363.855000px;}
.ye0{bottom:368.715000px;}
.y99{bottom:371.235000px;}
.y48{bottom:379.155000px;}
.y22{bottom:382.035000px;}
.y107{bottom:386.355000px;}
.y98{bottom:388.695000px;}
.ydf{bottom:392.655000px;}
.y75{bottom:394.275000px;}
.yc3{bottom:394.815000px;}
.y21{bottom:405.795000px;}
.y47{bottom:410.115000px;}
.y97{bottom:412.635000px;}
.yde{bottom:416.415000px;}
.y74{bottom:425.415000px;}
.yc2{bottom:425.955000px;}
.y20{bottom:429.555000px;}
.y56{bottom:430.635000px;}
.y106{bottom:434.055000px;}
.y96{bottom:436.395000px;}
.ydd{bottom:440.175000px;}
.y46{bottom:441.255000px;}
.y1f{bottom:453.495000px;}
.y73{bottom:456.375000px;}
.yc1{bottom:456.915000px;}
.y105{bottom:457.815000px;}
.y95{bottom:460.155000px;}
.ydc{bottom:463.935000px;}
.y45{bottom:472.215000px;}
.yba{bottom:472.755000px;}
.y1e{bottom:477.255000px;}
.y53{bottom:478.155000px;}
.y104{bottom:481.575000px;}
.y94{bottom:483.915000px;}
.y72{bottom:487.515000px;}
.ydb{bottom:487.875000px;}
.yc0{bottom:488.055000px;}
.yb9{bottom:496.515000px;}
.y1d{bottom:501.015000px;}
.y44{bottom:503.355000px;}
.y103{bottom:505.335000px;}
.y93{bottom:508.575000px;}
.yda{bottom:511.635000px;}
.y71{bottom:518.475000px;}
.ybf{bottom:519.015000px;}
.yb8{bottom:520.275000px;}
.y1c{bottom:524.775000px;}
.y51{bottom:526.575000px;}
.y102{bottom:529.275000px;}
.y43{bottom:534.315000px;}
.yd9{bottom:535.395000px;}
.yb7{bottom:544.035000px;}
.y92{bottom:547.455000px;}
.y1b{bottom:548.715000px;}
.y70{bottom:549.795000px;}
.ybe{bottom:550.155000px;}
.y101{bottom:553.035000px;}
.yd8{bottom:559.155000px;}
.y42{bottom:565.455000px;}
.yb6{bottom:567.975000px;}
.y1a{bottom:572.475000px;}
.y100{bottom:576.795000px;}
.ybd{bottom:577.155000px;}
.y6f{bottom:581.115000px;}
.y91{bottom:582.195000px;}
.yd7{bottom:583.095000px;}
.yb5{bottom:591.735000px;}
.y19{bottom:596.235000px;}
.y41{bottom:596.415000px;}
.y8f{bottom:598.575000px;}
.yff{bottom:600.555000px;}
.yd6{bottom:606.885000px;}
.y6e{bottom:615.345000px;}
.yb4{bottom:615.525000px;}
.y18{bottom:620.025000px;}
.y8e{bottom:622.365000px;}
.yfe{bottom:624.525000px;}
.y40{bottom:627.585000px;}
.yd5{bottom:630.645000px;}
.yb3{bottom:639.285000px;}
.y17{bottom:643.965000px;}
.y8d{bottom:646.305000px;}
.yfd{bottom:648.285000px;}
.y6d{bottom:649.725000px;}
.yd4{bottom:654.405000px;}
.y3f{bottom:658.545000px;}
.yb2{bottom:663.945000px;}
.y16{bottom:667.725000px;}
.y8c{bottom:670.065000px;}
.yfc{bottom:672.045000px;}
.yd3{bottom:678.345000px;}
.y6c{bottom:685.725000px;}
.y3e{bottom:689.685000px;}
.y15{bottom:691.485000px;}
.y8b{bottom:693.825000px;}
.yfb{bottom:695.805000px;}
.yd2{bottom:702.105000px;}
.yb1{bottom:702.825000px;}
.y8a{bottom:718.485000px;}
.yfa{bottom:719.745000px;}
.y6b{bottom:720.285000px;}
.y3d{bottom:720.645000px;}
.y14{bottom:722.445000px;}
.yd1{bottom:725.865000px;}
.yb0{bottom:733.785000px;}
.yf9{bottom:743.505000px;}
.yd0{bottom:749.625000px;}
.y3c{bottom:751.785000px;}
.y13{bottom:753.585000px;}
.y6a{bottom:754.665000px;}
.y89{bottom:757.185000px;}
.yaf{bottom:764.925000px;}
.yf8{bottom:767.265000px;}
.ycf{bottom:773.565000px;}
.yae{bottom:782.385000px;}
.y3b{bottom:782.745000px;}
.y12{bottom:784.545000px;}
.y88{bottom:788.325000px;}
.y69{bottom:789.225000px;}
.yf7{bottom:791.025000px;}
.yce{bottom:797.325000px;}
.y87{bottom:805.785000px;}
.yad{bottom:806.145000px;}
.y3a{bottom:813.885000px;}
.yf6{bottom:814.965000px;}
.y11{bottom:815.685000px;}
.ycd{bottom:821.085000px;}
.y68{bottom:823.605000px;}
.y86{bottom:829.005000px;}
.yac{bottom:829.905000px;}
.yf5{bottom:838.725000px;}
.y39{bottom:844.845000px;}
.y10{bottom:846.645000px;}
.y85{bottom:852.405000px;}
.yab{bottom:853.665000px;}
.y67{bottom:855.105000px;}
.yf4{bottom:862.485000px;}
.ybc{bottom:864.285000px;}
.y84{bottom:875.670000px;}
.y38{bottom:876.030000px;}
.yf{bottom:877.830000px;}
.yaa{bottom:878.370000px;}
.y66{bottom:886.110000px;}
.yf3{bottom:886.290000px;}
.y83{bottom:899.070000px;}
.y37{bottom:906.990000px;}
.ye{bottom:908.790000px;}
.yf2{bottom:910.050000px;}
.y65{bottom:917.250000px;}
.y82{bottom:922.290000px;}
.yf1{bottom:933.990000px;}
.y36{bottom:938.130000px;}
.yd{bottom:939.930000px;}
.y80{bottom:945.510000px;}
.y64{bottom:948.210000px;}
.yf0{bottom:957.750000px;}
.ya9{bottom:965.670000px;}
.y35{bottom:969.090000px;}
.y7d{bottom:969.630000px;}
.yc{bottom:970.890000px;}
.y63{bottom:979.350000px;}
.yef{bottom:981.510000px;}
.ya8{bottom:989.610000px;}
.y62{bottom:996.810000px;}
.y34{bottom:1000.230000px;}
.yb{bottom:1002.030000px;}
.yee{bottom:1005.270000px;}
.ya7{bottom:1013.370000px;}
.yed{bottom:1029.210000px;}
.y33{bottom:1031.190000px;}
.ya{bottom:1032.990000px;}
.ya6{bottom:1037.130000px;}
.yec{bottom:1052.970000px;}
.ya5{bottom:1060.890000px;}
.y32{bottom:1062.330000px;}
.y9{bottom:1064.130000px;}
.y61{bottom:1068.270000px;}
.yeb{bottom:1076.730000px;}
.ya4{bottom:1085.550000px;}
.y8{bottom:1087.890000px;}
.y31{bottom:1093.290000px;}
.yea{bottom:1100.490000px;}
.y7{bottom:1111.650000px;}
.y60{bottom:1116.510000px;}
.y30{bottom:1124.430000px;}
.y6{bottom:1135.590000px;}
.y2f{bottom:1145.700000px;}
.y5{bottom:1159.380000px;}
.y2e{bottom:1168.380000px;}
.y4{bottom:1183.140000px;}
.y2d{bottom:1192.140000px;}
.y3{bottom:1214.100000px;}
.h11{height:23.220000px;}
.h12{height:23.256000px;}
.h10{height:23.400000px;}
.h7{height:23.760000px;}
.hc{height:23.796000px;}
.h13{height:23.940000px;}
.h14{height:23.976000px;}
.he{height:46.620000px;}
.h9{height:47.520000px;}
.h8{height:47.700000px;}
.hf{height:48.410156px;}
.h3{height:50.800781px;}
.h6{height:58.429688px;}
.h5{height:59.343750px;}
.h4{height:64.546875px;}
.h2{height:65.884219px;}
.hd{height:66.934688px;}
.ha{height:71.460000px;}
.hb{height:71.496000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w8{width:63.720000px;}
.w1c{width:64.620000px;}
.w22{width:65.880000px;}
.w16{width:69.660000px;}
.w11{width:73.296000px;}
.wb{width:74.340000px;}
.wa{width:74.520000px;}
.w7{width:74.556000px;}
.w1d{width:82.296000px;}
.w23{width:83.736000px;}
.w9{width:84.996000px;}
.w17{width:88.956000px;}
.wd{width:95.580000px;}
.wc{width:95.796000px;}
.w1b{width:96.876000px;}
.w21{width:98.496000px;}
.w12{width:98.640000px;}
.w15{width:104.616000px;}
.w1a{width:107.820000px;}
.w1e{width:108.540000px;}
.w20{width:109.980000px;}
.w24{width:110.520000px;}
.w10{width:116.100000px;}
.w14{width:116.640000px;}
.w18{width:117.180000px;}
.wf{width:129.276000px;}
.w27{width:146.196000px;}
.w6{width:159.480000px;}
.w5{width:167.430000px;}
.w13{width:180.030000px;}
.w26{width:191.550000px;}
.w3{width:195.330000px;}
.w1f{width:208.470000px;}
.w19{width:216.930000px;}
.we{width:259.770000px;}
.w4{width:314.310000px;}
.w25{width:339.330000px;}
.w28{width:677.085000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x12{left:8.100000px;}
.x17{left:24.300000px;}
.x16{left:30.060000px;}
.x18{left:31.680000px;}
.x15{left:32.940000px;}
.x2{left:108.035987px;}
.x9{left:120.815987px;}
.x2f{left:162.029987px;}
.x10{left:179.129987px;}
.xb{left:187.049987px;}
.x1a{left:216.029987px;}
.xa{left:228.089987px;}
.x1b{left:267.510000px;}
.xe{left:273.269987px;}
.x26{left:288.075000px;}
.x13{left:303.375000px;}
.x30{left:316.515000px;}
.xd{left:319.214987px;}
.xc{left:324.434987px;}
.x4{left:332.354987px;}
.xf{left:333.974987px;}
.x1c{left:342.075000px;}
.x11{left:346.934987px;}
.x19{left:365.474987px;}
.x22{left:367.815000px;}
.x27{left:404.715000px;}
.x1d{left:405.795000px;}
.x31{left:426.495000px;}
.x2b{left:432.795000px;}
.x1{left:434.054987px;}
.x3{left:446.474987px;}
.x1e{left:490.785000px;}
.x23{left:497.085000px;}
.x28{left:509.325000px;}
.x32{left:524.985000px;}
.x2c{left:529.665000px;}
.x8{left:545.504987px;}
.x1f{left:565.305000px;}
.x7{left:576.464987px;}
.x29{left:578.985000px;}
.x33{left:590.865000px;}
.x6{left:592.484987px;}
.x2d{left:594.285000px;}
.x24{left:613.185000px;}
.x14{left:617.685000px;}
.x5{left:618.944987px;}
.x20{left:639.645000px;}
.x2a{left:667.950000px;}
.x34{left:674.610000px;}
.x2e{left:676.590000px;}
.x25{left:686.490000px;}
.x21{left:735.450000px;}
.x35{left:799.709987px;}
@media print{
.v1{vertical-align:-23.680000pt;}
.v2{vertical-align:-12.800000pt;}
.v4{vertical-align:-10.880000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:2.560000pt;}
.v3{vertical-align:12.800000pt;}
.v5{vertical-align:23.680000pt;}
.ls10{letter-spacing:-0.128000pt;}
.ls0{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.050560pt;}
.lsa{letter-spacing:0.064000pt;}
.ls1{letter-spacing:0.128000pt;}
.lsf{letter-spacing:0.192000pt;}
.ls8{letter-spacing:0.320000pt;}
.ls2{letter-spacing:0.640000pt;}
.ls3{letter-spacing:2.490240pt;}
.ls9{letter-spacing:2.596907pt;}
.lsd{letter-spacing:3.686400pt;}
.lsc{letter-spacing:3.890560pt;}
.lsb{letter-spacing:14.464000pt;}
.ls6{letter-spacing:17.330560pt;}
.ls5{letter-spacing:17.766400pt;}
.ls4{letter-spacing:17.970560pt;}
.ls7{letter-spacing:18.406400pt;}
.ws0{word-spacing:-64.000000pt;}
.ws11{word-spacing:-16.192000pt;}
.ws3{word-spacing:-16.128000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws12{word-spacing:-15.872000pt;}
.ws9{word-spacing:-14.080000pt;}
.ws10{word-spacing:-12.192000pt;}
.ws8{word-spacing:-10.047360pt;}
.wsc{word-spacing:-0.341333pt;}
.wsf{word-spacing:-0.320000pt;}
.ws2{word-spacing:0.000000pt;}
.ws7{word-spacing:0.192000pt;}
.wse{word-spacing:0.298667pt;}
.ws5{word-spacing:0.352000pt;}
.ws6{word-spacing:7.028480pt;}
.wsd{word-spacing:7.668480pt;}
.wsb{word-spacing:8.308480pt;}
.wsa{word-spacing:11.508480pt;}
.ws4{word-spacing:12.148480pt;}
._1e{margin-left:-6.133333pt;}
._17{margin-left:-4.608000pt;}
._9{margin-left:-3.584000pt;}
._a{margin-left:-2.485333pt;}
._1{margin-left:-1.024000pt;}
._0{width:1.002667pt;}
._5{width:2.048000pt;}
._2{width:2.944000pt;}
._3{width:3.925333pt;}
._7{width:4.864000pt;}
._d{width:5.824000pt;}
._4{width:6.848000pt;}
._14{width:7.808000pt;}
._e{width:8.768000pt;}
._f{width:9.856000pt;}
._10{width:10.773333pt;}
._18{width:11.754667pt;}
._12{width:12.672000pt;}
._8{width:13.824000pt;}
._11{width:14.784000pt;}
._1d{width:15.808000pt;}
._16{width:17.450667pt;}
._c{width:18.944000pt;}
._b{width:20.352000pt;}
._1c{width:21.546667pt;}
._19{width:22.528000pt;}
._24{width:23.872000pt;}
._15{width:24.768000pt;}
._6{width:26.112000pt;}
._1b{width:27.328000pt;}
._26{width:28.800000pt;}
._25{width:29.696000pt;}
._22{width:31.125333pt;}
._13{width:32.298667pt;}
._23{width:33.194667pt;}
._1f{width:34.240000pt;}
._20{width:35.285333pt;}
._1a{width:36.992000pt;}
._21{width:47.424000pt;}
.fs2{font-size:45.440000pt;}
.fs3{font-size:48.000000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y52{bottom:6.240000pt;}
.y90{bottom:6.266667pt;}
.y55{bottom:6.400000pt;}
.y7e{bottom:9.440000pt;}
.y81{bottom:9.600000pt;}
.y5f{bottom:27.354667pt;}
.y57{bottom:27.360000pt;}
.y54{bottom:27.520000pt;}
.y7f{bottom:30.240000pt;}
.y59{bottom:48.640000pt;}
.y5b{bottom:48.680000pt;}
.y2{bottom:49.280000pt;}
.y1{bottom:67.072000pt;}
.y7c{bottom:102.112000pt;}
.y2c{bottom:102.272000pt;}
.ycc{bottom:102.592000pt;}
.ya3{bottom:103.552000pt;}
.y5e{bottom:107.712000pt;}
.y112{bottom:110.752000pt;}
.y50{bottom:116.192000pt;}
.ya2{bottom:119.072000pt;}
.ybb{bottom:127.392000pt;}
.y7b{bottom:129.632000pt;}
.y2b{bottom:129.792000pt;}
.ycb{bottom:130.112000pt;}
.y111{bottom:131.872000pt;}
.ye9{bottom:137.306667pt;}
.ya1{bottom:140.186667pt;}
.y4f{bottom:143.866667pt;}
.y5d{bottom:149.946667pt;}
.y110{bottom:152.986667pt;}
.y2a{bottom:157.306667pt;}
.yca{bottom:157.786667pt;}
.ye8{bottom:158.586667pt;}
.ya0{bottom:161.306667pt;}
.y4e{bottom:171.386667pt;}
.y10f{bottom:174.106667pt;}
.ye7{bottom:179.706667pt;}
.y9f{bottom:182.586667pt;}
.y7a{bottom:184.826667pt;}
.y29{bottom:184.986667pt;}
.yc9{bottom:185.306667pt;}
.y10e{bottom:195.386667pt;}
.y4d{bottom:199.066667pt;}
.ye6{bottom:200.826667pt;}
.y9e{bottom:203.706667pt;}
.y28{bottom:212.506667pt;}
.yc8{bottom:212.986667pt;}
.y5c{bottom:213.466667pt;}
.y10d{bottom:216.506667pt;}
.ye5{bottom:221.946667pt;}
.y9d{bottom:224.826667pt;}
.y4c{bottom:226.586667pt;}
.y27{bottom:233.786667pt;}
.y10c{bottom:237.626667pt;}
.y79{bottom:240.026667pt;}
.yc7{bottom:240.506667pt;}
.ye4{bottom:243.226667pt;}
.y9c{bottom:245.946667pt;}
.y4b{bottom:254.266667pt;}
.y26{bottom:254.906667pt;}
.y5a{bottom:255.706667pt;}
.y10b{bottom:258.746667pt;}
.ye3{bottom:264.346667pt;}
.y78{bottom:267.706667pt;}
.y9b{bottom:267.866667pt;}
.yc6{bottom:268.186667pt;}
.y25{bottom:276.026667pt;}
.y10a{bottom:280.026667pt;}
.y4a{bottom:281.786667pt;}
.ye2{bottom:285.466667pt;}
.y77{bottom:295.226667pt;}
.yc5{bottom:295.706667pt;}
.y24{bottom:297.146667pt;}
.y109{bottom:301.186667pt;}
.y9a{bottom:302.466667pt;}
.ye1{bottom:306.626667pt;}
.y49{bottom:309.346667pt;}
.y23{bottom:318.466667pt;}
.y58{bottom:319.266667pt;}
.y108{bottom:322.306667pt;}
.y76{bottom:322.946667pt;}
.yc4{bottom:323.426667pt;}
.ye0{bottom:327.746667pt;}
.y99{bottom:329.986667pt;}
.y48{bottom:337.026667pt;}
.y22{bottom:339.586667pt;}
.y107{bottom:343.426667pt;}
.y98{bottom:345.506667pt;}
.ydf{bottom:349.026667pt;}
.y75{bottom:350.466667pt;}
.yc3{bottom:350.946667pt;}
.y21{bottom:360.706667pt;}
.y47{bottom:364.546667pt;}
.y97{bottom:366.786667pt;}
.yde{bottom:370.146667pt;}
.y74{bottom:378.146667pt;}
.yc2{bottom:378.626667pt;}
.y20{bottom:381.826667pt;}
.y56{bottom:382.786667pt;}
.y106{bottom:385.826667pt;}
.y96{bottom:387.906667pt;}
.ydd{bottom:391.266667pt;}
.y46{bottom:392.226667pt;}
.y1f{bottom:403.106667pt;}
.y73{bottom:405.666667pt;}
.yc1{bottom:406.146667pt;}
.y105{bottom:406.946667pt;}
.y95{bottom:409.026667pt;}
.ydc{bottom:412.386667pt;}
.y45{bottom:419.746667pt;}
.yba{bottom:420.226667pt;}
.y1e{bottom:424.226667pt;}
.y53{bottom:425.026667pt;}
.y104{bottom:428.066667pt;}
.y94{bottom:430.146667pt;}
.y72{bottom:433.346667pt;}
.ydb{bottom:433.666667pt;}
.yc0{bottom:433.826667pt;}
.yb9{bottom:441.346667pt;}
.y1d{bottom:445.346667pt;}
.y44{bottom:447.426667pt;}
.y103{bottom:449.186667pt;}
.y93{bottom:452.066667pt;}
.yda{bottom:454.786667pt;}
.y71{bottom:460.866667pt;}
.ybf{bottom:461.346667pt;}
.yb8{bottom:462.466667pt;}
.y1c{bottom:466.466667pt;}
.y51{bottom:468.066667pt;}
.y102{bottom:470.466667pt;}
.y43{bottom:474.946667pt;}
.yd9{bottom:475.906667pt;}
.yb7{bottom:483.586667pt;}
.y92{bottom:486.626667pt;}
.y1b{bottom:487.746667pt;}
.y70{bottom:488.706667pt;}
.ybe{bottom:489.026667pt;}
.y101{bottom:491.586667pt;}
.yd8{bottom:497.026667pt;}
.y42{bottom:502.626667pt;}
.yb6{bottom:504.866667pt;}
.y1a{bottom:508.866667pt;}
.y100{bottom:512.706667pt;}
.ybd{bottom:513.026667pt;}
.y6f{bottom:516.546667pt;}
.y91{bottom:517.506667pt;}
.yd7{bottom:518.306667pt;}
.yb5{bottom:525.986667pt;}
.y19{bottom:529.986667pt;}
.y41{bottom:530.146667pt;}
.y8f{bottom:532.066667pt;}
.yff{bottom:533.826667pt;}
.yd6{bottom:539.453333pt;}
.y6e{bottom:546.973333pt;}
.yb4{bottom:547.133333pt;}
.y18{bottom:551.133333pt;}
.y8e{bottom:553.213333pt;}
.yfe{bottom:555.133333pt;}
.y40{bottom:557.853333pt;}
.yd5{bottom:560.573333pt;}
.yb3{bottom:568.253333pt;}
.y17{bottom:572.413333pt;}
.y8d{bottom:574.493333pt;}
.yfd{bottom:576.253333pt;}
.y6d{bottom:577.533333pt;}
.yd4{bottom:581.693333pt;}
.y3f{bottom:585.373333pt;}
.yb2{bottom:590.173333pt;}
.y16{bottom:593.533333pt;}
.y8c{bottom:595.613333pt;}
.yfc{bottom:597.373333pt;}
.yd3{bottom:602.973333pt;}
.y6c{bottom:609.533333pt;}
.y3e{bottom:613.053333pt;}
.y15{bottom:614.653333pt;}
.y8b{bottom:616.733333pt;}
.yfb{bottom:618.493333pt;}
.yd2{bottom:624.093333pt;}
.yb1{bottom:624.733333pt;}
.y8a{bottom:638.653333pt;}
.yfa{bottom:639.773333pt;}
.y6b{bottom:640.253333pt;}
.y3d{bottom:640.573333pt;}
.y14{bottom:642.173333pt;}
.yd1{bottom:645.213333pt;}
.yb0{bottom:652.253333pt;}
.yf9{bottom:660.893333pt;}
.yd0{bottom:666.333333pt;}
.y3c{bottom:668.253333pt;}
.y13{bottom:669.853333pt;}
.y6a{bottom:670.813333pt;}
.y89{bottom:673.053333pt;}
.yaf{bottom:679.933333pt;}
.yf8{bottom:682.013333pt;}
.ycf{bottom:687.613333pt;}
.yae{bottom:695.453333pt;}
.y3b{bottom:695.773333pt;}
.y12{bottom:697.373333pt;}
.y88{bottom:700.733333pt;}
.y69{bottom:701.533333pt;}
.yf7{bottom:703.133333pt;}
.yce{bottom:708.733333pt;}
.y87{bottom:716.253333pt;}
.yad{bottom:716.573333pt;}
.y3a{bottom:723.453333pt;}
.yf6{bottom:724.413333pt;}
.y11{bottom:725.053333pt;}
.ycd{bottom:729.853333pt;}
.y68{bottom:732.093333pt;}
.y86{bottom:736.893333pt;}
.yac{bottom:737.693333pt;}
.yf5{bottom:745.533333pt;}
.y39{bottom:750.973333pt;}
.y10{bottom:752.573333pt;}
.y85{bottom:757.693333pt;}
.yab{bottom:758.813333pt;}
.y67{bottom:760.093333pt;}
.yf4{bottom:766.653333pt;}
.ybc{bottom:768.253333pt;}
.y84{bottom:778.373333pt;}
.y38{bottom:778.693333pt;}
.yf{bottom:780.293333pt;}
.yaa{bottom:780.773333pt;}
.y66{bottom:787.653333pt;}
.yf3{bottom:787.813333pt;}
.y83{bottom:799.173333pt;}
.y37{bottom:806.213333pt;}
.ye{bottom:807.813333pt;}
.yf2{bottom:808.933333pt;}
.y65{bottom:815.333333pt;}
.y82{bottom:819.813333pt;}
.yf1{bottom:830.213333pt;}
.y36{bottom:833.893333pt;}
.yd{bottom:835.493333pt;}
.y80{bottom:840.453333pt;}
.y64{bottom:842.853333pt;}
.yf0{bottom:851.333333pt;}
.ya9{bottom:858.373333pt;}
.y35{bottom:861.413333pt;}
.y7d{bottom:861.893333pt;}
.yc{bottom:863.013333pt;}
.y63{bottom:870.533333pt;}
.yef{bottom:872.453333pt;}
.ya8{bottom:879.653333pt;}
.y62{bottom:886.053333pt;}
.y34{bottom:889.093333pt;}
.yb{bottom:890.693333pt;}
.yee{bottom:893.573333pt;}
.ya7{bottom:900.773333pt;}
.yed{bottom:914.853333pt;}
.y33{bottom:916.613333pt;}
.ya{bottom:918.213333pt;}
.ya6{bottom:921.893333pt;}
.yec{bottom:935.973333pt;}
.ya5{bottom:943.013333pt;}
.y32{bottom:944.293333pt;}
.y9{bottom:945.893333pt;}
.y61{bottom:949.573333pt;}
.yeb{bottom:957.093333pt;}
.ya4{bottom:964.933333pt;}
.y8{bottom:967.013333pt;}
.y31{bottom:971.813333pt;}
.yea{bottom:978.213333pt;}
.y7{bottom:988.133333pt;}
.y60{bottom:992.453333pt;}
.y30{bottom:999.493333pt;}
.y6{bottom:1009.413333pt;}
.y2f{bottom:1018.400000pt;}
.y5{bottom:1030.560000pt;}
.y2e{bottom:1038.560000pt;}
.y4{bottom:1051.680000pt;}
.y2d{bottom:1059.680000pt;}
.y3{bottom:1079.200000pt;}
.h11{height:20.640000pt;}
.h12{height:20.672000pt;}
.h10{height:20.800000pt;}
.h7{height:21.120000pt;}
.hc{height:21.152000pt;}
.h13{height:21.280000pt;}
.h14{height:21.312000pt;}
.he{height:41.440000pt;}
.h9{height:42.240000pt;}
.h8{height:42.400000pt;}
.hf{height:43.031250pt;}
.h3{height:45.156250pt;}
.h6{height:51.937500pt;}
.h5{height:52.750000pt;}
.h4{height:57.375000pt;}
.h2{height:58.563750pt;}
.hd{height:59.497500pt;}
.ha{height:63.520000pt;}
.hb{height:63.552000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w8{width:56.640000pt;}
.w1c{width:57.440000pt;}
.w22{width:58.560000pt;}
.w16{width:61.920000pt;}
.w11{width:65.152000pt;}
.wb{width:66.080000pt;}
.wa{width:66.240000pt;}
.w7{width:66.272000pt;}
.w1d{width:73.152000pt;}
.w23{width:74.432000pt;}
.w9{width:75.552000pt;}
.w17{width:79.072000pt;}
.wd{width:84.960000pt;}
.wc{width:85.152000pt;}
.w1b{width:86.112000pt;}
.w21{width:87.552000pt;}
.w12{width:87.680000pt;}
.w15{width:92.992000pt;}
.w1a{width:95.840000pt;}
.w1e{width:96.480000pt;}
.w20{width:97.760000pt;}
.w24{width:98.240000pt;}
.w10{width:103.200000pt;}
.w14{width:103.680000pt;}
.w18{width:104.160000pt;}
.wf{width:114.912000pt;}
.w27{width:129.952000pt;}
.w6{width:141.760000pt;}
.w5{width:148.826667pt;}
.w13{width:160.026667pt;}
.w26{width:170.266667pt;}
.w3{width:173.626667pt;}
.w1f{width:185.306667pt;}
.w19{width:192.826667pt;}
.we{width:230.906667pt;}
.w4{width:279.386667pt;}
.w25{width:301.626667pt;}
.w28{width:601.853333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x12{left:7.200000pt;}
.x17{left:21.600000pt;}
.x16{left:26.720000pt;}
.x18{left:28.160000pt;}
.x15{left:29.280000pt;}
.x2{left:96.031988pt;}
.x9{left:107.391988pt;}
.x2f{left:144.026655pt;}
.x10{left:159.226655pt;}
.xb{left:166.266655pt;}
.x1a{left:192.026655pt;}
.xa{left:202.746655pt;}
.x1b{left:237.786667pt;}
.xe{left:242.906655pt;}
.x26{left:256.066667pt;}
.x13{left:269.666667pt;}
.x30{left:281.346667pt;}
.xd{left:283.746655pt;}
.xc{left:288.386655pt;}
.x4{left:295.426655pt;}
.xf{left:296.866655pt;}
.x1c{left:304.066667pt;}
.x11{left:308.386655pt;}
.x19{left:324.866655pt;}
.x22{left:326.946667pt;}
.x27{left:359.746667pt;}
.x1d{left:360.706667pt;}
.x31{left:379.106667pt;}
.x2b{left:384.706667pt;}
.x1{left:385.826655pt;}
.x3{left:396.866655pt;}
.x1e{left:436.253333pt;}
.x23{left:441.853333pt;}
.x28{left:452.733333pt;}
.x32{left:466.653333pt;}
.x2c{left:470.813333pt;}
.x8{left:484.893322pt;}
.x1f{left:502.493333pt;}
.x7{left:512.413322pt;}
.x29{left:514.653333pt;}
.x33{left:525.213333pt;}
.x6{left:526.653322pt;}
.x2d{left:528.253333pt;}
.x24{left:545.053333pt;}
.x14{left:549.053333pt;}
.x5{left:550.173322pt;}
.x20{left:568.573333pt;}
.x2a{left:593.733333pt;}
.x34{left:599.653333pt;}
.x2e{left:601.413333pt;}
.x25{left:610.213333pt;}
.x21{left:653.733333pt;}
.x35{left:710.853322pt;}
}




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