
    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_99314d14f11f3fa5b41ac89d.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.138000;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_3e9e6097405cc463f08f02dd.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.723250;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_ef80e76fe5116abbc32d2b86.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.118000;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_cc20e9402a75f26cbbd057ab.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.941000;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_99314d14f11f3fa5b41ac89d.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.138000;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_97727d1cb95c968989049b65.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.723250;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_ef80e76fe5116abbc32d2b86.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.118000;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_cc20e9402a75f26cbbd057ab.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.941000;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_0fa09b64d7ad5d88248229f7.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.123047;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_1f2320ad499a574c78792211.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.935000;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_1f2320ad499a574c78792211.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.935000;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_2974981c37b06c8ecda41e54.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.952000;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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);}
.v2{vertical-align:-16.875000px;}
.v3{vertical-align:-3.600600px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:3.600360px;}
.v1{vertical-align:16.875600px;}
.lsa{letter-spacing:-1.872000px;}
.ls1b{letter-spacing:-1.632000px;}
.ls1c{letter-spacing:-1.608000px;}
.lsf{letter-spacing:-1.584000px;}
.ls24{letter-spacing:-1.536000px;}
.ls1e{letter-spacing:-1.488000px;}
.ls1f{letter-spacing:-1.473600px;}
.ls1d{letter-spacing:-1.348800px;}
.ls9{letter-spacing:-1.344000px;}
.lsb{letter-spacing:-1.339200px;}
.ls2d{letter-spacing:-1.224000px;}
.ls2e{letter-spacing:-1.209600px;}
.ls30{letter-spacing:-1.206000px;}
.ls2f{letter-spacing:-1.188000px;}
.ls15{letter-spacing:-1.075200px;}
.ls19{letter-spacing:-1.070400px;}
.ls14{letter-spacing:-1.056000px;}
.ls2b{letter-spacing:-1.008000px;}
.ls2c{letter-spacing:-1.004400px;}
.ls11{letter-spacing:-0.816000px;}
.ls2a{letter-spacing:-0.811200px;}
.ls12{letter-spacing:-0.806400px;}
.ls21{letter-spacing:-0.765000px;}
.ls23{letter-spacing:-0.760500px;}
.ls22{letter-spacing:-0.756000px;}
.lsd{letter-spacing:-0.542400px;}
.ls1a{letter-spacing:-0.537600px;}
.lse{letter-spacing:-0.528000px;}
.ls20{letter-spacing:-0.498000px;}
.ls2{letter-spacing:-0.072000px;}
.ls1{letter-spacing:-0.018000px;}
.ls16{letter-spacing:-0.014400px;}
.ls6{letter-spacing:-0.010080px;}
.ls3{letter-spacing:-0.009678px;}
.ls13{letter-spacing:-0.009600px;}
.lsc{letter-spacing:-0.009000px;}
.ls5{letter-spacing:-0.008712px;}
.ls29{letter-spacing:-0.008700px;}
.ls25{letter-spacing:-0.008400px;}
.ls26{letter-spacing:-0.006300px;}
.ls10{letter-spacing:-0.004800px;}
.ls17{letter-spacing:-0.004500px;}
.ls27{letter-spacing:-0.004200px;}
.ls28{letter-spacing:-0.003150px;}
.ls4{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.000120px;}
.ls8{letter-spacing:0.528000px;}
.ls18{letter-spacing:14.659800px;}
.ls7{letter-spacing:16.383000px;}
.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;}
}
.ws25{word-spacing:-30.024000px;}
.ws1{word-spacing:-24.459552px;}
.ws0{word-spacing:-24.449874px;}
.ws4{word-spacing:-22.017600px;}
.ws11{word-spacing:-13.344000px;}
.ws14{word-spacing:-13.334400px;}
.ws10{word-spacing:-12.801600px;}
.ws15{word-spacing:-12.537600px;}
.ws26{word-spacing:-12.532800px;}
.ws19{word-spacing:-12.273600px;}
.ws16{word-spacing:-12.268800px;}
.ws1b{word-spacing:-12.004800px;}
.ws1a{word-spacing:-12.000000px;}
.ws1e{word-spacing:-11.676000px;}
.ws21{word-spacing:-11.671800px;}
.ws20{word-spacing:-11.667600px;}
.ws22{word-spacing:-8.753850px;}
.ws1f{word-spacing:-8.750700px;}
.ws17{word-spacing:-6.672000px;}
.ws30{word-spacing:-1.440000px;}
.ws3a{word-spacing:-0.468000px;}
.ws2d{word-spacing:-0.240000px;}
.ws2b{word-spacing:-0.048000px;}
.ws6{word-spacing:0.000000px;}
.ws31{word-spacing:0.480000px;}
.ws2a{word-spacing:0.864000px;}
.ws29{word-spacing:0.912000px;}
.ws3b{word-spacing:1.008000px;}
.ws24{word-spacing:1.167600px;}
.ws23{word-spacing:1.176000px;}
.wsf{word-spacing:1.251000px;}
.ws18{word-spacing:1.260000px;}
.ws9{word-spacing:1.315200px;}
.ws1c{word-spacing:1.320480px;}
.ws12{word-spacing:1.325400px;}
.wsc{word-spacing:1.334400px;}
.ws13{word-spacing:1.336800px;}
.wsa{word-spacing:1.344000px;}
.ws1d{word-spacing:1.384800px;}
.ws8{word-spacing:1.401118px;}
.ws27{word-spacing:1.680000px;}
.ws7{word-spacing:1.814400px;}
.ws2f{word-spacing:1.872000px;}
.wse{word-spacing:2.352000px;}
.ws2e{word-spacing:2.496000px;}
.ws33{word-spacing:2.544000px;}
.ws32{word-spacing:2.592000px;}
.ws39{word-spacing:2.664000px;}
.ws37{word-spacing:2.700000px;}
.ws38{word-spacing:2.703600px;}
.ws36{word-spacing:2.840400px;}
.ws35{word-spacing:2.844000px;}
.wsb{word-spacing:3.024000px;}
.ws2c{word-spacing:3.072000px;}
.ws34{word-spacing:3.460800px;}
.ws28{word-spacing:4.704000px;}
.wsd{word-spacing:10.080000px;}
.ws3{word-spacing:44.181120px;}
.ws2{word-spacing:142.546812px;}
.ws5{word-spacing:152.815092px;}
._2{margin-left:-8.772192px;}
._5{margin-left:-6.885000px;}
._4{margin-left:-5.232000px;}
._6{margin-left:-4.115580px;}
._3{margin-left:-2.640000px;}
._0{margin-left:-1.166400px;}
._1{width:1.166400px;}
._7{width:2.575800px;}
._8{width:6.950400px;}
.fc6{color:rgb(145,143,143);}
.fc5{color:rgb(167,165,166);}
.fc4{color:rgb(101,98,99);}
.fc3{color:transparent;}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(255,255,255);}
.fs6{font-size:6.000000px;}
.fsc{font-size:24.000000px;}
.fse{font-size:31.500000px;}
.fs11{font-size:36.000000px;}
.fsd{font-size:42.000000px;}
.fsb{font-size:45.000000px;}
.fs8{font-size:48.000000px;}
.fs5{font-size:50.399940px;}
.fs7{font-size:54.000000px;}
.fs10{font-size:60.000000px;}
.fs4{font-size:64.800000px;}
.fs3{font-size:79.200000px;}
.fsa{font-size:84.000000px;}
.fsf{font-size:87.000000px;}
.fs2{font-size:87.984000px;}
.fs0{font-size:90.000000px;}
.fs9{font-size:108.000000px;}
.fs1{font-size:360.000000px;}
.y0{bottom:0.000000px;}
.ye{bottom:2.835093px;}
.yd{bottom:16.335093px;}
.yc{bottom:29.835093px;}
.yb{bottom:51.171387px;}
.y3b{bottom:85.633350px;}
.y60{bottom:85.774830px;}
.ydd{bottom:85.774950px;}
.ybb{bottom:86.311800px;}
.y6b{bottom:87.113130px;}
.y92{bottom:87.285810px;}
.y124{bottom:88.422210px;}
.y14b{bottom:90.705150px;}
.y14a{bottom:104.205150px;}
.y3a{bottom:106.633470px;}
.y5f{bottom:106.774830px;}
.ydc{bottom:106.774950px;}
.yba{bottom:107.311800px;}
.y123{bottom:107.674065px;}
.y6a{bottom:108.113130px;}
.y91{bottom:108.285810px;}
.y149{bottom:117.705150px;}
.y11d{bottom:118.422315px;}
.y122{bottom:126.926130px;}
.y39{bottom:127.633470px;}
.y5e{bottom:127.774830px;}
.ydb{bottom:127.774950px;}
.yb9{bottom:128.311800px;}
.y69{bottom:129.113130px;}
.y90{bottom:129.285810px;}
.y148{bottom:131.205150px;}
.y11c{bottom:133.422195px;}
.y121{bottom:146.178090px;}
.y38{bottom:148.633470px;}
.y5d{bottom:148.774830px;}
.yda{bottom:148.774950px;}
.yb8{bottom:149.311800px;}
.y68{bottom:150.113250px;}
.y8f{bottom:150.285810px;}
.y11b{bottom:152.674185px;}
.y120{bottom:165.430050px;}
.y37{bottom:169.633470px;}
.y5c{bottom:169.774830px;}
.yd9{bottom:169.774950px;}
.y67{bottom:171.113100px;}
.y8e{bottom:171.285810px;}
.y11a{bottom:171.926250px;}
.y36{bottom:190.633350px;}
.y5b{bottom:190.774830px;}
.yef{bottom:190.774950px;}
.y119{bottom:191.178165px;}
.yb7{bottom:191.311800px;}
.y66{bottom:192.113100px;}
.y8d{bottom:192.285810px;}
.y135{bottom:193.029765px;}
.y11f{bottom:198.430050px;}
.y134{bottom:204.879750px;}
.y118{bottom:206.178165px;}
.y35{bottom:211.633350px;}
.y5a{bottom:211.774950px;}
.y65{bottom:213.113100px;}
.y8c{bottom:213.285810px;}
.y133{bottom:216.729735px;}
.y117{bottom:221.178105px;}
.y132{bottom:228.579615px;}
.y34{bottom:232.633230px;}
.yd8{bottom:232.774860px;}
.y59{bottom:232.774950px;}
.y64{bottom:234.113100px;}
.y8b{bottom:234.285930px;}
.y131{bottom:240.429600px;}
.y116{bottom:240.430065px;}
.y130{bottom:252.279465px;}
.y33{bottom:253.633230px;}
.yd7{bottom:253.774860px;}
.yb6{bottom:254.311170px;}
.y63{bottom:255.113100px;}
.y8a{bottom:255.285930px;}
.y115{bottom:255.430050px;}
.y11e{bottom:255.430095px;}
.y12f{bottom:264.129450px;}
.y32{bottom:274.633230px;}
.y58{bottom:274.774950px;}
.yd6{bottom:274.774980px;}
.yb5{bottom:275.311050px;}
.y62{bottom:276.113100px;}
.y89{bottom:276.285930px;}
.y12e{bottom:287.829480px;}
.y114{bottom:289.682100px;}
.y31{bottom:295.633350px;}
.yee{bottom:295.774590px;}
.yd5{bottom:295.774980px;}
.yb4{bottom:296.311170px;}
.y88{bottom:297.285930px;}
.y12d{bottom:299.679360px;}
.y12c{bottom:311.529450px;}
.y30{bottom:316.633200px;}
.yed{bottom:316.774710px;}
.yd4{bottom:316.775100px;}
.yb3{bottom:317.311050px;}
.y87{bottom:318.285930px;}
.y12b{bottom:323.379315px;}
.y12a{bottom:335.229300px;}
.y2f{bottom:337.633200px;}
.y57{bottom:337.774470px;}
.yec{bottom:337.774710px;}
.yd3{bottom:337.775100px;}
.yb2{bottom:338.311050px;}
.y86{bottom:339.286050px;}
.y93{bottom:352.598550px;}
.y56{bottom:358.774470px;}
.yeb{bottom:358.774710px;}
.yd2{bottom:358.775100px;}
.y129{bottom:358.929465px;}
.yb1{bottom:359.311170px;}
.y85{bottom:360.285360px;}
.y10c{bottom:360.697980px;}
.yf1{bottom:360.886050px;}
.ybc{bottom:366.495300px;}
.y128{bottom:370.779450px;}
.y2e{bottom:379.633350px;}
.y55{bottom:379.774470px;}
.yea{bottom:379.774710px;}
.yd1{bottom:379.774950px;}
.yb0{bottom:380.311170px;}
.y10b{bottom:381.698100px;}
.y127{bottom:382.629450px;}
.y54{bottom:400.774470px;}
.ye9{bottom:400.774710px;}
.yd0{bottom:400.774950px;}
.yaf{bottom:401.311170px;}
.y84{bottom:402.285360px;}
.y10a{bottom:402.698100px;}
.y53{bottom:421.774590px;}
.ye8{bottom:421.774830px;}
.ycf{bottom:421.775100px;}
.yae{bottom:422.311170px;}
.y83{bottom:423.285360px;}
.y109{bottom:423.698100px;}
.y24{bottom:433.490700px;}
.y2d{bottom:442.632960px;}
.y52{bottom:442.774590px;}
.yce{bottom:442.774950px;}
.yad{bottom:443.311290px;}
.ya0{bottom:443.380950px;}
.y82{bottom:444.285360px;}
.y108{bottom:444.698220px;}
.y2c{bottom:463.632960px;}
.ye7{bottom:463.774230px;}
.y51{bottom:463.774590px;}
.ycd{bottom:463.774950px;}
.yac{bottom:464.311410px;}
.y9f{bottom:464.380950px;}
.y81{bottom:465.285480px;}
.y107{bottom:465.698220px;}
.y2b{bottom:484.632960px;}
.ye6{bottom:484.774350px;}
.ycc{bottom:484.774470px;}
.y50{bottom:484.774710px;}
.yab{bottom:485.311410px;}
.y9e{bottom:485.380950px;}
.y80{bottom:486.285480px;}
.y106{bottom:486.698220px;}
.y2a{bottom:505.633080px;}
.ye5{bottom:505.774470px;}
.ycb{bottom:505.774590px;}
.y4f{bottom:505.774830px;}
.y21{bottom:505.854000px;}
.y18{bottom:506.201250px;}
.yaa{bottom:506.311410px;}
.y9d{bottom:506.380980px;}
.y7f{bottom:507.285600px;}
.y105{bottom:507.698340px;}
.y29{bottom:526.633080px;}
.ye4{bottom:526.774470px;}
.yca{bottom:526.774590px;}
.y4e{bottom:526.774830px;}
.y20{bottom:526.854000px;}
.y17{bottom:527.201250px;}
.ya9{bottom:527.311530px;}
.y9c{bottom:527.380710px;}
.y7e{bottom:528.285720px;}
.y104{bottom:528.698340px;}
.y147{bottom:540.334860px;}
.y28{bottom:547.633200px;}
.ye3{bottom:547.774470px;}
.yc9{bottom:547.774590px;}
.y4d{bottom:547.774830px;}
.y1f{bottom:547.854000px;}
.y16{bottom:548.201250px;}
.ya8{bottom:548.311530px;}
.y9b{bottom:548.380710px;}
.y7d{bottom:549.285720px;}
.y103{bottom:549.698340px;}
.y146{bottom:561.334980px;}
.y27{bottom:568.633200px;}
.ye2{bottom:568.774590px;}
.yc8{bottom:568.774710px;}
.y4c{bottom:568.774950px;}
.y1e{bottom:568.854000px;}
.y15{bottom:569.201250px;}
.ya7{bottom:569.311530px;}
.y7c{bottom:570.285720px;}
.y102{bottom:570.698340px;}
.y145{bottom:582.335220px;}
.y9{bottom:584.691150px;}
.y26{bottom:589.633200px;}
.ye1{bottom:589.774590px;}
.yc7{bottom:589.774710px;}
.y4b{bottom:589.774950px;}
.y1d{bottom:589.854000px;}
.y14{bottom:590.201250px;}
.ya6{bottom:590.311530px;}
.y9a{bottom:590.380830px;}
.y113{bottom:591.153300px;}
.y7b{bottom:591.285840px;}
.y101{bottom:591.698340px;}
.y144{bottom:603.335220px;}
.ye0{bottom:610.774590px;}
.yc6{bottom:610.774710px;}
.y4a{bottom:610.774950px;}
.y1c{bottom:610.854000px;}
.y13{bottom:611.201130px;}
.ya5{bottom:611.311530px;}
.y99{bottom:611.380830px;}
.y112{bottom:612.153300px;}
.y7a{bottom:612.285840px;}
.y100{bottom:612.698340px;}
.y143{bottom:624.335220px;}
.ydf{bottom:631.774470px;}
.yc5{bottom:631.774590px;}
.y49{bottom:631.774830px;}
.y1b{bottom:631.854000px;}
.y12{bottom:632.201130px;}
.ya4{bottom:632.311530px;}
.y98{bottom:632.380830px;}
.y111{bottom:633.153330px;}
.y79{bottom:633.285840px;}
.yff{bottom:633.698340px;}
.y142{bottom:645.335340px;}
.y8{bottom:645.580599px;}
.yde{bottom:652.774470px;}
.yc4{bottom:652.774590px;}
.y48{bottom:652.774830px;}
.y1a{bottom:652.854000px;}
.y11{bottom:653.201250px;}
.ya3{bottom:653.311530px;}
.y97{bottom:653.380830px;}
.y110{bottom:654.153330px;}
.y78{bottom:654.285840px;}
.yfe{bottom:654.698340px;}
.y61{bottom:663.964650px;}
.y7{bottom:665.020599px;}
.y141{bottom:666.335340px;}
.yc3{bottom:673.774590px;}
.y47{bottom:673.774950px;}
.y19{bottom:673.854000px;}
.y10{bottom:674.201250px;}
.ya2{bottom:674.311650px;}
.y96{bottom:674.380830px;}
.y10f{bottom:675.153330px;}
.y77{bottom:675.285840px;}
.yfd{bottom:675.698340px;}
.y6{bottom:686.210685px;}
.y140{bottom:687.335340px;}
.yc2{bottom:694.774590px;}
.y46{bottom:694.774950px;}
.ya1{bottom:695.311650px;}
.y95{bottom:695.380950px;}
.y10e{bottom:696.153330px;}
.y76{bottom:696.285960px;}
.yfc{bottom:696.698340px;}
.y13f{bottom:708.335340px;}
.yc1{bottom:715.774590px;}
.y45{bottom:715.774950px;}
.yf{bottom:716.201250px;}
.y10d{bottom:717.153450px;}
.y75{bottom:717.285960px;}
.yfb{bottom:717.698340px;}
.y5{bottom:727.660473px;}
.y13e{bottom:729.335340px;}
.yc0{bottom:736.774590px;}
.y44{bottom:736.774830px;}
.y74{bottom:738.285960px;}
.yfa{bottom:738.698340px;}
.y4{bottom:748.850235px;}
.y13d{bottom:750.335460px;}
.ybf{bottom:757.774710px;}
.y43{bottom:757.774950px;}
.y73{bottom:759.286080px;}
.yf9{bottom:759.698460px;}
.ybd{bottom:769.771050px;}
.y13c{bottom:771.335460px;}
.yf0{bottom:777.919500px;}
.ybe{bottom:778.774710px;}
.y42{bottom:778.774950px;}
.y72{bottom:780.286080px;}
.yf8{bottom:780.698460px;}
.y13b{bottom:792.335460px;}
.y41{bottom:799.774710px;}
.y71{bottom:801.286080px;}
.yf7{bottom:801.698460px;}
.y13a{bottom:813.335580px;}
.y23{bottom:814.924500px;}
.y40{bottom:820.774830px;}
.y70{bottom:822.286200px;}
.yf6{bottom:822.698580px;}
.y139{bottom:834.335580px;}
.y3f{bottom:841.774830px;}
.y6f{bottom:843.286200px;}
.yf5{bottom:843.698580px;}
.y22{bottom:844.924500px;}
.y94{bottom:853.969200px;}
.y138{bottom:855.335580px;}
.y3e{bottom:862.774830px;}
.y6e{bottom:864.286200px;}
.yf4{bottom:864.698580px;}
.y137{bottom:876.335700px;}
.y3d{bottom:883.774950px;}
.y6d{bottom:885.286200px;}
.yf3{bottom:885.698700px;}
.y3{bottom:895.593015px;}
.y136{bottom:897.335700px;}
.y3c{bottom:904.774950px;}
.y6c{bottom:906.286200px;}
.yf2{bottom:906.698700px;}
.y1{bottom:929.113770px;}
.y2{bottom:943.410915px;}
.y126{bottom:943.581600px;}
.y125{bottom:964.862850px;}
.y25{bottom:2541.731850px;}
.ya{bottom:2541.731880px;}
.h15{height:5.472000px;}
.h7{height:5.520000px;}
.h23{height:26.316000px;}
.h22{height:30.702000px;}
.h1b{height:38.304000px;}
.h1c{height:38.304180px;}
.h1e{height:38.304240px;}
.h1a{height:38.304420px;}
.h1f{height:38.304840px;}
.h1d{height:38.305260px;}
.h19{height:38.640000px;}
.hf{height:41.040000px;}
.h8{height:42.160515px;}
.h16{height:43.775880px;}
.hc{height:43.776000px;}
.h17{height:43.776360px;}
.hd{height:43.776480px;}
.h10{height:43.776600px;}
.h13{height:43.776960px;}
.h12{height:43.777440px;}
.h11{height:43.777920px;}
.h14{height:43.778760px;}
.h18{height:43.778880px;}
.ha{height:44.160000px;}
.h9{height:49.280273px;}
.h21{height:55.200000px;}
.h6{height:57.895200px;}
.h5{height:59.616000px;}
.he{height:77.280000px;}
.h20{height:80.040000px;}
.h4{height:80.945280px;}
.h2{height:82.800000px;}
.hb{height:99.360000px;}
.h3{height:257.760000px;}
.h0{height:1041.731964px;}
.h1{height:1041.750000px;}
.w2{width:628.776078px;}
.w0{width:1041.731964px;}
.w1{width:1041.750000px;}
.x6{left:-1500.000000px;}
.x0{left:0.000000px;}
.x3{left:56.997900px;}
.x14{left:86.539350px;}
.x4{left:108.520200px;}
.xe{left:135.478050px;}
.x9{left:137.417700px;}
.x7{left:138.917700px;}
.x10{left:140.508300px;}
.xa{left:145.921650px;}
.x2{left:189.088950px;}
.x5{left:199.880835px;}
.x12{left:351.985500px;}
.xd{left:428.990700px;}
.xf{left:538.293750px;}
.xc{left:540.017700px;}
.x13{left:541.786020px;}
.x8{left:542.902050px;}
.x11{left:545.069550px;}
.xb{left:779.403000px;}
.x1{left:933.396150px;}
@media print{
.v2{vertical-align:-15.000000pt;}
.v3{vertical-align:-3.200533pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:3.200320pt;}
.v1{vertical-align:15.000533pt;}
.lsa{letter-spacing:-1.664000pt;}
.ls1b{letter-spacing:-1.450667pt;}
.ls1c{letter-spacing:-1.429333pt;}
.lsf{letter-spacing:-1.408000pt;}
.ls24{letter-spacing:-1.365333pt;}
.ls1e{letter-spacing:-1.322667pt;}
.ls1f{letter-spacing:-1.309867pt;}
.ls1d{letter-spacing:-1.198933pt;}
.ls9{letter-spacing:-1.194667pt;}
.lsb{letter-spacing:-1.190400pt;}
.ls2d{letter-spacing:-1.088000pt;}
.ls2e{letter-spacing:-1.075200pt;}
.ls30{letter-spacing:-1.072000pt;}
.ls2f{letter-spacing:-1.056000pt;}
.ls15{letter-spacing:-0.955733pt;}
.ls19{letter-spacing:-0.951467pt;}
.ls14{letter-spacing:-0.938667pt;}
.ls2b{letter-spacing:-0.896000pt;}
.ls2c{letter-spacing:-0.892800pt;}
.ls11{letter-spacing:-0.725333pt;}
.ls2a{letter-spacing:-0.721067pt;}
.ls12{letter-spacing:-0.716800pt;}
.ls21{letter-spacing:-0.680000pt;}
.ls23{letter-spacing:-0.676000pt;}
.ls22{letter-spacing:-0.672000pt;}
.lsd{letter-spacing:-0.482133pt;}
.ls1a{letter-spacing:-0.477867pt;}
.lse{letter-spacing:-0.469333pt;}
.ls20{letter-spacing:-0.442667pt;}
.ls2{letter-spacing:-0.064000pt;}
.ls1{letter-spacing:-0.016000pt;}
.ls16{letter-spacing:-0.012800pt;}
.ls6{letter-spacing:-0.008960pt;}
.ls3{letter-spacing:-0.008603pt;}
.ls13{letter-spacing:-0.008533pt;}
.lsc{letter-spacing:-0.008000pt;}
.ls5{letter-spacing:-0.007744pt;}
.ls29{letter-spacing:-0.007733pt;}
.ls25{letter-spacing:-0.007467pt;}
.ls26{letter-spacing:-0.005600pt;}
.ls10{letter-spacing:-0.004267pt;}
.ls17{letter-spacing:-0.004000pt;}
.ls27{letter-spacing:-0.003733pt;}
.ls28{letter-spacing:-0.002800pt;}
.ls4{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.000107pt;}
.ls8{letter-spacing:0.469333pt;}
.ls18{letter-spacing:13.030933pt;}
.ls7{letter-spacing:14.562667pt;}
.ws25{word-spacing:-26.688000pt;}
.ws1{word-spacing:-21.741824pt;}
.ws0{word-spacing:-21.733221pt;}
.ws4{word-spacing:-19.571200pt;}
.ws11{word-spacing:-11.861333pt;}
.ws14{word-spacing:-11.852800pt;}
.ws10{word-spacing:-11.379200pt;}
.ws15{word-spacing:-11.144533pt;}
.ws26{word-spacing:-11.140267pt;}
.ws19{word-spacing:-10.909867pt;}
.ws16{word-spacing:-10.905600pt;}
.ws1b{word-spacing:-10.670933pt;}
.ws1a{word-spacing:-10.666667pt;}
.ws1e{word-spacing:-10.378667pt;}
.ws21{word-spacing:-10.374933pt;}
.ws20{word-spacing:-10.371200pt;}
.ws22{word-spacing:-7.781200pt;}
.ws1f{word-spacing:-7.778400pt;}
.ws17{word-spacing:-5.930667pt;}
.ws30{word-spacing:-1.280000pt;}
.ws3a{word-spacing:-0.416000pt;}
.ws2d{word-spacing:-0.213333pt;}
.ws2b{word-spacing:-0.042667pt;}
.ws6{word-spacing:0.000000pt;}
.ws31{word-spacing:0.426667pt;}
.ws2a{word-spacing:0.768000pt;}
.ws29{word-spacing:0.810667pt;}
.ws3b{word-spacing:0.896000pt;}
.ws24{word-spacing:1.037867pt;}
.ws23{word-spacing:1.045333pt;}
.wsf{word-spacing:1.112000pt;}
.ws18{word-spacing:1.120000pt;}
.ws9{word-spacing:1.169067pt;}
.ws1c{word-spacing:1.173760pt;}
.ws12{word-spacing:1.178133pt;}
.wsc{word-spacing:1.186133pt;}
.ws13{word-spacing:1.188267pt;}
.wsa{word-spacing:1.194667pt;}
.ws1d{word-spacing:1.230933pt;}
.ws8{word-spacing:1.245439pt;}
.ws27{word-spacing:1.493333pt;}
.ws7{word-spacing:1.612800pt;}
.ws2f{word-spacing:1.664000pt;}
.wse{word-spacing:2.090667pt;}
.ws2e{word-spacing:2.218667pt;}
.ws33{word-spacing:2.261333pt;}
.ws32{word-spacing:2.304000pt;}
.ws39{word-spacing:2.368000pt;}
.ws37{word-spacing:2.400000pt;}
.ws38{word-spacing:2.403200pt;}
.ws36{word-spacing:2.524800pt;}
.ws35{word-spacing:2.528000pt;}
.wsb{word-spacing:2.688000pt;}
.ws2c{word-spacing:2.730667pt;}
.ws34{word-spacing:3.076267pt;}
.ws28{word-spacing:4.181333pt;}
.wsd{word-spacing:8.960000pt;}
.ws3{word-spacing:39.272107pt;}
.ws2{word-spacing:126.708277pt;}
.ws5{word-spacing:135.835637pt;}
._2{margin-left:-7.797504pt;}
._5{margin-left:-6.120000pt;}
._4{margin-left:-4.650667pt;}
._6{margin-left:-3.658293pt;}
._3{margin-left:-2.346667pt;}
._0{margin-left:-1.036800pt;}
._1{width:1.036800pt;}
._7{width:2.289600pt;}
._8{width:6.178133pt;}
.fs6{font-size:5.333333pt;}
.fsc{font-size:21.333333pt;}
.fse{font-size:28.000000pt;}
.fs11{font-size:32.000000pt;}
.fsd{font-size:37.333333pt;}
.fsb{font-size:40.000000pt;}
.fs8{font-size:42.666667pt;}
.fs5{font-size:44.799947pt;}
.fs7{font-size:48.000000pt;}
.fs10{font-size:53.333333pt;}
.fs4{font-size:57.600000pt;}
.fs3{font-size:70.400000pt;}
.fsa{font-size:74.666667pt;}
.fsf{font-size:77.333333pt;}
.fs2{font-size:78.208000pt;}
.fs0{font-size:80.000000pt;}
.fs9{font-size:96.000000pt;}
.fs1{font-size:320.000000pt;}
.y0{bottom:0.000000pt;}
.ye{bottom:2.520083pt;}
.yd{bottom:14.520083pt;}
.yc{bottom:26.520083pt;}
.yb{bottom:45.485677pt;}
.y3b{bottom:76.118533pt;}
.y60{bottom:76.244293pt;}
.ydd{bottom:76.244400pt;}
.ybb{bottom:76.721600pt;}
.y6b{bottom:77.433893pt;}
.y92{bottom:77.587387pt;}
.y124{bottom:78.597520pt;}
.y14b{bottom:80.626800pt;}
.y14a{bottom:92.626800pt;}
.y3a{bottom:94.785307pt;}
.y5f{bottom:94.910960pt;}
.ydc{bottom:94.911067pt;}
.yba{bottom:95.388267pt;}
.y123{bottom:95.710280pt;}
.y6a{bottom:96.100560pt;}
.y91{bottom:96.254053pt;}
.y149{bottom:104.626800pt;}
.y11d{bottom:105.264280pt;}
.y122{bottom:112.823227pt;}
.y39{bottom:113.451973pt;}
.y5e{bottom:113.577627pt;}
.ydb{bottom:113.577733pt;}
.yb9{bottom:114.054933pt;}
.y69{bottom:114.767227pt;}
.y90{bottom:114.920720pt;}
.y148{bottom:116.626800pt;}
.y11c{bottom:118.597507pt;}
.y121{bottom:129.936080pt;}
.y38{bottom:132.118640pt;}
.y5d{bottom:132.244293pt;}
.yda{bottom:132.244400pt;}
.yb8{bottom:132.721600pt;}
.y68{bottom:133.434000pt;}
.y8f{bottom:133.587387pt;}
.y11b{bottom:135.710387pt;}
.y120{bottom:147.048933pt;}
.y37{bottom:150.785307pt;}
.y5c{bottom:150.910960pt;}
.yd9{bottom:150.911067pt;}
.y67{bottom:152.100533pt;}
.y8e{bottom:152.254053pt;}
.y11a{bottom:152.823333pt;}
.y36{bottom:169.451867pt;}
.y5b{bottom:169.577627pt;}
.yef{bottom:169.577733pt;}
.y119{bottom:169.936147pt;}
.yb7{bottom:170.054933pt;}
.y66{bottom:170.767200pt;}
.y8d{bottom:170.920720pt;}
.y135{bottom:171.582013pt;}
.y11f{bottom:176.382267pt;}
.y134{bottom:182.115333pt;}
.y118{bottom:183.269480pt;}
.y35{bottom:188.118533pt;}
.y5a{bottom:188.244400pt;}
.y65{bottom:189.433867pt;}
.y8c{bottom:189.587387pt;}
.y133{bottom:192.648653pt;}
.y117{bottom:196.602760pt;}
.y132{bottom:203.181880pt;}
.y34{bottom:206.785093pt;}
.yd8{bottom:206.910987pt;}
.y59{bottom:206.911067pt;}
.y64{bottom:208.100533pt;}
.y8b{bottom:208.254160pt;}
.y131{bottom:213.715200pt;}
.y116{bottom:213.715613pt;}
.y130{bottom:224.248413pt;}
.y33{bottom:225.451760pt;}
.yd7{bottom:225.577653pt;}
.yb6{bottom:226.054373pt;}
.y63{bottom:226.767200pt;}
.y8a{bottom:226.920827pt;}
.y115{bottom:227.048933pt;}
.y11e{bottom:227.048973pt;}
.y12f{bottom:234.781733pt;}
.y32{bottom:244.118427pt;}
.y58{bottom:244.244400pt;}
.yd6{bottom:244.244427pt;}
.yb5{bottom:244.720933pt;}
.y62{bottom:245.433867pt;}
.y89{bottom:245.587493pt;}
.y12e{bottom:255.848427pt;}
.y114{bottom:257.495200pt;}
.y31{bottom:262.785200pt;}
.yee{bottom:262.910747pt;}
.yd5{bottom:262.911093pt;}
.yb4{bottom:263.387707pt;}
.y88{bottom:264.254160pt;}
.y12d{bottom:266.381653pt;}
.y12c{bottom:276.915067pt;}
.y30{bottom:281.451733pt;}
.yed{bottom:281.577520pt;}
.yd4{bottom:281.577867pt;}
.yb3{bottom:282.054267pt;}
.y87{bottom:282.920827pt;}
.y12b{bottom:287.448280pt;}
.y12a{bottom:297.981600pt;}
.y2f{bottom:300.118400pt;}
.y57{bottom:300.243973pt;}
.yec{bottom:300.244187pt;}
.yd3{bottom:300.244533pt;}
.yb2{bottom:300.720933pt;}
.y86{bottom:301.587600pt;}
.y93{bottom:313.420933pt;}
.y56{bottom:318.910640pt;}
.yeb{bottom:318.910853pt;}
.yd2{bottom:318.911200pt;}
.y129{bottom:319.048413pt;}
.yb1{bottom:319.387707pt;}
.y85{bottom:320.253653pt;}
.y10c{bottom:320.620427pt;}
.yf1{bottom:320.787600pt;}
.ybc{bottom:325.773600pt;}
.y128{bottom:329.581733pt;}
.y2e{bottom:337.451867pt;}
.y55{bottom:337.577307pt;}
.yea{bottom:337.577520pt;}
.yd1{bottom:337.577733pt;}
.yb0{bottom:338.054373pt;}
.y10b{bottom:339.287200pt;}
.y127{bottom:340.115067pt;}
.y54{bottom:356.243973pt;}
.ye9{bottom:356.244187pt;}
.yd0{bottom:356.244400pt;}
.yaf{bottom:356.721040pt;}
.y84{bottom:357.586987pt;}
.y10a{bottom:357.953867pt;}
.y53{bottom:374.910747pt;}
.ye8{bottom:374.910960pt;}
.ycf{bottom:374.911200pt;}
.yae{bottom:375.387707pt;}
.y83{bottom:376.253653pt;}
.y109{bottom:376.620533pt;}
.y24{bottom:385.325067pt;}
.y2d{bottom:393.451520pt;}
.y52{bottom:393.577413pt;}
.yce{bottom:393.577733pt;}
.yad{bottom:394.054480pt;}
.ya0{bottom:394.116400pt;}
.y82{bottom:394.920320pt;}
.y108{bottom:395.287307pt;}
.y2c{bottom:412.118187pt;}
.ye7{bottom:412.243760pt;}
.y51{bottom:412.244080pt;}
.ycd{bottom:412.244400pt;}
.yac{bottom:412.721253pt;}
.y9f{bottom:412.783067pt;}
.y81{bottom:413.587093pt;}
.y107{bottom:413.953973pt;}
.y2b{bottom:430.784853pt;}
.ye6{bottom:430.910533pt;}
.ycc{bottom:430.910640pt;}
.y50{bottom:430.910853pt;}
.yab{bottom:431.387920pt;}
.y9e{bottom:431.449733pt;}
.y80{bottom:432.253760pt;}
.y106{bottom:432.620640pt;}
.y2a{bottom:449.451627pt;}
.ye5{bottom:449.577307pt;}
.ycb{bottom:449.577413pt;}
.y4f{bottom:449.577627pt;}
.y21{bottom:449.648000pt;}
.y18{bottom:449.956667pt;}
.yaa{bottom:450.054587pt;}
.y9d{bottom:450.116427pt;}
.y7f{bottom:450.920533pt;}
.y105{bottom:451.287413pt;}
.y29{bottom:468.118293pt;}
.ye4{bottom:468.243973pt;}
.yca{bottom:468.244080pt;}
.y4e{bottom:468.244293pt;}
.y20{bottom:468.314667pt;}
.y17{bottom:468.623333pt;}
.ya9{bottom:468.721360pt;}
.y9c{bottom:468.782853pt;}
.y7e{bottom:469.587307pt;}
.y104{bottom:469.954080pt;}
.y147{bottom:480.297653pt;}
.y28{bottom:486.785067pt;}
.ye3{bottom:486.910640pt;}
.yc9{bottom:486.910747pt;}
.y4d{bottom:486.910960pt;}
.y1f{bottom:486.981333pt;}
.y16{bottom:487.290000pt;}
.ya8{bottom:487.388027pt;}
.y9b{bottom:487.449520pt;}
.y7d{bottom:488.253973pt;}
.y103{bottom:488.620747pt;}
.y146{bottom:498.964427pt;}
.y27{bottom:505.451733pt;}
.ye2{bottom:505.577413pt;}
.yc8{bottom:505.577520pt;}
.y4c{bottom:505.577733pt;}
.y1e{bottom:505.648000pt;}
.y15{bottom:505.956667pt;}
.ya7{bottom:506.054693pt;}
.y7c{bottom:506.920640pt;}
.y102{bottom:507.287413pt;}
.y145{bottom:517.631307pt;}
.y9{bottom:519.725467pt;}
.y26{bottom:524.118400pt;}
.ye1{bottom:524.244080pt;}
.yc7{bottom:524.244187pt;}
.y4b{bottom:524.244400pt;}
.y1d{bottom:524.314667pt;}
.y14{bottom:524.623333pt;}
.ya6{bottom:524.721360pt;}
.y9a{bottom:524.782960pt;}
.y113{bottom:525.469600pt;}
.y7b{bottom:525.587413pt;}
.y101{bottom:525.954080pt;}
.y144{bottom:536.297973pt;}
.ye0{bottom:542.910747pt;}
.yc6{bottom:542.910853pt;}
.y4a{bottom:542.911067pt;}
.y1c{bottom:542.981333pt;}
.y13{bottom:543.289893pt;}
.ya5{bottom:543.388027pt;}
.y99{bottom:543.449627pt;}
.y112{bottom:544.136267pt;}
.y7a{bottom:544.254080pt;}
.y100{bottom:544.620747pt;}
.y143{bottom:554.964640pt;}
.ydf{bottom:561.577307pt;}
.yc5{bottom:561.577413pt;}
.y49{bottom:561.577627pt;}
.y1b{bottom:561.648000pt;}
.y12{bottom:561.956560pt;}
.ya4{bottom:562.054693pt;}
.y98{bottom:562.116293pt;}
.y111{bottom:562.802960pt;}
.y79{bottom:562.920747pt;}
.yff{bottom:563.287413pt;}
.y142{bottom:573.631413pt;}
.y8{bottom:573.849421pt;}
.yde{bottom:580.243973pt;}
.yc4{bottom:580.244080pt;}
.y48{bottom:580.244293pt;}
.y1a{bottom:580.314667pt;}
.y11{bottom:580.623333pt;}
.ya3{bottom:580.721360pt;}
.y97{bottom:580.782960pt;}
.y110{bottom:581.469627pt;}
.y78{bottom:581.587413pt;}
.yfe{bottom:581.954080pt;}
.y61{bottom:590.190800pt;}
.y7{bottom:591.129421pt;}
.y141{bottom:592.298080pt;}
.yc3{bottom:598.910747pt;}
.y47{bottom:598.911067pt;}
.y19{bottom:598.981333pt;}
.y10{bottom:599.290000pt;}
.ya2{bottom:599.388133pt;}
.y96{bottom:599.449627pt;}
.y10f{bottom:600.136293pt;}
.y77{bottom:600.254080pt;}
.yfd{bottom:600.620747pt;}
.y6{bottom:609.965053pt;}
.y140{bottom:610.964747pt;}
.yc2{bottom:617.577413pt;}
.y46{bottom:617.577733pt;}
.ya1{bottom:618.054800pt;}
.y95{bottom:618.116400pt;}
.y10e{bottom:618.802960pt;}
.y76{bottom:618.920853pt;}
.yfc{bottom:619.287413pt;}
.y13f{bottom:629.631413pt;}
.yc1{bottom:636.244080pt;}
.y45{bottom:636.244400pt;}
.yf{bottom:636.623333pt;}
.y10d{bottom:637.469733pt;}
.y75{bottom:637.587520pt;}
.yfb{bottom:637.954080pt;}
.y5{bottom:646.809309pt;}
.y13e{bottom:648.298080pt;}
.yc0{bottom:654.910747pt;}
.y44{bottom:654.910960pt;}
.y74{bottom:656.254187pt;}
.yfa{bottom:656.620747pt;}
.y4{bottom:665.644653pt;}
.y13d{bottom:666.964853pt;}
.ybf{bottom:673.577520pt;}
.y43{bottom:673.577733pt;}
.y73{bottom:674.920960pt;}
.yf9{bottom:675.287520pt;}
.ybd{bottom:684.240933pt;}
.y13c{bottom:685.631520pt;}
.yf0{bottom:691.484000pt;}
.ybe{bottom:692.244187pt;}
.y42{bottom:692.244400pt;}
.y72{bottom:693.587627pt;}
.yf8{bottom:693.954187pt;}
.y13b{bottom:704.298187pt;}
.y41{bottom:710.910853pt;}
.y71{bottom:712.254293pt;}
.yf7{bottom:712.620853pt;}
.y13a{bottom:722.964960pt;}
.y23{bottom:724.377333pt;}
.y40{bottom:729.577627pt;}
.y70{bottom:730.921067pt;}
.yf6{bottom:731.287627pt;}
.y139{bottom:741.631627pt;}
.y3f{bottom:748.244293pt;}
.y6f{bottom:749.587733pt;}
.yf5{bottom:749.954293pt;}
.y22{bottom:751.044000pt;}
.y94{bottom:759.083733pt;}
.y138{bottom:760.298293pt;}
.y3e{bottom:766.910960pt;}
.y6e{bottom:768.254400pt;}
.yf4{bottom:768.620960pt;}
.y137{bottom:778.965067pt;}
.y3d{bottom:785.577733pt;}
.y6d{bottom:786.921067pt;}
.yf3{bottom:787.287733pt;}
.y3{bottom:796.082680pt;}
.y136{bottom:797.631733pt;}
.y3c{bottom:804.244400pt;}
.y6c{bottom:805.587733pt;}
.yf2{bottom:805.954400pt;}
.y1{bottom:825.878907pt;}
.y2{bottom:838.587480pt;}
.y126{bottom:838.739200pt;}
.y125{bottom:857.655867pt;}
.y25{bottom:2259.317200pt;}
.ya{bottom:2259.317227pt;}
.h15{height:4.864000pt;}
.h7{height:4.906667pt;}
.h23{height:23.392000pt;}
.h22{height:27.290667pt;}
.h1b{height:34.048000pt;}
.h1c{height:34.048160pt;}
.h1e{height:34.048213pt;}
.h1a{height:34.048373pt;}
.h1f{height:34.048747pt;}
.h1d{height:34.049120pt;}
.h19{height:34.346667pt;}
.hf{height:36.480000pt;}
.h8{height:37.476013pt;}
.h16{height:38.911893pt;}
.hc{height:38.912000pt;}
.h17{height:38.912320pt;}
.hd{height:38.912427pt;}
.h10{height:38.912533pt;}
.h13{height:38.912853pt;}
.h12{height:38.913280pt;}
.h11{height:38.913707pt;}
.h14{height:38.914453pt;}
.h18{height:38.914560pt;}
.ha{height:39.253333pt;}
.h9{height:43.804688pt;}
.h21{height:49.066667pt;}
.h6{height:51.462400pt;}
.h5{height:52.992000pt;}
.he{height:68.693333pt;}
.h20{height:71.146667pt;}
.h4{height:71.951360pt;}
.h2{height:73.600000pt;}
.hb{height:88.320000pt;}
.h3{height:229.120000pt;}
.h0{height:925.983968pt;}
.h1{height:926.000000pt;}
.w2{width:558.912069pt;}
.w0{width:925.983968pt;}
.w1{width:926.000000pt;}
.x6{left:-1333.333333pt;}
.x0{left:0.000000pt;}
.x3{left:50.664800pt;}
.x14{left:76.923867pt;}
.x4{left:96.462400pt;}
.xe{left:120.424933pt;}
.x9{left:122.149067pt;}
.x7{left:123.482400pt;}
.x10{left:124.896267pt;}
.xa{left:129.708133pt;}
.x2{left:168.079067pt;}
.x5{left:177.671853pt;}
.x12{left:312.876000pt;}
.xd{left:381.325067pt;}
.xf{left:478.483333pt;}
.xc{left:480.015733pt;}
.x13{left:481.587573pt;}
.x8{left:482.579600pt;}
.x11{left:484.506267pt;}
.xb{left:692.802667pt;}
.x1{left:829.685467pt;}
}




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