
    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_e53e7fd947bcd5c06fc104d0.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_2554aa47d05f1315b2c95455.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_6ce3acefbbc51817089e8244.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_cea62660c0262525ebde23d5.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.768555;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_7a0292797e4a2ed0ff3991f9.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.112305;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_26d31bf3fda0fa202b2f253b.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.201172;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_3c17259dd0573f9bf7e7a19c.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.766602;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_a3aa091bcee88bcb8ac5b59f.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_9963c45b7767fc8062825f01.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_2ac808ca8f0b6bc82fee0813.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_b39553c1cf6b406ab374ab71.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;}
@font-face{font-family:ffc;src:url('chunks/assets/font_2585249f8d714b483c0fee68.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(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);}
.v1{vertical-align:-82.800000px;}
.v0{vertical-align:0.000000px;}
.ls7{letter-spacing:-1.872000px;}
.ls27{letter-spacing:-0.504000px;}
.ls24{letter-spacing:-0.413400px;}
.ls2e{letter-spacing:-0.360000px;}
.ls33{letter-spacing:-0.288000px;}
.ls1a{letter-spacing:-0.270000px;}
.ls15{letter-spacing:-0.216000px;}
.ls5{letter-spacing:-0.180000px;}
.ls8{letter-spacing:-0.144000px;}
.ls1e{letter-spacing:-0.114600px;}
.ls23{letter-spacing:-0.053280px;}
.ls22{letter-spacing:-0.027360px;}
.ls4{letter-spacing:-0.010440px;}
.ls3{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.021960px;}
.ls1{letter-spacing:0.048000px;}
.ls1b{letter-spacing:0.072000px;}
.lsb{letter-spacing:0.078600px;}
.ls2{letter-spacing:0.090000px;}
.ls11{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.180000px;}
.lsc{letter-spacing:0.192000px;}
.ls14{letter-spacing:0.216000px;}
.ls9{letter-spacing:0.262800px;}
.ls19{letter-spacing:0.264000px;}
.ls28{letter-spacing:0.360000px;}
.ls6{letter-spacing:0.432000px;}
.ls13{letter-spacing:0.540000px;}
.ls16{letter-spacing:0.720000px;}
.ls32{letter-spacing:1.080000px;}
.ls36{letter-spacing:1.800000px;}
.ls1c{letter-spacing:1.890000px;}
.ls2d{letter-spacing:2.970000px;}
.ls37{letter-spacing:5.040000px;}
.ls29{letter-spacing:5.130000px;}
.ls30{letter-spacing:5.490000px;}
.ls1d{letter-spacing:5.580000px;}
.ls17{letter-spacing:6.330000px;}
.ls2b{letter-spacing:7.290000px;}
.ls2a{letter-spacing:7.650000px;}
.ls31{letter-spacing:9.720000px;}
.ls2c{letter-spacing:9.810000px;}
.ls1f{letter-spacing:11.700000px;}
.ls34{letter-spacing:13.680000px;}
.ls2f{letter-spacing:14.400000px;}
.lse{letter-spacing:14.610000px;}
.ls12{letter-spacing:18.900000px;}
.lsa{letter-spacing:31.911120px;}
.ls21{letter-spacing:41.246640px;}
.ls20{letter-spacing:44.846640px;}
.ls25{letter-spacing:63.864000px;}
.ls26{letter-spacing:67.440000px;}
.ls18{letter-spacing:109.560000px;}
.lsd{letter-spacing:109.920000px;}
.ls10{letter-spacing:111.090000px;}
.ls35{letter-spacing:826.320000px;}
.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;}
}
.wsa{word-spacing:-18.144000px;}
.ws0{word-spacing:-18.000000px;}
.wsb{word-spacing:-17.784000px;}
.wsd{word-spacing:-17.496000px;}
.ws9{word-spacing:-16.491960px;}
.ws8{word-spacing:-15.210000px;}
.ws1{word-spacing:-15.030000px;}
.wsc{word-spacing:-14.976720px;}
.ws6{word-spacing:-14.967480px;}
.ws2{word-spacing:-14.850000px;}
.ws7{word-spacing:-14.220000px;}
.wse{word-spacing:-14.192640px;}
.ws4{word-spacing:-12.636000px;}
.ws3{word-spacing:-12.204000px;}
.wsf{word-spacing:-11.970000px;}
.ws5{word-spacing:0.000000px;}
._30{margin-left:-14.568000px;}
._33{margin-left:-13.500000px;}
._31{margin-left:-10.455600px;}
._28{margin-left:-4.752000px;}
._12{margin-left:-3.744000px;}
._a{margin-left:-2.091840px;}
._9{margin-left:-1.057320px;}
._4{width:1.826280px;}
._5{width:2.883600px;}
._b{width:3.885120px;}
._6{width:5.304000px;}
._2{width:6.343920px;}
._3{width:7.512960px;}
._d{width:8.833320px;}
._c{width:9.882000px;}
._e{width:10.974000px;}
._18{width:12.012000px;}
._11{width:13.248000px;}
._10{width:14.832000px;}
._23{width:15.912000px;}
._14{width:16.920000px;}
._1c{width:18.216480px;}
._13{width:19.224000px;}
._25{width:20.232000px;}
._15{width:21.240000px;}
._20{width:22.347840px;}
._24{width:23.688000px;}
._21{width:25.344000px;}
._1f{width:26.352000px;}
._f{width:28.152000px;}
._1d{width:29.880000px;}
._27{width:31.752000px;}
._26{width:32.760000px;}
._1a{width:34.512000px;}
._19{width:35.544000px;}
._1b{width:36.889560px;}
._32{width:39.312000px;}
._2c{width:41.232240px;}
._2b{width:42.570000px;}
._1e{width:44.136000px;}
._22{width:45.360000px;}
._2f{width:48.168000px;}
._29{width:49.896000px;}
._2a{width:51.552000px;}
._2d{width:56.592000px;}
._2e{width:61.488000px;}
._7{width:70.455960px;}
._8{width:71.609400px;}
._16{width:243.156000px;}
._0{width:805.260000px;}
._17{width:1554.951840px;}
._1{width:1748.340000px;}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(127,127,127);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:38.880000px;}
.fs8{font-size:42.120000px;}
.fs6{font-size:47.880000px;}
.fs1{font-size:54.000000px;}
.fs4{font-size:56.880000px;}
.fs5{font-size:60.120000px;}
.fs0{font-size:65.880000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:96.120000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000092px;}
.y5{bottom:45.359908px;}
.y4{bottom:60.869908px;}
.y3{bottom:76.439908px;}
.y59{bottom:96.689908px;}
.y11b{bottom:98.039908px;}
.y107{bottom:99.839908px;}
.y88{bottom:101.909908px;}
.y80{bottom:103.259908px;}
.y2d{bottom:107.939908px;}
.y58{bottom:113.969908px;}
.y9e{bottom:114.329908px;}
.y105{bottom:115.139908px;}
.y11a{bottom:118.739908px;}
.y99{bottom:119.189908px;}
.y106{bottom:120.269908px;}
.y104{bottom:121.169908px;}
.y7f{bottom:123.959908px;}
.y57{bottom:131.159908px;}
.y148{bottom:131.609908px;}
.y103{bottom:134.129908px;}
.y2c{bottom:134.399908px;}
.y56{bottom:136.379908px;}
.y9d{bottom:139.439908px;}
.y7e{bottom:144.659908px;}
.y55{bottom:148.439908px;}
.y109{bottom:148.799908px;}
.yd7{bottom:149.609908px;}
.y2b{bottom:150.869908px;}
.y102{bottom:151.319908px;}
.y141{bottom:151.589908px;}
.y10e{bottom:153.659908px;}
.yd6{bottom:155.639908px;}
.y9c{bottom:160.139908px;}
.y7d{bottom:165.359908px;}
.y54{bottom:165.719908px;}
.y11f{bottom:166.079908px;}
.y2a{bottom:167.339908px;}
.yd5{bottom:168.599908px;}
.y53{bottom:170.939908px;}
.y9b{bottom:180.839908px;}
.y96{bottom:182.909908px;}
.y52{bottom:183.359908px;}
.y29{bottom:183.809908px;}
.y101{bottom:185.879908px;}
.y7c{bottom:186.059908px;}
.yd4{bottom:187.049908px;}
.y110{bottom:187.589908px;}
.ya2{bottom:188.129908px;}
.y140{bottom:192.989908px;}
.yd3{bottom:193.079908px;}
.y95{bottom:200.189908px;}
.y28{bottom:200.279908px;}
.yb1{bottom:200.549908px;}
.y87{bottom:201.539908px;}
.y100{bottom:203.069908px;}
.y94{bottom:205.409908px;}
.yd2{bottom:206.309908px;}
.y7b{bottom:206.759908px;}
.y11c{bottom:207.569908px;}
.y98{bottom:208.289908px;}
.y51{bottom:209.909908px;}
.y13f{bottom:213.599908px;}
.y27{bottom:216.839908px;}
.y93{bottom:217.469908px;}
.y9a{bottom:217.829908px;}
.yff{bottom:220.349908px;}
.y86{bottom:222.239908px;}
.ya1{bottom:222.689908px;}
.yb0{bottom:223.949908px;}
.y7a{bottom:227.459908px;}
.y50{bottom:228.899908px;}
.y10d{bottom:228.989908px;}
.yd1{bottom:232.589908px;}
.y26{bottom:233.309908px;}
.y13e{bottom:234.299908px;}
.y92{bottom:234.659908px;}
.ya0{bottom:235.019908px;}
.yfe{bottom:237.629908px;}
.y91{bottom:239.879908px;}
.y84{bottom:242.939908px;}
.yaf{bottom:244.649908px;}
.y4f{bottom:247.889908px;}
.y79{bottom:248.159908px;}
.y85{bottom:248.969908px;}
.y120{bottom:249.689908px;}
.y25{bottom:249.779908px;}
.y90{bottom:251.939908px;}
.y114{bottom:252.299908px;}
.yd0{bottom:253.289908px;}
.yfd{bottom:254.819908px;}
.y13d{bottom:254.999908px;}
.y14f{bottom:257.159908px;}
.y83{bottom:263.639908px;}
.yae{bottom:265.349908px;}
.y24{bottom:266.249908px;}
.y4e{bottom:266.879908px;}
.y78{bottom:268.859908px;}
.y8f{bottom:269.219908px;}
.yfc{bottom:272.099908px;}
.yce{bottom:273.989908px;}
.y8e{bottom:274.439908px;}
.y13c{bottom:275.699908px;}
.ycf{bottom:280.739908px;}
.y23{bottom:282.719908px;}
.y82{bottom:284.339908px;}
.y4d{bottom:285.779908px;}
.yad{bottom:286.049908px;}
.ye8{bottom:286.409908px;}
.y8d{bottom:286.769908px;}
.yfb{bottom:289.289908px;}
.y77{bottom:289.559908px;}
.y14e{bottom:291.629908px;}
.yfa{bottom:294.509908px;}
.ycd{bottom:294.689908px;}
.y13b{bottom:296.399908px;}
.y22{bottom:299.189908px;}
.ye7{bottom:303.689908px;}
.y14d{bottom:304.049908px;}
.y4c{bottom:305.039908px;}
.yf9{bottom:306.569908px;}
.yac{bottom:306.749908px;}
.y145{bottom:308.909908px;}
.y76{bottom:310.259908px;}
.y117{bottom:311.789908px;}
.ycc{bottom:315.389908px;}
.y21{bottom:315.659908px;}
.y13a{bottom:317.099908px;}
.ye6{bottom:320.969908px;}
.y144{bottom:321.329908px;}
.yf8{bottom:323.849908px;}
.y4b{bottom:325.739908px;}
.yab{bottom:327.449908px;}
.y75{bottom:330.959908px;}
.y147{bottom:331.769908px;}
.y20{bottom:332.129908px;}
.ycb{bottom:336.089908px;}
.y139{bottom:337.799908px;}
.ye5{bottom:338.159908px;}
.yf7{bottom:341.039908px;}
.yf6{bottom:346.259908px;}
.y4a{bottom:346.439908px;}
.ya9{bottom:348.149908px;}
.y1f{bottom:348.599908px;}
.y74{bottom:351.659908px;}
.y14c{bottom:353.189908px;}
.yaa{bottom:354.899908px;}
.ye4{bottom:355.439908px;}
.yca{bottom:356.789908px;}
.yf5{bottom:358.319908px;}
.y138{bottom:358.499908px;}
.y1e{bottom:365.069908px;}
.y49{bottom:367.139908px;}
.ya8{bottom:368.849908px;}
.y73{bottom:372.359908px;}
.ye3{bottom:372.719908px;}
.y113{bottom:373.169908px;}
.yf4{bottom:375.599908px;}
.yc9{bottom:377.489908px;}
.y137{bottom:379.199908px;}
.y1d{bottom:381.629908px;}
.y48{bottom:387.839908px;}
.ya7{bottom:389.549908px;}
.ye2{bottom:389.909908px;}
.yf3{bottom:392.789908px;}
.y72{bottom:393.059908px;}
.y8c{bottom:394.589908px;}
.y1c{bottom:398.099908px;}
.yc8{bottom:398.189908px;}
.y136{bottom:399.899908px;}
.ye1{bottom:407.189908px;}
.y47{bottom:408.539908px;}
.yf2{bottom:410.069908px;}
.y71{bottom:413.759908px;}
.y1b{bottom:414.569908px;}
.y112{bottom:415.289908px;}
.yc7{bottom:418.889908px;}
.y135{bottom:420.599908px;}
.ye0{bottom:424.469908px;}
.yf1{bottom:427.349908px;}
.y46{bottom:429.239908px;}
.ya6{bottom:430.949908px;}
.y1a{bottom:431.039908px;}
.y70{bottom:434.459908px;}
.y119{bottom:435.989908px;}
.yc5{bottom:439.589908px;}
.y134{bottom:441.299908px;}
.ydf{bottom:441.659908px;}
.yf0{bottom:444.539908px;}
.yc6{bottom:446.339908px;}
.y19{bottom:447.509908px;}
.y44{bottom:449.969908px;}
.ya5{bottom:451.679908px;}
.y6f{bottom:455.189908px;}
.y45{bottom:456.719908px;}
.yde{bottom:458.969908px;}
.yc4{bottom:460.319908px;}
.yef{bottom:461.849908px;}
.y133{bottom:462.029908px;}
.y18{bottom:463.649908px;}
.ydd{bottom:464.189908px;}
.y43{bottom:470.669908px;}
.ya4{bottom:472.109908px;}
.y6e{bottom:475.889908px;}
.ydc{bottom:476.159908px;}
.y10c{bottom:476.699908px;}
.y97{bottom:477.419908px;}
.yee{bottom:479.129908px;}
.y17{bottom:480.929908px;}
.yc3{bottom:481.019908px;}
.y132{bottom:482.729908px;}
.y42{bottom:491.369908px;}
.ydb{bottom:494.609908px;}
.yed{bottom:496.319908px;}
.y6d{bottom:496.589908px;}
.y108{bottom:497.399908px;}
.y16{bottom:498.119908px;}
.yda{bottom:500.639908px;}
.yc2{bottom:501.719908px;}
.y131{bottom:503.429908px;}
.y41{bottom:512.069908px;}
.yec{bottom:513.599908px;}
.yd9{bottom:513.959908px;}
.y15{bottom:515.399908px;}
.y6c{bottom:517.289908px;}
.y116{bottom:518.099908px;}
.y10b{bottom:518.819908px;}
.yc1{bottom:522.419908px;}
.y130{bottom:524.129908px;}
.yeb{bottom:531.239908px;}
.y14{bottom:532.679908px;}
.y40{bottom:532.769908px;}
.y6b{bottom:537.989908px;}
.y11e{bottom:538.799908px;}
.y81{bottom:539.519908px;}
.yc0{bottom:543.119908px;}
.y12f{bottom:544.829908px;}
.y13{bottom:549.869908px;}
.y3f{bottom:553.469908px;}
.y6a{bottom:558.599908px;}
.y143{bottom:560.219908px;}
.ybf{bottom:563.819908px;}
.y12e{bottom:565.529908px;}
.y12{bottom:567.149908px;}
.y3e{bottom:574.169908px;}
.y69{bottom:579.299908px;}
.y8b{bottom:580.919908px;}
.y11{bottom:584.429908px;}
.ybe{bottom:584.519908px;}
.y12d{bottom:586.229908px;}
.y3d{bottom:594.869908px;}
.y68{bottom:599.999908px;}
.y10{bottom:601.619908px;}
.ybd{bottom:605.219908px;}
.y12c{bottom:606.929908px;}
.y3c{bottom:615.569908px;}
.yf{bottom:618.899908px;}
.y67{bottom:620.699908px;}
.ybc{bottom:625.919908px;}
.y12b{bottom:627.629908px;}
.y3b{bottom:636.269908px;}
.ye{bottom:636.809908px;}
.y66{bottom:641.399908px;}
.y146{bottom:642.299908px;}
.y11d{bottom:643.019908px;}
.ybb{bottom:646.619908px;}
.y12a{bottom:648.329908px;}
.y3a{bottom:656.969908px;}
.y65{bottom:662.099908px;}
.y10f{bottom:662.999908px;}
.y9f{bottom:663.719908px;}
.y129{bottom:669.029908px;}
.yd{bottom:673.529908px;}
.y39{bottom:677.669908px;}
.y64{bottom:682.799908px;}
.y111{bottom:683.699908px;}
.y14b{bottom:684.419908px;}
.yba{bottom:688.019908px;}
.y128{bottom:689.729908px;}
.y38{bottom:698.369908px;}
.yc{bottom:702.869908px;}
.y63{bottom:703.499908px;}
.y115{bottom:705.119908px;}
.yb9{bottom:708.719908px;}
.y127{bottom:710.429908px;}
.y37{bottom:719.069908px;}
.y62{bottom:724.199908px;}
.y10a{bottom:725.819908px;}
.yb8{bottom:729.419908px;}
.y126{bottom:731.129908px;}
.yb{bottom:732.209908px;}
.y36{bottom:739.769908px;}
.y61{bottom:744.899908px;}
.yea{bottom:746.519908px;}
.yb7{bottom:749.849908px;}
.y125{bottom:751.829908px;}
.y35{bottom:760.469908px;}
.ya{bottom:761.459908px;}
.y60{bottom:765.599908px;}
.ye9{bottom:767.219908px;}
.yb6{bottom:768.839908px;}
.y124{bottom:772.259908px;}
.y34{bottom:781.169908px;}
.y5f{bottom:786.299908px;}
.y142{bottom:787.199908px;}
.yb5{bottom:787.739908px;}
.y150{bottom:787.919908px;}
.y9{bottom:790.799908px;}
.y123{bottom:791.249908px;}
.y32{bottom:801.869908px;}
.yb4{bottom:806.729908px;}
.y5e{bottom:806.999908px;}
.y118{bottom:807.899908px;}
.y33{bottom:808.619908px;}
.y122{bottom:810.239908px;}
.y8{bottom:820.049908px;}
.y31{bottom:822.569908px;}
.yb3{bottom:825.719908px;}
.y14a{bottom:828.599908px;}
.y121{bottom:829.139908px;}
.y8a{bottom:829.319908px;}
.y89{bottom:843.299908px;}
.yb2{bottom:844.739908px;}
.y5d{bottom:848.159908px;}
.y7{bottom:849.419908px;}
.yd8{bottom:850.049908px;}
.y30{bottom:863.999908px;}
.y5c{bottom:867.149908px;}
.y151{bottom:870.749908px;}
.y6{bottom:878.669908px;}
.y2f{bottom:884.699908px;}
.y5b{bottom:886.139908px;}
.y149{bottom:890.729908px;}
.ya3{bottom:891.449908px;}
.y5a{bottom:916.739908px;}
.y2e{bottom:917.099908px;}
.y2{bottom:936.809908px;}
.h16{height:38.139609px;}
.he{height:38.158594px;}
.h12{height:41.893770px;}
.h10{height:46.968223px;}
.hc{height:46.991602px;}
.h4{height:52.998047px;}
.h9{height:53.709961px;}
.h13{height:53.896641px;}
.h8{height:55.291992px;}
.hf{height:58.975137px;}
.h7{height:59.004492px;}
.h14{height:61.793886px;}
.hd{height:64.546875px;}
.hb{height:64.657617px;}
.h3{height:65.526152px;}
.h11{height:70.628906px;}
.h6{height:70.664062px;}
.ha{height:72.562500px;}
.h15{height:74.004654px;}
.h5{height:95.603730px;}
.h2{height:1020.599908px;}
.h0{height:1020.600000px;}
.h1{height:1020.750000px;}
.w3{width:722.879978px;}
.w2{width:722.879989px;}
.w0{width:722.880000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x1{left:95.669989px;}
.x7{left:100.529989px;}
.x19{left:105.419989px;}
.x8{left:117.029989px;}
.x2b{left:122.699989px;}
.x4{left:127.649989px;}
.x13{left:149.699989px;}
.xf{left:151.679978px;}
.x31{left:154.559989px;}
.x10{left:157.709989px;}
.x1c{left:160.769989px;}
.x3d{left:162.659978px;}
.x1a{left:166.619978px;}
.x45{left:168.689978px;}
.x3b{left:170.759989px;}
.x66{left:172.739978px;}
.x3e{left:174.719989px;}
.x5f{left:177.239978px;}
.x1b{left:178.679989px;}
.x46{left:180.749989px;}
.x51{left:182.729989px;}
.x3c{left:183.809989px;}
.x47{left:187.679989px;}
.x60{left:189.299989px;}
.x67{left:197.669978px;}
.x20{left:199.649978px;}
.x68{left:209.729989px;}
.x21{left:211.709989px;}
.x79{left:214.139978px;}
.x7a{left:226.199989px;}
.x4d{left:232.679978px;}
.x62{left:238.349978px;}
.x6c{left:239.609978px;}
.x4f{left:241.049978px;}
.x35{left:243.569978px;}
.x4e{left:244.739989px;}
.x63{left:250.409989px;}
.x6d{left:251.669989px;}
.x50{left:253.109989px;}
.x36{left:255.629989px;}
.x48{left:265.169978px;}
.x49{left:277.229989px;}
.x24{left:279.659978px;}
.x27{left:286.949978px;}
.x1d{left:292.619978px;}
.x39{left:295.229978px;}
.x28{left:299.009989px;}
.x2e{left:301.709978px;}
.x1e{left:304.679989px;}
.x4b{left:305.759978px;}
.x3a{left:307.289989px;}
.x2f{left:313.769989px;}
.x4c{left:317.849989px;}
.x42{left:326.039989px;}
.x5c{left:329.099989px;}
.x76{left:337.829989px;}
.x14{left:349.529978px;}
.x25{left:350.609978px;}
.x15{left:355.559989px;}
.x3f{left:357.449978px;}
.x26{left:362.669989px;}
.x30{left:367.889989px;}
.x16{left:369.599978px;}
.x5d{left:377.699978px;}
.x17{left:381.659989px;}
.x5e{left:389.759989px;}
.x37{left:403.079978px;}
.xb{left:405.599978px;}
.x71{left:409.739978px;}
.xc{left:411.629989px;}
.x38{left:415.139989px;}
.x72{left:421.799989px;}
.x56{left:430.709978px;}
.x22{left:433.769978px;}
.x57{left:442.769989px;}
.x23{left:445.829989px;}
.x54{left:450.059978px;}
.x6a{left:459.689978px;}
.x55{left:462.119989px;}
.x5a{left:467.519978px;}
.x6b{left:471.749989px;}
.x5b{left:479.579989px;}
.xd{left:480.839978px;}
.xe{left:486.869989px;}
.x2c{left:489.209978px;}
.x1f{left:492.179989px;}
.x32{left:498.299989px;}
.x2d{left:501.269989px;}
.x75{left:503.609989px;}
.x58{left:515.759978px;}
.x9{left:520.079978px;}
.xa{left:526.109989px;}
.x59{left:527.819989px;}
.x4a{left:532.709989px;}
.x40{left:534.149978px;}
.x2{left:537.749978px;}
.x52{left:539.819978px;}
.x33{left:542.519978px;}
.x3{left:543.779989px;}
.x41{left:546.209989px;}
.x70{left:549.089989px;}
.x11{left:550.709978px;}
.x53{left:551.879989px;}
.x34{left:554.579989px;}
.x12{left:556.739989px;}
.x61{left:563.579989px;}
.x64{left:573.659978px;}
.x73{left:577.889978px;}
.x77{left:579.059978px;}
.x65{left:585.719989px;}
.x74{left:589.949989px;}
.x78{left:591.119989px;}
.x6e{left:592.919978px;}
.x43{left:594.179978px;}
.x69{left:597.419989px;}
.x6f{left:604.979989px;}
.x44{left:606.239989px;}
.x18{left:610.739978px;}
.x29{left:615.239978px;}
.x5{left:616.769978px;}
.x6{left:622.799989px;}
.x2a{left:627.299989px;}
@media print{
.v1{vertical-align:-73.600000pt;}
.v0{vertical-align:0.000000pt;}
.ls7{letter-spacing:-1.664000pt;}
.ls27{letter-spacing:-0.448000pt;}
.ls24{letter-spacing:-0.367467pt;}
.ls2e{letter-spacing:-0.320000pt;}
.ls33{letter-spacing:-0.256000pt;}
.ls1a{letter-spacing:-0.240000pt;}
.ls15{letter-spacing:-0.192000pt;}
.ls5{letter-spacing:-0.160000pt;}
.ls8{letter-spacing:-0.128000pt;}
.ls1e{letter-spacing:-0.101867pt;}
.ls23{letter-spacing:-0.047360pt;}
.ls22{letter-spacing:-0.024320pt;}
.ls4{letter-spacing:-0.009280pt;}
.ls3{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.019520pt;}
.ls1{letter-spacing:0.042667pt;}
.ls1b{letter-spacing:0.064000pt;}
.lsb{letter-spacing:0.069867pt;}
.ls2{letter-spacing:0.080000pt;}
.ls11{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.160000pt;}
.lsc{letter-spacing:0.170667pt;}
.ls14{letter-spacing:0.192000pt;}
.ls9{letter-spacing:0.233600pt;}
.ls19{letter-spacing:0.234667pt;}
.ls28{letter-spacing:0.320000pt;}
.ls6{letter-spacing:0.384000pt;}
.ls13{letter-spacing:0.480000pt;}
.ls16{letter-spacing:0.640000pt;}
.ls32{letter-spacing:0.960000pt;}
.ls36{letter-spacing:1.600000pt;}
.ls1c{letter-spacing:1.680000pt;}
.ls2d{letter-spacing:2.640000pt;}
.ls37{letter-spacing:4.480000pt;}
.ls29{letter-spacing:4.560000pt;}
.ls30{letter-spacing:4.880000pt;}
.ls1d{letter-spacing:4.960000pt;}
.ls17{letter-spacing:5.626667pt;}
.ls2b{letter-spacing:6.480000pt;}
.ls2a{letter-spacing:6.800000pt;}
.ls31{letter-spacing:8.640000pt;}
.ls2c{letter-spacing:8.720000pt;}
.ls1f{letter-spacing:10.400000pt;}
.ls34{letter-spacing:12.160000pt;}
.ls2f{letter-spacing:12.800000pt;}
.lse{letter-spacing:12.986667pt;}
.ls12{letter-spacing:16.800000pt;}
.lsa{letter-spacing:28.365440pt;}
.ls21{letter-spacing:36.663680pt;}
.ls20{letter-spacing:39.863680pt;}
.ls25{letter-spacing:56.768000pt;}
.ls26{letter-spacing:59.946667pt;}
.ls18{letter-spacing:97.386667pt;}
.lsd{letter-spacing:97.706667pt;}
.ls10{letter-spacing:98.746667pt;}
.ls35{letter-spacing:734.506667pt;}
.wsa{word-spacing:-16.128000pt;}
.ws0{word-spacing:-16.000000pt;}
.wsb{word-spacing:-15.808000pt;}
.wsd{word-spacing:-15.552000pt;}
.ws9{word-spacing:-14.659520pt;}
.ws8{word-spacing:-13.520000pt;}
.ws1{word-spacing:-13.360000pt;}
.wsc{word-spacing:-13.312640pt;}
.ws6{word-spacing:-13.304427pt;}
.ws2{word-spacing:-13.200000pt;}
.ws7{word-spacing:-12.640000pt;}
.wse{word-spacing:-12.615680pt;}
.ws4{word-spacing:-11.232000pt;}
.ws3{word-spacing:-10.848000pt;}
.wsf{word-spacing:-10.640000pt;}
.ws5{word-spacing:0.000000pt;}
._30{margin-left:-12.949333pt;}
._33{margin-left:-12.000000pt;}
._31{margin-left:-9.293867pt;}
._28{margin-left:-4.224000pt;}
._12{margin-left:-3.328000pt;}
._a{margin-left:-1.859413pt;}
._9{margin-left:-0.939840pt;}
._4{width:1.623360pt;}
._5{width:2.563200pt;}
._b{width:3.453440pt;}
._6{width:4.714667pt;}
._2{width:5.639040pt;}
._3{width:6.678187pt;}
._d{width:7.851840pt;}
._c{width:8.784000pt;}
._e{width:9.754667pt;}
._18{width:10.677333pt;}
._11{width:11.776000pt;}
._10{width:13.184000pt;}
._23{width:14.144000pt;}
._14{width:15.040000pt;}
._1c{width:16.192427pt;}
._13{width:17.088000pt;}
._25{width:17.984000pt;}
._15{width:18.880000pt;}
._20{width:19.864747pt;}
._24{width:21.056000pt;}
._21{width:22.528000pt;}
._1f{width:23.424000pt;}
._f{width:25.024000pt;}
._1d{width:26.560000pt;}
._27{width:28.224000pt;}
._26{width:29.120000pt;}
._1a{width:30.677333pt;}
._19{width:31.594667pt;}
._1b{width:32.790720pt;}
._32{width:34.944000pt;}
._2c{width:36.650880pt;}
._2b{width:37.840000pt;}
._1e{width:39.232000pt;}
._22{width:40.320000pt;}
._2f{width:42.816000pt;}
._29{width:44.352000pt;}
._2a{width:45.824000pt;}
._2d{width:50.304000pt;}
._2e{width:54.656000pt;}
._7{width:62.627520pt;}
._8{width:63.652800pt;}
._16{width:216.138667pt;}
._0{width:715.786667pt;}
._17{width:1382.179413pt;}
._1{width:1554.080000pt;}
.fs7{font-size:34.560000pt;}
.fs8{font-size:37.440000pt;}
.fs6{font-size:42.560000pt;}
.fs1{font-size:48.000000pt;}
.fs4{font-size:50.560000pt;}
.fs5{font-size:53.440000pt;}
.fs0{font-size:58.560000pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:85.440000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000081pt;}
.y5{bottom:40.319919pt;}
.y4{bottom:54.106585pt;}
.y3{bottom:67.946585pt;}
.y59{bottom:85.946585pt;}
.y11b{bottom:87.146585pt;}
.y107{bottom:88.746585pt;}
.y88{bottom:90.586585pt;}
.y80{bottom:91.786585pt;}
.y2d{bottom:95.946585pt;}
.y58{bottom:101.306585pt;}
.y9e{bottom:101.626585pt;}
.y105{bottom:102.346585pt;}
.y11a{bottom:105.546585pt;}
.y99{bottom:105.946585pt;}
.y106{bottom:106.906585pt;}
.y104{bottom:107.706585pt;}
.y7f{bottom:110.186585pt;}
.y57{bottom:116.586585pt;}
.y148{bottom:116.986585pt;}
.y103{bottom:119.226585pt;}
.y2c{bottom:119.466585pt;}
.y56{bottom:121.226585pt;}
.y9d{bottom:123.946585pt;}
.y7e{bottom:128.586585pt;}
.y55{bottom:131.946585pt;}
.y109{bottom:132.266585pt;}
.yd7{bottom:132.986585pt;}
.y2b{bottom:134.106585pt;}
.y102{bottom:134.506585pt;}
.y141{bottom:134.746585pt;}
.y10e{bottom:136.586585pt;}
.yd6{bottom:138.346585pt;}
.y9c{bottom:142.346585pt;}
.y7d{bottom:146.986585pt;}
.y54{bottom:147.306585pt;}
.y11f{bottom:147.626585pt;}
.y2a{bottom:148.746585pt;}
.yd5{bottom:149.866585pt;}
.y53{bottom:151.946585pt;}
.y9b{bottom:160.746585pt;}
.y96{bottom:162.586585pt;}
.y52{bottom:162.986585pt;}
.y29{bottom:163.386585pt;}
.y101{bottom:165.226585pt;}
.y7c{bottom:165.386585pt;}
.yd4{bottom:166.266585pt;}
.y110{bottom:166.746585pt;}
.ya2{bottom:167.226585pt;}
.y140{bottom:171.546585pt;}
.yd3{bottom:171.626585pt;}
.y95{bottom:177.946585pt;}
.y28{bottom:178.026585pt;}
.yb1{bottom:178.266585pt;}
.y87{bottom:179.146585pt;}
.y100{bottom:180.506585pt;}
.y94{bottom:182.586585pt;}
.yd2{bottom:183.386585pt;}
.y7b{bottom:183.786585pt;}
.y11c{bottom:184.506585pt;}
.y98{bottom:185.146585pt;}
.y51{bottom:186.586585pt;}
.y13f{bottom:189.866585pt;}
.y27{bottom:192.746585pt;}
.y93{bottom:193.306585pt;}
.y9a{bottom:193.626585pt;}
.yff{bottom:195.866585pt;}
.y86{bottom:197.546585pt;}
.ya1{bottom:197.946585pt;}
.yb0{bottom:199.066585pt;}
.y7a{bottom:202.186585pt;}
.y50{bottom:203.466585pt;}
.y10d{bottom:203.546585pt;}
.yd1{bottom:206.746585pt;}
.y26{bottom:207.386585pt;}
.y13e{bottom:208.266585pt;}
.y92{bottom:208.586585pt;}
.ya0{bottom:208.906585pt;}
.yfe{bottom:211.226585pt;}
.y91{bottom:213.226585pt;}
.y84{bottom:215.946585pt;}
.yaf{bottom:217.466585pt;}
.y4f{bottom:220.346585pt;}
.y79{bottom:220.586585pt;}
.y85{bottom:221.306585pt;}
.y120{bottom:221.946585pt;}
.y25{bottom:222.026585pt;}
.y90{bottom:223.946585pt;}
.y114{bottom:224.266585pt;}
.yd0{bottom:225.146585pt;}
.yfd{bottom:226.506585pt;}
.y13d{bottom:226.666585pt;}
.y14f{bottom:228.586585pt;}
.y83{bottom:234.346585pt;}
.yae{bottom:235.866585pt;}
.y24{bottom:236.666585pt;}
.y4e{bottom:237.226585pt;}
.y78{bottom:238.986585pt;}
.y8f{bottom:239.306585pt;}
.yfc{bottom:241.866585pt;}
.yce{bottom:243.546585pt;}
.y8e{bottom:243.946585pt;}
.y13c{bottom:245.066585pt;}
.ycf{bottom:249.546585pt;}
.y23{bottom:251.306585pt;}
.y82{bottom:252.746585pt;}
.y4d{bottom:254.026585pt;}
.yad{bottom:254.266585pt;}
.ye8{bottom:254.586585pt;}
.y8d{bottom:254.906585pt;}
.yfb{bottom:257.146585pt;}
.y77{bottom:257.386585pt;}
.y14e{bottom:259.226585pt;}
.yfa{bottom:261.786585pt;}
.ycd{bottom:261.946585pt;}
.y13b{bottom:263.466585pt;}
.y22{bottom:265.946585pt;}
.ye7{bottom:269.946585pt;}
.y14d{bottom:270.266585pt;}
.y4c{bottom:271.146585pt;}
.yf9{bottom:272.506585pt;}
.yac{bottom:272.666585pt;}
.y145{bottom:274.586585pt;}
.y76{bottom:275.786585pt;}
.y117{bottom:277.146585pt;}
.ycc{bottom:280.346585pt;}
.y21{bottom:280.586585pt;}
.y13a{bottom:281.866585pt;}
.ye6{bottom:285.306585pt;}
.y144{bottom:285.626585pt;}
.yf8{bottom:287.866585pt;}
.y4b{bottom:289.546585pt;}
.yab{bottom:291.066585pt;}
.y75{bottom:294.186585pt;}
.y147{bottom:294.906585pt;}
.y20{bottom:295.226585pt;}
.ycb{bottom:298.746585pt;}
.y139{bottom:300.266585pt;}
.ye5{bottom:300.586585pt;}
.yf7{bottom:303.146585pt;}
.yf6{bottom:307.786585pt;}
.y4a{bottom:307.946585pt;}
.ya9{bottom:309.466585pt;}
.y1f{bottom:309.866585pt;}
.y74{bottom:312.586585pt;}
.y14c{bottom:313.946585pt;}
.yaa{bottom:315.466585pt;}
.ye4{bottom:315.946585pt;}
.yca{bottom:317.146585pt;}
.yf5{bottom:318.506585pt;}
.y138{bottom:318.666585pt;}
.y1e{bottom:324.506585pt;}
.y49{bottom:326.346585pt;}
.ya8{bottom:327.866585pt;}
.y73{bottom:330.986585pt;}
.ye3{bottom:331.306585pt;}
.y113{bottom:331.706585pt;}
.yf4{bottom:333.866585pt;}
.yc9{bottom:335.546585pt;}
.y137{bottom:337.066585pt;}
.y1d{bottom:339.226585pt;}
.y48{bottom:344.746585pt;}
.ya7{bottom:346.266585pt;}
.ye2{bottom:346.586585pt;}
.yf3{bottom:349.146585pt;}
.y72{bottom:349.386585pt;}
.y8c{bottom:350.746585pt;}
.y1c{bottom:353.866585pt;}
.yc8{bottom:353.946585pt;}
.y136{bottom:355.466585pt;}
.ye1{bottom:361.946585pt;}
.y47{bottom:363.146585pt;}
.yf2{bottom:364.506585pt;}
.y71{bottom:367.786585pt;}
.y1b{bottom:368.506585pt;}
.y112{bottom:369.146585pt;}
.yc7{bottom:372.346585pt;}
.y135{bottom:373.866585pt;}
.ye0{bottom:377.306585pt;}
.yf1{bottom:379.866585pt;}
.y46{bottom:381.546585pt;}
.ya6{bottom:383.066585pt;}
.y1a{bottom:383.146585pt;}
.y70{bottom:386.186585pt;}
.y119{bottom:387.546585pt;}
.yc5{bottom:390.746585pt;}
.y134{bottom:392.266585pt;}
.ydf{bottom:392.586585pt;}
.yf0{bottom:395.146585pt;}
.yc6{bottom:396.746585pt;}
.y19{bottom:397.786585pt;}
.y44{bottom:399.973252pt;}
.ya5{bottom:401.493252pt;}
.y6f{bottom:404.613252pt;}
.y45{bottom:405.973252pt;}
.yde{bottom:407.973252pt;}
.yc4{bottom:409.173252pt;}
.yef{bottom:410.533252pt;}
.y133{bottom:410.693252pt;}
.y18{bottom:412.133252pt;}
.ydd{bottom:412.613252pt;}
.y43{bottom:418.373252pt;}
.ya4{bottom:419.653252pt;}
.y6e{bottom:423.013252pt;}
.ydc{bottom:423.253252pt;}
.y10c{bottom:423.733252pt;}
.y97{bottom:424.373252pt;}
.yee{bottom:425.893252pt;}
.y17{bottom:427.493252pt;}
.yc3{bottom:427.573252pt;}
.y132{bottom:429.093252pt;}
.y42{bottom:436.773252pt;}
.ydb{bottom:439.653252pt;}
.yed{bottom:441.173252pt;}
.y6d{bottom:441.413252pt;}
.y108{bottom:442.133252pt;}
.y16{bottom:442.773252pt;}
.yda{bottom:445.013252pt;}
.yc2{bottom:445.973252pt;}
.y131{bottom:447.493252pt;}
.y41{bottom:455.173252pt;}
.yec{bottom:456.533252pt;}
.yd9{bottom:456.853252pt;}
.y15{bottom:458.133252pt;}
.y6c{bottom:459.813252pt;}
.y116{bottom:460.533252pt;}
.y10b{bottom:461.173252pt;}
.yc1{bottom:464.373252pt;}
.y130{bottom:465.893252pt;}
.yeb{bottom:472.213252pt;}
.y14{bottom:473.493252pt;}
.y40{bottom:473.573252pt;}
.y6b{bottom:478.213252pt;}
.y11e{bottom:478.933252pt;}
.y81{bottom:479.573252pt;}
.yc0{bottom:482.773252pt;}
.y12f{bottom:484.293252pt;}
.y13{bottom:488.773252pt;}
.y3f{bottom:491.973252pt;}
.y6a{bottom:496.533252pt;}
.y143{bottom:497.973252pt;}
.ybf{bottom:501.173252pt;}
.y12e{bottom:502.693252pt;}
.y12{bottom:504.133252pt;}
.y3e{bottom:510.373252pt;}
.y69{bottom:514.933252pt;}
.y8b{bottom:516.373252pt;}
.y11{bottom:519.493252pt;}
.ybe{bottom:519.573252pt;}
.y12d{bottom:521.093252pt;}
.y3d{bottom:528.773252pt;}
.y68{bottom:533.333252pt;}
.y10{bottom:534.773252pt;}
.ybd{bottom:537.973252pt;}
.y12c{bottom:539.493252pt;}
.y3c{bottom:547.173252pt;}
.yf{bottom:550.133252pt;}
.y67{bottom:551.733252pt;}
.ybc{bottom:556.373252pt;}
.y12b{bottom:557.893252pt;}
.y3b{bottom:565.573252pt;}
.ye{bottom:566.053252pt;}
.y66{bottom:570.133252pt;}
.y146{bottom:570.933252pt;}
.y11d{bottom:571.573252pt;}
.ybb{bottom:574.773252pt;}
.y12a{bottom:576.293252pt;}
.y3a{bottom:583.973252pt;}
.y65{bottom:588.533252pt;}
.y10f{bottom:589.333252pt;}
.y9f{bottom:589.973252pt;}
.y129{bottom:594.693252pt;}
.yd{bottom:598.693252pt;}
.y39{bottom:602.373252pt;}
.y64{bottom:606.933252pt;}
.y111{bottom:607.733252pt;}
.y14b{bottom:608.373252pt;}
.yba{bottom:611.573252pt;}
.y128{bottom:613.093252pt;}
.y38{bottom:620.773252pt;}
.yc{bottom:624.773252pt;}
.y63{bottom:625.333252pt;}
.y115{bottom:626.773252pt;}
.yb9{bottom:629.973252pt;}
.y127{bottom:631.493252pt;}
.y37{bottom:639.173252pt;}
.y62{bottom:643.733252pt;}
.y10a{bottom:645.173252pt;}
.yb8{bottom:648.373252pt;}
.y126{bottom:649.893252pt;}
.yb{bottom:650.853252pt;}
.y36{bottom:657.573252pt;}
.y61{bottom:662.133252pt;}
.yea{bottom:663.573252pt;}
.yb7{bottom:666.533252pt;}
.y125{bottom:668.293252pt;}
.y35{bottom:675.973252pt;}
.ya{bottom:676.853252pt;}
.y60{bottom:680.533252pt;}
.ye9{bottom:681.973252pt;}
.yb6{bottom:683.413252pt;}
.y124{bottom:686.453252pt;}
.y34{bottom:694.373252pt;}
.y5f{bottom:698.933252pt;}
.y142{bottom:699.733252pt;}
.yb5{bottom:700.213252pt;}
.y150{bottom:700.373252pt;}
.y9{bottom:702.933252pt;}
.y123{bottom:703.333252pt;}
.y32{bottom:712.773252pt;}
.yb4{bottom:717.093252pt;}
.y5e{bottom:717.333252pt;}
.y118{bottom:718.133252pt;}
.y33{bottom:718.773252pt;}
.y122{bottom:720.213252pt;}
.y8{bottom:728.933252pt;}
.y31{bottom:731.173252pt;}
.yb3{bottom:733.973252pt;}
.y14a{bottom:736.533252pt;}
.y121{bottom:737.013252pt;}
.y8a{bottom:737.173252pt;}
.y89{bottom:749.599919pt;}
.yb2{bottom:750.879919pt;}
.y5d{bottom:753.919919pt;}
.y7{bottom:755.039919pt;}
.yd8{bottom:755.599919pt;}
.y30{bottom:767.999919pt;}
.y5c{bottom:770.799919pt;}
.y151{bottom:773.999919pt;}
.y6{bottom:781.039919pt;}
.y2f{bottom:786.399919pt;}
.y5b{bottom:787.679919pt;}
.y149{bottom:791.759919pt;}
.ya3{bottom:792.399919pt;}
.y5a{bottom:814.879919pt;}
.y2e{bottom:815.199919pt;}
.y2{bottom:832.719919pt;}
.h16{height:33.901875pt;}
.he{height:33.918750pt;}
.h12{height:37.238906pt;}
.h10{height:41.749531pt;}
.hc{height:41.770312pt;}
.h4{height:47.109375pt;}
.h9{height:47.742188pt;}
.h13{height:47.908125pt;}
.h8{height:49.148438pt;}
.hf{height:52.422344pt;}
.h7{height:52.448437pt;}
.h14{height:54.927899pt;}
.hd{height:57.375000pt;}
.hb{height:57.473437pt;}
.h3{height:58.245469pt;}
.h11{height:62.781250pt;}
.h6{height:62.812500pt;}
.ha{height:64.500000pt;}
.h15{height:65.781915pt;}
.h5{height:84.981094pt;}
.h2{height:907.199919pt;}
.h0{height:907.200000pt;}
.h1{height:907.333333pt;}
.w3{width:642.559981pt;}
.w2{width:642.559990pt;}
.w0{width:642.560000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x1{left:85.039990pt;}
.x7{left:89.359990pt;}
.x19{left:93.706657pt;}
.x8{left:104.026657pt;}
.x2b{left:109.066657pt;}
.x4{left:113.466657pt;}
.x13{left:133.066657pt;}
.xf{left:134.826648pt;}
.x31{left:137.386657pt;}
.x10{left:140.186657pt;}
.x1c{left:142.906657pt;}
.x3d{left:144.586648pt;}
.x1a{left:148.106648pt;}
.x45{left:149.946648pt;}
.x3b{left:151.786657pt;}
.x66{left:153.546648pt;}
.x3e{left:155.306657pt;}
.x5f{left:157.546648pt;}
.x1b{left:158.826657pt;}
.x46{left:160.666657pt;}
.x51{left:162.426657pt;}
.x3c{left:163.386657pt;}
.x47{left:166.826657pt;}
.x60{left:168.266657pt;}
.x67{left:175.706648pt;}
.x20{left:177.466648pt;}
.x68{left:186.426657pt;}
.x21{left:188.186657pt;}
.x79{left:190.346648pt;}
.x7a{left:201.066657pt;}
.x4d{left:206.826648pt;}
.x62{left:211.866648pt;}
.x6c{left:212.986648pt;}
.x4f{left:214.266648pt;}
.x35{left:216.506648pt;}
.x4e{left:217.546657pt;}
.x63{left:222.586657pt;}
.x6d{left:223.706657pt;}
.x50{left:224.986657pt;}
.x36{left:227.226657pt;}
.x48{left:235.706648pt;}
.x49{left:246.426657pt;}
.x24{left:248.586648pt;}
.x27{left:255.066648pt;}
.x1d{left:260.106648pt;}
.x39{left:262.426648pt;}
.x28{left:265.786657pt;}
.x2e{left:268.186648pt;}
.x1e{left:270.826657pt;}
.x4b{left:271.786648pt;}
.x3a{left:273.146657pt;}
.x2f{left:278.906657pt;}
.x4c{left:282.533324pt;}
.x42{left:289.813324pt;}
.x5c{left:292.533324pt;}
.x76{left:300.293324pt;}
.x14{left:310.693314pt;}
.x25{left:311.653314pt;}
.x15{left:316.053324pt;}
.x3f{left:317.733314pt;}
.x26{left:322.373324pt;}
.x30{left:327.013324pt;}
.x16{left:328.533314pt;}
.x5d{left:335.733314pt;}
.x17{left:339.253324pt;}
.x5e{left:346.453324pt;}
.x37{left:358.293314pt;}
.xb{left:360.533314pt;}
.x71{left:364.213314pt;}
.xc{left:365.893324pt;}
.x38{left:369.013324pt;}
.x72{left:374.933324pt;}
.x56{left:382.853314pt;}
.x22{left:385.573314pt;}
.x57{left:393.573324pt;}
.x23{left:396.293324pt;}
.x54{left:400.053314pt;}
.x6a{left:408.613314pt;}
.x55{left:410.773324pt;}
.x5a{left:415.573314pt;}
.x6b{left:419.333324pt;}
.x5b{left:426.293324pt;}
.xd{left:427.413314pt;}
.xe{left:432.773324pt;}
.x2c{left:434.853314pt;}
.x1f{left:437.493324pt;}
.x32{left:442.933324pt;}
.x2d{left:445.573324pt;}
.x75{left:447.653324pt;}
.x58{left:458.453314pt;}
.x9{left:462.293314pt;}
.xa{left:467.653324pt;}
.x59{left:469.173324pt;}
.x4a{left:473.519990pt;}
.x40{left:474.799981pt;}
.x2{left:477.999981pt;}
.x52{left:479.839981pt;}
.x33{left:482.239981pt;}
.x3{left:483.359990pt;}
.x41{left:485.519990pt;}
.x70{left:488.079990pt;}
.x11{left:489.519981pt;}
.x53{left:490.559990pt;}
.x34{left:492.959990pt;}
.x12{left:494.879990pt;}
.x61{left:500.959990pt;}
.x64{left:509.919981pt;}
.x73{left:513.679981pt;}
.x77{left:514.719981pt;}
.x65{left:520.639990pt;}
.x74{left:524.399990pt;}
.x78{left:525.439990pt;}
.x6e{left:527.039981pt;}
.x43{left:528.159981pt;}
.x69{left:531.039990pt;}
.x6f{left:537.759990pt;}
.x44{left:538.879990pt;}
.x18{left:542.879981pt;}
.x29{left:546.879981pt;}
.x5{left:548.239981pt;}
.x6{left:553.599990pt;}
.x2a{left:557.599990pt;}
}




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