
    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_2ce504053b31ac9453c0d77a.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.113281;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_485e442494c0ba2b49154456.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938477;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_be5fac5f00c461986f85bdee.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938477;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_d89fb8b9309f4e660d9e7348.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_e0ce62895147913eeba1ab93.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_ef0f2d79efd1879da1ed3b47.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_c18b659d92e5cddc29ba6f6b.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.742676;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_cc01bda1f953300bfef70b61.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.938477;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_00ed8d2b553afbdbc09897ed.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.938477;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_84da89e125737384c962ab58.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.939453;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_9554076877b7b0cfb21780ec.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_63fc5f3e7dda8c6506ed54a2.woff2')format("woff");}.ffc{font-family:ffc;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;}
.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;}
.ls9{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.113396px;}
.ls1c{letter-spacing:0.139316px;}
.ls6{letter-spacing:0.142136px;}
.ls7{letter-spacing:0.144956px;}
.ls15{letter-spacing:0.188995px;}
.ls13{letter-spacing:0.191755px;}
.ls1e{letter-spacing:0.214201px;}
.ls1{letter-spacing:0.216181px;}
.ls1d{letter-spacing:0.217021px;}
.ls18{letter-spacing:0.217075px;}
.lsd{letter-spacing:0.219895px;}
.ls0{letter-spacing:0.230732px;}
.ls25{letter-spacing:0.276987px;}
.ls24{letter-spacing:0.287033px;}
.ls19{letter-spacing:0.288353px;}
.ls3{letter-spacing:0.646622px;}
.ls4{letter-spacing:0.671121px;}
.ls8{letter-spacing:0.856496px;}
.ls23{letter-spacing:0.864956px;}
.ls2{letter-spacing:1.116181px;}
.ls5{letter-spacing:1.385541px;}
.lsc{letter-spacing:3.145855px;}
.lsb{letter-spacing:3.739315px;}
.ls14{letter-spacing:8.059313px;}
.ls21{letter-spacing:10.936492px;}
.ls16{letter-spacing:21.010848px;}
.lsf{letter-spacing:23.890847px;}
.ls11{letter-spacing:24.610847px;}
.ls1a{letter-spacing:26.045206px;}
.ls1b{letter-spacing:26.770846px;}
.ls12{letter-spacing:27.493665px;}
.ls20{letter-spacing:28.208025px;}
.ls17{letter-spacing:28.331805px;}
.ls1f{letter-spacing:28.925205px;}
.lse{letter-spacing:33.245203px;}
.ls22{letter-spacing:146.189518px;}
.lsa{letter-spacing:199.264682px;}
.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:-34.606649px;}
.ws1{word-spacing:-30.005807px;}
.ws2{word-spacing:-24.004679px;}
.ws9{word-spacing:-20.280803px;}
.ws4{word-spacing:-20.003816px;}
.ws6{word-spacing:-18.403537px;}
.ws3{word-spacing:-16.603232px;}
.ws5{word-spacing:-16.003086px;}
.ws7{word-spacing:0.000000px;}
.ws8{word-spacing:200.675740px;}
._1{margin-left:-5.194815px;}
._0{margin-left:-2.114647px;}
._4{margin-left:-1.033574px;}
._3{width:1.065558px;}
._2{width:2.518855px;}
._7{width:4.065717px;}
._c{width:5.214626px;}
._11{width:6.366903px;}
._d{width:7.587087px;}
._10{width:8.613057px;}
._12{width:9.679003px;}
._1b{width:10.757564px;}
._1a{width:11.926577px;}
._14{width:12.931798px;}
._13{width:14.175363px;}
._1f{width:15.195440px;}
._1d{width:16.198216px;}
._19{width:17.323033px;}
._18{width:18.523058px;}
._15{width:21.424304px;}
._b{width:22.735762px;}
._a{width:24.326912px;}
._17{width:25.547660px;}
._e{width:27.069168px;}
._f{width:28.182462px;}
._5{width:29.677088px;}
._22{width:31.402817px;}
._8{width:33.116606px;}
._9{width:34.303531px;}
._21{width:36.806122px;}
._20{width:38.021721px;}
._24{width:47.968013px;}
._23{width:49.078122px;}
._1e{width:54.223775px;}
._1c{width:146.201988px;}
._6{width:199.380966px;}
._16{width:217.147313px;}
.fc3{color:rgb(212,241,243);}
.fc1{color:rgb(107,30,116);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fs7{font-size:23.745591px;}
.fs6{font-size:48.210821px;}
.fsa{font-size:56.845597px;}
.fs8{font-size:57.565057px;}
.fs5{font-size:59.723856px;}
.fs9{font-size:66.199774px;}
.fs2{font-size:71.956171px;}
.fs4{font-size:86.347765px;}
.fs3{font-size:107.934557px;}
.fs1{font-size:124.484350px;}
.fs0{font-size:156.145738px;}
.y0{bottom:0.000000px;}
.y11{bottom:0.360000px;}
.y1{bottom:0.503438px;}
.y13{bottom:68.285373px;}
.y6b{bottom:164.779995px;}
.y19{bottom:164.923434px;}
.y10{bottom:165.318900px;}
.yf{bottom:186.006892px;}
.ye{bottom:206.693534px;}
.yd{bottom:224.683027px;}
.y108{bottom:228.282470px;}
.y67{bottom:228.425893px;}
.yc{bottom:234.396693px;}
.ye5{bottom:241.594815px;}
.y38{bottom:242.814353px;}
.y66{bottom:243.356753px;}
.y128{bottom:246.269113px;}
.y134{bottom:246.269413px;}
.yb8{bottom:246.413301px;}
.yb{bottom:253.644685px;}
.y107{bottom:255.625659px;}
.y96{bottom:261.343845px;}
.y65{bottom:263.862494px;}
.y133{bottom:266.957405px;}
.yd9{bottom:267.499204px;}
.ye4{bottom:267.500104px;}
.y37{bottom:268.717542px;}
.ya{bottom:268.755529px;}
.y127{bottom:272.173653px;}
.yb7{bottom:272.317841px;}
.y106{bottom:281.349449px;}
.y95{bottom:282.031837px;}
.y64{bottom:284.550486px;}
.y9{bottom:289.443521px;}
.y132{bottom:292.861944px;}
.yd8{bottom:293.402394px;}
.ye3{bottom:293.403294px;}
.y36{bottom:293.542832px;}
.y126{bottom:297.898942px;}
.yb6{bottom:298.043131px;}
.y94{bottom:302.749379px;}
.y63{bottom:305.268028px;}
.y105{bottom:307.284138px;}
.y8{bottom:310.161812px;}
.y35{bottom:315.699774px;}
.y131{bottom:318.615284px;}
.yd7{bottom:319.157084px;}
.ye2{bottom:319.157984px;}
.y93{bottom:323.436020px;}
.y125{bottom:323.832282px;}
.yb5{bottom:323.976470px;}
.y62{bottom:324.696020px;}
.y7{bottom:328.149805px;}
.y104{bottom:333.007928px;}
.y6{bottom:337.863471px;}
.y61{bottom:339.808349px;}
.y34{bottom:340.884314px;}
.y92{bottom:342.864013px;}
.y130{bottom:344.520574px;}
.yd6{bottom:345.060873px;}
.ye1{bottom:345.061773px;}
.y124{bottom:349.737572px;}
.yb4{bottom:349.881760px;}
.y5{bottom:357.292963px;}
.y91{bottom:357.974992px;}
.y103{bottom:358.912468px;}
.y60{bottom:360.494991px;}
.y33{bottom:363.550954px;}
.y12f{bottom:370.424363px;}
.yd5{bottom:370.966163px;}
.ye0{bottom:370.967063px;}
.y4{bottom:372.222413px;}
.y123{bottom:375.460761px;}
.yb3{bottom:375.604950px;}
.y90{bottom:378.662983px;}
.y5f{bottom:381.182982px;}
.y102{bottom:384.816257px;}
.y32{bottom:389.456244px;}
.y12e{bottom:396.148903px;}
.yd4{bottom:396.690703px;}
.ydf{bottom:396.691603px;}
.y8f{bottom:398.090976px;}
.y122{bottom:401.366051px;}
.yb2{bottom:401.509489px;}
.y5e{bottom:401.870974px;}
.y101{bottom:410.720797px;}
.y8e{bottom:413.021985px;}
.y31{bottom:414.280784px;}
.y12d{bottom:422.052693px;}
.y5d{bottom:422.557616px;}
.yd3{bottom:422.594492px;}
.yde{bottom:422.595392px;}
.y121{bottom:427.269840px;}
.yb1{bottom:427.414029px;}
.y8d{bottom:433.709976px;}
.y100{bottom:436.446087px;}
.y30{bottom:436.767425px;}
.y5c{bottom:441.985608px;}
.y12c{bottom:444.899333px;}
.yd2{bottom:448.498282px;}
.ydd{bottom:448.499182px;}
.y120{bottom:453.174380px;}
.yb0{bottom:453.318569px;}
.y8c{bottom:454.396618px;}
.y5b{bottom:457.096452px;}
.yff{bottom:462.349876px;}
.y2f{bottom:462.671215px;}
.y12b{bottom:465.586725px;}
.yd1{bottom:474.402072px;}
.ydc{bottom:474.402972px;}
.y8b{bottom:475.084610px;}
.y5a{bottom:476.524444px;}
.y11f{bottom:478.898170px;}
.yaf{bottom:479.042358px;}
.y12a{bottom:486.273367px;}
.yfe{bottom:488.254416px;}
.y2e{bottom:488.575754px;}
.y59{bottom:491.455453px;}
.y8a{bottom:494.512602px;}
.yd0{bottom:500.127361px;}
.ydb{bottom:500.128261px;}
.y11e{bottom:504.802709px;}
.yae{bottom:504.946898px;}
.y129{bottom:506.961359px;}
.y89{bottom:509.623446px;}
.y58{bottom:512.143445px;}
.yfd{bottom:514.158206px;}
.y2d{bottom:514.479544px;}
.ycf{bottom:526.075551px;}
.yda{bottom:526.076301px;}
.y88{bottom:529.096438px;}
.y11d{bottom:530.752999px;}
.yad{bottom:530.897187px;}
.y57{bottom:531.616437px;}
.yfc{bottom:539.927745px;}
.y2c{bottom:540.249084px;}
.y87{bottom:544.207267px;}
.y56{bottom:546.725931px;}
.yce{bottom:551.980841px;}
.y11c{bottom:556.656189px;}
.yac{bottom:556.800377px;}
.y86{bottom:564.895259px;}
.yfb{bottom:565.831535px;}
.y2b{bottom:566.152873px;}
.y55{bottom:567.413923px;}
.ycd{bottom:577.885380px;}
.y11b{bottom:582.381478px;}
.yab{bottom:582.525667px;}
.y85{bottom:585.581901px;}
.y54{bottom:588.100565px;}
.yfa{bottom:591.736825px;}
.y2a{bottom:592.058163px;}
.ycc{bottom:603.609170px;}
.y84{bottom:605.011393px;}
.y53{bottom:607.530057px;}
.y11a{bottom:608.285268px;}
.yaa{bottom:608.429456px;}
.y29{bottom:616.883453px;}
.yf9{bottom:617.640014px;}
.y83{bottom:619.943632px;}
.y52{bottom:622.640901px;}
.ycb{bottom:629.512960px;}
.y119{bottom:634.189808px;}
.ya9{bottom:634.333246px;}
.y28{bottom:639.370094px;}
.y82{bottom:640.630274px;}
.y51{bottom:642.068893px;}
.yf8{bottom:643.365304px;}
.yca{bottom:655.416749px;}
.y50{bottom:657.180187px;}
.y118{bottom:660.093597px;}
.ya8{bottom:660.237036px;}
.y81{bottom:661.318265px;}
.y27{bottom:665.273884px;}
.yf7{bottom:669.269844px;}
.y4f{bottom:677.686829px;}
.yc9{bottom:681.322039px;}
.y80{bottom:682.006257px;}
.y117{bottom:685.818137px;}
.ya7{bottom:685.961575px;}
.y26{bottom:691.178423px;}
.yf6{bottom:695.173633px;}
.y4e{bottom:698.374821px;}
.y7f{bottom:701.434249px;}
.yc8{bottom:707.045229px;}
.y116{bottom:711.723427px;}
.ya6{bottom:711.866865px;}
.y7e{bottom:716.545093px;}
.y25{bottom:716.903713px;}
.y4d{bottom:717.802813px;}
.yf5{bottom:721.078173px;}
.y4c{bottom:732.944137px;}
.yc7{bottom:732.980668px;}
.y7d{bottom:736.002635px;}
.y115{bottom:737.656766px;}
.ya5{bottom:737.800205px;}
.y24{bottom:742.837053px;}
.yf4{bottom:746.832263px;}
.y7c{bottom:750.933299px;}
.y4b{bottom:753.632128px;}
.yc6{bottom:758.884458px;}
.y114{bottom:763.562056px;}
.ya4{bottom:763.705494px;}
.y23{bottom:768.742342px;}
.y7b{bottom:771.619191px;}
.yf3{bottom:772.736802px;}
.y4a{bottom:773.060121px;}
.yc5{bottom:784.788247px;}
.y49{bottom:787.991685px;}
.y113{bottom:789.285246px;}
.ya3{bottom:789.428684px;}
.y7a{bottom:791.048683px;}
.y22{bottom:794.645532px;}
.yf2{bottom:798.640592px;}
.y79{bottom:806.159257px;}
.y48{bottom:807.419077px;}
.yc4{bottom:810.512787px;}
.y112{bottom:815.190535px;}
.ya2{bottom:815.333224px;}
.y21{bottom:820.370822px;}
.y47{bottom:822.530821px;}
.yf1{bottom:824.545882px;}
.y78{bottom:826.847249px;}
.yc3{bottom:836.416577px;}
.y111{bottom:841.094325px;}
.ya1{bottom:841.237763px;}
.y46{bottom:843.218813px;}
.y20{bottom:846.274011px;}
.y77{bottom:847.535241px;}
.yf0{bottom:850.270421px;}
.yc2{bottom:862.321866px;}
.y45{bottom:862.646805px;}
.y76{bottom:866.963233px;}
.y110{bottom:866.998865px;}
.ya0{bottom:867.142303px;}
.y1f{bottom:871.099301px;}
.yef{bottom:876.174211px;}
.y44{bottom:877.756884px;}
.y75{bottom:882.074077px;}
.yc1{bottom:888.225056px;}
.y10f{bottom:892.722654px;}
.y9f{bottom:892.866093px;}
.y1e{bottom:893.765942px;}
.y43{bottom:898.442775px;}
.y74{bottom:901.502069px;}
.yee{bottom:902.078751px;}
.yc0{bottom:913.950346px;}
.y73{bottom:916.433633px;}
.y10e{bottom:918.627194px;}
.y9e{bottom:918.770632px;}
.y42{bottom:919.130767px;}
.y1d{bottom:919.490482px;}
.yed{bottom:927.802540px;}
.y72{bottom:937.121025px;}
.y41{bottom:939.818759px;}
.ybf{bottom:939.853535px;}
.y1c{bottom:944.360772px;}
.y10d{bottom:944.577484px;}
.y9d{bottom:944.720922px;}
.yec{bottom:953.752080px;}
.y71{bottom:956.594017px;}
.y40{bottom:960.550401px;}
.ybe{bottom:965.803825px;}
.y1b{bottom:967.027413px;}
.y10c{bottom:970.301273px;}
.y9c{bottom:970.444712px;}
.y70{bottom:971.704561px;}
.yeb{bottom:979.655870px;}
.y3f{bottom:979.978393px;}
.ybd{bottom:991.528365px;}
.y6f{bottom:992.390453px;}
.y1a{bottom:992.930603px;}
.y3e{bottom:994.909252px;}
.y10b{bottom:996.205813px;}
.y9b{bottom:996.349251px;}
.yea{bottom:1005.561159px;}
.y6e{bottom:1013.078445px;}
.y3d{bottom:1014.337244px;}
.ybc{bottom:1017.432154px;}
.y10a{bottom:1022.109603px;}
.y9a{bottom:1022.253041px;}
.y3c{bottom:1029.628088px;}
.y6d{bottom:1033.766436px;}
.ybb{bottom:1043.337444px;}
.y109{bottom:1048.014142px;}
.y99{bottom:1048.157581px;}
.y3b{bottom:1050.136080px;}
.y6c{bottom:1054.453078px;}
.yba{bottom:1069.240634px;}
.ye9{bottom:1072.118833px;}
.y18{bottom:1077.119569px;}
.ye8{bottom:1092.806824px;}
.y17{bottom:1097.807561px;}
.y3{bottom:1107.378118px;}
.y98{bottom:1110.220656px;}
.ye7{bottom:1113.494216px;}
.y16{bottom:1118.496152px;}
.y3a{bottom:1118.675552px;}
.y6a{bottom:1118.712114px;}
.y97{bottom:1130.728048px;}
.yb9{bottom:1131.303109px;}
.ye6{bottom:1134.181608px;}
.y15{bottom:1138.283545px;}
.y39{bottom:1139.183544px;}
.y69{bottom:1139.220106px;}
.y2{bottom:1140.478605px;}
.y68{bottom:1179.904589px;}
.y14{bottom:1180.048028px;}
.y12{bottom:1205.413018px;}
.h7{height:21.287551px;}
.h12{height:32.132700px;}
.h9{height:35.098796px;}
.hf{height:37.887813px;}
.h10{height:43.220247px;}
.h5{height:43.526273px;}
.hd{height:50.961190px;}
.h6{height:52.421195px;}
.h13{height:52.456330px;}
.he{height:53.541504px;}
.hb{height:53.920610px;}
.hc{height:59.767276px;}
.h8{height:64.507583px;}
.h11{height:64.510643px;}
.h4{height:64.964336px;}
.h3{height:97.446775px;}
.h2{height:140.973373px;}
.h1{height:1262.115000px;}
.ha{height:1262.340000px;}
.h0{height:1263.000000px;}
.w1{width:892.440000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.xc{left:114.086954px;}
.x1c{left:123.074051px;}
.xe{left:127.211799px;}
.x12{left:131.536297px;}
.x15{left:152.038455px;}
.x18{left:162.112435px;}
.x13{left:173.805020px;}
.xb{left:175.963280px;}
.x1f{left:186.578025px;}
.x6{left:189.634574px;}
.x9{left:191.659513px;}
.x17{left:201.553419px;}
.x2{left:207.848917px;}
.x8{left:230.515468px;}
.xa{left:264.505724px;}
.x7{left:288.620960px;}
.xd{left:305.710378px;}
.x11{left:321.029872px;}
.x21{left:325.708370px;}
.x20{left:327.327469px;}
.x1e{left:331.103868px;}
.x1d{left:338.658765px;}
.x10{left:341.718313px;}
.x3{left:367.802853px;}
.x1{left:377.876849px;}
.x5{left:409.897486px;}
.x16{left:420.149532px;}
.x19{left:435.621021px;}
.xf{left:441.197824px;}
.x14{left:443.176639px;}
.x4{left:445.379972px;}
.x1b{left:542.161283px;}
.x1a{left:760.609196px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls9{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.100797pt;}
.ls1c{letter-spacing:0.123837pt;}
.ls6{letter-spacing:0.126343pt;}
.ls7{letter-spacing:0.128850pt;}
.ls15{letter-spacing:0.167995pt;}
.ls13{letter-spacing:0.170448pt;}
.ls1e{letter-spacing:0.190400pt;}
.ls1{letter-spacing:0.192161pt;}
.ls1d{letter-spacing:0.192907pt;}
.ls18{letter-spacing:0.192955pt;}
.lsd{letter-spacing:0.195462pt;}
.ls0{letter-spacing:0.205095pt;}
.ls25{letter-spacing:0.246211pt;}
.ls24{letter-spacing:0.255140pt;}
.ls19{letter-spacing:0.256313pt;}
.ls3{letter-spacing:0.574775pt;}
.ls4{letter-spacing:0.596552pt;}
.ls8{letter-spacing:0.761330pt;}
.ls23{letter-spacing:0.768850pt;}
.ls2{letter-spacing:0.992161pt;}
.ls5{letter-spacing:1.231592pt;}
.lsc{letter-spacing:2.796316pt;}
.lsb{letter-spacing:3.323835pt;}
.ls14{letter-spacing:7.163834pt;}
.ls21{letter-spacing:9.721326pt;}
.ls16{letter-spacing:18.676309pt;}
.lsf{letter-spacing:21.236308pt;}
.ls11{letter-spacing:21.876308pt;}
.ls1a{letter-spacing:23.151294pt;}
.ls1b{letter-spacing:23.796307pt;}
.ls12{letter-spacing:24.438814pt;}
.ls20{letter-spacing:25.073800pt;}
.ls17{letter-spacing:25.183827pt;}
.ls1f{letter-spacing:25.711293pt;}
.lse{letter-spacing:29.551292pt;}
.ls22{letter-spacing:129.946238pt;}
.lsa{letter-spacing:177.124161pt;}
.ws0{word-spacing:-30.761466pt;}
.ws1{word-spacing:-26.671828pt;}
.ws2{word-spacing:-21.337492pt;}
.ws9{word-spacing:-18.027380pt;}
.ws4{word-spacing:-17.781169pt;}
.ws6{word-spacing:-16.358700pt;}
.ws3{word-spacing:-14.758428pt;}
.ws5{word-spacing:-14.224965pt;}
.ws7{word-spacing:0.000000pt;}
.ws8{word-spacing:178.378436pt;}
._1{margin-left:-4.617614pt;}
._0{margin-left:-1.879686pt;}
._4{margin-left:-0.918732pt;}
._3{width:0.947163pt;}
._2{width:2.238982pt;}
._7{width:3.613971pt;}
._c{width:4.635223pt;}
._11{width:5.659470pt;}
._d{width:6.744077pt;}
._10{width:7.656051pt;}
._12{width:8.603558pt;}
._1b{width:9.562279pt;}
._1a{width:10.601402pt;}
._14{width:11.494931pt;}
._13{width:12.600323pt;}
._1f{width:13.507058pt;}
._1d{width:14.398414pt;}
._19{width:15.398252pt;}
._18{width:16.464941pt;}
._15{width:19.043826pt;}
._b{width:20.209566pt;}
._a{width:21.623922pt;}
._17{width:22.709031pt;}
._e{width:24.061483pt;}
._f{width:25.051078pt;}
._5{width:26.379634pt;}
._22{width:27.913615pt;}
._8{width:29.436983pt;}
._9{width:30.492027pt;}
._21{width:32.716553pt;}
._20{width:33.797085pt;}
._24{width:42.638233pt;}
._23{width:43.624997pt;}
._1e{width:48.198911pt;}
._1c{width:129.957322pt;}
._6{width:177.227525pt;}
._16{width:193.019834pt;}
.fs7{font-size:21.107192pt;}
.fs6{font-size:42.854063pt;}
.fsa{font-size:50.529420pt;}
.fs8{font-size:51.168940pt;}
.fs5{font-size:53.087872pt;}
.fs9{font-size:58.844243pt;}
.fs2{font-size:63.961041pt;}
.fs4{font-size:76.753569pt;}
.fs3{font-size:95.941828pt;}
.fs1{font-size:110.652756pt;}
.fs0{font-size:138.796211pt;}
.y0{bottom:0.000000pt;}
.y11{bottom:0.320000pt;}
.y1{bottom:0.447501pt;}
.y13{bottom:60.698109pt;}
.y6b{bottom:146.471107pt;}
.y19{bottom:146.598608pt;}
.y10{bottom:146.950134pt;}
.yf{bottom:165.339460pt;}
.ye{bottom:183.727586pt;}
.yd{bottom:199.718246pt;}
.y108{bottom:202.917751pt;}
.y67{bottom:203.045239pt;}
.yc{bottom:208.352616pt;}
.ye5{bottom:214.750946pt;}
.y38{bottom:215.834980pt;}
.y66{bottom:216.317113pt;}
.y128{bottom:218.905878pt;}
.y134{bottom:218.906145pt;}
.yb8{bottom:219.034046pt;}
.yb{bottom:225.461942pt;}
.y107{bottom:227.222808pt;}
.y96{bottom:232.305640pt;}
.y65{bottom:234.544439pt;}
.y133{bottom:237.295471pt;}
.yd9{bottom:237.777071pt;}
.ye4{bottom:237.777871pt;}
.y37{bottom:238.860038pt;}
.ya{bottom:238.893803pt;}
.y127{bottom:241.932136pt;}
.yb7{bottom:242.060303pt;}
.y106{bottom:250.088399pt;}
.y95{bottom:250.694966pt;}
.y64{bottom:252.933765pt;}
.y9{bottom:257.283129pt;}
.y132{bottom:260.321728pt;}
.yd8{bottom:260.802128pt;}
.ye3{bottom:260.802928pt;}
.y36{bottom:260.926962pt;}
.y126{bottom:264.799060pt;}
.yb6{bottom:264.927227pt;}
.y94{bottom:269.110559pt;}
.y63{bottom:271.349358pt;}
.y105{bottom:273.141456pt;}
.y8{bottom:275.699389pt;}
.y35{bottom:280.622021pt;}
.y131{bottom:283.213586pt;}
.yd7{bottom:283.695186pt;}
.ye2{bottom:283.695986pt;}
.y93{bottom:287.498685pt;}
.y125{bottom:287.850917pt;}
.yb5{bottom:287.979085pt;}
.y62{bottom:288.618684pt;}
.y7{bottom:291.688716pt;}
.y104{bottom:296.007047pt;}
.y6{bottom:300.323086pt;}
.y61{bottom:302.051866pt;}
.y34{bottom:303.008279pt;}
.y92{bottom:304.768011pt;}
.y130{bottom:306.240510pt;}
.yd6{bottom:306.720776pt;}
.ye1{bottom:306.721576pt;}
.y124{bottom:310.877841pt;}
.yb4{bottom:311.006009pt;}
.y5{bottom:317.593745pt;}
.y91{bottom:318.199993pt;}
.y103{bottom:319.033305pt;}
.y60{bottom:320.439992pt;}
.y33{bottom:323.156404pt;}
.y12f{bottom:329.266101pt;}
.yd5{bottom:329.747700pt;}
.ye0{bottom:329.748500pt;}
.y4{bottom:330.864367pt;}
.y123{bottom:333.742899pt;}
.yb3{bottom:333.871066pt;}
.y90{bottom:336.589319pt;}
.y5f{bottom:338.829318pt;}
.y102{bottom:342.058896pt;}
.y32{bottom:346.183328pt;}
.y12e{bottom:352.132358pt;}
.yd4{bottom:352.613958pt;}
.ydf{bottom:352.614758pt;}
.y8f{bottom:353.858645pt;}
.y122{bottom:356.769823pt;}
.yb2{bottom:356.897324pt;}
.y5e{bottom:357.218644pt;}
.y101{bottom:365.085153pt;}
.y8e{bottom:367.130653pt;}
.y31{bottom:368.249586pt;}
.y12d{bottom:375.157949pt;}
.y5d{bottom:375.606770pt;}
.yd3{bottom:375.639549pt;}
.yde{bottom:375.640349pt;}
.y121{bottom:379.795414pt;}
.yb1{bottom:379.923581pt;}
.y8d{bottom:385.519979pt;}
.y100{bottom:387.952077pt;}
.y30{bottom:388.237711pt;}
.y5c{bottom:392.876096pt;}
.y12c{bottom:395.466074pt;}
.yd2{bottom:398.665140pt;}
.ydd{bottom:398.665940pt;}
.y120{bottom:402.821671pt;}
.yb0{bottom:402.949839pt;}
.y8c{bottom:403.908105pt;}
.y5b{bottom:406.307957pt;}
.yff{bottom:410.977668pt;}
.y2f{bottom:411.263302pt;}
.y12b{bottom:413.854867pt;}
.yd1{bottom:421.690730pt;}
.ydc{bottom:421.691530pt;}
.y8b{bottom:422.297431pt;}
.y5a{bottom:423.577284pt;}
.y11f{bottom:425.687262pt;}
.yaf{bottom:425.815430pt;}
.y12a{bottom:432.242993pt;}
.yfe{bottom:434.003925pt;}
.y2e{bottom:434.289559pt;}
.y59{bottom:436.849292pt;}
.y8a{bottom:439.566757pt;}
.yd0{bottom:444.557655pt;}
.ydb{bottom:444.558455pt;}
.y11e{bottom:448.713520pt;}
.yae{bottom:448.841687pt;}
.y129{bottom:450.632319pt;}
.y89{bottom:452.998619pt;}
.y58{bottom:455.238618pt;}
.yfd{bottom:457.029516pt;}
.y2d{bottom:457.315150pt;}
.ycf{bottom:467.622712pt;}
.yda{bottom:467.623379pt;}
.y88{bottom:470.307945pt;}
.y11d{bottom:471.780444pt;}
.yad{bottom:471.908611pt;}
.y57{bottom:472.547944pt;}
.yfc{bottom:479.935774pt;}
.y2c{bottom:480.221408pt;}
.y87{bottom:483.739793pt;}
.y56{bottom:485.978605pt;}
.yce{bottom:490.649636pt;}
.y11c{bottom:494.805501pt;}
.yac{bottom:494.933669pt;}
.y86{bottom:502.129119pt;}
.yfb{bottom:502.961365pt;}
.y2b{bottom:503.246999pt;}
.y55{bottom:504.367931pt;}
.ycd{bottom:513.675894pt;}
.y11b{bottom:517.672425pt;}
.yab{bottom:517.800593pt;}
.y85{bottom:520.517245pt;}
.y54{bottom:522.756057pt;}
.yfa{bottom:525.988289pt;}
.y2a{bottom:526.273923pt;}
.ycc{bottom:536.541484pt;}
.y84{bottom:537.787905pt;}
.y53{bottom:540.026717pt;}
.y11a{bottom:540.698016pt;}
.yaa{bottom:540.826184pt;}
.y29{bottom:548.340847pt;}
.yf9{bottom:549.013346pt;}
.y83{bottom:551.061006pt;}
.y52{bottom:553.458578pt;}
.ycb{bottom:559.567075pt;}
.y119{bottom:563.724274pt;}
.ya9{bottom:563.851774pt;}
.y28{bottom:568.328973pt;}
.y82{bottom:569.449132pt;}
.y51{bottom:570.727905pt;}
.yf8{bottom:571.880270pt;}
.yca{bottom:582.592666pt;}
.y50{bottom:584.160166pt;}
.y118{bottom:586.749864pt;}
.ya8{bottom:586.877365pt;}
.y81{bottom:587.838458pt;}
.y27{bottom:591.354563pt;}
.yf7{bottom:594.906528pt;}
.y4f{bottom:602.388292pt;}
.yc9{bottom:605.619590pt;}
.y80{bottom:606.227784pt;}
.y117{bottom:609.616122pt;}
.ya7{bottom:609.743623pt;}
.y26{bottom:614.380821pt;}
.yf6{bottom:617.932119pt;}
.y4e{bottom:620.777618pt;}
.y7f{bottom:623.497110pt;}
.yc8{bottom:628.484648pt;}
.y116{bottom:632.643046pt;}
.ya6{bottom:632.770547pt;}
.y7e{bottom:636.928972pt;}
.y25{bottom:637.247745pt;}
.y4d{bottom:638.046945pt;}
.yf5{bottom:640.958376pt;}
.y4c{bottom:651.505899pt;}
.yc7{bottom:651.538372pt;}
.y7d{bottom:654.224565pt;}
.y115{bottom:655.694903pt;}
.ya5{bottom:655.822404pt;}
.y24{bottom:660.299602pt;}
.yf4{bottom:663.850900pt;}
.y7c{bottom:667.496266pt;}
.y4b{bottom:669.895225pt;}
.yc6{bottom:674.563963pt;}
.y114{bottom:678.721828pt;}
.ya4{bottom:678.849328pt;}
.y23{bottom:683.326527pt;}
.y7b{bottom:685.883726pt;}
.yf3{bottom:686.877158pt;}
.y4a{bottom:687.164552pt;}
.yc5{bottom:697.589553pt;}
.y49{bottom:700.437053pt;}
.y113{bottom:701.586885pt;}
.ya3{bottom:701.714386pt;}
.y7a{bottom:703.154385pt;}
.y22{bottom:706.351584pt;}
.yf2{bottom:709.902748pt;}
.y79{bottom:716.586007pt;}
.y48{bottom:717.705846pt;}
.yc4{bottom:720.455811pt;}
.y112{bottom:724.613809pt;}
.ya2{bottom:724.740643pt;}
.y21{bottom:729.218508pt;}
.y47{bottom:731.138507pt;}
.yf1{bottom:732.929673pt;}
.y78{bottom:734.975333pt;}
.yc3{bottom:743.481402pt;}
.y111{bottom:747.639400pt;}
.ya1{bottom:747.766901pt;}
.y46{bottom:749.527833pt;}
.y20{bottom:752.243566pt;}
.y77{bottom:753.364659pt;}
.yf0{bottom:755.795930pt;}
.yc2{bottom:766.508326pt;}
.y45{bottom:766.797160pt;}
.y76{bottom:770.633985pt;}
.y110{bottom:770.665657pt;}
.ya0{bottom:770.793158pt;}
.y1f{bottom:774.310490pt;}
.yef{bottom:778.821521pt;}
.y44{bottom:780.228341pt;}
.y75{bottom:784.065846pt;}
.yc1{bottom:789.533383pt;}
.y10f{bottom:793.531248pt;}
.y9f{bottom:793.658749pt;}
.y1e{bottom:794.458615pt;}
.y43{bottom:798.615800pt;}
.y74{bottom:801.335173pt;}
.yee{bottom:801.847778pt;}
.yc0{bottom:812.400307pt;}
.y73{bottom:814.607674pt;}
.y10e{bottom:816.557506pt;}
.y9e{bottom:816.685007pt;}
.y42{bottom:817.005126pt;}
.y1d{bottom:817.324873pt;}
.yed{bottom:824.713369pt;}
.y72{bottom:832.996467pt;}
.y41{bottom:835.394452pt;}
.ybf{bottom:835.425365pt;}
.y1c{bottom:839.431797pt;}
.y10d{bottom:839.624430pt;}
.y9d{bottom:839.751931pt;}
.yec{bottom:847.779627pt;}
.y71{bottom:850.305793pt;}
.y40{bottom:853.822578pt;}
.ybe{bottom:858.492289pt;}
.y1b{bottom:859.579923pt;}
.y10c{bottom:862.490021pt;}
.y9c{bottom:862.617521pt;}
.y70{bottom:863.737388pt;}
.yeb{bottom:870.805217pt;}
.y3f{bottom:871.091905pt;}
.ybd{bottom:881.358546pt;}
.y6f{bottom:882.124847pt;}
.y1a{bottom:882.604980pt;}
.y3e{bottom:884.363779pt;}
.y10b{bottom:885.516278pt;}
.y9b{bottom:885.643779pt;}
.yea{bottom:893.832141pt;}
.y6e{bottom:900.514173pt;}
.y3d{bottom:901.633106pt;}
.ybc{bottom:904.384137pt;}
.y10a{bottom:908.541869pt;}
.y9a{bottom:908.669370pt;}
.y3c{bottom:915.224967pt;}
.y6d{bottom:918.903499pt;}
.ybb{bottom:927.411061pt;}
.y109{bottom:931.568126pt;}
.y99{bottom:931.695627pt;}
.y3b{bottom:933.454293pt;}
.y6c{bottom:937.291625pt;}
.yba{bottom:950.436119pt;}
.ye9{bottom:952.994518pt;}
.y18{bottom:957.439617pt;}
.ye8{bottom:971.383844pt;}
.y17{bottom:975.828943pt;}
.y3{bottom:984.336105pt;}
.y98{bottom:986.862805pt;}
.ye7{bottom:989.772636pt;}
.y16{bottom:994.218802pt;}
.y3a{bottom:994.378269pt;}
.y6a{bottom:994.410768pt;}
.y97{bottom:1005.091598pt;}
.yb9{bottom:1005.602763pt;}
.ye6{bottom:1008.161429pt;}
.y15{bottom:1011.807595pt;}
.y39{bottom:1012.607595pt;}
.y69{bottom:1012.640094pt;}
.y2{bottom:1013.758760pt;}
.y68{bottom:1048.804079pt;}
.y14{bottom:1048.931580pt;}
.y12{bottom:1071.478238pt;}
.h7{height:18.922267pt;}
.h12{height:28.562400pt;}
.h9{height:31.198930pt;}
.hf{height:33.678056pt;}
.h10{height:38.417998pt;}
.h5{height:38.690021pt;}
.hd{height:45.298835pt;}
.h6{height:46.596618pt;}
.h13{height:46.627849pt;}
.he{height:47.592448pt;}
.hb{height:47.929431pt;}
.hc{height:53.126468pt;}
.h8{height:57.340074pt;}
.h11{height:57.342794pt;}
.h4{height:57.746077pt;}
.h3{height:86.619356pt;}
.h2{height:125.309665pt;}
.h1{height:1121.880000pt;}
.ha{height:1122.080000pt;}
.h0{height:1122.666667pt;}
.w1{width:793.280000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.xc{left:101.410626pt;}
.x1c{left:109.399156pt;}
.xe{left:113.077155pt;}
.x12{left:116.921153pt;}
.x15{left:135.145293pt;}
.x18{left:144.099942pt;}
.x13{left:154.493352pt;}
.xb{left:156.411804pt;}
.x1f{left:165.847134pt;}
.x6{left:168.564066pt;}
.x9{left:170.364012pt;}
.x17{left:179.158595pt;}
.x2{left:184.754593pt;}
.x8{left:204.902638pt;}
.xa{left:235.116199pt;}
.x7{left:256.551964pt;}
.xd{left:271.742558pt;}
.x11{left:285.359886pt;}
.x21{left:289.518551pt;}
.x20{left:290.957750pt;}
.x1e{left:294.314549pt;}
.x1d{left:301.030013pt;}
.x10{left:303.749612pt;}
.x3{left:326.935869pt;}
.x1{left:335.890532pt;}
.x5{left:364.353321pt;}
.x16{left:373.466251pt;}
.x19{left:387.218685pt;}
.xf{left:392.175843pt;}
.x14{left:393.934790pt;}
.x4{left:395.893308pt;}
.x1b{left:481.921141pt;}
.x1a{left:676.097063pt;}
}




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