
    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;}
.ff1{font-family:sans-serif;visibility:hidden;}
.ff2{font-family:sans-serif;visibility:hidden;}
.ff3{font-family:sans-serif;visibility:hidden;}
.ff4{font-family:sans-serif;visibility:hidden;}
.ff5{font-family:sans-serif;visibility:hidden;}
.ff6{font-family:sans-serif;visibility:hidden;}
.ff7{font-family:sans-serif;visibility:hidden;}
.ff8{font-family:sans-serif;visibility:hidden;}
.ff9{font-family:sans-serif;visibility:hidden;}
.ffa{font-family:sans-serif;visibility:hidden;}
.ffb{font-family:sans-serif;visibility:hidden;}
.ffc{font-family:sans-serif;visibility:hidden;}
.ffd{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ffe;src:url('chunks/assets/font_2305d5c1137c8403b8794703.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.991000;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:fff;src:url('chunks/assets/font_6e1827f5bf0d2fda03bfa7d4.woff2')format("woff");}.fff{font-family:fff;line-height:0.750000;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:ff10;src:url('chunks/assets/font_6a4fa89d7ec4af374fe76f8c.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.990000;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:ff11;src:url('chunks/assets/font_432fb0f4b8e1fcc0aa38e1be.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.991000;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:ff12;src:url('chunks/assets/font_2504cb7c24f02f9b8cbcd9eb.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.991000;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;}
.ff13{font-family:sans-serif;visibility:hidden;}
.ff14{font-family:sans-serif;visibility:hidden;}
.ff15{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff16;src:url('chunks/assets/font_351b11d81d58ea668b8cdf26.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.760000;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;}
.ff17{font-family:sans-serif;visibility:hidden;}
.ff18{font-family:sans-serif;visibility:hidden;}
.ff19{font-family:sans-serif;visibility:hidden;}
.ff1a{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_bcb733ee05943297fe9506b3.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.991000;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;}
.ff1c{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1d;src:url('chunks/assets/font_8073df6a4665b05c5b0ce0b0.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.990000;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;}
.ff1e{font-family:sans-serif;visibility:hidden;}
.ff1f{font-family:sans-serif;visibility:hidden;}
.ff20{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff21;src:url('chunks/assets/font_d38efc3dd056ca76fe048277.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.963379;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;}
.ff22{font-family:sans-serif;visibility:hidden;}
.ff23{font-family:sans-serif;visibility:hidden;}
.ff24{font-family:sans-serif;visibility:hidden;}
.ff25{font-family:sans-serif;visibility:hidden;}
.ff26{font-family:sans-serif;visibility:hidden;}
.ff27{font-family:sans-serif;visibility:hidden;}
.ff28{font-family:sans-serif;visibility:hidden;}
.ff29{font-family:sans-serif;visibility:hidden;}
.ff2a{font-family:sans-serif;visibility:hidden;}
.ff2b{font-family:sans-serif;visibility:hidden;}
.ff2c{font-family:sans-serif;visibility:hidden;}
.ff2d{font-family:sans-serif;visibility:hidden;}
.ff2e{font-family:sans-serif;visibility:hidden;}
.ff2f{font-family:sans-serif;visibility:hidden;}
.ff30{font-family:sans-serif;visibility:hidden;}
.ff31{font-family:sans-serif;visibility:hidden;}
.ff32{font-family:sans-serif;visibility:hidden;}
.ff33{font-family:sans-serif;visibility:hidden;}
.ff34{font-family:sans-serif;visibility:hidden;}
.ff35{font-family:sans-serif;visibility:hidden;}
.ff36{font-family:sans-serif;visibility:hidden;}
.ff37{font-family:sans-serif;visibility:hidden;}
.ff38{font-family:sans-serif;visibility:hidden;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:32.976539px;}
.ls2{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.000045px;}
.ls1{letter-spacing:0.041625px;}
.ls4{letter-spacing:1.801666px;}
.ls0{letter-spacing:1.828125px;}
.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;}
}
.ws2{word-spacing:-42.749998px;}
.ws5{word-spacing:-21.374999px;}
.ws6{word-spacing:-20.348999px;}
.ws3{word-spacing:-16.031249px;}
.ws1{word-spacing:-1.828125px;}
.ws4{word-spacing:-1.801666px;}
.ws0{word-spacing:0.000000px;}
.ws7{word-spacing:16.444357px;}
._8{margin-left:-1128.660598px;}
._5{margin-left:-8.741638px;}
._6{margin-left:-6.936175px;}
._4{margin-left:-5.648974px;}
._3{margin-left:-4.524801px;}
._2{margin-left:-3.467894px;}
._1{margin-left:-1.828125px;}
._0{width:1.863281px;}
._7{width:4.514912px;}
.fc5{color:transparent;}
.fc4{color:rgb(255,72,80);}
.fc2{color:rgb(0,0,255);}
.fc3{color:rgb(54,55,55);}
.fc1{color:rgb(134,135,135);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:49.499998px;}
.fs7{font-size:58.499998px;}
.fs3{font-size:62.999997px;}
.fs5{font-size:64.124997px;}
.fs9{font-size:67.499997px;}
.fs1{font-size:80.999997px;}
.fs4{font-size:85.499996px;}
.fs8{font-size:89.999996px;}
.fs6{font-size:138.914999px;}
.fs0{font-size:143.999994px;}
.y0{bottom:0.000000px;}
.yb2{bottom:5.625000px;}
.yd1{bottom:16.874999px;}
.y1{bottom:20.475742px;}
.yc6{bottom:22.904279px;}
.y94{bottom:25.154279px;}
.y1e{bottom:27.404279px;}
.yb0{bottom:28.529279px;}
.ycf{bottom:41.624998px;}
.y54{bottom:53.279278px;}
.yc5{bottom:56.654278px;}
.y93{bottom:58.904278px;}
.y1d{bottom:61.154277px;}
.yaf{bottom:62.279277px;}
.yce{bottom:64.124997px;}
.ya2{bottom:65.654277px;}
.ycd{bottom:80.999997px;}
.y53{bottom:87.029276px;}
.yc4{bottom:91.529276px;}
.y92{bottom:93.779276px;}
.y1c{bottom:94.904276px;}
.y80{bottom:97.154276px;}
.ya1{bottom:99.404276px;}
.y70{bottom:103.904276px;}
.y52{bottom:121.904275px;}
.yc3{bottom:125.279275px;}
.y91{bottom:127.529275px;}
.y1b{bottom:129.779275px;}
.y7f{bottom:130.904275px;}
.ya0{bottom:134.279274px;}
.y6f{bottom:138.779274px;}
.yae{bottom:153.404274px;}
.y51{bottom:155.654274px;}
.yc2{bottom:159.029273px;}
.y90{bottom:162.404273px;}
.y1a{bottom:163.529273px;}
.y7e{bottom:164.654273px;}
.y6e{bottom:172.529273px;}
.yad{bottom:188.279272px;}
.y50{bottom:190.529272px;}
.yc1{bottom:193.904272px;}
.y3b{bottom:195.029272px;}
.y8f{bottom:196.154272px;}
.y19{bottom:198.404272px;}
.y7d{bottom:199.529272px;}
.y4f{bottom:224.279271px;}
.y9f{bottom:225.404271px;}
.y8e{bottom:231.029270px;}
.y18{bottom:232.154270px;}
.y7c{bottom:233.279270px;}
.y3a{bottom:235.529270px;}
.y6d{bottom:237.779270px;}
.yac{bottom:244.529270px;}
.yc0{bottom:250.154270px;}
.y4e{bottom:258.029269px;}
.y8d{bottom:264.779269px;}
.y7b{bottom:268.154269px;}
.y39{bottom:276.029268px;}
.yab{bottom:278.279268px;}
.y9e{bottom:281.654268px;}
.y17{bottom:288.404268px;}
.y4d{bottom:292.904268px;}
.y8c{bottom:298.529268px;}
.y7a{bottom:301.904267px;}
.ybf{bottom:307.529267px;}
.y9d{bottom:315.404267px;}
.y16{bottom:323.279267px;}
.y4c{bottom:326.654266px;}
.y8b{bottom:333.404266px;}
.y79{bottom:336.779266px;}
.y9c{bottom:350.279265px;}
.y38{bottom:354.779265px;}
.y15{bottom:357.029265px;}
.y4b{bottom:361.529265px;}
.ybe{bottom:363.779265px;}
.y8a{bottom:367.154265px;}
.y78{bottom:370.529265px;}
.y9b{bottom:384.029264px;}
.y37{bottom:389.654264px;}
.y14{bottom:391.904264px;}
.y4a{bottom:395.279264px;}
.y89{bottom:402.029263px;}
.y77{bottom:404.279263px;}
.ybd{bottom:420.029262px;}
.y36{bottom:423.404262px;}
.y13{bottom:425.654262px;}
.y49{bottom:430.154262px;}
.y88{bottom:435.779262px;}
.yc7{bottom:436.005004px;}
.y76{bottom:439.154262px;}
.y9a{bottom:441.404262px;}
.y61{bottom:451.529261px;}
.ybc{bottom:454.904261px;}
.y35{bottom:457.154261px;}
.y12{bottom:460.529261px;}
.y48{bottom:463.904261px;}
.y87{bottom:469.529260px;}
.y75{bottom:472.904260px;}
.y99{bottom:475.154260px;}
.y34{bottom:492.029259px;}
.y11{bottom:494.279259px;}
.y47{bottom:497.654259px;}
.y86{bottom:504.404259px;}
.y74{bottom:507.779259px;}
.y98{bottom:510.029259px;}
.ybb{bottom:511.154259px;}
.y33{bottom:525.779258px;}
.y10{bottom:528.029258px;}
.y60{bottom:531.404258px;}
.y85{bottom:538.154258px;}
.y46{bottom:555.029257px;}
.y32{bottom:560.654257px;}
.yf{bottom:562.904257px;}
.ycb{bottom:565.874976px;}
.y97{bottom:566.279256px;}
.yba{bottom:568.529256px;}
.y5f{bottom:571.904256px;}
.y73{bottom:573.029256px;}
.y45{bottom:588.779255px;}
.y31{bottom:594.404255px;}
.ye{bottom:596.654255px;}
.y96{bottom:600.029255px;}
.yb9{bottom:602.279255px;}
.y84{bottom:603.404255px;}
.y44{bottom:623.654254px;}
.y30{bottom:628.154254px;}
.yd{bottom:631.529254px;}
.y95{bottom:634.904254px;}
.y72{bottom:638.279253px;}
.y5e{bottom:650.654253px;}
.yca{bottom:653.624973px;}
.y43{bottom:657.404253px;}
.yb8{bottom:659.654253px;}
.y2f{bottom:663.029252px;}
.yc{bottom:665.279252px;}
.y71{bottom:678.779252px;}
.y5d{bottom:685.529251px;}
.y42{bottom:691.154251px;}
.y2e{bottom:696.779251px;}
.yb{bottom:699.029251px;}
.yb7{bottom:715.904250px;}
.y5c{bottom:719.279250px;}
.y41{bottom:726.029250px;}
.yc9{bottom:726.749970px;}
.y2d{bottom:731.654250px;}
.ya{bottom:733.904249px;}
.yb6{bottom:749.654249px;}
.y5b{bottom:754.154249px;}
.y40{bottom:759.779248px;}
.y2c{bottom:765.404248px;}
.y9{bottom:767.654248px;}
.yb1{bottom:767.879991px;}
.ycc{bottom:770.129991px;}
.ya3{bottom:777.779248px;}
.yc8{bottom:782.999967px;}
.y5a{bottom:787.904247px;}
.y3f{bottom:794.654247px;}
.y6c{bottom:798.029247px;}
.y2b{bottom:800.279247px;}
.y8{bottom:802.529247px;}
.y59{bottom:822.779246px;}
.y3e{bottom:828.404245px;}
.y6b{bottom:831.779245px;}
.y2a{bottom:834.029245px;}
.yaa{bottom:845.279245px;}
.y58{bottom:856.529244px;}
.yb5{bottom:857.654244px;}
.y7{bottom:858.779244px;}
.y6a{bottom:866.654244px;}
.y29{bottom:867.779244px;}
.ya9{bottom:880.154243px;}
.y57{bottom:890.279243px;}
.yb4{bottom:891.404243px;}
.y3d{bottom:893.654243px;}
.y69{bottom:900.404242px;}
.y28{bottom:902.654242px;}
.ya8{bottom:913.904242px;}
.yd0{bottom:915.254984px;}
.y3c{bottom:916.154242px;}
.y56{bottom:925.154241px;}
.y6{bottom:935.279241px;}
.y27{bottom:936.404241px;}
.yb3{bottom:948.779240px;}
.y55{bottom:958.904240px;}
.y68{bottom:969.029240px;}
.ya7{bottom:971.279240px;}
.y26{bottom:993.779239px;}
.y67{bottom:1002.779238px;}
.ya6{bottom:1005.029238px;}
.y5{bottom:1007.279238px;}
.y25{bottom:1027.529237px;}
.y1f{bottom:1029.779237px;}
.y66{bottom:1037.654237px;}
.ya5{bottom:1038.779237px;}
.y24{bottom:1061.279236px;}
.y4{bottom:1070.279235px;}
.y65{bottom:1071.404235px;}
.ya4{bottom:1073.654235px;}
.y23{bottom:1096.154234px;}
.y64{bottom:1106.279234px;}
.y83{bottom:1107.404234px;}
.y3{bottom:1110.779234px;}
.y22{bottom:1129.904233px;}
.y63{bottom:1140.029232px;}
.y82{bottom:1147.904232px;}
.y2{bottom:1151.279232px;}
.y21{bottom:1164.779231px;}
.y81{bottom:1188.404230px;}
.y20{bottom:1198.529230px;}
.y62{bottom:1205.279230px;}
.hb{height:25.874999px;}
.h12{height:44.999998px;}
.h5{height:47.024998px;}
.ha{height:47.249998px;}
.he{height:55.574998px;}
.h6{height:59.849998px;}
.hc{height:60.749997px;}
.h7{height:64.124997px;}
.h4{height:76.949997px;}
.h8{height:81.070287px;}
.hf{height:85.499996px;}
.h10{height:107.999996px;}
.h11{height:125.999995px;}
.h9{height:131.969249px;}
.h3{height:136.799994px;}
.hd{height:805.499966px;}
.h2{height:1221.029229px;}
.h0{height:1262.879970px;}
.h1{height:1263.000000px;}
.w4{width:195.749995px;}
.w2{width:733.499969px;}
.w3{width:767.249975px;}
.w0{width:892.439940px;}
.w1{width:892.500000px;}
.x0{left:0.000000px;}
.x119{left:13.500007px;}
.x139{left:14.625002px;}
.x13a{left:25.258120px;}
.x11a{left:29.073126px;}
.x11b{left:35.236456px;}
.x1{left:37.124998px;}
.x11c{left:39.142095px;}
.x11d{left:44.885198px;}
.xe1{left:45.935415px;}
.x22{left:48.179441px;}
.x74{left:49.920397px;}
.x116{left:53.187010px;}
.x11e{left:54.262029px;}
.x102{left:57.466442px;}
.x11f{left:58.744450px;}
.x2{left:59.818357px;}
.x20{left:62.507810px;}
.x23{left:63.673459px;}
.xe2{left:66.395562px;}
.x24{left:68.251462px;}
.x103{left:70.278800px;}
.x5d{left:71.686252px;}
.x3{left:72.931638px;}
.xb5{left:77.994395px;}
.x25{left:80.136471px;}
.xf5{left:81.462195px;}
.x5c{left:83.249997px;}
.x10b{left:87.669641px;}
.x4d{left:91.124996px;}
.x21{left:94.042965px;}
.x104{left:95.920477px;}
.x4e{left:98.341142px;}
.x114{left:99.865719px;}
.xf6{left:103.068010px;}
.x4f{left:107.859473px;}
.x5e{left:110.520774px;}
.x115{left:112.112727px;}
.x4{left:113.167964px;}
.x113{left:114.912731px;}
.x13b{left:116.384764px;}
.x50{left:118.974444px;}
.x75{left:120.094259px;}
.x26{left:123.907477px;}
.x5{left:126.421870px;}
.x10c{left:127.877712px;}
.x27{left:129.300803px;}
.xcc{left:131.431325px;}
.x121{left:132.802729px;}
.x28{left:134.432516px;}
.x105{left:136.128548px;}
.xb6{left:137.289064px;}
.x51{left:139.460718px;}
.x52{left:143.142013px;}
.x120{left:144.825074px;}
.xa5{left:148.710914px;}
.xb7{left:150.084463px;}
.x117{left:152.676189px;}
.x57{left:156.669101px;}
.xb8{left:158.894879px;}
.xf7{left:163.329253px;}
.x6{left:164.742181px;}
.x29{left:169.600815px;}
.x5f{left:171.232422px;}
.x76{left:172.639873px;}
.x10d{left:175.980489px;}
.x60{left:178.550587px;}
.xa6{left:180.118095px;}
.x8f{left:183.882664px;}
.x7{left:185.941399px;}
.xa7{left:187.436260px;}
.x77{left:192.099526px;}
.x2a{left:195.150619px;}
.xa8{left:196.246676px;}
.xf8{left:198.493536px;}
.x2b{left:200.282333px;}
.x61{left:202.021709px;}
.x78{left:204.589693px;}
.x93{left:206.718913px;}
.x8{left:207.755851px;}
.x2c{left:211.692733px;}
.x122{left:212.730460px;}
.x10e{left:213.814517px;}
.x9{left:215.332022px;}
.xa9{left:216.706823px;}
.x2d{left:218.475691px;}
.x2e{left:223.607405px;}
.x62{left:231.716190px;}
.xb9{left:236.285198px;}
.x58{left:239.263917px;}
.xf9{left:240.347513px;}
.x10f{left:243.135944px;}
.x94{left:244.138551px;}
.x59{left:247.513328px;}
.xd6{left:249.276634px;}
.x5a{left:251.333600px;}
.x79{left:254.751737px;}
.x2f{left:256.395001px;}
.xcd{left:258.637104px;}
.x5b{left:260.163088px;}
.x7a{left:262.069901px;}
.x118{left:263.627112px;}
.x30{left:267.666974px;}
.x63{left:271.839477px;}
.x7b{left:274.560068px;}
.xce{left:278.767627px;}
.xfa{left:280.063826px;}
.x90{left:282.055303px;}
.x123{left:284.759022px;}
.xa{left:287.578113px;}
.x31{left:290.477886px;}
.x124{left:293.587635px;}
.x32{left:295.871211px;}
.xba{left:296.878142px;}
.x91{left:299.727000px;}
.x33{left:301.002925px;}
.x125{left:303.031482px;}
.xbb{left:304.196307px;}
.x110{left:307.968237px;}
.x34{left:311.632197px;}
.x95{left:314.872013px;}
.xb{left:316.863268px;}
.x106{left:318.009159px;}
.xcf{left:319.850038px;}
.x64{left:321.383645px;}
.x35{left:322.904169px;}
.x7c{left:324.155097px;}
.x92{left:326.056633px;}
.x65{left:328.701792px;}
.xaa{left:331.558098px;}
.x36{left:334.789178px;}
.x134{left:336.256334px;}
.xc{left:338.062486px;}
.x37{left:339.920892px;}
.x107{left:345.668766px;}
.x38{left:346.723626px;}
.xab{left:349.229812px;}
.xfb{left:350.686017px;}
.xd0{left:352.105071px;}
.xbc{left:354.605286px;}
.xe3{left:357.013248px;}
.xd7{left:358.362404px;}
.xd1{left:360.915488px;}
.x7d{left:364.956671px;}
.xac{left:367.553290px;}
.x39{left:369.119255px;}
.x7e{left:372.274870px;}
.x3a{left:374.250969px;}
.x126{left:375.959824px;}
.xd8{left:379.416053px;}
.xe4{left:383.791083px;}
.x3b{left:386.135978px;}
.x111{left:387.316045px;}
.xd{left:389.285140px;}
.x135{left:391.431874px;}
.x7f{left:392.734983px;}
.x96{left:394.457261px;}
.xe5{left:396.586447px;}
.xe{left:398.460921px;}
.x80{left:400.053181px;}
.x97{left:401.775426px;}
.xe6{left:403.904645px;}
.xd9{left:406.193853px;}
.xf{left:407.583967px;}
.x81{left:408.914444px;}
.xbd{left:414.536904px;}
.xe7{left:416.700009px;}
.x127{left:419.180037px;}
.xd2{left:421.176731px;}
.x98{left:422.829074px;}
.x108{left:425.382230px;}
.xbe{left:427.349262px;}
.x82{left:428.374080px;}
.xd3{left:430.038029px;}
.x136{left:432.529529px;}
.xda{left:433.972165px;}
.x3c{left:436.671987px;}
.x112{left:437.725058px;}
.x10{left:440.701154px;}
.x99{left:442.560038px;}
.x109{left:445.842377px;}
.x11{left:448.277325px;}
.xad{left:449.420383px;}
.x128{left:452.164289px;}
.x66{left:454.321042px;}
.xbf{left:455.381907px;}
.xae{left:456.738513px;}
.x129{left:459.793195px;}
.xfc{left:461.721844px;}
.xe8{left:464.497572px;}
.x3d{left:465.762478px;}
.xaf{left:468.279101px;}
.x137{left:473.473375px;}
.x12{left:474.644511px;}
.x3e{left:476.391750px;}
.x12a{left:477.642682px;}
.x83{left:481.648877px;}
.xe9{left:484.228536px;}
.xc0{left:487.501328px;}
.x84{left:488.967041px;}
.x9a{left:492.816410px;}
.x13{left:494.806620px;}
.x12b{left:495.899761px;}
.x3f{left:499.231432px;}
.xb0{left:501.704178px;}
.x12c{left:503.982407px;}
.x40{left:507.942492px;}
.xb1{left:509.022377px;}
.x9b{left:512.547373px;}
.xc1{left:513.736473px;}
.x67{left:516.328871px;}
.x12d{left:517.994369px;}
.x41{left:520.345232px;}
.xb2{left:521.817741px;}
.x68{left:523.647035px;}
.x138{left:525.076156px;}
.xea{left:530.143798px;}
.x42{left:531.370011px;}
.xfd{left:533.048825px;}
.x14{left:534.990212px;}
.x9c{left:538.189050px;}
.xd4{left:540.242980px;}
.x43{left:541.425797px;}
.x69{left:544.183503px;}
.x44{left:545.895035px;}
.x15{left:546.943337px;}
.xeb{left:549.603468px;}
.x85{left:553.485624px;}
.xc2{left:556.379011px;}
.x9d{left:559.242698px;}
.xd5{left:561.296629px;}
.x45{left:562.659210px;}
.x46{left:567.790924px;}
.xb3{left:569.615304px;}
.x6a{left:570.673050px;}
.xc3{left:575.753880px;}
.x9e{left:578.702334px;}
.xb4{left:582.698956px;}
.x86{left:584.825016px;}
.x47{left:585.849013px;}
.x12e{left:589.273657px;}
.xc4{left:593.755184px;}
.xdb{left:601.318209px;}
.x48{left:602.509779px;}
.xfe{left:603.833184px;}
.xec{left:609.169448px;}
.xc5{left:611.426898px;}
.x16{left:613.107396px;}
.x49{left:614.394788px;}
.xed{left:616.487612px;}
.xdc{left:620.693044px;}
.x4a{left:625.666760px;}
.x6b{left:627.873434px;}
.xdd{left:629.554341px;}
.xff{left:631.611530px;}
.x17{left:633.269505px;}
.xee{left:636.829073px;}
.x12f{left:638.244120px;}
.xc6{left:639.696916px;}
.x130{left:642.504618px;}
.x9f{left:645.450867px;}
.x18{left:646.523411px;}
.x87{left:648.070695px;}
.xef{left:649.641397px;}
.x100{left:651.725024px;}
.x4b{left:653.731197px;}
.x19{left:655.646457px;}
.xf0{left:656.959596px;}
.xa0{left:658.534484px;}
.xc7{left:660.157098px;}
.x4c{left:664.720065px;}
.xa1{left:665.852683px;}
.x131{left:667.630349px;}
.xf1{left:669.754959px;}
.x10a{left:677.267136px;}
.x88{left:679.477859px;}
.xde{left:684.982767px;}
.x89{left:686.796058px;}
.x6c{left:688.236437px;}
.xc8{left:691.971237px;}
.xa2{left:693.740171px;}
.xdf{left:700.220048px;}
.xa3{left:702.550519px;}
.xe0{left:707.538179px;}
.x6d{left:708.696550px;}
.xf2{left:710.234358px;}
.x132{left:711.296607px;}
.xa4{left:715.345952px;}
.x1a{left:716.906220px;}
.x8a{left:720.509458px;}
.xc9{left:722.402335px;}
.x1b{left:724.482392px;}
.x133{left:729.453711px;}
.x1c{left:733.605438px;}
.xf3{left:734.739911px;}
.x53{left:740.847625px;}
.x54{left:750.745654px;}
.x1d{left:754.804656px;}
.x6e{left:757.368453px;}
.x8b{left:759.343928px;}
.x1e{left:762.380828px;}
.x6f{left:766.229751px;}
.x55{left:768.457606px;}
.x8c{left:772.139361px;}
.x56{left:774.184864px;}
.x1f{left:775.634733px;}
.x101{left:784.865925px;}
.x70{left:787.368201px;}
.xca{left:800.240948px;}
.xf4{left:803.506287px;}
.x71{left:805.691678px;}
.xcb{left:807.559147px;}
.x8d{left:809.135064px;}
.x72{left:813.009877px;}
.x73{left:821.820294px;}
.x8e{left:829.595177px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:29.312479pt;}
.ls2{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.000040pt;}
.ls1{letter-spacing:0.037000pt;}
.ls4{letter-spacing:1.601481pt;}
.ls0{letter-spacing:1.625000pt;}
.ws2{word-spacing:-37.999998pt;}
.ws5{word-spacing:-18.999999pt;}
.ws6{word-spacing:-18.087999pt;}
.ws3{word-spacing:-14.249999pt;}
.ws1{word-spacing:-1.625000pt;}
.ws4{word-spacing:-1.601481pt;}
.ws0{word-spacing:0.000000pt;}
.ws7{word-spacing:14.617206pt;}
._8{margin-left:-1003.253865pt;}
._5{margin-left:-7.770344pt;}
._6{margin-left:-6.165489pt;}
._4{margin-left:-5.021310pt;}
._3{margin-left:-4.022045pt;}
._2{margin-left:-3.082573pt;}
._1{margin-left:-1.625000pt;}
._0{width:1.656250pt;}
._7{width:4.013255pt;}
.fs2{font-size:43.999998pt;}
.fs7{font-size:51.999998pt;}
.fs3{font-size:55.999998pt;}
.fs5{font-size:56.999998pt;}
.fs9{font-size:59.999998pt;}
.fs1{font-size:71.999997pt;}
.fs4{font-size:75.999997pt;}
.fs8{font-size:79.999997pt;}
.fs6{font-size:123.479999pt;}
.fs0{font-size:127.999995pt;}
.y0{bottom:0.000000pt;}
.yb2{bottom:5.000000pt;}
.yd1{bottom:14.999999pt;}
.y1{bottom:18.200659pt;}
.yc6{bottom:20.359359pt;}
.y94{bottom:22.359359pt;}
.y1e{bottom:24.359359pt;}
.yb0{bottom:25.359359pt;}
.ycf{bottom:36.999998pt;}
.y54{bottom:47.359358pt;}
.yc5{bottom:50.359358pt;}
.y93{bottom:52.359358pt;}
.y1d{bottom:54.359358pt;}
.yaf{bottom:55.359358pt;}
.yce{bottom:56.999998pt;}
.ya2{bottom:58.359358pt;}
.ycd{bottom:71.999997pt;}
.y53{bottom:77.359357pt;}
.yc4{bottom:81.359357pt;}
.y92{bottom:83.359357pt;}
.y1c{bottom:84.359356pt;}
.y80{bottom:86.359356pt;}
.ya1{bottom:88.359356pt;}
.y70{bottom:92.359356pt;}
.y52{bottom:108.359355pt;}
.yc3{bottom:111.359355pt;}
.y91{bottom:113.359355pt;}
.y1b{bottom:115.359355pt;}
.y7f{bottom:116.359355pt;}
.ya0{bottom:119.359355pt;}
.y6f{bottom:123.359355pt;}
.yae{bottom:136.359354pt;}
.y51{bottom:138.359354pt;}
.yc2{bottom:141.359354pt;}
.y90{bottom:144.359354pt;}
.y1a{bottom:145.359354pt;}
.y7e{bottom:146.359354pt;}
.y6e{bottom:153.359354pt;}
.yad{bottom:167.359353pt;}
.y50{bottom:169.359353pt;}
.yc1{bottom:172.359353pt;}
.y3b{bottom:173.359353pt;}
.y8f{bottom:174.359353pt;}
.y19{bottom:176.359353pt;}
.y7d{bottom:177.359353pt;}
.y4f{bottom:199.359352pt;}
.y9f{bottom:200.359352pt;}
.y8e{bottom:205.359351pt;}
.y18{bottom:206.359351pt;}
.y7c{bottom:207.359351pt;}
.y3a{bottom:209.359351pt;}
.y6d{bottom:211.359351pt;}
.yac{bottom:217.359351pt;}
.yc0{bottom:222.359351pt;}
.y4e{bottom:229.359350pt;}
.y8d{bottom:235.359350pt;}
.y7b{bottom:238.359350pt;}
.y39{bottom:245.359350pt;}
.yab{bottom:247.359350pt;}
.y9e{bottom:250.359350pt;}
.y17{bottom:256.359349pt;}
.y4d{bottom:260.359349pt;}
.y8c{bottom:265.359349pt;}
.y7a{bottom:268.359349pt;}
.ybf{bottom:273.359349pt;}
.y9d{bottom:280.359348pt;}
.y16{bottom:287.359348pt;}
.y4c{bottom:290.359348pt;}
.y8b{bottom:296.359348pt;}
.y79{bottom:299.359348pt;}
.y9c{bottom:311.359347pt;}
.y38{bottom:315.359347pt;}
.y15{bottom:317.359347pt;}
.y4b{bottom:321.359347pt;}
.ybe{bottom:323.359347pt;}
.y8a{bottom:326.359346pt;}
.y78{bottom:329.359346pt;}
.y9b{bottom:341.359346pt;}
.y37{bottom:346.359346pt;}
.y14{bottom:348.359345pt;}
.y4a{bottom:351.359345pt;}
.y89{bottom:357.359345pt;}
.y77{bottom:359.359345pt;}
.ybd{bottom:373.359344pt;}
.y36{bottom:376.359344pt;}
.y13{bottom:378.359344pt;}
.y49{bottom:382.359344pt;}
.y88{bottom:387.359344pt;}
.yc7{bottom:387.560004pt;}
.y76{bottom:390.359344pt;}
.y9a{bottom:392.359344pt;}
.y61{bottom:401.359343pt;}
.ybc{bottom:404.359343pt;}
.y35{bottom:406.359343pt;}
.y12{bottom:409.359343pt;}
.y48{bottom:412.359343pt;}
.y87{bottom:417.359343pt;}
.y75{bottom:420.359342pt;}
.y99{bottom:422.359342pt;}
.y34{bottom:437.359342pt;}
.y11{bottom:439.359342pt;}
.y47{bottom:442.359342pt;}
.y86{bottom:448.359341pt;}
.y74{bottom:451.359341pt;}
.y98{bottom:453.359341pt;}
.ybb{bottom:454.359341pt;}
.y33{bottom:467.359341pt;}
.y10{bottom:469.359340pt;}
.y60{bottom:472.359340pt;}
.y85{bottom:478.359340pt;}
.y46{bottom:493.359339pt;}
.y32{bottom:498.359339pt;}
.yf{bottom:500.359339pt;}
.ycb{bottom:502.999979pt;}
.y97{bottom:503.359339pt;}
.yba{bottom:505.359339pt;}
.y5f{bottom:508.359339pt;}
.y73{bottom:509.359339pt;}
.y45{bottom:523.359338pt;}
.y31{bottom:528.359338pt;}
.ye{bottom:530.359338pt;}
.y96{bottom:533.359338pt;}
.yb9{bottom:535.359338pt;}
.y84{bottom:536.359338pt;}
.y44{bottom:554.359337pt;}
.y30{bottom:558.359337pt;}
.yd{bottom:561.359337pt;}
.y95{bottom:564.359336pt;}
.y72{bottom:567.359336pt;}
.y5e{bottom:578.359336pt;}
.yca{bottom:580.999976pt;}
.y43{bottom:584.359336pt;}
.yb8{bottom:586.359336pt;}
.y2f{bottom:589.359335pt;}
.yc{bottom:591.359335pt;}
.y71{bottom:603.359335pt;}
.y5d{bottom:609.359335pt;}
.y42{bottom:614.359334pt;}
.y2e{bottom:619.359334pt;}
.yb{bottom:621.359334pt;}
.yb7{bottom:636.359333pt;}
.y5c{bottom:639.359333pt;}
.y41{bottom:645.359333pt;}
.yc9{bottom:645.999973pt;}
.y2d{bottom:650.359333pt;}
.ya{bottom:652.359333pt;}
.yb6{bottom:666.359332pt;}
.y5b{bottom:670.359332pt;}
.y40{bottom:675.359332pt;}
.y2c{bottom:680.359332pt;}
.y9{bottom:682.359332pt;}
.yb1{bottom:682.559992pt;}
.ycc{bottom:684.559992pt;}
.ya3{bottom:691.359331pt;}
.yc8{bottom:695.999971pt;}
.y5a{bottom:700.359331pt;}
.y3f{bottom:706.359331pt;}
.y6c{bottom:709.359330pt;}
.y2b{bottom:711.359330pt;}
.y8{bottom:713.359330pt;}
.y59{bottom:731.359330pt;}
.y3e{bottom:736.359329pt;}
.y6b{bottom:739.359329pt;}
.y2a{bottom:741.359329pt;}
.yaa{bottom:751.359329pt;}
.y58{bottom:761.359328pt;}
.yb5{bottom:762.359328pt;}
.y7{bottom:763.359328pt;}
.y6a{bottom:770.359328pt;}
.y29{bottom:771.359328pt;}
.ya9{bottom:782.359327pt;}
.y57{bottom:791.359327pt;}
.yb4{bottom:792.359327pt;}
.y3d{bottom:794.359327pt;}
.y69{bottom:800.359327pt;}
.y28{bottom:802.359327pt;}
.ya8{bottom:812.359326pt;}
.yd0{bottom:813.559986pt;}
.y3c{bottom:814.359326pt;}
.y56{bottom:822.359326pt;}
.y6{bottom:831.359325pt;}
.y27{bottom:832.359325pt;}
.yb3{bottom:843.359325pt;}
.y55{bottom:852.359324pt;}
.y68{bottom:861.359324pt;}
.ya7{bottom:863.359324pt;}
.y26{bottom:883.359323pt;}
.y67{bottom:891.359323pt;}
.ya6{bottom:893.359323pt;}
.y5{bottom:895.359323pt;}
.y25{bottom:913.359322pt;}
.y1f{bottom:915.359322pt;}
.y66{bottom:922.359322pt;}
.ya5{bottom:923.359322pt;}
.y24{bottom:943.359321pt;}
.y4{bottom:951.359320pt;}
.y65{bottom:952.359320pt;}
.ya4{bottom:954.359320pt;}
.y23{bottom:974.359319pt;}
.y64{bottom:983.359319pt;}
.y83{bottom:984.359319pt;}
.y3{bottom:987.359319pt;}
.y22{bottom:1004.359318pt;}
.y63{bottom:1013.359318pt;}
.y82{bottom:1020.359317pt;}
.y2{bottom:1023.359317pt;}
.y21{bottom:1035.359317pt;}
.y81{bottom:1056.359316pt;}
.y20{bottom:1065.359316pt;}
.y62{bottom:1071.359315pt;}
.hb{height:22.999999pt;}
.h12{height:39.999998pt;}
.h5{height:41.799998pt;}
.ha{height:41.999998pt;}
.he{height:49.399998pt;}
.h6{height:53.199998pt;}
.hc{height:53.999998pt;}
.h7{height:56.999998pt;}
.h4{height:68.399997pt;}
.h8{height:72.062477pt;}
.hf{height:75.999997pt;}
.h10{height:95.999996pt;}
.h11{height:111.999995pt;}
.h9{height:117.305999pt;}
.h3{height:121.599995pt;}
.hd{height:715.999970pt;}
.h2{height:1085.359315pt;}
.h0{height:1122.559973pt;}
.h1{height:1122.666667pt;}
.w4{width:173.999995pt;}
.w2{width:651.999973pt;}
.w3{width:681.999978pt;}
.w0{width:793.279947pt;}
.w1{width:793.333333pt;}
.x0{left:0.000000pt;}
.x119{left:12.000006pt;}
.x139{left:13.000002pt;}
.x13a{left:22.451662pt;}
.x11a{left:25.842779pt;}
.x11b{left:31.321294pt;}
.x1{left:32.999999pt;}
.x11c{left:34.792974pt;}
.x11d{left:39.897954pt;}
.xe1{left:40.831480pt;}
.x22{left:42.826170pt;}
.x74{left:44.373686pt;}
.x116{left:47.277342pt;}
.x11e{left:48.232914pt;}
.x102{left:51.081282pt;}
.x11f{left:52.217289pt;}
.x2{left:53.171873pt;}
.x20{left:55.562498pt;}
.x23{left:56.598631pt;}
.xe2{left:59.018277pt;}
.x24{left:60.667966pt;}
.x103{left:62.470045pt;}
.x5d{left:63.721113pt;}
.x3{left:64.828122pt;}
.xb5{left:69.328351pt;}
.x25{left:71.232419pt;}
.xf5{left:72.410840pt;}
.x5c{left:73.999997pt;}
.x10b{left:77.928570pt;}
.x4d{left:80.999997pt;}
.x21{left:83.593747pt;}
.x104{left:85.262646pt;}
.x4e{left:87.414349pt;}
.x114{left:88.769528pt;}
.xf6{left:91.616009pt;}
.x4f{left:95.875088pt;}
.x5e{left:98.240688pt;}
.x115{left:99.655758pt;}
.x4{left:100.593746pt;}
.x113{left:102.144649pt;}
.x13b{left:103.453123pt;}
.x50{left:105.755061pt;}
.x75{left:106.750453pt;}
.x26{left:110.139980pt;}
.x5{left:112.374995pt;}
.x10c{left:113.669078pt;}
.x27{left:114.934047pt;}
.xcc{left:116.827845pt;}
.x121{left:118.046870pt;}
.x28{left:119.495570pt;}
.x105{left:121.003154pt;}
.xb6{left:122.034724pt;}
.x51{left:123.965083pt;}
.x52{left:127.237345pt;}
.x120{left:128.733399pt;}
.xa5{left:132.187479pt;}
.xb7{left:133.408411pt;}
.x117{left:135.712168pt;}
.x57{left:139.261423pt;}
.xb8{left:141.239893pt;}
.xf7{left:145.181559pt;}
.x6{left:146.437494pt;}
.x29{left:150.756280pt;}
.x5f{left:152.206598pt;}
.x76{left:153.457665pt;}
.x10d{left:156.427101pt;}
.x60{left:158.711633pt;}
.xa6{left:160.104973pt;}
.x8f{left:163.451257pt;}
.x7{left:165.281243pt;}
.xa7{left:166.610008pt;}
.x77{left:170.755134pt;}
.x2a{left:173.467217pt;}
.xa8{left:174.441490pt;}
.xf8{left:176.438698pt;}
.x2b{left:178.028740pt;}
.x61{left:179.574852pt;}
.x78{left:181.857505pt;}
.x93{left:183.750145pt;}
.x8{left:184.671867pt;}
.x2c{left:188.171318pt;}
.x122{left:189.093742pt;}
.x10e{left:190.057349pt;}
.x9{left:191.406242pt;}
.xa9{left:192.628287pt;}
.x2d{left:194.200615pt;}
.x2e{left:198.762138pt;}
.x62{left:205.969947pt;}
.xb9{left:210.031287pt;}
.x58{left:212.679038pt;}
.xf9{left:213.642234pt;}
.x10f{left:216.120839pt;}
.x94{left:217.012045pt;}
.x59{left:220.011847pt;}
.xd6{left:221.579230pt;}
.x5a{left:223.407644pt;}
.x79{left:226.445988pt;}
.x2f{left:227.906668pt;}
.xcd{left:229.899648pt;}
.x5b{left:231.256078pt;}
.x7a{left:232.951023pt;}
.x118{left:234.335211pt;}
.x30{left:237.926199pt;}
.x63{left:241.635091pt;}
.x7b{left:244.053394pt;}
.xce{left:247.793446pt;}
.xfa{left:248.945623pt;}
.x90{left:250.715825pt;}
.x123{left:253.119131pt;}
.xa{left:255.624989pt;}
.x31{left:258.202565pt;}
.x124{left:260.966787pt;}
.x32{left:262.996632pt;}
.xba{left:263.891682pt;}
.x91{left:266.424000pt;}
.x33{left:267.558155pt;}
.x125{left:269.361317pt;}
.xbb{left:270.396717pt;}
.x110{left:273.749544pt;}
.x34{left:277.006397pt;}
.x95{left:279.886233pt;}
.xb{left:281.656238pt;}
.x106{left:282.674808pt;}
.xcf{left:284.311144pt;}
.x64{left:285.674351pt;}
.x35{left:287.025928pt;}
.x7c{left:288.137864pt;}
.x92{left:289.828118pt;}
.x65{left:292.179371pt;}
.xaa{left:294.718310pt;}
.x36{left:297.590381pt;}
.x134{left:298.894519pt;}
.xc{left:300.499987pt;}
.x37{left:302.151904pt;}
.x107{left:307.261126pt;}
.x38{left:308.198779pt;}
.xab{left:310.426500pt;}
.xfb{left:311.720904pt;}
.xd0{left:312.982285pt;}
.xbc{left:315.204698pt;}
.xe3{left:317.345110pt;}
.xd7{left:318.544359pt;}
.xd1{left:320.813767pt;}
.x7d{left:324.405929pt;}
.xac{left:326.714036pt;}
.x39{left:328.106005pt;}
.x7e{left:330.910995pt;}
.x3a{left:332.667528pt;}
.x126{left:334.186510pt;}
.xd8{left:337.258714pt;}
.xe4{left:341.147629pt;}
.x3b{left:343.231980pt;}
.x111{left:344.280929pt;}
.xd{left:346.031236pt;}
.x135{left:347.939444pt;}
.x7f{left:349.097762pt;}
.x96{left:350.628676pt;}
.xe5{left:352.521286pt;}
.xe{left:354.187485pt;}
.x80{left:355.602828pt;}
.x97{left:357.133712pt;}
.xe6{left:359.026352pt;}
.xd9{left:361.061203pt;}
.xf{left:362.296860pt;}
.x81{left:363.479506pt;}
.xbd{left:368.477248pt;}
.xe7{left:370.400008pt;}
.x127{left:372.604478pt;}
.xd2{left:374.379317pt;}
.x98{left:375.848066pt;}
.x108{left:378.117538pt;}
.xbe{left:379.866011pt;}
.x82{left:380.776960pt;}
.xd3{left:382.256025pt;}
.x136{left:384.470692pt;}
.xda{left:385.753036pt;}
.x3c{left:388.152877pt;}
.x112{left:389.088941pt;}
.x10{left:391.734359pt;}
.x99{left:393.386700pt;}
.x109{left:396.304335pt;}
.x11{left:398.468733pt;}
.xad{left:399.484784pt;}
.x128{left:401.923813pt;}
.x66{left:403.840927pt;}
.xbf{left:404.783917pt;}
.xae{left:405.989789pt;}
.x129{left:408.705062pt;}
.xfc{left:410.419417pt;}
.xe8{left:412.886731pt;}
.x3d{left:414.011091pt;}
.xaf{left:416.248089pt;}
.x137{left:420.865222pt;}
.x12{left:421.906232pt;}
.x3e{left:423.459333pt;}
.x12a{left:424.571273pt;}
.x83{left:428.132335pt;}
.xe9{left:430.425365pt;}
.xc0{left:433.334514pt;}
.x84{left:434.637370pt;}
.x9a{left:438.059031pt;}
.x13{left:439.828107pt;}
.x12b{left:440.799788pt;}
.x3f{left:443.761273pt;}
.xb0{left:445.959270pt;}
.x12c{left:447.984361pt;}
.x40{left:451.504437pt;}
.xb1{left:452.464335pt;}
.x9b{left:455.597665pt;}
.xc1{left:456.654642pt;}
.x67{left:458.958996pt;}
.x12d{left:460.439439pt;}
.x41{left:462.529095pt;}
.xb2{left:463.837992pt;}
.x68{left:465.464031pt;}
.x138{left:466.734361pt;}
.xea{left:471.238931pt;}
.x42{left:472.328899pt;}
.xfd{left:473.821178pt;}
.x14{left:475.546855pt;}
.x9c{left:478.390267pt;}
.xd4{left:480.215982pt;}
.x43{left:481.267375pt;}
.x69{left:483.718670pt;}
.x44{left:485.240031pt;}
.x15{left:486.171855pt;}
.xeb{left:488.536416pt;}
.x85{left:491.987222pt;}
.xc2{left:494.559121pt;}
.x9d{left:497.104621pt;}
.xd5{left:498.930337pt;}
.x45{left:500.141520pt;}
.x46{left:504.703043pt;}
.xb3{left:506.324715pt;}
.x6a{left:507.264934pt;}
.xc3{left:511.781227pt;}
.x9e{left:514.402075pt;}
.xb4{left:517.954627pt;}
.x86{left:519.844459pt;}
.x47{left:520.754678pt;}
.x12e{left:523.798806pt;}
.xc4{left:527.782386pt;}
.xdb{left:534.505075pt;}
.x48{left:535.564248pt;}
.xfe{left:536.740608pt;}
.xec{left:541.483954pt;}
.xc5{left:543.490576pt;}
.x16{left:544.984352pt;}
.x49{left:546.128701pt;}
.xed{left:547.988989pt;}
.xdc{left:551.727150pt;}
.x4a{left:556.148232pt;}
.x6b{left:558.109719pt;}
.xdd{left:559.603859pt;}
.xff{left:561.432471pt;}
.x17{left:562.906227pt;}
.xee{left:566.070287pt;}
.x12f{left:567.328106pt;}
.xc6{left:568.619481pt;}
.x130{left:571.115216pt;}
.x9f{left:573.734104pt;}
.x18{left:574.687476pt;}
.x87{left:576.062840pt;}
.xef{left:577.459019pt;}
.x100{left:579.311133pt;}
.x4b{left:581.094397pt;}
.x19{left:582.796851pt;}
.xf0{left:583.964085pt;}
.xa0{left:585.363986pt;}
.xc7{left:586.806309pt;}
.x4c{left:590.862280pt;}
.xa1{left:591.869052pt;}
.x131{left:593.449199pt;}
.xf1{left:595.337742pt;}
.x10a{left:602.015232pt;}
.x88{left:603.980319pt;}
.xde{left:608.873571pt;}
.x89{left:610.485385pt;}
.x6c{left:611.765722pt;}
.xc8{left:615.085544pt;}
.xa2{left:616.657930pt;}
.xdf{left:622.417821pt;}
.xa3{left:624.489350pt;}
.xe0{left:628.922825pt;}
.x6d{left:629.952489pt;}
.xf2{left:631.319429pt;}
.x132{left:632.263651pt;}
.xa4{left:635.863068pt;}
.x1a{left:637.249973pt;}
.x8a{left:640.452851pt;}
.xc9{left:642.135409pt;}
.x1b{left:643.984348pt;}
.x133{left:648.403299pt;}
.x1c{left:652.093723pt;}
.xf3{left:653.102143pt;}
.x53{left:658.531223pt;}
.x54{left:667.329470pt;}
.x1d{left:670.937472pt;}
.x6e{left:673.216403pt;}
.x8b{left:674.972381pt;}
.x1e{left:677.671847pt;}
.x6f{left:681.093112pt;}
.x55{left:683.073427pt;}
.x8c{left:686.346099pt;}
.x56{left:688.164324pt;}
.x1f{left:689.453096pt;}
.x101{left:697.658600pt;}
.x70{left:699.882845pt;}
.xca{left:711.325287pt;}
.xf4{left:714.227811pt;}
.x71{left:716.170381pt;}
.xcb{left:717.830353pt;}
.x8d{left:719.231168pt;}
.x72{left:722.675446pt;}
.x73{left:730.506928pt;}
.x8e{left:737.417935pt;}
}




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