
    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_e595bcd542f810ecc3afdff0.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910645;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_471940a67e17fe729c7f6831.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.861816;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_972fb57e77fc402a5d6539e2.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.857910;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_8823df53f0bc5623141c9870.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_b5255f4f2f4e19a029efdaac.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.939453;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_64b039617159ebb1efb1c671.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938965;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_63d3b84f710329070fc69636.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.774414;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_4632b6dfc5cd028ed10e4dbe.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.904297;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_d2342793ebeb951a91358858.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.692383;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_e02af3423c153a58914e211f.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_de73c1cd89ffc4559da253c4.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_81447adf79a5a72cd22ec52c.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_aa36e6d417f447c8c214c048.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.811035;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);}
.m5{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);}
.m1{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);}
.m3{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);}
.m4{transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-10.079996px;}
.v0{vertical-align:0.000000px;}
.lsb{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.018600px;}
.lsd{letter-spacing:0.141776px;}
.lse{letter-spacing:0.153776px;}
.lsc{letter-spacing:0.153780px;}
.ls3{letter-spacing:0.153811px;}
.ls10{letter-spacing:0.179444px;}
.ls4{letter-spacing:0.182640px;}
.ls7{letter-spacing:0.189018px;}
.lsf{letter-spacing:0.233400px;}
.ls1{letter-spacing:0.237796px;}
.lsa{letter-spacing:10.128776px;}
.ls2{letter-spacing:39.058844px;}
.ls9{letter-spacing:62.117975px;}
.ls6{letter-spacing:62.147307px;}
.ls5{letter-spacing:134.911955px;}
.ls0{letter-spacing:1583.791404px;}
.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;}
}
.ws5{word-spacing:-32.418587px;}
.ws0{word-spacing:-16.509790px;}
.ws1{word-spacing:-16.415993px;}
.ws2{word-spacing:-16.374233px;}
.ws8{word-spacing:-15.759354px;}
.ws4{word-spacing:-15.011994px;}
.ws3{word-spacing:-14.939994px;}
.ws6{word-spacing:-13.625275px;}
.ws7{word-spacing:0.000000px;}
._2{margin-left:-82.050447px;}
._c{margin-left:-7.049327px;}
._d{margin-left:-4.923640px;}
._6{margin-left:-3.135640px;}
._1{margin-left:-1.570800px;}
._0{width:1.013430px;}
._7{width:2.021892px;}
._e{width:3.030452px;}
._9{width:4.366273px;}
._11{width:5.388923px;}
._3{width:6.571283px;}
._15{width:7.642332px;}
._12{width:8.742734px;}
._8{width:9.907991px;}
._b{width:11.789356px;}
._14{width:13.753908px;}
._13{width:14.794972px;}
._1e{width:16.146761px;}
._a{width:17.274395px;}
._5{width:18.477111px;}
._4{width:19.514953px;}
._1b{width:20.833489px;}
._1a{width:22.479371px;}
._17{width:24.471993px;}
._16{width:25.521539px;}
._18{width:27.412594px;}
._19{width:28.452586px;}
._29{width:29.967619px;}
._25{width:31.105066px;}
._24{width:32.447330px;}
._22{width:34.128548px;}
._1d{width:35.439616px;}
._1c{width:36.653293px;}
._20{width:43.787596px;}
._1f{width:44.897056px;}
._23{width:46.357762px;}
._28{width:53.389471px;}
._f{width:54.726009px;}
._10{width:55.840818px;}
._26{width:74.179260px;}
._27{width:80.809926px;}
._21{width:108.915257px;}
.fc11{color:rgb(5,99,193);}
.fc10{color:rgb(51,51,51);}
.fce{color:rgb(83,129,53);}
.fc0{color:rgb(64,64,64);}
.fc2{color:rgb(255,255,255);}
.fc13{color:rgb(13,13,13);}
.fcc{color:rgb(0,176,80);}
.fc4{color:rgb(192,0,0);}
.fc12{color:transparent;}
.fcd{color:rgb(112,48,160);}
.fc3{color:rgb(68,84,106);}
.fc6{color:rgb(0,32,96);}
.fc5{color:rgb(0,112,192);}
.fc8{color:rgb(205,196,214);}
.fc9{color:rgb(225,216,236);}
.fca{color:rgb(153,142,164);}
.fcf{color:rgb(44,62,80);}
.fc1{color:rgb(0,0,0);}
.fc7{color:rgb(180,172,188);}
.fcb{color:rgb(243,238,248);}
.fs3{font-size:48.239981px;}
.fs2{font-size:53.999978px;}
.fs0{font-size:59.759976px;}
.fs5{font-size:66.239974px;}
.fs6{font-size:69.119972px;}
.fs1{font-size:71.999971px;}
.fs4{font-size:84.239966px;}
.y6{bottom:-10.979990px;}
.y0{bottom:0.000000px;}
.y5{bottom:0.120234px;}
.y21{bottom:3.958966px;}
.yb{bottom:4.860038px;}
.y1f{bottom:5.578946px;}
.yc{bottom:33.240287px;}
.ya{bottom:49.620240px;}
.y8{bottom:54.480278px;}
.y9{bottom:57.000277px;}
.y11a{bottom:132.239947px;}
.ye6{bottom:136.199946px;}
.yc2{bottom:136.379945px;}
.y98{bottom:136.739945px;}
.y10a{bottom:140.699944px;}
.y64{bottom:148.439941px;}
.y7a{bottom:148.619941px;}
.y119{bottom:156.179938px;}
.ye5{bottom:160.139936px;}
.yc1{bottom:160.319936px;}
.y97{bottom:160.679936px;}
.y1c{bottom:162.659935px;}
.y109{bottom:164.639934px;}
.y171{bottom:170.939932px;}
.y63{bottom:172.379931px;}
.y79{bottom:172.559931px;}
.y118{bottom:180.119928px;}
.y159{bottom:184.079926px;}
.y96{bottom:184.619926px;}
.y1b{bottom:186.599925px;}
.yd4{bottom:192.179923px;}
.yc0{bottom:196.139922px;}
.y62{bottom:196.319921px;}
.y78{bottom:196.499921px;}
.y108{bottom:200.459920px;}
.y170{bottom:205.859918px;}
.y158{bottom:206.939917px;}
.y136{bottom:208.019917px;}
.yb4{bottom:208.199917px;}
.y95{bottom:208.559917px;}
.y1a{bottom:210.539916px;}
.y117{bottom:215.939914px;}
.yd3{bottom:216.119914px;}
.ybf{bottom:220.079912px;}
.y77{bottom:220.439912px;}
.y16f{bottom:228.899908px;}
.y135{bottom:231.059908px;}
.y61{bottom:232.139907px;}
.y94{bottom:232.499907px;}
.y19{bottom:234.479906px;}
.y107{bottom:236.459905px;}
.y116{bottom:239.879904px;}
.y157{bottom:241.859903px;}
.ybe{bottom:244.019902px;}
.y76{bottom:244.379902px;}
.yd2{bottom:252.119899px;}
.ye4{bottom:255.899898px;}
.yb3{bottom:256.079898px;}
.y93{bottom:256.439897px;}
.y18{bottom:258.419897px;}
.y106{bottom:260.399896px;}
.y115{bottom:263.819894px;}
.y156{bottom:264.899894px;}
.y134{bottom:265.979894px;}
.y60{bottom:268.139893px;}
.y75{bottom:268.319893px;}
.yd1{bottom:276.059890px;}
.ye3{bottom:279.839888px;}
.ybd{bottom:280.019888px;}
.y92{bottom:280.379888px;}
.y105{bottom:284.339886px;}
.y16e{bottom:286.679885px;}
.y114{bottom:287.759885px;}
.y133{bottom:288.839884px;}
.y5f{bottom:292.079883px;}
.y74{bottom:292.259883px;}
.y17{bottom:295.499882px;}
.y91{bottom:304.319878px;}
.y104{bottom:308.279877px;}
.y16d{bottom:309.719876px;}
.y113{bottom:311.699875px;}
.yd0{bottom:311.879875px;}
.ybc{bottom:315.839874px;}
.y5e{bottom:316.019874px;}
.y73{bottom:316.199874px;}
.y155{bottom:322.679871px;}
.yaa{bottom:328.259869px;}
.y103{bottom:332.039867px;}
.y16{bottom:334.379866px;}
.y112{bottom:335.639866px;}
.ycf{bottom:335.819866px;}
.y5d{bottom:339.959864px;}
.y72{bottom:340.139864px;}
.y16c{bottom:344.639862px;}
.y154{bottom:345.719862px;}
.y132{bottom:346.619861px;}
.ye2{bottom:351.659859px;}
.yb2{bottom:351.839859px;}
.ya9{bottom:352.019859px;}
.y102{bottom:355.979858px;}
.yce{bottom:359.759856px;}
.y111{bottom:359.939856px;}
.y3c{bottom:363.899854px;}
.y71{bottom:364.079854px;}
.y16b{bottom:367.499853px;}
.y153{bottom:368.579853px;}
.y131{bottom:369.659852px;}
.ye1{bottom:375.599850px;}
.y5c{bottom:375.779850px;}
.ya8{bottom:375.959850px;}
.y90{bottom:376.139850px;}
.y101{bottom:379.919848px;}
.y110{bottom:383.879846px;}
.y70{bottom:388.019845px;}
.y152{bottom:391.439843px;}
.y130{bottom:392.519843px;}
.ycd{bottom:395.759842px;}
.y2f{bottom:397.019841px;}
.yb1{bottom:399.719840px;}
.y3b{bottom:399.899840px;}
.y8f{bottom:400.079840px;}
.y16a{bottom:402.419839px;}
.y100{bottom:403.859838px;}
.y10f{bottom:407.819837px;}
.ye0{bottom:411.599835px;}
.y5b{bottom:411.779835px;}
.y6f{bottom:411.959835px;}
.y8e{bottom:424.019830px;}
.y169{bottom:425.279830px;}
.y151{bottom:426.359829px;}
.y12f{bottom:427.439829px;}
.yff{bottom:427.799829px;}
.ycc{bottom:431.579827px;}
.y10e{bottom:431.759827px;}
.y41{bottom:435.539826px;}
.y5a{bottom:435.719826px;}
.ya7{bottom:435.899826px;}
.ydf{bottom:447.419821px;}
.y8d{bottom:447.959821px;}
.y150{bottom:449.399820px;}
.y12e{bottom:450.479820px;}
.y40{bottom:453.719819px;}
.ycb{bottom:455.519818px;}
.ybb{bottom:459.479816px;}
.y59{bottom:459.659816px;}
.ya6{bottom:459.839816px;}
.y168{bottom:460.379816px;}
.yfe{bottom:463.799814px;}
.y10d{bottom:469.019812px;}
.yde{bottom:471.359811px;}
.y3f{bottom:471.719811px;}
.y14f{bottom:472.259811px;}
.y12d{bottom:473.339811px;}
.yca{bottom:479.459808px;}
.y167{bottom:483.239807px;}
.y6e{bottom:483.599807px;}
.ya5{bottom:483.779806px;}
.y3e{bottom:489.719804px;}
.y58{bottom:495.479802px;}
.y8c{bottom:495.659802px;}
.yfd{bottom:499.619800px;}
.yc9{bottom:503.399799px;}
.y2e{bottom:505.019798px;}
.y166{bottom:506.099798px;}
.y14e{bottom:507.179797px;}
.ydd{bottom:507.359797px;}
.y6d{bottom:507.539797px;}
.ya4{bottom:507.719797px;}
.y12c{bottom:508.259797px;}
.y3d{bottom:508.439797px;}
.yba{bottom:519.419792px;}
.y8b{bottom:519.599792px;}
.yfc{bottom:523.559791px;}
.yc8{bottom:527.339789px;}
.y14d{bottom:530.219788px;}
.y12b{bottom:531.119788px;}
.y57{bottom:531.479787px;}
.ya3{bottom:531.659787px;}
.y3a{bottom:539.579784px;}
.y165{bottom:541.019784px;}
.ydc{bottom:543.179783px;}
.y8a{bottom:543.539783px;}
.yfb{bottom:547.499781px;}
.yc7{bottom:551.279779px;}
.y12a{bottom:554.159778px;}
.yb9{bottom:555.239778px;}
.y56{bottom:555.419778px;}
.y39{bottom:558.299777px;}
.y164{bottom:564.059774px;}
.y14c{bottom:565.139774px;}
.ydb{bottom:567.119773px;}
.y89{bottom:567.479773px;}
.yfa{bottom:571.439771px;}
.y38{bottom:575.579770px;}
.y55{bottom:579.179768px;}
.ya2{bottom:579.359768px;}
.y2d{bottom:582.959767px;}
.y14b{bottom:587.999765px;}
.yc6{bottom:588.539765px;}
.y129{bottom:589.079764px;}
.y6c{bottom:591.419763px;}
.yf9{bottom:595.379762px;}
.y163{bottom:598.979760px;}
.y37{bottom:601.679759px;}
.yda{bottom:603.119759px;}
.ya1{bottom:603.299759px;}
.y2c{bottom:608.699757px;}
.y14a{bottom:610.859756px;}
.y128{bottom:611.939755px;}
.y54{bottom:615.179754px;}
.y88{bottom:615.359754px;}
.y36{bottom:618.959752px;}
.yf8{bottom:619.319752px;}
.y162{bottom:621.839751px;}
.y2b{bottom:623.999750px;}
.yc5{bottom:627.059749px;}
.y6b{bottom:627.239749px;}
.y127{bottom:634.979746px;}
.y35{bottom:636.239746px;}
.yb0{bottom:639.119744px;}
.y2a{bottom:639.299744px;}
.yf7{bottom:643.259743px;}
.y161{bottom:644.699742px;}
.y149{bottom:645.779742px;}
.yc4{bottom:650.999740px;}
.y53{bottom:651.179740px;}
.y29{bottom:653.339739px;}
.yd9{bottom:662.879735px;}
.y87{bottom:663.239735px;}
.yf6{bottom:667.199733px;}
.y148{bottom:668.819732px;}
.y126{bottom:669.899732px;}
.y34{bottom:670.619732px;}
.yb8{bottom:674.939730px;}
.y52{bottom:675.119730px;}
.y28{bottom:677.999729px;}
.y160{bottom:679.799728px;}
.yd8{bottom:686.819725px;}
.ya0{bottom:687.179725px;}
.y33{bottom:687.719725px;}
.yf5{bottom:691.139724px;}
.y147{bottom:691.679723px;}
.y125{bottom:692.759723px;}
.y51{bottom:698.879720px;}
.y6a{bottom:699.059720px;}
.y27{bottom:702.479719px;}
.y15f{bottom:702.659719px;}
.y32{bottom:704.999718px;}
.yd7{bottom:710.759716px;}
.yb7{bottom:710.939716px;}
.yf4{bottom:715.079714px;}
.y26{bottom:717.959713px;}
.y31{bottom:722.279711px;}
.y50{bottom:722.819711px;}
.y69{bottom:722.999711px;}
.y146{bottom:726.599709px;}
.y124{bottom:727.679709px;}
.yb6{bottom:734.879706px;}
.y86{bottom:735.059706px;}
.y15e{bottom:737.579705px;}
.yf3{bottom:738.839704px;}
.y30{bottom:739.379704px;}
.y25{bottom:742.079703px;}
.yd6{bottom:746.759701px;}
.y68{bottom:746.939701px;}
.y145{bottom:749.639700px;}
.y123{bottom:750.539700px;}
.y4f{bottom:758.819696px;}
.y85{bottom:758.999696px;}
.y15d{bottom:760.439696px;}
.yf2{bottom:762.779695px;}
.yb5{bottom:770.699692px;}
.y67{bottom:770.879692px;}
.y144{bottom:772.499691px;}
.y122{bottom:773.579691px;}
.y24{bottom:775.559690px;}
.yd5{bottom:782.579687px;}
.yaf{bottom:782.759687px;}
.y84{bottom:782.939687px;}
.yf1{bottom:786.719685px;}
.yc3{bottom:794.639682px;}
.y4e{bottom:794.819682px;}
.y15c{bottom:795.359682px;}
.yae{bottom:806.699677px;}
.y83{bottom:806.879677px;}
.y143{bottom:807.419677px;}
.y121{bottom:808.499677px;}
.y15{bottom:816.959673px;}
.y15b{bottom:818.399673px;}
.y4d{bottom:818.579673px;}
.y9f{bottom:818.759672px;}
.yf0{bottom:822.719671px;}
.y142{bottom:830.279668px;}
.yad{bottom:830.639668px;}
.y82{bottom:830.819668px;}
.y120{bottom:831.359667px;}
.y14{bottom:840.719664px;}
.y4c{bottom:842.519663px;}
.y9e{bottom:842.699663px;}
.y141{bottom:853.319659px;}
.y11f{bottom:854.399658px;}
.y81{bottom:854.579658px;}
.yef{bottom:858.539657px;}
.y13{bottom:864.659654px;}
.y4b{bottom:866.459653px;}
.y9d{bottom:866.639653px;}
.y15a{bottom:876.179650px;}
.y80{bottom:878.519649px;}
.yee{bottom:882.479647px;}
.y140{bottom:888.239645px;}
.y12{bottom:888.599645px;}
.y11e{bottom:889.319644px;}
.yac{bottom:890.399644px;}
.y9c{bottom:890.579644px;}
.y4a{bottom:902.459639px;}
.yed{bottom:906.419637px;}
.y13f{bottom:911.099636px;}
.y11d{bottom:912.179635px;}
.y11{bottom:912.539635px;}
.yab{bottom:914.339634px;}
.y9b{bottom:914.519634px;}
.y7f{bottom:926.399629px;}
.yec{bottom:930.359628px;}
.y13e{bottom:934.139626px;}
.y11c{bottom:935.039626px;}
.y49{bottom:938.279625px;}
.yf{bottom:948.539621px;}
.y7e{bottom:950.339620px;}
.y10{bottom:953.039619px;}
.yeb{bottom:954.299618px;}
.y48{bottom:962.219615px;}
.y13d{bottom:969.059612px;}
.y11b{bottom:971.579611px;}
.y7d{bottom:974.279610px;}
.yea{bottom:978.239609px;}
.ye{bottom:985.799606px;}
.y47{bottom:986.159606px;}
.y13c{bottom:991.919603px;}
.y7c{bottom:998.219601px;}
.ye9{bottom:1002.179599px;}
.y46{bottom:1010.099596px;}
.y10c{bottom:1010.279596px;}
.yd{bottom:1013.699595px;}
.y7b{bottom:1022.159591px;}
.y13b{bottom:1026.839589px;}
.y45{bottom:1034.039586px;}
.y10b{bottom:1034.219586px;}
.ye8{bottom:1039.439584px;}
.y66{bottom:1046.099582px;}
.y13a{bottom:1049.699580px;}
.y9a{bottom:1057.979577px;}
.y22{bottom:1063.559575px;}
.ye7{bottom:1067.339573px;}
.y44{bottom:1070.039572px;}
.y20{bottom:1080.480600px;}
.y99{bottom:1081.919567px;}
.y139{bottom:1084.619566px;}
.y65{bottom:1093.979562px;}
.y43{bottom:1105.859558px;}
.y138{bottom:1107.659557px;}
.y42{bottom:1129.799548px;}
.y1e{bottom:1129.980600px;}
.y137{bottom:1130.519548px;}
.y1d{bottom:1135.559546px;}
.y23{bottom:1138.439545px;}
.y4{bottom:1151.579539px;}
.y7{bottom:1180.739528px;}
.y3{bottom:1184.699526px;}
.y2{bottom:1201.979519px;}
.y1{bottom:1219.259512px;}
.h3{height:6.120000px;}
.h10{height:18.180000px;}
.h6{height:21.960000px;}
.hf{height:25.560000px;}
.h5{height:32.976549px;}
.h12{height:33.518307px;}
.ha{height:35.120025px;}
.h14{height:36.624009px;}
.h4{height:36.703110px;}
.h15{height:37.520493px;}
.h13{height:39.339828px;}
.h7{height:40.851546px;}
.h1{height:41.522679px;}
.h11{height:43.390178px;}
.h16{height:43.565256px;}
.hd{height:44.207209px;}
.h18{height:44.860763px;}
.h17{height:46.025138px;}
.h2{height:49.218730px;}
.h1a{height:50.388730px;}
.h9{height:52.417948px;}
.hb{height:52.488260px;}
.hc{height:53.261697px;}
.he{height:61.164468px;}
.h8{height:61.328999px;}
.h19{height:61.411264px;}
.h0{height:1263.000000px;}
.w3{width:4.500000px;}
.w4{width:9.000000px;}
.w2{width:10.620000px;}
.w5{width:437.040000px;}
.w1{width:892.500000px;}
.w0{width:892.830000px;}
.x0{left:0.000000px;}
.x4{left:75.419970px;}
.x1d{left:85.319966px;}
.x1b{left:87.299965px;}
.x5{left:100.619960px;}
.x1a{left:102.779959px;}
.x19{left:104.039958px;}
.x1{left:107.999957px;}
.x1e{left:133.919946px;}
.xf{left:134.999946px;}
.x1c{left:143.999942px;}
.x10{left:161.999941px;}
.x11{left:185.760095px;}
.x8{left:217.079913px;}
.x1f{left:224.819978px;}
.x14{left:226.619909px;}
.x16{left:235.980000px;}
.x20{left:249.839978px;}
.x21{left:269.100138px;}
.x23{left:281.159888px;}
.x22{left:290.699884px;}
.x2{left:302.579879px;}
.x17{left:324.899870px;}
.x6{left:365.939854px;}
.x9{left:369.719852px;}
.xa{left:375.299850px;}
.xb{left:496.619801px;}
.xc{left:502.199799px;}
.x12{left:578.699769px;}
.x13{left:599.219760px;}
.x3{left:656.459737px;}
.x15{left:664.020000px;}
.xd{left:666.179734px;}
.xe{left:671.759731px;}
.x18{left:681.119728px;}
.x7{left:793.080000px;}
@media print{
.v1{vertical-align:-8.959996pt;}
.v0{vertical-align:0.000000pt;}
.lsb{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.016533pt;}
.lsd{letter-spacing:0.126023pt;}
.lse{letter-spacing:0.136690pt;}
.lsc{letter-spacing:0.136693pt;}
.ls3{letter-spacing:0.136721pt;}
.ls10{letter-spacing:0.159506pt;}
.ls4{letter-spacing:0.162347pt;}
.ls7{letter-spacing:0.168016pt;}
.lsf{letter-spacing:0.207467pt;}
.ls1{letter-spacing:0.211375pt;}
.lsa{letter-spacing:9.003356pt;}
.ls2{letter-spacing:34.718973pt;}
.ls9{letter-spacing:55.215978pt;}
.ls6{letter-spacing:55.242050pt;}
.ls5{letter-spacing:119.921738pt;}
.ls0{letter-spacing:1407.814582pt;}
.ws5{word-spacing:-28.816521pt;}
.ws0{word-spacing:-14.675369pt;}
.ws1{word-spacing:-14.591994pt;}
.ws2{word-spacing:-14.554874pt;}
.ws8{word-spacing:-14.008314pt;}
.ws4{word-spacing:-13.343995pt;}
.ws3{word-spacing:-13.279995pt;}
.ws6{word-spacing:-12.111355pt;}
.ws7{word-spacing:0.000000pt;}
._2{margin-left:-72.933731pt;}
._c{margin-left:-6.266068pt;}
._d{margin-left:-4.376569pt;}
._6{margin-left:-2.787236pt;}
._1{margin-left:-1.396267pt;}
._0{width:0.900827pt;}
._7{width:1.797237pt;}
._e{width:2.693735pt;}
._9{width:3.881132pt;}
._11{width:4.790154pt;}
._3{width:5.841140pt;}
._15{width:6.793184pt;}
._12{width:7.771319pt;}
._8{width:8.807103pt;}
._b{width:10.479428pt;}
._14{width:12.225696pt;}
._13{width:13.151086pt;}
._1e{width:14.352676pt;}
._a{width:15.355018pt;}
._5{width:16.424098pt;}
._4{width:17.346625pt;}
._1b{width:18.518657pt;}
._1a{width:19.981663pt;}
._17{width:21.752883pt;}
._16{width:22.685813pt;}
._18{width:24.366750pt;}
._19{width:25.291187pt;}
._29{width:26.637884pt;}
._25{width:27.648948pt;}
._24{width:28.842071pt;}
._22{width:30.336487pt;}
._1d{width:31.501881pt;}
._1c{width:32.580705pt;}
._20{width:38.922308pt;}
._1f{width:39.908495pt;}
._23{width:41.206899pt;}
._28{width:47.457307pt;}
._f{width:48.645341pt;}
._10{width:49.636283pt;}
._26{width:65.937120pt;}
._27{width:71.831046pt;}
._21{width:96.813562pt;}
.fs3{font-size:42.879983pt;}
.fs2{font-size:47.999981pt;}
.fs0{font-size:53.119979pt;}
.fs5{font-size:58.879976pt;}
.fs6{font-size:61.439975pt;}
.fs1{font-size:63.999974pt;}
.fs4{font-size:74.879970pt;}
.y6{bottom:-9.759991pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:0.106875pt;}
.y21{bottom:3.519081pt;}
.yb{bottom:4.320034pt;}
.y1f{bottom:4.959063pt;}
.yc{bottom:29.546922pt;}
.ya{bottom:44.106880pt;}
.y8{bottom:48.426914pt;}
.y9{bottom:50.666913pt;}
.y11a{bottom:117.546620pt;}
.ye6{bottom:121.066618pt;}
.yc2{bottom:121.226618pt;}
.y98{bottom:121.546618pt;}
.y10a{bottom:125.066617pt;}
.y64{bottom:131.946614pt;}
.y7a{bottom:132.106614pt;}
.y119{bottom:138.826611pt;}
.ye5{bottom:142.346610pt;}
.yc1{bottom:142.506610pt;}
.y97{bottom:142.826610pt;}
.y1c{bottom:144.586609pt;}
.y109{bottom:146.346608pt;}
.y171{bottom:151.946606pt;}
.y63{bottom:153.226605pt;}
.y79{bottom:153.386605pt;}
.y118{bottom:160.106603pt;}
.y159{bottom:163.626601pt;}
.y96{bottom:164.106601pt;}
.y1b{bottom:165.866600pt;}
.yd4{bottom:170.826598pt;}
.yc0{bottom:174.346597pt;}
.y62{bottom:174.506597pt;}
.y78{bottom:174.666597pt;}
.y108{bottom:178.186595pt;}
.y170{bottom:182.986593pt;}
.y158{bottom:183.946593pt;}
.y136{bottom:184.906593pt;}
.yb4{bottom:185.066593pt;}
.y95{bottom:185.386593pt;}
.y1a{bottom:187.146592pt;}
.y117{bottom:191.946590pt;}
.yd3{bottom:192.106590pt;}
.ybf{bottom:195.626588pt;}
.y77{bottom:195.946588pt;}
.y16f{bottom:203.466585pt;}
.y135{bottom:205.386585pt;}
.y61{bottom:206.346584pt;}
.y94{bottom:206.666584pt;}
.y19{bottom:208.426583pt;}
.y107{bottom:210.186583pt;}
.y116{bottom:213.226581pt;}
.y157{bottom:214.986581pt;}
.ybe{bottom:216.906580pt;}
.y76{bottom:217.226580pt;}
.yd2{bottom:224.106577pt;}
.ye4{bottom:227.466576pt;}
.yb3{bottom:227.626576pt;}
.y93{bottom:227.946575pt;}
.y18{bottom:229.706575pt;}
.y106{bottom:231.466574pt;}
.y115{bottom:234.506573pt;}
.y156{bottom:235.466572pt;}
.y134{bottom:236.426572pt;}
.y60{bottom:238.346571pt;}
.y75{bottom:238.506571pt;}
.yd1{bottom:245.386569pt;}
.ye3{bottom:248.746567pt;}
.ybd{bottom:248.906567pt;}
.y92{bottom:249.226567pt;}
.y105{bottom:252.746566pt;}
.y16e{bottom:254.826565pt;}
.y114{bottom:255.786564pt;}
.y133{bottom:256.746564pt;}
.y5f{bottom:259.626563pt;}
.y74{bottom:259.786563pt;}
.y17{bottom:262.666562pt;}
.y91{bottom:270.506558pt;}
.y104{bottom:274.026557pt;}
.y16d{bottom:275.306557pt;}
.y113{bottom:277.066556pt;}
.yd0{bottom:277.226556pt;}
.ybc{bottom:280.746554pt;}
.y5e{bottom:280.906554pt;}
.y73{bottom:281.066554pt;}
.y155{bottom:286.826552pt;}
.yaa{bottom:291.786550pt;}
.y103{bottom:295.146549pt;}
.y16{bottom:297.226548pt;}
.y112{bottom:298.346547pt;}
.ycf{bottom:298.506547pt;}
.y5d{bottom:302.186546pt;}
.y72{bottom:302.346546pt;}
.y16c{bottom:306.346544pt;}
.y154{bottom:307.306544pt;}
.y132{bottom:308.106543pt;}
.ye2{bottom:312.586542pt;}
.yb2{bottom:312.746542pt;}
.ya9{bottom:312.906542pt;}
.y102{bottom:316.426540pt;}
.yce{bottom:319.786539pt;}
.y111{bottom:319.946539pt;}
.y3c{bottom:323.466537pt;}
.y71{bottom:323.626537pt;}
.y16b{bottom:326.666536pt;}
.y153{bottom:327.626536pt;}
.y131{bottom:328.586535pt;}
.ye1{bottom:333.866533pt;}
.y5c{bottom:334.026533pt;}
.ya8{bottom:334.186533pt;}
.y90{bottom:334.346533pt;}
.y101{bottom:337.706532pt;}
.y110{bottom:341.226530pt;}
.y70{bottom:344.906529pt;}
.y152{bottom:347.946527pt;}
.y130{bottom:348.906527pt;}
.ycd{bottom:351.786526pt;}
.y2f{bottom:352.906526pt;}
.yb1{bottom:355.306525pt;}
.y3b{bottom:355.466524pt;}
.y8f{bottom:355.626524pt;}
.y16a{bottom:357.706524pt;}
.y100{bottom:358.986523pt;}
.y10f{bottom:362.506522pt;}
.ye0{bottom:365.866520pt;}
.y5b{bottom:366.026520pt;}
.y6f{bottom:366.186520pt;}
.y8e{bottom:376.906516pt;}
.y169{bottom:378.026515pt;}
.y151{bottom:378.986515pt;}
.y12f{bottom:379.946515pt;}
.yff{bottom:380.266515pt;}
.ycc{bottom:383.626513pt;}
.y10e{bottom:383.786513pt;}
.y41{bottom:387.146512pt;}
.y5a{bottom:387.306512pt;}
.ya7{bottom:387.466512pt;}
.ydf{bottom:397.706508pt;}
.y8d{bottom:398.186507pt;}
.y150{bottom:399.466507pt;}
.y12e{bottom:400.426506pt;}
.y40{bottom:403.306505pt;}
.ycb{bottom:404.906505pt;}
.ybb{bottom:408.426503pt;}
.y59{bottom:408.586503pt;}
.ya6{bottom:408.746503pt;}
.y168{bottom:409.226503pt;}
.yfe{bottom:412.266502pt;}
.y10d{bottom:416.906500pt;}
.yde{bottom:418.986499pt;}
.y3f{bottom:419.306499pt;}
.y14f{bottom:419.786499pt;}
.y12d{bottom:420.746498pt;}
.yca{bottom:426.186496pt;}
.y167{bottom:429.546495pt;}
.y6e{bottom:429.866495pt;}
.ya5{bottom:430.026495pt;}
.y3e{bottom:435.306493pt;}
.y58{bottom:440.426490pt;}
.y8c{bottom:440.586490pt;}
.yfd{bottom:444.106489pt;}
.yc9{bottom:447.466488pt;}
.y2e{bottom:448.906487pt;}
.y166{bottom:449.866487pt;}
.y14e{bottom:450.826486pt;}
.ydd{bottom:450.986486pt;}
.y6d{bottom:451.146486pt;}
.ya4{bottom:451.306486pt;}
.y12c{bottom:451.786486pt;}
.y3d{bottom:451.946486pt;}
.yba{bottom:461.706482pt;}
.y8b{bottom:461.866482pt;}
.yfc{bottom:465.386481pt;}
.yc8{bottom:468.746479pt;}
.y14d{bottom:471.306478pt;}
.y12b{bottom:472.106478pt;}
.y57{bottom:472.426478pt;}
.ya3{bottom:472.586478pt;}
.y3a{bottom:479.626475pt;}
.y165{bottom:480.906474pt;}
.ydc{bottom:482.826474pt;}
.y8a{bottom:483.146473pt;}
.yfb{bottom:486.666472pt;}
.yc7{bottom:490.026471pt;}
.y12a{bottom:492.586470pt;}
.yb9{bottom:493.546469pt;}
.y56{bottom:493.706469pt;}
.y39{bottom:496.266468pt;}
.y164{bottom:501.386466pt;}
.y14c{bottom:502.346466pt;}
.ydb{bottom:504.106465pt;}
.y89{bottom:504.426465pt;}
.yfa{bottom:507.946463pt;}
.y38{bottom:511.626462pt;}
.y55{bottom:514.826461pt;}
.ya2{bottom:514.986461pt;}
.y2d{bottom:518.186459pt;}
.y14b{bottom:522.666458pt;}
.yc6{bottom:523.146457pt;}
.y129{bottom:523.626457pt;}
.y6c{bottom:525.706456pt;}
.yf9{bottom:529.226455pt;}
.y163{bottom:532.426454pt;}
.y37{bottom:534.826453pt;}
.yda{bottom:536.106452pt;}
.ya1{bottom:536.266452pt;}
.y2c{bottom:541.066450pt;}
.y14a{bottom:542.986449pt;}
.y128{bottom:543.946449pt;}
.y54{bottom:546.826448pt;}
.y88{bottom:546.986448pt;}
.y36{bottom:550.186447pt;}
.yf8{bottom:550.506446pt;}
.y162{bottom:552.746446pt;}
.y2b{bottom:554.666445pt;}
.yc5{bottom:557.386444pt;}
.y6b{bottom:557.546444pt;}
.y127{bottom:564.426441pt;}
.y35{bottom:565.546440pt;}
.yb0{bottom:568.106439pt;}
.y2a{bottom:568.266439pt;}
.yf7{bottom:571.786438pt;}
.y161{bottom:573.066437pt;}
.y149{bottom:574.026437pt;}
.yc4{bottom:578.666435pt;}
.y53{bottom:578.826435pt;}
.y29{bottom:580.746434pt;}
.yd9{bottom:589.226431pt;}
.y87{bottom:589.546431pt;}
.yf6{bottom:593.066429pt;}
.y148{bottom:594.506429pt;}
.y126{bottom:595.466428pt;}
.y34{bottom:596.106428pt;}
.yb8{bottom:599.946427pt;}
.y52{bottom:600.106427pt;}
.y28{bottom:602.666426pt;}
.y160{bottom:604.266425pt;}
.yd8{bottom:610.506422pt;}
.ya0{bottom:610.826422pt;}
.y33{bottom:611.306422pt;}
.yf5{bottom:614.346421pt;}
.y147{bottom:614.826421pt;}
.y125{bottom:615.786420pt;}
.y51{bottom:621.226418pt;}
.y6a{bottom:621.386418pt;}
.y27{bottom:624.426417pt;}
.y15f{bottom:624.586417pt;}
.y32{bottom:626.666416pt;}
.yd7{bottom:631.786414pt;}
.yb7{bottom:631.946414pt;}
.yf4{bottom:635.626412pt;}
.y26{bottom:638.186411pt;}
.y31{bottom:642.026410pt;}
.y50{bottom:642.506410pt;}
.y69{bottom:642.666410pt;}
.y146{bottom:645.866408pt;}
.y124{bottom:646.826408pt;}
.yb6{bottom:653.226405pt;}
.y86{bottom:653.386405pt;}
.y15e{bottom:655.626404pt;}
.yf3{bottom:656.746404pt;}
.y30{bottom:657.226404pt;}
.y25{bottom:659.626403pt;}
.yd6{bottom:663.786401pt;}
.y68{bottom:663.946401pt;}
.y145{bottom:666.346400pt;}
.y123{bottom:667.146400pt;}
.y4f{bottom:674.506397pt;}
.y85{bottom:674.666397pt;}
.y15d{bottom:675.946396pt;}
.yf2{bottom:678.026395pt;}
.yb5{bottom:685.066393pt;}
.y67{bottom:685.226393pt;}
.y144{bottom:686.666392pt;}
.y122{bottom:687.626392pt;}
.y24{bottom:689.386391pt;}
.yd5{bottom:695.626388pt;}
.yaf{bottom:695.786388pt;}
.y84{bottom:695.946388pt;}
.yf1{bottom:699.306387pt;}
.yc3{bottom:706.346384pt;}
.y4e{bottom:706.506384pt;}
.y15c{bottom:706.986384pt;}
.yae{bottom:717.066380pt;}
.y83{bottom:717.226380pt;}
.y143{bottom:717.706380pt;}
.y121{bottom:718.666379pt;}
.y15{bottom:726.186376pt;}
.y15b{bottom:727.466376pt;}
.y4d{bottom:727.626376pt;}
.y9f{bottom:727.786376pt;}
.yf0{bottom:731.306374pt;}
.y142{bottom:738.026371pt;}
.yad{bottom:738.346371pt;}
.y82{bottom:738.506371pt;}
.y120{bottom:738.986371pt;}
.y14{bottom:747.306368pt;}
.y4c{bottom:748.906367pt;}
.y9e{bottom:749.066367pt;}
.y141{bottom:758.506363pt;}
.y11f{bottom:759.466363pt;}
.y81{bottom:759.626363pt;}
.yef{bottom:763.146361pt;}
.y13{bottom:768.586359pt;}
.y4b{bottom:770.186359pt;}
.y9d{bottom:770.346359pt;}
.y15a{bottom:778.826355pt;}
.y80{bottom:780.906354pt;}
.yee{bottom:784.426353pt;}
.y140{bottom:789.546351pt;}
.y12{bottom:789.866351pt;}
.y11e{bottom:790.506350pt;}
.yac{bottom:791.466350pt;}
.y9c{bottom:791.626350pt;}
.y4a{bottom:802.186346pt;}
.yed{bottom:805.706344pt;}
.y13f{bottom:809.866343pt;}
.y11d{bottom:810.826342pt;}
.y11{bottom:811.146342pt;}
.yab{bottom:812.746342pt;}
.y9b{bottom:812.906342pt;}
.y7f{bottom:823.466337pt;}
.yec{bottom:826.986336pt;}
.y13e{bottom:830.346335pt;}
.y11c{bottom:831.146334pt;}
.y49{bottom:834.026333pt;}
.yf{bottom:843.146329pt;}
.y7e{bottom:844.746329pt;}
.y10{bottom:847.146328pt;}
.yeb{bottom:848.266327pt;}
.y48{bottom:855.306325pt;}
.y13d{bottom:861.386322pt;}
.y11b{bottom:863.626321pt;}
.y7d{bottom:866.026320pt;}
.yea{bottom:869.546319pt;}
.ye{bottom:876.266316pt;}
.y47{bottom:876.586316pt;}
.y13c{bottom:881.706314pt;}
.y7c{bottom:887.306312pt;}
.ye9{bottom:890.826310pt;}
.y46{bottom:897.866308pt;}
.y10c{bottom:898.026307pt;}
.yd{bottom:901.066306pt;}
.y7b{bottom:908.586303pt;}
.y13b{bottom:912.746302pt;}
.y45{bottom:919.146299pt;}
.y10b{bottom:919.306299pt;}
.ye8{bottom:923.946297pt;}
.y66{bottom:929.866295pt;}
.y13a{bottom:933.066293pt;}
.y9a{bottom:940.426290pt;}
.y22{bottom:945.386289pt;}
.ye7{bottom:948.746287pt;}
.y44{bottom:951.146286pt;}
.y20{bottom:960.427200pt;}
.y99{bottom:961.706282pt;}
.y139{bottom:964.106281pt;}
.y65{bottom:972.426278pt;}
.y43{bottom:982.986273pt;}
.y138{bottom:984.586273pt;}
.y42{bottom:1004.266265pt;}
.y1e{bottom:1004.427200pt;}
.y137{bottom:1004.906265pt;}
.y1d{bottom:1009.386263pt;}
.y23{bottom:1011.946262pt;}
.y4{bottom:1023.626257pt;}
.y7{bottom:1049.546247pt;}
.y3{bottom:1053.066245pt;}
.y2{bottom:1068.426239pt;}
.y1{bottom:1083.786233pt;}
.h3{height:5.440000pt;}
.h10{height:16.160000pt;}
.h6{height:19.520000pt;}
.hf{height:22.720000pt;}
.h5{height:29.312488pt;}
.h12{height:29.794051pt;}
.ha{height:31.217800pt;}
.h14{height:32.554674pt;}
.h4{height:32.624987pt;}
.h15{height:33.351549pt;}
.h13{height:34.968736pt;}
.h7{height:36.312485pt;}
.h1{height:36.909048pt;}
.h11{height:38.569047pt;}
.h16{height:38.724672pt;}
.hd{height:39.295297pt;}
.h18{height:39.876234pt;}
.h17{height:40.911234pt;}
.h2{height:43.749982pt;}
.h1a{height:44.789982pt;}
.h9{height:46.593731pt;}
.hb{height:46.656231pt;}
.hc{height:47.343731pt;}
.he{height:54.368416pt;}
.h8{height:54.514666pt;}
.h19{height:54.587791pt;}
.h0{height:1122.666667pt;}
.w3{width:4.000000pt;}
.w4{width:8.000000pt;}
.w2{width:9.440000pt;}
.w5{width:388.480000pt;}
.w1{width:793.333333pt;}
.w0{width:793.626667pt;}
.x0{left:0.000000pt;}
.x4{left:67.039973pt;}
.x1d{left:75.839970pt;}
.x1b{left:77.599969pt;}
.x5{left:89.439964pt;}
.x1a{left:91.359963pt;}
.x19{left:92.479963pt;}
.x1{left:95.999962pt;}
.x1e{left:119.039952pt;}
.xf{left:119.999952pt;}
.x1c{left:127.999949pt;}
.x10{left:143.999947pt;}
.x11{left:165.120084pt;}
.x8{left:192.959923pt;}
.x1f{left:199.839980pt;}
.x14{left:201.439919pt;}
.x16{left:209.760000pt;}
.x20{left:222.079981pt;}
.x21{left:239.200122pt;}
.x23{left:249.919900pt;}
.x22{left:258.399897pt;}
.x2{left:268.959892pt;}
.x17{left:288.799884pt;}
.x6{left:325.279870pt;}
.x9{left:328.639869pt;}
.xa{left:333.599867pt;}
.xb{left:441.439823pt;}
.xc{left:446.399821pt;}
.x12{left:514.399794pt;}
.x13{left:532.639787pt;}
.x3{left:583.519767pt;}
.x15{left:590.240000pt;}
.xd{left:592.159763pt;}
.xe{left:597.119761pt;}
.x18{left:605.439758pt;}
.x7{left:704.960000pt;}
}




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