
    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_13b7bad514d493abb28630ae.woff2')format("woff");}.ff1{font-family:ff1;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;}
@font-face{font-family:ff2;src:url('chunks/assets/font_d2bcfd918e581d8a44e0b407.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.916992;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_29be89c49ca7f1135665e460.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.172852;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_2fa57885b3794cc4e3d68234.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.921387;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_9b8abc4527410ff36ed418d5.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.311035;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_0a545ba4407ce29c0b7df2b6.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284180;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_7cfa9cc0ae1160169e491180.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.946777;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_657d439d86ff80d043bba43d.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.284180;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_06beab6e0638efc622144c86.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.910156;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_fe2e9dd469ee55e71db246cd.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.052734;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_864d0777c3c4f1ea85ea7374.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.402354;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;}
.m4{transform:matrix(0.248374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248374,0.000000,0.000000,0.250000,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);}
.m6{transform:matrix(0.250649,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250649,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250649,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.251106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251106,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.253805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253805,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.255852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255852,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.258697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258697,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-66.479421px;}
.v0{vertical-align:0.000000px;}
.ls9{letter-spacing:-3.000000px;}
.lsb{letter-spacing:-2.994000px;}
.ls8{letter-spacing:-2.988000px;}
.lsa{letter-spacing:-2.700000px;}
.ls14{letter-spacing:-0.782525px;}
.ls16{letter-spacing:-0.433147px;}
.ls1c{letter-spacing:-0.216000px;}
.ls7{letter-spacing:-0.012000px;}
.ls5{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.012000px;}
.ls1{letter-spacing:0.024000px;}
.ls20{letter-spacing:0.060000px;}
.lsd{letter-spacing:0.084000px;}
.ls0{letter-spacing:0.120000px;}
.ls6{letter-spacing:0.150000px;}
.ls1f{letter-spacing:0.168000px;}
.ls22{letter-spacing:0.192000px;}
.ls1e{letter-spacing:0.216000px;}
.ls2{letter-spacing:0.300000px;}
.ls1a{letter-spacing:0.373531px;}
.ls1b{letter-spacing:0.384000px;}
.ls19{letter-spacing:0.396097px;}
.ls1d{letter-spacing:0.432000px;}
.ls4{letter-spacing:0.600000px;}
.ls25{letter-spacing:0.624000px;}
.ls18{letter-spacing:0.866073px;}
.ls17{letter-spacing:0.922496px;}
.ls24{letter-spacing:3.852000px;}
.lsc{letter-spacing:7.140000px;}
.ls13{letter-spacing:9.570000px;}
.ls12{letter-spacing:9.600000px;}
.ls11{letter-spacing:11.970000px;}
.ls10{letter-spacing:12.000000px;}
.ls21{letter-spacing:22.200000px;}
.ls23{letter-spacing:36.852000px;}
.lse{letter-spacing:126.249295px;}
.lsf{letter-spacing:134.284613px;}
.ls15{letter-spacing:138.644396px;}
.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;}
}
.wsd{word-spacing:-72.000000px;}
.ws9{word-spacing:-18.000000px;}
.wsc{word-spacing:-17.784000px;}
.wse{word-spacing:-16.500000px;}
.ws1{word-spacing:-15.120000px;}
.ws0{word-spacing:-15.000000px;}
.ws3{word-spacing:-13.524000px;}
.ws2{word-spacing:-13.512000px;}
.ws5{word-spacing:-13.500000px;}
.ws4{word-spacing:-13.488000px;}
.ws6{word-spacing:-10.512000px;}
.ws8{word-spacing:-10.506000px;}
.ws7{word-spacing:-10.500000px;}
.wsa{word-spacing:0.000000px;}
.wsb{word-spacing:74.365025px;}
._c{margin-left:-4.320000px;}
._2{margin-left:-3.240000px;}
._3{margin-left:-2.160000px;}
._1{margin-left:-1.140000px;}
._0{width:1.050000px;}
._28{width:2.190000px;}
._7{width:3.240000px;}
._23{width:4.464000px;}
._2d{width:5.964000px;}
._f{width:7.272000px;}
._8{width:8.928000px;}
._9{width:10.572000px;}
._d{width:11.892000px;}
._2e{width:13.176000px;}
._5{width:14.256000px;}
._4{width:15.606000px;}
._24{width:16.896000px;}
._e{width:19.152000px;}
._25{width:20.952000px;}
._6{width:22.176000px;}
._1b{width:23.184000px;}
._1c{width:24.624000px;}
._12{width:26.568000px;}
._33{width:27.822000px;}
._a{width:28.944000px;}
._b{width:29.952000px;}
._35{width:31.248000px;}
._26{width:32.400000px;}
._31{width:34.158000px;}
._43{width:35.508000px;}
._3a{width:37.080000px;}
._38{width:38.952000px;}
._1f{width:40.032000px;}
._20{width:41.112000px;}
._14{width:42.192000px;}
._3b{width:43.416000px;}
._50{width:44.856000px;}
._27{width:46.512000px;}
._10{width:47.952000px;}
._11{width:48.960000px;}
._1a{width:50.418000px;}
._17{width:52.704000px;}
._18{width:54.072000px;}
._42{width:55.080000px;}
._1e{width:56.376000px;}
._13{width:57.888000px;}
._3c{width:59.904000px;}
._48{width:61.344000px;}
._32{width:62.496000px;}
._39{width:64.080000px;}
._34{width:65.520000px;}
._4f{width:67.176000px;}
._41{width:69.192000px;}
._2a{width:70.848000px;}
._4a{width:72.000000px;}
._53{width:73.110000px;}
._45{width:74.304000px;}
._2f{width:75.960000px;}
._30{width:77.112000px;}
._29{width:78.624000px;}
._57{width:80.496000px;}
._21{width:81.504000px;}
._22{width:82.728000px;}
._36{width:83.880000px;}
._15{width:85.320000px;}
._16{width:86.688000px;}
._1d{width:87.846000px;}
._19{width:90.000000px;}
._55{width:91.056000px;}
._3e{width:92.664000px;}
._3d{width:93.876000px;}
._4b{width:96.048000px;}
._3f{width:97.560000px;}
._40{width:99.072000px;}
._4c{width:100.368000px;}
._51{width:102.168000px;}
._52{width:103.176000px;}
._56{width:104.904000px;}
._4d{width:107.136000px;}
._4e{width:108.672000px;}
._49{width:110.736000px;}
._54{width:117.000000px;}
._44{width:120.816000px;}
._2c{width:127.368000px;}
._2b{width:128.652000px;}
._46{width:136.296000px;}
._58{width:181.296000px;}
._47{width:185.760000px;}
._37{width:253.512000px;}
.fc1{color:rgb(32,33,36);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:47.654288px;}
.fs6{font-size:49.262666px;}
.fs3{font-size:54.000000px;}
.fs2{font-size:57.000000px;}
.fs1{font-size:60.000000px;}
.fs4{font-size:66.000000px;}
.fs5{font-size:72.000000px;}
.fsa{font-size:80.597297px;}
.fs9{font-size:82.338662px;}
.fsb{font-size:82.500855px;}
.fsc{font-size:82.642255px;}
.fs0{font-size:84.000000px;}
.fs7{font-size:85.378904px;}
.y0{bottom:0.000000px;}
.yd{bottom:2.100000px;}
.yae{bottom:3.215403px;}
.ya6{bottom:3.215408px;}
.ya2{bottom:3.675228px;}
.y2d{bottom:3.900000px;}
.yb1{bottom:4.749853px;}
.yaa{bottom:4.785723px;}
.y7{bottom:5.400000px;}
.yb{bottom:6.000000px;}
.yc{bottom:6.750000px;}
.ya3{bottom:9.046596px;}
.y9b{bottom:15.605784px;}
.ya{bottom:19.950000px;}
.y6{bottom:20.550000px;}
.y9f{bottom:21.146177px;}
.y9d{bottom:21.146188px;}
.y2c{bottom:24.600000px;}
.y9{bottom:33.900000px;}
.y9e{bottom:34.507317px;}
.y9c{bottom:34.507328px;}
.y5{bottom:36.000000px;}
.y2b{bottom:45.300000px;}
.y3{bottom:57.637500px;}
.y2a{bottom:66.000000px;}
.y2{bottom:81.637500px;}
.y29{bottom:86.700000px;}
.y14a{bottom:107.137500px;}
.y28{bottom:107.400000px;}
.y8d{bottom:108.187500px;}
.yd3{bottom:109.987500px;}
.yf2{bottom:110.437500px;}
.y3d{bottom:117.937500px;}
.y122{bottom:126.187500px;}
.y68{bottom:126.637500px;}
.y27{bottom:128.100000px;}
.y8c{bottom:132.037500px;}
.yd2{bottom:133.837500px;}
.yf1{bottom:134.287500px;}
.y99{bottom:137.137500px;}
.y3c{bottom:141.637500px;}
.y149{bottom:145.087500px;}
.y26{bottom:148.800000px;}
.yf6{bottom:148.837500px;}
.y121{bottom:150.045000px;}
.y67{bottom:150.495000px;}
.y8b{bottom:155.895000px;}
.yd1{bottom:157.545000px;}
.yf0{bottom:157.995000px;}
.y98{bottom:160.995000px;}
.y148{bottom:164.145000px;}
.y3b{bottom:165.495000px;}
.y25{bottom:169.500000px;}
.yf5{bottom:173.145000px;}
.y120{bottom:173.895000px;}
.y66{bottom:174.345000px;}
.y8a{bottom:179.580000px;}
.yd0{bottom:181.395000px;}
.yef{bottom:181.845000px;}
.y147{bottom:183.045000px;}
.y97{bottom:184.845000px;}
.y3a{bottom:189.330000px;}
.yf4{bottom:197.295000px;}
.y11f{bottom:197.595000px;}
.y65{bottom:198.195000px;}
.y146{bottom:202.095000px;}
.y89{bottom:203.445000px;}
.ycf{bottom:205.245000px;}
.yee{bottom:205.695000px;}
.y96{bottom:208.545000px;}
.y17c{bottom:210.945000px;}
.y39{bottom:213.045000px;}
.y145{bottom:220.995000px;}
.y11e{bottom:221.445000px;}
.yf3{bottom:221.595000px;}
.y64{bottom:221.895000px;}
.y88{bottom:227.295000px;}
.yce{bottom:228.945000px;}
.yed{bottom:229.380000px;}
.y95{bottom:232.380000px;}
.y17b{bottom:234.645000px;}
.y38{bottom:236.895000px;}
.y144{bottom:240.045000px;}
.y11d{bottom:245.295000px;}
.y63{bottom:245.745000px;}
.y87{bottom:250.995000px;}
.ycd{bottom:252.795000px;}
.yec{bottom:253.245000px;}
.y94{bottom:256.245000px;}
.y17a{bottom:258.495000px;}
.y143{bottom:258.945000px;}
.y37{bottom:260.745000px;}
.y11c{bottom:268.995000px;}
.y62{bottom:269.595000px;}
.y86{bottom:274.845000px;}
.ycc{bottom:276.630000px;}
.yeb{bottom:277.080000px;}
.y142{bottom:277.995000px;}
.y179{bottom:278.895000px;}
.y93{bottom:279.945000px;}
.y36{bottom:284.445000px;}
.y11b{bottom:292.845000px;}
.y61{bottom:293.295000px;}
.y141{bottom:296.880000px;}
.y178{bottom:297.945000px;}
.y85{bottom:298.695000px;}
.ycb{bottom:300.330000px;}
.yea{bottom:300.795000px;}
.y92{bottom:303.795000px;}
.y35{bottom:308.295000px;}
.y140{bottom:315.945000px;}
.y11a{bottom:316.695000px;}
.y177{bottom:316.845000px;}
.y60{bottom:317.130000px;}
.y84{bottom:322.395000px;}
.yca{bottom:324.195000px;}
.ye9{bottom:324.645000px;}
.y91{bottom:327.630000px;}
.y34{bottom:332.145000px;}
.y13f{bottom:334.830000px;}
.y176{bottom:335.895000px;}
.y119{bottom:340.545000px;}
.y5f{bottom:340.995000px;}
.y83{bottom:346.245000px;}
.yc9{bottom:348.045000px;}
.ye8{bottom:348.495000px;}
.y90{bottom:351.495000px;}
.y13e{bottom:353.880000px;}
.y175{bottom:354.795000px;}
.y33{bottom:355.995000px;}
.y118{bottom:364.245000px;}
.y5e{bottom:364.695000px;}
.y82{bottom:370.095000px;}
.yc8{bottom:371.745000px;}
.ye7{bottom:372.195000px;}
.y13d{bottom:372.795000px;}
.y174{bottom:373.845000px;}
.y8f{bottom:375.195000px;}
.y32{bottom:379.725000px;}
.y117{bottom:388.125000px;}
.y5d{bottom:388.575000px;}
.y13c{bottom:391.875000px;}
.y173{bottom:392.775000px;}
.y81{bottom:393.975000px;}
.y8e{bottom:395.175000px;}
.yc7{bottom:395.625000px;}
.ye6{bottom:396.075000px;}
.y31{bottom:403.575000px;}
.y13b{bottom:410.775000px;}
.y172{bottom:411.825000px;}
.y116{bottom:411.975000px;}
.y5c{bottom:412.425000px;}
.y80{bottom:417.675000px;}
.yc6{bottom:419.475000px;}
.ye5{bottom:419.925000px;}
.y13a{bottom:429.825000px;}
.y171{bottom:430.725000px;}
.y115{bottom:435.675000px;}
.y5b{bottom:436.125000px;}
.y30{bottom:436.275000px;}
.y7f{bottom:441.525000px;}
.yc5{bottom:443.175000px;}
.ye4{bottom:443.775000px;}
.y139{bottom:448.725000px;}
.y170{bottom:449.775000px;}
.y2f{bottom:453.075000px;}
.y114{bottom:459.525000px;}
.y5a{bottom:459.975000px;}
.y7e{bottom:465.375000px;}
.yc4{bottom:467.025000px;}
.ye3{bottom:467.475000px;}
.y138{bottom:467.625000px;}
.y16f{bottom:468.675000px;}
.y113{bottom:483.375000px;}
.y59{bottom:483.825000px;}
.y137{bottom:486.675000px;}
.y16e{bottom:487.725000px;}
.y7d{bottom:489.075000px;}
.yc3{bottom:490.875000px;}
.ye2{bottom:491.325000px;}
.y2e{bottom:494.475000px;}
.y136{bottom:505.575000px;}
.y16d{bottom:506.625000px;}
.y112{bottom:507.075000px;}
.y58{bottom:507.525000px;}
.y7c{bottom:512.925000px;}
.yc2{bottom:514.725000px;}
.y24{bottom:515.175000px;}
.y135{bottom:524.625000px;}
.y16c{bottom:525.675000px;}
.y111{bottom:530.925000px;}
.y57{bottom:531.375000px;}
.y7b{bottom:536.775000px;}
.yc1{bottom:538.425000px;}
.ye1{bottom:538.875000px;}
.y134{bottom:543.525000px;}
.y16b{bottom:544.575000px;}
.y110{bottom:554.775000px;}
.y56{bottom:555.225000px;}
.y7a{bottom:560.475000px;}
.yc0{bottom:562.275000px;}
.y133{bottom:562.575000px;}
.ye0{bottom:562.725000px;}
.y16a{bottom:563.625000px;}
.y10f{bottom:578.475000px;}
.y55{bottom:579.075000px;}
.y132{bottom:581.475000px;}
.y169{bottom:582.525000px;}
.y79{bottom:584.325000px;}
.ybf{bottom:586.125000px;}
.ydf{bottom:586.575000px;}
.y131{bottom:600.525000px;}
.y168{bottom:601.575000px;}
.y10e{bottom:602.325000px;}
.y54{bottom:602.775000px;}
.y78{bottom:608.175000px;}
.ybe{bottom:609.825000px;}
.yde{bottom:610.275000px;}
.y130{bottom:619.425000px;}
.y167{bottom:620.475000px;}
.y10d{bottom:626.175000px;}
.y53{bottom:626.625000px;}
.y77{bottom:631.875000px;}
.ybd{bottom:633.675000px;}
.ydd{bottom:634.125000px;}
.y12f{bottom:638.475000px;}
.y166{bottom:639.525000px;}
.y10c{bottom:649.875000px;}
.y52{bottom:650.475000px;}
.y76{bottom:655.725000px;}
.y12e{bottom:657.375000px;}
.ybc{bottom:657.525000px;}
.ydc{bottom:657.975000px;}
.y165{bottom:658.425000px;}
.y10b{bottom:673.725000px;}
.y51{bottom:674.175000px;}
.y12d{bottom:676.425000px;}
.y164{bottom:677.475000px;}
.y75{bottom:679.575000px;}
.ybb{bottom:681.225000px;}
.ydb{bottom:681.675000px;}
.y12c{bottom:695.325000px;}
.y163{bottom:696.375000px;}
.y10a{bottom:697.575000px;}
.y50{bottom:698.025000px;}
.y74{bottom:703.275000px;}
.y23{bottom:705.075000px;}
.yda{bottom:705.525000px;}
.y12b{bottom:714.375000px;}
.y162{bottom:715.425000px;}
.y109{bottom:721.425000px;}
.y4f{bottom:721.875000px;}
.y22{bottom:724.275000px;}
.y73{bottom:727.125000px;}
.yba{bottom:728.925000px;}
.yd9{bottom:729.375000px;}
.y12a{bottom:733.275000px;}
.y161{bottom:734.325000px;}
.y21{bottom:745.020000px;}
.y108{bottom:745.170000px;}
.y4e{bottom:745.620000px;}
.y72{bottom:751.020000px;}
.y129{bottom:752.370000px;}
.yb9{bottom:752.670000px;}
.yd8{bottom:753.120000px;}
.y160{bottom:753.420000px;}
.y20{bottom:765.720000px;}
.y107{bottom:769.020000px;}
.y4d{bottom:769.470000px;}
.y128{bottom:771.270000px;}
.y15f{bottom:772.320000px;}
.y71{bottom:774.720000px;}
.yb8{bottom:776.520000px;}
.yd7{bottom:776.970000px;}
.y1f{bottom:786.420000px;}
.y127{bottom:790.320000px;}
.y15e{bottom:791.370000px;}
.y106{bottom:792.870000px;}
.y4c{bottom:793.320000px;}
.y70{bottom:798.570000px;}
.yb7{bottom:800.370000px;}
.yd6{bottom:800.820000px;}
.y1e{bottom:807.120000px;}
.y126{bottom:809.205000px;}
.y15d{bottom:810.270000px;}
.y105{bottom:816.570000px;}
.y4b{bottom:817.020000px;}
.y6f{bottom:822.420000px;}
.yb6{bottom:824.070000px;}
.yd5{bottom:824.520000px;}
.y1d{bottom:827.820000px;}
.y125{bottom:828.270000px;}
.y15c{bottom:829.320000px;}
.y104{bottom:840.420000px;}
.y4a{bottom:840.870000px;}
.yd4{bottom:844.470000px;}
.y6e{bottom:846.270000px;}
.y124{bottom:847.170000px;}
.yb5{bottom:847.920000px;}
.y15b{bottom:848.220000px;}
.y1c{bottom:848.520000px;}
.y103{bottom:864.270000px;}
.y49{bottom:864.720000px;}
.y123{bottom:866.205000px;}
.y15a{bottom:867.270000px;}
.y1b{bottom:869.220000px;}
.y6d{bottom:869.970000px;}
.yb4{bottom:871.770000px;}
.y159{bottom:886.170000px;}
.y102{bottom:887.970000px;}
.y48{bottom:888.420000px;}
.y1a{bottom:889.920000px;}
.y6c{bottom:893.820000px;}
.yb3{bottom:895.620000px;}
.y158{bottom:905.220000px;}
.y19{bottom:910.620000px;}
.y101{bottom:911.820000px;}
.y47{bottom:912.270000px;}
.y6b{bottom:917.670000px;}
.yb0{bottom:919.275000px;}
.yb2{bottom:919.320000px;}
.y157{bottom:924.120000px;}
.y18{bottom:931.320000px;}
.y100{bottom:935.670000px;}
.y46{bottom:936.120000px;}
.y6a{bottom:941.370000px;}
.y156{bottom:943.170000px;}
.yad{bottom:948.824919px;}
.yaf{bottom:948.870000px;}
.y17{bottom:952.020000px;}
.yff{bottom:959.370000px;}
.y45{bottom:959.970000px;}
.y69{bottom:961.320000px;}
.y155{bottom:962.070000px;}
.y16{bottom:972.720000px;}
.yac{bottom:976.320000px;}
.y154{bottom:981.120000px;}
.yfe{bottom:983.220000px;}
.y44{bottom:983.670000px;}
.y15{bottom:993.420000px;}
.y153{bottom:1000.020000px;}
.ya9{bottom:1000.124919px;}
.yab{bottom:1000.170000px;}
.yfd{bottom:1007.070000px;}
.y43{bottom:1007.520000px;}
.y14{bottom:1014.120000px;}
.y152{bottom:1019.070000px;}
.ya8{bottom:1029.720000px;}
.yfc{bottom:1030.770000px;}
.y42{bottom:1031.370000px;}
.y13{bottom:1034.820000px;}
.y151{bottom:1037.970000px;}
.ya5{bottom:1053.374919px;}
.ya7{bottom:1053.420000px;}
.yfb{bottom:1054.620000px;}
.y41{bottom:1055.070000px;}
.y12{bottom:1055.520000px;}
.y150{bottom:1057.020000px;}
.y14f{bottom:1075.920000px;}
.y11{bottom:1076.220000px;}
.yfa{bottom:1078.470000px;}
.y40{bottom:1078.920000px;}
.ya1{bottom:1081.124919px;}
.ya4{bottom:1081.170000px;}
.y14e{bottom:1094.970000px;}
.yf9{bottom:1102.350000px;}
.y3f{bottom:1102.800000px;}
.y10{bottom:1108.950000px;}
.y9a{bottom:1112.324919px;}
.ya0{bottom:1112.400000px;}
.y14d{bottom:1113.900000px;}
.yf8{bottom:1126.050000px;}
.y3e{bottom:1126.500000px;}
.yf{bottom:1129.650000px;}
.y14c{bottom:1132.950000px;}
.yf7{bottom:1150.050000px;}
.ye{bottom:1150.350000px;}
.y14b{bottom:1151.850000px;}
.y1{bottom:1176.900000px;}
.y4{bottom:1202.550000px;}
.y8{bottom:1207.800000px;}
.h8{height:17.887500px;}
.h1a{height:20.550115px;}
.h10{height:20.700000px;}
.h1e{height:22.500233px;}
.h1c{height:22.500315px;}
.h17{height:28.199791px;}
.h11{height:41.400000px;}
.h6{height:45.300000px;}
.h22{height:46.277344px;}
.h18{height:46.746809px;}
.h14{height:48.324558px;}
.h3{height:48.600000px;}
.hf{height:50.484375px;}
.ha{height:50.800781px;}
.h20{height:52.628906px;}
.h7{height:52.998047px;}
.h13{height:54.748490px;}
.h5{height:55.942383px;}
.h4{height:58.886719px;}
.h16{height:59.281641px;}
.hd{height:64.775391px;}
.h9{height:65.645508px;}
.h23{height:66.515625px;}
.h21{height:67.837600px;}
.h12{height:70.628906px;}
.hc{height:70.664062px;}
.hb{height:72.562500px;}
.h1b{height:79.062485px;}
.h19{height:80.770689px;}
.h1d{height:80.929794px;}
.h1f{height:81.068501px;}
.h2{height:82.441406px;}
.h15{height:83.753036px;}
.he{height:186.300000px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.wa{width:30.300668px;}
.wb{width:32.699711px;}
.wc{width:35.999862px;}
.w6{width:178.350000px;}
.w9{width:222.446529px;}
.w5{width:262.995000px;}
.w3{width:282.495000px;}
.w4{width:297.780000px;}
.w7{width:745.770000px;}
.w8{width:750.270000px;}
.w2{width:892.949987px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x27{left:1.370750px;}
.x28{left:3.291343px;}
.x24{left:4.316939px;}
.x4{left:6.900000px;}
.x9{left:12.435000px;}
.x7{left:16.200000px;}
.xe{left:17.295000px;}
.x1d{left:20.887500px;}
.x5{left:22.200000px;}
.xb{left:32.100000px;}
.x3{left:42.599987px;}
.x2b{left:69.449987px;}
.x10{left:86.699987px;}
.x1e{left:95.699987px;}
.x23{left:97.147483px;}
.x1c{left:100.200000px;}
.x1b{left:104.700000px;}
.xd{left:106.980000px;}
.x6{left:121.687500px;}
.x25{left:126.169029px;}
.xa{left:128.130000px;}
.x29{left:131.737487px;}
.x1{left:303.494987px;}
.x8{left:305.145000px;}
.x26{left:318.194987px;}
.x11{left:332.744987px;}
.x22{left:430.124987px;}
.x21{left:436.424987px;}
.x1f{left:457.274987px;}
.x14{left:464.924987px;}
.x2c{left:484.124987px;}
.x13{left:489.224987px;}
.x20{left:510.374987px;}
.x18{left:537.074987px;}
.x1a{left:544.124987px;}
.x12{left:555.074987px;}
.x19{left:601.574987px;}
.xc{left:625.425000px;}
.x15{left:656.219987px;}
.x16{left:686.654987px;}
.xf{left:713.655000px;}
.x2{left:819.119987px;}
.x17{left:850.619987px;}
.x2a{left:855.569987px;}
@media print{
.v1{vertical-align:-59.092818pt;}
.v0{vertical-align:0.000000pt;}
.ls9{letter-spacing:-2.666667pt;}
.lsb{letter-spacing:-2.661333pt;}
.ls8{letter-spacing:-2.656000pt;}
.lsa{letter-spacing:-2.400000pt;}
.ls14{letter-spacing:-0.695578pt;}
.ls16{letter-spacing:-0.385019pt;}
.ls1c{letter-spacing:-0.192000pt;}
.ls7{letter-spacing:-0.010667pt;}
.ls5{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.010667pt;}
.ls1{letter-spacing:0.021333pt;}
.ls20{letter-spacing:0.053333pt;}
.lsd{letter-spacing:0.074667pt;}
.ls0{letter-spacing:0.106667pt;}
.ls6{letter-spacing:0.133333pt;}
.ls1f{letter-spacing:0.149333pt;}
.ls22{letter-spacing:0.170667pt;}
.ls1e{letter-spacing:0.192000pt;}
.ls2{letter-spacing:0.266667pt;}
.ls1a{letter-spacing:0.332028pt;}
.ls1b{letter-spacing:0.341333pt;}
.ls19{letter-spacing:0.352086pt;}
.ls1d{letter-spacing:0.384000pt;}
.ls4{letter-spacing:0.533333pt;}
.ls25{letter-spacing:0.554667pt;}
.ls18{letter-spacing:0.769843pt;}
.ls17{letter-spacing:0.819996pt;}
.ls24{letter-spacing:3.424000pt;}
.lsc{letter-spacing:6.346667pt;}
.ls13{letter-spacing:8.506667pt;}
.ls12{letter-spacing:8.533333pt;}
.ls11{letter-spacing:10.640000pt;}
.ls10{letter-spacing:10.666667pt;}
.ls21{letter-spacing:19.733333pt;}
.ls23{letter-spacing:32.757333pt;}
.lse{letter-spacing:112.221595pt;}
.lsf{letter-spacing:119.364100pt;}
.ls15{letter-spacing:123.239463pt;}
.wsd{word-spacing:-64.000000pt;}
.ws9{word-spacing:-16.000000pt;}
.wsc{word-spacing:-15.808000pt;}
.wse{word-spacing:-14.666667pt;}
.ws1{word-spacing:-13.440000pt;}
.ws0{word-spacing:-13.333333pt;}
.ws3{word-spacing:-12.021333pt;}
.ws2{word-spacing:-12.010667pt;}
.ws5{word-spacing:-12.000000pt;}
.ws4{word-spacing:-11.989333pt;}
.ws6{word-spacing:-9.344000pt;}
.ws8{word-spacing:-9.338667pt;}
.ws7{word-spacing:-9.333333pt;}
.wsa{word-spacing:0.000000pt;}
.wsb{word-spacing:66.102245pt;}
._c{margin-left:-3.840000pt;}
._2{margin-left:-2.880000pt;}
._3{margin-left:-1.920000pt;}
._1{margin-left:-1.013333pt;}
._0{width:0.933333pt;}
._28{width:1.946667pt;}
._7{width:2.880000pt;}
._23{width:3.968000pt;}
._2d{width:5.301333pt;}
._f{width:6.464000pt;}
._8{width:7.936000pt;}
._9{width:9.397333pt;}
._d{width:10.570667pt;}
._2e{width:11.712000pt;}
._5{width:12.672000pt;}
._4{width:13.872000pt;}
._24{width:15.018667pt;}
._e{width:17.024000pt;}
._25{width:18.624000pt;}
._6{width:19.712000pt;}
._1b{width:20.608000pt;}
._1c{width:21.888000pt;}
._12{width:23.616000pt;}
._33{width:24.730667pt;}
._a{width:25.728000pt;}
._b{width:26.624000pt;}
._35{width:27.776000pt;}
._26{width:28.800000pt;}
._31{width:30.362667pt;}
._43{width:31.562667pt;}
._3a{width:32.960000pt;}
._38{width:34.624000pt;}
._1f{width:35.584000pt;}
._20{width:36.544000pt;}
._14{width:37.504000pt;}
._3b{width:38.592000pt;}
._50{width:39.872000pt;}
._27{width:41.344000pt;}
._10{width:42.624000pt;}
._11{width:43.520000pt;}
._1a{width:44.816000pt;}
._17{width:46.848000pt;}
._18{width:48.064000pt;}
._42{width:48.960000pt;}
._1e{width:50.112000pt;}
._13{width:51.456000pt;}
._3c{width:53.248000pt;}
._48{width:54.528000pt;}
._32{width:55.552000pt;}
._39{width:56.960000pt;}
._34{width:58.240000pt;}
._4f{width:59.712000pt;}
._41{width:61.504000pt;}
._2a{width:62.976000pt;}
._4a{width:64.000000pt;}
._53{width:64.986667pt;}
._45{width:66.048000pt;}
._2f{width:67.520000pt;}
._30{width:68.544000pt;}
._29{width:69.888000pt;}
._57{width:71.552000pt;}
._21{width:72.448000pt;}
._22{width:73.536000pt;}
._36{width:74.560000pt;}
._15{width:75.840000pt;}
._16{width:77.056000pt;}
._1d{width:78.085333pt;}
._19{width:80.000000pt;}
._55{width:80.938667pt;}
._3e{width:82.368000pt;}
._3d{width:83.445333pt;}
._4b{width:85.376000pt;}
._3f{width:86.720000pt;}
._40{width:88.064000pt;}
._4c{width:89.216000pt;}
._51{width:90.816000pt;}
._52{width:91.712000pt;}
._56{width:93.248000pt;}
._4d{width:95.232000pt;}
._4e{width:96.597333pt;}
._49{width:98.432000pt;}
._54{width:104.000000pt;}
._44{width:107.392000pt;}
._2c{width:113.216000pt;}
._2b{width:114.357333pt;}
._46{width:121.152000pt;}
._58{width:161.152000pt;}
._47{width:165.120000pt;}
._37{width:225.344000pt;}
.fs8{font-size:42.359367pt;}
.fs6{font-size:43.789036pt;}
.fs3{font-size:48.000000pt;}
.fs2{font-size:50.666667pt;}
.fs1{font-size:53.333333pt;}
.fs4{font-size:58.666667pt;}
.fs5{font-size:64.000000pt;}
.fsa{font-size:71.642042pt;}
.fs9{font-size:73.189922pt;}
.fsb{font-size:73.334094pt;}
.fsc{font-size:73.459782pt;}
.fs0{font-size:74.666667pt;}
.fs7{font-size:75.892359pt;}
.y0{bottom:0.000000pt;}
.yd{bottom:1.866667pt;}
.yae{bottom:2.858136pt;}
.ya6{bottom:2.858140pt;}
.ya2{bottom:3.266869pt;}
.y2d{bottom:3.466667pt;}
.yb1{bottom:4.222091pt;}
.yaa{bottom:4.253976pt;}
.y7{bottom:4.800000pt;}
.yb{bottom:5.333333pt;}
.yc{bottom:6.000000pt;}
.ya3{bottom:8.041419pt;}
.y9b{bottom:13.871808pt;}
.ya{bottom:17.733333pt;}
.y6{bottom:18.266667pt;}
.y9f{bottom:18.796602pt;}
.y9d{bottom:18.796611pt;}
.y2c{bottom:21.866667pt;}
.y9{bottom:30.133333pt;}
.y9e{bottom:30.673171pt;}
.y9c{bottom:30.673180pt;}
.y5{bottom:32.000000pt;}
.y2b{bottom:40.266667pt;}
.y3{bottom:51.233333pt;}
.y2a{bottom:58.666667pt;}
.y2{bottom:72.566667pt;}
.y29{bottom:77.066667pt;}
.y14a{bottom:95.233333pt;}
.y28{bottom:95.466667pt;}
.y8d{bottom:96.166667pt;}
.yd3{bottom:97.766667pt;}
.yf2{bottom:98.166667pt;}
.y3d{bottom:104.833333pt;}
.y122{bottom:112.166667pt;}
.y68{bottom:112.566667pt;}
.y27{bottom:113.866667pt;}
.y8c{bottom:117.366667pt;}
.yd2{bottom:118.966667pt;}
.yf1{bottom:119.366667pt;}
.y99{bottom:121.900000pt;}
.y3c{bottom:125.900000pt;}
.y149{bottom:128.966667pt;}
.y26{bottom:132.266667pt;}
.yf6{bottom:132.300000pt;}
.y121{bottom:133.373333pt;}
.y67{bottom:133.773333pt;}
.y8b{bottom:138.573333pt;}
.yd1{bottom:140.040000pt;}
.yf0{bottom:140.440000pt;}
.y98{bottom:143.106667pt;}
.y148{bottom:145.906667pt;}
.y3b{bottom:147.106667pt;}
.y25{bottom:150.666667pt;}
.yf5{bottom:153.906667pt;}
.y120{bottom:154.573333pt;}
.y66{bottom:154.973333pt;}
.y8a{bottom:159.626667pt;}
.yd0{bottom:161.240000pt;}
.yef{bottom:161.640000pt;}
.y147{bottom:162.706667pt;}
.y97{bottom:164.306667pt;}
.y3a{bottom:168.293333pt;}
.yf4{bottom:175.373333pt;}
.y11f{bottom:175.640000pt;}
.y65{bottom:176.173333pt;}
.y146{bottom:179.640000pt;}
.y89{bottom:180.840000pt;}
.ycf{bottom:182.440000pt;}
.yee{bottom:182.840000pt;}
.y96{bottom:185.373333pt;}
.y17c{bottom:187.506667pt;}
.y39{bottom:189.373333pt;}
.y145{bottom:196.440000pt;}
.y11e{bottom:196.840000pt;}
.yf3{bottom:196.973333pt;}
.y64{bottom:197.240000pt;}
.y88{bottom:202.040000pt;}
.yce{bottom:203.506667pt;}
.yed{bottom:203.893333pt;}
.y95{bottom:206.560000pt;}
.y17b{bottom:208.573333pt;}
.y38{bottom:210.573333pt;}
.y144{bottom:213.373333pt;}
.y11d{bottom:218.040000pt;}
.y63{bottom:218.440000pt;}
.y87{bottom:223.106667pt;}
.ycd{bottom:224.706667pt;}
.yec{bottom:225.106667pt;}
.y94{bottom:227.773333pt;}
.y17a{bottom:229.773333pt;}
.y143{bottom:230.173333pt;}
.y37{bottom:231.773333pt;}
.y11c{bottom:239.106667pt;}
.y62{bottom:239.640000pt;}
.y86{bottom:244.306667pt;}
.ycc{bottom:245.893333pt;}
.yeb{bottom:246.293333pt;}
.y142{bottom:247.106667pt;}
.y179{bottom:247.906667pt;}
.y93{bottom:248.840000pt;}
.y36{bottom:252.840000pt;}
.y11b{bottom:260.306667pt;}
.y61{bottom:260.706667pt;}
.y141{bottom:263.893333pt;}
.y178{bottom:264.840000pt;}
.y85{bottom:265.506667pt;}
.ycb{bottom:266.960000pt;}
.yea{bottom:267.373333pt;}
.y92{bottom:270.040000pt;}
.y35{bottom:274.040000pt;}
.y140{bottom:280.840000pt;}
.y11a{bottom:281.506667pt;}
.y177{bottom:281.640000pt;}
.y60{bottom:281.893333pt;}
.y84{bottom:286.573333pt;}
.yca{bottom:288.173333pt;}
.ye9{bottom:288.573333pt;}
.y91{bottom:291.226667pt;}
.y34{bottom:295.240000pt;}
.y13f{bottom:297.626667pt;}
.y176{bottom:298.573333pt;}
.y119{bottom:302.706667pt;}
.y5f{bottom:303.106667pt;}
.y83{bottom:307.773333pt;}
.yc9{bottom:309.373333pt;}
.ye8{bottom:309.773333pt;}
.y90{bottom:312.440000pt;}
.y13e{bottom:314.560000pt;}
.y175{bottom:315.373333pt;}
.y33{bottom:316.440000pt;}
.y118{bottom:323.773333pt;}
.y5e{bottom:324.173333pt;}
.y82{bottom:328.973333pt;}
.yc8{bottom:330.440000pt;}
.ye7{bottom:330.840000pt;}
.y13d{bottom:331.373333pt;}
.y174{bottom:332.306667pt;}
.y8f{bottom:333.506667pt;}
.y32{bottom:337.533333pt;}
.y117{bottom:345.000000pt;}
.y5d{bottom:345.400000pt;}
.y13c{bottom:348.333333pt;}
.y173{bottom:349.133333pt;}
.y81{bottom:350.200000pt;}
.y8e{bottom:351.266667pt;}
.yc7{bottom:351.666667pt;}
.ye6{bottom:352.066667pt;}
.y31{bottom:358.733333pt;}
.y13b{bottom:365.133333pt;}
.y172{bottom:366.066667pt;}
.y116{bottom:366.200000pt;}
.y5c{bottom:366.600000pt;}
.y80{bottom:371.266667pt;}
.yc6{bottom:372.866667pt;}
.ye5{bottom:373.266667pt;}
.y13a{bottom:382.066667pt;}
.y171{bottom:382.866667pt;}
.y115{bottom:387.266667pt;}
.y5b{bottom:387.666667pt;}
.y30{bottom:387.800000pt;}
.y7f{bottom:392.466667pt;}
.yc5{bottom:393.933333pt;}
.ye4{bottom:394.466667pt;}
.y139{bottom:398.866667pt;}
.y170{bottom:399.800000pt;}
.y2f{bottom:402.733333pt;}
.y114{bottom:408.466667pt;}
.y5a{bottom:408.866667pt;}
.y7e{bottom:413.666667pt;}
.yc4{bottom:415.133333pt;}
.ye3{bottom:415.533333pt;}
.y138{bottom:415.666667pt;}
.y16f{bottom:416.600000pt;}
.y113{bottom:429.666667pt;}
.y59{bottom:430.066667pt;}
.y137{bottom:432.600000pt;}
.y16e{bottom:433.533333pt;}
.y7d{bottom:434.733333pt;}
.yc3{bottom:436.333333pt;}
.ye2{bottom:436.733333pt;}
.y2e{bottom:439.533333pt;}
.y136{bottom:449.400000pt;}
.y16d{bottom:450.333333pt;}
.y112{bottom:450.733333pt;}
.y58{bottom:451.133333pt;}
.y7c{bottom:455.933333pt;}
.yc2{bottom:457.533333pt;}
.y24{bottom:457.933333pt;}
.y135{bottom:466.333333pt;}
.y16c{bottom:467.266667pt;}
.y111{bottom:471.933333pt;}
.y57{bottom:472.333333pt;}
.y7b{bottom:477.133333pt;}
.yc1{bottom:478.600000pt;}
.ye1{bottom:479.000000pt;}
.y134{bottom:483.133333pt;}
.y16b{bottom:484.066667pt;}
.y110{bottom:493.133333pt;}
.y56{bottom:493.533333pt;}
.y7a{bottom:498.200000pt;}
.yc0{bottom:499.800000pt;}
.y133{bottom:500.066667pt;}
.ye0{bottom:500.200000pt;}
.y16a{bottom:501.000000pt;}
.y10f{bottom:514.200000pt;}
.y55{bottom:514.733333pt;}
.y132{bottom:516.866667pt;}
.y169{bottom:517.800000pt;}
.y79{bottom:519.400000pt;}
.ybf{bottom:521.000000pt;}
.ydf{bottom:521.400000pt;}
.y131{bottom:533.800000pt;}
.y168{bottom:534.733333pt;}
.y10e{bottom:535.400000pt;}
.y54{bottom:535.800000pt;}
.y78{bottom:540.600000pt;}
.ybe{bottom:542.066667pt;}
.yde{bottom:542.466667pt;}
.y130{bottom:550.600000pt;}
.y167{bottom:551.533333pt;}
.y10d{bottom:556.600000pt;}
.y53{bottom:557.000000pt;}
.y77{bottom:561.666667pt;}
.ybd{bottom:563.266667pt;}
.ydd{bottom:563.666667pt;}
.y12f{bottom:567.533333pt;}
.y166{bottom:568.466667pt;}
.y10c{bottom:577.666667pt;}
.y52{bottom:578.200000pt;}
.y76{bottom:582.866667pt;}
.y12e{bottom:584.333333pt;}
.ybc{bottom:584.466667pt;}
.ydc{bottom:584.866667pt;}
.y165{bottom:585.266667pt;}
.y10b{bottom:598.866667pt;}
.y51{bottom:599.266667pt;}
.y12d{bottom:601.266667pt;}
.y164{bottom:602.200000pt;}
.y75{bottom:604.066667pt;}
.ybb{bottom:605.533333pt;}
.ydb{bottom:605.933333pt;}
.y12c{bottom:618.066667pt;}
.y163{bottom:619.000000pt;}
.y10a{bottom:620.066667pt;}
.y50{bottom:620.466667pt;}
.y74{bottom:625.133333pt;}
.y23{bottom:626.733333pt;}
.yda{bottom:627.133333pt;}
.y12b{bottom:635.000000pt;}
.y162{bottom:635.933333pt;}
.y109{bottom:641.266667pt;}
.y4f{bottom:641.666667pt;}
.y22{bottom:643.800000pt;}
.y73{bottom:646.333333pt;}
.yba{bottom:647.933333pt;}
.yd9{bottom:648.333333pt;}
.y12a{bottom:651.800000pt;}
.y161{bottom:652.733333pt;}
.y21{bottom:662.240000pt;}
.y108{bottom:662.373333pt;}
.y4e{bottom:662.773333pt;}
.y72{bottom:667.573333pt;}
.y129{bottom:668.773333pt;}
.yb9{bottom:669.040000pt;}
.yd8{bottom:669.440000pt;}
.y160{bottom:669.706667pt;}
.y20{bottom:680.640000pt;}
.y107{bottom:683.573333pt;}
.y4d{bottom:683.973333pt;}
.y128{bottom:685.573333pt;}
.y15f{bottom:686.506667pt;}
.y71{bottom:688.640000pt;}
.yb8{bottom:690.240000pt;}
.yd7{bottom:690.640000pt;}
.y1f{bottom:699.040000pt;}
.y127{bottom:702.506667pt;}
.y15e{bottom:703.440000pt;}
.y106{bottom:704.773333pt;}
.y4c{bottom:705.173333pt;}
.y70{bottom:709.840000pt;}
.yb7{bottom:711.440000pt;}
.yd6{bottom:711.840000pt;}
.y1e{bottom:717.440000pt;}
.y126{bottom:719.293333pt;}
.y15d{bottom:720.240000pt;}
.y105{bottom:725.840000pt;}
.y4b{bottom:726.240000pt;}
.y6f{bottom:731.040000pt;}
.yb6{bottom:732.506667pt;}
.yd5{bottom:732.906667pt;}
.y1d{bottom:735.840000pt;}
.y125{bottom:736.240000pt;}
.y15c{bottom:737.173333pt;}
.y104{bottom:747.040000pt;}
.y4a{bottom:747.440000pt;}
.yd4{bottom:750.640000pt;}
.y6e{bottom:752.240000pt;}
.y124{bottom:753.040000pt;}
.yb5{bottom:753.706667pt;}
.y15b{bottom:753.973333pt;}
.y1c{bottom:754.240000pt;}
.y103{bottom:768.240000pt;}
.y49{bottom:768.640000pt;}
.y123{bottom:769.960000pt;}
.y15a{bottom:770.906667pt;}
.y1b{bottom:772.640000pt;}
.y6d{bottom:773.306667pt;}
.yb4{bottom:774.906667pt;}
.y159{bottom:787.706667pt;}
.y102{bottom:789.306667pt;}
.y48{bottom:789.706667pt;}
.y1a{bottom:791.040000pt;}
.y6c{bottom:794.506667pt;}
.yb3{bottom:796.106667pt;}
.y158{bottom:804.640000pt;}
.y19{bottom:809.440000pt;}
.y101{bottom:810.506667pt;}
.y47{bottom:810.906667pt;}
.y6b{bottom:815.706667pt;}
.yb0{bottom:817.133333pt;}
.yb2{bottom:817.173333pt;}
.y157{bottom:821.440000pt;}
.y18{bottom:827.840000pt;}
.y100{bottom:831.706667pt;}
.y46{bottom:832.106667pt;}
.y6a{bottom:836.773333pt;}
.y156{bottom:838.373333pt;}
.yad{bottom:843.399928pt;}
.yaf{bottom:843.440000pt;}
.y17{bottom:846.240000pt;}
.yff{bottom:852.773333pt;}
.y45{bottom:853.306667pt;}
.y69{bottom:854.506667pt;}
.y155{bottom:855.173333pt;}
.y16{bottom:864.640000pt;}
.yac{bottom:867.840000pt;}
.y154{bottom:872.106667pt;}
.yfe{bottom:873.973333pt;}
.y44{bottom:874.373333pt;}
.y15{bottom:883.040000pt;}
.y153{bottom:888.906667pt;}
.ya9{bottom:888.999928pt;}
.yab{bottom:889.040000pt;}
.yfd{bottom:895.173333pt;}
.y43{bottom:895.573333pt;}
.y14{bottom:901.440000pt;}
.y152{bottom:905.840000pt;}
.ya8{bottom:915.306667pt;}
.yfc{bottom:916.240000pt;}
.y42{bottom:916.773333pt;}
.y13{bottom:919.840000pt;}
.y151{bottom:922.640000pt;}
.ya5{bottom:936.333261pt;}
.ya7{bottom:936.373333pt;}
.yfb{bottom:937.440000pt;}
.y41{bottom:937.840000pt;}
.y12{bottom:938.240000pt;}
.y150{bottom:939.573333pt;}
.y14f{bottom:956.373333pt;}
.y11{bottom:956.640000pt;}
.yfa{bottom:958.640000pt;}
.y40{bottom:959.040000pt;}
.ya1{bottom:960.999928pt;}
.ya4{bottom:961.040000pt;}
.y14e{bottom:973.306667pt;}
.yf9{bottom:979.866667pt;}
.y3f{bottom:980.266667pt;}
.y10{bottom:985.733333pt;}
.y9a{bottom:988.733261pt;}
.ya0{bottom:988.800000pt;}
.y14d{bottom:990.133333pt;}
.yf8{bottom:1000.933333pt;}
.y3e{bottom:1001.333333pt;}
.yf{bottom:1004.133333pt;}
.y14c{bottom:1007.066667pt;}
.yf7{bottom:1022.266667pt;}
.ye{bottom:1022.533333pt;}
.y14b{bottom:1023.866667pt;}
.y1{bottom:1046.133333pt;}
.y4{bottom:1068.933333pt;}
.y8{bottom:1073.600000pt;}
.h8{height:15.900000pt;}
.h1a{height:18.266769pt;}
.h10{height:18.400000pt;}
.h1e{height:20.000207pt;}
.h1c{height:20.000280pt;}
.h17{height:25.066481pt;}
.h11{height:36.800000pt;}
.h6{height:40.266667pt;}
.h22{height:41.135417pt;}
.h18{height:41.552719pt;}
.h14{height:42.955163pt;}
.h3{height:43.200000pt;}
.hf{height:44.875000pt;}
.ha{height:45.156250pt;}
.h20{height:46.781250pt;}
.h7{height:47.109375pt;}
.h13{height:48.665324pt;}
.h5{height:49.726562pt;}
.h4{height:52.343750pt;}
.h16{height:52.694792pt;}
.hd{height:57.578125pt;}
.h9{height:58.351562pt;}
.h23{height:59.125000pt;}
.h21{height:60.300089pt;}
.h12{height:62.781250pt;}
.hc{height:62.812500pt;}
.hb{height:64.500000pt;}
.h1b{height:70.277764pt;}
.h19{height:71.796168pt;}
.h1d{height:71.937595pt;}
.h1f{height:72.060890pt;}
.h2{height:73.281250pt;}
.h15{height:74.447143pt;}
.he{height:165.600000pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.wa{width:26.933927pt;}
.wb{width:29.066409pt;}
.wc{width:31.999877pt;}
.w6{width:158.533333pt;}
.w9{width:197.730248pt;}
.w5{width:233.773333pt;}
.w3{width:251.106667pt;}
.w4{width:264.693333pt;}
.w7{width:662.906667pt;}
.w8{width:666.906667pt;}
.w2{width:793.733322pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x27{left:1.218444pt;}
.x28{left:2.925638pt;}
.x24{left:3.837279pt;}
.x4{left:6.133333pt;}
.x9{left:11.053333pt;}
.x7{left:14.400000pt;}
.xe{left:15.373333pt;}
.x1d{left:18.566667pt;}
.x5{left:19.733333pt;}
.xb{left:28.533333pt;}
.x3{left:37.866655pt;}
.x2b{left:61.733322pt;}
.x10{left:77.066655pt;}
.x1e{left:85.066655pt;}
.x23{left:86.353319pt;}
.x1c{left:89.066667pt;}
.x1b{left:93.066667pt;}
.xd{left:95.093333pt;}
.x6{left:108.166667pt;}
.x25{left:112.150248pt;}
.xa{left:113.893333pt;}
.x29{left:117.099988pt;}
.x1{left:269.773322pt;}
.x8{left:271.240000pt;}
.x26{left:282.839988pt;}
.x11{left:295.773322pt;}
.x22{left:382.333322pt;}
.x21{left:387.933322pt;}
.x1f{left:406.466655pt;}
.x14{left:413.266655pt;}
.x2c{left:430.333322pt;}
.x13{left:434.866655pt;}
.x20{left:453.666655pt;}
.x18{left:477.399988pt;}
.x1a{left:483.666655pt;}
.x12{left:493.399988pt;}
.x19{left:534.733322pt;}
.xc{left:555.933333pt;}
.x15{left:583.306655pt;}
.x16{left:610.359988pt;}
.xf{left:634.360000pt;}
.x2{left:728.106655pt;}
.x17{left:756.106655pt;}
.x2a{left:760.506655pt;}
}




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