
    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_b966c62bb83cab7f808f336c.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.916992;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_c97e40eba4e15f5e06de03e1.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_f5eced44b18008a48b4a8548.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_7a1cb72a9a4a420f266da21c.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_b0d6fd802ba8792313e19621.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_e6c5aaf7482f8e453ec7c7a0.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_94b26fff4160f3c32639e4af.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.944824;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_77a32c93c8125e338bd711aa.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.944824;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_0f1f443b71e7b3c951d5fbe5.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.817383;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:ffa;src:url('chunks/assets/font_5b6571e6071b7481bcf6acb8.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.817383;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:ffb;src:url('chunks/assets/font_f0b2ed4c73daeae52fab7117.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.916992;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:ffc;src:url('chunks/assets/font_59f4e87f05e723bb37981c37.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.993652;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:ffd;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.910156;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:ffe;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.m2{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:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:5.760000px;}
.v3{vertical-align:27.360000px;}
.ls27{letter-spacing:-0.936000px;}
.ls16{letter-spacing:-0.720000px;}
.lsb{letter-spacing:-0.576000px;}
.ls1e{letter-spacing:-0.360000px;}
.lse{letter-spacing:-0.288000px;}
.lsd{letter-spacing:-0.216000px;}
.lsc{letter-spacing:-0.144000px;}
.lsa{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.072000px;}
.ls23{letter-spacing:0.120000px;}
.ls3{letter-spacing:0.144000px;}
.ls25{letter-spacing:0.192000px;}
.ls15{letter-spacing:0.216000px;}
.ls13{letter-spacing:0.252000px;}
.ls1{letter-spacing:0.288000px;}
.ls11{letter-spacing:0.324000px;}
.ls14{letter-spacing:0.360000px;}
.ls29{letter-spacing:0.432000px;}
.ls6{letter-spacing:0.720000px;}
.ls19{letter-spacing:0.792000px;}
.ls20{letter-spacing:0.864000px;}
.ls2{letter-spacing:1.440000px;}
.lsf{letter-spacing:3.600000px;}
.ls5{letter-spacing:4.320000px;}
.ls12{letter-spacing:5.760000px;}
.ls1c{letter-spacing:7.200000px;}
.ls9{letter-spacing:7.920000px;}
.ls1d{letter-spacing:10.800000px;}
.ls1a{letter-spacing:19.440000px;}
.ls22{letter-spacing:20.880000px;}
.ls2a{letter-spacing:21.600000px;}
.ls1b{letter-spacing:23.040000px;}
.ls10{letter-spacing:23.760000px;}
.ls28{letter-spacing:24.480000px;}
.ls1f{letter-spacing:28.080000px;}
.ls7{letter-spacing:30.240000px;}
.ls26{letter-spacing:41.760000px;}
.ls24{letter-spacing:43.200000px;}
.ls4{letter-spacing:51.120000px;}
.ls17{letter-spacing:54.000000px;}
.ls18{letter-spacing:54.720000px;}
.ls8{letter-spacing:60.480000px;}
.ls2c{letter-spacing:102.384000px;}
.ls2b{letter-spacing:138.384000px;}
.ls21{letter-spacing:168.426720px;}
.ls2d{letter-spacing:233.280000px;}
.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:-59.760000px;}
.ws0{word-spacing:-26.424000px;}
.ws2{word-spacing:-21.060000px;}
.wse{word-spacing:-18.720000px;}
.ws11{word-spacing:-18.432000px;}
.wsb{word-spacing:-18.360000px;}
.ws8{word-spacing:-18.288000px;}
.wsa{word-spacing:-18.216000px;}
.ws3{word-spacing:-18.144000px;}
.ws6{word-spacing:-18.072000px;}
.ws5{word-spacing:-18.000000px;}
.ws4{word-spacing:-17.856000px;}
.wsc{word-spacing:-17.784000px;}
.ws7{word-spacing:-17.712000px;}
.wsd{word-spacing:-17.280000px;}
.ws1{word-spacing:-14.970240px;}
.wsf{word-spacing:-12.060000px;}
.ws9{word-spacing:0.000000px;}
._0{margin-left:-1.188000px;}
._2{width:1.128000px;}
._7{width:2.736000px;}
._6{width:4.032000px;}
._11{width:5.760000px;}
._b{width:7.200000px;}
._c{width:8.604000px;}
._2a{width:9.612000px;}
._e{width:10.632000px;}
._4{width:11.664000px;}
._14{width:12.912000px;}
._15{width:13.944000px;}
._21{width:15.312000px;}
._12{width:16.704000px;}
._1{width:18.648000px;}
._10{width:19.728000px;}
._17{width:20.736000px;}
._16{width:21.816000px;}
._13{width:23.112000px;}
._19{width:24.192000px;}
._1d{width:25.356000px;}
._f{width:26.688000px;}
._3{width:28.224000px;}
._9{width:29.244000px;}
._8{width:30.384000px;}
._27{width:31.392000px;}
._33{width:33.996000px;}
._2b{width:35.172000px;}
._1a{width:36.216000px;}
._18{width:38.208000px;}
._d{width:39.672000px;}
._2e{width:41.688000px;}
._1e{width:42.912000px;}
._1c{width:44.292000px;}
._1b{width:45.480000px;}
._23{width:47.448000px;}
._24{width:48.468000px;}
._2d{width:49.512000px;}
._5{width:51.096000px;}
._26{width:52.980000px;}
._25{width:54.012000px;}
._29{width:55.344000px;}
._22{width:56.880000px;}
._a{width:60.516000px;}
._2c{width:63.984000px;}
._20{width:65.460000px;}
._1f{width:66.672000px;}
._32{width:73.560000px;}
._31{width:74.808000px;}
._2f{width:81.432000px;}
._30{width:82.440000px;}
._28{width:97.272000px;}
._34{width:214.704000px;}
._36{width:233.184000px;}
._37{width:234.228000px;}
._35{width:257.472000px;}
.fc6{color:transparent;}
.fc5{color:rgb(192,0,0);}
.fc4{color:rgb(0,0,255);}
.fc2{color:rgb(112,48,160);}
.fc1{color:rgb(51,51,255);}
.fc7{color:rgb(31,31,31);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:2.880000px;}
.fs4{font-size:48.240000px;}
.fs6{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.fs0{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y7d{bottom:0.360000px;}
.yc4{bottom:3.960000px;}
.y3{bottom:7.020000px;}
.y7{bottom:11.340000px;}
.y9b{bottom:12.420000px;}
.y7e{bottom:12.600000px;}
.yc7{bottom:24.660000px;}
.y9d{bottom:26.280000px;}
.y2{bottom:28.260000px;}
.y80{bottom:30.810000px;}
.y8{bottom:71.136000px;}
.y6{bottom:86.796000px;}
.ye0{bottom:119.196000px;}
.y73{bottom:120.636000px;}
.y32{bottom:126.396000px;}
.ya2{bottom:126.576000px;}
.y8f{bottom:136.656000px;}
.y31{bottom:150.150000px;}
.y72{bottom:151.590000px;}
.ya1{bottom:158.250000px;}
.y53{bottom:159.510000px;}
.y8e{bottom:167.610000px;}
.y30{bottom:174.090000px;}
.yc1{bottom:179.670000px;}
.ydf{bottom:181.290000px;}
.y71{bottom:182.730000px;}
.ya0{bottom:189.750000px;}
.y52{bottom:190.650000px;}
.y2f{bottom:197.850000px;}
.y8d{bottom:198.750000px;}
.yc0{bottom:210.810000px;}
.yde{bottom:212.250000px;}
.y70{bottom:213.690000px;}
.y9f{bottom:220.710000px;}
.y2e{bottom:221.610000px;}
.y8c{bottom:229.710000px;}
.ybf{bottom:241.770000px;}
.ydd{bottom:243.390000px;}
.y6f{bottom:244.830000px;}
.y2d{bottom:246.450000px;}
.y9e{bottom:251.850000px;}
.y51{bottom:252.750000px;}
.y8b{bottom:260.850000px;}
.y9c{bottom:268.590000px;}
.ybe{bottom:272.910000px;}
.y2c{bottom:274.350000px;}
.y6e{bottom:275.790000px;}
.y50{bottom:283.710000px;}
.y8a{bottom:291.810000px;}
.y2b{bottom:300.990000px;}
.ybd{bottom:303.870000px;}
.ydc{bottom:305.490000px;}
.y6d{bottom:306.930000px;}
.y9a{bottom:311.610000px;}
.y4f{bottom:314.670000px;}
.y89{bottom:322.950000px;}
.y2a{bottom:324.750000px;}
.ybc{bottom:335.010000px;}
.ydb{bottom:336.495000px;}
.y6c{bottom:337.935000px;}
.y4e{bottom:345.855000px;}
.y29{bottom:348.555000px;}
.y88{bottom:353.955000px;}
.ybb{bottom:366.015000px;}
.yda{bottom:367.635000px;}
.y6b{bottom:369.075000px;}
.y28{bottom:372.495000px;}
.y4d{bottom:376.815000px;}
.y87{bottom:385.095000px;}
.y27{bottom:396.255000px;}
.yba{bottom:396.975000px;}
.yd9{bottom:398.595000px;}
.y6a{bottom:400.035000px;}
.ye6{bottom:401.835000px;}
.y4c{bottom:407.955000px;}
.y86{bottom:416.055000px;}
.y26{bottom:420.015000px;}
.yb9{bottom:428.115000px;}
.yd8{bottom:429.735000px;}
.y69{bottom:431.175000px;}
.ye5{bottom:431.715000px;}
.y4b{bottom:438.915000px;}
.y25{bottom:443.775000px;}
.y85{bottom:447.195000px;}
.yb8{bottom:459.075000px;}
.yd7{bottom:460.695000px;}
.y68{bottom:462.135000px;}
.ye4{bottom:462.855000px;}
.y24{bottom:467.535000px;}
.y4a{bottom:470.055000px;}
.y84{bottom:478.155000px;}
.yb7{bottom:490.215000px;}
.y23{bottom:491.475000px;}
.yd6{bottom:491.835000px;}
.y67{bottom:493.275000px;}
.ye3{bottom:493.815000px;}
.y49{bottom:501.015000px;}
.y83{bottom:509.295000px;}
.y22{bottom:515.235000px;}
.yb6{bottom:521.175000px;}
.yd5{bottom:522.795000px;}
.y66{bottom:524.235000px;}
.ye2{bottom:524.955000px;}
.y48{bottom:532.155000px;}
.y21{bottom:538.995000px;}
.y82{bottom:540.255000px;}
.yb5{bottom:552.315000px;}
.yd4{bottom:553.935000px;}
.y65{bottom:555.375000px;}
.ye1{bottom:555.915000px;}
.y20{bottom:562.755000px;}
.y47{bottom:563.115000px;}
.y81{bottom:573.735000px;}
.yb4{bottom:583.275000px;}
.yd3{bottom:584.895000px;}
.y64{bottom:586.335000px;}
.y1f{bottom:586.695000px;}
.y99{bottom:587.055000px;}
.y7f{bottom:593.355000px;}
.y46{bottom:594.255000px;}
.y1e{bottom:611.565000px;}
.yb3{bottom:614.445000px;}
.yd2{bottom:615.885000px;}
.y63{bottom:617.505000px;}
.y98{bottom:618.045000px;}
.y45{bottom:625.245000px;}
.y1d{bottom:639.285000px;}
.y7c{bottom:640.905000px;}
.yb2{bottom:645.405000px;}
.yd1{bottom:647.025000px;}
.y62{bottom:648.465000px;}
.y97{bottom:649.185000px;}
.y44{bottom:656.385000px;}
.y1c{bottom:665.925000px;}
.yb1{bottom:676.545000px;}
.yd0{bottom:677.985000px;}
.y61{bottom:679.605000px;}
.y96{bottom:680.145000px;}
.y43{bottom:687.345000px;}
.y1b{bottom:689.865000px;}
.yb0{bottom:707.505000px;}
.y60{bottom:710.565000px;}
.y95{bottom:711.285000px;}
.ycf{bottom:711.465000px;}
.y1a{bottom:713.625000px;}
.y42{bottom:718.485000px;}
.y19{bottom:737.385000px;}
.yaf{bottom:738.645000px;}
.y5f{bottom:741.705000px;}
.y94{bottom:742.245000px;}
.yce{bottom:747.645000px;}
.y41{bottom:749.445000px;}
.y18{bottom:761.145000px;}
.yae{bottom:769.605000px;}
.y5e{bottom:772.665000px;}
.y93{bottom:773.385000px;}
.y40{bottom:780.585000px;}
.ycd{bottom:783.825000px;}
.y17{bottom:785.085000px;}
.yad{bottom:800.745000px;}
.y5d{bottom:803.805000px;}
.y92{bottom:804.345000px;}
.y16{bottom:808.845000px;}
.y3f{bottom:811.545000px;}
.ycc{bottom:817.845000px;}
.yac{bottom:831.705000px;}
.y15{bottom:832.605000px;}
.y5c{bottom:834.765000px;}
.y91{bottom:835.305000px;}
.y3e{bottom:842.685000px;}
.ycb{bottom:848.805000px;}
.y14{bottom:856.365000px;}
.yab{bottom:862.845000px;}
.y5b{bottom:865.905000px;}
.y90{bottom:866.445000px;}
.y3d{bottom:873.690000px;}
.yca{bottom:879.990000px;}
.y13{bottom:880.350000px;}
.yaa{bottom:893.850000px;}
.y5a{bottom:896.910000px;}
.y7b{bottom:897.450000px;}
.y12{bottom:904.110000px;}
.y3c{bottom:904.830000px;}
.yc9{bottom:919.950000px;}
.ya9{bottom:924.990000px;}
.y11{bottom:927.870000px;}
.y59{bottom:928.050000px;}
.y7a{bottom:928.590000px;}
.y3b{bottom:935.790000px;}
.yc8{bottom:946.410000px;}
.ya8{bottom:956.310000px;}
.y10{bottom:959.010000px;}
.y79{bottom:959.550000px;}
.y3a{bottom:966.930000px;}
.yc6{bottom:967.830000px;}
.yf{bottom:982.770000px;}
.ya7{bottom:987.630000px;}
.y58{bottom:990.150000px;}
.y78{bottom:990.690000px;}
.y39{bottom:1000.230000px;}
.ye{bottom:1006.530000px;}
.yc5{bottom:1010.130000px;}
.ya6{bottom:1018.950000px;}
.y57{bottom:1021.110000px;}
.y77{bottom:1021.650000px;}
.y38{bottom:1026.870000px;}
.yd{bottom:1030.290000px;}
.yc3{bottom:1031.550000px;}
.y37{bottom:1050.630000px;}
.y56{bottom:1052.250000px;}
.y76{bottom:1052.790000px;}
.yc{bottom:1054.230000px;}
.yc2{bottom:1059.990000px;}
.y36{bottom:1074.570000px;}
.ya5{bottom:1082.310000px;}
.y55{bottom:1083.210000px;}
.y75{bottom:1083.750000px;}
.yb{bottom:1087.530000px;}
.y35{bottom:1098.330000px;}
.ya4{bottom:1113.810000px;}
.y54{bottom:1114.530000px;}
.y74{bottom:1114.890000px;}
.ya{bottom:1115.250000px;}
.y34{bottom:1122.090000px;}
.y9{bottom:1143.000000px;}
.ya3{bottom:1145.520000px;}
.y33{bottom:1145.880000px;}
.y5{bottom:1173.960000px;}
.y1{bottom:1179.720000px;}
.y4{bottom:1194.120000px;}
.h11{height:2.019375px;}
.h15{height:20.700000px;}
.h5{height:27.000000px;}
.h16{height:41.400000px;}
.h14{height:43.020000px;}
.h12{height:47.556000px;}
.h17{height:48.761719px;}
.hc{height:50.484375px;}
.h7{height:50.800781px;}
.h9{height:52.171875px;}
.h18{height:52.417969px;}
.h2{height:53.460000px;}
.hb{height:57.051211px;}
.hf{height:59.066719px;}
.h8{height:59.343750px;}
.h6{height:59.436914px;}
.hd{height:60.679688px;}
.ha{height:61.041094px;}
.he{height:61.184531px;}
.h4{height:65.884219px;}
.h3{height:75.726562px;}
.h10{height:242.310000px;}
.h13{height:261.030000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:106.416000px;}
.wd{width:126.900000px;}
.wb{width:137.376000px;}
.wc{width:137.556000px;}
.wa{width:294.510000px;}
.w6{width:305.670000px;}
.w4{width:305.895000px;}
.w7{width:358.950000px;}
.w8{width:358.995000px;}
.w2{width:498.675000px;}
.w9{width:717.765000px;}
.w3{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x26{left:7.740000px;}
.x1b{left:14.400000px;}
.x24{left:16.740000px;}
.x28{left:37.980000px;}
.x9{left:40.680000px;}
.x1c{left:41.940000px;}
.x1e{left:47.910000px;}
.x1d{left:54.930000px;}
.x27{left:56.700000px;}
.x4{left:82.260000px;}
.x6{left:84.960000px;}
.x18{left:98.316000px;}
.x20{left:103.854000px;}
.x5{left:106.415987px;}
.x10{left:123.155987px;}
.x13{left:159.509987px;}
.xb{left:173.549987px;}
.x11{left:177.329987px;}
.x14{left:190.289987px;}
.x15{left:196.229987px;}
.x2{left:197.310000px;}
.xc{left:218.009987px;}
.x16{left:259.949987px;}
.xe{left:261.209987px;}
.x1{left:278.175000px;}
.x1a{left:286.995000px;}
.x7{left:297.795000px;}
.x19{left:304.959000px;}
.x12{left:306.434987px;}
.x17{left:342.074987px;}
.xf{left:369.614987px;}
.x2a{left:381.674987px;}
.x8{left:390.855000px;}
.x22{left:393.915000px;}
.xd{left:457.094987px;}
.x29{left:483.764987px;}
.xa{left:497.265000px;}
.x3{left:498.675000px;}
.x23{left:532.005000px;}
.x1f{left:625.974000px;}
.x25{left:670.290000px;}
.x21{left:730.229987px;}
@media print{
.v1{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:5.120000pt;}
.v3{vertical-align:24.320000pt;}
.ls27{letter-spacing:-0.832000pt;}
.ls16{letter-spacing:-0.640000pt;}
.lsb{letter-spacing:-0.512000pt;}
.ls1e{letter-spacing:-0.320000pt;}
.lse{letter-spacing:-0.256000pt;}
.lsd{letter-spacing:-0.192000pt;}
.lsc{letter-spacing:-0.128000pt;}
.lsa{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.064000pt;}
.ls23{letter-spacing:0.106667pt;}
.ls3{letter-spacing:0.128000pt;}
.ls25{letter-spacing:0.170667pt;}
.ls15{letter-spacing:0.192000pt;}
.ls13{letter-spacing:0.224000pt;}
.ls1{letter-spacing:0.256000pt;}
.ls11{letter-spacing:0.288000pt;}
.ls14{letter-spacing:0.320000pt;}
.ls29{letter-spacing:0.384000pt;}
.ls6{letter-spacing:0.640000pt;}
.ls19{letter-spacing:0.704000pt;}
.ls20{letter-spacing:0.768000pt;}
.ls2{letter-spacing:1.280000pt;}
.lsf{letter-spacing:3.200000pt;}
.ls5{letter-spacing:3.840000pt;}
.ls12{letter-spacing:5.120000pt;}
.ls1c{letter-spacing:6.400000pt;}
.ls9{letter-spacing:7.040000pt;}
.ls1d{letter-spacing:9.600000pt;}
.ls1a{letter-spacing:17.280000pt;}
.ls22{letter-spacing:18.560000pt;}
.ls2a{letter-spacing:19.200000pt;}
.ls1b{letter-spacing:20.480000pt;}
.ls10{letter-spacing:21.120000pt;}
.ls28{letter-spacing:21.760000pt;}
.ls1f{letter-spacing:24.960000pt;}
.ls7{letter-spacing:26.880000pt;}
.ls26{letter-spacing:37.120000pt;}
.ls24{letter-spacing:38.400000pt;}
.ls4{letter-spacing:45.440000pt;}
.ls17{letter-spacing:48.000000pt;}
.ls18{letter-spacing:48.640000pt;}
.ls8{letter-spacing:53.760000pt;}
.ls2c{letter-spacing:91.008000pt;}
.ls2b{letter-spacing:123.008000pt;}
.ls21{letter-spacing:149.712640pt;}
.ls2d{letter-spacing:207.360000pt;}
.ws10{word-spacing:-53.120000pt;}
.ws0{word-spacing:-23.488000pt;}
.ws2{word-spacing:-18.720000pt;}
.wse{word-spacing:-16.640000pt;}
.ws11{word-spacing:-16.384000pt;}
.wsb{word-spacing:-16.320000pt;}
.ws8{word-spacing:-16.256000pt;}
.wsa{word-spacing:-16.192000pt;}
.ws3{word-spacing:-16.128000pt;}
.ws6{word-spacing:-16.064000pt;}
.ws5{word-spacing:-16.000000pt;}
.ws4{word-spacing:-15.872000pt;}
.wsc{word-spacing:-15.808000pt;}
.ws7{word-spacing:-15.744000pt;}
.wsd{word-spacing:-15.360000pt;}
.ws1{word-spacing:-13.306880pt;}
.wsf{word-spacing:-10.720000pt;}
.ws9{word-spacing:0.000000pt;}
._0{margin-left:-1.056000pt;}
._2{width:1.002667pt;}
._7{width:2.432000pt;}
._6{width:3.584000pt;}
._11{width:5.120000pt;}
._b{width:6.400000pt;}
._c{width:7.648000pt;}
._2a{width:8.544000pt;}
._e{width:9.450667pt;}
._4{width:10.368000pt;}
._14{width:11.477333pt;}
._15{width:12.394667pt;}
._21{width:13.610667pt;}
._12{width:14.848000pt;}
._1{width:16.576000pt;}
._10{width:17.536000pt;}
._17{width:18.432000pt;}
._16{width:19.392000pt;}
._13{width:20.544000pt;}
._19{width:21.504000pt;}
._1d{width:22.538667pt;}
._f{width:23.722667pt;}
._3{width:25.088000pt;}
._9{width:25.994667pt;}
._8{width:27.008000pt;}
._27{width:27.904000pt;}
._33{width:30.218667pt;}
._2b{width:31.264000pt;}
._1a{width:32.192000pt;}
._18{width:33.962667pt;}
._d{width:35.264000pt;}
._2e{width:37.056000pt;}
._1e{width:38.144000pt;}
._1c{width:39.370667pt;}
._1b{width:40.426667pt;}
._23{width:42.176000pt;}
._24{width:43.082667pt;}
._2d{width:44.010667pt;}
._5{width:45.418667pt;}
._26{width:47.093333pt;}
._25{width:48.010667pt;}
._29{width:49.194667pt;}
._22{width:50.560000pt;}
._a{width:53.792000pt;}
._2c{width:56.874667pt;}
._20{width:58.186667pt;}
._1f{width:59.264000pt;}
._32{width:65.386667pt;}
._31{width:66.496000pt;}
._2f{width:72.384000pt;}
._30{width:73.280000pt;}
._28{width:86.464000pt;}
._34{width:190.848000pt;}
._36{width:207.274667pt;}
._37{width:208.202667pt;}
._35{width:228.864000pt;}
.fs5{font-size:2.560000pt;}
.fs4{font-size:42.880000pt;}
.fs6{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.fs0{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y7d{bottom:0.320000pt;}
.yc4{bottom:3.520000pt;}
.y3{bottom:6.240000pt;}
.y7{bottom:10.080000pt;}
.y9b{bottom:11.040000pt;}
.y7e{bottom:11.200000pt;}
.yc7{bottom:21.920000pt;}
.y9d{bottom:23.360000pt;}
.y2{bottom:25.120000pt;}
.y80{bottom:27.386667pt;}
.y8{bottom:63.232000pt;}
.y6{bottom:77.152000pt;}
.ye0{bottom:105.952000pt;}
.y73{bottom:107.232000pt;}
.y32{bottom:112.352000pt;}
.ya2{bottom:112.512000pt;}
.y8f{bottom:121.472000pt;}
.y31{bottom:133.466667pt;}
.y72{bottom:134.746667pt;}
.ya1{bottom:140.666667pt;}
.y53{bottom:141.786667pt;}
.y8e{bottom:148.986667pt;}
.y30{bottom:154.746667pt;}
.yc1{bottom:159.706667pt;}
.ydf{bottom:161.146667pt;}
.y71{bottom:162.426667pt;}
.ya0{bottom:168.666667pt;}
.y52{bottom:169.466667pt;}
.y2f{bottom:175.866667pt;}
.y8d{bottom:176.666667pt;}
.yc0{bottom:187.386667pt;}
.yde{bottom:188.666667pt;}
.y70{bottom:189.946667pt;}
.y9f{bottom:196.186667pt;}
.y2e{bottom:196.986667pt;}
.y8c{bottom:204.186667pt;}
.ybf{bottom:214.906667pt;}
.ydd{bottom:216.346667pt;}
.y6f{bottom:217.626667pt;}
.y2d{bottom:219.066667pt;}
.y9e{bottom:223.866667pt;}
.y51{bottom:224.666667pt;}
.y8b{bottom:231.866667pt;}
.y9c{bottom:238.746667pt;}
.ybe{bottom:242.586667pt;}
.y2c{bottom:243.866667pt;}
.y6e{bottom:245.146667pt;}
.y50{bottom:252.186667pt;}
.y8a{bottom:259.386667pt;}
.y2b{bottom:267.546667pt;}
.ybd{bottom:270.106667pt;}
.ydc{bottom:271.546667pt;}
.y6d{bottom:272.826667pt;}
.y9a{bottom:276.986667pt;}
.y4f{bottom:279.706667pt;}
.y89{bottom:287.066667pt;}
.y2a{bottom:288.666667pt;}
.ybc{bottom:297.786667pt;}
.ydb{bottom:299.106667pt;}
.y6c{bottom:300.386667pt;}
.y4e{bottom:307.426667pt;}
.y29{bottom:309.826667pt;}
.y88{bottom:314.626667pt;}
.ybb{bottom:325.346667pt;}
.yda{bottom:326.786667pt;}
.y6b{bottom:328.066667pt;}
.y28{bottom:331.106667pt;}
.y4d{bottom:334.946667pt;}
.y87{bottom:342.306667pt;}
.y27{bottom:352.226667pt;}
.yba{bottom:352.866667pt;}
.yd9{bottom:354.306667pt;}
.y6a{bottom:355.586667pt;}
.ye6{bottom:357.186667pt;}
.y4c{bottom:362.626667pt;}
.y86{bottom:369.826667pt;}
.y26{bottom:373.346667pt;}
.yb9{bottom:380.546667pt;}
.yd8{bottom:381.986667pt;}
.y69{bottom:383.266667pt;}
.ye5{bottom:383.746667pt;}
.y4b{bottom:390.146667pt;}
.y25{bottom:394.466667pt;}
.y85{bottom:397.506667pt;}
.yb8{bottom:408.066667pt;}
.yd7{bottom:409.506667pt;}
.y68{bottom:410.786667pt;}
.ye4{bottom:411.426667pt;}
.y24{bottom:415.586667pt;}
.y4a{bottom:417.826667pt;}
.y84{bottom:425.026667pt;}
.yb7{bottom:435.746667pt;}
.y23{bottom:436.866667pt;}
.yd6{bottom:437.186667pt;}
.y67{bottom:438.466667pt;}
.ye3{bottom:438.946667pt;}
.y49{bottom:445.346667pt;}
.y83{bottom:452.706667pt;}
.y22{bottom:457.986667pt;}
.yb6{bottom:463.266667pt;}
.yd5{bottom:464.706667pt;}
.y66{bottom:465.986667pt;}
.ye2{bottom:466.626667pt;}
.y48{bottom:473.026667pt;}
.y21{bottom:479.106667pt;}
.y82{bottom:480.226667pt;}
.yb5{bottom:490.946667pt;}
.yd4{bottom:492.386667pt;}
.y65{bottom:493.666667pt;}
.ye1{bottom:494.146667pt;}
.y20{bottom:500.226667pt;}
.y47{bottom:500.546667pt;}
.y81{bottom:509.986667pt;}
.yb4{bottom:518.466667pt;}
.yd3{bottom:519.906667pt;}
.y64{bottom:521.186667pt;}
.y1f{bottom:521.506667pt;}
.y99{bottom:521.826667pt;}
.y7f{bottom:527.426667pt;}
.y46{bottom:528.226667pt;}
.y1e{bottom:543.613333pt;}
.yb3{bottom:546.173333pt;}
.yd2{bottom:547.453333pt;}
.y63{bottom:548.893333pt;}
.y98{bottom:549.373333pt;}
.y45{bottom:555.773333pt;}
.y1d{bottom:568.253333pt;}
.y7c{bottom:569.693333pt;}
.yb2{bottom:573.693333pt;}
.yd1{bottom:575.133333pt;}
.y62{bottom:576.413333pt;}
.y97{bottom:577.053333pt;}
.y44{bottom:583.453333pt;}
.y1c{bottom:591.933333pt;}
.yb1{bottom:601.373333pt;}
.yd0{bottom:602.653333pt;}
.y61{bottom:604.093333pt;}
.y96{bottom:604.573333pt;}
.y43{bottom:610.973333pt;}
.y1b{bottom:613.213333pt;}
.yb0{bottom:628.893333pt;}
.y60{bottom:631.613333pt;}
.y95{bottom:632.253333pt;}
.ycf{bottom:632.413333pt;}
.y1a{bottom:634.333333pt;}
.y42{bottom:638.653333pt;}
.y19{bottom:655.453333pt;}
.yaf{bottom:656.573333pt;}
.y5f{bottom:659.293333pt;}
.y94{bottom:659.773333pt;}
.yce{bottom:664.573333pt;}
.y41{bottom:666.173333pt;}
.y18{bottom:676.573333pt;}
.yae{bottom:684.093333pt;}
.y5e{bottom:686.813333pt;}
.y93{bottom:687.453333pt;}
.y40{bottom:693.853333pt;}
.ycd{bottom:696.733333pt;}
.y17{bottom:697.853333pt;}
.yad{bottom:711.773333pt;}
.y5d{bottom:714.493333pt;}
.y92{bottom:714.973333pt;}
.y16{bottom:718.973333pt;}
.y3f{bottom:721.373333pt;}
.ycc{bottom:726.973333pt;}
.yac{bottom:739.293333pt;}
.y15{bottom:740.093333pt;}
.y5c{bottom:742.013333pt;}
.y91{bottom:742.493333pt;}
.y3e{bottom:749.053333pt;}
.ycb{bottom:754.493333pt;}
.y14{bottom:761.213333pt;}
.yab{bottom:766.973333pt;}
.y5b{bottom:769.693333pt;}
.y90{bottom:770.173333pt;}
.y3d{bottom:776.613333pt;}
.yca{bottom:782.213333pt;}
.y13{bottom:782.533333pt;}
.yaa{bottom:794.533333pt;}
.y5a{bottom:797.253333pt;}
.y7b{bottom:797.733333pt;}
.y12{bottom:803.653333pt;}
.y3c{bottom:804.293333pt;}
.yc9{bottom:817.733333pt;}
.ya9{bottom:822.213333pt;}
.y11{bottom:824.773333pt;}
.y59{bottom:824.933333pt;}
.y7a{bottom:825.413333pt;}
.y3b{bottom:831.813333pt;}
.yc8{bottom:841.253333pt;}
.ya8{bottom:850.053333pt;}
.y10{bottom:852.453333pt;}
.y79{bottom:852.933333pt;}
.y3a{bottom:859.493333pt;}
.yc6{bottom:860.293333pt;}
.yf{bottom:873.573333pt;}
.ya7{bottom:877.893333pt;}
.y58{bottom:880.133333pt;}
.y78{bottom:880.613333pt;}
.y39{bottom:889.093333pt;}
.ye{bottom:894.693333pt;}
.yc5{bottom:897.893333pt;}
.ya6{bottom:905.733333pt;}
.y57{bottom:907.653333pt;}
.y77{bottom:908.133333pt;}
.y38{bottom:912.773333pt;}
.yd{bottom:915.813333pt;}
.yc3{bottom:916.933333pt;}
.y37{bottom:933.893333pt;}
.y56{bottom:935.333333pt;}
.y76{bottom:935.813333pt;}
.yc{bottom:937.093333pt;}
.yc2{bottom:942.213333pt;}
.y36{bottom:955.173333pt;}
.ya5{bottom:962.053333pt;}
.y55{bottom:962.853333pt;}
.y75{bottom:963.333333pt;}
.yb{bottom:966.693333pt;}
.y35{bottom:976.293333pt;}
.ya4{bottom:990.053333pt;}
.y54{bottom:990.693333pt;}
.y74{bottom:991.013333pt;}
.ya{bottom:991.333333pt;}
.y34{bottom:997.413333pt;}
.y9{bottom:1016.000000pt;}
.ya3{bottom:1018.240000pt;}
.y33{bottom:1018.560000pt;}
.y5{bottom:1043.520000pt;}
.y1{bottom:1048.640000pt;}
.y4{bottom:1061.440000pt;}
.h11{height:1.795000pt;}
.h15{height:18.400000pt;}
.h5{height:24.000000pt;}
.h16{height:36.800000pt;}
.h14{height:38.240000pt;}
.h12{height:42.272000pt;}
.h17{height:43.343750pt;}
.hc{height:44.875000pt;}
.h7{height:45.156250pt;}
.h9{height:46.375000pt;}
.h18{height:46.593750pt;}
.h2{height:47.520000pt;}
.hb{height:50.712187pt;}
.hf{height:52.503750pt;}
.h8{height:52.750000pt;}
.h6{height:52.832812pt;}
.hd{height:53.937500pt;}
.ha{height:54.258750pt;}
.he{height:54.386250pt;}
.h4{height:58.563750pt;}
.h3{height:67.312500pt;}
.h10{height:215.386667pt;}
.h13{height:232.026667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:94.592000pt;}
.wd{width:112.800000pt;}
.wb{width:122.112000pt;}
.wc{width:122.272000pt;}
.wa{width:261.786667pt;}
.w6{width:271.706667pt;}
.w4{width:271.906667pt;}
.w7{width:319.066667pt;}
.w8{width:319.106667pt;}
.w2{width:443.266667pt;}
.w9{width:638.013333pt;}
.w3{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x26{left:6.880000pt;}
.x1b{left:12.800000pt;}
.x24{left:14.880000pt;}
.x28{left:33.760000pt;}
.x9{left:36.160000pt;}
.x1c{left:37.280000pt;}
.x1e{left:42.586667pt;}
.x1d{left:48.826667pt;}
.x27{left:50.400000pt;}
.x4{left:73.120000pt;}
.x6{left:75.520000pt;}
.x18{left:87.392000pt;}
.x20{left:92.314667pt;}
.x5{left:94.591988pt;}
.x10{left:109.471988pt;}
.x13{left:141.786655pt;}
.xb{left:154.266655pt;}
.x11{left:157.626655pt;}
.x14{left:169.146655pt;}
.x15{left:174.426655pt;}
.x2{left:175.386667pt;}
.xc{left:193.786655pt;}
.x16{left:231.066655pt;}
.xe{left:232.186655pt;}
.x1{left:247.266667pt;}
.x1a{left:255.106667pt;}
.x7{left:264.706667pt;}
.x19{left:271.074667pt;}
.x12{left:272.386655pt;}
.x17{left:304.066655pt;}
.xf{left:328.546655pt;}
.x2a{left:339.266655pt;}
.x8{left:347.426667pt;}
.x22{left:350.146667pt;}
.xd{left:406.306655pt;}
.x29{left:430.013322pt;}
.xa{left:442.013333pt;}
.x3{left:443.266667pt;}
.x23{left:472.893333pt;}
.x1f{left:556.421333pt;}
.x25{left:595.813333pt;}
.x21{left:649.093322pt;}
}




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