
    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_2baca9054bc6236dafb23a47.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.911133;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_94b0ecf49c5ba47ab8ccd58f.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.893555;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_25be6d9c4998e6c7c4aea8e8.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.895996;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_1645f9d0235de33fabbf5391.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.893555;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_4df65313f6dff3c9a19d8e78.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.740723;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_1dbce6b0aa2d668f5b0fafa8.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.686523;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_79910a7dc48b24327d427f04.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.766113;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_89db399587a3c81c7ddd4684.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.938477;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_304cae19061005958a239687.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.866699;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_0ebcb264a3029fafa2724ab5.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.908203;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_97424e628302b89bdb63a394.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.856934;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_99af5a5fd8805ee53456883d.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.861328;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.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.m6{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);}
.m5{transform:matrix(0.374170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374170,0.000000,0.000000,0.250000,0,0);}
.v4{vertical-align:-36.719985px;}
.v1{vertical-align:-4.319998px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:23.759990px;}
.v3{vertical-align:37.439985px;}
.ls8{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.018600px;}
.ls1{letter-spacing:0.019699px;}
.ls9{letter-spacing:0.021106px;}
.lsa{letter-spacing:0.021282px;}
.ls2{letter-spacing:0.378600px;}
.ls7{letter-spacing:0.903120px;}
.ls3{letter-spacing:33.295427px;}
.ls5{letter-spacing:76.375545px;}
.ls4{letter-spacing:162.106778px;}
.ls0{letter-spacing:1347.214999px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(83,129,53),0 0.015em rgb(83,129,53),0.015em 0 rgb(83,129,53),0 -0.015em  rgb(83,129,53);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(83,129,53);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4{word-spacing:-32.418587px;}
.ws8{word-spacing:-23.418711px;}
.ws7{word-spacing:-18.021275px;}
.ws1{word-spacing:-17.999993px;}
.ws0{word-spacing:-16.579693px;}
.ws2{word-spacing:-16.559993px;}
.ws3{word-spacing:-15.011994px;}
.ws5{word-spacing:-13.505755px;}
.ws9{word-spacing:-12.059995px;}
.ws6{word-spacing:0.000000px;}
._f{margin-left:-47.575677px;}
._2{margin-left:-5.092173px;}
._1{margin-left:-3.282757px;}
._4{margin-left:-2.148233px;}
._3{margin-left:-1.118470px;}
._0{width:1.003097px;}
._8{width:2.192688px;}
._7{width:3.214027px;}
._6{width:4.844253px;}
._5{width:6.384783px;}
._9{width:7.406468px;}
._b{width:9.001123px;}
._a{width:10.693896px;}
._10{width:11.769459px;}
._20{width:13.259309px;}
._d{width:14.652367px;}
._1c{width:15.818684px;}
._21{width:16.992892px;}
._1d{width:19.410377px;}
._11{width:20.652282px;}
._c{width:22.464064px;}
._1e{width:24.033240px;}
._1f{width:26.960302px;}
._e{width:34.715332px;}
._22{width:37.883307px;}
._1a{width:105.346497px;}
._1b{width:138.416269px;}
._17{width:193.502402px;}
._12{width:295.013593px;}
._13{width:318.338180px;}
._18{width:440.193107px;}
._14{width:446.587229px;}
._16{width:569.205086px;}
._19{width:685.861934px;}
._15{width:746.378773px;}
.fc1{color:rgb(64,64,64);}
.fc2{color:rgb(255,255,255);}
.fcb{color:rgb(51,51,51);}
.fcc{color:rgb(0,176,80);}
.fc3{color:rgb(31,73,124);}
.fc0{color:rgb(0,0,0);}
.fca{color:rgb(44,62,80);}
.fc4{color:rgb(255,0,0);}
.fc5{color:rgb(0,112,192);}
.fc8{color:rgb(192,0,0);}
.fc7{color:rgb(83,129,53);}
.fcd{color:transparent;}
.fc6{color:rgb(0,0,255);}
.fc9{color:rgb(0,32,96);}
.fs4{font-size:48.239981px;}
.fs2{font-size:53.999978px;}
.fs0{font-size:59.759976px;}
.fs1{font-size:66.239974px;}
.fs3{font-size:71.999971px;}
.fs5{font-size:84.239966px;}
.y0{bottom:0.000000px;}
.y1c{bottom:2.699144px;}
.y3d{bottom:2.878992px;}
.y3a{bottom:3.239326px;}
.y44{bottom:3.958959px;}
.y8a{bottom:3.959239px;}
.y8d{bottom:3.959261px;}
.y93{bottom:3.959282px;}
.y95{bottom:3.959292px;}
.y97{bottom:3.959302px;}
.y99{bottom:3.959312px;}
.y9b{bottom:3.959323px;}
.y9e{bottom:3.959693px;}
.ya0{bottom:3.960003px;}
.ya2{bottom:3.960013px;}
.ya{bottom:3.960038px;}
.yb7{bottom:4.679048px;}
.yb{bottom:32.700287px;}
.y9{bottom:50.700240px;}
.y7{bottom:54.660278px;}
.y8{bottom:55.740278px;}
.ye9{bottom:109.379956px;}
.y63{bottom:109.559956px;}
.ya1{bottom:113.160240px;}
.yd5{bottom:115.319954px;}
.yc6{bottom:130.259948px;}
.y9f{bottom:138.720240px;}
.y5{bottom:140.339944px;}
.yb5{bottom:140.519944px;}
.yd4{bottom:146.279941px;}
.y3b{bottom:148.980240px;}
.y62{bottom:150.959940px;}
.y9d{bottom:164.100240px;}
.ye8{bottom:171.659931px;}
.yd3{bottom:177.419929px;}
.y39{bottom:181.380600px;}
.yb4{bottom:181.919927px;}
.y9a{bottom:189.660600px;}
.y61{bottom:192.359923px;}
.y9c{bottom:200.459920px;}
.y27{bottom:204.779918px;}
.yd2{bottom:208.379917px;}
.y74{bottom:213.059915px;}
.y98{bottom:215.760600px;}
.yb3{bottom:223.319911px;}
.y4a{bottom:227.099909px;}
.y60{bottom:233.759906px;}
.yd1{bottom:239.519904px;}
.y96{bottom:241.320600px;}
.yb2{bottom:244.199902px;}
.y49{bottom:245.459902px;}
.ye7{bottom:254.459898px;}
.y48{bottom:263.819894px;}
.y94{bottom:266.700600px;}
.yd0{bottom:270.479892px;}
.y5f{bottom:275.159890px;}
.ye6{bottom:281.999887px;}
.y47{bottom:282.179887px;}
.yb1{bottom:285.599886px;}
.y92{bottom:292.260600px;}
.ye5{bottom:295.859882px;}
.y46{bottom:300.359880px;}
.ycf{bottom:301.619879px;}
.y5e{bottom:316.559873px;}
.y45{bottom:318.719873px;}
.y90{bottom:321.599871px;}
.yb0{bottom:326.999869px;}
.y26{bottom:327.179869px;}
.y91{bottom:327.899869px;}
.yce{bottom:332.579867px;}
.ye4{bottom:337.259865px;}
.y8c{bottom:343.200600px;}
.y8f{bottom:353.999858px;}
.y38{bottom:355.259858px;}
.y5d{bottom:357.959857px;}
.ycd{bottom:363.719855px;}
.y8b{bottom:367.859853px;}
.yaf{bottom:368.399853px;}
.y37{bottom:375.239850px;}
.y8e{bottom:378.119849px;}
.y73{bottom:378.659849px;}
.y36{bottom:392.519843px;}
.ycc{bottom:394.679842px;}
.y5c{bottom:399.359840px;}
.y89{bottom:399.720600px;}
.yae{bottom:409.799836px;}
.y25{bottom:413.399835px;}
.ye3{bottom:420.059832px;}
.y88{bottom:424.379830px;}
.ycb{bottom:425.639830px;}
.y35{bottom:430.679828px;}
.y5b{bottom:440.759824px;}
.y34{bottom:447.959821px;}
.y24{bottom:448.139821px;}
.yad{bottom:451.199820px;}
.y87{bottom:455.879818px;}
.ye2{bottom:461.459815px;}
.y86{bottom:461.999815px;}
.y23{bottom:463.439815px;}
.y33{bottom:465.239814px;}
.y22{bottom:478.739809px;}
.y85{bottom:481.259807px;}
.y72{bottom:481.979807px;}
.y5a{bottom:482.159807px;}
.y32{bottom:482.519807px;}
.y84{bottom:487.559805px;}
.yca{bottom:487.739805px;}
.yac{bottom:492.599803px;}
.y21{bottom:492.959803px;}
.y31{bottom:499.619800px;}
.ye1{bottom:502.859799px;}
.y83{bottom:506.999797px;}
.y30{bottom:516.899793px;}
.y71{bottom:523.379791px;}
.y59{bottom:523.559791px;}
.y20{bottom:526.439789px;}
.yc9{bottom:529.139788px;}
.yc5{bottom:530.399788px;}
.yab{bottom:533.999786px;}
.y2f{bottom:534.179786px;}
.y82{bottom:539.039784px;}
.ye0{bottom:544.259782px;}
.y2e{bottom:551.459779px;}
.y1f{bottom:559.919776px;}
.y70{bottom:564.779774px;}
.y58{bottom:564.959774px;}
.y2d{bottom:568.739773px;}
.y81{bottom:569.999772px;}
.yc8{bottom:570.539772px;}
.yaa{bottom:575.399770px;}
.ydf{bottom:585.659766px;}
.y2c{bottom:585.839766px;}
.y1e{bottom:593.399763px;}
.y80{bottom:601.139760px;}
.y2b{bottom:603.119759px;}
.y6f{bottom:606.179758px;}
.y57{bottom:606.359757px;}
.y1d{bottom:609.059756px;}
.yc7{bottom:611.939755px;}
.yc4{bottom:612.119755px;}
.ya9{bottom:616.799753px;}
.y2a{bottom:620.399752px;}
.yde{bottom:627.059749px;}
.y28{bottom:636.419745px;}
.y29{bottom:637.679745px;}
.y1b{bottom:637.680600px;}
.y56{bottom:647.759741px;}
.y7f{bottom:648.119741px;}
.yc3{bottom:653.339739px;}
.ya8{bottom:658.019737px;}
.y19{bottom:663.779734px;}
.y1a{bottom:663.959734px;}
.ydd{bottom:668.459733px;}
.y6e{bottom:689.159724px;}
.y55{bottom:689.339724px;}
.y7e{bottom:689.519724px;}
.y18{bottom:693.299723px;}
.yc2{bottom:694.739722px;}
.ya7{bottom:702.479719px;}
.ydc{bottom:709.859716px;}
.y17{bottom:717.419713px;}
.y6c{bottom:730.559708px;}
.y54{bottom:730.739708px;}
.y7d{bottom:730.919708px;}
.yc1{bottom:736.139706px;}
.y6d{bottom:737.399705px;}
.y16{bottom:741.359703px;}
.ydb{bottom:751.259699px;}
.y15{bottom:765.299694px;}
.y6b{bottom:771.959691px;}
.y53{bottom:772.139691px;}
.y7c{bottom:772.499691px;}
.yc0{bottom:777.539689px;}
.ya6{bottom:787.439685px;}
.y14{bottom:789.239684px;}
.yda{bottom:792.659683px;}
.y13{bottom:813.179675px;}
.y6a{bottom:813.359675px;}
.y52{bottom:813.539675px;}
.y7b{bottom:813.899674px;}
.ya5{bottom:818.399673px;}
.ybf{bottom:818.939672px;}
.y69{bottom:834.059666px;}
.y12{bottom:837.299665px;}
.ya4{bottom:839.279664px;}
.y68{bottom:854.759658px;}
.y51{bottom:854.939658px;}
.y7a{bottom:855.299658px;}
.y11{bottom:857.999657px;}
.ybe{bottom:860.339656px;}
.y67{bottom:875.459650px;}
.yb6{bottom:875.460600px;}
.y10{bottom:885.539646px;}
.y66{bottom:896.159642px;}
.y50{bottom:896.339641px;}
.y79{bottom:896.699641px;}
.ybd{bottom:901.739639px;}
.yf{bottom:905.519638px;}
.yd9{bottom:916.859633px;}
.y65{bottom:937.559625px;}
.y4f{bottom:937.739625px;}
.y78{bottom:938.099625px;}
.ybc{bottom:943.139623px;}
.ye{bottom:953.219619px;}
.yec{bottom:958.259617px;}
.yed{bottom:965.099614px;}
.yd{bottom:973.919610px;}
.y4e{bottom:978.959608px;}
.yeb{bottom:979.139608px;}
.y77{bottom:979.499608px;}
.ybb{bottom:984.539606px;}
.yc{bottom:994.619602px;}
.yd8{bottom:999.659600px;}
.yea{bottom:999.839600px;}
.y76{bottom:1000.199600px;}
.y3c{bottom:1017.840600px;}
.y4d{bottom:1020.359592px;}
.y75{bottom:1020.899592px;}
.yba{bottom:1025.939590px;}
.y42{bottom:1027.199589px;}
.yd7{bottom:1041.059584px;}
.y41{bottom:1046.099582px;}
.y64{bottom:1061.759575px;}
.y4c{bottom:1061.939575px;}
.y40{bottom:1064.999574px;}
.yb9{bottom:1067.339573px;}
.yd6{bottom:1082.459567px;}
.y3f{bottom:1084.079566px;}
.y43{bottom:1099.020600px;}
.y3e{bottom:1102.979559px;}
.y4b{bottom:1103.159559px;}
.yb8{bottom:1108.739557px;}
.ya3{bottom:1111.619555px;}
.y4{bottom:1129.259548px;}
.y6{bottom:1157.519537px;}
.y3{bottom:1160.399536px;}
.y2{bottom:1177.679529px;}
.y1{bottom:1194.959522px;}
.hd{height:14.040000px;}
.h11{height:16.560000px;}
.h12{height:17.640000px;}
.h5{height:18.720000px;}
.h15{height:20.160000px;}
.h17{height:23.760000px;}
.h14{height:33.541862px;}
.he{height:33.706744px;}
.h3{height:36.597642px;}
.h10{height:36.624009px;}
.h4{height:37.546860px;}
.hf{height:39.313461px;}
.h16{height:40.501390px;}
.h1{height:41.551858px;}
.h6{height:42.894123px;}
.hb{height:44.149201px;}
.h13{height:44.893107px;}
.h2{height:46.057482px;}
.h7{height:48.796855px;}
.ha{height:50.062480px;}
.h9{height:52.417948px;}
.h18{height:61.328999px;}
.h8{height:64.261381px;}
.hc{height:82.333092px;}
.h0{height:1263.000000px;}
.w28{width:2.880000px;}
.w7{width:3.600000px;}
.wf{width:4.320000px;}
.wc{width:4.500000px;}
.w2{width:5.220000px;}
.w4{width:7.020000px;}
.w5{width:7.560000px;}
.w6{width:8.280000px;}
.w9{width:9.000000px;}
.w21{width:9.900000px;}
.w19{width:10.080000px;}
.w13{width:17.280000px;}
.w1f{width:21.240000px;}
.w1c{width:23.400000px;}
.w27{width:24.480000px;}
.w17{width:25.920000px;}
.w1d{width:29.340000px;}
.w20{width:30.780000px;}
.w1a{width:30.960000px;}
.w22{width:31.140000px;}
.wd{width:34.740000px;}
.w15{width:36.720000px;}
.w26{width:38.880000px;}
.w18{width:39.600000px;}
.we{width:46.980000px;}
.w12{width:47.160000px;}
.w1e{width:48.960000px;}
.w8{width:49.140000px;}
.w1b{width:52.020000px;}
.w24{width:54.360000px;}
.wa{width:55.980000px;}
.wb{width:57.060000px;}
.w14{width:61.920000px;}
.w10{width:62.820000px;}
.w11{width:66.060000px;}
.w25{width:83.340000px;}
.w16{width:94.500000px;}
.w3{width:113.760000px;}
.w23{width:138.240000px;}
.w1{width:892.500000px;}
.w0{width:892.830000px;}
.x28{left:-4.680255px;}
.x0{left:0.000000px;}
.x18{left:90.899964px;}
.x16{left:96.839961px;}
.x1{left:98.999960px;}
.x2a{left:107.999957px;}
.x13{left:110.880000px;}
.x1a{left:111.959955px;}
.x15{left:117.539890px;}
.x10{left:120.059952px;}
.x4{left:123.299951px;}
.xa{left:129.779948px;}
.xb{left:135.720018px;}
.x7{left:136.799945px;}
.xd{left:139.319944px;}
.x19{left:151.559939px;}
.x17{left:153.539939px;}
.x8{left:159.300153px;}
.x80{left:161.999525px;}
.x3f{left:163.800211px;}
.x42{left:165.780000px;}
.x4e{left:167.940000px;}
.x6d{left:170.100000px;}
.x5b{left:178.380000px;}
.x6e{left:191.340000px;}
.x75{left:199.980000px;}
.x2d{left:212.219915px;}
.x21{left:213.480000px;}
.x11{left:215.819914px;}
.x12{left:218.879912px;}
.x6b{left:220.140000px;}
.x14{left:224.640000px;}
.xc{left:230.760198px;}
.x1b{left:237.599915px;}
.x9{left:239.219441px;}
.x6c{left:248.039901px;}
.x81{left:250.379900px;}
.xe{left:254.520215px;}
.xf{left:255.780970px;}
.x82{left:260.459896px;}
.x62{left:262.440000px;}
.x1c{left:263.519881px;}
.x22{left:273.419891px;}
.x1e{left:282.959417px;}
.x25{left:287.279826px;}
.x63{left:288.360000px;}
.x29{left:289.619884px;}
.x1d{left:291.959883px;}
.x2{left:293.579883px;}
.x7d{left:297.899881px;}
.x20{left:299.520000px;}
.x2e{left:310.499876px;}
.x64{left:311.580000px;}
.x50{left:315.900000px;}
.x2f{left:322.919871px;}
.x43{left:324.000000px;}
.x76{left:332.460000px;}
.x4f{left:334.439866px;}
.x1f{left:336.959865px;}
.x58{left:343.260000px;}
.x6f{left:346.680000px;}
.x5c{left:347.760000px;}
.x65{left:351.180000px;}
.x5d{left:356.040000px;}
.x7e{left:359.099856px;}
.x59{left:360.540000px;}
.x7f{left:365.039854px;}
.x77{left:371.340000px;}
.x23{left:377.099911px;}
.x24{left:378.179849px;}
.x44{left:379.980000px;}
.x51{left:381.959847px;}
.x52{left:388.080000px;}
.x26{left:389.879844px;}
.x30{left:391.319843px;}
.x45{left:412.739835px;}
.x5{left:423.899830px;}
.x3d{left:427.859829px;}
.x41{left:432.899827px;}
.x3e{left:439.919824px;}
.x46{left:449.100000px;}
.x66{left:457.020000px;}
.x53{left:461.340000px;}
.x31{left:462.959815px;}
.x72{left:469.800000px;}
.x32{left:475.559810px;}
.x78{left:477.900000px;}
.x40{left:479.879808px;}
.x5a{left:488.700000px;}
.x70{left:492.120000px;}
.x5e{left:493.200000px;}
.x67{left:496.620000px;}
.x5f{left:501.480000px;}
.x47{left:506.160000px;}
.x48{left:510.660000px;}
.x79{left:516.780000px;}
.x33{left:522.359791px;}
.x73{left:524.160000px;}
.x54{left:527.399789px;}
.x55{left:533.520000px;}
.x34{left:534.959786px;}
.x68{left:537.660000px;}
.x49{left:545.400000px;}
.x35{left:549.899780px;}
.x36{left:562.319775px;}
.x4a{left:588.239765px;}
.x37{left:619.739752px;}
.x4b{left:630.720000px;}
.x38{left:632.159747px;}
.x69{left:638.640000px;}
.x27{left:643.140000px;}
.x74{left:651.600000px;}
.x7a{left:659.520000px;}
.x2b{left:664.379734px;}
.x2c{left:670.499732px;}
.x71{left:673.740000px;}
.x60{left:674.820000px;}
.x3{left:676.979729px;}
.x6a{left:678.240000px;}
.x61{left:683.100000px;}
.x4c{left:687.780000px;}
.x39{left:692.999723px;}
.x7b{left:698.400000px;}
.x7c{left:702.000000px;}
.x3a{left:705.419718px;}
.x56{left:709.019716px;}
.x57{left:715.140000px;}
.x3b{left:719.459712px;}
.x4d{left:727.020000px;}
.x3c{left:731.879707px;}
.x83{left:733.319707px;}
.x84{left:742.859703px;}
.x6{left:789.480000px;}
@media print{
.v4{vertical-align:-32.639987pt;}
.v1{vertical-align:-3.839998pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:21.119992pt;}
.v3{vertical-align:33.279987pt;}
.ls8{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.016533pt;}
.ls1{letter-spacing:0.017510pt;}
.ls9{letter-spacing:0.018761pt;}
.lsa{letter-spacing:0.018917pt;}
.ls2{letter-spacing:0.336533pt;}
.ls7{letter-spacing:0.802773pt;}
.ls3{letter-spacing:29.595935pt;}
.ls5{letter-spacing:67.889373pt;}
.ls4{letter-spacing:144.094914pt;}
.ls0{letter-spacing:1197.524443pt;}
.ws4{word-spacing:-28.816521pt;}
.ws8{word-spacing:-20.816632pt;}
.ws7{word-spacing:-16.018911pt;}
.ws1{word-spacing:-15.999994pt;}
.ws0{word-spacing:-14.737505pt;}
.ws2{word-spacing:-14.719994pt;}
.ws3{word-spacing:-13.343995pt;}
.ws5{word-spacing:-12.005115pt;}
.ws9{word-spacing:-10.719996pt;}
.ws6{word-spacing:0.000000pt;}
._f{margin-left:-42.289491pt;}
._2{margin-left:-4.526376pt;}
._1{margin-left:-2.918006pt;}
._4{margin-left:-1.909540pt;}
._3{margin-left:-0.994195pt;}
._0{width:0.891642pt;}
._8{width:1.949056pt;}
._7{width:2.856912pt;}
._6{width:4.306003pt;}
._5{width:5.675362pt;}
._9{width:6.583527pt;}
._b{width:8.000998pt;}
._a{width:9.505686pt;}
._10{width:10.461741pt;}
._20{width:11.786052pt;}
._d{width:13.024327pt;}
._1c{width:14.061052pt;}
._21{width:15.104793pt;}
._1d{width:17.253668pt;}
._11{width:18.357584pt;}
._c{width:19.968057pt;}
._1e{width:21.362880pt;}
._1f{width:23.964713pt;}
._e{width:30.858073pt;}
._22{width:33.674051pt;}
._1a{width:93.641331pt;}
._1b{width:123.036684pt;}
._17{width:172.002135pt;}
._12{width:262.234305pt;}
._13{width:282.967271pt;}
._18{width:391.282762pt;}
._14{width:396.966426pt;}
._16{width:505.960076pt;}
._19{width:609.655052pt;}
._15{width:663.447799pt;}
.fs4{font-size:42.879983pt;}
.fs2{font-size:47.999981pt;}
.fs0{font-size:53.119979pt;}
.fs1{font-size:58.879976pt;}
.fs3{font-size:63.999974pt;}
.fs5{font-size:74.879970pt;}
.y0{bottom:0.000000pt;}
.y1c{bottom:2.399239pt;}
.y3d{bottom:2.559104pt;}
.y3a{bottom:2.879401pt;}
.y44{bottom:3.519074pt;}
.y8a{bottom:3.519323pt;}
.y8d{bottom:3.519343pt;}
.y93{bottom:3.519361pt;}
.y95{bottom:3.519370pt;}
.y97{bottom:3.519379pt;}
.y99{bottom:3.519389pt;}
.y9b{bottom:3.519398pt;}
.y9e{bottom:3.519727pt;}
.ya0{bottom:3.520003pt;}
.ya2{bottom:3.520012pt;}
.ya{bottom:3.520034pt;}
.yb7{bottom:4.159154pt;}
.yb{bottom:29.066922pt;}
.y9{bottom:45.066880pt;}
.y7{bottom:48.586914pt;}
.y8{bottom:49.546914pt;}
.ye9{bottom:97.226628pt;}
.y63{bottom:97.386628pt;}
.ya1{bottom:100.586880pt;}
.yd5{bottom:102.506626pt;}
.yc6{bottom:115.786620pt;}
.y9f{bottom:123.306880pt;}
.y5{bottom:124.746617pt;}
.yb5{bottom:124.906617pt;}
.yd4{bottom:130.026615pt;}
.y3b{bottom:132.426880pt;}
.y62{bottom:134.186613pt;}
.y9d{bottom:145.866880pt;}
.ye8{bottom:152.586606pt;}
.yd3{bottom:157.706604pt;}
.y39{bottom:161.227200pt;}
.yb4{bottom:161.706602pt;}
.y9a{bottom:168.587200pt;}
.y61{bottom:170.986598pt;}
.y9c{bottom:178.186595pt;}
.y27{bottom:182.026594pt;}
.yd2{bottom:185.226593pt;}
.y74{bottom:189.386591pt;}
.y98{bottom:191.787200pt;}
.yb3{bottom:198.506587pt;}
.y4a{bottom:201.866586pt;}
.y60{bottom:207.786584pt;}
.yd1{bottom:212.906582pt;}
.y96{bottom:214.507200pt;}
.yb2{bottom:217.066580pt;}
.y49{bottom:218.186579pt;}
.ye7{bottom:226.186576pt;}
.y48{bottom:234.506573pt;}
.y94{bottom:237.067200pt;}
.yd0{bottom:240.426570pt;}
.y5f{bottom:244.586569pt;}
.ye6{bottom:250.666566pt;}
.y47{bottom:250.826566pt;}
.yb1{bottom:253.866565pt;}
.y92{bottom:259.787200pt;}
.ye5{bottom:262.986561pt;}
.y46{bottom:266.986560pt;}
.ycf{bottom:268.106559pt;}
.y5e{bottom:281.386554pt;}
.y45{bottom:283.306553pt;}
.y90{bottom:285.866552pt;}
.yb0{bottom:290.666550pt;}
.y26{bottom:290.826550pt;}
.y91{bottom:291.466550pt;}
.yce{bottom:295.626548pt;}
.ye4{bottom:299.786547pt;}
.y8c{bottom:305.067200pt;}
.y8f{bottom:314.666541pt;}
.y38{bottom:315.786540pt;}
.y5d{bottom:318.186539pt;}
.ycd{bottom:323.306537pt;}
.y8b{bottom:326.986536pt;}
.yaf{bottom:327.466536pt;}
.y37{bottom:333.546533pt;}
.y8e{bottom:336.106532pt;}
.y73{bottom:336.586532pt;}
.y36{bottom:348.906527pt;}
.ycc{bottom:350.826526pt;}
.y5c{bottom:354.986525pt;}
.y89{bottom:355.307200pt;}
.yae{bottom:364.266521pt;}
.y25{bottom:367.466520pt;}
.ye3{bottom:373.386517pt;}
.y88{bottom:377.226516pt;}
.ycb{bottom:378.346515pt;}
.y35{bottom:382.826514pt;}
.y5b{bottom:391.786510pt;}
.y34{bottom:398.186507pt;}
.y24{bottom:398.346507pt;}
.yad{bottom:401.066506pt;}
.y87{bottom:405.226505pt;}
.ye2{bottom:410.186503pt;}
.y86{bottom:410.666502pt;}
.y23{bottom:411.946502pt;}
.y33{bottom:413.546501pt;}
.y22{bottom:425.546496pt;}
.y85{bottom:427.786496pt;}
.y72{bottom:428.426495pt;}
.y5a{bottom:428.586495pt;}
.y32{bottom:428.906495pt;}
.y84{bottom:433.386493pt;}
.yca{bottom:433.546493pt;}
.yac{bottom:437.866492pt;}
.y21{bottom:438.186491pt;}
.y31{bottom:444.106489pt;}
.ye1{bottom:446.986488pt;}
.y83{bottom:450.666486pt;}
.y30{bottom:459.466483pt;}
.y71{bottom:465.226481pt;}
.y59{bottom:465.386481pt;}
.y20{bottom:467.946479pt;}
.yc9{bottom:470.346479pt;}
.yc5{bottom:471.466478pt;}
.yab{bottom:474.666477pt;}
.y2f{bottom:474.826477pt;}
.y82{bottom:479.146475pt;}
.ye0{bottom:483.786473pt;}
.y2e{bottom:490.186471pt;}
.y1f{bottom:497.706468pt;}
.y70{bottom:502.026466pt;}
.y58{bottom:502.186466pt;}
.y2d{bottom:505.546464pt;}
.y81{bottom:506.666464pt;}
.yc8{bottom:507.146464pt;}
.yaa{bottom:511.466462pt;}
.ydf{bottom:520.586458pt;}
.y2c{bottom:520.746458pt;}
.y1e{bottom:527.466456pt;}
.y80{bottom:534.346453pt;}
.y2b{bottom:536.106452pt;}
.y6f{bottom:538.826451pt;}
.y57{bottom:538.986451pt;}
.y1d{bottom:541.386450pt;}
.yc7{bottom:543.946449pt;}
.yc4{bottom:544.106449pt;}
.ya9{bottom:548.266447pt;}
.y2a{bottom:551.466446pt;}
.yde{bottom:557.386444pt;}
.y28{bottom:565.706440pt;}
.y29{bottom:566.826440pt;}
.y1b{bottom:566.827200pt;}
.y56{bottom:575.786436pt;}
.y7f{bottom:576.106436pt;}
.yc3{bottom:580.746434pt;}
.ya8{bottom:584.906433pt;}
.y19{bottom:590.026431pt;}
.y1a{bottom:590.186431pt;}
.ydd{bottom:594.186429pt;}
.y6e{bottom:612.586422pt;}
.y55{bottom:612.746422pt;}
.y7e{bottom:612.906422pt;}
.y18{bottom:616.266420pt;}
.yc2{bottom:617.546420pt;}
.ya7{bottom:624.426417pt;}
.ydc{bottom:630.986414pt;}
.y17{bottom:637.706412pt;}
.y6c{bottom:649.386407pt;}
.y54{bottom:649.546407pt;}
.y7d{bottom:649.706407pt;}
.yc1{bottom:654.346405pt;}
.y6d{bottom:655.466404pt;}
.y16{bottom:658.986403pt;}
.ydb{bottom:667.786400pt;}
.y15{bottom:680.266395pt;}
.y6b{bottom:686.186392pt;}
.y53{bottom:686.346392pt;}
.y7c{bottom:686.666392pt;}
.yc0{bottom:691.146390pt;}
.ya6{bottom:699.946387pt;}
.y14{bottom:701.546386pt;}
.yda{bottom:704.586385pt;}
.y13{bottom:722.826378pt;}
.y6a{bottom:722.986377pt;}
.y52{bottom:723.146377pt;}
.y7b{bottom:723.466377pt;}
.ya5{bottom:727.466376pt;}
.ybf{bottom:727.946375pt;}
.y69{bottom:741.386370pt;}
.y12{bottom:744.266369pt;}
.ya4{bottom:746.026368pt;}
.y68{bottom:759.786363pt;}
.y51{bottom:759.946363pt;}
.y7a{bottom:760.266363pt;}
.y11{bottom:762.666362pt;}
.ybe{bottom:764.746361pt;}
.y67{bottom:778.186355pt;}
.yb6{bottom:778.187200pt;}
.y10{bottom:787.146352pt;}
.y66{bottom:796.586348pt;}
.y50{bottom:796.746348pt;}
.y79{bottom:797.066348pt;}
.ybd{bottom:801.546346pt;}
.yf{bottom:804.906345pt;}
.yd9{bottom:814.986341pt;}
.y65{bottom:833.386333pt;}
.y4f{bottom:833.546333pt;}
.y78{bottom:833.866333pt;}
.ybc{bottom:838.346331pt;}
.ye{bottom:847.306328pt;}
.yec{bottom:851.786326pt;}
.yed{bottom:857.866324pt;}
.yd{bottom:865.706320pt;}
.y4e{bottom:870.186319pt;}
.yeb{bottom:870.346319pt;}
.y77{bottom:870.666318pt;}
.ybb{bottom:875.146317pt;}
.yc{bottom:884.106313pt;}
.yd8{bottom:888.586311pt;}
.yea{bottom:888.746311pt;}
.y76{bottom:889.066311pt;}
.y3c{bottom:904.747200pt;}
.y4d{bottom:906.986304pt;}
.y75{bottom:907.466304pt;}
.yba{bottom:911.946302pt;}
.y42{bottom:913.066301pt;}
.yd7{bottom:925.386297pt;}
.y41{bottom:929.866295pt;}
.y64{bottom:943.786289pt;}
.y4c{bottom:943.946289pt;}
.y40{bottom:946.666288pt;}
.yb9{bottom:948.746287pt;}
.yd6{bottom:962.186282pt;}
.y3f{bottom:963.626281pt;}
.y43{bottom:976.907200pt;}
.y3e{bottom:980.426274pt;}
.y4b{bottom:980.586274pt;}
.yb8{bottom:985.546272pt;}
.ya3{bottom:988.106271pt;}
.y4{bottom:1003.786265pt;}
.y6{bottom:1028.906255pt;}
.y3{bottom:1031.466254pt;}
.y2{bottom:1046.826248pt;}
.y1{bottom:1062.186242pt;}
.hd{height:12.480000pt;}
.h11{height:14.720000pt;}
.h12{height:15.680000pt;}
.h5{height:16.640000pt;}
.h15{height:17.920000pt;}
.h17{height:21.120000pt;}
.h14{height:29.814988pt;}
.he{height:29.961551pt;}
.h3{height:32.531237pt;}
.h10{height:32.554674pt;}
.h4{height:33.374987pt;}
.hf{height:34.945299pt;}
.h16{height:36.001236pt;}
.h1{height:36.934985pt;}
.h6{height:38.128110pt;}
.hb{height:39.243734pt;}
.h13{height:39.904984pt;}
.h2{height:40.939984pt;}
.h7{height:43.374983pt;}
.ha{height:44.499982pt;}
.h9{height:46.593731pt;}
.h18{height:54.514666pt;}
.h8{height:57.121227pt;}
.hc{height:73.184971pt;}
.h0{height:1122.666667pt;}
.w28{width:2.560000pt;}
.w7{width:3.200000pt;}
.wf{width:3.840000pt;}
.wc{width:4.000000pt;}
.w2{width:4.640000pt;}
.w4{width:6.240000pt;}
.w5{width:6.720000pt;}
.w6{width:7.360000pt;}
.w9{width:8.000000pt;}
.w21{width:8.800000pt;}
.w19{width:8.960000pt;}
.w13{width:15.360000pt;}
.w1f{width:18.880000pt;}
.w1c{width:20.800000pt;}
.w27{width:21.760000pt;}
.w17{width:23.040000pt;}
.w1d{width:26.080000pt;}
.w20{width:27.360000pt;}
.w1a{width:27.520000pt;}
.w22{width:27.680000pt;}
.wd{width:30.880000pt;}
.w15{width:32.640000pt;}
.w26{width:34.560000pt;}
.w18{width:35.200000pt;}
.we{width:41.760000pt;}
.w12{width:41.920000pt;}
.w1e{width:43.520000pt;}
.w8{width:43.680000pt;}
.w1b{width:46.240000pt;}
.w24{width:48.320000pt;}
.wa{width:49.760000pt;}
.wb{width:50.720000pt;}
.w14{width:55.040000pt;}
.w10{width:55.840000pt;}
.w11{width:58.720000pt;}
.w25{width:74.080000pt;}
.w16{width:84.000000pt;}
.w3{width:101.120000pt;}
.w23{width:122.880000pt;}
.w1{width:793.333333pt;}
.w0{width:793.626667pt;}
.x28{left:-4.160227pt;}
.x0{left:0.000000pt;}
.x18{left:80.799968pt;}
.x16{left:86.079966pt;}
.x1{left:87.999965pt;}
.x2a{left:95.999962pt;}
.x13{left:98.560000pt;}
.x1a{left:99.519960pt;}
.x15{left:104.479903pt;}
.x10{left:106.719957pt;}
.x4{left:109.599956pt;}
.xa{left:115.359954pt;}
.xb{left:120.640016pt;}
.x7{left:121.599951pt;}
.xd{left:123.839950pt;}
.x19{left:134.719946pt;}
.x17{left:136.479945pt;}
.x8{left:141.600136pt;}
.x80{left:143.999578pt;}
.x3f{left:145.600188pt;}
.x42{left:147.360000pt;}
.x4e{left:149.280000pt;}
.x6d{left:151.200000pt;}
.x5b{left:158.560000pt;}
.x6e{left:170.080000pt;}
.x75{left:177.760000pt;}
.x2d{left:188.639925pt;}
.x21{left:189.760000pt;}
.x11{left:191.839923pt;}
.x12{left:194.559922pt;}
.x6b{left:195.680000pt;}
.x14{left:199.680000pt;}
.xc{left:205.120176pt;}
.x1b{left:211.199924pt;}
.x9{left:212.639503pt;}
.x6c{left:220.479912pt;}
.x81{left:222.559911pt;}
.xe{left:226.240191pt;}
.xf{left:227.360862pt;}
.x82{left:231.519907pt;}
.x62{left:233.280000pt;}
.x1c{left:234.239895pt;}
.x22{left:243.039903pt;}
.x1e{left:251.519481pt;}
.x25{left:255.359845pt;}
.x63{left:256.320000pt;}
.x29{left:257.439897pt;}
.x1d{left:259.519896pt;}
.x2{left:260.959896pt;}
.x7d{left:264.799894pt;}
.x20{left:266.240000pt;}
.x2e{left:275.999890pt;}
.x64{left:276.960000pt;}
.x50{left:280.800000pt;}
.x2f{left:287.039885pt;}
.x43{left:288.000000pt;}
.x76{left:295.520000pt;}
.x4f{left:297.279881pt;}
.x1f{left:299.519880pt;}
.x58{left:305.120000pt;}
.x6f{left:308.160000pt;}
.x5c{left:309.120000pt;}
.x65{left:312.160000pt;}
.x5d{left:316.480000pt;}
.x7e{left:319.199872pt;}
.x59{left:320.480000pt;}
.x7f{left:324.479870pt;}
.x77{left:330.080000pt;}
.x23{left:335.199921pt;}
.x24{left:336.159866pt;}
.x44{left:337.760000pt;}
.x51{left:339.519864pt;}
.x52{left:344.960000pt;}
.x26{left:346.559861pt;}
.x30{left:347.839861pt;}
.x45{left:366.879853pt;}
.x5{left:376.799849pt;}
.x3d{left:380.319848pt;}
.x41{left:384.799846pt;}
.x3e{left:391.039844pt;}
.x46{left:399.200000pt;}
.x66{left:406.240000pt;}
.x53{left:410.080000pt;}
.x31{left:411.519835pt;}
.x72{left:417.600000pt;}
.x32{left:422.719831pt;}
.x78{left:424.800000pt;}
.x40{left:426.559829pt;}
.x5a{left:434.400000pt;}
.x70{left:437.440000pt;}
.x5e{left:438.400000pt;}
.x67{left:441.440000pt;}
.x5f{left:445.760000pt;}
.x47{left:449.920000pt;}
.x48{left:453.920000pt;}
.x79{left:459.360000pt;}
.x33{left:464.319814pt;}
.x73{left:465.920000pt;}
.x54{left:468.799812pt;}
.x55{left:474.240000pt;}
.x34{left:475.519810pt;}
.x68{left:477.920000pt;}
.x49{left:484.800000pt;}
.x35{left:488.799804pt;}
.x36{left:499.839800pt;}
.x4a{left:522.879791pt;}
.x37{left:550.879780pt;}
.x4b{left:560.640000pt;}
.x38{left:561.919775pt;}
.x69{left:567.680000pt;}
.x27{left:571.680000pt;}
.x74{left:579.200000pt;}
.x7a{left:586.240000pt;}
.x2b{left:590.559764pt;}
.x2c{left:595.999762pt;}
.x71{left:598.880000pt;}
.x60{left:599.840000pt;}
.x3{left:601.759759pt;}
.x6a{left:602.880000pt;}
.x61{left:607.200000pt;}
.x4c{left:611.360000pt;}
.x39{left:615.999754pt;}
.x7b{left:620.800000pt;}
.x7c{left:624.000000pt;}
.x3a{left:627.039749pt;}
.x56{left:630.239748pt;}
.x57{left:635.680000pt;}
.x3b{left:639.519744pt;}
.x4d{left:646.240000pt;}
.x3c{left:650.559740pt;}
.x83{left:651.839739pt;}
.x84{left:660.319736pt;}
.x6{left:701.760000pt;}
}




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