
    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_f35580f13ac55582a6ee17a1.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.906000;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_4b3c7f5c876839868f4178c6.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_666bcf6ac9b4586667876e76.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.666504;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_30026e6da7172bb0fee5cecf.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.813000;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_3800d0cb8fbed5317f888401.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.000000;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_228efaa59082dcb0eff789ac.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.897000;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_0768e9e426cce31de26fc646.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.703000;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_7bca4600fa6680e75529fbea.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.892000;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_203b3e57494735768f1e8fee.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.666504;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_ae95bc0ee82b404f617d83b9.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.735000;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_5d6011282f08e4aade829f2b.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.000000;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_5eb12dcf7c1e9cd2d233aa56.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.666504;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;}
.m7{transform:matrix(0.249513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249513,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249517,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249518,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249521,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249523,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249524,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249527,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls2{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.031701px;}
.ls5{letter-spacing:0.209187px;}
.ls0{letter-spacing:0.209232px;}
.ls1{letter-spacing:0.213458px;}
.ls4{letter-spacing:12.295195px;}
.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;}
}
.ws0{word-spacing:-36.069444px;}
.ws4{word-spacing:-17.999993px;}
.ws2{word-spacing:-16.559993px;}
.ws5{word-spacing:-14.939994px;}
.ws6{word-spacing:-13.499995px;}
.ws3{word-spacing:-10.439996px;}
.ws1{word-spacing:0.000000px;}
._1{margin-left:-1.097313px;}
._0{width:1.383605px;}
._f{width:2.488898px;}
._9{width:3.662387px;}
._4{width:5.600954px;}
._5{width:6.954309px;}
._8{width:8.123274px;}
._14{width:9.212531px;}
._10{width:10.511926px;}
._a{width:11.568059px;}
._b{width:12.588140px;}
._12{width:13.638878px;}
._11{width:14.689421px;}
._c{width:16.681821px;}
._7{width:17.828125px;}
._6{width:19.170780px;}
._13{width:20.701819px;}
._16{width:21.872890px;}
._15{width:23.031462px;}
._19{width:24.529227px;}
._1a{width:25.953233px;}
._17{width:28.188814px;}
._18{width:29.843004px;}
._1b{width:31.424266px;}
._3{width:33.106551px;}
._2{width:34.383881px;}
._e{width:40.601512px;}
._d{width:41.808895px;}
._1d{width:54.807066px;}
._1e{width:63.845585px;}
._2a{width:66.350108px;}
._1f{width:77.244527px;}
._29{width:78.423498px;}
._2b{width:79.644752px;}
._24{width:82.517403px;}
._21{width:83.606669px;}
._20{width:85.487156px;}
._2c{width:106.980556px;}
._28{width:113.522398px;}
._25{width:121.151431px;}
._23{width:122.226642px;}
._22{width:126.863675px;}
._27{width:148.478736px;}
._1c{width:175.650455px;}
._26{width:242.528418px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:41.759983px;}
.fs4{font-size:48.239981px;}
.fs3{font-size:51.119980px;}
.fs6{font-size:53.999978px;}
.fs0{font-size:59.759976px;}
.fs8{font-size:66.239974px;}
.fs5{font-size:71.999971px;}
.fs2{font-size:77.759969px;}
.fs7{font-size:84.239966px;}
.fs1{font-size:120.239952px;}
.y0{bottom:0.000000px;}
.y117{bottom:3.599675px;}
.y2{bottom:118.439953px;}
.ycb{bottom:139.139944px;}
.y77{bottom:143.099943px;}
.y34{bottom:143.459943px;}
.y96{bottom:146.339941px;}
.y82{bottom:151.739939px;}
.ya9{bottom:153.179939px;}
.ya8{bottom:155.519938px;}
.y66{bottom:155.699938px;}
.yf4{bottom:159.659936px;}
.yca{bottom:161.099936px;}
.y33{bottom:162.359935px;}
.y76{bottom:164.879934px;}
.y95{bottom:165.239934px;}
.y137{bottom:165.959934px;}
.y81{bottom:169.739932px;}
.ya7{bottom:172.079931px;}
.ya6{bottom:174.419930px;}
.yf3{bottom:176.939929px;}
.y65{bottom:177.479929px;}
.y32{bottom:181.439927px;}
.y75{bottom:182.699927px;}
.yc9{bottom:182.879927px;}
.y94{bottom:184.319926px;}
.ya5{bottom:193.499923px;}
.yf2{bottom:194.039922px;}
.y64{bottom:199.259920px;}
.y135{bottom:199.799920px;}
.y31{bottom:200.339920px;}
.y136{bottom:200.699920px;}
.y93{bottom:203.219919px;}
.yc8{bottom:204.659918px;}
.yf1{bottom:211.319915px;}
.ya4{bottom:212.399915px;}
.y63{bottom:218.519913px;}
.y30{bottom:219.419912px;}
.y134{bottom:219.599912px;}
.y92{bottom:222.119911px;}
.yc7{bottom:226.439909px;}
.yf0{bottom:228.599909px;}
.ya3{bottom:231.479907px;}
.y2f{bottom:238.319905px;}
.y133{bottom:239.399904px;}
.y91{bottom:241.199904px;}
.y62{bottom:244.259902px;}
.yef{bottom:245.879902px;}
.yc6{bottom:248.399901px;}
.ya2{bottom:252.179899px;}
.y2e{bottom:257.219897px;}
.y132{bottom:259.199896px;}
.y90{bottom:260.099896px;}
.yee{bottom:263.159895px;}
.y61{bottom:266.579893px;}
.yc5{bottom:267.299893px;}
.ya1{bottom:275.579890px;}
.y2d{bottom:276.299889px;}
.y131{bottom:278.999888px;}
.y8f{bottom:279.179888px;}
.yed{bottom:280.439888px;}
.yc4{bottom:286.199886px;}
.y60{bottom:292.139883px;}
.y5f{bottom:294.479882px;}
.ya0{bottom:294.659882px;}
.y2c{bottom:295.199882px;}
.yec{bottom:297.539881px;}
.y8e{bottom:298.079881px;}
.y130{bottom:298.979880px;}
.yc3{bottom:305.279878px;}
.y5e{bottom:311.039876px;}
.y5d{bottom:313.379875px;}
.y9f{bottom:313.559875px;}
.y2b{bottom:314.819874px;}
.y8d{bottom:316.979873px;}
.y12f{bottom:318.779872px;}
.yc2{bottom:324.179870px;}
.yeb{bottom:332.099867px;}
.y5c{bottom:332.459867px;}
.y9e{bottom:332.639867px;}
.y8c{bottom:336.059866px;}
.y12e{bottom:338.579865px;}
.y2a{bottom:342.719863px;}
.yc1{bottom:343.259863px;}
.yea{bottom:349.379860px;}
.y5b{bottom:351.359859px;}
.y9d{bottom:351.539859px;}
.y8b{bottom:354.959858px;}
.y12d{bottom:358.379857px;}
.yc0{bottom:362.159855px;}
.y29{bottom:365.039854px;}
.ye9{bottom:366.659853px;}
.y9c{bottom:370.439852px;}
.y5a{bottom:371.519851px;}
.y8a{bottom:374.039850px;}
.y28{bottom:380.519848px;}
.ybf{bottom:381.059848px;}
.ye8{bottom:383.939846px;}
.y9b{bottom:389.519844px;}
.y12c{bottom:390.059844px;}
.y59{bottom:391.859843px;}
.y27{bottom:395.999842px;}
.ybe{bottom:400.139840px;}
.ye7{bottom:401.039840px;}
.y9a{bottom:404.459838px;}
.y12b{bottom:409.499836px;}
.y58{bottom:410.759836px;}
.y26{bottom:412.379835px;}
.ye6{bottom:418.319833px;}
.ybd{bottom:419.039832px;}
.y89{bottom:419.759832px;}
.y12a{bottom:426.779829px;}
.y57{bottom:427.499829px;}
.y56{bottom:429.839828px;}
.y25{bottom:430.199828px;}
.ye5{bottom:435.599826px;}
.ybc{bottom:438.119825px;}
.y88{bottom:443.339823px;}
.y129{bottom:444.059822px;}
.y55{bottom:446.399821px;}
.y54{bottom:448.739821px;}
.y24{bottom:452.519819px;}
.ye4{bottom:452.879819px;}
.ybb{bottom:457.019817px;}
.y128{bottom:461.339815px;}
.y87{bottom:462.419815px;}
.y53{bottom:465.299814px;}
.y80{bottom:465.479814px;}
.y52{bottom:467.639813px;}
.ye3{bottom:469.979812px;}
.y23{bottom:474.479810px;}
.yba{bottom:475.919810px;}
.y127{bottom:478.439809px;}
.y86{bottom:481.319807px;}
.y51{bottom:486.719805px;}
.y7f{bottom:487.259805px;}
.y22{bottom:491.759803px;}
.ye2{bottom:493.019803px;}
.yb9{bottom:495.719802px;}
.y85{bottom:500.399800px;}
.y7e{bottom:505.079798px;}
.y21{bottom:509.039796px;}
.y50{bottom:509.219796px;}
.y74{bottom:513.539795px;}
.y84{bottom:519.299792px;}
.ye1{bottom:520.739792px;}
.yb8{bottom:523.439791px;}
.y20{bottom:526.319789px;}
.y126{bottom:531.719787px;}
.y4f{bottom:534.959786px;}
.y73{bottom:535.499786px;}
.y83{bottom:538.199785px;}
.y1f{bottom:543.419783px;}
.ye0{bottom:548.639781px;}
.yb7{bottom:549.719780px;}
.y125{bottom:551.159780px;}
.y4e{bottom:557.279777px;}
.y1e{bottom:560.699776px;}
.yb6{bottom:568.619773px;}
.y124{bottom:570.059772px;}
.y4d{bottom:576.179770px;}
.ydf{bottom:576.359769px;}
.y1d{bottom:577.979769px;}
.y72{bottom:579.059768px;}
.y109{bottom:585.539766px;}
.y123{bottom:587.339765px;}
.yb5{bottom:587.699765px;}
.y1c{bottom:595.259762px;}
.y71{bottom:597.959761px;}
.y108{bottom:599.219760px;}
.yde{bottom:604.079758px;}
.y122{bottom:604.619758px;}
.yb4{bottom:606.599757px;}
.y1b{bottom:612.539755px;}
.y107{bottom:613.079755px;}
.y4c{bottom:614.159754px;}
.y99{bottom:616.679753px;}
.y70{bottom:617.039753px;}
.y121{bottom:621.899751px;}
.yb3{bottom:625.679750px;}
.y106{bottom:627.659749px;}
.y1a{bottom:629.819748px;}
.ydd{bottom:631.979747px;}
.y4b{bottom:633.059747px;}
.y98{bottom:635.579746px;}
.y6f{bottom:635.939746px;}
.y120{bottom:639.179744px;}
.y105{bottom:641.339743px;}
.yb2{bottom:644.579742px;}
.y19{bottom:646.919741px;}
.y97{bottom:650.519740px;}
.y4a{bottom:652.139739px;}
.y6e{bottom:652.679739px;}
.y6d{bottom:655.019738px;}
.y104{bottom:655.199738px;}
.y11f{bottom:656.459737px;}
.ydc{bottom:659.699736px;}
.yb1{bottom:663.659735px;}
.y18{bottom:664.199734px;}
.y103{bottom:669.779732px;}
.y6c{bottom:671.579731px;}
.y11e{bottom:673.559731px;}
.y49{bottom:673.919730px;}
.y17{bottom:681.479727px;}
.yb0{bottom:682.559727px;}
.ydb{bottom:687.419725px;}
.y6b{bottom:690.479724px;}
.y11d{bottom:690.839724px;}
.y48{bottom:692.819723px;}
.y16{bottom:699.839720px;}
.yaf{bottom:701.459719px;}
.y11c{bottom:708.119717px;}
.yda{bottom:710.639716px;}
.y47{bottom:711.899715px;}
.yae{bottom:720.539712px;}
.y15{bottom:721.619711px;}
.y11b{bottom:725.399710px;}
.yd9{bottom:727.919709px;}
.y6a{bottom:728.459709px;}
.y46{bottom:730.799708px;}
.yad{bottom:739.439704px;}
.y14{bottom:742.679703px;}
.y69{bottom:747.539701px;}
.yd8{bottom:749.699700px;}
.y45{bottom:749.879700px;}
.y102{bottom:753.479699px;}
.yac{bottom:758.519697px;}
.y13{bottom:759.599696px;}
.y11a{bottom:759.959696px;}
.y7d{bottom:766.079694px;}
.y68{bottom:766.439693px;}
.y44{bottom:768.779692px;}
.y12{bottom:776.519689px;}
.y119{bottom:777.059689px;}
.yd7{bottom:777.419689px;}
.yab{bottom:778.139689px;}
.y101{bottom:784.259686px;}
.y7c{bottom:785.159686px;}
.y43{bottom:787.679685px;}
.y11{bottom:793.799682px;}
.y118{bottom:794.339682px;}
.yaa{bottom:802.259679px;}
.y7b{bottom:804.059678px;}
.yd6{bottom:805.319678px;}
.y42{bottom:806.759677px;}
.y100{bottom:808.019677px;}
.y116{bottom:808.020000px;}
.y115{bottom:811.619675px;}
.y10{bottom:814.499674px;}
.yff{bottom:824.399670px;}
.y41{bottom:825.659670px;}
.y7a{bottom:826.019670px;}
.y114{bottom:828.899668px;}
.yd5{bottom:833.039667px;}
.yf{bottom:835.199666px;}
.yfe{bottom:840.599664px;}
.ye{bottom:843.479663px;}
.y79{bottom:843.839662px;}
.y40{bottom:844.739662px;}
.y113{bottom:846.179662px;}
.yd{bottom:855.719658px;}
.yfd{bottom:856.799657px;}
.yd4{bottom:860.759656px;}
.y112{bottom:863.459655px;}
.y3f{bottom:863.639655px;}
.yc{bottom:872.999651px;}
.yfb{bottom:873.179651px;}
.y111{bottom:880.559648px;}
.y3e{bottom:882.719647px;}
.yfc{bottom:887.939645px;}
.yd3{bottom:888.479645px;}
.yfa{bottom:888.659645px;}
.yb{bottom:893.699643px;}
.y110{bottom:897.839641px;}
.y3d{bottom:901.619639px;}
.yf9{bottom:904.139638px;}
.ya{bottom:914.399634px;}
.yd2{bottom:914.579634px;}
.y10f{bottom:915.119634px;}
.y3c{bottom:920.519632px;}
.y9{bottom:922.679631px;}
.y10e{bottom:932.399627px;}
.yf8{bottom:935.999626px;}
.yd1{bottom:936.359625px;}
.y3b{bottom:939.599624px;}
.y8{bottom:944.279622px;}
.y10d{bottom:949.679620px;}
.yf7{bottom:951.479619px;}
.yf6{bottom:953.999618px;}
.y6{bottom:957.779617px;}
.yd0{bottom:958.139617px;}
.y3a{bottom:958.499617px;}
.y7{bottom:966.779613px;}
.yf5{bottom:969.479612px;}
.ycf{bottom:977.219609px;}
.y39{bottom:977.579609px;}
.y5{bottom:979.379608px;}
.y10c{bottom:984.059606px;}
.y38{bottom:996.479601px;}
.yce{bottom:998.639601px;}
.y4{bottom:1000.259600px;}
.y10b{bottom:1001.339599px;}
.y78{bottom:1012.679595px;}
.y67{bottom:1013.039595px;}
.y37{bottom:1015.379594px;}
.ycd{bottom:1018.439593px;}
.y10a{bottom:1018.619593px;}
.y3{bottom:1033.919586px;}
.y36{bottom:1034.459586px;}
.ycc{bottom:1035.899586px;}
.y35{bottom:1054.079578px;}
.y1{bottom:1073.159571px;}
.h9{height:0.000000px;}
.h19{height:16.920000px;}
.h13{height:28.730869px;}
.h6{height:33.189107px;}
.h5{height:35.170546px;}
.he{height:36.989985px;}
.h18{height:37.151985px;}
.ha{height:37.367985px;}
.h8{height:37.469505px;}
.h3{height:39.830258px;}
.hd{height:40.816064px;}
.h1{height:41.114864px;}
.h1a{height:41.353903px;}
.h17{height:43.923582px;}
.h11{height:44.149201px;}
.h10{height:45.573102px;}
.h16{height:45.838062px;}
.h14{height:48.686381px;}
.h7{height:49.535980px;}
.h15{height:49.823980px;}
.hc{height:53.110059px;}
.hb{height:53.265579px;}
.h4{height:53.498859px;}
.h12{height:53.809898px;}
.hf{height:58.294057px;}
.h2{height:80.140398px;}
.h0{height:1188.000000px;}
.w1{width:1.800000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x2{left:128.340736px;}
.x4{left:131.039999px;}
.x6b{left:132.119197px;}
.x1{left:152.819939px;}
.x75{left:155.339228px;}
.x53{left:163.259935px;}
.x54{left:168.299933px;}
.x60{left:173.879930px;}
.x55{left:180.719928px;}
.x56{left:185.939926px;}
.x57{left:190.079924px;}
.x78{left:191.519923px;}
.x58{left:194.399922px;}
.x24{left:200.159920px;}
.x61{left:201.599919px;}
.x6d{left:203.039919px;}
.x62{left:204.299918px;}
.x25{left:206.459917px;}
.x26{left:214.739914px;}
.x2c{left:215.819142px;}
.x27{left:219.779912px;}
.x59{left:222.659911px;}
.x63{left:223.739911px;}
.x5a{left:227.699909px;}
.x64{left:228.779908px;}
.x28{left:236.519905px;}
.x5b{left:240.119904px;}
.x29{left:241.559903px;}
.x66{left:252.899209px;}
.x2d{left:256.679897px;}
.x2e{left:259.379896px;}
.x18{left:261.719895px;}
.x6f{left:262.799895px;}
.x19{left:264.419894px;}
.x2a{left:266.579893px;}
.x2f{left:267.659893px;}
.x2b{left:269.279892px;}
.x7a{left:277.379889px;}
.x6{left:279.359888px;}
.xa{left:284.939886px;}
.x30{left:286.919885px;}
.x31{left:289.799884px;}
.x76{left:296.820321px;}
.x32{left:298.079881px;}
.x7c{left:302.759869px;}
.x33{left:305.999878px;}
.x1a{left:307.439877px;}
.x84{left:308.519872px;}
.xb{left:309.959846px;}
.x1b{left:312.479875px;}
.x7b{left:314.639871px;}
.x34{left:321.299871px;}
.x35{left:326.519869px;}
.x36{left:334.799866px;}
.x79{left:339.119392px;}
.x37{left:340.199864px;}
.x38{left:355.499858px;}
.x39{left:360.719856px;}
.x6a{left:365.759509px;}
.xc{left:367.379891px;}
.x3a{left:368.999852px;}
.x3b{left:376.919849px;}
.x7e{left:378.179920px;}
.x15{left:379.259848px;}
.x16{left:381.959847px;}
.xf{left:384.839846px;}
.x7d{left:387.179913px;}
.xd{left:402.839839px;}
.x17{left:408.779836px;}
.x1c{left:411.299835px;}
.x77{left:412.919503px;}
.x72{left:415.259834px;}
.x73{left:417.959833px;}
.x3c{left:435.959826px;}
.x5{left:439.019824px;}
.x7{left:443.879822px;}
.x85{left:445.859992px;}
.x3d{left:447.119821px;}
.x80{left:448.919984px;}
.x8{left:450.359820px;}
.x3{left:452.339819px;}
.x3e{left:457.919817px;}
.x7f{left:460.799986px;}
.x3f{left:466.379813px;}
.x1d{left:467.819813px;}
.x40{left:469.259812px;}
.x1e{left:472.859811px;}
.x41{left:477.539809px;}
.x42{left:485.459806px;}
.x43{left:500.759800px;}
.xe{left:501.839799px;}
.x44{left:505.979798px;}
.x45{left:514.259794px;}
.x46{left:519.659792px;}
.x82{left:526.139998px;}
.x47{left:534.959786px;}
.x81{left:538.020000px;}
.x48{left:540.179784px;}
.x49{left:548.459781px;}
.x4a{left:556.559777px;}
.x83{left:574.739993px;}
.x6e{left:589.499764px;}
.x9{left:618.659753px;}
.x67{left:625.499750px;}
.x6c{left:629.999748px;}
.x69{left:635.579746px;}
.x68{left:647.459741px;}
.x65{left:653.579739px;}
.x87{left:669.599732px;}
.x4b{left:677.879729px;}
.x4c{left:683.279727px;}
.x70{left:688.679725px;}
.x71{left:691.379723px;}
.x4d{left:695.699722px;}
.x4e{left:698.579721px;}
.x1f{left:700.199720px;}
.x20{left:702.899719px;}
.x21{left:720.539712px;}
.x11{left:723.599711px;}
.x12{left:726.299709px;}
.x5c{left:728.459709px;}
.x22{left:735.839706px;}
.x4f{left:741.059704px;}
.x50{left:746.459701px;}
.x23{left:753.119699px;}
.x51{left:758.879696px;}
.x10{left:761.399695px;}
.x52{left:763.919694px;}
.x13{left:767.159693px;}
.x74{left:768.959692px;}
.x5d{left:771.119692px;}
.x14{left:772.199691px;}
.x5f{left:773.639691px;}
.x5e{left:776.339689px;}
.x86{left:916.200000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.028179pt;}
.ls5{letter-spacing:0.185944pt;}
.ls0{letter-spacing:0.185984pt;}
.ls1{letter-spacing:0.189741pt;}
.ls4{letter-spacing:10.929062pt;}
.ws0{word-spacing:-32.061728pt;}
.ws4{word-spacing:-15.999994pt;}
.ws2{word-spacing:-14.719994pt;}
.ws5{word-spacing:-13.279995pt;}
.ws6{word-spacing:-11.999995pt;}
.ws3{word-spacing:-9.279996pt;}
.ws1{word-spacing:0.000000pt;}
._1{margin-left:-0.975389pt;}
._0{width:1.229872pt;}
._f{width:2.212354pt;}
._9{width:3.255455pt;}
._4{width:4.978626pt;}
._5{width:6.181608pt;}
._8{width:7.220688pt;}
._14{width:8.188916pt;}
._10{width:9.343935pt;}
._a{width:10.282719pt;}
._b{width:11.189458pt;}
._12{width:12.123447pt;}
._11{width:13.057263pt;}
._c{width:14.828285pt;}
._7{width:15.847222pt;}
._6{width:17.040693pt;}
._13{width:18.401617pt;}
._16{width:19.442569pt;}
._15{width:20.472411pt;}
._19{width:21.803757pt;}
._1a{width:23.069541pt;}
._17{width:25.056723pt;}
._18{width:26.527115pt;}
._1b{width:27.932681pt;}
._3{width:29.428045pt;}
._2{width:30.563450pt;}
._e{width:36.090233pt;}
._d{width:37.163463pt;}
._1d{width:48.717392pt;}
._1e{width:56.751631pt;}
._2a{width:58.977874pt;}
._1f{width:68.661802pt;}
._29{width:69.709776pt;}
._2b{width:70.795335pt;}
._24{width:73.348803pt;}
._21{width:74.317039pt;}
._20{width:75.988583pt;}
._2c{width:95.093827pt;}
._28{width:100.908798pt;}
._25{width:107.690161pt;}
._23{width:108.645904pt;}
._22{width:112.767711pt;}
._27{width:131.981099pt;}
._1c{width:156.133737pt;}
._26{width:215.580816pt;}
.fs9{font-size:37.119985pt;}
.fs4{font-size:42.879983pt;}
.fs3{font-size:45.439982pt;}
.fs6{font-size:47.999981pt;}
.fs0{font-size:53.119979pt;}
.fs8{font-size:58.879976pt;}
.fs5{font-size:63.999974pt;}
.fs2{font-size:69.119972pt;}
.fs7{font-size:74.879970pt;}
.fs1{font-size:106.879957pt;}
.y0{bottom:0.000000pt;}
.y117{bottom:3.199711pt;}
.y2{bottom:105.279958pt;}
.ycb{bottom:123.679951pt;}
.y77{bottom:127.199949pt;}
.y34{bottom:127.519949pt;}
.y96{bottom:130.079948pt;}
.y82{bottom:134.879946pt;}
.ya9{bottom:136.159946pt;}
.ya8{bottom:138.239945pt;}
.y66{bottom:138.399945pt;}
.yf4{bottom:141.919943pt;}
.yca{bottom:143.199943pt;}
.y33{bottom:144.319942pt;}
.y76{bottom:146.559941pt;}
.y95{bottom:146.879941pt;}
.y137{bottom:147.519941pt;}
.y81{bottom:150.879940pt;}
.ya7{bottom:152.959939pt;}
.ya6{bottom:155.039938pt;}
.yf3{bottom:157.279937pt;}
.y65{bottom:157.759937pt;}
.y32{bottom:161.279935pt;}
.y75{bottom:162.399935pt;}
.yc9{bottom:162.559935pt;}
.y94{bottom:163.839934pt;}
.ya5{bottom:171.999931pt;}
.yf2{bottom:172.479931pt;}
.y64{bottom:177.119929pt;}
.y135{bottom:177.599929pt;}
.y31{bottom:178.079929pt;}
.y136{bottom:178.399929pt;}
.y93{bottom:180.639928pt;}
.yc8{bottom:181.919927pt;}
.yf1{bottom:187.839925pt;}
.ya4{bottom:188.799924pt;}
.y63{bottom:194.239922pt;}
.y30{bottom:195.039922pt;}
.y134{bottom:195.199922pt;}
.y92{bottom:197.439921pt;}
.yc7{bottom:201.279919pt;}
.yf0{bottom:203.199919pt;}
.ya3{bottom:205.759918pt;}
.y2f{bottom:211.839915pt;}
.y133{bottom:212.799915pt;}
.y91{bottom:214.399914pt;}
.y62{bottom:217.119913pt;}
.yef{bottom:218.559913pt;}
.yc6{bottom:220.799912pt;}
.ya2{bottom:224.159910pt;}
.y2e{bottom:228.639909pt;}
.y132{bottom:230.399908pt;}
.y90{bottom:231.199908pt;}
.yee{bottom:233.919906pt;}
.y61{bottom:236.959905pt;}
.yc5{bottom:237.599905pt;}
.ya1{bottom:244.959902pt;}
.y2d{bottom:245.599902pt;}
.y131{bottom:247.999901pt;}
.y8f{bottom:248.159901pt;}
.yed{bottom:249.279900pt;}
.yc4{bottom:254.399898pt;}
.y60{bottom:259.679896pt;}
.y5f{bottom:261.759895pt;}
.ya0{bottom:261.919895pt;}
.y2c{bottom:262.399895pt;}
.yec{bottom:264.479894pt;}
.y8e{bottom:264.959894pt;}
.y130{bottom:265.759894pt;}
.yc3{bottom:271.359891pt;}
.y5e{bottom:276.479889pt;}
.y5d{bottom:278.559889pt;}
.y9f{bottom:278.719889pt;}
.y2b{bottom:279.839888pt;}
.y8d{bottom:281.759887pt;}
.y12f{bottom:283.359887pt;}
.yc2{bottom:288.159885pt;}
.yeb{bottom:295.199882pt;}
.y5c{bottom:295.519882pt;}
.y9e{bottom:295.679882pt;}
.y8c{bottom:298.719881pt;}
.y12e{bottom:300.959880pt;}
.y2a{bottom:304.639878pt;}
.yc1{bottom:305.119878pt;}
.yea{bottom:310.559876pt;}
.y5b{bottom:312.319875pt;}
.y9d{bottom:312.479875pt;}
.y8b{bottom:315.519874pt;}
.y12d{bottom:318.559873pt;}
.yc0{bottom:321.919871pt;}
.y29{bottom:324.479870pt;}
.ye9{bottom:325.919870pt;}
.y9c{bottom:329.279868pt;}
.y5a{bottom:330.239868pt;}
.y8a{bottom:332.479867pt;}
.y28{bottom:338.239865pt;}
.ybf{bottom:338.719865pt;}
.ye8{bottom:341.279863pt;}
.y9b{bottom:346.239862pt;}
.y12c{bottom:346.719861pt;}
.y59{bottom:348.319861pt;}
.y27{bottom:351.999859pt;}
.ybe{bottom:355.679858pt;}
.ye7{bottom:356.479857pt;}
.y9a{bottom:359.519856pt;}
.y12b{bottom:363.999854pt;}
.y58{bottom:365.119854pt;}
.y26{bottom:366.559853pt;}
.ye6{bottom:371.839851pt;}
.ybd{bottom:372.479851pt;}
.y89{bottom:373.119851pt;}
.y12a{bottom:379.359848pt;}
.y57{bottom:379.999848pt;}
.y56{bottom:382.079847pt;}
.y25{bottom:382.399847pt;}
.ye5{bottom:387.199845pt;}
.ybc{bottom:389.439844pt;}
.y88{bottom:394.079842pt;}
.y129{bottom:394.719842pt;}
.y55{bottom:396.799841pt;}
.y54{bottom:398.879840pt;}
.y24{bottom:402.239839pt;}
.ye4{bottom:402.559839pt;}
.ybb{bottom:406.239838pt;}
.y128{bottom:410.079836pt;}
.y87{bottom:411.039836pt;}
.y53{bottom:413.599835pt;}
.y80{bottom:413.759834pt;}
.y52{bottom:415.679834pt;}
.ye3{bottom:417.759833pt;}
.y23{bottom:421.759831pt;}
.yba{bottom:423.039831pt;}
.y127{bottom:425.279830pt;}
.y86{bottom:427.839829pt;}
.y51{bottom:432.639827pt;}
.y7f{bottom:433.119827pt;}
.y22{bottom:437.119825pt;}
.ye2{bottom:438.239825pt;}
.yb9{bottom:440.639824pt;}
.y85{bottom:444.799822pt;}
.y7e{bottom:448.959820pt;}
.y21{bottom:452.479819pt;}
.y50{bottom:452.639819pt;}
.y74{bottom:456.479817pt;}
.y84{bottom:461.599815pt;}
.ye1{bottom:462.879815pt;}
.yb8{bottom:465.279814pt;}
.y20{bottom:467.839813pt;}
.y126{bottom:472.639811pt;}
.y4f{bottom:475.519810pt;}
.y73{bottom:475.999810pt;}
.y83{bottom:478.399809pt;}
.y1f{bottom:483.039807pt;}
.ye0{bottom:487.679805pt;}
.yb7{bottom:488.639805pt;}
.y125{bottom:489.919804pt;}
.y4e{bottom:495.359802pt;}
.y1e{bottom:498.399801pt;}
.yb6{bottom:505.439798pt;}
.y124{bottom:506.719797pt;}
.y4d{bottom:512.159795pt;}
.ydf{bottom:512.319795pt;}
.y1d{bottom:513.759794pt;}
.y72{bottom:514.719794pt;}
.y109{bottom:520.479792pt;}
.y123{bottom:522.079791pt;}
.yb5{bottom:522.399791pt;}
.y1c{bottom:529.119788pt;}
.y71{bottom:531.519787pt;}
.y108{bottom:532.639787pt;}
.yde{bottom:536.959785pt;}
.y122{bottom:537.439785pt;}
.yb4{bottom:539.199784pt;}
.y1b{bottom:544.479782pt;}
.y107{bottom:544.959782pt;}
.y4c{bottom:545.919782pt;}
.y99{bottom:548.159781pt;}
.y70{bottom:548.479781pt;}
.y121{bottom:552.799779pt;}
.yb3{bottom:556.159778pt;}
.y106{bottom:557.919777pt;}
.y1a{bottom:559.839776pt;}
.ydd{bottom:561.759775pt;}
.y4b{bottom:562.719775pt;}
.y98{bottom:564.959774pt;}
.y6f{bottom:565.279774pt;}
.y120{bottom:568.159773pt;}
.y105{bottom:570.079772pt;}
.yb2{bottom:572.959771pt;}
.y19{bottom:575.039770pt;}
.y97{bottom:578.239769pt;}
.y4a{bottom:579.679768pt;}
.y6e{bottom:580.159768pt;}
.y6d{bottom:582.239767pt;}
.y104{bottom:582.399767pt;}
.y11f{bottom:583.519767pt;}
.ydc{bottom:586.399765pt;}
.yb1{bottom:589.919764pt;}
.y18{bottom:590.399764pt;}
.y103{bottom:595.359762pt;}
.y6c{bottom:596.959761pt;}
.y11e{bottom:598.719761pt;}
.y49{bottom:599.039760pt;}
.y17{bottom:605.759758pt;}
.yb0{bottom:606.719757pt;}
.ydb{bottom:611.039756pt;}
.y6b{bottom:613.759754pt;}
.y11d{bottom:614.079754pt;}
.y48{bottom:615.839754pt;}
.y16{bottom:622.079751pt;}
.yaf{bottom:623.519751pt;}
.y11c{bottom:629.439748pt;}
.yda{bottom:631.679747pt;}
.y47{bottom:632.799747pt;}
.yae{bottom:640.479744pt;}
.y15{bottom:641.439743pt;}
.y11b{bottom:644.799742pt;}
.yd9{bottom:647.039741pt;}
.y6a{bottom:647.519741pt;}
.y46{bottom:649.599740pt;}
.yad{bottom:657.279737pt;}
.y14{bottom:660.159736pt;}
.y69{bottom:664.479734pt;}
.yd8{bottom:666.399733pt;}
.y45{bottom:666.559733pt;}
.y102{bottom:669.759732pt;}
.yac{bottom:674.239730pt;}
.y13{bottom:675.199730pt;}
.y11a{bottom:675.519730pt;}
.y7d{bottom:680.959728pt;}
.y68{bottom:681.279727pt;}
.y44{bottom:683.359727pt;}
.y12{bottom:690.239724pt;}
.y119{bottom:690.719724pt;}
.yd7{bottom:691.039724pt;}
.yab{bottom:691.679723pt;}
.y101{bottom:697.119721pt;}
.y7c{bottom:697.919721pt;}
.y43{bottom:700.159720pt;}
.y11{bottom:705.599718pt;}
.y118{bottom:706.079718pt;}
.yaa{bottom:713.119715pt;}
.y7b{bottom:714.719714pt;}
.yd6{bottom:715.839714pt;}
.y42{bottom:717.119713pt;}
.y100{bottom:718.239713pt;}
.y116{bottom:718.240000pt;}
.y115{bottom:721.439711pt;}
.y10{bottom:723.999710pt;}
.yff{bottom:732.799707pt;}
.y41{bottom:733.919706pt;}
.y7a{bottom:734.239706pt;}
.y114{bottom:736.799705pt;}
.yd5{bottom:740.479704pt;}
.yf{bottom:742.399703pt;}
.yfe{bottom:747.199701pt;}
.ye{bottom:749.759700pt;}
.y79{bottom:750.079700pt;}
.y40{bottom:750.879700pt;}
.y113{bottom:752.159699pt;}
.yd{bottom:760.639696pt;}
.yfd{bottom:761.599695pt;}
.yd4{bottom:765.119694pt;}
.y112{bottom:767.519693pt;}
.y3f{bottom:767.679693pt;}
.yc{bottom:775.999690pt;}
.yfb{bottom:776.159690pt;}
.y111{bottom:782.719687pt;}
.y3e{bottom:784.639686pt;}
.yfc{bottom:789.279684pt;}
.yd3{bottom:789.759684pt;}
.yfa{bottom:789.919684pt;}
.yb{bottom:794.399682pt;}
.y110{bottom:798.079681pt;}
.y3d{bottom:801.439679pt;}
.yf9{bottom:803.679679pt;}
.ya{bottom:812.799675pt;}
.yd2{bottom:812.959675pt;}
.y10f{bottom:813.439675pt;}
.y3c{bottom:818.239673pt;}
.y9{bottom:820.159672pt;}
.y10e{bottom:828.799668pt;}
.yf8{bottom:831.999667pt;}
.yd1{bottom:832.319667pt;}
.y3b{bottom:835.199666pt;}
.y8{bottom:839.359664pt;}
.y10d{bottom:844.159662pt;}
.yf7{bottom:845.759662pt;}
.yf6{bottom:847.999661pt;}
.y6{bottom:851.359659pt;}
.yd0{bottom:851.679659pt;}
.y3a{bottom:851.999659pt;}
.y7{bottom:859.359656pt;}
.yf5{bottom:861.759655pt;}
.ycf{bottom:868.639653pt;}
.y39{bottom:868.959652pt;}
.y5{bottom:870.559652pt;}
.y10c{bottom:874.719650pt;}
.y38{bottom:885.759646pt;}
.yce{bottom:887.679645pt;}
.y4{bottom:889.119644pt;}
.y10b{bottom:890.079644pt;}
.y78{bottom:900.159640pt;}
.y67{bottom:900.479640pt;}
.y37{bottom:902.559639pt;}
.ycd{bottom:905.279638pt;}
.y10a{bottom:905.439638pt;}
.y3{bottom:919.039632pt;}
.y36{bottom:919.519632pt;}
.ycc{bottom:920.799632pt;}
.y35{bottom:936.959625pt;}
.y1{bottom:953.919618pt;}
.h9{height:0.000000pt;}
.h19{height:15.040000pt;}
.h13{height:25.538550pt;}
.h6{height:29.501428pt;}
.h5{height:31.262707pt;}
.he{height:32.879987pt;}
.h18{height:33.023987pt;}
.ha{height:33.215987pt;}
.h8{height:33.306227pt;}
.h3{height:35.404673pt;}
.hd{height:36.280945pt;}
.h1{height:36.546545pt;}
.h1a{height:36.759025pt;}
.h17{height:39.043184pt;}
.h11{height:39.243734pt;}
.h10{height:40.509424pt;}
.h16{height:40.744944pt;}
.h14{height:43.276783pt;}
.h7{height:44.031982pt;}
.h15{height:44.287982pt;}
.hc{height:47.208941pt;}
.hb{height:47.347181pt;}
.h4{height:47.554541pt;}
.h12{height:47.831021pt;}
.hf{height:51.816939pt;}
.h2{height:71.235909pt;}
.h0{height:1056.000000pt;}
.w1{width:1.600000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x2{left:114.080654pt;}
.x4{left:116.479999pt;}
.x6b{left:117.439286pt;}
.x1{left:135.839946pt;}
.x75{left:138.079313pt;}
.x53{left:145.119942pt;}
.x54{left:149.599940pt;}
.x60{left:154.559938pt;}
.x55{left:160.639936pt;}
.x56{left:165.279934pt;}
.x57{left:168.959932pt;}
.x78{left:170.239932pt;}
.x58{left:172.799931pt;}
.x24{left:177.919929pt;}
.x61{left:179.199928pt;}
.x6d{left:180.479928pt;}
.x62{left:181.599927pt;}
.x25{left:183.519927pt;}
.x26{left:190.879924pt;}
.x2c{left:191.839238pt;}
.x27{left:195.359922pt;}
.x59{left:197.919921pt;}
.x63{left:198.879920pt;}
.x5a{left:202.399919pt;}
.x64{left:203.359919pt;}
.x28{left:210.239916pt;}
.x5b{left:213.439915pt;}
.x29{left:214.719914pt;}
.x66{left:224.799297pt;}
.x2d{left:228.159909pt;}
.x2e{left:230.559908pt;}
.x18{left:232.639907pt;}
.x6f{left:233.599907pt;}
.x19{left:235.039906pt;}
.x2a{left:236.959905pt;}
.x2f{left:237.919905pt;}
.x2b{left:239.359904pt;}
.x7a{left:246.559901pt;}
.x6{left:248.319901pt;}
.xa{left:253.279899pt;}
.x30{left:255.039898pt;}
.x31{left:257.599897pt;}
.x76{left:263.840285pt;}
.x32{left:264.959894pt;}
.x7c{left:269.119883pt;}
.x33{left:271.999891pt;}
.x1a{left:273.279891pt;}
.x84{left:274.239886pt;}
.xb{left:275.519863pt;}
.x1b{left:277.759889pt;}
.x7b{left:279.679885pt;}
.x34{left:285.599886pt;}
.x35{left:290.239884pt;}
.x36{left:297.599881pt;}
.x79{left:301.439459pt;}
.x37{left:302.399879pt;}
.x38{left:315.999874pt;}
.x39{left:320.639872pt;}
.x6a{left:325.119564pt;}
.xc{left:326.559903pt;}
.x3a{left:327.999869pt;}
.x3b{left:335.039866pt;}
.x7e{left:336.159929pt;}
.x15{left:337.119865pt;}
.x16{left:339.519864pt;}
.xf{left:342.079863pt;}
.x7d{left:344.159923pt;}
.xd{left:358.079857pt;}
.x17{left:363.359855pt;}
.x1c{left:365.599854pt;}
.x77{left:367.039558pt;}
.x72{left:369.119852pt;}
.x73{left:371.519851pt;}
.x3c{left:387.519845pt;}
.x5{left:390.239844pt;}
.x7{left:394.559842pt;}
.x85{left:396.319993pt;}
.x3d{left:397.439841pt;}
.x80{left:399.039986pt;}
.x8{left:400.319840pt;}
.x3{left:402.079839pt;}
.x3e{left:407.039837pt;}
.x7f{left:409.599988pt;}
.x3f{left:414.559834pt;}
.x1d{left:415.839834pt;}
.x40{left:417.119833pt;}
.x1e{left:420.319832pt;}
.x41{left:424.479830pt;}
.x42{left:431.519827pt;}
.x43{left:445.119822pt;}
.xe{left:446.079822pt;}
.x44{left:449.759820pt;}
.x45{left:457.119817pt;}
.x46{left:461.919815pt;}
.x82{left:467.679998pt;}
.x47{left:475.519810pt;}
.x81{left:478.240000pt;}
.x48{left:480.159808pt;}
.x49{left:487.519805pt;}
.x4a{left:494.719802pt;}
.x83{left:510.879994pt;}
.x6e{left:523.999790pt;}
.x9{left:549.919780pt;}
.x67{left:555.999778pt;}
.x6c{left:559.999776pt;}
.x69{left:564.959774pt;}
.x68{left:575.519770pt;}
.x65{left:580.959768pt;}
.x87{left:595.199762pt;}
.x4b{left:602.559759pt;}
.x4c{left:607.359757pt;}
.x70{left:612.159755pt;}
.x71{left:614.559754pt;}
.x4d{left:618.399753pt;}
.x4e{left:620.959752pt;}
.x1f{left:622.399751pt;}
.x20{left:624.799750pt;}
.x21{left:640.479744pt;}
.x11{left:643.199743pt;}
.x12{left:645.599742pt;}
.x5c{left:647.519741pt;}
.x22{left:654.079738pt;}
.x4f{left:658.719737pt;}
.x50{left:663.519735pt;}
.x23{left:669.439732pt;}
.x51{left:674.559730pt;}
.x10{left:676.799729pt;}
.x52{left:679.039728pt;}
.x13{left:681.919727pt;}
.x74{left:683.519727pt;}
.x5d{left:685.439726pt;}
.x14{left:686.399725pt;}
.x5f{left:687.679725pt;}
.x5e{left:690.079724pt;}
.x86{left:814.400000pt;}
}




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