
    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_562a62dbf475c338f613582a.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_873446b4974fda6eb82be6eb.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_c6c8f98127d9c104b31670ea.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.675781;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_1656b41472f055cf179c8d4d.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_538e359a5b1abf2fb52e98a4.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;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_6e7eb762d7306420ec6a341a.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.432129;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;}
.m6{transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.m4{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m3{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);}
.m2{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);}
.m0{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);}
.m5{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.m7{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);}
.v1{vertical-align:-84.239966px;}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.034340px;}
.ls3{letter-spacing:0.116700px;}
.ls4{letter-spacing:0.311800px;}
.ls6{letter-spacing:1.397759px;}
.ls2{letter-spacing:18.847432px;}
.ls7{letter-spacing:23.011071px;}
.ls5{letter-spacing:88.047565px;}
.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;}
}
.ws6{word-spacing:-20.327792px;}
.ws1{word-spacing:-20.015992px;}
.ws7{word-spacing:-16.613273px;}
.ws4{word-spacing:-15.011994px;}
.ws0{word-spacing:-14.939994px;}
.ws3{word-spacing:-13.410715px;}
.ws5{word-spacing:-10.007996px;}
.ws2{word-spacing:0.000000px;}
._13{margin-left:-9.809194px;}
._1d{margin-left:-2.192829px;}
._0{margin-left:-1.184223px;}
._1{width:1.130668px;}
._3{width:2.178753px;}
._6{width:3.262139px;}
._7{width:5.102071px;}
._10{width:6.364065px;}
._8{width:7.839214px;}
._5{width:8.910829px;}
._4{width:10.252220px;}
._9{width:11.620137px;}
._12{width:13.499144px;}
._f{width:15.214354px;}
._1a{width:16.397369px;}
._17{width:17.868624px;}
._16{width:18.927950px;}
._1c{width:20.287270px;}
._b{width:21.629034px;}
._e{width:23.020556px;}
._a{width:24.805921px;}
._20{width:26.178063px;}
._11{width:27.275797px;}
._23{width:28.447421px;}
._21{width:30.106077px;}
._18{width:31.125678px;}
._15{width:33.144671px;}
._14{width:34.294653px;}
._1b{width:36.080346px;}
._2b{width:37.292941px;}
._c{width:38.936953px;}
._d{width:40.221301px;}
._30{width:41.251287px;}
._1f{width:42.804861px;}
._1e{width:43.980223px;}
._2a{width:47.797465px;}
._19{width:50.063634px;}
._22{width:51.197440px;}
._24{width:54.386153px;}
._2{width:56.531742px;}
._28{width:57.779707px;}
._29{width:58.965884px;}
._2d{width:65.171369px;}
._2c{width:66.262603px;}
._2e{width:70.112012px;}
._33{width:82.293375px;}
._32{width:83.588818px;}
._26{width:85.823742px;}
._25{width:86.835967px;}
._27{width:143.141364px;}
._31{width:168.873069px;}
._2f{width:229.406870px;}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(46,115,181);}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:35.999986px;}
.fs6{font-size:38.879984px;}
.fs4{font-size:41.759983px;}
.fs0{font-size:48.239981px;}
.fs8{font-size:53.999978px;}
.fs1{font-size:59.759976px;}
.fs3{font-size:66.239974px;}
.fs2{font-size:71.999971px;}
.fs5{font-size:95.759962px;}
.y0{bottom:0.000000px;}
.y7{bottom:57.899977px;}
.y6{bottom:79.859968px;}
.y71{bottom:109.199956px;}
.ya4{bottom:109.200256px;}
.yb7{bottom:109.380256px;}
.y37{bottom:109.740256px;}
.ya3{bottom:116.040254px;}
.yec{bottom:116.220254px;}
.y36{bottom:117.300253px;}
.y163{bottom:118.739953px;}
.y70{bottom:124.679950px;}
.ya2{bottom:124.680250px;}
.yb6{bottom:124.860250px;}
.y35{bottom:128.460249px;}
.ya1{bottom:131.520247px;}
.yb5{bottom:131.700247px;}
.yd0{bottom:140.159944px;}
.yeb{bottom:140.160244px;}
.y6f{bottom:140.339944px;}
.y132{bottom:142.140243px;}
.y162{bottom:145.199942px;}
.yea{bottom:147.000241px;}
.y34{bottom:149.699940px;}
.ye9{bottom:155.819938px;}
.y6e{bottom:155.999938px;}
.y161{bottom:162.479935px;}
.ye8{bottom:162.659935px;}
.y6d{bottom:162.839935px;}
.y33{bottom:170.399932px;}
.y6c{bottom:171.299931px;}
.ya0{bottom:171.479931px;}
.y131{bottom:173.459931px;}
.y6b{bottom:178.139929px;}
.ye7{bottom:178.319929px;}
.y160{bottom:179.579928px;}
.y6a{bottom:186.779925px;}
.y9f{bottom:186.959925px;}
.y130{bottom:190.919924px;}
.y32{bottom:191.099924px;}
.y100{bottom:193.619923px;}
.y15f{bottom:196.679921px;}
.yb4{bottom:202.259919px;}
.y69{bottom:202.439919px;}
.y12f{bottom:208.019917px;}
.yb3{bottom:209.099916px;}
.y10e{bottom:209.279916px;}
.y31{bottom:211.799915px;}
.yb2{bottom:217.919913px;}
.y68{bottom:218.099913px;}
.y11c{bottom:219.899912px;}
.y15e{bottom:222.959911px;}
.yb1{bottom:224.759910px;}
.ycf{bottom:224.939910px;}
.y12e{bottom:225.299910px;}
.y30{bottom:232.499907px;}
.y67{bottom:233.399907px;}
.ye6{bottom:233.579907px;}
.yb0{bottom:235.379906px;}
.y66{bottom:240.239904px;}
.ye5{bottom:240.419904px;}
.ye4{bottom:248.879900px;}
.y65{bottom:249.059900px;}
.y12d{bottom:251.579899px;}
.y2f{bottom:253.199899px;}
.y11a{bottom:253.739899px;}
.yff{bottom:255.719898px;}
.y15d{bottom:257.519897px;}
.y11b{bottom:262.019895px;}
.yaf{bottom:264.179894px;}
.y64{bottom:264.359894px;}
.ye3{bottom:264.539894px;}
.y12c{bottom:268.859892px;}
.y63{bottom:271.199892px;}
.y10d{bottom:271.379891px;}
.y119{bottom:274.439890px;}
.y15c{bottom:274.799890px;}
.y9e{bottom:280.019888px;}
.ye2{bottom:280.199888px;}
.y62{bottom:281.819887px;}
.y2e{bottom:284.159886px;}
.yae{bottom:284.879886px;}
.y12b{bottom:285.959886px;}
.ye1{bottom:287.039885px;}
.y15b{bottom:291.899883px;}
.yce{bottom:295.139882px;}
.ye0{bottom:295.499882px;}
.y9d{bottom:295.679882px;}
.ydf{bottom:302.339879px;}
.y61{bottom:305.579878px;}
.y15a{bottom:309.179876px;}
.yde{bottom:310.979876px;}
.y9c{bottom:311.159876px;}
.y12a{bottom:312.419875px;}
.y2d{bottom:315.119874px;}
.ycd{bottom:315.839874px;}
.ydd{bottom:317.819873px;}
.y60{bottom:326.099870px;}
.y9b{bottom:326.459869px;}
.y129{bottom:329.699868px;}
.ydc{bottom:333.299867px;}
.yad{bottom:334.379866px;}
.y159{bottom:335.459866px;}
.y2c{bottom:335.999866px;}
.ycb{bottom:336.539865px;}
.y9a{bottom:342.119863px;}
.ydb{bottom:343.919862px;}
.ycc{bottom:344.819862px;}
.y5f{bottom:346.799861px;}
.y10c{bottom:348.959860px;}
.y158{bottom:352.919859px;}
.y128{bottom:355.979858px;}
.y2b{bottom:356.699857px;}
.yfe{bottom:357.239857px;}
.yca{bottom:357.419857px;}
.y99{bottom:357.599857px;}
.y10b{bottom:357.779857px;}
.y5e{bottom:367.499853px;}
.yda{bottom:367.679853px;}
.y157{bottom:370.019852px;}
.y98{bottom:373.079851px;}
.y10a{bottom:373.259851px;}
.y2a{bottom:377.399849px;}
.yfd{bottom:377.939849px;}
.yc9{bottom:378.119849px;}
.yac{bottom:388.199845px;}
.y5d{bottom:388.379845px;}
.y97{bottom:388.559845px;}
.y127{bottom:390.179844px;}
.y109{bottom:395.399842px;}
.y156{bottom:396.299841px;}
.y29{bottom:398.099841px;}
.yfc{bottom:398.639841px;}
.yc8{bottom:398.819840px;}
.y96{bottom:404.399838px;}
.y108{bottom:406.019838px;}
.yab{bottom:408.899836px;}
.y5c{bottom:409.079836px;}
.y155{bottom:413.579835px;}
.y126{bottom:416.639833px;}
.y28{bottom:418.799832px;}
.yc7{bottom:419.339832px;}
.y95{bottom:419.879832px;}
.yfb{bottom:427.619829px;}
.yaa{bottom:429.599828px;}
.y5b{bottom:429.779828px;}
.y154{bottom:430.679828px;}
.y125{bottom:433.739827px;}
.y94{bottom:435.359826px;}
.yd9{bottom:437.879825px;}
.y27{bottom:439.499824px;}
.yc6{bottom:440.039824px;}
.y93{bottom:442.199823px;}
.y107{bottom:448.319821px;}
.ya9{bottom:450.299820px;}
.y5a{bottom:450.479820px;}
.y92{bottom:450.659820px;}
.y153{bottom:456.959817px;}
.y26{bottom:460.199816px;}
.yc5{bottom:460.739816px;}
.y91{bottom:466.499813px;}
.y59{bottom:470.999812px;}
.y90{bottom:473.339811px;}
.y152{bottom:474.419810px;}
.y124{bottom:477.479809px;}
.yd8{bottom:479.279808px;}
.y25{bottom:480.899808px;}
.yc4{bottom:481.439807px;}
.y8f{bottom:481.799807px;}
.y58{bottom:491.699803px;}
.y123{bottom:494.399802px;}
.y8e{bottom:497.459801px;}
.ya8{bottom:499.979800px;}
.y24{bottom:501.599799px;}
.yc3{bottom:502.139799px;}
.y151{bottom:508.799796px;}
.y122{bottom:511.679795px;}
.y57{bottom:512.399795px;}
.y8d{bottom:512.939795px;}
.y23{bottom:522.299791px;}
.yc1{bottom:522.839791px;}
.y8c{bottom:528.419789px;}
.y121{bottom:528.959788px;}
.yc2{bottom:531.119788px;}
.y56{bottom:533.099787px;}
.yd7{bottom:533.279787px;}
.y150{bottom:534.899786px;}
.y8b{bottom:535.259786px;}
.y22{bottom:542.999783px;}
.yfa{bottom:543.539783px;}
.yc0{bottom:543.719783px;}
.y8a{bottom:543.899782px;}
.y120{bottom:546.419781px;}
.y14f{bottom:552.359779px;}
.y54{bottom:553.799778px;}
.y89{bottom:559.559776px;}
.y55{bottom:562.079775px;}
.y11f{bottom:563.519775px;}
.y21{bottom:563.699775px;}
.ybf{bottom:564.239774px;}
.y14e{bottom:569.459772px;}
.y106{bottom:572.519771px;}
.y53{bottom:574.499770px;}
.y88{bottom:574.859770px;}
.y11e{bottom:580.979768px;}
.y87{bottom:581.699767px;}
.y20{bottom:584.399766px;}
.y105{bottom:584.939766px;}
.ybe{bottom:585.119766px;}
.y86{bottom:592.319763px;}
.y51{bottom:595.199762px;}
.y14d{bottom:595.739762px;}
.y11d{bottom:597.899761px;}
.y52{bottom:603.479759px;}
.y1f{bottom:605.099758px;}
.y104{bottom:605.639758px;}
.ybd{bottom:605.819758px;}
.y14c{bottom:613.199755px;}
.y50{bottom:615.899754px;}
.yf9{bottom:616.079754px;}
.y1e{bottom:625.799750px;}
.ybc{bottom:626.339749px;}
.y14b{bottom:630.299748px;}
.y85{bottom:636.419745px;}
.y4f{bottom:636.599745px;}
.yd6{bottom:644.879742px;}
.y1d{bottom:646.499741px;}
.ybb{bottom:647.039741px;}
.y14a{bottom:656.399737px;}
.y84{bottom:657.119737px;}
.y4e{bottom:657.299737px;}
.y1c{bottom:667.199733px;}
.yba{bottom:667.739733px;}
.y149{bottom:673.679731px;}
.y103{bottom:676.019730px;}
.y82{bottom:677.819729px;}
.y4c{bottom:677.999729px;}
.y83{bottom:686.099726px;}
.y4d{bottom:686.279725px;}
.y1b{bottom:687.899725px;}
.yb9{bottom:688.439725px;}
.y148{bottom:690.959724px;}
.y81{bottom:698.519721px;}
.y4b{bottom:698.699721px;}
.yd5{bottom:706.979717px;}
.y147{bottom:708.239717px;}
.y1a{bottom:708.599717px;}
.y102{bottom:709.139716px;}
.y80{bottom:719.219712px;}
.y4a{bottom:719.399712px;}
.y146{bottom:725.519710px;}
.y101{bottom:729.839708px;}
.y7e{bottom:739.919704px;}
.y49{bottom:740.099704px;}
.ya7{bottom:740.279704px;}
.y145{bottom:742.619703px;}
.y19{bottom:747.299701px;}
.y7f{bottom:748.199701px;}
.y118{bottom:750.539700px;}
.y144{bottom:759.899696px;}
.y7d{bottom:760.619696px;}
.y47{bottom:760.799696px;}
.ya6{bottom:760.979696px;}
.y18{bottom:767.999693px;}
.y48{bottom:769.079692px;}
.y117{bottom:771.239692px;}
.y7c{bottom:781.319687px;}
.y46{bottom:781.499687px;}
.y143{bottom:786.179686px;}
.y17{bottom:788.699685px;}
.y116{bottom:791.939683px;}
.y7b{bottom:802.019679px;}
.y45{bottom:802.199679px;}
.y142{bottom:803.639679px;}
.y16{bottom:809.399676px;}
.yd4{bottom:810.479676px;}
.y115{bottom:812.639675px;}
.y141{bottom:820.739672px;}
.y7a{bottom:822.719671px;}
.y44{bottom:822.899671px;}
.y15{bottom:830.099668px;}
.y114{bottom:833.339667px;}
.y79{bottom:843.419663px;}
.y43{bottom:843.599663px;}
.y140{bottom:847.019661px;}
.y14{bottom:850.799660px;}
.yd3{bottom:851.879659px;}
.y113{bottom:854.039658px;}
.y78{bottom:864.119654px;}
.y42{bottom:864.299654px;}
.yd2{bottom:864.479654px;}
.y13{bottom:871.499651px;}
.y112{bottom:874.739650px;}
.y13f{bottom:881.579647px;}
.y77{bottom:884.819646px;}
.y41{bottom:884.999646px;}
.yf8{bottom:885.179646px;}
.y12{bottom:892.199643px;}
.y111{bottom:895.439642px;}
.y13e{bottom:898.859640px;}
.y40{bottom:905.699638px;}
.yf6{bottom:905.879638px;}
.y11{bottom:912.899635px;}
.ya5{bottom:913.979634px;}
.yf7{bottom:914.159634px;}
.y75{bottom:914.339634px;}
.y13d{bottom:915.959634px;}
.y76{bottom:922.619631px;}
.y110{bottom:926.219630px;}
.y3f{bottom:926.399629px;}
.y10{bottom:933.599627px;}
.yb8{bottom:934.679626px;}
.y13c{bottom:942.239623px;}
.y3e{bottom:947.099621px;}
.yf{bottom:954.299618px;}
.y13b{bottom:959.519616px;}
.y3d{bottom:967.799613px;}
.yf4{bottom:967.979613px;}
.ye{bottom:974.999610px;}
.y74{bottom:976.079610px;}
.yf5{bottom:976.259609px;}
.y13a{bottom:976.619609px;}
.y3c{bottom:988.499605px;}
.yf3{bottom:988.679605px;}
.y139{bottom:993.899602px;}
.y10f{bottom:996.779601px;}
.y3b{bottom:1009.199596px;}
.yf2{bottom:1009.379596px;}
.yd{bottom:1013.699595px;}
.y73{bottom:1017.479593px;}
.y167{bottom:1020.179592px;}
.y138{bottom:1020.359592px;}
.y3a{bottom:1029.899588px;}
.yf1{bottom:1030.079588px;}
.y137{bottom:1037.459585px;}
.y39{bottom:1050.599580px;}
.yf0{bottom:1050.779580px;}
.yc{bottom:1052.399579px;}
.y136{bottom:1054.739578px;}
.y166{bottom:1054.919578px;}
.y38{bottom:1071.299571px;}
.yef{bottom:1071.479571px;}
.y165{bottom:1072.019571px;}
.yb{bottom:1072.739571px;}
.y135{bottom:1080.839568px;}
.y164{bottom:1089.299564px;}
.y9{bottom:1091.999563px;}
.y134{bottom:1098.299561px;}
.ya{bottom:1099.559560px;}
.yd1{bottom:1100.279560px;}
.y8{bottom:1112.699555px;}
.yed{bottom:1112.879555px;}
.y133{bottom:1115.399554px;}
.y72{bottom:1120.979552px;}
.yee{bottom:1121.159552px;}
.y5{bottom:1134.119546px;}
.y4{bottom:1154.639538px;}
.y3{bottom:1171.559531px;}
.y2{bottom:1185.239526px;}
.y1{bottom:1199.099520px;}
.hb{height:37.546860px;}
.h8{height:40.550609px;}
.h6{height:43.554358px;}
.hd{height:44.149201px;}
.h1{height:47.344903px;}
.h3{height:47.988262px;}
.ha{height:50.312792px;}
.hc{height:56.320290px;}
.h2{height:60.226851px;}
.h9{height:62.327788px;}
.h4{height:69.086222px;}
.h5{height:75.093720px;}
.h7{height:99.874648px;}
.h0{height:1263.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x5{left:106.199958px;}
.xc{left:111.599955px;}
.x20{left:116.279953px;}
.xa{left:133.199047px;}
.x5e{left:146.339941px;}
.xb{left:148.679052px;}
.x11{left:151.199940px;}
.x2{left:159.659941px;}
.x12{left:162.899935px;}
.x48{left:176.219930px;}
.x42{left:183.239927px;}
.x49{left:189.539924px;}
.x43{left:196.559921px;}
.x45{left:207.179917px;}
.x2b{left:212.219915px;}
.x2f{left:213.479915px;}
.x46{left:220.499912px;}
.x3{left:223.560204px;}
.x2c{left:225.539910px;}
.x30{left:226.799909px;}
.x3f{left:236.159906px;}
.x59{left:238.679905px;}
.x5d{left:240.659904px;}
.x4{left:256.139898px;}
.x1f{left:262.799895px;}
.x5b{left:264.779894px;}
.x36{left:268.379893px;}
.x1{left:275.579890px;}
.x5c{left:278.099889px;}
.x57{left:279.719888px;}
.x37{left:281.699887px;}
.x58{left:293.039883px;}
.x53{left:305.639878px;}
.x25{left:310.319876px;}
.x54{left:318.959872px;}
.x26{left:323.639871px;}
.x21{left:332.819867px;}
.x23{left:336.419865px;}
.x22{left:346.139862px;}
.x24{left:349.739860px;}
.x7{left:366.479853px;}
.x8{left:387.179845px;}
.x15{left:391.499843px;}
.x9{left:395.999842px;}
.x16{left:398.159841px;}
.x47{left:403.559839px;}
.x1b{left:409.319836px;}
.x33{left:413.819834px;}
.x1c{left:415.979834px;}
.x34{left:427.139829px;}
.x31{left:438.479825px;}
.x32{left:451.799819px;}
.xd{left:467.459813px;}
.xe{left:474.119810px;}
.x52{left:486.899805px;}
.x2d{left:499.319800px;}
.x2e{left:512.639795px;}
.x1d{left:522.179791px;}
.x50{left:532.799787px;}
.x1e{left:535.499786px;}
.x4e{left:542.699783px;}
.x51{left:546.119782px;}
.x5a{left:548.459781px;}
.x19{left:550.439780px;}
.x4f{left:556.019778px;}
.x1a{left:557.099777px;}
.x40{left:562.499775px;}
.x3a{left:568.439773px;}
.xf{left:574.739770px;}
.x41{left:575.819770px;}
.x10{left:581.399767px;}
.x17{left:585.179766px;}
.x18{left:591.839763px;}
.x29{left:607.499757px;}
.x3d{left:614.699754px;}
.x2a{left:620.819752px;}
.x3e{left:628.019749px;}
.x35{left:633.779746px;}
.x55{left:648.539741px;}
.x4a{left:652.859739px;}
.x3b{left:656.819737px;}
.x56{left:661.859735px;}
.x27{left:664.559734px;}
.x4b{left:666.179734px;}
.x3c{left:670.139732px;}
.x28{left:677.879729px;}
.x4c{left:710.459716px;}
.x4d{left:723.779710px;}
.x38{left:751.679699px;}
.x6{left:759.239675px;}
.x39{left:764.999694px;}
.x44{left:773.279691px;}
.x13{left:779.939688px;}
.x14{left:786.599685px;}
@media print{
.v1{vertical-align:-74.879970pt;}
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.030525pt;}
.ls3{letter-spacing:0.103733pt;}
.ls4{letter-spacing:0.277156pt;}
.ls6{letter-spacing:1.242453pt;}
.ls2{letter-spacing:16.753273pt;}
.ls7{letter-spacing:20.454285pt;}
.ls5{letter-spacing:78.264502pt;}
.ws6{word-spacing:-18.069149pt;}
.ws1{word-spacing:-17.791993pt;}
.ws7{word-spacing:-14.767354pt;}
.ws4{word-spacing:-13.343995pt;}
.ws0{word-spacing:-13.279995pt;}
.ws3{word-spacing:-11.920635pt;}
.ws5{word-spacing:-8.895996pt;}
.ws2{word-spacing:0.000000pt;}
._13{margin-left:-8.719283pt;}
._1d{margin-left:-1.949181pt;}
._0{margin-left:-1.052643pt;}
._1{width:1.005038pt;}
._3{width:1.936670pt;}
._6{width:2.899679pt;}
._7{width:4.535174pt;}
._10{width:5.656946pt;}
._8{width:6.968190pt;}
._5{width:7.920737pt;}
._4{width:9.113084pt;}
._9{width:10.329011pt;}
._12{width:11.999239pt;}
._f{width:13.523870pt;}
._1a{width:14.575439pt;}
._17{width:15.883222pt;}
._16{width:16.824844pt;}
._1c{width:18.033129pt;}
._b{width:19.225808pt;}
._e{width:20.462716pt;}
._a{width:22.049707pt;}
._20{width:23.269389pt;}
._11{width:24.245153pt;}
._23{width:25.286596pt;}
._21{width:26.760957pt;}
._18{width:27.667269pt;}
._15{width:29.461929pt;}
._14{width:30.484136pt;}
._1b{width:32.071419pt;}
._2b{width:33.149281pt;}
._c{width:34.610625pt;}
._d{width:35.752268pt;}
._30{width:36.667811pt;}
._1f{width:38.048766pt;}
._1e{width:39.093531pt;}
._2a{width:42.486636pt;}
._19{width:44.501008pt;}
._22{width:45.508835pt;}
._24{width:48.343247pt;}
._2{width:50.250437pt;}
._28{width:51.359740pt;}
._29{width:52.414120pt;}
._2d{width:57.930105pt;}
._2c{width:58.900092pt;}
._2e{width:62.321789pt;}
._33{width:73.149667pt;}
._32{width:74.301171pt;}
._26{width:76.287771pt;}
._25{width:77.187526pt;}
._27{width:127.236768pt;}
._31{width:150.109395pt;}
._2f{width:203.917218pt;}
.fs7{font-size:31.999987pt;}
.fs6{font-size:34.559986pt;}
.fs4{font-size:37.119985pt;}
.fs0{font-size:42.879983pt;}
.fs8{font-size:47.999981pt;}
.fs1{font-size:53.119979pt;}
.fs3{font-size:58.879976pt;}
.fs2{font-size:63.999974pt;}
.fs5{font-size:85.119966pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:51.466646pt;}
.y6{bottom:70.986638pt;}
.y71{bottom:97.066628pt;}
.ya4{bottom:97.066895pt;}
.yb7{bottom:97.226894pt;}
.y37{bottom:97.546894pt;}
.ya3{bottom:103.146892pt;}
.yec{bottom:103.306892pt;}
.y36{bottom:104.266892pt;}
.y163{bottom:105.546624pt;}
.y70{bottom:110.826622pt;}
.ya2{bottom:110.826889pt;}
.yb6{bottom:110.986889pt;}
.y35{bottom:114.186888pt;}
.ya1{bottom:116.906887pt;}
.yb5{bottom:117.066887pt;}
.yd0{bottom:124.586617pt;}
.yeb{bottom:124.586883pt;}
.y6f{bottom:124.746617pt;}
.y132{bottom:126.346883pt;}
.y162{bottom:129.066615pt;}
.yea{bottom:130.666881pt;}
.y34{bottom:133.066613pt;}
.ye9{bottom:138.506611pt;}
.y6e{bottom:138.666611pt;}
.y161{bottom:144.426609pt;}
.ye8{bottom:144.586609pt;}
.y6d{bottom:144.746609pt;}
.y33{bottom:151.466606pt;}
.y6c{bottom:152.266606pt;}
.ya0{bottom:152.426606pt;}
.y131{bottom:154.186605pt;}
.y6b{bottom:158.346603pt;}
.ye7{bottom:158.506603pt;}
.y160{bottom:159.626603pt;}
.y6a{bottom:166.026600pt;}
.y9f{bottom:166.186600pt;}
.y130{bottom:169.706599pt;}
.y32{bottom:169.866599pt;}
.y100{bottom:172.106598pt;}
.y15f{bottom:174.826597pt;}
.yb4{bottom:179.786595pt;}
.y69{bottom:179.946595pt;}
.y12f{bottom:184.906593pt;}
.yb3{bottom:185.866592pt;}
.y10e{bottom:186.026592pt;}
.y31{bottom:188.266591pt;}
.yb2{bottom:193.706589pt;}
.y68{bottom:193.866589pt;}
.y11c{bottom:195.466588pt;}
.y15e{bottom:198.186587pt;}
.yb1{bottom:199.786587pt;}
.ycf{bottom:199.946587pt;}
.y12e{bottom:200.266587pt;}
.y30{bottom:206.666584pt;}
.y67{bottom:207.466584pt;}
.ye6{bottom:207.626584pt;}
.yb0{bottom:209.226583pt;}
.y66{bottom:213.546581pt;}
.ye5{bottom:213.706581pt;}
.ye4{bottom:221.226578pt;}
.y65{bottom:221.386578pt;}
.y12d{bottom:223.626577pt;}
.y2f{bottom:225.066577pt;}
.y11a{bottom:225.546576pt;}
.yff{bottom:227.306576pt;}
.y15d{bottom:228.906575pt;}
.y11b{bottom:232.906574pt;}
.yaf{bottom:234.826573pt;}
.y64{bottom:234.986573pt;}
.ye3{bottom:235.146573pt;}
.y12c{bottom:238.986571pt;}
.y63{bottom:241.066570pt;}
.y10d{bottom:241.226570pt;}
.y119{bottom:243.946569pt;}
.y15c{bottom:244.266569pt;}
.y9e{bottom:248.906567pt;}
.ye2{bottom:249.066567pt;}
.y62{bottom:250.506566pt;}
.y2e{bottom:252.586566pt;}
.yae{bottom:253.226565pt;}
.y12b{bottom:254.186565pt;}
.ye1{bottom:255.146565pt;}
.y15b{bottom:259.466563pt;}
.yce{bottom:262.346562pt;}
.ye0{bottom:262.666562pt;}
.y9d{bottom:262.826562pt;}
.ydf{bottom:268.746559pt;}
.y61{bottom:271.626558pt;}
.y15a{bottom:274.826557pt;}
.yde{bottom:276.426556pt;}
.y9c{bottom:276.586556pt;}
.y12a{bottom:277.706556pt;}
.y2d{bottom:280.106555pt;}
.ycd{bottom:280.746554pt;}
.ydd{bottom:282.506554pt;}
.y60{bottom:289.866551pt;}
.y9b{bottom:290.186551pt;}
.y129{bottom:293.066549pt;}
.ydc{bottom:296.266548pt;}
.yad{bottom:297.226548pt;}
.y159{bottom:298.186547pt;}
.y2c{bottom:298.666547pt;}
.ycb{bottom:299.146547pt;}
.y9a{bottom:304.106545pt;}
.ydb{bottom:305.706544pt;}
.ycc{bottom:306.506544pt;}
.y5f{bottom:308.266543pt;}
.y10c{bottom:310.186543pt;}
.y158{bottom:313.706541pt;}
.y128{bottom:316.426540pt;}
.y2b{bottom:317.066540pt;}
.yfe{bottom:317.546540pt;}
.yca{bottom:317.706540pt;}
.y99{bottom:317.866540pt;}
.y10b{bottom:318.026539pt;}
.y5e{bottom:326.666536pt;}
.yda{bottom:326.826536pt;}
.y157{bottom:328.906535pt;}
.y98{bottom:331.626534pt;}
.y10a{bottom:331.786534pt;}
.y2a{bottom:335.466532pt;}
.yfd{bottom:335.946532pt;}
.yc9{bottom:336.106532pt;}
.yac{bottom:345.066529pt;}
.y5d{bottom:345.226529pt;}
.y97{bottom:345.386529pt;}
.y127{bottom:346.826528pt;}
.y109{bottom:351.466526pt;}
.y156{bottom:352.266526pt;}
.y29{bottom:353.866525pt;}
.yfc{bottom:354.346525pt;}
.yc8{bottom:354.506525pt;}
.y96{bottom:359.466523pt;}
.y108{bottom:360.906522pt;}
.yab{bottom:363.466521pt;}
.y5c{bottom:363.626521pt;}
.y155{bottom:367.626520pt;}
.y126{bottom:370.346519pt;}
.y28{bottom:372.266518pt;}
.yc7{bottom:372.746518pt;}
.y95{bottom:373.226517pt;}
.yfb{bottom:380.106515pt;}
.yaa{bottom:381.866514pt;}
.y5b{bottom:382.026514pt;}
.y154{bottom:382.826514pt;}
.y125{bottom:385.546512pt;}
.y94{bottom:386.986512pt;}
.yd9{bottom:389.226511pt;}
.y27{bottom:390.666510pt;}
.yc6{bottom:391.146510pt;}
.y93{bottom:393.066509pt;}
.y107{bottom:398.506507pt;}
.ya9{bottom:400.266507pt;}
.y5a{bottom:400.426506pt;}
.y92{bottom:400.586506pt;}
.y153{bottom:406.186504pt;}
.y26{bottom:409.066503pt;}
.yc5{bottom:409.546503pt;}
.y91{bottom:414.666501pt;}
.y59{bottom:418.666499pt;}
.y90{bottom:420.746498pt;}
.y152{bottom:421.706498pt;}
.y124{bottom:424.426497pt;}
.yd8{bottom:426.026496pt;}
.y25{bottom:427.466496pt;}
.yc4{bottom:427.946495pt;}
.y8f{bottom:428.266495pt;}
.y58{bottom:437.066492pt;}
.y123{bottom:439.466491pt;}
.y8e{bottom:442.186490pt;}
.ya8{bottom:444.426489pt;}
.y24{bottom:445.866488pt;}
.yc3{bottom:446.346488pt;}
.y151{bottom:452.266486pt;}
.y122{bottom:454.826485pt;}
.y57{bottom:455.466484pt;}
.y8d{bottom:455.946484pt;}
.y23{bottom:464.266481pt;}
.yc1{bottom:464.746481pt;}
.y8c{bottom:469.706479pt;}
.y121{bottom:470.186479pt;}
.yc2{bottom:472.106478pt;}
.y56{bottom:473.866477pt;}
.yd7{bottom:474.026477pt;}
.y150{bottom:475.466476pt;}
.y8b{bottom:475.786476pt;}
.y22{bottom:482.666474pt;}
.yfa{bottom:483.146473pt;}
.yc0{bottom:483.306473pt;}
.y8a{bottom:483.466473pt;}
.y120{bottom:485.706472pt;}
.y14f{bottom:490.986470pt;}
.y54{bottom:492.266470pt;}
.y89{bottom:497.386468pt;}
.y55{bottom:499.626467pt;}
.y11f{bottom:500.906466pt;}
.y21{bottom:501.066466pt;}
.ybf{bottom:501.546466pt;}
.y14e{bottom:506.186464pt;}
.y106{bottom:508.906463pt;}
.y53{bottom:510.666462pt;}
.y88{bottom:510.986462pt;}
.y11e{bottom:516.426460pt;}
.y87{bottom:517.066460pt;}
.y20{bottom:519.466459pt;}
.y105{bottom:519.946459pt;}
.ybe{bottom:520.106459pt;}
.y86{bottom:526.506456pt;}
.y51{bottom:529.066455pt;}
.y14d{bottom:529.546455pt;}
.y11d{bottom:531.466454pt;}
.y52{bottom:536.426452pt;}
.y1f{bottom:537.866452pt;}
.y104{bottom:538.346451pt;}
.ybd{bottom:538.506451pt;}
.y14c{bottom:545.066449pt;}
.y50{bottom:547.466448pt;}
.yf9{bottom:547.626448pt;}
.y1e{bottom:556.266444pt;}
.ybc{bottom:556.746444pt;}
.y14b{bottom:560.266443pt;}
.y85{bottom:565.706440pt;}
.y4f{bottom:565.866440pt;}
.yd6{bottom:573.226437pt;}
.y1d{bottom:574.666437pt;}
.ybb{bottom:575.146437pt;}
.y14a{bottom:583.466433pt;}
.y84{bottom:584.106433pt;}
.y4e{bottom:584.266433pt;}
.y1c{bottom:593.066429pt;}
.yba{bottom:593.546429pt;}
.y149{bottom:598.826427pt;}
.y103{bottom:600.906426pt;}
.y82{bottom:602.506426pt;}
.y4c{bottom:602.666426pt;}
.y83{bottom:609.866423pt;}
.y4d{bottom:610.026423pt;}
.y1b{bottom:611.466422pt;}
.yb9{bottom:611.946422pt;}
.y148{bottom:614.186421pt;}
.y81{bottom:620.906418pt;}
.y4b{bottom:621.066418pt;}
.yd5{bottom:628.426415pt;}
.y147{bottom:629.546415pt;}
.y1a{bottom:629.866415pt;}
.y102{bottom:630.346415pt;}
.y80{bottom:639.306411pt;}
.y4a{bottom:639.466411pt;}
.y146{bottom:644.906409pt;}
.y101{bottom:648.746407pt;}
.y7e{bottom:657.706404pt;}
.y49{bottom:657.866404pt;}
.ya7{bottom:658.026403pt;}
.y145{bottom:660.106403pt;}
.y19{bottom:664.266401pt;}
.y7f{bottom:665.066401pt;}
.y118{bottom:667.146400pt;}
.y144{bottom:675.466396pt;}
.y7d{bottom:676.106396pt;}
.y47{bottom:676.266396pt;}
.ya6{bottom:676.426396pt;}
.y18{bottom:682.666394pt;}
.y48{bottom:683.626393pt;}
.y117{bottom:685.546392pt;}
.y7c{bottom:694.506389pt;}
.y46{bottom:694.666389pt;}
.y143{bottom:698.826387pt;}
.y17{bottom:701.066386pt;}
.y116{bottom:703.946385pt;}
.y7b{bottom:712.906382pt;}
.y45{bottom:713.066381pt;}
.y142{bottom:714.346381pt;}
.y16{bottom:719.466379pt;}
.yd4{bottom:720.426378pt;}
.y115{bottom:722.346378pt;}
.y141{bottom:729.546375pt;}
.y7a{bottom:731.306374pt;}
.y44{bottom:731.466374pt;}
.y15{bottom:737.866372pt;}
.y114{bottom:740.746370pt;}
.y79{bottom:749.706367pt;}
.y43{bottom:749.866367pt;}
.y140{bottom:752.906366pt;}
.y14{bottom:756.266364pt;}
.yd3{bottom:757.226364pt;}
.y113{bottom:759.146363pt;}
.y78{bottom:768.106359pt;}
.y42{bottom:768.266359pt;}
.yd2{bottom:768.426359pt;}
.y13{bottom:774.666357pt;}
.y112{bottom:777.546356pt;}
.y13f{bottom:783.626353pt;}
.y77{bottom:786.506352pt;}
.y41{bottom:786.666352pt;}
.yf8{bottom:786.826352pt;}
.y12{bottom:793.066349pt;}
.y111{bottom:795.946348pt;}
.y13e{bottom:798.986347pt;}
.y40{bottom:805.066345pt;}
.yf6{bottom:805.226345pt;}
.y11{bottom:811.466342pt;}
.ya5{bottom:812.426342pt;}
.yf7{bottom:812.586342pt;}
.y75{bottom:812.746342pt;}
.y13d{bottom:814.186341pt;}
.y76{bottom:820.106339pt;}
.y110{bottom:823.306337pt;}
.y3f{bottom:823.466337pt;}
.y10{bottom:829.866335pt;}
.yb8{bottom:830.826334pt;}
.y13c{bottom:837.546332pt;}
.y3e{bottom:841.866330pt;}
.yf{bottom:848.266327pt;}
.y13b{bottom:852.906326pt;}
.y3d{bottom:860.266323pt;}
.yf4{bottom:860.426322pt;}
.ye{bottom:866.666320pt;}
.y74{bottom:867.626320pt;}
.yf5{bottom:867.786320pt;}
.y13a{bottom:868.106319pt;}
.y3c{bottom:878.666315pt;}
.yf3{bottom:878.826315pt;}
.y139{bottom:883.466313pt;}
.y10f{bottom:886.026312pt;}
.y3b{bottom:897.066308pt;}
.yf2{bottom:897.226308pt;}
.yd{bottom:901.066306pt;}
.y73{bottom:904.426305pt;}
.y167{bottom:906.826304pt;}
.y138{bottom:906.986304pt;}
.y3a{bottom:915.466300pt;}
.yf1{bottom:915.626300pt;}
.y137{bottom:922.186298pt;}
.y39{bottom:933.866293pt;}
.yf0{bottom:934.026293pt;}
.yc{bottom:935.466292pt;}
.y136{bottom:937.546292pt;}
.y166{bottom:937.706292pt;}
.y38{bottom:952.266286pt;}
.yef{bottom:952.426286pt;}
.y165{bottom:952.906286pt;}
.yb{bottom:953.546285pt;}
.y135{bottom:960.746282pt;}
.y164{bottom:968.266279pt;}
.y9{bottom:970.666278pt;}
.y134{bottom:976.266276pt;}
.ya{bottom:977.386276pt;}
.yd1{bottom:978.026275pt;}
.y8{bottom:989.066271pt;}
.yed{bottom:989.226271pt;}
.y133{bottom:991.466270pt;}
.y72{bottom:996.426268pt;}
.yee{bottom:996.586268pt;}
.y5{bottom:1008.106263pt;}
.y4{bottom:1026.346256pt;}
.y3{bottom:1041.386250pt;}
.y2{bottom:1053.546245pt;}
.y1{bottom:1065.866240pt;}
.hb{height:33.374987pt;}
.h8{height:36.044986pt;}
.h6{height:38.714985pt;}
.hd{height:39.243734pt;}
.h1{height:42.084358pt;}
.h3{height:42.656233pt;}
.ha{height:44.722482pt;}
.hc{height:50.062480pt;}
.h2{height:53.534979pt;}
.h9{height:55.402478pt;}
.h4{height:61.409975pt;}
.h5{height:66.749973pt;}
.h7{height:88.777464pt;}
.h0{height:1122.666667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x5{left:94.399962pt;}
.xc{left:99.199960pt;}
.x20{left:103.359959pt;}
.xa{left:118.399153pt;}
.x5e{left:130.079948pt;}
.xb{left:132.159157pt;}
.x11{left:134.399946pt;}
.x2{left:141.919947pt;}
.x12{left:144.799942pt;}
.x48{left:156.639937pt;}
.x42{left:162.879935pt;}
.x49{left:168.479933pt;}
.x43{left:174.719930pt;}
.x45{left:184.159926pt;}
.x2b{left:188.639925pt;}
.x2f{left:189.759924pt;}
.x46{left:195.999922pt;}
.x3{left:198.720181pt;}
.x2c{left:200.479920pt;}
.x30{left:201.599919pt;}
.x3f{left:209.919916pt;}
.x59{left:212.159915pt;}
.x5d{left:213.919914pt;}
.x4{left:227.679909pt;}
.x1f{left:233.599907pt;}
.x5b{left:235.359906pt;}
.x36{left:238.559905pt;}
.x1{left:244.959902pt;}
.x5c{left:247.199901pt;}
.x57{left:248.639901pt;}
.x37{left:250.399900pt;}
.x58{left:260.479896pt;}
.x53{left:271.679891pt;}
.x25{left:275.839890pt;}
.x54{left:283.519887pt;}
.x26{left:287.679885pt;}
.x21{left:295.839882pt;}
.x23{left:299.039880pt;}
.x22{left:307.679877pt;}
.x24{left:310.879876pt;}
.x7{left:325.759870pt;}
.x8{left:344.159862pt;}
.x15{left:347.999861pt;}
.x9{left:351.999859pt;}
.x16{left:353.919858pt;}
.x47{left:358.719857pt;}
.x1b{left:363.839854pt;}
.x33{left:367.839853pt;}
.x1c{left:369.759852pt;}
.x34{left:379.679848pt;}
.x31{left:389.759844pt;}
.x32{left:401.599839pt;}
.xd{left:415.519834pt;}
.xe{left:421.439831pt;}
.x52{left:432.799827pt;}
.x2d{left:443.839822pt;}
.x2e{left:455.679818pt;}
.x1d{left:464.159814pt;}
.x50{left:473.599811pt;}
.x1e{left:475.999810pt;}
.x4e{left:482.399807pt;}
.x51{left:485.439806pt;}
.x5a{left:487.519805pt;}
.x19{left:489.279804pt;}
.x4f{left:494.239802pt;}
.x1a{left:495.199802pt;}
.x40{left:499.999800pt;}
.x3a{left:505.279798pt;}
.xf{left:510.879796pt;}
.x41{left:511.839795pt;}
.x10{left:516.799793pt;}
.x17{left:520.159792pt;}
.x18{left:526.079790pt;}
.x29{left:539.999784pt;}
.x3d{left:546.399781pt;}
.x2a{left:551.839779pt;}
.x3e{left:558.239777pt;}
.x35{left:563.359775pt;}
.x55{left:576.479769pt;}
.x4a{left:580.319768pt;}
.x3b{left:583.839766pt;}
.x56{left:588.319765pt;}
.x27{left:590.719764pt;}
.x4b{left:592.159763pt;}
.x3c{left:595.679762pt;}
.x28{left:602.559759pt;}
.x4c{left:631.519747pt;}
.x4d{left:643.359743pt;}
.x38{left:668.159733pt;}
.x6{left:674.879711pt;}
.x39{left:679.999728pt;}
.x44{left:687.359725pt;}
.x13{left:693.279723pt;}
.x14{left:699.199720pt;}
}




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