
    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_51a8eb74c80fb7526cc4efc0.woff')format("woff");}.ff1{font-family:ff1;line-height:1.106934;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_85678a7fed9b9a8743e629ef.woff')format("woff");}.ff2{font-family:ff2;line-height:0.666504;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_305ccece86e0b09495dea22d.woff')format("woff");}.ff3{font-family:ff3;line-height:0.666504;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_fc338635bd905c67c1d10a98.woff')format("woff");}.ff4{font-family:ff4;line-height:0.811035;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_5541ce1c00b0bad3252c2855.woff')format("woff");}.ff5{font-family:ff5;line-height:0.870605;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);}
.v0{vertical-align:0.000000px;}
.lsd{letter-spacing:-1.059840px;}
.ls14{letter-spacing:-0.861120px;}
.ls9{letter-spacing:-0.841680px;}
.ls13{letter-spacing:-0.728640px;}
.ls32{letter-spacing:-0.601200px;}
.ls5{letter-spacing:-0.468720px;}
.ls2f{letter-spacing:-0.463680px;}
.ls15{letter-spacing:-0.397440px;}
.lsc{letter-spacing:-0.331200px;}
.lsb{letter-spacing:-0.264960px;}
.ls8{letter-spacing:-0.240480px;}
.ls2a{letter-spacing:-0.156240px;}
.ls33{letter-spacing:-0.144000px;}
.lsa{letter-spacing:-0.132480px;}
.ls28{letter-spacing:-0.120240px;}
.ls6{letter-spacing:0.000000px;}
.ls34{letter-spacing:0.072000px;}
.ls7{letter-spacing:0.120240px;}
.ls25{letter-spacing:0.192384px;}
.ls2e{letter-spacing:0.240480px;}
.lse{letter-spacing:0.264960px;}
.ls31{letter-spacing:0.288000px;}
.ls1b{letter-spacing:0.312480px;}
.ls0{letter-spacing:0.331200px;}
.ls1a{letter-spacing:0.351072px;}
.ls12{letter-spacing:0.360720px;}
.ls19{letter-spacing:0.370944px;}
.ls20{letter-spacing:0.390816px;}
.ls17{letter-spacing:0.397440px;}
.ls4{letter-spacing:0.417312px;}
.ls3{letter-spacing:0.430560px;}
.ls10{letter-spacing:0.437184px;}
.ls2{letter-spacing:0.443808px;}
.ls21{letter-spacing:0.450432px;}
.ls23{letter-spacing:0.457056px;}
.ls1c{letter-spacing:0.470304px;}
.ls16{letter-spacing:0.476928px;}
.ls30{letter-spacing:0.490176px;}
.ls1d{letter-spacing:0.496800px;}
.ls22{letter-spacing:0.503424px;}
.ls1{letter-spacing:0.516672px;}
.ls26{letter-spacing:0.529920px;}
.ls24{letter-spacing:0.556416px;}
.ls2c{letter-spacing:0.563040px;}
.ls29{letter-spacing:0.596160px;}
.ls27{letter-spacing:0.602784px;}
.ls2b{letter-spacing:0.688896px;}
.ls11{letter-spacing:0.702144px;}
.lsf{letter-spacing:0.708768px;}
.ls2d{letter-spacing:0.761760px;}
.ls1e{letter-spacing:0.808128px;}
.ls18{letter-spacing:0.953856px;}
.ls1f{letter-spacing:50.011200px;}
.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;}
}
.ws1e{word-spacing:-66.240000px;}
.ws1d{word-spacing:-43.747200px;}
.ws21{word-spacing:-43.278480px;}
.ws0{word-spacing:-42.966000px;}
.ws13{word-spacing:-33.787440px;}
.ws1{word-spacing:-33.546960px;}
.ws12{word-spacing:-33.426720px;}
.ws22{word-spacing:-33.306480px;}
.ws27{word-spacing:-32.825520px;}
.ws2{word-spacing:-32.585040px;}
.ws1f{word-spacing:-18.745920px;}
.ws5{word-spacing:-18.679680px;}
.ws4{word-spacing:-18.414720px;}
.ws3{word-spacing:-18.282240px;}
.ws16{word-spacing:-18.083520px;}
.ws1c{word-spacing:-18.017280px;}
.ws14{word-spacing:-17.686080px;}
.ws15{word-spacing:-17.553600px;}
.ws28{word-spacing:-0.864000px;}
.ws1b{word-spacing:-0.728640px;}
.ws23{word-spacing:-0.601200px;}
.ws2c{word-spacing:-0.504000px;}
.ws24{word-spacing:-0.480960px;}
.ws7{word-spacing:-0.360720px;}
.ws10{word-spacing:-0.331200px;}
.wsc{word-spacing:-0.264960px;}
.ws29{word-spacing:-0.144000px;}
.ws9{word-spacing:-0.120240px;}
.ws6{word-spacing:0.000000px;}
.ws20{word-spacing:0.120240px;}
.wsb{word-spacing:0.132480px;}
.ws2b{word-spacing:0.216000px;}
.ws8{word-spacing:0.240480px;}
.wsd{word-spacing:0.264960px;}
.ws2a{word-spacing:0.288000px;}
.ws11{word-spacing:0.331200px;}
.ws19{word-spacing:0.397440px;}
.wsa{word-spacing:0.463680px;}
.ws26{word-spacing:0.596160px;}
.wse{word-spacing:0.662400px;}
.ws18{word-spacing:0.728640px;}
.ws1a{word-spacing:0.861120px;}
.wsf{word-spacing:1.059840px;}
.ws17{word-spacing:1.192320px;}
.ws25{word-spacing:1.391040px;}
._1{margin-left:-1.322640px;}
._0{width:1.359288px;}
._2{width:820.572480px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs1{font-size:120.240000px;}
.fs0{font-size:156.240000px;}
.y0{bottom:0.000000px;}
.y126{bottom:116.177040px;}
.y24{bottom:127.172160px;}
.y4b{bottom:130.603680px;}
.yaf{bottom:130.780800px;}
.y149{bottom:137.520000px;}
.y125{bottom:137.953440px;}
.y8c{bottom:140.500800px;}
.y104{bottom:147.674880px;}
.y23{bottom:148.948560px;}
.y4a{bottom:152.380080px;}
.yae{bottom:152.557200px;}
.y8b{bottom:162.277200px;}
.y148{bottom:162.720000px;}
.y103{bottom:169.451280px;}
.y22{bottom:170.724960px;}
.y49{bottom:174.156480px;}
.yad{bottom:174.333600px;}
.y124{bottom:177.730560px;}
.y8a{bottom:184.053600px;}
.y147{bottom:186.744960px;}
.y102{bottom:191.409840px;}
.y21{bottom:192.501360px;}
.yac{bottom:196.110000px;}
.y48{bottom:196.115040px;}
.y123{bottom:199.506960px;}
.y146{bottom:210.144240px;}
.y101{bottom:213.186240px;}
.y47{bottom:217.891440px;}
.yab{bottom:218.068560px;}
.y122{bottom:221.283360px;}
.y89{bottom:224.012880px;}
.y145{bottom:231.920640px;}
.y20{bottom:232.460640px;}
.y100{bottom:234.962640px;}
.y46{bottom:239.667840px;}
.yaa{bottom:239.844960px;}
.y121{bottom:243.241920px;}
.y88{bottom:245.789280px;}
.y144{bottom:253.697040px;}
.yff{bottom:256.739040px;}
.y45{bottom:261.444240px;}
.y120{bottom:265.018320px;}
.y87{bottom:267.565680px;}
.y1f{bottom:272.237760px;}
.y143{bottom:275.473440px;}
.yfe{bottom:278.697600px;}
.ya9{bottom:279.622080px;}
.y11f{bottom:286.794720px;}
.yce{bottom:286.984800px;}
.y86{bottom:289.342080px;}
.y1e{bottom:294.014160px;}
.y142{bottom:297.249840px;}
.y44{bottom:301.221360px;}
.ya8{bottom:301.398480px;}
.y11e{bottom:308.571120px;}
.y85{bottom:311.300640px;}
.y1d{bottom:315.790560px;}
.yfd{bottom:318.474720px;}
.y141{bottom:319.208400px;}
.y43{bottom:323.179920px;}
.ya7{bottom:323.357040px;}
.ycd{bottom:326.761920px;}
.y11d{bottom:330.529680px;}
.y84{bottom:333.077040px;}
.y1c{bottom:337.749120px;}
.yfc{bottom:340.251120px;}
.y140{bottom:340.984800px;}
.y42{bottom:344.956320px;}
.ya6{bottom:345.133440px;}
.y83{bottom:354.853440px;}
.y1b{bottom:359.525520px;}
.yfb{bottom:362.574000px;}
.y13f{bottom:362.761200px;}
.ycc{bottom:366.539040px;}
.y41{bottom:366.732720px;}
.ya5{bottom:366.909840px;}
.y11c{bottom:370.306800px;}
.y82{bottom:376.629840px;}
.yfa{bottom:384.350400px;}
.y13e{bottom:384.537600px;}
.y40{bottom:388.509120px;}
.ya4{bottom:388.686240px;}
.y11b{bottom:392.083200px;}
.y81{bottom:398.406240px;}
.y1a{bottom:399.302640px;}
.ycb{bottom:406.498320px;}
.y3f{bottom:410.467680px;}
.y11a{bottom:414.041760px;}
.y66{bottom:420.840000px;}
.y19{bottom:421.079040px;}
.yf9{bottom:424.127520px;}
.y13d{bottom:424.496880px;}
.yca{bottom:428.274720px;}
.ya3{bottom:428.463360px;}
.y119{bottom:436.182480px;}
.y80{bottom:438.365520px;}
.y18{bottom:442.855440px;}
.yf8{bottom:445.903920px;}
.y13c{bottom:446.273280px;}
.yc9{bottom:450.051120px;}
.y3e{bottom:450.244800px;}
.ya2{bottom:450.421920px;}
.y118{bottom:457.958880px;}
.y7f{bottom:460.141920px;}
.y65{bottom:463.934160px;}
.y17{bottom:464.814000px;}
.yf7{bottom:467.680320px;}
.y13b{bottom:468.049680px;}
.yc8{bottom:471.827520px;}
.y3d{bottom:472.021200px;}
.ya1{bottom:472.198320px;}
.y117{bottom:479.735280px;}
.y16{bottom:486.590400px;}
.yf6{bottom:489.638880px;}
.y13a{bottom:489.826080px;}
.ye4{bottom:490.320000px;}
.yc7{bottom:493.603920px;}
.y3c{bottom:493.797600px;}
.ya0{bottom:493.974720px;}
.y7e{bottom:499.919040px;}
.y116{bottom:501.511680px;}
.y64{bottom:503.711280px;}
.y15{bottom:508.366800px;}
.yf5{bottom:511.415280px;}
.y139{bottom:511.602480px;}
.yc6{bottom:515.562480px;}
.y3b{bottom:515.574000px;}
.y9f{bottom:515.751120px;}
.y7d{bottom:521.695440px;}
.y115{bottom:523.470240px;}
.y63{bottom:525.669840px;}
.y14{bottom:530.143200px;}
.yf4{bottom:533.191680px;}
.y138{bottom:533.561040px;}
.yc5{bottom:537.338880px;}
.y9e{bottom:537.527520px;}
.y3a{bottom:537.532560px;}
.y7c{bottom:543.654000px;}
.y62{bottom:547.446240px;}
.ye3{bottom:551.401200px;}
.y13{bottom:552.101760px;}
.yf3{bottom:554.968080px;}
.y39{bottom:559.308960px;}
.y9d{bottom:559.486080px;}
.y114{bottom:563.247360px;}
.y7b{bottom:565.430400px;}
.y61{bottom:569.222640px;}
.ye2{bottom:573.177600px;}
.y137{bottom:573.338160px;}
.yf2{bottom:576.926640px;}
.yc4{bottom:577.116000px;}
.y38{bottom:581.085360px;}
.y113{bottom:585.023760px;}
.y7a{bottom:587.206800px;}
.y60{bottom:590.999040px;}
.y12{bottom:591.878880px;}
.ye1{bottom:594.954000px;}
.y136{bottom:595.114560px;}
.yf1{bottom:598.703040px;}
.yc3{bottom:598.892400px;}
.y9c{bottom:599.263200px;}
.y37{bottom:602.861760px;}
.y112{bottom:606.800160px;}
.y79{bottom:608.983200px;}
.y5f{bottom:612.775440px;}
.y11{bottom:613.655280px;}
.ye0{bottom:616.730400px;}
.y135{bottom:616.890960px;}
.yf0{bottom:620.479440px;}
.yc2{bottom:620.850960px;}
.y9b{bottom:621.039600px;}
.y36{bottom:624.820320px;}
.y111{bottom:628.758720px;}
.y78{bottom:630.759600px;}
.y10{bottom:635.431680px;}
.ydf{bottom:638.688960px;}
.y134{bottom:638.849520px;}
.yef{bottom:642.255840px;}
.yc1{bottom:642.627360px;}
.y9a{bottom:642.816000px;}
.y110{bottom:650.535120px;}
.y77{bottom:652.718160px;}
.y5e{bottom:652.734720px;}
.yf{bottom:657.208080px;}
.yde{bottom:660.465360px;}
.y133{bottom:660.625920px;}
.yee{bottom:664.214400px;}
.yc0{bottom:664.403760px;}
.y35{bottom:664.597440px;}
.y99{bottom:664.774560px;}
.y10f{bottom:672.311520px;}
.y76{bottom:674.494560px;}
.y5d{bottom:674.511120px;}
.ydd{bottom:682.241760px;}
.y132{bottom:682.402320px;}
.ybf{bottom:686.180160px;}
.yed{bottom:686.355120px;}
.y34{bottom:686.373840px;}
.y98{bottom:686.550960px;}
.y10e{bottom:694.087920px;}
.y75{bottom:696.270960px;}
.y5c{bottom:696.287520px;}
.ye{bottom:697.167360px;}
.y131{bottom:704.178720px;}
.ybe{bottom:707.956560px;}
.y33{bottom:708.150240px;}
.y97{bottom:708.327360px;}
.y10d{bottom:715.864320px;}
.y74{bottom:718.047360px;}
.y5b{bottom:718.063920px;}
.yd{bottom:718.943760px;}
.ydc{bottom:722.018880px;}
.y130{bottom:725.955120px;}
.yec{bottom:726.132240px;}
.y32{bottom:729.926640px;}
.y96{bottom:730.103760px;}
.y10c{bottom:737.822880px;}
.y73{bottom:740.005920px;}
.y5a{bottom:740.022480px;}
.yc{bottom:740.720160px;}
.ydb{bottom:743.977440px;}
.yeb{bottom:747.908640px;}
.ybd{bottom:747.915840px;}
.y31{bottom:751.885200px;}
.y72{bottom:761.782320px;}
.yb{bottom:762.496560px;}
.yda{bottom:765.753840px;}
.y12f{bottom:765.914400px;}
.ybc{bottom:769.692240px;}
.yea{bottom:769.867200px;}
.y95{bottom:769.880880px;}
.y10b{bottom:777.600000px;}
.y59{bottom:779.799600px;}
.ya{bottom:784.455120px;}
.yd9{bottom:787.530240px;}
.y12e{bottom:787.690800px;}
.ybb{bottom:791.468640px;}
.ye9{bottom:791.643600px;}
.y30{bottom:791.662320px;}
.y94{bottom:791.839440px;}
.y71{bottom:801.559440px;}
.y58{bottom:801.576000px;}
.y9{bottom:806.231520px;}
.yd8{bottom:809.306640px;}
.y12d{bottom:809.467200px;}
.yba{bottom:813.245040px;}
.ye8{bottom:813.420000px;}
.y2f{bottom:813.438720px;}
.y93{bottom:813.615840px;}
.y10a{bottom:822.643200px;}
.y70{bottom:823.335840px;}
.y57{bottom:823.352400px;}
.y8{bottom:828.007920px;}
.yd7{bottom:831.083040px;}
.y12c{bottom:831.243600px;}
.yb9{bottom:835.021440px;}
.y2e{bottom:835.215120px;}
.y92{bottom:835.392240px;}
.y6f{bottom:845.112240px;}
.y56{bottom:845.128800px;}
.y12b{bottom:853.020000px;}
.yb8{bottom:856.980000px;}
.y91{bottom:857.168640px;}
.y2d{bottom:857.173680px;}
.ye7{bottom:858.474180px;}
.y109{bottom:862.412580px;}
.y6e{bottom:867.070800px;}
.y55{bottom:867.087360px;}
.y7{bottom:867.785040px;}
.yd6{bottom:871.042320px;}
.y2c{bottom:878.950080px;}
.y90{bottom:879.127200px;}
.y6d{bottom:888.847200px;}
.y54{bottom:888.863760px;}
.y6{bottom:889.561440px;}
.yd5{bottom:892.818720px;}
.y12a{bottom:898.221600px;}
.ye6{bottom:898.243560px;}
.y8f{bottom:900.903600px;}
.yb7{bottom:901.995660px;}
.y108{bottom:902.001600px;}
.y6c{bottom:910.623600px;}
.y5{bottom:911.520000px;}
.yd4{bottom:914.595120px;}
.y2b{bottom:918.727200px;}
.y8e{bottom:922.680000px;}
.y53{bottom:928.640880px;}
.y6b{bottom:932.400000px;}
.yd3{bottom:936.371520px;}
.y129{bottom:937.810620px;}
.ye5{bottom:937.832580px;}
.y2a{bottom:940.503600px;}
.yb6{bottom:941.765040px;}
.y107{bottom:941.770980px;}
.y52{bottom:950.417280px;}
.y4{bottom:956.541600px;}
.yd2{bottom:958.330080px;}
.y29{bottom:962.280000px;}
.y8d{bottom:967.723200px;}
.y51{bottom:972.375840px;}
.y14e{bottom:975.973680px;}
.y128{bottom:977.580000px;}
.y6a{bottom:977.601960px;}
.y106{bottom:981.360000px;}
.y50{bottom:994.152240px;}
.y3{bottom:996.130620px;}
.yd1{bottom:998.107200px;}
.yb5{bottom:999.360000px;}
.y28{bottom:1007.492580px;}
.y14d{bottom:1015.750800px;}
.y4f{bottom:1015.928640px;}
.y69{bottom:1017.190980px;}
.yd0{bottom:1019.883600px;}
.y127{bottom:1029.975840px;}
.y105{bottom:1033.751520px;}
.y2{bottom:1035.900000px;}
.y4e{bottom:1037.705040px;}
.ycf{bottom:1041.660000px;}
.y27{bottom:1047.081600px;}
.yb4{bottom:1051.752240px;}
.y14c{bottom:1055.527920px;}
.y68{bottom:1056.780000px;}
.y4d{bottom:1059.481440px;}
.yb3{bottom:1073.528640px;}
.y14b{bottom:1077.486480px;}
.y4c{bottom:1081.440000px;}
.y26{bottom:1086.850980px;}
.yb2{bottom:1095.487200px;}
.y1{bottom:1096.920000px;}
.y14a{bottom:1099.262880px;}
.yb1{bottom:1117.263600px;}
.y67{bottom:1117.980000px;}
.y25{bottom:1126.440000px;}
.yb0{bottom:1139.040000px;}
.h5{height:44.149219px;}
.h4{height:59.383125px;}
.h7{height:64.207035px;}
.h8{height:64.546875px;}
.h6{height:80.140430px;}
.h3{height:107.793281px;}
.h2{height:140.066719px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:108.000000px;}
.x3{left:135.025920px;}
.x2{left:162.084960px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsd{letter-spacing:-0.942080pt;}
.ls14{letter-spacing:-0.765440pt;}
.ls9{letter-spacing:-0.748160pt;}
.ls13{letter-spacing:-0.647680pt;}
.ls32{letter-spacing:-0.534400pt;}
.ls5{letter-spacing:-0.416640pt;}
.ls2f{letter-spacing:-0.412160pt;}
.ls15{letter-spacing:-0.353280pt;}
.lsc{letter-spacing:-0.294400pt;}
.lsb{letter-spacing:-0.235520pt;}
.ls8{letter-spacing:-0.213760pt;}
.ls2a{letter-spacing:-0.138880pt;}
.ls33{letter-spacing:-0.128000pt;}
.lsa{letter-spacing:-0.117760pt;}
.ls28{letter-spacing:-0.106880pt;}
.ls6{letter-spacing:0.000000pt;}
.ls34{letter-spacing:0.064000pt;}
.ls7{letter-spacing:0.106880pt;}
.ls25{letter-spacing:0.171008pt;}
.ls2e{letter-spacing:0.213760pt;}
.lse{letter-spacing:0.235520pt;}
.ls31{letter-spacing:0.256000pt;}
.ls1b{letter-spacing:0.277760pt;}
.ls0{letter-spacing:0.294400pt;}
.ls1a{letter-spacing:0.312064pt;}
.ls12{letter-spacing:0.320640pt;}
.ls19{letter-spacing:0.329728pt;}
.ls20{letter-spacing:0.347392pt;}
.ls17{letter-spacing:0.353280pt;}
.ls4{letter-spacing:0.370944pt;}
.ls3{letter-spacing:0.382720pt;}
.ls10{letter-spacing:0.388608pt;}
.ls2{letter-spacing:0.394496pt;}
.ls21{letter-spacing:0.400384pt;}
.ls23{letter-spacing:0.406272pt;}
.ls1c{letter-spacing:0.418048pt;}
.ls16{letter-spacing:0.423936pt;}
.ls30{letter-spacing:0.435712pt;}
.ls1d{letter-spacing:0.441600pt;}
.ls22{letter-spacing:0.447488pt;}
.ls1{letter-spacing:0.459264pt;}
.ls26{letter-spacing:0.471040pt;}
.ls24{letter-spacing:0.494592pt;}
.ls2c{letter-spacing:0.500480pt;}
.ls29{letter-spacing:0.529920pt;}
.ls27{letter-spacing:0.535808pt;}
.ls2b{letter-spacing:0.612352pt;}
.ls11{letter-spacing:0.624128pt;}
.lsf{letter-spacing:0.630016pt;}
.ls2d{letter-spacing:0.677120pt;}
.ls1e{letter-spacing:0.718336pt;}
.ls18{letter-spacing:0.847872pt;}
.ls1f{letter-spacing:44.454400pt;}
.ws1e{word-spacing:-58.880000pt;}
.ws1d{word-spacing:-38.886400pt;}
.ws21{word-spacing:-38.469760pt;}
.ws0{word-spacing:-38.192000pt;}
.ws13{word-spacing:-30.033280pt;}
.ws1{word-spacing:-29.819520pt;}
.ws12{word-spacing:-29.712640pt;}
.ws22{word-spacing:-29.605760pt;}
.ws27{word-spacing:-29.178240pt;}
.ws2{word-spacing:-28.964480pt;}
.ws1f{word-spacing:-16.663040pt;}
.ws5{word-spacing:-16.604160pt;}
.ws4{word-spacing:-16.368640pt;}
.ws3{word-spacing:-16.250880pt;}
.ws16{word-spacing:-16.074240pt;}
.ws1c{word-spacing:-16.015360pt;}
.ws14{word-spacing:-15.720960pt;}
.ws15{word-spacing:-15.603200pt;}
.ws28{word-spacing:-0.768000pt;}
.ws1b{word-spacing:-0.647680pt;}
.ws23{word-spacing:-0.534400pt;}
.ws2c{word-spacing:-0.448000pt;}
.ws24{word-spacing:-0.427520pt;}
.ws7{word-spacing:-0.320640pt;}
.ws10{word-spacing:-0.294400pt;}
.wsc{word-spacing:-0.235520pt;}
.ws29{word-spacing:-0.128000pt;}
.ws9{word-spacing:-0.106880pt;}
.ws6{word-spacing:0.000000pt;}
.ws20{word-spacing:0.106880pt;}
.wsb{word-spacing:0.117760pt;}
.ws2b{word-spacing:0.192000pt;}
.ws8{word-spacing:0.213760pt;}
.wsd{word-spacing:0.235520pt;}
.ws2a{word-spacing:0.256000pt;}
.ws11{word-spacing:0.294400pt;}
.ws19{word-spacing:0.353280pt;}
.wsa{word-spacing:0.412160pt;}
.ws26{word-spacing:0.529920pt;}
.wse{word-spacing:0.588800pt;}
.ws18{word-spacing:0.647680pt;}
.ws1a{word-spacing:0.765440pt;}
.wsf{word-spacing:0.942080pt;}
.ws17{word-spacing:1.059840pt;}
.ws25{word-spacing:1.236480pt;}
._1{margin-left:-1.175680pt;}
._0{width:1.208256pt;}
._2{width:729.397760pt;}
.fs2{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs1{font-size:106.880000pt;}
.fs0{font-size:138.880000pt;}
.y0{bottom:0.000000pt;}
.y126{bottom:103.268480pt;}
.y24{bottom:113.041920pt;}
.y4b{bottom:116.092160pt;}
.yaf{bottom:116.249600pt;}
.y149{bottom:122.240000pt;}
.y125{bottom:122.625280pt;}
.y8c{bottom:124.889600pt;}
.y104{bottom:131.266560pt;}
.y23{bottom:132.398720pt;}
.y4a{bottom:135.448960pt;}
.yae{bottom:135.606400pt;}
.y8b{bottom:144.246400pt;}
.y148{bottom:144.640000pt;}
.y103{bottom:150.623360pt;}
.y22{bottom:151.755520pt;}
.y49{bottom:154.805760pt;}
.yad{bottom:154.963200pt;}
.y124{bottom:157.982720pt;}
.y8a{bottom:163.603200pt;}
.y147{bottom:165.995520pt;}
.y102{bottom:170.142080pt;}
.y21{bottom:171.112320pt;}
.yac{bottom:174.320000pt;}
.y48{bottom:174.324480pt;}
.y123{bottom:177.339520pt;}
.y146{bottom:186.794880pt;}
.y101{bottom:189.498880pt;}
.y47{bottom:193.681280pt;}
.yab{bottom:193.838720pt;}
.y122{bottom:196.696320pt;}
.y89{bottom:199.122560pt;}
.y145{bottom:206.151680pt;}
.y20{bottom:206.631680pt;}
.y100{bottom:208.855680pt;}
.y46{bottom:213.038080pt;}
.yaa{bottom:213.195520pt;}
.y121{bottom:216.215040pt;}
.y88{bottom:218.479360pt;}
.y144{bottom:225.508480pt;}
.yff{bottom:228.212480pt;}
.y45{bottom:232.394880pt;}
.y120{bottom:235.571840pt;}
.y87{bottom:237.836160pt;}
.y1f{bottom:241.989120pt;}
.y143{bottom:244.865280pt;}
.yfe{bottom:247.731200pt;}
.ya9{bottom:248.552960pt;}
.y11f{bottom:254.928640pt;}
.yce{bottom:255.097600pt;}
.y86{bottom:257.192960pt;}
.y1e{bottom:261.345920pt;}
.y142{bottom:264.222080pt;}
.y44{bottom:267.752320pt;}
.ya8{bottom:267.909760pt;}
.y11e{bottom:274.285440pt;}
.y85{bottom:276.711680pt;}
.y1d{bottom:280.702720pt;}
.yfd{bottom:283.088640pt;}
.y141{bottom:283.740800pt;}
.y43{bottom:287.271040pt;}
.ya7{bottom:287.428480pt;}
.ycd{bottom:290.455040pt;}
.y11d{bottom:293.804160pt;}
.y84{bottom:296.068480pt;}
.y1c{bottom:300.221440pt;}
.yfc{bottom:302.445440pt;}
.y140{bottom:303.097600pt;}
.y42{bottom:306.627840pt;}
.ya6{bottom:306.785280pt;}
.y83{bottom:315.425280pt;}
.y1b{bottom:319.578240pt;}
.yfb{bottom:322.288000pt;}
.y13f{bottom:322.454400pt;}
.ycc{bottom:325.812480pt;}
.y41{bottom:325.984640pt;}
.ya5{bottom:326.142080pt;}
.y11c{bottom:329.161600pt;}
.y82{bottom:334.782080pt;}
.yfa{bottom:341.644800pt;}
.y13e{bottom:341.811200pt;}
.y40{bottom:345.341440pt;}
.ya4{bottom:345.498880pt;}
.y11b{bottom:348.518400pt;}
.y81{bottom:354.138880pt;}
.y1a{bottom:354.935680pt;}
.ycb{bottom:361.331840pt;}
.y3f{bottom:364.860160pt;}
.y11a{bottom:368.037120pt;}
.y66{bottom:374.080000pt;}
.y19{bottom:374.292480pt;}
.yf9{bottom:377.002240pt;}
.y13d{bottom:377.330560pt;}
.yca{bottom:380.688640pt;}
.ya3{bottom:380.856320pt;}
.y119{bottom:387.717760pt;}
.y80{bottom:389.658240pt;}
.y18{bottom:393.649280pt;}
.yf8{bottom:396.359040pt;}
.y13c{bottom:396.687360pt;}
.yc9{bottom:400.045440pt;}
.y3e{bottom:400.217600pt;}
.ya2{bottom:400.375040pt;}
.y118{bottom:407.074560pt;}
.y7f{bottom:409.015040pt;}
.y65{bottom:412.385920pt;}
.y17{bottom:413.168000pt;}
.yf7{bottom:415.715840pt;}
.y13b{bottom:416.044160pt;}
.yc8{bottom:419.402240pt;}
.y3d{bottom:419.574400pt;}
.ya1{bottom:419.731840pt;}
.y117{bottom:426.431360pt;}
.y16{bottom:432.524800pt;}
.yf6{bottom:435.234560pt;}
.y13a{bottom:435.400960pt;}
.ye4{bottom:435.840000pt;}
.yc7{bottom:438.759040pt;}
.y3c{bottom:438.931200pt;}
.ya0{bottom:439.088640pt;}
.y7e{bottom:444.372480pt;}
.y116{bottom:445.788160pt;}
.y64{bottom:447.743360pt;}
.y15{bottom:451.881600pt;}
.yf5{bottom:454.591360pt;}
.y139{bottom:454.757760pt;}
.yc6{bottom:458.277760pt;}
.y3b{bottom:458.288000pt;}
.y9f{bottom:458.445440pt;}
.y7d{bottom:463.729280pt;}
.y115{bottom:465.306880pt;}
.y63{bottom:467.262080pt;}
.y14{bottom:471.238400pt;}
.yf4{bottom:473.948160pt;}
.y138{bottom:474.276480pt;}
.yc5{bottom:477.634560pt;}
.y9e{bottom:477.802240pt;}
.y3a{bottom:477.806720pt;}
.y7c{bottom:483.248000pt;}
.y62{bottom:486.618880pt;}
.ye3{bottom:490.134400pt;}
.y13{bottom:490.757120pt;}
.yf3{bottom:493.304960pt;}
.y39{bottom:497.163520pt;}
.y9d{bottom:497.320960pt;}
.y114{bottom:500.664320pt;}
.y7b{bottom:502.604800pt;}
.y61{bottom:505.975680pt;}
.ye2{bottom:509.491200pt;}
.y137{bottom:509.633920pt;}
.yf2{bottom:512.823680pt;}
.yc4{bottom:512.992000pt;}
.y38{bottom:516.520320pt;}
.y113{bottom:520.021120pt;}
.y7a{bottom:521.961600pt;}
.y60{bottom:525.332480pt;}
.y12{bottom:526.114560pt;}
.ye1{bottom:528.848000pt;}
.y136{bottom:528.990720pt;}
.yf1{bottom:532.180480pt;}
.yc3{bottom:532.348800pt;}
.y9c{bottom:532.678400pt;}
.y37{bottom:535.877120pt;}
.y112{bottom:539.377920pt;}
.y79{bottom:541.318400pt;}
.y5f{bottom:544.689280pt;}
.y11{bottom:545.471360pt;}
.ye0{bottom:548.204800pt;}
.y135{bottom:548.347520pt;}
.yf0{bottom:551.537280pt;}
.yc2{bottom:551.867520pt;}
.y9b{bottom:552.035200pt;}
.y36{bottom:555.395840pt;}
.y111{bottom:558.896640pt;}
.y78{bottom:560.675200pt;}
.y10{bottom:564.828160pt;}
.ydf{bottom:567.723520pt;}
.y134{bottom:567.866240pt;}
.yef{bottom:570.894080pt;}
.yc1{bottom:571.224320pt;}
.y9a{bottom:571.392000pt;}
.y110{bottom:578.253440pt;}
.y77{bottom:580.193920pt;}
.y5e{bottom:580.208640pt;}
.yf{bottom:584.184960pt;}
.yde{bottom:587.080320pt;}
.y133{bottom:587.223040pt;}
.yee{bottom:590.412800pt;}
.yc0{bottom:590.581120pt;}
.y35{bottom:590.753280pt;}
.y99{bottom:590.910720pt;}
.y10f{bottom:597.610240pt;}
.y76{bottom:599.550720pt;}
.y5d{bottom:599.565440pt;}
.ydd{bottom:606.437120pt;}
.y132{bottom:606.579840pt;}
.ybf{bottom:609.937920pt;}
.yed{bottom:610.093440pt;}
.y34{bottom:610.110080pt;}
.y98{bottom:610.267520pt;}
.y10e{bottom:616.967040pt;}
.y75{bottom:618.907520pt;}
.y5c{bottom:618.922240pt;}
.ye{bottom:619.704320pt;}
.y131{bottom:625.936640pt;}
.ybe{bottom:629.294720pt;}
.y33{bottom:629.466880pt;}
.y97{bottom:629.624320pt;}
.y10d{bottom:636.323840pt;}
.y74{bottom:638.264320pt;}
.y5b{bottom:638.279040pt;}
.yd{bottom:639.061120pt;}
.ydc{bottom:641.794560pt;}
.y130{bottom:645.293440pt;}
.yec{bottom:645.450880pt;}
.y32{bottom:648.823680pt;}
.y96{bottom:648.981120pt;}
.y10c{bottom:655.842560pt;}
.y73{bottom:657.783040pt;}
.y5a{bottom:657.797760pt;}
.yc{bottom:658.417920pt;}
.ydb{bottom:661.313280pt;}
.yeb{bottom:664.807680pt;}
.ybd{bottom:664.814080pt;}
.y31{bottom:668.342400pt;}
.y72{bottom:677.139840pt;}
.yb{bottom:677.774720pt;}
.yda{bottom:680.670080pt;}
.y12f{bottom:680.812800pt;}
.ybc{bottom:684.170880pt;}
.yea{bottom:684.326400pt;}
.y95{bottom:684.338560pt;}
.y10b{bottom:691.200000pt;}
.y59{bottom:693.155200pt;}
.ya{bottom:697.293440pt;}
.yd9{bottom:700.026880pt;}
.y12e{bottom:700.169600pt;}
.ybb{bottom:703.527680pt;}
.ye9{bottom:703.683200pt;}
.y30{bottom:703.699840pt;}
.y94{bottom:703.857280pt;}
.y71{bottom:712.497280pt;}
.y58{bottom:712.512000pt;}
.y9{bottom:716.650240pt;}
.yd8{bottom:719.383680pt;}
.y12d{bottom:719.526400pt;}
.yba{bottom:722.884480pt;}
.ye8{bottom:723.040000pt;}
.y2f{bottom:723.056640pt;}
.y93{bottom:723.214080pt;}
.y10a{bottom:731.238400pt;}
.y70{bottom:731.854080pt;}
.y57{bottom:731.868800pt;}
.y8{bottom:736.007040pt;}
.yd7{bottom:738.740480pt;}
.y12c{bottom:738.883200pt;}
.yb9{bottom:742.241280pt;}
.y2e{bottom:742.413440pt;}
.y92{bottom:742.570880pt;}
.y6f{bottom:751.210880pt;}
.y56{bottom:751.225600pt;}
.y12b{bottom:758.240000pt;}
.yb8{bottom:761.760000pt;}
.y91{bottom:761.927680pt;}
.y2d{bottom:761.932160pt;}
.ye7{bottom:763.088160pt;}
.y109{bottom:766.588960pt;}
.y6e{bottom:770.729600pt;}
.y55{bottom:770.744320pt;}
.y7{bottom:771.364480pt;}
.yd6{bottom:774.259840pt;}
.y2c{bottom:781.288960pt;}
.y90{bottom:781.446400pt;}
.y6d{bottom:790.086400pt;}
.y54{bottom:790.101120pt;}
.y6{bottom:790.721280pt;}
.yd5{bottom:793.616640pt;}
.y12a{bottom:798.419200pt;}
.ye6{bottom:798.438720pt;}
.y8f{bottom:800.803200pt;}
.yb7{bottom:801.773920pt;}
.y108{bottom:801.779200pt;}
.y6c{bottom:809.443200pt;}
.y5{bottom:810.240000pt;}
.yd4{bottom:812.973440pt;}
.y2b{bottom:816.646400pt;}
.y8e{bottom:820.160000pt;}
.y53{bottom:825.458560pt;}
.y6b{bottom:828.800000pt;}
.yd3{bottom:832.330240pt;}
.y129{bottom:833.609440pt;}
.ye5{bottom:833.628960pt;}
.y2a{bottom:836.003200pt;}
.yb6{bottom:837.124480pt;}
.y107{bottom:837.129760pt;}
.y52{bottom:844.815360pt;}
.y4{bottom:850.259200pt;}
.yd2{bottom:851.848960pt;}
.y29{bottom:855.360000pt;}
.y8d{bottom:860.198400pt;}
.y51{bottom:864.334080pt;}
.y14e{bottom:867.532160pt;}
.y128{bottom:868.960000pt;}
.y6a{bottom:868.979520pt;}
.y106{bottom:872.320000pt;}
.y50{bottom:883.690880pt;}
.y3{bottom:885.449440pt;}
.yd1{bottom:887.206400pt;}
.yb5{bottom:888.320000pt;}
.y28{bottom:895.548960pt;}
.y14d{bottom:902.889600pt;}
.y4f{bottom:903.047680pt;}
.y69{bottom:904.169760pt;}
.yd0{bottom:906.563200pt;}
.y127{bottom:915.534080pt;}
.y105{bottom:918.890240pt;}
.y2{bottom:920.800000pt;}
.y4e{bottom:922.404480pt;}
.ycf{bottom:925.920000pt;}
.y27{bottom:930.739200pt;}
.yb4{bottom:934.890880pt;}
.y14c{bottom:938.247040pt;}
.y68{bottom:939.360000pt;}
.y4d{bottom:941.761280pt;}
.yb3{bottom:954.247680pt;}
.y14b{bottom:957.765760pt;}
.y4c{bottom:961.280000pt;}
.y26{bottom:966.089760pt;}
.yb2{bottom:973.766400pt;}
.y1{bottom:975.040000pt;}
.y14a{bottom:977.122560pt;}
.yb1{bottom:993.123200pt;}
.y67{bottom:993.760000pt;}
.y25{bottom:1001.280000pt;}
.yb0{bottom:1012.480000pt;}
.h5{height:39.243750pt;}
.h4{height:52.785000pt;}
.h7{height:57.072920pt;}
.h8{height:57.375000pt;}
.h6{height:71.235937pt;}
.h3{height:95.816250pt;}
.h2{height:124.503750pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:96.000000pt;}
.x3{left:120.023040pt;}
.x2{left:144.075520pt;}
}




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