
    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_c5fd9e1d744c1d78de118215.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.939941;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_7740ed925bb8ef1d3df44ee8.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938965;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_1676e3b88bcbb522aa02cb36.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_b3eb8e7b4e02286458241dd8.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.939941;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_7ecb114edf98c1ef3ec8c9f1.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938965;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_da7a3459d988877bea327279.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_27124ae226a5df75d3621c9d.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.172852;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_e1f303fe6b803733869b6a41.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.172852;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_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ff9{font-family:ff9;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;}
@font-face{font-family:ffa;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ffa{font-family:ffa;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.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;}
.v1{vertical-align:24.480000px;}
.ls1d{letter-spacing:-3.600000px;}
.ls28{letter-spacing:-2.880000px;}
.ls2b{letter-spacing:-1.998000px;}
.lsc{letter-spacing:-1.926000px;}
.ls1b{letter-spacing:-1.806000px;}
.ls13{letter-spacing:-1.440000px;}
.ls19{letter-spacing:-1.422000px;}
.ls14{letter-spacing:-0.972000px;}
.ls18{letter-spacing:-0.954000px;}
.ls2a{letter-spacing:-0.948000px;}
.ls16{letter-spacing:-0.936000px;}
.ls7{letter-spacing:-0.720000px;}
.ls23{letter-spacing:-0.507000px;}
.ls8{letter-spacing:-0.498000px;}
.lsb{letter-spacing:-0.486600px;}
.ls1a{letter-spacing:-0.466800px;}
.ls1f{letter-spacing:-0.423600px;}
.ls29{letter-spacing:-0.072000px;}
.ls1e{letter-spacing:-0.020160px;}
.ls6{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.020160px;}
.ls11{letter-spacing:0.120960px;}
.ls2c{letter-spacing:0.121200px;}
.ls27{letter-spacing:0.213120px;}
.ls1c{letter-spacing:0.447600px;}
.lsf{letter-spacing:0.466800px;}
.ls24{letter-spacing:0.486600px;}
.ls0{letter-spacing:0.498240px;}
.ls15{letter-spacing:0.507000px;}
.ls1{letter-spacing:0.720000px;}
.ls5{letter-spacing:0.731520px;}
.lsd{letter-spacing:2.160000px;}
.ls20{letter-spacing:2.280000px;}
.ls4{letter-spacing:3.600000px;}
.ls22{letter-spacing:5.040000px;}
.ls17{letter-spacing:6.480000px;}
.ls10{letter-spacing:6.491520px;}
.ls2{letter-spacing:7.920000px;}
.ls12{letter-spacing:9.360000px;}
.ls3{letter-spacing:13.680000px;}
.lsa{letter-spacing:13.860000px;}
.ls26{letter-spacing:25.211520px;}
.ls2d{letter-spacing:71.038560px;}
.ls2e{letter-spacing:114.226560px;}
.ls25{letter-spacing:114.238560px;}
.ls21{letter-spacing:137.278560px;}
.lse{letter-spacing:160.318560px;}
.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;}
}
.ws8{word-spacing:-15.627000px;}
.ws11{word-spacing:-15.606600px;}
.wsa{word-spacing:-15.586800px;}
.ws1{word-spacing:-15.120000px;}
.wse{word-spacing:-15.099840px;}
.wsd{word-spacing:-14.653200px;}
.ws4{word-spacing:-14.633400px;}
.ws10{word-spacing:-14.613000px;}
.ws9{word-spacing:-14.184000px;}
.wsb{word-spacing:-14.166000px;}
.ws7{word-spacing:-14.148000px;}
.ws15{word-spacing:-13.789680px;}
.wsc{word-spacing:-13.698000px;}
.ws6{word-spacing:-13.680000px;}
.ws2{word-spacing:-13.668480px;}
.ws12{word-spacing:-13.596480px;}
.wsf{word-spacing:-13.244880px;}
.ws5{word-spacing:-13.194000px;}
.ws0{word-spacing:-13.182000px;}
.ws13{word-spacing:-12.720480px;}
.ws14{word-spacing:-11.670480px;}
.ws3{word-spacing:0.000000px;}
._13{margin-left:-5.322240px;}
._d{margin-left:-4.100160px;}
._6{margin-left:-2.851200px;}
._1{margin-left:-1.512000px;}
._0{width:1.080000px;}
._2{width:2.176800px;}
._c{width:3.276000px;}
._12{width:4.426080px;}
._11{width:5.454720px;}
._10{width:6.891360px;}
._b{width:8.373600px;}
._a{width:9.452160px;}
._9{width:10.609920px;}
._7{width:11.672640px;}
._8{width:13.072320px;}
._16{width:14.079840px;}
._1e{width:15.192000px;}
._f{width:16.344480px;}
._e{width:17.427360px;}
._15{width:18.817440px;}
._14{width:20.079360px;}
._1f{width:21.280320px;}
._21{width:23.405760px;}
._20{width:25.220160px;}
._25{width:26.559360px;}
._1c{width:28.062720px;}
._1b{width:29.332800px;}
._1d{width:30.340800px;}
._23{width:41.469120px;}
._22{width:42.635520px;}
._18{width:53.536320px;}
._17{width:54.728640px;}
._19{width:55.837440px;}
._1a{width:56.896320px;}
._5{width:393.960000px;}
._4{width:833.340000px;}
._24{width:849.336000px;}
._3{width:1591.176000px;}
.fc6{color:transparent;}
.fc3{color:rgb(0,0,255);}
.fc5{color:rgb(128,128,128);}
.fc4{color:rgb(255,255,255);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(192,0,0);}
.fc0{color:rgb(0,32,96);}
.fs4{font-size:11.520000px;}
.fs3{font-size:38.880000px;}
.fs2{font-size:54.720000px;}
.fs0{font-size:60.480000px;}
.fs1{font-size:72.000000px;}
.yb{bottom:-3.960000px;}
.y0{bottom:0.000000px;}
.yd{bottom:2.880000px;}
.y26{bottom:5.760000px;}
.y25{bottom:25.560000px;}
.ye{bottom:43.560000px;}
.y24{bottom:45.360000px;}
.y23{bottom:65.565000px;}
.yc{bottom:68.400000px;}
.y22{bottom:85.365000px;}
.ya{bottom:94.716000px;}
.y21{bottom:105.165000px;}
.y20{bottom:124.965000px;}
.y35{bottom:131.076000px;}
.yef{bottom:134.316000px;}
.y98{bottom:136.476000px;}
.y1f{bottom:144.765000px;}
.y34{bottom:149.436000px;}
.yee{bottom:154.110000px;}
.y33{bottom:154.830000px;}
.y1e{bottom:164.565000px;}
.y32{bottom:167.790000px;}
.y31{bottom:173.190000px;}
.yed{bottom:173.910000px;}
.y1d{bottom:184.395000px;}
.y30{bottom:185.430000px;}
.y69{bottom:186.150000px;}
.y68{bottom:191.550000px;}
.yec{bottom:193.710000px;}
.y1c{bottom:204.195000px;}
.y67{bottom:204.555000px;}
.y2f{bottom:205.995000px;}
.y97{bottom:209.955000px;}
.yeb{bottom:213.555000px;}
.y66{bottom:222.915000px;}
.y1b{bottom:223.995000px;}
.y2d{bottom:225.795000px;}
.y65{bottom:228.315000px;}
.y2e{bottom:231.195000px;}
.yea{bottom:233.355000px;}
.y64{bottom:240.555000px;}
.y96{bottom:241.275000px;}
.y1a{bottom:243.795000px;}
.y2c{bottom:245.595000px;}
.ye9{bottom:253.515000px;}
.y95{bottom:259.275000px;}
.yad{bottom:260.715000px;}
.y62{bottom:262.515000px;}
.y19{bottom:263.955000px;}
.ya4{bottom:264.675000px;}
.y2b{bottom:265.755000px;}
.y63{bottom:267.915000px;}
.ye8{bottom:273.315000px;}
.ya3{bottom:276.915000px;}
.y94{bottom:277.635000px;}
.yac{bottom:280.515000px;}
.y61{bottom:282.315000px;}
.y18{bottom:283.755000px;}
.y2a{bottom:285.555000px;}
.ye7{bottom:293.115000px;}
.y93{bottom:295.995000px;}
.ya2{bottom:298.515000px;}
.yab{bottom:300.315000px;}
.y60{bottom:302.115000px;}
.y29{bottom:305.355000px;}
.ye6{bottom:312.915000px;}
.y92{bottom:314.355000px;}
.ya0{bottom:318.315000px;}
.y91{bottom:319.755000px;}
.yaa{bottom:320.115000px;}
.y17{bottom:321.585000px;}
.y5f{bottom:321.915000px;}
.ya1{bottom:323.745000px;}
.y28{bottom:324.825000px;}
.y90{bottom:332.745000px;}
.y8f{bottom:338.145000px;}
.ya9{bottom:339.945000px;}
.y5e{bottom:341.745000px;}
.y8e{bottom:350.385000px;}
.ycb{bottom:351.105000px;}
.ye5{bottom:352.545000px;}
.yca{bottom:356.505000px;}
.y9f{bottom:357.945000px;}
.y5d{bottom:361.905000px;}
.y27{bottom:362.985000px;}
.yc9{bottom:369.465000px;}
.ye4{bottom:372.345000px;}
.y8c{bottom:377.745000px;}
.y8d{bottom:383.145000px;}
.yc8{bottom:387.825000px;}
.ye3{bottom:392.145000px;}
.yc7{bottom:393.225000px;}
.y16{bottom:397.185000px;}
.y8b{bottom:397.905000px;}
.y5c{bottom:399.705000px;}
.yc6{bottom:405.825000px;}
.ye2{bottom:411.945000px;}
.y8a{bottom:417.705000px;}
.y5b{bottom:419.505000px;}
.yc5{bottom:424.185000px;}
.ye1{bottom:431.745000px;}
.y89{bottom:437.505000px;}
.y5a{bottom:439.305000px;}
.yc4{bottom:442.545000px;}
.yc3{bottom:447.945000px;}
.ye0{bottom:451.950000px;}
.y88{bottom:457.350000px;}
.y59{bottom:459.150000px;}
.yc2{bottom:460.230000px;}
.ydf{bottom:471.750000px;}
.y87{bottom:477.150000px;}
.yda{bottom:491.550000px;}
.ya7{bottom:495.150000px;}
.y58{bottom:496.950000px;}
.ya8{bottom:500.550000px;}
.yd9{bottom:511.350000px;}
.y9d{bottom:514.950000px;}
.y57{bottom:516.750000px;}
.y9e{bottom:520.350000px;}
.yd8{bottom:531.150000px;}
.y85{bottom:534.750000px;}
.y56{bottom:536.550000px;}
.y86{bottom:540.150000px;}
.yd7{bottom:550.950000px;}
.yc1{bottom:552.750000px;}
.y84{bottom:554.550000px;}
.y55{bottom:556.350000px;}
.yd6{bottom:570.750000px;}
.yc0{bottom:572.550000px;}
.y82{bottom:574.350000px;}
.y54{bottom:576.180000px;}
.y83{bottom:579.780000px;}
.yd5{bottom:590.580000px;}
.ybf{bottom:592.380000px;}
.y80{bottom:594.180000px;}
.y81{bottom:599.580000px;}
.yd4{bottom:610.380000px;}
.ybd{bottom:612.180000px;}
.y53{bottom:614.340000px;}
.ybe{bottom:617.580000px;}
.yd3{bottom:630.180000px;}
.y9b{bottom:632.340000px;}
.y52{bottom:634.140000px;}
.y9c{bottom:637.740000px;}
.yd2{bottom:650.340000px;}
.ybc{bottom:651.780000px;}
.y7f{bottom:652.140000px;}
.y51{bottom:653.940000px;}
.yd1{bottom:670.140000px;}
.y7d{bottom:671.940000px;}
.y50{bottom:673.740000px;}
.y7e{bottom:677.340000px;}
.y102{bottom:688.860000px;}
.ybb{bottom:689.940000px;}
.y7c{bottom:691.740000px;}
.y4f{bottom:693.540000px;}
.y101{bottom:708.690000px;}
.yba{bottom:709.770000px;}
.y7a{bottom:711.570000px;}
.y4e{bottom:713.370000px;}
.y7b{bottom:716.970000px;}
.y100{bottom:728.490000px;}
.yd0{bottom:729.570000px;}
.y79{bottom:731.370000px;}
.yb9{bottom:747.570000px;}
.yff{bottom:748.290000px;}
.ycf{bottom:749.370000px;}
.y4d{bottom:751.170000px;}
.y15{bottom:761.610000px;}
.yb7{bottom:767.370000px;}
.yfe{bottom:768.090000px;}
.yce{bottom:769.170000px;}
.y4c{bottom:770.970000px;}
.yb8{bottom:772.770000px;}
.yb6{bottom:787.170000px;}
.yfd{bottom:788.250000px;}
.ycd{bottom:788.970000px;}
.y4b{bottom:790.770000px;}
.y14{bottom:802.650000px;}
.yb5{bottom:806.970000px;}
.yfc{bottom:808.050000px;}
.y78{bottom:808.770000px;}
.y4a{bottom:810.570000px;}
.yb4{bottom:826.815000px;}
.yfb{bottom:827.895000px;}
.y77{bottom:828.615000px;}
.y49{bottom:830.415000px;}
.y12{bottom:843.375000px;}
.ya5{bottom:846.615000px;}
.yfa{bottom:847.695000px;}
.y9a{bottom:848.415000px;}
.y13{bottom:849.495000px;}
.ya6{bottom:852.015000px;}
.y76{bottom:866.415000px;}
.yf9{bottom:867.495000px;}
.y47{bottom:868.575000px;}
.yb3{bottom:871.815000px;}
.y48{bottom:873.975000px;}
.y11{bottom:884.415000px;}
.y75{bottom:886.575000px;}
.yf8{bottom:887.295000px;}
.y46{bottom:888.375000px;}
.y10{bottom:904.215000px;}
.y74{bottom:906.375000px;}
.yf7{bottom:907.095000px;}
.y45{bottom:908.175000px;}
.yb2{bottom:911.775000px;}
.yf{bottom:924.015000px;}
.y73{bottom:926.175000px;}
.yf6{bottom:926.895000px;}
.y44{bottom:927.975000px;}
.yb1{bottom:931.575000px;}
.y9{bottom:941.295000px;}
.y72{bottom:945.975000px;}
.yf5{bottom:946.695000px;}
.y43{bottom:947.775000px;}
.y8{bottom:958.605000px;}
.y71{bottom:965.805000px;}
.yf4{bottom:966.525000px;}
.yde{bottom:967.605000px;}
.y99{bottom:971.205000px;}
.y7{bottom:972.645000px;}
.y42{bottom:985.605000px;}
.yf3{bottom:986.685000px;}
.ydd{bottom:987.405000px;}
.y70{bottom:991.005000px;}
.yaf{bottom:1003.605000px;}
.y41{bottom:1005.405000px;}
.yf2{bottom:1006.485000px;}
.ydc{bottom:1007.205000px;}
.yb0{bottom:1009.005000px;}
.y6f{bottom:1023.405000px;}
.y40{bottom:1025.205000px;}
.yf1{bottom:1026.285000px;}
.ydb{bottom:1027.005000px;}
.y6{bottom:1027.365000px;}
.ycc{bottom:1028.805000px;}
.y6e{bottom:1043.205000px;}
.y3f{bottom:1045.005000px;}
.y5{bottom:1052.205000px;}
.y6d{bottom:1063.005000px;}
.yf0{bottom:1064.085000px;}
.y3e{bottom:1064.805000px;}
.y4{bottom:1072.725000px;}
.y6b{bottom:1082.850000px;}
.y3d{bottom:1085.010000px;}
.y6c{bottom:1088.250000px;}
.y3{bottom:1094.010000px;}
.y6a{bottom:1103.010000px;}
.yae{bottom:1108.410000px;}
.y2{bottom:1114.530000px;}
.y3b{bottom:1122.810000px;}
.y3c{bottom:1128.210000px;}
.y1{bottom:1131.450000px;}
.y3a{bottom:1142.610000px;}
.y39{bottom:1166.370000px;}
.y38{bottom:1180.410000px;}
.y37{bottom:1201.290000px;}
.y36{bottom:1227.600000px;}
.h11{height:8.330625px;}
.h6{height:8.640000px;}
.h8{height:15.516000px;}
.hd{height:28.115859px;}
.ha{height:28.153828px;}
.he{height:38.671172px;}
.h7{height:39.570469px;}
.h4{height:43.735781px;}
.h2{height:43.794844px;}
.h10{height:44.031094px;}
.h5{height:45.101250px;}
.hc{height:49.848750px;}
.h3{height:52.136719px;}
.h9{height:52.633828px;}
.hf{height:60.155156px;}
.hb{height:335.625000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w8{width:339.270000px;}
.w4{width:339.990000px;}
.w3{width:340.710000px;}
.w7{width:341.430000px;}
.w6{width:679.965000px;}
.w1{width:892.500000px;}
.w5{width:892.799973px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x9{left:8.640000px;}
.x7{left:106.235987px;}
.x14{left:111.275987px;}
.x2d{left:116.315987px;}
.xb{left:118.835987px;}
.x21{left:127.475987px;}
.x4e{left:133.271987px;}
.x38{left:156.314973px;}
.x37{left:159.914973px;}
.x22{left:162.074973px;}
.x24{left:164.954973px;}
.x23{left:167.114987px;}
.x25{left:169.994987px;}
.x35{left:179.354973px;}
.x15{left:180.794987px;}
.x4f{left:187.274987px;}
.x36{left:189.434987px;}
.x4a{left:193.394973px;}
.x4b{left:203.474987px;}
.x46{left:212.474987px;}
.x26{left:214.994973px;}
.x27{left:225.104987px;}
.x47{left:235.544987px;}
.x2e{left:238.424973px;}
.x41{left:240.224973px;}
.x2f{left:248.504987px;}
.x42{left:250.304987px;}
.x2{left:254.264987px;}
.x6{left:274.064987px;}
.x3d{left:275.864973px;}
.xc{left:280.184987px;}
.x3e{left:285.944987px;}
.xa{left:304.350000px;}
.x13{left:322.349987px;}
.xd{left:344.309987px;}
.x28{left:349.709973px;}
.x5{left:355.829987px;}
.x10{left:359.069987px;}
.x4c{left:365.549973px;}
.x45{left:368.789987px;}
.x4d{left:375.629987px;}
.x4{left:379.949987px;}
.x48{left:396.539973px;}
.x3{left:398.339987px;}
.x49{left:406.619987px;}
.x8{left:446.579987px;}
.x16{left:447.660000px;}
.x33{left:451.259973px;}
.x34{left:461.339987px;}
.x11{left:518.969973px;}
.x12{left:524.009987px;}
.xe{left:543.449973px;}
.xf{left:548.489987px;}
.x1d{left:559.289973px;}
.x1e{left:564.329987px;}
.x1f{left:606.134973px;}
.x20{left:611.174987px;}
.x43{left:621.974973px;}
.x44{left:632.054987px;}
.x3b{left:636.374973px;}
.x19{left:638.534973px;}
.x39{left:640.334973px;}
.x1a{left:643.574987px;}
.x3c{left:646.454987px;}
.x2b{left:647.894973px;}
.x3a{left:650.414987px;}
.x2c{left:657.974987px;}
.x1b{left:671.324973px;}
.x30{left:672.764973px;}
.x1c{left:676.364987px;}
.x31{left:682.844987px;}
.x29{left:710.204973px;}
.x2a{left:720.284987px;}
.x3f{left:754.169973px;}
.x40{left:764.249987px;}
.x32{left:768.569973px;}
.x17{left:778.289973px;}
.x18{left:783.329987px;}
.x1{left:786.929987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.760000pt;}
.ls1d{letter-spacing:-3.200000pt;}
.ls28{letter-spacing:-2.560000pt;}
.ls2b{letter-spacing:-1.776000pt;}
.lsc{letter-spacing:-1.712000pt;}
.ls1b{letter-spacing:-1.605333pt;}
.ls13{letter-spacing:-1.280000pt;}
.ls19{letter-spacing:-1.264000pt;}
.ls14{letter-spacing:-0.864000pt;}
.ls18{letter-spacing:-0.848000pt;}
.ls2a{letter-spacing:-0.842667pt;}
.ls16{letter-spacing:-0.832000pt;}
.ls7{letter-spacing:-0.640000pt;}
.ls23{letter-spacing:-0.450667pt;}
.ls8{letter-spacing:-0.442667pt;}
.lsb{letter-spacing:-0.432533pt;}
.ls1a{letter-spacing:-0.414933pt;}
.ls1f{letter-spacing:-0.376533pt;}
.ls29{letter-spacing:-0.064000pt;}
.ls1e{letter-spacing:-0.017920pt;}
.ls6{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.017920pt;}
.ls11{letter-spacing:0.107520pt;}
.ls2c{letter-spacing:0.107733pt;}
.ls27{letter-spacing:0.189440pt;}
.ls1c{letter-spacing:0.397867pt;}
.lsf{letter-spacing:0.414933pt;}
.ls24{letter-spacing:0.432533pt;}
.ls0{letter-spacing:0.442880pt;}
.ls15{letter-spacing:0.450667pt;}
.ls1{letter-spacing:0.640000pt;}
.ls5{letter-spacing:0.650240pt;}
.lsd{letter-spacing:1.920000pt;}
.ls20{letter-spacing:2.026667pt;}
.ls4{letter-spacing:3.200000pt;}
.ls22{letter-spacing:4.480000pt;}
.ls17{letter-spacing:5.760000pt;}
.ls10{letter-spacing:5.770240pt;}
.ls2{letter-spacing:7.040000pt;}
.ls12{letter-spacing:8.320000pt;}
.ls3{letter-spacing:12.160000pt;}
.lsa{letter-spacing:12.320000pt;}
.ls26{letter-spacing:22.410240pt;}
.ls2d{letter-spacing:63.145387pt;}
.ls2e{letter-spacing:101.534720pt;}
.ls25{letter-spacing:101.545387pt;}
.ls21{letter-spacing:122.025387pt;}
.lse{letter-spacing:142.505387pt;}
.ws8{word-spacing:-13.890667pt;}
.ws11{word-spacing:-13.872533pt;}
.wsa{word-spacing:-13.854933pt;}
.ws1{word-spacing:-13.440000pt;}
.wse{word-spacing:-13.422080pt;}
.wsd{word-spacing:-13.025067pt;}
.ws4{word-spacing:-13.007467pt;}
.ws10{word-spacing:-12.989333pt;}
.ws9{word-spacing:-12.608000pt;}
.wsb{word-spacing:-12.592000pt;}
.ws7{word-spacing:-12.576000pt;}
.ws15{word-spacing:-12.257493pt;}
.wsc{word-spacing:-12.176000pt;}
.ws6{word-spacing:-12.160000pt;}
.ws2{word-spacing:-12.149760pt;}
.ws12{word-spacing:-12.085760pt;}
.wsf{word-spacing:-11.773227pt;}
.ws5{word-spacing:-11.728000pt;}
.ws0{word-spacing:-11.717333pt;}
.ws13{word-spacing:-11.307093pt;}
.ws14{word-spacing:-10.373760pt;}
.ws3{word-spacing:0.000000pt;}
._13{margin-left:-4.730880pt;}
._d{margin-left:-3.644587pt;}
._6{margin-left:-2.534400pt;}
._1{margin-left:-1.344000pt;}
._0{width:0.960000pt;}
._2{width:1.934933pt;}
._c{width:2.912000pt;}
._12{width:3.934293pt;}
._11{width:4.848640pt;}
._10{width:6.125653pt;}
._b{width:7.443200pt;}
._a{width:8.401920pt;}
._9{width:9.431040pt;}
._7{width:10.375680pt;}
._8{width:11.619840pt;}
._16{width:12.515413pt;}
._1e{width:13.504000pt;}
._f{width:14.528427pt;}
._e{width:15.490987pt;}
._15{width:16.726613pt;}
._14{width:17.848320pt;}
._1f{width:18.915840pt;}
._21{width:20.805120pt;}
._20{width:22.417920pt;}
._25{width:23.608320pt;}
._1c{width:24.944640pt;}
._1b{width:26.073600pt;}
._1d{width:26.969600pt;}
._23{width:36.861440pt;}
._22{width:37.898240pt;}
._18{width:47.587840pt;}
._17{width:48.647680pt;}
._19{width:49.633280pt;}
._1a{width:50.574507pt;}
._5{width:350.186667pt;}
._4{width:740.746667pt;}
._24{width:754.965333pt;}
._3{width:1414.378667pt;}
.fs4{font-size:10.240000pt;}
.fs3{font-size:34.560000pt;}
.fs2{font-size:48.640000pt;}
.fs0{font-size:53.760000pt;}
.fs1{font-size:64.000000pt;}
.yb{bottom:-3.520000pt;}
.y0{bottom:0.000000pt;}
.yd{bottom:2.560000pt;}
.y26{bottom:5.120000pt;}
.y25{bottom:22.720000pt;}
.ye{bottom:38.720000pt;}
.y24{bottom:40.320000pt;}
.y23{bottom:58.280000pt;}
.yc{bottom:60.800000pt;}
.y22{bottom:75.880000pt;}
.ya{bottom:84.192000pt;}
.y21{bottom:93.480000pt;}
.y20{bottom:111.080000pt;}
.y35{bottom:116.512000pt;}
.yef{bottom:119.392000pt;}
.y98{bottom:121.312000pt;}
.y1f{bottom:128.680000pt;}
.y34{bottom:132.832000pt;}
.yee{bottom:136.986667pt;}
.y33{bottom:137.626667pt;}
.y1e{bottom:146.280000pt;}
.y32{bottom:149.146667pt;}
.y31{bottom:153.946667pt;}
.yed{bottom:154.586667pt;}
.y1d{bottom:163.906667pt;}
.y30{bottom:164.826667pt;}
.y69{bottom:165.466667pt;}
.y68{bottom:170.266667pt;}
.yec{bottom:172.186667pt;}
.y1c{bottom:181.506667pt;}
.y67{bottom:181.826667pt;}
.y2f{bottom:183.106667pt;}
.y97{bottom:186.626667pt;}
.yeb{bottom:189.826667pt;}
.y66{bottom:198.146667pt;}
.y1b{bottom:199.106667pt;}
.y2d{bottom:200.706667pt;}
.y65{bottom:202.946667pt;}
.y2e{bottom:205.506667pt;}
.yea{bottom:207.426667pt;}
.y64{bottom:213.826667pt;}
.y96{bottom:214.466667pt;}
.y1a{bottom:216.706667pt;}
.y2c{bottom:218.306667pt;}
.ye9{bottom:225.346667pt;}
.y95{bottom:230.466667pt;}
.yad{bottom:231.746667pt;}
.y62{bottom:233.346667pt;}
.y19{bottom:234.626667pt;}
.ya4{bottom:235.266667pt;}
.y2b{bottom:236.226667pt;}
.y63{bottom:238.146667pt;}
.ye8{bottom:242.946667pt;}
.ya3{bottom:246.146667pt;}
.y94{bottom:246.786667pt;}
.yac{bottom:249.346667pt;}
.y61{bottom:250.946667pt;}
.y18{bottom:252.226667pt;}
.y2a{bottom:253.826667pt;}
.ye7{bottom:260.546667pt;}
.y93{bottom:263.106667pt;}
.ya2{bottom:265.346667pt;}
.yab{bottom:266.946667pt;}
.y60{bottom:268.546667pt;}
.y29{bottom:271.426667pt;}
.ye6{bottom:278.146667pt;}
.y92{bottom:279.426667pt;}
.ya0{bottom:282.946667pt;}
.y91{bottom:284.226667pt;}
.yaa{bottom:284.546667pt;}
.y17{bottom:285.853333pt;}
.y5f{bottom:286.146667pt;}
.ya1{bottom:287.773333pt;}
.y28{bottom:288.733333pt;}
.y90{bottom:295.773333pt;}
.y8f{bottom:300.573333pt;}
.ya9{bottom:302.173333pt;}
.y5e{bottom:303.773333pt;}
.y8e{bottom:311.453333pt;}
.ycb{bottom:312.093333pt;}
.ye5{bottom:313.373333pt;}
.yca{bottom:316.893333pt;}
.y9f{bottom:318.173333pt;}
.y5d{bottom:321.693333pt;}
.y27{bottom:322.653333pt;}
.yc9{bottom:328.413333pt;}
.ye4{bottom:330.973333pt;}
.y8c{bottom:335.773333pt;}
.y8d{bottom:340.573333pt;}
.yc8{bottom:344.733333pt;}
.ye3{bottom:348.573333pt;}
.yc7{bottom:349.533333pt;}
.y16{bottom:353.053333pt;}
.y8b{bottom:353.693333pt;}
.y5c{bottom:355.293333pt;}
.yc6{bottom:360.733333pt;}
.ye2{bottom:366.173333pt;}
.y8a{bottom:371.293333pt;}
.y5b{bottom:372.893333pt;}
.yc5{bottom:377.053333pt;}
.ye1{bottom:383.773333pt;}
.y89{bottom:388.893333pt;}
.y5a{bottom:390.493333pt;}
.yc4{bottom:393.373333pt;}
.yc3{bottom:398.173333pt;}
.ye0{bottom:401.733333pt;}
.y88{bottom:406.533333pt;}
.y59{bottom:408.133333pt;}
.yc2{bottom:409.093333pt;}
.ydf{bottom:419.333333pt;}
.y87{bottom:424.133333pt;}
.yda{bottom:436.933333pt;}
.ya7{bottom:440.133333pt;}
.y58{bottom:441.733333pt;}
.ya8{bottom:444.933333pt;}
.yd9{bottom:454.533333pt;}
.y9d{bottom:457.733333pt;}
.y57{bottom:459.333333pt;}
.y9e{bottom:462.533333pt;}
.yd8{bottom:472.133333pt;}
.y85{bottom:475.333333pt;}
.y56{bottom:476.933333pt;}
.y86{bottom:480.133333pt;}
.yd7{bottom:489.733333pt;}
.yc1{bottom:491.333333pt;}
.y84{bottom:492.933333pt;}
.y55{bottom:494.533333pt;}
.yd6{bottom:507.333333pt;}
.yc0{bottom:508.933333pt;}
.y82{bottom:510.533333pt;}
.y54{bottom:512.160000pt;}
.y83{bottom:515.360000pt;}
.yd5{bottom:524.960000pt;}
.ybf{bottom:526.560000pt;}
.y80{bottom:528.160000pt;}
.y81{bottom:532.960000pt;}
.yd4{bottom:542.560000pt;}
.ybd{bottom:544.160000pt;}
.y53{bottom:546.080000pt;}
.ybe{bottom:548.960000pt;}
.yd3{bottom:560.160000pt;}
.y9b{bottom:562.080000pt;}
.y52{bottom:563.680000pt;}
.y9c{bottom:566.880000pt;}
.yd2{bottom:578.080000pt;}
.ybc{bottom:579.360000pt;}
.y7f{bottom:579.680000pt;}
.y51{bottom:581.280000pt;}
.yd1{bottom:595.680000pt;}
.y7d{bottom:597.280000pt;}
.y50{bottom:598.880000pt;}
.y7e{bottom:602.080000pt;}
.y102{bottom:612.320000pt;}
.ybb{bottom:613.280000pt;}
.y7c{bottom:614.880000pt;}
.y4f{bottom:616.480000pt;}
.y101{bottom:629.946667pt;}
.yba{bottom:630.906667pt;}
.y7a{bottom:632.506667pt;}
.y4e{bottom:634.106667pt;}
.y7b{bottom:637.306667pt;}
.y100{bottom:647.546667pt;}
.yd0{bottom:648.506667pt;}
.y79{bottom:650.106667pt;}
.yb9{bottom:664.506667pt;}
.yff{bottom:665.146667pt;}
.ycf{bottom:666.106667pt;}
.y4d{bottom:667.706667pt;}
.y15{bottom:676.986667pt;}
.yb7{bottom:682.106667pt;}
.yfe{bottom:682.746667pt;}
.yce{bottom:683.706667pt;}
.y4c{bottom:685.306667pt;}
.yb8{bottom:686.906667pt;}
.yb6{bottom:699.706667pt;}
.yfd{bottom:700.666667pt;}
.ycd{bottom:701.306667pt;}
.y4b{bottom:702.906667pt;}
.y14{bottom:713.466667pt;}
.yb5{bottom:717.306667pt;}
.yfc{bottom:718.266667pt;}
.y78{bottom:718.906667pt;}
.y4a{bottom:720.506667pt;}
.yb4{bottom:734.946667pt;}
.yfb{bottom:735.906667pt;}
.y77{bottom:736.546667pt;}
.y49{bottom:738.146667pt;}
.y12{bottom:749.666667pt;}
.ya5{bottom:752.546667pt;}
.yfa{bottom:753.506667pt;}
.y9a{bottom:754.146667pt;}
.y13{bottom:755.106667pt;}
.ya6{bottom:757.346667pt;}
.y76{bottom:770.146667pt;}
.yf9{bottom:771.106667pt;}
.y47{bottom:772.066667pt;}
.yb3{bottom:774.946667pt;}
.y48{bottom:776.866667pt;}
.y11{bottom:786.146667pt;}
.y75{bottom:788.066667pt;}
.yf8{bottom:788.706667pt;}
.y46{bottom:789.666667pt;}
.y10{bottom:803.746667pt;}
.y74{bottom:805.666667pt;}
.yf7{bottom:806.306667pt;}
.y45{bottom:807.266667pt;}
.yb2{bottom:810.466667pt;}
.yf{bottom:821.346667pt;}
.y73{bottom:823.266667pt;}
.yf6{bottom:823.906667pt;}
.y44{bottom:824.866667pt;}
.yb1{bottom:828.066667pt;}
.y9{bottom:836.706667pt;}
.y72{bottom:840.866667pt;}
.yf5{bottom:841.506667pt;}
.y43{bottom:842.466667pt;}
.y8{bottom:852.093333pt;}
.y71{bottom:858.493333pt;}
.yf4{bottom:859.133333pt;}
.yde{bottom:860.093333pt;}
.y99{bottom:863.293333pt;}
.y7{bottom:864.573333pt;}
.y42{bottom:876.093333pt;}
.yf3{bottom:877.053333pt;}
.ydd{bottom:877.693333pt;}
.y70{bottom:880.893333pt;}
.yaf{bottom:892.093333pt;}
.y41{bottom:893.693333pt;}
.yf2{bottom:894.653333pt;}
.ydc{bottom:895.293333pt;}
.yb0{bottom:896.893333pt;}
.y6f{bottom:909.693333pt;}
.y40{bottom:911.293333pt;}
.yf1{bottom:912.253333pt;}
.ydb{bottom:912.893333pt;}
.y6{bottom:913.213333pt;}
.ycc{bottom:914.493333pt;}
.y6e{bottom:927.293333pt;}
.y3f{bottom:928.893333pt;}
.y5{bottom:935.293333pt;}
.y6d{bottom:944.893333pt;}
.yf0{bottom:945.853333pt;}
.y3e{bottom:946.493333pt;}
.y4{bottom:953.533333pt;}
.y6b{bottom:962.533333pt;}
.y3d{bottom:964.453333pt;}
.y6c{bottom:967.333333pt;}
.y3{bottom:972.453333pt;}
.y6a{bottom:980.453333pt;}
.yae{bottom:985.253333pt;}
.y2{bottom:990.693333pt;}
.y3b{bottom:998.053333pt;}
.y3c{bottom:1002.853333pt;}
.y1{bottom:1005.733333pt;}
.y3a{bottom:1015.653333pt;}
.y39{bottom:1036.773333pt;}
.y38{bottom:1049.253333pt;}
.y37{bottom:1067.813333pt;}
.y36{bottom:1091.200000pt;}
.h11{height:7.405000pt;}
.h6{height:7.680000pt;}
.h8{height:13.792000pt;}
.hd{height:24.991875pt;}
.ha{height:25.025625pt;}
.he{height:34.374375pt;}
.h7{height:35.173750pt;}
.h4{height:38.876250pt;}
.h2{height:38.928750pt;}
.h10{height:39.138750pt;}
.h5{height:40.090000pt;}
.hc{height:44.310000pt;}
.h3{height:46.343750pt;}
.h9{height:46.785625pt;}
.hf{height:53.471250pt;}
.hb{height:298.333333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w8{width:301.573333pt;}
.w4{width:302.213333pt;}
.w3{width:302.853333pt;}
.w7{width:303.493333pt;}
.w6{width:604.413333pt;}
.w1{width:793.333333pt;}
.w5{width:793.599976pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x9{left:7.680000pt;}
.x7{left:94.431988pt;}
.x14{left:98.911988pt;}
.x2d{left:103.391988pt;}
.xb{left:105.631988pt;}
.x21{left:113.311988pt;}
.x4e{left:118.463988pt;}
.x38{left:138.946643pt;}
.x37{left:142.146643pt;}
.x22{left:144.066643pt;}
.x24{left:146.626643pt;}
.x23{left:148.546655pt;}
.x25{left:151.106655pt;}
.x35{left:159.426643pt;}
.x15{left:160.706655pt;}
.x4f{left:166.466655pt;}
.x36{left:168.386655pt;}
.x4a{left:171.906643pt;}
.x4b{left:180.866655pt;}
.x46{left:188.866655pt;}
.x26{left:191.106643pt;}
.x27{left:200.093322pt;}
.x47{left:209.373322pt;}
.x2e{left:211.933310pt;}
.x41{left:213.533310pt;}
.x2f{left:220.893322pt;}
.x42{left:222.493322pt;}
.x2{left:226.013322pt;}
.x6{left:243.613322pt;}
.x3d{left:245.213310pt;}
.xc{left:249.053322pt;}
.x3e{left:254.173322pt;}
.xa{left:270.533333pt;}
.x13{left:286.533322pt;}
.xd{left:306.053322pt;}
.x28{left:310.853310pt;}
.x5{left:316.293322pt;}
.x10{left:319.173322pt;}
.x4c{left:324.933310pt;}
.x45{left:327.813322pt;}
.x4d{left:333.893322pt;}
.x4{left:337.733322pt;}
.x48{left:352.479976pt;}
.x3{left:354.079988pt;}
.x49{left:361.439988pt;}
.x8{left:396.959988pt;}
.x16{left:397.920000pt;}
.x33{left:401.119976pt;}
.x34{left:410.079988pt;}
.x11{left:461.306643pt;}
.x12{left:465.786655pt;}
.xe{left:483.066643pt;}
.xf{left:487.546655pt;}
.x1d{left:497.146643pt;}
.x1e{left:501.626655pt;}
.x1f{left:538.786643pt;}
.x20{left:543.266655pt;}
.x43{left:552.866643pt;}
.x44{left:561.826655pt;}
.x3b{left:565.666643pt;}
.x19{left:567.586643pt;}
.x39{left:569.186643pt;}
.x1a{left:572.066655pt;}
.x3c{left:574.626655pt;}
.x2b{left:575.906643pt;}
.x3a{left:578.146655pt;}
.x2c{left:584.866655pt;}
.x1b{left:596.733310pt;}
.x30{left:598.013310pt;}
.x1c{left:601.213322pt;}
.x31{left:606.973322pt;}
.x29{left:631.293310pt;}
.x2a{left:640.253322pt;}
.x3f{left:670.373310pt;}
.x40{left:679.333322pt;}
.x32{left:683.173310pt;}
.x17{left:691.813310pt;}
.x18{left:696.293322pt;}
.x1{left:699.493322pt;}
}




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