
    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_81830eb5d6c984b5686407b5.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.149902;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_348c37780d204720329146c5.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.149902;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_49ae35c411eb556b52db3bed.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_4f7befdbf98a9c25dbbe40e2.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.727539;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_e1d573f450240870acc78da4.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_d2f2181a533d1dec5551ad6d.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.758789;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;}
.ls11{letter-spacing:-0.954000px;}
.ls13{letter-spacing:-0.702000px;}
.lsc{letter-spacing:-0.618000px;}
.lse{letter-spacing:-0.474000px;}
.ls18{letter-spacing:-0.435600px;}
.ls14{letter-spacing:-0.432000px;}
.ls22{letter-spacing:-0.426000px;}
.lsd{letter-spacing:-0.360000px;}
.ls25{letter-spacing:-0.306600px;}
.ls9{letter-spacing:-0.288000px;}
.lsb{letter-spacing:-0.280200px;}
.ls17{letter-spacing:-0.231000px;}
.ls20{letter-spacing:-0.201600px;}
.lsa{letter-spacing:-0.144000px;}
.ls27{letter-spacing:-0.112800px;}
.ls6{letter-spacing:-0.096600px;}
.ls28{letter-spacing:-0.030240px;}
.lsf{letter-spacing:-0.026640px;}
.ls31{letter-spacing:-0.018720px;}
.ls1{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.019560px;}
.ls16{letter-spacing:0.020160px;}
.ls2e{letter-spacing:0.037440px;}
.ls1f{letter-spacing:0.038160px;}
.ls2{letter-spacing:0.048240px;}
.ls23{letter-spacing:0.053280px;}
.ls10{letter-spacing:0.102000px;}
.ls29{letter-spacing:0.134400px;}
.ls4{letter-spacing:0.144000px;}
.ls1e{letter-spacing:0.151800px;}
.ls2f{letter-spacing:0.177840px;}
.ls3{letter-spacing:0.192000px;}
.ls26{letter-spacing:0.195000px;}
.ls1b{letter-spacing:0.208200px;}
.ls19{letter-spacing:0.231000px;}
.ls2c{letter-spacing:0.284400px;}
.ls15{letter-spacing:0.288000px;}
.ls1a{letter-spacing:0.306720px;}
.ls5{letter-spacing:0.307200px;}
.ls21{letter-spacing:0.345600px;}
.ls7{letter-spacing:0.360000px;}
.ls0{letter-spacing:28.800000px;}
.ls30{letter-spacing:39.802896px;}
.ls2d{letter-spacing:39.931200px;}
.ls8{letter-spacing:45.953280px;}
.ls24{letter-spacing:47.485440px;}
.ls1c{letter-spacing:54.542160px;}
.ls2b{letter-spacing:54.662160px;}
.ls1d{letter-spacing:54.722160px;}
.ls2a{letter-spacing:67.373280px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-48.147120px;}
.ws60{word-spacing:-41.328000px;}
.ws6{word-spacing:-40.032000px;}
.ws7{word-spacing:-37.815120px;}
.ws75{word-spacing:-36.629280px;}
.ws78{word-spacing:-34.550208px;}
.ws2c{word-spacing:-33.426720px;}
.ws64{word-spacing:-33.062400px;}
.wsb{word-spacing:-30.376080px;}
.ws68{word-spacing:-27.483120px;}
.ws7e{word-spacing:-22.317120px;}
.ws7d{word-spacing:-20.664000px;}
.ws40{word-spacing:-2.560560px;}
.ws2d{word-spacing:-2.506320px;}
.ws41{word-spacing:-2.477520px;}
.ws3d{word-spacing:-2.182320px;}
.ws7b{word-spacing:-2.040000px;}
.wsc{word-spacing:-1.857840px;}
.ws57{word-spacing:-1.729680px;}
.ws55{word-spacing:-1.653120px;}
.ws7a{word-spacing:-1.532400px;}
.wsd{word-spacing:-1.481760px;}
.ws3c{word-spacing:-1.314000px;}
.ws3e{word-spacing:-1.053360px;}
.ws2a{word-spacing:-0.970080px;}
.ws3f{word-spacing:-0.870480px;}
.ws86{word-spacing:-0.744000px;}
.ws87{word-spacing:-0.420000px;}
.ws80{word-spacing:-0.312000px;}
.ws6d{word-spacing:-0.164520px;}
.ws2b{word-spacing:-0.150480px;}
.ws56{word-spacing:-0.146880px;}
.ws79{word-spacing:-0.048960px;}
.ws5{word-spacing:0.000000px;}
.ws71{word-spacing:0.511200px;}
.ws70{word-spacing:0.564192px;}
.ws73{word-spacing:0.676800px;}
.ws7f{word-spacing:0.840000px;}
.ws6b{word-spacing:0.868320px;}
.ws7c{word-spacing:0.876000px;}
.ws6c{word-spacing:1.004880px;}
.ws6e{word-spacing:1.454160px;}
.ws74{word-spacing:1.577520px;}
.ws6f{word-spacing:2.479872px;}
.ws72{word-spacing:4.040400px;}
.ws8{word-spacing:5.603520px;}
.ws81{word-spacing:6.338160px;}
.ws5e{word-spacing:6.530880px;}
.ws5b{word-spacing:6.739680px;}
.ws9{word-spacing:6.845040px;}
.ws83{word-spacing:6.931560px;}
.ws5c{word-spacing:6.981840px;}
.ws77{word-spacing:7.058160px;}
.ws58{word-spacing:7.125480px;}
.ws84{word-spacing:7.152480px;}
.ws1{word-spacing:7.165920px;}
.ws5f{word-spacing:7.193280px;}
.ws6a{word-spacing:7.418160px;}
.ws5a{word-spacing:7.476000px;}
.ws67{word-spacing:7.480224px;}
.wsa{word-spacing:7.564680px;}
.ws59{word-spacing:7.672800px;}
.ws63{word-spacing:7.689600px;}
.ws3{word-spacing:7.740480px;}
.ws5d{word-spacing:7.949520px;}
.ws4{word-spacing:8.094960px;}
.ws82{word-spacing:8.524800px;}
.ws32{word-spacing:8.759520px;}
.ws2{word-spacing:8.946720px;}
.ws30{word-spacing:8.994816px;}
.ws33{word-spacing:9.042624px;}
.ws61{word-spacing:9.100800px;}
.ws65{word-spacing:9.188016px;}
.ws69{word-spacing:9.339840px;}
.ws62{word-spacing:9.624000px;}
.ws66{word-spacing:9.869808px;}
.ws31{word-spacing:9.982152px;}
.ws85{word-spacing:10.366320px;}
.wse{word-spacing:10.512000px;}
.wsf{word-spacing:10.944000px;}
.ws10{word-spacing:11.124000px;}
.ws16{word-spacing:11.186640px;}
.ws15{word-spacing:11.430480px;}
.ws12{word-spacing:12.691920px;}
.ws14{word-spacing:12.796560px;}
.ws18{word-spacing:13.125600px;}
.ws19{word-spacing:13.217520px;}
.ws11{word-spacing:13.320360px;}
.ws17{word-spacing:13.657680px;}
.ws13{word-spacing:14.249520px;}
.ws21{word-spacing:14.635920px;}
.ws23{word-spacing:14.868000px;}
.ws22{word-spacing:15.817680px;}
.ws53{word-spacing:18.123120px;}
.ws50{word-spacing:18.485280px;}
.ws52{word-spacing:19.391040px;}
.ws20{word-spacing:19.728000px;}
.ws1f{word-spacing:19.826640px;}
.ws1b{word-spacing:20.009520px;}
.ws1c{word-spacing:20.031840px;}
.ws51{word-spacing:20.129520px;}
.ws1e{word-spacing:20.330400px;}
.ws1a{word-spacing:21.054000px;}
.ws1d{word-spacing:22.844160px;}
.ws48{word-spacing:24.146640px;}
.ws47{word-spacing:25.009920px;}
.ws43{word-spacing:25.040880px;}
.ws45{word-spacing:25.082400px;}
.ws44{word-spacing:25.769520px;}
.ws46{word-spacing:25.895160px;}
.ws42{word-spacing:26.424360px;}
.ws49{word-spacing:26.617680px;}
.ws4b{word-spacing:29.922624px;}
.ws4e{word-spacing:30.046176px;}
.ws4f{word-spacing:30.682080px;}
.ws4c{word-spacing:30.687744px;}
.ws4a{word-spacing:31.027392px;}
.ws4d{word-spacing:31.716288px;}
.ws3b{word-spacing:32.061360px;}
.ws39{word-spacing:32.506560px;}
.ws3a{word-spacing:35.129520px;}
.ws29{word-spacing:39.999744px;}
.ws24{word-spacing:40.017216px;}
.ws25{word-spacing:40.222152px;}
.ws26{word-spacing:40.353120px;}
.ws28{word-spacing:40.356288px;}
.ws76{word-spacing:40.379040px;}
.ws27{word-spacing:41.666832px;}
.ws38{word-spacing:66.346560px;}
.ws37{word-spacing:67.529520px;}
.ws36{word-spacing:67.771440px;}
.ws34{word-spacing:68.548080px;}
.ws35{word-spacing:68.969520px;}
.ws54{word-spacing:70.797960px;}
.ws2e{word-spacing:73.484400px;}
.ws2f{word-spacing:74.129520px;}
._7{margin-left:-3.621600px;}
._3{margin-left:-2.304000px;}
._1{margin-left:-1.211760px;}
._2{width:1.108800px;}
._13{width:2.165280px;}
._6{width:30.639600px;}
._a{width:32.106000px;}
._9{width:34.078320px;}
._11{width:35.785680px;}
._5{width:37.157760px;}
._4{width:38.520720px;}
._d{width:43.369968px;}
._10{width:59.860080px;}
._f{width:65.593920px;}
._e{width:67.276320px;}
._14{width:69.306960px;}
._8{width:74.873712px;}
._c{width:86.817792px;}
._0{width:96.365520px;}
._b{width:107.940240px;}
._12{width:771.869376px;}
.fc7{color:rgb(87,95,109);}
.fc6{color:rgb(254,134,55);}
.fc4{color:rgb(0,112,192);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(0,32,96);}
.fc5{color:transparent;}
.fc3{color:rgb(36,69,131);}
.fc0{color:rgb(255,243,157);}
.fs13{font-size:72.000000px;}
.fsa{font-size:77.760000px;}
.fsc{font-size:84.240000px;}
.fs10{font-size:92.160000px;}
.fsb{font-size:95.760000px;}
.fs11{font-size:100.800000px;}
.fs14{font-size:100.944000px;}
.fs2{font-size:102.240000px;}
.fs6{font-size:105.840000px;}
.fsd{font-size:115.200000px;}
.fse{font-size:115.344000px;}
.fs8{font-size:120.240000px;}
.fs7{font-size:120.384000px;}
.fs5{font-size:131.760000px;}
.fsf{font-size:131.904000px;}
.fs1{font-size:134.640000px;}
.fs3{font-size:144.000000px;}
.fs4{font-size:144.144000px;}
.fs12{font-size:156.240000px;}
.fs0{font-size:167.760000px;}
.fs9{font-size:180.000000px;}
.y0{bottom:0.000000px;}
.y3{bottom:74.772000px;}
.ya4{bottom:115.092000px;}
.y1b{bottom:116.172000px;}
.y69{bottom:122.076000px;}
.y7d{bottom:135.072000px;}
.y1a{bottom:152.175000px;}
.y68{bottom:154.470000px;}
.ya3{bottom:158.295000px;}
.y7c{bottom:164.415000px;}
.y27{bottom:164.730000px;}
.y50{bottom:176.145000px;}
.y67{bottom:186.870000px;}
.y19{bottom:188.175000px;}
.y5a{bottom:191.700000px;}
.y26{bottom:200.730000px;}
.ya2{bottom:201.495000px;}
.y4f{bottom:207.870000px;}
.y66{bottom:219.270000px;}
.y18{bottom:224.175000px;}
.y28{bottom:226.830000px;}
.y59{bottom:231.300000px;}
.y25{bottom:236.730000px;}
.y4e{bottom:239.550000px;}
.ya1{bottom:253.725000px;}
.y17{bottom:260.205000px;}
.y65{bottom:260.670000px;}
.y58{bottom:270.900000px;}
.y4d{bottom:271.230000px;}
.y3f{bottom:272.520000px;}
.y24{bottom:272.775000px;}
.yd{bottom:273.525000px;}
.y64{bottom:293.115000px;}
.y16{bottom:296.205000px;}
.ya0{bottom:296.925000px;}
.y3a{bottom:299.520000px;}
.y4c{bottom:302.910000px;}
.y3e{bottom:308.550000px;}
.y23{bottom:308.775000px;}
.y57{bottom:310.500000px;}
.yc{bottom:316.725000px;}
.y63{bottom:325.515000px;}
.y15{bottom:332.205000px;}
.y39{bottom:335.550000px;}
.y89{bottom:338.070000px;}
.y9f{bottom:340.125000px;}
.y3d{bottom:344.550000px;}
.y56{bottom:350.130000px;}
.y29{bottom:352.290000px;}
.y22{bottom:353.775000px;}
.y78{bottom:358.125000px;}
.yb{bottom:359.925000px;}
.y62{bottom:366.915000px;}
.y14{bottom:368.205000px;}
.y38{bottom:371.550000px;}
.y88{bottom:374.070000px;}
.y97{bottom:377.175000px;}
.y7f{bottom:378.750000px;}
.y7b{bottom:378.795000px;}
.y9e{bottom:383.505000px;}
.y4b{bottom:384.300000px;}
.y76{bottom:384.330000px;}
.y3c{bottom:389.550000px;}
.y55{bottom:389.730000px;}
.y21{bottom:389.775000px;}
.y7e{bottom:398.190000px;}
.y7a{bottom:398.235000px;}
.y61{bottom:399.315000px;}
.y91{bottom:400.755000px;}
.ya{bottom:403.170000px;}
.y13{bottom:404.250000px;}
.y87{bottom:411.510000px;}
.y37{bottom:416.550000px;}
.y96{bottom:420.375000px;}
.y3b{bottom:425.550000px;}
.y20{bottom:425.805000px;}
.y75{bottom:427.530000px;}
.y54{bottom:429.330000px;}
.y60{bottom:431.715000px;}
.y9d{bottom:435.570000px;}
.y90{bottom:436.785000px;}
.y2{bottom:441.930000px;}
.y9{bottom:446.370000px;}
.y12{bottom:449.250000px;}
.y32{bottom:455.910000px;}
.y4a{bottom:456.660000px;}
.y36{bottom:461.550000px;}
.y1f{bottom:461.805000px;}
.y86{bottom:462.270000px;}
.y5f{bottom:464.145000px;}
.y53{bottom:468.930000px;}
.y74{bottom:470.730000px;}
.yaa{bottom:471.240000px;}
.y95{bottom:472.605000px;}
.y8f{bottom:472.785000px;}
.y9c{bottom:478.770000px;}
.y11{bottom:485.250000px;}
.y8{bottom:489.570000px;}
.y31{bottom:491.910000px;}
.y1{bottom:492.330000px;}
.y6e{bottom:497.130000px;}
.y49{bottom:497.340000px;}
.y35{bottom:497.595000px;}
.y1e{bottom:497.805000px;}
.y85{bottom:498.315000px;}
.y2b{bottom:502.200000px;}
.y5e{bottom:505.545000px;}
.y52{bottom:508.575000px;}
.y8e{bottom:510.225000px;}
.y73{bottom:513.975000px;}
.ya9{bottom:514.440000px;}
.y94{bottom:515.805000px;}
.y10{bottom:521.250000px;}
.y9b{bottom:522.150000px;}
.y2a{bottom:523.260000px;}
.y30{bottom:527.910000px;}
.y48{bottom:529.050000px;}
.yaf{bottom:531.465000px;}
.y7{bottom:532.770000px;}
.y1d{bottom:533.805000px;}
.y84{bottom:534.315000px;}
.y5d{bottom:537.945000px;}
.y6d{bottom:540.150000px;}
.y51{bottom:548.175000px;}
.y72{bottom:557.355000px;}
.ya8{bottom:557.670000px;}
.yf{bottom:558.540000px;}
.y93{bottom:559.005000px;}
.y47{bottom:560.730000px;}
.y8d{bottom:560.985000px;}
.y2f{bottom:563.940000px;}
.y5c{bottom:570.345000px;}
.y83{bottom:571.755000px;}
.y9a{bottom:574.200000px;}
.yae{bottom:574.665000px;}
.y6{bottom:576.000000px;}
.y6c{bottom:592.380000px;}
.y46{bottom:592.410000px;}
.y79{bottom:595.290000px;}
.y8c{bottom:597.030000px;}
.y40{bottom:597.570000px;}
.y2e{bottom:599.940000px;}
.ya7{bottom:601.050000px;}
.y92{bottom:602.250000px;}
.y71{bottom:609.375000px;}
.y5b{bottom:611.790000px;}
.y99{bottom:617.400000px;}
.yad{bottom:617.910000px;}
.y5{bottom:619.200000px;}
.y82{bottom:622.515000px;}
.y45{bottom:624.090000px;}
.y1c{bottom:632.700000px;}
.y8b{bottom:633.030000px;}
.y6b{bottom:635.580000px;}
.ya6{bottom:644.250000px;}
.y70{bottom:652.605000px;}
.y81{bottom:658.545000px;}
.y98{bottom:660.780000px;}
.yac{bottom:661.110000px;}
.y2d{bottom:669.780000px;}
.y8a{bottom:670.470000px;}
.y42{bottom:673.455000px;}
.y6a{bottom:678.960000px;}
.ya5{bottom:687.315000px;}
.ye{bottom:689.730000px;}
.y34{bottom:691.200000px;}
.y6f{bottom:695.805000px;}
.y80{bottom:695.985000px;}
.yab{bottom:704.310000px;}
.y44{bottom:706.035000px;}
.y4{bottom:707.040000px;}
.y2c{bottom:712.980000px;}
.y41{bottom:716.655000px;}
.y77{bottom:723.030000px;}
.y33{bottom:730.080000px;}
.y43{bottom:742.035000px;}
.h12{height:68.730469px;}
.ha{height:74.228906px;}
.h3{height:97.597266px;}
.hf{height:110.106211px;}
.hc{height:114.779883px;}
.he{height:114.917344px;}
.h8{height:117.598008px;}
.h7{height:117.738844px;}
.hd{height:125.776758px;}
.h2{height:128.525977px;}
.h6{height:128.864883px;}
.h10{height:129.005719px;}
.hb{height:137.460938px;}
.h4{height:140.835938px;}
.h5{height:140.976773px;}
.h11{height:149.145117px;}
.h1{height:160.141992px;}
.h9{height:176.044922px;}
.h0{height:810.000000px;}
.w1{width:1079.999984px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x10{left:49.031984px;}
.x6{left:64.799984px;}
.xf{left:66.023984px;}
.x14{left:68.147984px;}
.x11{left:81.431984px;}
.x1d{left:94.679984px;}
.x7{left:95.903984px;}
.xa{left:97.235984px;}
.x8{left:98.423984px;}
.x5{left:100.043984px;}
.x9{left:102.455984px;}
.x15{left:133.667984px;}
.x16{left:141.047984px;}
.x25{left:257.504984px;}
.xc{left:268.349984px;}
.x1{left:274.859984px;}
.x3{left:280.829984px;}
.x24{left:283.649984px;}
.x2{left:319.499984px;}
.x1b{left:363.749984px;}
.x1c{left:396.719984px;}
.x4{left:399.269984px;}
.x1e{left:452.054984px;}
.x22{left:486.899984px;}
.x18{left:491.369984px;}
.x1f{left:493.409984px;}
.x23{left:495.209984px;}
.x19{left:515.264984px;}
.xd{left:518.294984px;}
.x17{left:523.769984px;}
.x12{left:527.249984px;}
.xb{left:532.364984px;}
.xe{left:542.234984px;}
.x1a{left:547.664984px;}
.x13{left:559.694984px;}
.x21{left:710.669984px;}
.x20{left:719.849984px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls11{letter-spacing:-0.848000pt;}
.ls13{letter-spacing:-0.624000pt;}
.lsc{letter-spacing:-0.549333pt;}
.lse{letter-spacing:-0.421333pt;}
.ls18{letter-spacing:-0.387200pt;}
.ls14{letter-spacing:-0.384000pt;}
.ls22{letter-spacing:-0.378667pt;}
.lsd{letter-spacing:-0.320000pt;}
.ls25{letter-spacing:-0.272533pt;}
.ls9{letter-spacing:-0.256000pt;}
.lsb{letter-spacing:-0.249067pt;}
.ls17{letter-spacing:-0.205333pt;}
.ls20{letter-spacing:-0.179200pt;}
.lsa{letter-spacing:-0.128000pt;}
.ls27{letter-spacing:-0.100267pt;}
.ls6{letter-spacing:-0.085867pt;}
.ls28{letter-spacing:-0.026880pt;}
.lsf{letter-spacing:-0.023680pt;}
.ls31{letter-spacing:-0.016640pt;}
.ls1{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.017387pt;}
.ls16{letter-spacing:0.017920pt;}
.ls2e{letter-spacing:0.033280pt;}
.ls1f{letter-spacing:0.033920pt;}
.ls2{letter-spacing:0.042880pt;}
.ls23{letter-spacing:0.047360pt;}
.ls10{letter-spacing:0.090667pt;}
.ls29{letter-spacing:0.119467pt;}
.ls4{letter-spacing:0.128000pt;}
.ls1e{letter-spacing:0.134933pt;}
.ls2f{letter-spacing:0.158080pt;}
.ls3{letter-spacing:0.170667pt;}
.ls26{letter-spacing:0.173333pt;}
.ls1b{letter-spacing:0.185067pt;}
.ls19{letter-spacing:0.205333pt;}
.ls2c{letter-spacing:0.252800pt;}
.ls15{letter-spacing:0.256000pt;}
.ls1a{letter-spacing:0.272640pt;}
.ls5{letter-spacing:0.273067pt;}
.ls21{letter-spacing:0.307200pt;}
.ls7{letter-spacing:0.320000pt;}
.ls0{letter-spacing:25.600000pt;}
.ls30{letter-spacing:35.380352pt;}
.ls2d{letter-spacing:35.494400pt;}
.ls8{letter-spacing:40.847360pt;}
.ls24{letter-spacing:42.209280pt;}
.ls1c{letter-spacing:48.481920pt;}
.ls2b{letter-spacing:48.588587pt;}
.ls1d{letter-spacing:48.641920pt;}
.ls2a{letter-spacing:59.887360pt;}
.ws0{word-spacing:-42.797440pt;}
.ws60{word-spacing:-36.736000pt;}
.ws6{word-spacing:-35.584000pt;}
.ws7{word-spacing:-33.613440pt;}
.ws75{word-spacing:-32.559360pt;}
.ws78{word-spacing:-30.711296pt;}
.ws2c{word-spacing:-29.712640pt;}
.ws64{word-spacing:-29.388800pt;}
.wsb{word-spacing:-27.000960pt;}
.ws68{word-spacing:-24.429440pt;}
.ws7e{word-spacing:-19.837440pt;}
.ws7d{word-spacing:-18.368000pt;}
.ws40{word-spacing:-2.276053pt;}
.ws2d{word-spacing:-2.227840pt;}
.ws41{word-spacing:-2.202240pt;}
.ws3d{word-spacing:-1.939840pt;}
.ws7b{word-spacing:-1.813333pt;}
.wsc{word-spacing:-1.651413pt;}
.ws57{word-spacing:-1.537493pt;}
.ws55{word-spacing:-1.469440pt;}
.ws7a{word-spacing:-1.362133pt;}
.wsd{word-spacing:-1.317120pt;}
.ws3c{word-spacing:-1.168000pt;}
.ws3e{word-spacing:-0.936320pt;}
.ws2a{word-spacing:-0.862293pt;}
.ws3f{word-spacing:-0.773760pt;}
.ws86{word-spacing:-0.661333pt;}
.ws87{word-spacing:-0.373333pt;}
.ws80{word-spacing:-0.277333pt;}
.ws6d{word-spacing:-0.146240pt;}
.ws2b{word-spacing:-0.133760pt;}
.ws56{word-spacing:-0.130560pt;}
.ws79{word-spacing:-0.043520pt;}
.ws5{word-spacing:0.000000pt;}
.ws71{word-spacing:0.454400pt;}
.ws70{word-spacing:0.501504pt;}
.ws73{word-spacing:0.601600pt;}
.ws7f{word-spacing:0.746667pt;}
.ws6b{word-spacing:0.771840pt;}
.ws7c{word-spacing:0.778667pt;}
.ws6c{word-spacing:0.893227pt;}
.ws6e{word-spacing:1.292587pt;}
.ws74{word-spacing:1.402240pt;}
.ws6f{word-spacing:2.204331pt;}
.ws72{word-spacing:3.591467pt;}
.ws8{word-spacing:4.980907pt;}
.ws81{word-spacing:5.633920pt;}
.ws5e{word-spacing:5.805227pt;}
.ws5b{word-spacing:5.990827pt;}
.ws9{word-spacing:6.084480pt;}
.ws83{word-spacing:6.161387pt;}
.ws5c{word-spacing:6.206080pt;}
.ws77{word-spacing:6.273920pt;}
.ws58{word-spacing:6.333760pt;}
.ws84{word-spacing:6.357760pt;}
.ws1{word-spacing:6.369707pt;}
.ws5f{word-spacing:6.394027pt;}
.ws6a{word-spacing:6.593920pt;}
.ws5a{word-spacing:6.645333pt;}
.ws67{word-spacing:6.649088pt;}
.wsa{word-spacing:6.724160pt;}
.ws59{word-spacing:6.820267pt;}
.ws63{word-spacing:6.835200pt;}
.ws3{word-spacing:6.880427pt;}
.ws5d{word-spacing:7.066240pt;}
.ws4{word-spacing:7.195520pt;}
.ws82{word-spacing:7.577600pt;}
.ws32{word-spacing:7.786240pt;}
.ws2{word-spacing:7.952640pt;}
.ws30{word-spacing:7.995392pt;}
.ws33{word-spacing:8.037888pt;}
.ws61{word-spacing:8.089600pt;}
.ws65{word-spacing:8.167125pt;}
.ws69{word-spacing:8.302080pt;}
.ws62{word-spacing:8.554667pt;}
.ws66{word-spacing:8.773163pt;}
.ws31{word-spacing:8.873024pt;}
.ws85{word-spacing:9.214507pt;}
.wse{word-spacing:9.344000pt;}
.wsf{word-spacing:9.728000pt;}
.ws10{word-spacing:9.888000pt;}
.ws16{word-spacing:9.943680pt;}
.ws15{word-spacing:10.160427pt;}
.ws12{word-spacing:11.281707pt;}
.ws14{word-spacing:11.374720pt;}
.ws18{word-spacing:11.667200pt;}
.ws19{word-spacing:11.748907pt;}
.ws11{word-spacing:11.840320pt;}
.ws17{word-spacing:12.140160pt;}
.ws13{word-spacing:12.666240pt;}
.ws21{word-spacing:13.009707pt;}
.ws23{word-spacing:13.216000pt;}
.ws22{word-spacing:14.060160pt;}
.ws53{word-spacing:16.109440pt;}
.ws50{word-spacing:16.431360pt;}
.ws52{word-spacing:17.236480pt;}
.ws20{word-spacing:17.536000pt;}
.ws1f{word-spacing:17.623680pt;}
.ws1b{word-spacing:17.786240pt;}
.ws1c{word-spacing:17.806080pt;}
.ws51{word-spacing:17.892907pt;}
.ws1e{word-spacing:18.071467pt;}
.ws1a{word-spacing:18.714667pt;}
.ws1d{word-spacing:20.305920pt;}
.ws48{word-spacing:21.463680pt;}
.ws47{word-spacing:22.231040pt;}
.ws43{word-spacing:22.258560pt;}
.ws45{word-spacing:22.295467pt;}
.ws44{word-spacing:22.906240pt;}
.ws46{word-spacing:23.017920pt;}
.ws42{word-spacing:23.488320pt;}
.ws49{word-spacing:23.660160pt;}
.ws4b{word-spacing:26.597888pt;}
.ws4e{word-spacing:26.707712pt;}
.ws4f{word-spacing:27.272960pt;}
.ws4c{word-spacing:27.277995pt;}
.ws4a{word-spacing:27.579904pt;}
.ws4d{word-spacing:28.192256pt;}
.ws3b{word-spacing:28.498987pt;}
.ws39{word-spacing:28.894720pt;}
.ws3a{word-spacing:31.226240pt;}
.ws29{word-spacing:35.555328pt;}
.ws24{word-spacing:35.570859pt;}
.ws25{word-spacing:35.753024pt;}
.ws26{word-spacing:35.869440pt;}
.ws28{word-spacing:35.872256pt;}
.ws76{word-spacing:35.892480pt;}
.ws27{word-spacing:37.037184pt;}
.ws38{word-spacing:58.974720pt;}
.ws37{word-spacing:60.026240pt;}
.ws36{word-spacing:60.241280pt;}
.ws34{word-spacing:60.931627pt;}
.ws35{word-spacing:61.306240pt;}
.ws54{word-spacing:62.931520pt;}
.ws2e{word-spacing:65.319467pt;}
.ws2f{word-spacing:65.892907pt;}
._7{margin-left:-3.219200pt;}
._3{margin-left:-2.048000pt;}
._1{margin-left:-1.077120pt;}
._2{width:0.985600pt;}
._13{width:1.924693pt;}
._6{width:27.235200pt;}
._a{width:28.538667pt;}
._9{width:30.291840pt;}
._11{width:31.809493pt;}
._5{width:33.029120pt;}
._4{width:34.240640pt;}
._d{width:38.551083pt;}
._10{width:53.208960pt;}
._f{width:58.305707pt;}
._e{width:59.801173pt;}
._14{width:61.606187pt;}
._8{width:66.554411pt;}
._c{width:77.171371pt;}
._0{width:85.658240pt;}
._b{width:95.946880pt;}
._12{width:686.106112pt;}
.fs13{font-size:64.000000pt;}
.fsa{font-size:69.120000pt;}
.fsc{font-size:74.880000pt;}
.fs10{font-size:81.920000pt;}
.fsb{font-size:85.120000pt;}
.fs11{font-size:89.600000pt;}
.fs14{font-size:89.728000pt;}
.fs2{font-size:90.880000pt;}
.fs6{font-size:94.080000pt;}
.fsd{font-size:102.400000pt;}
.fse{font-size:102.528000pt;}
.fs8{font-size:106.880000pt;}
.fs7{font-size:107.008000pt;}
.fs5{font-size:117.120000pt;}
.fsf{font-size:117.248000pt;}
.fs1{font-size:119.680000pt;}
.fs3{font-size:128.000000pt;}
.fs4{font-size:128.128000pt;}
.fs12{font-size:138.880000pt;}
.fs0{font-size:149.120000pt;}
.fs9{font-size:160.000000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:66.464000pt;}
.ya4{bottom:102.304000pt;}
.y1b{bottom:103.264000pt;}
.y69{bottom:108.512000pt;}
.y7d{bottom:120.064000pt;}
.y1a{bottom:135.266667pt;}
.y68{bottom:137.306667pt;}
.ya3{bottom:140.706667pt;}
.y7c{bottom:146.146667pt;}
.y27{bottom:146.426667pt;}
.y50{bottom:156.573333pt;}
.y67{bottom:166.106667pt;}
.y19{bottom:167.266667pt;}
.y5a{bottom:170.400000pt;}
.y26{bottom:178.426667pt;}
.ya2{bottom:179.106667pt;}
.y4f{bottom:184.773333pt;}
.y66{bottom:194.906667pt;}
.y18{bottom:199.266667pt;}
.y28{bottom:201.626667pt;}
.y59{bottom:205.600000pt;}
.y25{bottom:210.426667pt;}
.y4e{bottom:212.933333pt;}
.ya1{bottom:225.533333pt;}
.y17{bottom:231.293333pt;}
.y65{bottom:231.706667pt;}
.y58{bottom:240.800000pt;}
.y4d{bottom:241.093333pt;}
.y3f{bottom:242.240000pt;}
.y24{bottom:242.466667pt;}
.yd{bottom:243.133333pt;}
.y64{bottom:260.546667pt;}
.y16{bottom:263.293333pt;}
.ya0{bottom:263.933333pt;}
.y3a{bottom:266.240000pt;}
.y4c{bottom:269.253333pt;}
.y3e{bottom:274.266667pt;}
.y23{bottom:274.466667pt;}
.y57{bottom:276.000000pt;}
.yc{bottom:281.533333pt;}
.y63{bottom:289.346667pt;}
.y15{bottom:295.293333pt;}
.y39{bottom:298.266667pt;}
.y89{bottom:300.506667pt;}
.y9f{bottom:302.333333pt;}
.y3d{bottom:306.266667pt;}
.y56{bottom:311.226667pt;}
.y29{bottom:313.146667pt;}
.y22{bottom:314.466667pt;}
.y78{bottom:318.333333pt;}
.yb{bottom:319.933333pt;}
.y62{bottom:326.146667pt;}
.y14{bottom:327.293333pt;}
.y38{bottom:330.266667pt;}
.y88{bottom:332.506667pt;}
.y97{bottom:335.266667pt;}
.y7f{bottom:336.666667pt;}
.y7b{bottom:336.706667pt;}
.y9e{bottom:340.893333pt;}
.y4b{bottom:341.600000pt;}
.y76{bottom:341.626667pt;}
.y3c{bottom:346.266667pt;}
.y55{bottom:346.426667pt;}
.y21{bottom:346.466667pt;}
.y7e{bottom:353.946667pt;}
.y7a{bottom:353.986667pt;}
.y61{bottom:354.946667pt;}
.y91{bottom:356.226667pt;}
.ya{bottom:358.373333pt;}
.y13{bottom:359.333333pt;}
.y87{bottom:365.786667pt;}
.y37{bottom:370.266667pt;}
.y96{bottom:373.666667pt;}
.y3b{bottom:378.266667pt;}
.y20{bottom:378.493333pt;}
.y75{bottom:380.026667pt;}
.y54{bottom:381.626667pt;}
.y60{bottom:383.746667pt;}
.y9d{bottom:387.173333pt;}
.y90{bottom:388.253333pt;}
.y2{bottom:392.826667pt;}
.y9{bottom:396.773333pt;}
.y12{bottom:399.333333pt;}
.y32{bottom:405.253333pt;}
.y4a{bottom:405.920000pt;}
.y36{bottom:410.266667pt;}
.y1f{bottom:410.493333pt;}
.y86{bottom:410.906667pt;}
.y5f{bottom:412.573333pt;}
.y53{bottom:416.826667pt;}
.y74{bottom:418.426667pt;}
.yaa{bottom:418.880000pt;}
.y95{bottom:420.093333pt;}
.y8f{bottom:420.253333pt;}
.y9c{bottom:425.573333pt;}
.y11{bottom:431.333333pt;}
.y8{bottom:435.173333pt;}
.y31{bottom:437.253333pt;}
.y1{bottom:437.626667pt;}
.y6e{bottom:441.893333pt;}
.y49{bottom:442.080000pt;}
.y35{bottom:442.306667pt;}
.y1e{bottom:442.493333pt;}
.y85{bottom:442.946667pt;}
.y2b{bottom:446.400000pt;}
.y5e{bottom:449.373333pt;}
.y52{bottom:452.066667pt;}
.y8e{bottom:453.533333pt;}
.y73{bottom:456.866667pt;}
.ya9{bottom:457.280000pt;}
.y94{bottom:458.493333pt;}
.y10{bottom:463.333333pt;}
.y9b{bottom:464.133333pt;}
.y2a{bottom:465.120000pt;}
.y30{bottom:469.253333pt;}
.y48{bottom:470.266667pt;}
.yaf{bottom:472.413333pt;}
.y7{bottom:473.573333pt;}
.y1d{bottom:474.493333pt;}
.y84{bottom:474.946667pt;}
.y5d{bottom:478.173333pt;}
.y6d{bottom:480.133333pt;}
.y51{bottom:487.266667pt;}
.y72{bottom:495.426667pt;}
.ya8{bottom:495.706667pt;}
.yf{bottom:496.480000pt;}
.y93{bottom:496.893333pt;}
.y47{bottom:498.426667pt;}
.y8d{bottom:498.653333pt;}
.y2f{bottom:501.280000pt;}
.y5c{bottom:506.973333pt;}
.y83{bottom:508.226667pt;}
.y9a{bottom:510.400000pt;}
.yae{bottom:510.813333pt;}
.y6{bottom:512.000000pt;}
.y6c{bottom:526.560000pt;}
.y46{bottom:526.586667pt;}
.y79{bottom:529.146667pt;}
.y8c{bottom:530.693333pt;}
.y40{bottom:531.173333pt;}
.y2e{bottom:533.280000pt;}
.ya7{bottom:534.266667pt;}
.y92{bottom:535.333333pt;}
.y71{bottom:541.666667pt;}
.y5b{bottom:543.813333pt;}
.y99{bottom:548.800000pt;}
.yad{bottom:549.253333pt;}
.y5{bottom:550.400000pt;}
.y82{bottom:553.346667pt;}
.y45{bottom:554.746667pt;}
.y1c{bottom:562.400000pt;}
.y8b{bottom:562.693333pt;}
.y6b{bottom:564.960000pt;}
.ya6{bottom:572.666667pt;}
.y70{bottom:580.093333pt;}
.y81{bottom:585.373333pt;}
.y98{bottom:587.360000pt;}
.yac{bottom:587.653333pt;}
.y2d{bottom:595.360000pt;}
.y8a{bottom:595.973333pt;}
.y42{bottom:598.626667pt;}
.y6a{bottom:603.520000pt;}
.ya5{bottom:610.946667pt;}
.ye{bottom:613.093333pt;}
.y34{bottom:614.400000pt;}
.y6f{bottom:618.493333pt;}
.y80{bottom:618.653333pt;}
.yab{bottom:626.053333pt;}
.y44{bottom:627.586667pt;}
.y4{bottom:628.480000pt;}
.y2c{bottom:633.760000pt;}
.y41{bottom:637.026667pt;}
.y77{bottom:642.693333pt;}
.y33{bottom:648.960000pt;}
.y43{bottom:659.586667pt;}
.h12{height:61.093750pt;}
.ha{height:65.981250pt;}
.h3{height:86.753125pt;}
.hf{height:97.872187pt;}
.hc{height:102.026562pt;}
.he{height:102.148750pt;}
.h8{height:104.531562pt;}
.h7{height:104.656750pt;}
.hd{height:111.801562pt;}
.h2{height:114.245312pt;}
.h6{height:114.546562pt;}
.h10{height:114.671750pt;}
.hb{height:122.187500pt;}
.h4{height:125.187500pt;}
.h5{height:125.312688pt;}
.h11{height:132.573438pt;}
.h1{height:142.348437pt;}
.h9{height:156.484375pt;}
.h0{height:720.000000pt;}
.w1{width:959.999986pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x10{left:43.583986pt;}
.x6{left:57.599986pt;}
.xf{left:58.687986pt;}
.x14{left:60.575986pt;}
.x11{left:72.383986pt;}
.x1d{left:84.159986pt;}
.x7{left:85.247986pt;}
.xa{left:86.431986pt;}
.x8{left:87.487986pt;}
.x5{left:88.927986pt;}
.x9{left:91.071986pt;}
.x15{left:118.815986pt;}
.x16{left:125.375986pt;}
.x25{left:228.893319pt;}
.xc{left:238.533319pt;}
.x1{left:244.319986pt;}
.x3{left:249.626652pt;}
.x24{left:252.133319pt;}
.x2{left:283.999986pt;}
.x1b{left:323.333319pt;}
.x1c{left:352.639986pt;}
.x4{left:354.906652pt;}
.x1e{left:401.826652pt;}
.x22{left:432.799986pt;}
.x18{left:436.773319pt;}
.x1f{left:438.586652pt;}
.x23{left:440.186652pt;}
.x19{left:458.013319pt;}
.xd{left:460.706652pt;}
.x17{left:465.573319pt;}
.x12{left:468.666652pt;}
.xb{left:473.213319pt;}
.xe{left:481.986652pt;}
.x1a{left:486.813319pt;}
.x13{left:497.506652pt;}
.x21{left:631.706652pt;}
.x20{left:639.866652pt;}
}




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