
    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_57495b4441d0f2534b200f57.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.974121;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_a286848e3da493e0115f4b39.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.114746;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_2fbccff5efcbd4e6138f146d.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.008301;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_63d5f9f09f13c73e9b05e24e.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.010254;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_5aa797e8c9c1c6441571e614.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_34224d46a575a214d47b22f7.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.005371;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);}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.006600px;}
.ls2{letter-spacing:0.013200px;}
.lse{letter-spacing:0.288000px;}
.lsb{letter-spacing:0.582000px;}
.ls3{letter-spacing:1.362000px;}
.lsa{letter-spacing:1.398000px;}
.ls5{letter-spacing:1.488000px;}
.lsd{letter-spacing:1.626000px;}
.ls6{letter-spacing:1.800000px;}
.ls8{letter-spacing:2.622000px;}
.ls7{letter-spacing:3.816000px;}
.ls9{letter-spacing:5.316000px;}
.ls4{letter-spacing:5.478000px;}
.lsc{letter-spacing:8.562000px;}
.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:-23.562000px;}
.ws0{word-spacing:-22.500000px;}
.ws8{word-spacing:-20.478000px;}
.wsd{word-spacing:-20.316000px;}
.wsb{word-spacing:-18.816000px;}
.ws3{word-spacing:-18.000000px;}
.wsc{word-spacing:-17.622000px;}
.wsa{word-spacing:-16.800000px;}
.ws11{word-spacing:-16.626000px;}
.ws5{word-spacing:-16.506600px;}
.ws4{word-spacing:-16.500000px;}
.ws9{word-spacing:-16.488000px;}
.wse{word-spacing:-16.398000px;}
.ws7{word-spacing:-16.362000px;}
.wsf{word-spacing:-15.582000px;}
.ws13{word-spacing:-15.288000px;}
.ws6{word-spacing:-15.000000px;}
.ws1{word-spacing:-13.500000px;}
.ws12{word-spacing:-5.460000px;}
.ws2{word-spacing:0.000000px;}
.ws14{word-spacing:4.276245px;}
._0{margin-left:-9.120000px;}
._1b{margin-left:-5.586000px;}
._b{margin-left:-3.808200px;}
._9{margin-left:-2.712600px;}
._3{margin-left:-1.313400px;}
._5{width:1.914000px;}
._c{width:3.075600px;}
._8{width:4.468200px;}
._f{width:5.497800px;}
._7{width:6.534000px;}
._4{width:7.821000px;}
._1{width:9.188400px;}
._2{width:10.896600px;}
._6{width:12.777600px;}
._a{width:14.209800px;}
._12{width:15.490200px;}
._1c{width:16.521600px;}
._14{width:17.648400px;}
._10{width:18.658200px;}
._d{width:20.618400px;}
._13{width:22.063800px;}
._16{width:23.146200px;}
._15{width:24.321000px;}
._e{width:25.429800px;}
._18{width:26.802600px;}
._1e{width:28.674000px;}
._19{width:30.498600px;}
._11{width:32.472000px;}
._1d{width:34.512000px;}
._17{width:35.739000px;}
._1a{width:37.422000px;}
._22{width:38.706000px;}
._20{width:58.248000px;}
._21{width:125.754000px;}
._1f{width:268.542000px;}
.fc4{color:transparent;}
.fc3{color:rgb(32,94,158);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(255,255,255);}
.fs7{font-size:42.857160px;}
.fs5{font-size:54.000000px;}
.fs6{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs4{font-size:72.000000px;}
.fs1{font-size:90.000000px;}
.fs3{font-size:120.000000px;}
.fs0{font-size:228.000000px;}
.y0{bottom:0.000000px;}
.y22{bottom:41.442750px;}
.y3{bottom:56.834700px;}
.y21{bottom:57.642750px;}
.y82{bottom:60.295200px;}
.ya5{bottom:110.182950px;}
.y10c{bottom:115.558800px;}
.ya4{bottom:129.982950px;}
.yf3{bottom:129.999150px;}
.y10b{bottom:133.558800px;}
.y52{bottom:135.694800px;}
.y81{bottom:148.426500px;}
.ya3{bottom:149.782950px;}
.yf2{bottom:149.799150px;}
.y10a{bottom:151.558500px;}
.y51{bottom:155.494500px;}
.y80{bottom:168.226500px;}
.y109{bottom:169.558500px;}
.ya2{bottom:169.582500px;}
.yf1{bottom:169.599000px;}
.y50{bottom:175.294500px;}
.y108{bottom:187.558500px;}
.y7f{bottom:188.026500px;}
.ya1{bottom:189.382500px;}
.yf0{bottom:189.399000px;}
.y4f{bottom:195.094500px;}
.y107{bottom:205.558500px;}
.y7e{bottom:207.826500px;}
.ya0{bottom:209.182500px;}
.yef{bottom:209.199000px;}
.yc4{bottom:214.894500px;}
.y7d{bottom:227.626500px;}
.y4e{bottom:227.650500px;}
.y9f{bottom:228.982500px;}
.yee{bottom:228.999000px;}
.y106{bottom:232.063500px;}
.yc3{bottom:234.694500px;}
.y7c{bottom:247.426500px;}
.y4d{bottom:247.450500px;}
.y9e{bottom:248.782500px;}
.yed{bottom:248.799000px;}
.y105{bottom:250.063500px;}
.yc2{bottom:254.494500px;}
.y7b{bottom:267.226500px;}
.y4c{bottom:267.250500px;}
.y104{bottom:268.063500px;}
.y9d{bottom:268.582500px;}
.yc1{bottom:274.294500px;}
.yec{bottom:281.355000px;}
.y103{bottom:286.063500px;}
.y157{bottom:286.342500px;}
.y7a{bottom:287.026500px;}
.y4b{bottom:287.050500px;}
.y9c{bottom:301.138500px;}
.yeb{bottom:301.155000px;}
.y102{bottom:304.063500px;}
.y156{bottom:304.342500px;}
.y79{bottom:306.826500px;}
.y4a{bottom:306.850500px;}
.y138{bottom:310.393500px;}
.y9b{bottom:320.938500px;}
.yea{bottom:320.955000px;}
.y101{bottom:322.063500px;}
.y155{bottom:322.342500px;}
.y78{bottom:326.626500px;}
.y49{bottom:326.650500px;}
.y137{bottom:328.393500px;}
.y100{bottom:340.063500px;}
.y154{bottom:340.342500px;}
.y9a{bottom:340.738500px;}
.y136{bottom:346.393500px;}
.y48{bottom:346.450500px;}
.ye9{bottom:353.511000px;}
.yff{bottom:358.063500px;}
.y153{bottom:358.342500px;}
.y77{bottom:359.182500px;}
.y99{bottom:360.538500px;}
.y47{bottom:366.250500px;}
.y135{bottom:372.898500px;}
.ye8{bottom:373.311000px;}
.yfe{bottom:376.063500px;}
.y152{bottom:376.342500px;}
.y76{bottom:378.982500px;}
.y98{bottom:380.338500px;}
.y46{bottom:386.050500px;}
.y134{bottom:390.898500px;}
.ye7{bottom:393.111000px;}
.y151{bottom:394.342500px;}
.y75{bottom:398.782500px;}
.y97{bottom:400.138500px;}
.yc0{bottom:405.850500px;}
.y133{bottom:408.898500px;}
.yfd{bottom:411.070500px;}
.y150{bottom:412.342500px;}
.ye6{bottom:412.911000px;}
.y74{bottom:418.582500px;}
.y45{bottom:418.606500px;}
.ybf{bottom:425.650500px;}
.y132{bottom:426.898500px;}
.y14f{bottom:430.342500px;}
.y96{bottom:432.694500px;}
.ye5{bottom:432.711000px;}
.y73{bottom:438.382500px;}
.y44{bottom:438.406500px;}
.y131{bottom:444.898500px;}
.ybe{bottom:445.450500px;}
.y14e{bottom:448.342500px;}
.y95{bottom:452.494500px;}
.ye4{bottom:452.511000px;}
.y43{bottom:458.206500px;}
.y130{bottom:462.898500px;}
.ybd{bottom:465.250500px;}
.y14d{bottom:466.342500px;}
.y72{bottom:470.938500px;}
.y94{bottom:472.294500px;}
.ye3{bottom:472.311000px;}
.y42{bottom:478.006500px;}
.y12f{bottom:480.898500px;}
.y14c{bottom:484.342500px;}
.y71{bottom:490.738500px;}
.y93{bottom:492.094500px;}
.y41{bottom:497.806500px;}
.y14b{bottom:502.342500px;}
.ye2{bottom:504.867000px;}
.y12e{bottom:507.402000px;}
.y70{bottom:510.538500px;}
.y92{bottom:511.894500px;}
.y40{bottom:517.606500px;}
.y14a{bottom:520.342500px;}
.ye1{bottom:524.667000px;}
.y12d{bottom:525.402000px;}
.y6f{bottom:530.338500px;}
.y91{bottom:531.694500px;}
.y3f{bottom:537.406500px;}
.y149{bottom:538.342500px;}
.y12c{bottom:543.402000px;}
.ye0{bottom:544.467000px;}
.y6e{bottom:550.138500px;}
.y90{bottom:551.494500px;}
.y16{bottom:556.270500px;}
.y3e{bottom:557.206500px;}
.y12b{bottom:561.402000px;}
.ydf{bottom:564.267000px;}
.y148{bottom:569.098500px;}
.y6d{bottom:569.938500px;}
.y8f{bottom:571.294500px;}
.y15{bottom:576.070500px;}
.ybc{bottom:577.006500px;}
.y12a{bottom:579.402000px;}
.yde{bottom:584.067000px;}
.y6c{bottom:589.738500px;}
.y3d{bottom:589.762500px;}
.y8e{bottom:591.094500px;}
.y20{bottom:595.870500px;}
.ybb{bottom:596.806500px;}
.y129{bottom:597.402000px;}
.ydd{bottom:603.867000px;}
.y14{bottom:608.626500px;}
.y6b{bottom:609.538500px;}
.y3c{bottom:609.562500px;}
.y8d{bottom:610.894500px;}
.y128{bottom:615.402000px;}
.y1f{bottom:615.670500px;}
.yba{bottom:616.606500px;}
.y147{bottom:623.905500px;}
.y13{bottom:628.426500px;}
.y6a{bottom:629.338500px;}
.y3b{bottom:629.362500px;}
.y8c{bottom:630.694500px;}
.y1e{bottom:635.470500px;}
.yb9{bottom:636.406500px;}
.y127{bottom:641.905500px;}
.y12{bottom:648.226500px;}
.y69{bottom:649.138500px;}
.y3a{bottom:649.162500px;}
.y8b{bottom:650.494500px;}
.y1d{bottom:655.270500px;}
.yb8{bottom:656.206500px;}
.y126{bottom:659.905500px;}
.y11{bottom:668.026500px;}
.y39{bottom:668.962500px;}
.ydc{bottom:668.979000px;}
.y1c{bottom:675.070500px;}
.yb7{bottom:676.006500px;}
.y125{bottom:677.905500px;}
.yfc{bottom:681.694500px;}
.y10{bottom:687.826500px;}
.y38{bottom:688.762500px;}
.ydb{bottom:688.779000px;}
.y1b{bottom:694.870500px;}
.yb6{bottom:695.806500px;}
.y124{bottom:695.905500px;}
.yfb{bottom:701.494500px;}
.y146{bottom:704.409000px;}
.yf{bottom:707.626500px;}
.y37{bottom:708.562500px;}
.yda{bottom:708.579000px;}
.y123{bottom:713.905500px;}
.y68{bottom:714.250500px;}
.y1a{bottom:714.670500px;}
.y8a{bottom:715.606500px;}
.yfa{bottom:721.294500px;}
.y145{bottom:722.409000px;}
.ye{bottom:727.426500px;}
.yb5{bottom:728.362500px;}
.yd9{bottom:728.379000px;}
.y67{bottom:734.050500px;}
.y19{bottom:734.470500px;}
.y89{bottom:735.406500px;}
.y122{bottom:740.409000px;}
.yf9{bottom:741.094500px;}
.yd{bottom:747.226500px;}
.yb4{bottom:748.162500px;}
.yd8{bottom:748.179000px;}
.y66{bottom:753.850500px;}
.y18{bottom:754.270500px;}
.y88{bottom:755.206500px;}
.y121{bottom:758.409000px;}
.yf8{bottom:760.894500px;}
.yc{bottom:767.026500px;}
.yd7{bottom:767.979000px;}
.y65{bottom:773.650500px;}
.y36{bottom:773.674500px;}
.y17{bottom:774.070500px;}
.y87{bottom:775.006500px;}
.y120{bottom:776.409000px;}
.yf7{bottom:780.694500px;}
.yb3{bottom:780.718500px;}
.yb{bottom:786.826500px;}
.yd6{bottom:787.779000px;}
.y64{bottom:793.450500px;}
.y35{bottom:793.474500px;}
.y11f{bottom:794.409000px;}
.yf6{bottom:800.494500px;}
.yb2{bottom:800.518500px;}
.y144{bottom:802.914000px;}
.ya{bottom:806.626500px;}
.y86{bottom:807.562500px;}
.yd5{bottom:807.579000px;}
.y63{bottom:813.250500px;}
.y34{bottom:813.274500px;}
.yf5{bottom:820.294500px;}
.yb1{bottom:820.318500px;}
.y11e{bottom:820.914000px;}
.y9{bottom:826.426500px;}
.y85{bottom:827.362500px;}
.yd4{bottom:827.379000px;}
.y62{bottom:833.050500px;}
.y33{bottom:833.074500px;}
.y11d{bottom:838.914000px;}
.yf4{bottom:840.094500px;}
.yb0{bottom:840.118500px;}
.y8{bottom:846.226500px;}
.y84{bottom:847.162500px;}
.yd3{bottom:847.179000px;}
.y61{bottom:852.850500px;}
.y32{bottom:852.874500px;}
.y11c{bottom:856.914000px;}
.yaf{bottom:859.918500px;}
.y7{bottom:866.026500px;}
.y83{bottom:866.962500px;}
.y60{bottom:872.650500px;}
.y31{bottom:872.674500px;}
.y11b{bottom:874.914000px;}
.yae{bottom:879.718500px;}
.yd2{bottom:879.735000px;}
.y5f{bottom:892.450500px;}
.y30{bottom:892.474500px;}
.y11a{bottom:892.914000px;}
.yad{bottom:899.518500px;}
.yd1{bottom:899.535000px;}
.y119{bottom:910.914000px;}
.y5e{bottom:912.250500px;}
.y2f{bottom:912.274500px;}
.yac{bottom:919.318500px;}
.yd0{bottom:919.335000px;}
.y143{bottom:919.417500px;}
.y118{bottom:928.914000px;}
.y2e{bottom:932.074500px;}
.y142{bottom:937.417500px;}
.yab{bottom:939.118500px;}
.ycf{bottom:939.135000px;}
.y5d{bottom:944.806500px;}
.y117{bottom:946.914000px;}
.y6{bottom:949.635000px;}
.y2d{bottom:951.874500px;}
.y141{bottom:955.417500px;}
.yaa{bottom:958.918500px;}
.yce{bottom:958.935000px;}
.y5c{bottom:964.606500px;}
.y116{bottom:964.914000px;}
.y2c{bottom:971.674500px;}
.y140{bottom:973.417500px;}
.ya9{bottom:978.718500px;}
.y115{bottom:982.914000px;}
.y5b{bottom:984.406500px;}
.y13f{bottom:991.417500px;}
.y2b{bottom:991.474500px;}
.ycd{bottom:991.491000px;}
.y5{bottom:992.835000px;}
.ya8{bottom:998.518500px;}
.y5a{bottom:1004.206500px;}
.y114{bottom:1009.417500px;}
.y2a{bottom:1011.274500px;}
.ycc{bottom:1011.291000px;}
.ya7{bottom:1018.318500px;}
.y59{bottom:1024.006500px;}
.y113{bottom:1027.417500px;}
.y4{bottom:1028.835000px;}
.ycb{bottom:1031.091000px;}
.y13e{bottom:1035.921000px;}
.ya6{bottom:1038.118500px;}
.y58{bottom:1043.806500px;}
.y29{bottom:1043.830500px;}
.y112{bottom:1045.417500px;}
.yca{bottom:1050.891000px;}
.y13d{bottom:1053.921000px;}
.y111{bottom:1063.417500px;}
.y57{bottom:1063.606500px;}
.y28{bottom:1063.630500px;}
.yc9{bottom:1070.691000px;}
.y13c{bottom:1071.921000px;}
.y110{bottom:1081.417500px;}
.y56{bottom:1083.406500px;}
.y27{bottom:1083.430500px;}
.y13b{bottom:1089.921000px;}
.y10f{bottom:1099.417500px;}
.y2{bottom:1100.785500px;}
.y55{bottom:1103.206500px;}
.y26{bottom:1103.230500px;}
.yc8{bottom:1103.247000px;}
.y13a{bottom:1107.921000px;}
.y10e{bottom:1117.417500px;}
.y54{bottom:1123.006500px;}
.y25{bottom:1123.030500px;}
.yc7{bottom:1123.047000px;}
.y139{bottom:1125.921000px;}
.y53{bottom:1142.806500px;}
.y24{bottom:1142.830500px;}
.yc6{bottom:1142.847000px;}
.y10d{bottom:1143.921000px;}
.y1{bottom:1159.671000px;}
.yc5{bottom:1203.561000px;}
.y23{bottom:1203.604500px;}
.h9{height:39.313477px;}
.hd{height:43.681641px;}
.h8{height:45.878906px;}
.h7{height:48.049805px;}
.hc{height:50.976562px;}
.h6{height:52.417969px;}
.hb{height:52.558594px;}
.h4{height:56.074219px;}
.ha{height:61.171875px;}
.h3{height:76.464844px;}
.h5{height:101.953125px;}
.h2{height:171.000000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xc{left:44.645700px;}
.xb{left:46.771650px;}
.x8{left:108.000000px;}
.x5{left:114.493800px;}
.x10{left:125.007900px;}
.x1{left:127.657350px;}
.x7{left:129.259800px;}
.x2{left:131.834700px;}
.x4{left:144.449850px;}
.x6{left:321.327000px;}
.x9{left:467.716500px;}
.xf{left:484.725000px;}
.xa{left:488.976000px;}
.xd{left:609.793500px;}
.xe{left:842.143500px;}
.x3{left:844.269000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.005867pt;}
.ls2{letter-spacing:0.011733pt;}
.lse{letter-spacing:0.256000pt;}
.lsb{letter-spacing:0.517333pt;}
.ls3{letter-spacing:1.210667pt;}
.lsa{letter-spacing:1.242667pt;}
.ls5{letter-spacing:1.322667pt;}
.lsd{letter-spacing:1.445333pt;}
.ls6{letter-spacing:1.600000pt;}
.ls8{letter-spacing:2.330667pt;}
.ls7{letter-spacing:3.392000pt;}
.ls9{letter-spacing:4.725333pt;}
.ls4{letter-spacing:4.869333pt;}
.lsc{letter-spacing:7.610667pt;}
.ws10{word-spacing:-20.944000pt;}
.ws0{word-spacing:-20.000000pt;}
.ws8{word-spacing:-18.202667pt;}
.wsd{word-spacing:-18.058667pt;}
.wsb{word-spacing:-16.725333pt;}
.ws3{word-spacing:-16.000000pt;}
.wsc{word-spacing:-15.664000pt;}
.wsa{word-spacing:-14.933333pt;}
.ws11{word-spacing:-14.778667pt;}
.ws5{word-spacing:-14.672533pt;}
.ws4{word-spacing:-14.666667pt;}
.ws9{word-spacing:-14.656000pt;}
.wse{word-spacing:-14.576000pt;}
.ws7{word-spacing:-14.544000pt;}
.wsf{word-spacing:-13.850667pt;}
.ws13{word-spacing:-13.589333pt;}
.ws6{word-spacing:-13.333333pt;}
.ws1{word-spacing:-12.000000pt;}
.ws12{word-spacing:-4.853333pt;}
.ws2{word-spacing:0.000000pt;}
.ws14{word-spacing:3.801107pt;}
._0{margin-left:-8.106667pt;}
._1b{margin-left:-4.965333pt;}
._b{margin-left:-3.385067pt;}
._9{margin-left:-2.411200pt;}
._3{margin-left:-1.167467pt;}
._5{width:1.701333pt;}
._c{width:2.733867pt;}
._8{width:3.971733pt;}
._f{width:4.886933pt;}
._7{width:5.808000pt;}
._4{width:6.952000pt;}
._1{width:8.167467pt;}
._2{width:9.685867pt;}
._6{width:11.357867pt;}
._a{width:12.630933pt;}
._12{width:13.769067pt;}
._1c{width:14.685867pt;}
._14{width:15.687467pt;}
._10{width:16.585067pt;}
._d{width:18.327467pt;}
._13{width:19.612267pt;}
._16{width:20.574400pt;}
._15{width:21.618667pt;}
._e{width:22.604267pt;}
._18{width:23.824533pt;}
._1e{width:25.488000pt;}
._19{width:27.109867pt;}
._11{width:28.864000pt;}
._1d{width:30.677333pt;}
._17{width:31.768000pt;}
._1a{width:33.264000pt;}
._22{width:34.405333pt;}
._20{width:51.776000pt;}
._21{width:111.781333pt;}
._1f{width:238.704000pt;}
.fs7{font-size:38.095253pt;}
.fs5{font-size:48.000000pt;}
.fs6{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs4{font-size:64.000000pt;}
.fs1{font-size:80.000000pt;}
.fs3{font-size:106.666667pt;}
.fs0{font-size:202.666667pt;}
.y0{bottom:0.000000pt;}
.y22{bottom:36.838000pt;}
.y3{bottom:50.519733pt;}
.y21{bottom:51.238000pt;}
.y82{bottom:53.595733pt;}
.ya5{bottom:97.940400pt;}
.y10c{bottom:102.718933pt;}
.ya4{bottom:115.540400pt;}
.yf3{bottom:115.554800pt;}
.y10b{bottom:118.718933pt;}
.y52{bottom:120.617600pt;}
.y81{bottom:131.934667pt;}
.ya3{bottom:133.140400pt;}
.yf2{bottom:133.154800pt;}
.y10a{bottom:134.718667pt;}
.y51{bottom:138.217333pt;}
.y80{bottom:149.534667pt;}
.y109{bottom:150.718667pt;}
.ya2{bottom:150.740000pt;}
.yf1{bottom:150.754667pt;}
.y50{bottom:155.817333pt;}
.y108{bottom:166.718667pt;}
.y7f{bottom:167.134667pt;}
.ya1{bottom:168.340000pt;}
.yf0{bottom:168.354667pt;}
.y4f{bottom:173.417333pt;}
.y107{bottom:182.718667pt;}
.y7e{bottom:184.734667pt;}
.ya0{bottom:185.940000pt;}
.yef{bottom:185.954667pt;}
.yc4{bottom:191.017333pt;}
.y7d{bottom:202.334667pt;}
.y4e{bottom:202.356000pt;}
.y9f{bottom:203.540000pt;}
.yee{bottom:203.554667pt;}
.y106{bottom:206.278667pt;}
.yc3{bottom:208.617333pt;}
.y7c{bottom:219.934667pt;}
.y4d{bottom:219.956000pt;}
.y9e{bottom:221.140000pt;}
.yed{bottom:221.154667pt;}
.y105{bottom:222.278667pt;}
.yc2{bottom:226.217333pt;}
.y7b{bottom:237.534667pt;}
.y4c{bottom:237.556000pt;}
.y104{bottom:238.278667pt;}
.y9d{bottom:238.740000pt;}
.yc1{bottom:243.817333pt;}
.yec{bottom:250.093333pt;}
.y103{bottom:254.278667pt;}
.y157{bottom:254.526667pt;}
.y7a{bottom:255.134667pt;}
.y4b{bottom:255.156000pt;}
.y9c{bottom:267.678667pt;}
.yeb{bottom:267.693333pt;}
.y102{bottom:270.278667pt;}
.y156{bottom:270.526667pt;}
.y79{bottom:272.734667pt;}
.y4a{bottom:272.756000pt;}
.y138{bottom:275.905333pt;}
.y9b{bottom:285.278667pt;}
.yea{bottom:285.293333pt;}
.y101{bottom:286.278667pt;}
.y155{bottom:286.526667pt;}
.y78{bottom:290.334667pt;}
.y49{bottom:290.356000pt;}
.y137{bottom:291.905333pt;}
.y100{bottom:302.278667pt;}
.y154{bottom:302.526667pt;}
.y9a{bottom:302.878667pt;}
.y136{bottom:307.905333pt;}
.y48{bottom:307.956000pt;}
.ye9{bottom:314.232000pt;}
.yff{bottom:318.278667pt;}
.y153{bottom:318.526667pt;}
.y77{bottom:319.273333pt;}
.y99{bottom:320.478667pt;}
.y47{bottom:325.556000pt;}
.y135{bottom:331.465333pt;}
.ye8{bottom:331.832000pt;}
.yfe{bottom:334.278667pt;}
.y152{bottom:334.526667pt;}
.y76{bottom:336.873333pt;}
.y98{bottom:338.078667pt;}
.y46{bottom:343.156000pt;}
.y134{bottom:347.465333pt;}
.ye7{bottom:349.432000pt;}
.y151{bottom:350.526667pt;}
.y75{bottom:354.473333pt;}
.y97{bottom:355.678667pt;}
.yc0{bottom:360.756000pt;}
.y133{bottom:363.465333pt;}
.yfd{bottom:365.396000pt;}
.y150{bottom:366.526667pt;}
.ye6{bottom:367.032000pt;}
.y74{bottom:372.073333pt;}
.y45{bottom:372.094667pt;}
.ybf{bottom:378.356000pt;}
.y132{bottom:379.465333pt;}
.y14f{bottom:382.526667pt;}
.y96{bottom:384.617333pt;}
.ye5{bottom:384.632000pt;}
.y73{bottom:389.673333pt;}
.y44{bottom:389.694667pt;}
.y131{bottom:395.465333pt;}
.ybe{bottom:395.956000pt;}
.y14e{bottom:398.526667pt;}
.y95{bottom:402.217333pt;}
.ye4{bottom:402.232000pt;}
.y43{bottom:407.294667pt;}
.y130{bottom:411.465333pt;}
.ybd{bottom:413.556000pt;}
.y14d{bottom:414.526667pt;}
.y72{bottom:418.612000pt;}
.y94{bottom:419.817333pt;}
.ye3{bottom:419.832000pt;}
.y42{bottom:424.894667pt;}
.y12f{bottom:427.465333pt;}
.y14c{bottom:430.526667pt;}
.y71{bottom:436.212000pt;}
.y93{bottom:437.417333pt;}
.y41{bottom:442.494667pt;}
.y14b{bottom:446.526667pt;}
.ye2{bottom:448.770667pt;}
.y12e{bottom:451.024000pt;}
.y70{bottom:453.812000pt;}
.y92{bottom:455.017333pt;}
.y40{bottom:460.094667pt;}
.y14a{bottom:462.526667pt;}
.ye1{bottom:466.370667pt;}
.y12d{bottom:467.024000pt;}
.y6f{bottom:471.412000pt;}
.y91{bottom:472.617333pt;}
.y3f{bottom:477.694667pt;}
.y149{bottom:478.526667pt;}
.y12c{bottom:483.024000pt;}
.ye0{bottom:483.970667pt;}
.y6e{bottom:489.012000pt;}
.y90{bottom:490.217333pt;}
.y16{bottom:494.462667pt;}
.y3e{bottom:495.294667pt;}
.y12b{bottom:499.024000pt;}
.ydf{bottom:501.570667pt;}
.y148{bottom:505.865333pt;}
.y6d{bottom:506.612000pt;}
.y8f{bottom:507.817333pt;}
.y15{bottom:512.062667pt;}
.ybc{bottom:512.894667pt;}
.y12a{bottom:515.024000pt;}
.yde{bottom:519.170667pt;}
.y6c{bottom:524.212000pt;}
.y3d{bottom:524.233333pt;}
.y8e{bottom:525.417333pt;}
.y20{bottom:529.662667pt;}
.ybb{bottom:530.494667pt;}
.y129{bottom:531.024000pt;}
.ydd{bottom:536.770667pt;}
.y14{bottom:541.001333pt;}
.y6b{bottom:541.812000pt;}
.y3c{bottom:541.833333pt;}
.y8d{bottom:543.017333pt;}
.y128{bottom:547.024000pt;}
.y1f{bottom:547.262667pt;}
.yba{bottom:548.094667pt;}
.y147{bottom:554.582667pt;}
.y13{bottom:558.601333pt;}
.y6a{bottom:559.412000pt;}
.y3b{bottom:559.433333pt;}
.y8c{bottom:560.617333pt;}
.y1e{bottom:564.862667pt;}
.yb9{bottom:565.694667pt;}
.y127{bottom:570.582667pt;}
.y12{bottom:576.201333pt;}
.y69{bottom:577.012000pt;}
.y3a{bottom:577.033333pt;}
.y8b{bottom:578.217333pt;}
.y1d{bottom:582.462667pt;}
.yb8{bottom:583.294667pt;}
.y126{bottom:586.582667pt;}
.y11{bottom:593.801333pt;}
.y39{bottom:594.633333pt;}
.ydc{bottom:594.648000pt;}
.y1c{bottom:600.062667pt;}
.yb7{bottom:600.894667pt;}
.y125{bottom:602.582667pt;}
.yfc{bottom:605.950667pt;}
.y10{bottom:611.401333pt;}
.y38{bottom:612.233333pt;}
.ydb{bottom:612.248000pt;}
.y1b{bottom:617.662667pt;}
.yb6{bottom:618.494667pt;}
.y124{bottom:618.582667pt;}
.yfb{bottom:623.550667pt;}
.y146{bottom:626.141333pt;}
.yf{bottom:629.001333pt;}
.y37{bottom:629.833333pt;}
.yda{bottom:629.848000pt;}
.y123{bottom:634.582667pt;}
.y68{bottom:634.889333pt;}
.y1a{bottom:635.262667pt;}
.y8a{bottom:636.094667pt;}
.yfa{bottom:641.150667pt;}
.y145{bottom:642.141333pt;}
.ye{bottom:646.601333pt;}
.yb5{bottom:647.433333pt;}
.yd9{bottom:647.448000pt;}
.y67{bottom:652.489333pt;}
.y19{bottom:652.862667pt;}
.y89{bottom:653.694667pt;}
.y122{bottom:658.141333pt;}
.yf9{bottom:658.750667pt;}
.yd{bottom:664.201333pt;}
.yb4{bottom:665.033333pt;}
.yd8{bottom:665.048000pt;}
.y66{bottom:670.089333pt;}
.y18{bottom:670.462667pt;}
.y88{bottom:671.294667pt;}
.y121{bottom:674.141333pt;}
.yf8{bottom:676.350667pt;}
.yc{bottom:681.801333pt;}
.yd7{bottom:682.648000pt;}
.y65{bottom:687.689333pt;}
.y36{bottom:687.710667pt;}
.y17{bottom:688.062667pt;}
.y87{bottom:688.894667pt;}
.y120{bottom:690.141333pt;}
.yf7{bottom:693.950667pt;}
.yb3{bottom:693.972000pt;}
.yb{bottom:699.401333pt;}
.yd6{bottom:700.248000pt;}
.y64{bottom:705.289333pt;}
.y35{bottom:705.310667pt;}
.y11f{bottom:706.141333pt;}
.yf6{bottom:711.550667pt;}
.yb2{bottom:711.572000pt;}
.y144{bottom:713.701333pt;}
.ya{bottom:717.001333pt;}
.y86{bottom:717.833333pt;}
.yd5{bottom:717.848000pt;}
.y63{bottom:722.889333pt;}
.y34{bottom:722.910667pt;}
.yf5{bottom:729.150667pt;}
.yb1{bottom:729.172000pt;}
.y11e{bottom:729.701333pt;}
.y9{bottom:734.601333pt;}
.y85{bottom:735.433333pt;}
.yd4{bottom:735.448000pt;}
.y62{bottom:740.489333pt;}
.y33{bottom:740.510667pt;}
.y11d{bottom:745.701333pt;}
.yf4{bottom:746.750667pt;}
.yb0{bottom:746.772000pt;}
.y8{bottom:752.201333pt;}
.y84{bottom:753.033333pt;}
.yd3{bottom:753.048000pt;}
.y61{bottom:758.089333pt;}
.y32{bottom:758.110667pt;}
.y11c{bottom:761.701333pt;}
.yaf{bottom:764.372000pt;}
.y7{bottom:769.801333pt;}
.y83{bottom:770.633333pt;}
.y60{bottom:775.689333pt;}
.y31{bottom:775.710667pt;}
.y11b{bottom:777.701333pt;}
.yae{bottom:781.972000pt;}
.yd2{bottom:781.986667pt;}
.y5f{bottom:793.289333pt;}
.y30{bottom:793.310667pt;}
.y11a{bottom:793.701333pt;}
.yad{bottom:799.572000pt;}
.yd1{bottom:799.586667pt;}
.y119{bottom:809.701333pt;}
.y5e{bottom:810.889333pt;}
.y2f{bottom:810.910667pt;}
.yac{bottom:817.172000pt;}
.yd0{bottom:817.186667pt;}
.y143{bottom:817.260000pt;}
.y118{bottom:825.701333pt;}
.y2e{bottom:828.510667pt;}
.y142{bottom:833.260000pt;}
.yab{bottom:834.772000pt;}
.ycf{bottom:834.786667pt;}
.y5d{bottom:839.828000pt;}
.y117{bottom:841.701333pt;}
.y6{bottom:844.120000pt;}
.y2d{bottom:846.110667pt;}
.y141{bottom:849.260000pt;}
.yaa{bottom:852.372000pt;}
.yce{bottom:852.386667pt;}
.y5c{bottom:857.428000pt;}
.y116{bottom:857.701333pt;}
.y2c{bottom:863.710667pt;}
.y140{bottom:865.260000pt;}
.ya9{bottom:869.972000pt;}
.y115{bottom:873.701333pt;}
.y5b{bottom:875.028000pt;}
.y13f{bottom:881.260000pt;}
.y2b{bottom:881.310667pt;}
.ycd{bottom:881.325333pt;}
.y5{bottom:882.520000pt;}
.ya8{bottom:887.572000pt;}
.y5a{bottom:892.628000pt;}
.y114{bottom:897.260000pt;}
.y2a{bottom:898.910667pt;}
.ycc{bottom:898.925333pt;}
.ya7{bottom:905.172000pt;}
.y59{bottom:910.228000pt;}
.y113{bottom:913.260000pt;}
.y4{bottom:914.520000pt;}
.ycb{bottom:916.525333pt;}
.y13e{bottom:920.818667pt;}
.ya6{bottom:922.772000pt;}
.y58{bottom:927.828000pt;}
.y29{bottom:927.849333pt;}
.y112{bottom:929.260000pt;}
.yca{bottom:934.125333pt;}
.y13d{bottom:936.818667pt;}
.y111{bottom:945.260000pt;}
.y57{bottom:945.428000pt;}
.y28{bottom:945.449333pt;}
.yc9{bottom:951.725333pt;}
.y13c{bottom:952.818667pt;}
.y110{bottom:961.260000pt;}
.y56{bottom:963.028000pt;}
.y27{bottom:963.049333pt;}
.y13b{bottom:968.818667pt;}
.y10f{bottom:977.260000pt;}
.y2{bottom:978.476000pt;}
.y55{bottom:980.628000pt;}
.y26{bottom:980.649333pt;}
.yc8{bottom:980.664000pt;}
.y13a{bottom:984.818667pt;}
.y10e{bottom:993.260000pt;}
.y54{bottom:998.228000pt;}
.y25{bottom:998.249333pt;}
.yc7{bottom:998.264000pt;}
.y139{bottom:1000.818667pt;}
.y53{bottom:1015.828000pt;}
.y24{bottom:1015.849333pt;}
.yc6{bottom:1015.864000pt;}
.y10d{bottom:1016.818667pt;}
.y1{bottom:1030.818667pt;}
.yc5{bottom:1069.832000pt;}
.y23{bottom:1069.870667pt;}
.h9{height:34.945312pt;}
.hd{height:38.828125pt;}
.h8{height:40.781250pt;}
.h7{height:42.710938pt;}
.hc{height:45.312500pt;}
.h6{height:46.593750pt;}
.hb{height:46.718750pt;}
.h4{height:49.843750pt;}
.ha{height:54.375000pt;}
.h3{height:67.968750pt;}
.h5{height:90.625000pt;}
.h2{height:152.000000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xc{left:39.685067pt;}
.xb{left:41.574800pt;}
.x8{left:96.000000pt;}
.x5{left:101.772267pt;}
.x10{left:111.118133pt;}
.x1{left:113.473200pt;}
.x7{left:114.897600pt;}
.x2{left:117.186400pt;}
.x4{left:128.399867pt;}
.x6{left:285.624000pt;}
.x9{left:415.748000pt;}
.xf{left:430.866667pt;}
.xa{left:434.645333pt;}
.xd{left:542.038667pt;}
.xe{left:748.572000pt;}
.x3{left:750.461333pt;}
}




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