
    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_2f8a7f44eceff879a69be45d.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.861816;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_50e8c47cce3d61efcff70705.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.871094;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_fc9b70e0dc8a0cb6b12976f0.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.871094;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_a7b9da6059c4308d1a5961fd.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284668;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(0.250187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250187,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-7.200000px;}
.v3{vertical-align:-5.040000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:7.200000px;}
.v5{vertical-align:9.595813px;}
.v4{vertical-align:12.240000px;}
.ls19{letter-spacing:-0.399600px;}
.ls12{letter-spacing:-0.360000px;}
.ls1c{letter-spacing:-0.324000px;}
.ls16{letter-spacing:-0.309600px;}
.ls27{letter-spacing:-0.292200px;}
.ls24{letter-spacing:-0.277774px;}
.ls10{letter-spacing:-0.252000px;}
.ls15{letter-spacing:-0.244800px;}
.ls11{letter-spacing:-0.180000px;}
.ls26{letter-spacing:-0.176765px;}
.ls1e{letter-spacing:-0.111000px;}
.ls20{letter-spacing:-0.050504px;}
.lsf{letter-spacing:0.000000px;}
.ls22{letter-spacing:0.025252px;}
.ls6{letter-spacing:0.027360px;}
.ls0{letter-spacing:0.036000px;}
.ls1f{letter-spacing:0.075000px;}
.ls21{letter-spacing:0.075756px;}
.ls1d{letter-spacing:0.112200px;}
.ls4{letter-spacing:0.157200px;}
.ls1{letter-spacing:0.180000px;}
.ls3{letter-spacing:0.181440px;}
.ls23{letter-spacing:0.202017px;}
.ls5{letter-spacing:0.207360px;}
.ls1a{letter-spacing:0.236400px;}
.lse{letter-spacing:0.272400px;}
.ls2{letter-spacing:0.273600px;}
.ls18{letter-spacing:0.276600px;}
.ls13{letter-spacing:0.288000px;}
.ls1b{letter-spacing:0.301200px;}
.lsb{letter-spacing:0.306600px;}
.ls17{letter-spacing:0.312600px;}
.ls9{letter-spacing:0.324000px;}
.ls25{letter-spacing:0.328278px;}
.ls7{letter-spacing:0.332640px;}
.ls28{letter-spacing:0.427800px;}
.ls14{letter-spacing:0.468000px;}
.ls8{letter-spacing:4.347360px;}
.lsa{letter-spacing:5.067360px;}
.lsd{letter-spacing:10.981440px;}
.lsc{letter-spacing:17.461440px;}
.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;}
}
.ws61{word-spacing:-9.865560px;}
.ws3e{word-spacing:-9.750360px;}
.ws60{word-spacing:-9.744360px;}
.ws31{word-spacing:-9.711360px;}
.ws62{word-spacing:-9.710160px;}
.ws3d{word-spacing:-9.470304px;}
.ws2a{word-spacing:-9.437760px;}
.ws63{word-spacing:-9.145560px;}
.ws0{word-spacing:-8.136000px;}
.ws59{word-spacing:-6.641313px;}
.ws56{word-spacing:-6.515052px;}
.ws53{word-spacing:-6.388792px;}
.ws54{word-spacing:-6.338287px;}
.ws55{word-spacing:-6.313035px;}
.ws52{word-spacing:-6.262531px;}
.ws5a{word-spacing:-6.136270px;}
.ws57{word-spacing:-6.035262px;}
.ws4f{word-spacing:-5.369760px;}
.ws58{word-spacing:-4.229734px;}
.ws50{word-spacing:-3.579840px;}
.ws7{word-spacing:-0.828000px;}
.ws4e{word-spacing:-0.577440px;}
.ws4c{word-spacing:-0.549000px;}
.ws27{word-spacing:-0.432000px;}
.ws3{word-spacing:-0.396000px;}
.ws8{word-spacing:-0.324000px;}
.ws1{word-spacing:-0.036000px;}
.ws7a{word-spacing:0.000000px;}
.ws4{word-spacing:0.036000px;}
.ws2{word-spacing:0.108000px;}
.ws6{word-spacing:0.216000px;}
.ws38{word-spacing:0.434880px;}
.ws37{word-spacing:0.559440px;}
.ws29{word-spacing:0.684000px;}
.ws26{word-spacing:0.828000px;}
.ws35{word-spacing:0.862560px;}
.ws5{word-spacing:0.864000px;}
.ws79{word-spacing:0.901440px;}
.ws6e{word-spacing:0.934200px;}
.ws41{word-spacing:1.082880px;}
.ws43{word-spacing:1.192320px;}
.wsc{word-spacing:1.332000px;}
.ws42{word-spacing:1.373760px;}
.ws4d{word-spacing:1.527840px;}
.ws1c{word-spacing:1.548000px;}
.ws28{word-spacing:1.584000px;}
.ws70{word-spacing:1.585920px;}
.ws32{word-spacing:1.611000px;}
.ws1b{word-spacing:1.800000px;}
.ws1a{word-spacing:1.872000px;}
.ws30{word-spacing:1.906560px;}
.ws6c{word-spacing:1.932480px;}
.ws4b{word-spacing:1.975680px;}
.ws9{word-spacing:2.016000px;}
.ws51{word-spacing:2.050560px;}
.wsd{word-spacing:2.052000px;}
.ws36{word-spacing:2.119440px;}
.ws6f{word-spacing:2.119680px;}
.wsf{word-spacing:2.124000px;}
.ws14{word-spacing:2.160000px;}
.ws13{word-spacing:2.196000px;}
.ws1d{word-spacing:2.232000px;}
.ws6d{word-spacing:2.247840px;}
.wsa{word-spacing:2.268000px;}
.wsb{word-spacing:2.340000px;}
.ws6b{word-spacing:2.374200px;}
.ws17{word-spacing:2.412000px;}
.ws15{word-spacing:2.448000px;}
.ws3c{word-spacing:2.476368px;}
.ws18{word-spacing:2.484000px;}
.ws39{word-spacing:2.511936px;}
.ws12{word-spacing:2.628000px;}
.ws3b{word-spacing:2.682576px;}
.ws34{word-spacing:2.719440px;}
.ws19{word-spacing:2.736000px;}
.ws16{word-spacing:2.916000px;}
.ws10{word-spacing:2.988000px;}
.ws11{word-spacing:3.024000px;}
.ws33{word-spacing:3.058560px;}
.ws3a{word-spacing:3.580704px;}
.ws44{word-spacing:3.605760px;}
.ws49{word-spacing:3.687840px;}
.ws45{word-spacing:3.840120px;}
.wse{word-spacing:3.924000px;}
.ws46{word-spacing:3.984480px;}
.ws48{word-spacing:4.370400px;}
.ws4a{word-spacing:4.540320px;}
.ws47{word-spacing:5.173920px;}
.ws20{word-spacing:5.256000px;}
.ws1e{word-spacing:5.508000px;}
.ws25{word-spacing:5.688000px;}
.ws22{word-spacing:5.940000px;}
.ws23{word-spacing:6.012000px;}
.ws40{word-spacing:6.210000px;}
.ws21{word-spacing:6.516000px;}
.ws24{word-spacing:6.588000px;}
.ws3f{word-spacing:6.762240px;}
.ws1f{word-spacing:6.804000px;}
.ws5d{word-spacing:7.581600px;}
.ws68{word-spacing:7.606080px;}
.ws69{word-spacing:7.925760px;}
.ws5b{word-spacing:8.017920px;}
.ws74{word-spacing:8.091000px;}
.ws78{word-spacing:8.118720px;}
.ws6a{word-spacing:8.134200px;}
.ws5f{word-spacing:8.202240px;}
.ws2d{word-spacing:8.357760px;}
.ws2b{word-spacing:8.565120px;}
.ws71{word-spacing:8.645760px;}
.ws72{word-spacing:8.743680px;}
.ws73{word-spacing:8.838720px;}
.ws5c{word-spacing:8.854200px;}
.ws2f{word-spacing:9.001920px;}
.ws75{word-spacing:9.254880px;}
.ws2c{word-spacing:9.447840px;}
.ws77{word-spacing:9.531360px;}
.ws5e{word-spacing:9.574200px;}
.ws2e{word-spacing:9.970560px;}
.ws76{word-spacing:10.213920px;}
.ws64{word-spacing:12.629160px;}
.ws67{word-spacing:13.737600px;}
.ws65{word-spacing:14.171040px;}
.ws66{word-spacing:15.334200px;}
._1{margin-left:-1.026000px;}
._0{width:1.422000px;}
._2{width:2.970000px;}
._6{width:7.074000px;}
._3{width:9.588000px;}
._4{width:11.196000px;}
._9{width:12.526560px;}
._8{width:13.770720px;}
._5{width:14.886000px;}
._a{width:17.357520px;}
._7{width:19.646640px;}
._b{width:22.509120px;}
._c{width:24.628320px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:15.840000px;}
.fs7{font-size:16.918934px;}
.fs4{font-size:23.760000px;}
.fs6{font-size:25.252140px;}
.fs1{font-size:36.000000px;}
.fs2{font-size:41.760000px;}
.fs3{font-size:41.904000px;}
.fs0{font-size:54.000000px;}
.y0{bottom:0.000000px;}
.y117{bottom:1.515154px;}
.y4c{bottom:1.578259px;}
.y49{bottom:1.578260px;}
.y7e{bottom:1.588780px;}
.y7b{bottom:1.588781px;}
.y40{bottom:1.704520px;}
.y2b{bottom:1.715042px;}
.y25{bottom:1.767650px;}
.y24{bottom:1.767651px;}
.y42{bottom:1.893910px;}
.y3e{bottom:1.893911px;}
.y31{bottom:1.904432px;}
.y33{bottom:1.904434px;}
.y28{bottom:1.957041px;}
.y35{bottom:1.957042px;}
.ycc{bottom:3.977213px;}
.yf5{bottom:3.989839px;}
.y22{bottom:10.111379px;}
.y20{bottom:34.956000px;}
.y1f{bottom:47.556000px;}
.y1e{bottom:60.192000px;}
.y1d{bottom:72.792000px;}
.y1c{bottom:97.992000px;}
.y116{bottom:123.272408px;}
.y115{bottom:131.050135px;}
.y114{bottom:131.050137px;}
.y113{bottom:131.050138px;}
.y112{bottom:131.050140px;}
.y111{bottom:131.050141px;}
.y110{bottom:131.050142px;}
.y10f{bottom:131.050143px;}
.y10e{bottom:131.050144px;}
.y10d{bottom:138.310126px;}
.y10c{bottom:138.310127px;}
.y10b{bottom:138.310129px;}
.y10a{bottom:138.310130px;}
.y109{bottom:138.310131px;}
.y108{bottom:138.310132px;}
.y107{bottom:138.310134px;}
.y106{bottom:138.310135px;}
.y105{bottom:145.570116px;}
.y104{bottom:145.570118px;}
.y103{bottom:145.570119px;}
.y102{bottom:145.570120px;}
.y101{bottom:145.570122px;}
.y100{bottom:145.570123px;}
.yff{bottom:145.570124px;}
.yfe{bottom:145.570125px;}
.yfd{bottom:152.830107px;}
.yfc{bottom:152.830108px;}
.yfb{bottom:152.830109px;}
.yfa{bottom:152.830111px;}
.yf9{bottom:152.830112px;}
.yf8{bottom:152.830113px;}
.yf7{bottom:152.830114px;}
.yf6{bottom:152.830115px;}
.yf4{bottom:160.090097px;}
.yf3{bottom:160.090099px;}
.yf2{bottom:160.090100px;}
.yf1{bottom:160.090101px;}
.yf0{bottom:160.090102px;}
.yef{bottom:160.090104px;}
.yee{bottom:160.090105px;}
.yed{bottom:160.090106px;}
.yec{bottom:167.362713px;}
.yeb{bottom:167.362715px;}
.yea{bottom:167.362716px;}
.ye9{bottom:167.362718px;}
.ye8{bottom:167.362719px;}
.ye7{bottom:167.362720px;}
.ye6{bottom:167.362721px;}
.ye5{bottom:167.362722px;}
.ye4{bottom:174.622704px;}
.ye3{bottom:174.622705px;}
.ye2{bottom:174.622707px;}
.ye1{bottom:174.622708px;}
.ye0{bottom:174.622709px;}
.ydf{bottom:174.622710px;}
.yde{bottom:174.622712px;}
.ydd{bottom:174.622713px;}
.ydc{bottom:181.882694px;}
.ydb{bottom:181.882696px;}
.yda{bottom:181.882697px;}
.yd9{bottom:181.882698px;}
.yd8{bottom:181.882700px;}
.yd7{bottom:181.882701px;}
.yd6{bottom:181.882702px;}
.yd5{bottom:181.882703px;}
.yd4{bottom:189.142685px;}
.yd3{bottom:189.142686px;}
.yd2{bottom:189.142687px;}
.yd1{bottom:189.142689px;}
.yd0{bottom:189.142690px;}
.ycf{bottom:189.142691px;}
.yce{bottom:189.142692px;}
.ycd{bottom:189.142693px;}
.ycb{bottom:196.413197px;}
.yca{bottom:196.413198px;}
.yc9{bottom:196.413200px;}
.yc8{bottom:196.413201px;}
.yc7{bottom:196.413202px;}
.yc6{bottom:196.413203px;}
.yc5{bottom:196.413204px;}
.yc4{bottom:196.413206px;}
.yc3{bottom:203.673187px;}
.yc2{bottom:203.673189px;}
.yc1{bottom:203.673190px;}
.yc0{bottom:203.673191px;}
.ybf{bottom:203.673192px;}
.ybe{bottom:203.673194px;}
.ybd{bottom:203.673195px;}
.ybc{bottom:203.673196px;}
.ybb{bottom:210.933177px;}
.yba{bottom:210.933179px;}
.yb9{bottom:210.933180px;}
.yb8{bottom:210.933182px;}
.yb7{bottom:210.933183px;}
.yb6{bottom:210.933184px;}
.yb5{bottom:210.933185px;}
.yb4{bottom:210.933186px;}
.yb3{bottom:218.193168px;}
.yb2{bottom:218.193169px;}
.yb1{bottom:218.193171px;}
.yb0{bottom:218.193172px;}
.yaf{bottom:218.193173px;}
.yae{bottom:218.193174px;}
.yad{bottom:218.193176px;}
.yac{bottom:218.193177px;}
.yab{bottom:225.453158px;}
.yaa{bottom:225.453160px;}
.ya9{bottom:225.453161px;}
.ya8{bottom:225.453162px;}
.ya7{bottom:225.453164px;}
.ya6{bottom:225.453165px;}
.ya5{bottom:225.453166px;}
.ya4{bottom:225.453167px;}
.ya3{bottom:232.728931px;}
.ya2{bottom:232.728933px;}
.ya1{bottom:232.728934px;}
.ya0{bottom:232.728935px;}
.y9f{bottom:232.728937px;}
.y9e{bottom:232.728938px;}
.y9d{bottom:232.728939px;}
.y9c{bottom:232.728940px;}
.y9b{bottom:239.988922px;}
.y9a{bottom:239.988923px;}
.y99{bottom:239.988924px;}
.y98{bottom:239.988926px;}
.y97{bottom:239.988927px;}
.y96{bottom:239.988928px;}
.y95{bottom:239.988929px;}
.y94{bottom:239.988930px;}
.y93{bottom:247.248912px;}
.y92{bottom:247.248914px;}
.y91{bottom:247.248915px;}
.y90{bottom:247.248916px;}
.y8f{bottom:247.248917px;}
.y8e{bottom:247.248918px;}
.y8d{bottom:247.248920px;}
.y8c{bottom:247.248921px;}
.y8b{bottom:254.508902px;}
.y8a{bottom:254.508904px;}
.y89{bottom:254.508905px;}
.y88{bottom:254.508906px;}
.y87{bottom:254.508908px;}
.y86{bottom:254.508909px;}
.y85{bottom:254.508910px;}
.y84{bottom:254.508911px;}
.y83{bottom:261.768893px;}
.y82{bottom:261.768894px;}
.y81{bottom:261.768896px;}
.y80{bottom:261.768897px;}
.y7f{bottom:261.768898px;}
.y7d{bottom:261.768899px;}
.y7c{bottom:261.768900px;}
.y7a{bottom:261.768902px;}
.y79{bottom:269.039405px;}
.y78{bottom:269.039406px;}
.y77{bottom:269.039408px;}
.y76{bottom:269.039409px;}
.y75{bottom:269.039410px;}
.y74{bottom:269.039411px;}
.y73{bottom:269.039413px;}
.y72{bottom:269.039414px;}
.y71{bottom:276.299395px;}
.y70{bottom:276.299397px;}
.y6f{bottom:276.299398px;}
.y6e{bottom:276.299399px;}
.y6d{bottom:276.299401px;}
.y6c{bottom:276.299402px;}
.y6b{bottom:276.299403px;}
.y6a{bottom:276.299404px;}
.y1b{bottom:276.375000px;}
.y69{bottom:283.559386px;}
.y68{bottom:283.559387px;}
.y67{bottom:283.559388px;}
.y66{bottom:283.559390px;}
.y65{bottom:283.559391px;}
.y64{bottom:283.559392px;}
.y63{bottom:283.559393px;}
.y62{bottom:283.559394px;}
.y1a{bottom:283.575000px;}
.y19{bottom:290.775000px;}
.y61{bottom:290.819376px;}
.y60{bottom:290.819378px;}
.y5f{bottom:290.819379px;}
.y5e{bottom:290.819380px;}
.y5d{bottom:290.819381px;}
.y5c{bottom:290.819382px;}
.y5b{bottom:290.819384px;}
.y5a{bottom:290.819385px;}
.y59{bottom:298.095149px;}
.y58{bottom:298.095151px;}
.y57{bottom:298.095152px;}
.y56{bottom:298.095153px;}
.y55{bottom:298.095154px;}
.y54{bottom:298.095155px;}
.y53{bottom:298.095157px;}
.y52{bottom:298.095158px;}
.y18{bottom:298.695000px;}
.y51{bottom:305.355139px;}
.y50{bottom:305.355141px;}
.y4f{bottom:305.355142px;}
.y4e{bottom:305.355143px;}
.y4d{bottom:305.355145px;}
.y4b{bottom:305.355146px;}
.y4a{bottom:305.355147px;}
.y48{bottom:305.355148px;}
.y47{bottom:312.615130px;}
.y46{bottom:312.615131px;}
.y45{bottom:312.615133px;}
.y44{bottom:312.615134px;}
.y43{bottom:312.615135px;}
.y41{bottom:312.615136px;}
.y3f{bottom:312.615137px;}
.y3d{bottom:312.615139px;}
.y3c{bottom:320.190772px;}
.y3b{bottom:320.190773px;}
.y3a{bottom:320.190775px;}
.y39{bottom:320.190776px;}
.y38{bottom:320.190777px;}
.y37{bottom:320.190778px;}
.y36{bottom:320.190780px;}
.y34{bottom:320.190781px;}
.y32{bottom:328.397718px;}
.y30{bottom:328.397719px;}
.y2f{bottom:328.397720px;}
.y2e{bottom:328.397722px;}
.y2d{bottom:328.397723px;}
.y2c{bottom:328.397724px;}
.y2a{bottom:328.397725px;}
.y21{bottom:328.397726px;}
.y29{bottom:336.552055px;}
.y27{bottom:336.552056px;}
.y26{bottom:336.552059px;}
.y23{bottom:336.552061px;}
.y17{bottom:374.430000px;}
.y16{bottom:387.030000px;}
.y15{bottom:399.630000px;}
.y11f{bottom:411.120000px;}
.y14{bottom:412.230000px;}
.y11e{bottom:423.720000px;}
.y13{bottom:424.875000px;}
.y11d{bottom:436.320000px;}
.y12{bottom:437.475000px;}
.y11c{bottom:448.920000px;}
.y11{bottom:450.075000px;}
.y11b{bottom:461.520000px;}
.y10{bottom:462.675000px;}
.y11a{bottom:474.120000px;}
.yf{bottom:475.275000px;}
.y119{bottom:486.720000px;}
.ye{bottom:487.875000px;}
.y118{bottom:511.920000px;}
.yd{bottom:513.075000px;}
.yc{bottom:553.110000px;}
.yb{bottom:563.910000px;}
.ya{bottom:574.710000px;}
.y9{bottom:585.510000px;}
.y8{bottom:596.310000px;}
.y7{bottom:607.110000px;}
.y6{bottom:617.910000px;}
.y5{bottom:642.885000px;}
.y4{bottom:653.685000px;}
.y3{bottom:664.485000px;}
.y2{bottom:676.545000px;}
.y1{bottom:692.745000px;}
.h10{height:7.259991px;}
.hf{height:7.259992px;}
.h12{height:7.272617px;}
.h11{height:7.272618px;}
.he{height:7.575642px;}
.hd{height:7.575644px;}
.hc{height:7.588269px;}
.hb{height:7.638773px;}
.ha{height:7.638775px;}
.h8{height:15.795215px;}
.h15{height:16.605009px;}
.h7{height:18.175078px;}
.h3{height:24.609375px;}
.h9{height:24.783595px;}
.h2{height:24.943359px;}
.h13{height:26.200822px;}
.h16{height:26.251326px;}
.h14{height:26.263952px;}
.h4{height:28.546875px;}
.h5{height:28.934297px;}
.h6{height:29.034070px;}
.h1{height:36.914062px;}
.h17{height:221.423472px;}
.h0{height:810.000000px;}
.w6{width:6.191399px;}
.w8{width:6.772632px;}
.w4{width:7.454949px;}
.w2d{width:12.414386px;}
.w2c{width:12.414388px;}
.w2b{width:12.414389px;}
.w2a{width:12.414390px;}
.w29{width:12.414392px;}
.w28{width:12.414393px;}
.w27{width:12.414394px;}
.w26{width:12.414396px;}
.w25{width:12.414397px;}
.w24{width:12.414398px;}
.w23{width:12.414400px;}
.w22{width:12.414401px;}
.w21{width:12.414402px;}
.w20{width:12.414404px;}
.w1f{width:12.414405px;}
.w1e{width:12.414406px;}
.w1d{width:12.414408px;}
.w1c{width:12.414409px;}
.w1b{width:12.414410px;}
.w1a{width:12.414412px;}
.w19{width:12.414413px;}
.w18{width:12.414414px;}
.w17{width:12.414416px;}
.w16{width:12.414417px;}
.w15{width:12.414418px;}
.w14{width:12.414420px;}
.w13{width:12.414421px;}
.wa{width:12.414424px;}
.w9{width:19.648212px;}
.wc{width:20.469519px;}
.we{width:22.377481px;}
.w10{width:22.428023px;}
.wb{width:25.599535px;}
.wd{width:26.168132px;}
.wf{width:27.684393px;}
.w11{width:31.538222px;}
.w12{width:32.296352px;}
.w2{width:32.296354px;}
.w3{width:46.069053px;}
.w5{width:48.545612px;}
.w7{width:50.112414px;}
.w2e{width:229.297603px;}
.w1{width:1079.999984px;}
.w0{width:1080.000000px;}
.x1d{left:-1.516260px;}
.x0{left:0.000000px;}
.xb{left:2.842990px;}
.x1e{left:4.611960px;}
.x19{left:6.001866px;}
.x20{left:7.454949px;}
.x1f{left:8.465789px;}
.x17{left:9.982050px;}
.x1b{left:10.992890px;}
.x10{left:12.330148px;}
.x21{left:13.346253px;}
.x25{left:14.730894px;}
.xd{left:16.362980px;}
.x23{left:17.626531px;}
.x13{left:19.026966px;}
.x22{left:22.757599px;}
.x24{left:24.839298px;}
.x6{left:308.729984px;}
.x7{left:316.004984px;}
.x9{left:320.969984px;}
.x8{left:325.829984px;}
.x1{left:369.689984px;}
.x3{left:386.249984px;}
.xa{left:526.139959px;}
.x2{left:553.679984px;}
.xc{left:558.436310px;}
.x18{left:584.036898px;}
.x4{left:585.719984px;}
.xe{left:604.506414px;}
.xf{left:611.961362px;}
.x5{left:615.959984px;}
.x1a{left:638.127389px;}
.x11{left:660.508025px;}
.x12{left:666.699423px;}
.x26{left:679.784984px;}
.x1c{left:694.381710px;}
.x14{left:716.809730px;}
.x15{left:723.580255px;}
.x16{left:743.228465px;}
@media print{
.v2{vertical-align:-6.400000pt;}
.v3{vertical-align:-4.480000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:6.400000pt;}
.v5{vertical-align:8.529612pt;}
.v4{vertical-align:10.880000pt;}
.ls19{letter-spacing:-0.355200pt;}
.ls12{letter-spacing:-0.320000pt;}
.ls1c{letter-spacing:-0.288000pt;}
.ls16{letter-spacing:-0.275200pt;}
.ls27{letter-spacing:-0.259733pt;}
.ls24{letter-spacing:-0.246910pt;}
.ls10{letter-spacing:-0.224000pt;}
.ls15{letter-spacing:-0.217600pt;}
.ls11{letter-spacing:-0.160000pt;}
.ls26{letter-spacing:-0.157124pt;}
.ls1e{letter-spacing:-0.098667pt;}
.ls20{letter-spacing:-0.044893pt;}
.lsf{letter-spacing:0.000000pt;}
.ls22{letter-spacing:0.022446pt;}
.ls6{letter-spacing:0.024320pt;}
.ls0{letter-spacing:0.032000pt;}
.ls1f{letter-spacing:0.066667pt;}
.ls21{letter-spacing:0.067339pt;}
.ls1d{letter-spacing:0.099733pt;}
.ls4{letter-spacing:0.139733pt;}
.ls1{letter-spacing:0.160000pt;}
.ls3{letter-spacing:0.161280pt;}
.ls23{letter-spacing:0.179571pt;}
.ls5{letter-spacing:0.184320pt;}
.ls1a{letter-spacing:0.210133pt;}
.lse{letter-spacing:0.242133pt;}
.ls2{letter-spacing:0.243200pt;}
.ls18{letter-spacing:0.245867pt;}
.ls13{letter-spacing:0.256000pt;}
.ls1b{letter-spacing:0.267733pt;}
.lsb{letter-spacing:0.272533pt;}
.ls17{letter-spacing:0.277867pt;}
.ls9{letter-spacing:0.288000pt;}
.ls25{letter-spacing:0.291803pt;}
.ls7{letter-spacing:0.295680pt;}
.ls28{letter-spacing:0.380267pt;}
.ls14{letter-spacing:0.416000pt;}
.ls8{letter-spacing:3.864320pt;}
.lsa{letter-spacing:4.504320pt;}
.lsd{letter-spacing:9.761280pt;}
.lsc{letter-spacing:15.521280pt;}
.ws61{word-spacing:-8.769387pt;}
.ws3e{word-spacing:-8.666987pt;}
.ws60{word-spacing:-8.661653pt;}
.ws31{word-spacing:-8.632320pt;}
.ws62{word-spacing:-8.631253pt;}
.ws3d{word-spacing:-8.418048pt;}
.ws2a{word-spacing:-8.389120pt;}
.ws63{word-spacing:-8.129387pt;}
.ws0{word-spacing:-7.232000pt;}
.ws59{word-spacing:-5.903389pt;}
.ws56{word-spacing:-5.791158pt;}
.ws53{word-spacing:-5.678926pt;}
.ws54{word-spacing:-5.634033pt;}
.ws55{word-spacing:-5.611587pt;}
.ws52{word-spacing:-5.566694pt;}
.ws5a{word-spacing:-5.454462pt;}
.ws57{word-spacing:-5.364677pt;}
.ws4f{word-spacing:-4.773120pt;}
.ws58{word-spacing:-3.759763pt;}
.ws50{word-spacing:-3.182080pt;}
.ws7{word-spacing:-0.736000pt;}
.ws4e{word-spacing:-0.513280pt;}
.ws4c{word-spacing:-0.488000pt;}
.ws27{word-spacing:-0.384000pt;}
.ws3{word-spacing:-0.352000pt;}
.ws8{word-spacing:-0.288000pt;}
.ws1{word-spacing:-0.032000pt;}
.ws7a{word-spacing:0.000000pt;}
.ws4{word-spacing:0.032000pt;}
.ws2{word-spacing:0.096000pt;}
.ws6{word-spacing:0.192000pt;}
.ws38{word-spacing:0.386560pt;}
.ws37{word-spacing:0.497280pt;}
.ws29{word-spacing:0.608000pt;}
.ws26{word-spacing:0.736000pt;}
.ws35{word-spacing:0.766720pt;}
.ws5{word-spacing:0.768000pt;}
.ws79{word-spacing:0.801280pt;}
.ws6e{word-spacing:0.830400pt;}
.ws41{word-spacing:0.962560pt;}
.ws43{word-spacing:1.059840pt;}
.wsc{word-spacing:1.184000pt;}
.ws42{word-spacing:1.221120pt;}
.ws4d{word-spacing:1.358080pt;}
.ws1c{word-spacing:1.376000pt;}
.ws28{word-spacing:1.408000pt;}
.ws70{word-spacing:1.409707pt;}
.ws32{word-spacing:1.432000pt;}
.ws1b{word-spacing:1.600000pt;}
.ws1a{word-spacing:1.664000pt;}
.ws30{word-spacing:1.694720pt;}
.ws6c{word-spacing:1.717760pt;}
.ws4b{word-spacing:1.756160pt;}
.ws9{word-spacing:1.792000pt;}
.ws51{word-spacing:1.822720pt;}
.wsd{word-spacing:1.824000pt;}
.ws36{word-spacing:1.883947pt;}
.ws6f{word-spacing:1.884160pt;}
.wsf{word-spacing:1.888000pt;}
.ws14{word-spacing:1.920000pt;}
.ws13{word-spacing:1.952000pt;}
.ws1d{word-spacing:1.984000pt;}
.ws6d{word-spacing:1.998080pt;}
.wsa{word-spacing:2.016000pt;}
.wsb{word-spacing:2.080000pt;}
.ws6b{word-spacing:2.110400pt;}
.ws17{word-spacing:2.144000pt;}
.ws15{word-spacing:2.176000pt;}
.ws3c{word-spacing:2.201216pt;}
.ws18{word-spacing:2.208000pt;}
.ws39{word-spacing:2.232832pt;}
.ws12{word-spacing:2.336000pt;}
.ws3b{word-spacing:2.384512pt;}
.ws34{word-spacing:2.417280pt;}
.ws19{word-spacing:2.432000pt;}
.ws16{word-spacing:2.592000pt;}
.ws10{word-spacing:2.656000pt;}
.ws11{word-spacing:2.688000pt;}
.ws33{word-spacing:2.718720pt;}
.ws3a{word-spacing:3.182848pt;}
.ws44{word-spacing:3.205120pt;}
.ws49{word-spacing:3.278080pt;}
.ws45{word-spacing:3.413440pt;}
.wse{word-spacing:3.488000pt;}
.ws46{word-spacing:3.541760pt;}
.ws48{word-spacing:3.884800pt;}
.ws4a{word-spacing:4.035840pt;}
.ws47{word-spacing:4.599040pt;}
.ws20{word-spacing:4.672000pt;}
.ws1e{word-spacing:4.896000pt;}
.ws25{word-spacing:5.056000pt;}
.ws22{word-spacing:5.280000pt;}
.ws23{word-spacing:5.344000pt;}
.ws40{word-spacing:5.520000pt;}
.ws21{word-spacing:5.792000pt;}
.ws24{word-spacing:5.856000pt;}
.ws3f{word-spacing:6.010880pt;}
.ws1f{word-spacing:6.048000pt;}
.ws5d{word-spacing:6.739200pt;}
.ws68{word-spacing:6.760960pt;}
.ws69{word-spacing:7.045120pt;}
.ws5b{word-spacing:7.127040pt;}
.ws74{word-spacing:7.192000pt;}
.ws78{word-spacing:7.216640pt;}
.ws6a{word-spacing:7.230400pt;}
.ws5f{word-spacing:7.290880pt;}
.ws2d{word-spacing:7.429120pt;}
.ws2b{word-spacing:7.613440pt;}
.ws71{word-spacing:7.685120pt;}
.ws72{word-spacing:7.772160pt;}
.ws73{word-spacing:7.856640pt;}
.ws5c{word-spacing:7.870400pt;}
.ws2f{word-spacing:8.001707pt;}
.ws75{word-spacing:8.226560pt;}
.ws2c{word-spacing:8.398080pt;}
.ws77{word-spacing:8.472320pt;}
.ws5e{word-spacing:8.510400pt;}
.ws2e{word-spacing:8.862720pt;}
.ws76{word-spacing:9.079040pt;}
.ws64{word-spacing:11.225920pt;}
.ws67{word-spacing:12.211200pt;}
.ws65{word-spacing:12.596480pt;}
.ws66{word-spacing:13.630400pt;}
._1{margin-left:-0.912000pt;}
._0{width:1.264000pt;}
._2{width:2.640000pt;}
._6{width:6.288000pt;}
._3{width:8.522667pt;}
._4{width:9.952000pt;}
._9{width:11.134720pt;}
._8{width:12.240640pt;}
._5{width:13.232000pt;}
._a{width:15.428907pt;}
._7{width:17.463680pt;}
._b{width:20.008107pt;}
._c{width:21.891840pt;}
.fs5{font-size:14.080000pt;}
.fs7{font-size:15.039053pt;}
.fs4{font-size:21.120000pt;}
.fs6{font-size:22.446347pt;}
.fs1{font-size:32.000000pt;}
.fs2{font-size:37.120000pt;}
.fs3{font-size:37.248000pt;}
.fs0{font-size:48.000000pt;}
.y0{bottom:0.000000pt;}
.y117{bottom:1.346804pt;}
.y4c{bottom:1.402896pt;}
.y49{bottom:1.402897pt;}
.y7e{bottom:1.412249pt;}
.y7b{bottom:1.412250pt;}
.y40{bottom:1.515129pt;}
.y2b{bottom:1.524482pt;}
.y25{bottom:1.571244pt;}
.y24{bottom:1.571245pt;}
.y42{bottom:1.683476pt;}
.y3e{bottom:1.683477pt;}
.y31{bottom:1.692829pt;}
.y33{bottom:1.692830pt;}
.y28{bottom:1.739592pt;}
.y35{bottom:1.739593pt;}
.ycc{bottom:3.535300pt;}
.yf5{bottom:3.546523pt;}
.y22{bottom:8.987893pt;}
.y20{bottom:31.072000pt;}
.y1f{bottom:42.272000pt;}
.y1e{bottom:53.504000pt;}
.y1d{bottom:64.704000pt;}
.y1c{bottom:87.104000pt;}
.y116{bottom:109.575474pt;}
.y115{bottom:116.489009pt;}
.y114{bottom:116.489011pt;}
.y113{bottom:116.489012pt;}
.y112{bottom:116.489013pt;}
.y111{bottom:116.489014pt;}
.y110{bottom:116.489015pt;}
.y10f{bottom:116.489016pt;}
.y10e{bottom:116.489017pt;}
.y10d{bottom:122.942334pt;}
.y10c{bottom:122.942335pt;}
.y10b{bottom:122.942337pt;}
.y10a{bottom:122.942338pt;}
.y109{bottom:122.942339pt;}
.y108{bottom:122.942340pt;}
.y107{bottom:122.942341pt;}
.y106{bottom:122.942342pt;}
.y105{bottom:129.395659pt;}
.y104{bottom:129.395660pt;}
.y103{bottom:129.395661pt;}
.y102{bottom:129.395663pt;}
.y101{bottom:129.395664pt;}
.y100{bottom:129.395665pt;}
.yff{bottom:129.395666pt;}
.yfe{bottom:129.395667pt;}
.yfd{bottom:135.848984pt;}
.yfc{bottom:135.848985pt;}
.yfb{bottom:135.848986pt;}
.yfa{bottom:135.848987pt;}
.yf9{bottom:135.848988pt;}
.yf8{bottom:135.848989pt;}
.yf7{bottom:135.848991pt;}
.yf6{bottom:135.848992pt;}
.yf4{bottom:142.302308pt;}
.yf3{bottom:142.302310pt;}
.yf2{bottom:142.302311pt;}
.yf1{bottom:142.302312pt;}
.yf0{bottom:142.302313pt;}
.yef{bottom:142.302314pt;}
.yee{bottom:142.302315pt;}
.yed{bottom:142.302316pt;}
.yec{bottom:148.766856pt;}
.yeb{bottom:148.766858pt;}
.yea{bottom:148.766859pt;}
.ye9{bottom:148.766860pt;}
.ye8{bottom:148.766861pt;}
.ye7{bottom:148.766862pt;}
.ye6{bottom:148.766863pt;}
.ye5{bottom:148.766864pt;}
.ye4{bottom:155.220181pt;}
.ye3{bottom:155.220183pt;}
.ye2{bottom:155.220184pt;}
.ye1{bottom:155.220185pt;}
.ye0{bottom:155.220186pt;}
.ydf{bottom:155.220187pt;}
.yde{bottom:155.220188pt;}
.ydd{bottom:155.220189pt;}
.ydc{bottom:161.673506pt;}
.ydb{bottom:161.673507pt;}
.yda{bottom:161.673509pt;}
.yd9{bottom:161.673510pt;}
.yd8{bottom:161.673511pt;}
.yd7{bottom:161.673512pt;}
.yd6{bottom:161.673513pt;}
.yd5{bottom:161.673514pt;}
.yd4{bottom:168.126831pt;}
.yd3{bottom:168.126832pt;}
.yd2{bottom:168.126833pt;}
.yd1{bottom:168.126834pt;}
.yd0{bottom:168.126836pt;}
.ycf{bottom:168.126837pt;}
.yce{bottom:168.126838pt;}
.ycd{bottom:168.126839pt;}
.ycb{bottom:174.589508pt;}
.yca{bottom:174.589510pt;}
.yc9{bottom:174.589511pt;}
.yc8{bottom:174.589512pt;}
.yc7{bottom:174.589513pt;}
.yc6{bottom:174.589514pt;}
.yc5{bottom:174.589515pt;}
.yc4{bottom:174.589516pt;}
.yc3{bottom:181.042833pt;}
.yc2{bottom:181.042834pt;}
.yc1{bottom:181.042836pt;}
.yc0{bottom:181.042837pt;}
.ybf{bottom:181.042838pt;}
.ybe{bottom:181.042839pt;}
.ybd{bottom:181.042840pt;}
.ybc{bottom:181.042841pt;}
.ybb{bottom:187.496158pt;}
.yba{bottom:187.496159pt;}
.yb9{bottom:187.496160pt;}
.yb8{bottom:187.496161pt;}
.yb7{bottom:187.496162pt;}
.yb6{bottom:187.496164pt;}
.yb5{bottom:187.496165pt;}
.yb4{bottom:187.496166pt;}
.yb3{bottom:193.949483pt;}
.yb2{bottom:193.949484pt;}
.yb1{bottom:193.949485pt;}
.yb0{bottom:193.949486pt;}
.yaf{bottom:193.949487pt;}
.yae{bottom:193.949488pt;}
.yad{bottom:193.949489pt;}
.yac{bottom:193.949490pt;}
.yab{bottom:200.402807pt;}
.yaa{bottom:200.402809pt;}
.ya9{bottom:200.402810pt;}
.ya8{bottom:200.402811pt;}
.ya7{bottom:200.402812pt;}
.ya6{bottom:200.402813pt;}
.ya5{bottom:200.402814pt;}
.ya4{bottom:200.402815pt;}
.ya3{bottom:206.870161pt;}
.ya2{bottom:206.870162pt;}
.ya1{bottom:206.870164pt;}
.ya0{bottom:206.870165pt;}
.y9f{bottom:206.870166pt;}
.y9e{bottom:206.870167pt;}
.y9d{bottom:206.870168pt;}
.y9c{bottom:206.870169pt;}
.y9b{bottom:213.323486pt;}
.y9a{bottom:213.323487pt;}
.y99{bottom:213.323488pt;}
.y98{bottom:213.323489pt;}
.y97{bottom:213.323491pt;}
.y96{bottom:213.323492pt;}
.y95{bottom:213.323493pt;}
.y94{bottom:213.323494pt;}
.y93{bottom:219.776811pt;}
.y92{bottom:219.776812pt;}
.y91{bottom:219.776813pt;}
.y90{bottom:219.776814pt;}
.y8f{bottom:219.776815pt;}
.y8e{bottom:219.776816pt;}
.y8d{bottom:219.776818pt;}
.y8c{bottom:219.776819pt;}
.y8b{bottom:226.230135pt;}
.y8a{bottom:226.230137pt;}
.y89{bottom:226.230138pt;}
.y88{bottom:226.230139pt;}
.y87{bottom:226.230140pt;}
.y86{bottom:226.230141pt;}
.y85{bottom:226.230142pt;}
.y84{bottom:226.230143pt;}
.y83{bottom:232.683460pt;}
.y82{bottom:232.683462pt;}
.y81{bottom:232.683463pt;}
.y80{bottom:232.683464pt;}
.y7f{bottom:232.683465pt;}
.y7d{bottom:232.683466pt;}
.y7c{bottom:232.683467pt;}
.y7a{bottom:232.683468pt;}
.y79{bottom:239.146138pt;}
.y78{bottom:239.146139pt;}
.y77{bottom:239.146140pt;}
.y76{bottom:239.146141pt;}
.y75{bottom:239.146142pt;}
.y74{bottom:239.146143pt;}
.y73{bottom:239.146145pt;}
.y72{bottom:239.146146pt;}
.y71{bottom:245.599462pt;}
.y70{bottom:245.599464pt;}
.y6f{bottom:245.599465pt;}
.y6e{bottom:245.599466pt;}
.y6d{bottom:245.599467pt;}
.y6c{bottom:245.599468pt;}
.y6b{bottom:245.599469pt;}
.y6a{bottom:245.599470pt;}
.y1b{bottom:245.666667pt;}
.y69{bottom:252.052787pt;}
.y68{bottom:252.052789pt;}
.y67{bottom:252.052790pt;}
.y66{bottom:252.052791pt;}
.y65{bottom:252.052792pt;}
.y64{bottom:252.052793pt;}
.y63{bottom:252.052794pt;}
.y62{bottom:252.052795pt;}
.y1a{bottom:252.066667pt;}
.y19{bottom:258.466667pt;}
.y61{bottom:258.506112pt;}
.y60{bottom:258.506113pt;}
.y5f{bottom:258.506115pt;}
.y5e{bottom:258.506116pt;}
.y5d{bottom:258.506117pt;}
.y5c{bottom:258.506118pt;}
.y5b{bottom:258.506119pt;}
.y5a{bottom:258.506120pt;}
.y59{bottom:264.973466pt;}
.y58{bottom:264.973467pt;}
.y57{bottom:264.973468pt;}
.y56{bottom:264.973469pt;}
.y55{bottom:264.973470pt;}
.y54{bottom:264.973472pt;}
.y53{bottom:264.973473pt;}
.y52{bottom:264.973474pt;}
.y18{bottom:265.506667pt;}
.y51{bottom:271.426790pt;}
.y50{bottom:271.426792pt;}
.y4f{bottom:271.426793pt;}
.y4e{bottom:271.426794pt;}
.y4d{bottom:271.426795pt;}
.y4b{bottom:271.426796pt;}
.y4a{bottom:271.426797pt;}
.y48{bottom:271.426798pt;}
.y47{bottom:277.880115pt;}
.y46{bottom:277.880117pt;}
.y45{bottom:277.880118pt;}
.y44{bottom:277.880119pt;}
.y43{bottom:277.880120pt;}
.y41{bottom:277.880121pt;}
.y3f{bottom:277.880122pt;}
.y3d{bottom:277.880123pt;}
.y3c{bottom:284.614019pt;}
.y3b{bottom:284.614021pt;}
.y3a{bottom:284.614022pt;}
.y39{bottom:284.614023pt;}
.y38{bottom:284.614024pt;}
.y37{bottom:284.614025pt;}
.y36{bottom:284.614026pt;}
.y34{bottom:284.614027pt;}
.y32{bottom:291.909082pt;}
.y30{bottom:291.909084pt;}
.y2f{bottom:291.909085pt;}
.y2e{bottom:291.909086pt;}
.y2d{bottom:291.909087pt;}
.y2c{bottom:291.909088pt;}
.y2a{bottom:291.909089pt;}
.y21{bottom:291.909090pt;}
.y29{bottom:299.157382pt;}
.y27{bottom:299.157383pt;}
.y26{bottom:299.157386pt;}
.y23{bottom:299.157388pt;}
.y17{bottom:332.826667pt;}
.y16{bottom:344.026667pt;}
.y15{bottom:355.226667pt;}
.y11f{bottom:365.440000pt;}
.y14{bottom:366.426667pt;}
.y11e{bottom:376.640000pt;}
.y13{bottom:377.666667pt;}
.y11d{bottom:387.840000pt;}
.y12{bottom:388.866667pt;}
.y11c{bottom:399.040000pt;}
.y11{bottom:400.066667pt;}
.y11b{bottom:410.240000pt;}
.y10{bottom:411.266667pt;}
.y11a{bottom:421.440000pt;}
.yf{bottom:422.466667pt;}
.y119{bottom:432.640000pt;}
.ye{bottom:433.666667pt;}
.y118{bottom:455.040000pt;}
.yd{bottom:456.066667pt;}
.yc{bottom:491.653333pt;}
.yb{bottom:501.253333pt;}
.ya{bottom:510.853333pt;}
.y9{bottom:520.453333pt;}
.y8{bottom:530.053333pt;}
.y7{bottom:539.653333pt;}
.y6{bottom:549.253333pt;}
.y5{bottom:571.453333pt;}
.y4{bottom:581.053333pt;}
.y3{bottom:590.653333pt;}
.y2{bottom:601.373333pt;}
.y1{bottom:615.773333pt;}
.h10{height:6.453325pt;}
.hf{height:6.453326pt;}
.h12{height:6.464548pt;}
.h11{height:6.464549pt;}
.he{height:6.733904pt;}
.hd{height:6.733905pt;}
.hc{height:6.745128pt;}
.hb{height:6.790020pt;}
.ha{height:6.790022pt;}
.h8{height:14.040191pt;}
.h15{height:14.760008pt;}
.h7{height:16.155625pt;}
.h3{height:21.875000pt;}
.h9{height:22.029862pt;}
.h2{height:22.171875pt;}
.h13{height:23.289620pt;}
.h16{height:23.334512pt;}
.h14{height:23.345735pt;}
.h4{height:25.375000pt;}
.h5{height:25.719375pt;}
.h6{height:25.808062pt;}
.h1{height:32.812500pt;}
.h17{height:196.820864pt;}
.h0{height:720.000000pt;}
.w6{width:5.503466pt;}
.w8{width:6.020117pt;}
.w4{width:6.626622pt;}
.w2d{width:11.035010pt;}
.w2c{width:11.035011pt;}
.w2b{width:11.035013pt;}
.w2a{width:11.035014pt;}
.w29{width:11.035015pt;}
.w28{width:11.035016pt;}
.w27{width:11.035017pt;}
.w26{width:11.035019pt;}
.w25{width:11.035020pt;}
.w24{width:11.035021pt;}
.w23{width:11.035022pt;}
.w22{width:11.035023pt;}
.w21{width:11.035024pt;}
.w20{width:11.035026pt;}
.w1f{width:11.035027pt;}
.w1e{width:11.035028pt;}
.w1d{width:11.035029pt;}
.w1c{width:11.035030pt;}
.w1b{width:11.035032pt;}
.w1a{width:11.035033pt;}
.w19{width:11.035034pt;}
.w18{width:11.035035pt;}
.w17{width:11.035036pt;}
.w16{width:11.035037pt;}
.w15{width:11.035039pt;}
.w14{width:11.035040pt;}
.w13{width:11.035041pt;}
.wa{width:11.035044pt;}
.w9{width:17.465077pt;}
.wc{width:18.195128pt;}
.we{width:19.891094pt;}
.w10{width:19.936020pt;}
.wb{width:22.755142pt;}
.wd{width:23.260562pt;}
.wf{width:24.608349pt;}
.w11{width:28.033975pt;}
.w12{width:28.707869pt;}
.w2{width:28.707870pt;}
.w3{width:40.950269pt;}
.w5{width:43.151655pt;}
.w7{width:44.544368pt;}
.w2e{width:203.820091pt;}
.w1{width:959.999986pt;}
.w0{width:960.000000pt;}
.x1d{left:-1.347786pt;}
.x0{left:0.000000pt;}
.xb{left:2.527102pt;}
.x1e{left:4.099520pt;}
.x19{left:5.334992pt;}
.x20{left:6.626621pt;}
.x1f{left:7.525146pt;}
.x17{left:8.872933pt;}
.x1b{left:9.771458pt;}
.x10{left:10.960132pt;}
.x21{left:11.863336pt;}
.x25{left:13.094128pt;}
.xd{left:14.544871pt;}
.x23{left:15.668027pt;}
.x13{left:16.912858pt;}
.x22{left:20.228976pt;}
.x24{left:22.079376pt;}
.x6{left:274.426652pt;}
.x7{left:280.893319pt;}
.x9{left:285.306652pt;}
.x8{left:289.626652pt;}
.x1{left:328.613319pt;}
.x3{left:343.333319pt;}
.xa{left:467.679964pt;}
.x2{left:492.159986pt;}
.xc{left:496.387831pt;}
.x18{left:519.143909pt;}
.x4{left:520.639986pt;}
.xe{left:537.339035pt;}
.xf{left:543.965655pt;}
.x5{left:547.519986pt;}
.x1a{left:567.224346pt;}
.x11{left:587.118245pt;}
.x12{left:592.621709pt;}
.x26{left:604.253319pt;}
.x1c{left:617.228187pt;}
.x14{left:637.164204pt;}
.x15{left:643.182449pt;}
.x16{left:660.647524pt;}
}




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