
    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_b50ed9e608ecf186e0948db0.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.919000;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_395c19c914692d1663080615.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.892000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_b4dd83a17594a0ec44eefbba.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.108000;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_1d4abdfbfea68e9da58b8ec0.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_245ca1bcf130076a00124dbd.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.960938;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_098f788de5f2079f9e897428.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.896484;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_8d0a2b3db1aee87bddcc6685.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.960938;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_d493cc1114a0bd40572cb8c6.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.682617;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;}
.m4{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);}
.m8{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.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);}
.m6{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);}
.m0{transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249855,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.m1{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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:33.119987px;}
.ls2{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.010620px;}
.ls5{letter-spacing:0.010641px;}
.ls1{letter-spacing:0.019875px;}
.ls8{letter-spacing:0.021238px;}
.ls7{letter-spacing:0.021240px;}
.ls4{letter-spacing:0.021282px;}
.ls0{letter-spacing:0.096738px;}
.ls3{letter-spacing:2.892299px;}
.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;}
}
.ws4{word-spacing:-42.324463px;}
.ws2{word-spacing:-41.856721px;}
.wsa{word-spacing:-18.021275px;}
.wsb{word-spacing:-18.021231px;}
.ws0{word-spacing:-17.999993px;}
.ws3{word-spacing:-16.579869px;}
.ws6{word-spacing:-16.559993px;}
.ws1{word-spacing:-15.839994px;}
.ws5{word-spacing:0.000000px;}
.ws8{word-spacing:266.737113px;}
.ws9{word-spacing:327.542636px;}
.ws7{word-spacing:706.621541px;}
._2f{margin-left:-9.262541px;}
._10{margin-left:-8.229375px;}
._30{margin-left:-7.158479px;}
._4{margin-left:-6.149285px;}
._24{margin-left:-5.147852px;}
._3{margin-left:-4.136094px;}
._2{margin-left:-2.762305px;}
._1{margin-left:-1.055659px;}
._0{width:1.056665px;}
._d{width:2.130346px;}
._c{width:3.142905px;}
._5{width:4.251665px;}
._6{width:5.825091px;}
._8{width:7.750016px;}
._7{width:8.979291px;}
._9{width:10.206510px;}
._a{width:11.248366px;}
._b{width:13.056194px;}
._e{width:14.687236px;}
._14{width:16.190513px;}
._12{width:19.051160px;}
._11{width:20.192223px;}
._17{width:21.639559px;}
._13{width:22.841823px;}
._15{width:23.878004px;}
._21{width:25.887978px;}
._f{width:26.888571px;}
._3a{width:30.812085px;}
._20{width:33.654197px;}
._38{width:35.183906px;}
._3e{width:36.560936px;}
._40{width:37.579179px;}
._22{width:38.903992px;}
._31{width:41.961769px;}
._35{width:43.475185px;}
._23{width:47.188993px;}
._3b{width:48.886026px;}
._27{width:51.220921px;}
._25{width:52.229614px;}
._28{width:53.368299px;}
._3d{width:54.471091px;}
._39{width:69.836872px;}
._3f{width:72.332282px;}
._32{width:84.314532px;}
._2d{width:88.682723px;}
._2e{width:90.110823px;}
._26{width:103.063506px;}
._3c{width:107.756692px;}
._2a{width:118.256925px;}
._29{width:119.557624px;}
._16{width:141.944314px;}
._33{width:177.421587px;}
._2c{width:179.602889px;}
._36{width:222.562539px;}
._2b{width:237.611311px;}
._1f{width:310.197696px;}
._34{width:355.992673px;}
._1a{width:363.758902px;}
._37{width:444.659447px;}
._18{width:447.644084px;}
._1e{width:465.803871px;}
._1b{width:552.157566px;}
._1d{width:556.868574px;}
._19{width:591.570207px;}
._1c{width:592.824559px;}
.fc2{color:rgb(179,179,179);}
.fc1{color:rgb(153,153,153);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:41.759983px;}
.fs5{font-size:45.359982px;}
.fsa{font-size:48.239981px;}
.fsb{font-size:49.679980px;}
.fs9{font-size:53.999978px;}
.fsc{font-size:59.759976px;}
.fs4{font-size:63.359975px;}
.fs7{font-size:66.239974px;}
.fs3{font-size:71.999971px;}
.fs2{font-size:77.759969px;}
.fs1{font-size:84.239966px;}
.fs0{font-size:95.759962px;}
.fs8{font-size:120.239952px;}
.y0{bottom:0.000000px;}
.y24{bottom:56.820277px;}
.y23{bottom:74.460270px;}
.y22{bottom:87.240265px;}
.y57{bottom:115.319954px;}
.y7e{bottom:117.119953px;}
.y15e{bottom:118.019953px;}
.y21{bottom:121.079952px;}
.y17f{bottom:125.579950px;}
.ycf{bottom:126.659949px;}
.y163{bottom:127.559949px;}
.yb3{bottom:129.899948px;}
.yed{bottom:133.859946px;}
.y56{bottom:136.019946px;}
.y7d{bottom:137.819945px;}
.y15d{bottom:138.719945px;}
.y117{bottom:141.599943px;}
.y20{bottom:141.779943px;}
.y17e{bottom:146.279941px;}
.yce{bottom:147.359941px;}
.y162{bottom:148.259941px;}
.y149{bottom:150.059940px;}
.yb2{bottom:150.599940px;}
.yec{bottom:154.559938px;}
.y55{bottom:156.719937px;}
.y7c{bottom:158.519937px;}
.y116{bottom:162.299935px;}
.y1f{bottom:162.479935px;}
.y177{bottom:166.979933px;}
.ycd{bottom:168.059933px;}
.y161{bottom:168.959932px;}
.y15c{bottom:169.679932px;}
.y148{bottom:170.759932px;}
.yb1{bottom:171.299931px;}
.y186{bottom:171.839931px;}
.yeb{bottom:175.259930px;}
.y54{bottom:177.419929px;}
.y7b{bottom:179.219928px;}
.y115{bottom:182.999927px;}
.y1e{bottom:183.179927px;}
.y16f{bottom:187.679925px;}
.ycc{bottom:188.759924px;}
.y160{bottom:189.659924px;}
.y15b{bottom:190.379924px;}
.y185{bottom:190.919924px;}
.y147{bottom:191.459923px;}
.yb0{bottom:191.999923px;}
.yea{bottom:195.959922px;}
.y53{bottom:198.119921px;}
.y7a{bottom:199.919920px;}
.y114{bottom:203.699919px;}
.y1d{bottom:203.879918px;}
.y16e{bottom:208.379917px;}
.ycb{bottom:209.459916px;}
.y184{bottom:209.819916px;}
.y165{bottom:210.359916px;}
.y15a{bottom:211.079916px;}
.y146{bottom:212.159915px;}
.yaf{bottom:212.699915px;}
.ye9{bottom:216.659913px;}
.y52{bottom:218.819912px;}
.y79{bottom:220.619912px;}
.y183{bottom:228.899908px;}
.y176{bottom:229.079908px;}
.yca{bottom:230.159908px;}
.y129{bottom:231.059908px;}
.y159{bottom:231.779907px;}
.y145{bottom:232.859907px;}
.yae{bottom:233.399907px;}
.y113{bottom:234.659906px;}
.ye8{bottom:237.359905px;}
.y51{bottom:239.519904px;}
.y78{bottom:241.319903px;}
.y1c{bottom:245.279902px;}
.y182{bottom:247.799901px;}
.y175{bottom:249.779900px;}
.yc9{bottom:250.859900px;}
.y128{bottom:251.759899px;}
.y158{bottom:252.479899px;}
.y112{bottom:255.359898px;}
.ye7{bottom:258.059897px;}
.y50{bottom:260.219896px;}
.y77{bottom:262.019895px;}
.y144{bottom:263.999894px;}
.y1b{bottom:265.979894px;}
.y181{bottom:266.699893px;}
.y17d{bottom:270.479892px;}
.yc8{bottom:271.559891px;}
.y127{bottom:272.459891px;}
.yad{bottom:275.519890px;}
.y111{bottom:276.059890px;}
.ye6{bottom:278.759888px;}
.y4f{bottom:280.919888px;}
.y76{bottom:282.719887px;}
.y157{bottom:283.619887px;}
.y143{bottom:284.699886px;}
.y17c{bottom:291.179884px;}
.yc7{bottom:292.259883px;}
.y126{bottom:293.159883px;}
.y110{bottom:296.759881px;}
.yac{bottom:296.939881px;}
.ye5{bottom:299.459880px;}
.y4e{bottom:301.619879px;}
.y75{bottom:303.419879px;}
.y156{bottom:304.319878px;}
.y180{bottom:305.039878px;}
.y142{bottom:305.399878px;}
.y1a{bottom:307.379877px;}
.y17b{bottom:311.879875px;}
.yc6{bottom:312.959875px;}
.y125{bottom:313.859874px;}
.yab{bottom:316.019874px;}
.y10f{bottom:317.459873px;}
.ye4{bottom:320.159872px;}
.y4d{bottom:322.319871px;}
.y74{bottom:324.119870px;}
.y155{bottom:325.019870px;}
.y141{bottom:326.099870px;}
.y19{bottom:328.079869px;}
.y16d{bottom:332.579867px;}
.yc5{bottom:333.659867px;}
.y15f{bottom:334.559866px;}
.yaa{bottom:336.719865px;}
.ye3{bottom:340.859864px;}
.y4c{bottom:343.019863px;}
.y73{bottom:344.819862px;}
.y140{bottom:346.799861px;}
.y10e{bottom:348.599861px;}
.y18{bottom:348.779860px;}
.y16c{bottom:353.279859px;}
.yc4{bottom:354.359858px;}
.y174{bottom:355.259858px;}
.y154{bottom:355.979858px;}
.y4b{bottom:363.719855px;}
.y72{bottom:365.519854px;}
.y13f{bottom:367.499853px;}
.y10d{bottom:369.299852px;}
.y17{bottom:369.479852px;}
.y16b{bottom:373.979850px;}
.ya9{bottom:374.699850px;}
.yc3{bottom:375.059850px;}
.y173{bottom:375.959850px;}
.y153{bottom:376.679849px;}
.ye2{bottom:381.359847px;}
.y4a{bottom:384.419846px;}
.y71{bottom:386.219846px;}
.y13e{bottom:388.199845px;}
.y10c{bottom:389.999844px;}
.y16{bottom:390.179844px;}
.ya8{bottom:393.599843px;}
.y16a{bottom:394.679842px;}
.yc2{bottom:395.759842px;}
.y172{bottom:396.659841px;}
.y49{bottom:405.119838px;}
.y70{bottom:406.919837px;}
.y152{bottom:407.819837px;}
.y13d{bottom:408.899836px;}
.y10b{bottom:410.699836px;}
.y15{bottom:410.879836px;}
.ye1{bottom:411.599835px;}
.ya7{bottom:414.299834px;}
.y88{bottom:415.379834px;}
.yc1{bottom:416.459833px;}
.y171{bottom:417.359833px;}
.y48{bottom:425.819830px;}
.y6f{bottom:427.619829px;}
.y151{bottom:428.519829px;}
.y13c{bottom:429.599828px;}
.y14{bottom:431.579827px;}
.ya6{bottom:433.199827px;}
.y169{bottom:436.079826px;}
.yc0{bottom:437.159825px;}
.y170{bottom:438.059825px;}
.y10a{bottom:439.859824px;}
.y47{bottom:446.519821px;}
.ye0{bottom:446.879821px;}
.y6e{bottom:448.319821px;}
.y13{bottom:452.279819px;}
.ya5{bottom:453.899818px;}
.y87{bottom:456.779817px;}
.ybf{bottom:457.859817px;}
.y124{bottom:458.759816px;}
.y150{bottom:459.479816px;}
.y46{bottom:467.219813px;}
.y6d{bottom:469.019812px;}
.ya4{bottom:472.799811px;}
.y12{bottom:472.979811px;}
.y86{bottom:477.479809px;}
.ybe{bottom:478.559809px;}
.y123{bottom:479.459808px;}
.y14f{bottom:480.179808px;}
.y109{bottom:481.259807px;}
.ydf{bottom:482.339807px;}
.y45{bottom:487.919805px;}
.y6c{bottom:489.719804px;}
.ya3{bottom:493.499803px;}
.y11{bottom:493.679803px;}
.y85{bottom:498.179801px;}
.ybd{bottom:499.259800px;}
.y122{bottom:500.159800px;}
.y108{bottom:501.959799px;}
.y44{bottom:508.619797px;}
.y6b{bottom:510.419796px;}
.y14e{bottom:511.319795px;}
.ya2{bottom:514.199794px;}
.y10{bottom:514.379794px;}
.yde{bottom:517.799793px;}
.y84{bottom:518.879792px;}
.ybc{bottom:519.959792px;}
.y121{bottom:520.859792px;}
.y107{bottom:522.659791px;}
.y43{bottom:529.319788px;}
.y6a{bottom:531.119788px;}
.y14d{bottom:532.019787px;}
.ya1{bottom:534.719786px;}
.yf{bottom:535.079786px;}
.y83{bottom:539.579784px;}
.ybb{bottom:540.659784px;}
.y120{bottom:541.559783px;}
.y106{bottom:543.359783px;}
.ydd{bottom:544.799782px;}
.y42{bottom:550.019780px;}
.y69{bottom:551.819779px;}
.ya0{bottom:553.799778px;}
.ye{bottom:555.779778px;}
.y82{bottom:560.279776px;}
.yba{bottom:561.359775px;}
.y11f{bottom:562.259775px;}
.y14c{bottom:562.979775px;}
.y105{bottom:564.059774px;}
.y41{bottom:570.719772px;}
.y68{bottom:572.519771px;}
.y9f{bottom:572.699771px;}
.ydc{bottom:579.899768px;}
.y81{bottom:580.979768px;}
.y11e{bottom:582.959767px;}
.y14b{bottom:583.679767px;}
.y104{bottom:584.759766px;}
.y40{bottom:591.419763px;}
.y67{bottom:593.219763px;}
.y9e{bottom:593.399763px;}
.y80{bottom:601.679759px;}
.yb9{bottom:603.659759px;}
.ydb{bottom:604.379758px;}
.y3f{bottom:612.119755px;}
.y9d{bottom:612.299755px;}
.y164{bottom:613.919754px;}
.yd{bottom:614.999754px;}
.y103{bottom:615.899754px;}
.y66{bottom:622.379751px;}
.y13b{bottom:624.359750px;}
.yb8{bottom:625.079750px;}
.y9c{bottom:631.199748px;}
.y3e{bottom:632.819747px;}
.yc{bottom:632.999747px;}
.y17a{bottom:634.619746px;}
.y102{bottom:636.599745px;}
.y7f{bottom:643.079743px;}
.yb7{bottom:644.159742px;}
.y13a{bottom:645.059742px;}
.yda{bottom:645.779742px;}
.yb{bottom:651.179740px;}
.y9b{bottom:651.899739px;}
.y3d{bottom:653.519739px;}
.y179{bottom:655.319738px;}
.y101{bottom:657.299737px;}
.yb6{bottom:663.239735px;}
.y65{bottom:663.779734px;}
.y139{bottom:665.759734px;}
.yd9{bottom:666.479733px;}
.ya{bottom:669.359732px;}
.y9a{bottom:672.599731px;}
.y3c{bottom:674.219730px;}
.y178{bottom:676.019730px;}
.y100{bottom:677.999729px;}
.yb5{bottom:682.319727px;}
.y64{bottom:684.479726px;}
.y138{bottom:686.459725px;}
.yd8{bottom:687.179725px;}
.y99{bottom:691.499723px;}
.y3b{bottom:694.919722px;}
.yff{bottom:698.699721px;}
.yb4{bottom:701.399719px;}
.y9{bottom:704.819718px;}
.y63{bottom:705.179718px;}
.y137{bottom:707.159717px;}
.yd7{bottom:707.879717px;}
.y98{bottom:710.399716px;}
.y3a{bottom:715.619714px;}
.y8{bottom:722.999711px;}
.y62{bottom:725.879710px;}
.yd6{bottom:728.579709px;}
.yfe{bottom:729.659708px;}
.y97{bottom:731.099708px;}
.y39{bottom:736.319705px;}
.y14a{bottom:737.579705px;}
.y136{bottom:738.119705px;}
.y61{bottom:746.579701px;}
.yd5{bottom:749.279700px;}
.y96{bottom:749.999700px;}
.yfd{bottom:750.359700px;}
.y38{bottom:757.019697px;}
.y135{bottom:758.819696px;}
.y60{bottom:767.279693px;}
.yd4{bottom:769.979692px;}
.y95{bottom:770.699692px;}
.yfc{bottom:771.059692px;}
.y37{bottom:777.719689px;}
.y134{bottom:779.519688px;}
.y7{bottom:780.419688px;}
.y5f{bottom:787.979685px;}
.y94{bottom:789.599684px;}
.yd3{bottom:790.679684px;}
.yfb{bottom:791.759683px;}
.y36{bottom:798.419681px;}
.y6{bottom:801.119680px;}
.y5e{bottom:808.679677px;}
.y93{bottom:810.299676px;}
.y133{bottom:810.659676px;}
.yd2{bottom:811.379675px;}
.yfa{bottom:812.459675px;}
.y35{bottom:819.119672px;}
.y5{bottom:822.179671px;}
.y5d{bottom:829.379668px;}
.y132{bottom:831.359667px;}
.yd1{bottom:832.079667px;}
.y34{bottom:839.819664px;}
.yf9{bottom:841.619663px;}
.y5c{bottom:850.079660px;}
.y131{bottom:852.059659px;}
.y33{bottom:860.519656px;}
.yd0{bottom:861.779655px;}
.y92{bottom:870.599652px;}
.y5b{bottom:870.779652px;}
.y130{bottom:872.759651px;}
.y168{bottom:881.219648px;}
.yf8{bottom:883.019647px;}
.y4{bottom:889.679644px;}
.y91{bottom:891.299643px;}
.y32{bottom:891.479643px;}
.y12f{bottom:893.459643px;}
.y11d{bottom:901.919639px;}
.yf7{bottom:903.719639px;}
.y90{bottom:911.999635px;}
.y5a{bottom:912.179635px;}
.y3{bottom:913.799634px;}
.y12e{bottom:914.159634px;}
.y11c{bottom:922.619631px;}
.yf6{bottom:924.419630px;}
.y8f{bottom:932.699627px;}
.y59{bottom:932.879627px;}
.y11b{bottom:943.319623px;}
.yf5{bottom:945.119622px;}
.y8e{bottom:951.599619px;}
.y31{bottom:953.579619px;}
.y11a{bottom:964.019614px;}
.yf4{bottom:965.819614px;}
.y2{bottom:966.359613px;}
.y8d{bottom:970.679612px;}
.y30{bottom:974.279610px;}
.y12d{bottom:984.719606px;}
.yf3{bottom:986.519605px;}
.y8c{bottom:991.199604px;}
.y1{bottom:993.899602px;}
.y58{bottom:994.979602px;}
.y12c{bottom:1005.419598px;}
.yf2{bottom:1007.219597px;}
.y8b{bottom:1011.899595px;}
.y2f{bottom:1015.679594px;}
.y12b{bottom:1026.119590px;}
.yf1{bottom:1027.919589px;}
.y8a{bottom:1032.599587px;}
.y2e{bottom:1036.379585px;}
.y12a{bottom:1046.819581px;}
.yf0{bottom:1048.619581px;}
.y89{bottom:1053.299579px;}
.y2d{bottom:1057.079577px;}
.y119{bottom:1067.519573px;}
.yef{bottom:1069.319572px;}
.y2c{bottom:1077.779569px;}
.y27{bottom:1080.299568px;}
.y28{bottom:1081.019568px;}
.y118{bottom:1088.219565px;}
.yee{bottom:1090.019564px;}
.y26{bottom:1097.399561px;}
.y2b{bottom:1098.479561px;}
.y167{bottom:1108.919556px;}
.y2a{bottom:1119.179552px;}
.y25{bottom:1120.259552px;}
.y166{bottom:1129.619548px;}
.y29{bottom:1139.879544px;}
.h9{height:31.319987px;}
.h10{height:33.912408px;}
.h8{height:34.462955px;}
.he{height:36.651079px;}
.hd{height:41.027327px;}
.h6{height:45.175662px;}
.hf{height:47.229101px;}
.h11{height:48.059981px;}
.h14{height:49.175980px;}
.hc{height:50.326855px;}
.h7{height:51.335979px;}
.h13{height:53.186379px;}
.h3{height:55.442858px;}
.h5{height:56.390377px;}
.h2{height:57.535897px;}
.ha{height:58.953576px;}
.h4{height:64.079974px;}
.h1{height:68.276853px;}
.h12{height:86.306365px;}
.hb{height:91.354182px;}
.h0{height:1263.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x11{left:126.539050px;}
.x1{left:127.799949px;}
.x7{left:136.619945px;}
.x12{left:150.300013px;}
.x5{left:163.799982px;}
.xe{left:171.179932px;}
.x2{left:178.559929px;}
.xf{left:187.199925px;}
.x8{left:190.619924px;}
.x10{left:212.761358px;}
.xd{left:215.457965px;}
.xb{left:221.039912px;}
.xc{left:228.239906px;}
.x6{left:291.780578px;}
.xa{left:301.139849px;}
.x9{left:371.519851px;}
.x13{left:428.578970px;}
.x3{left:434.339826px;}
.x4{left:511.199796px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:29.439988pt;}
.ls2{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.009440pt;}
.ls5{letter-spacing:0.009459pt;}
.ls1{letter-spacing:0.017667pt;}
.ls8{letter-spacing:0.018878pt;}
.ls7{letter-spacing:0.018880pt;}
.ls4{letter-spacing:0.018917pt;}
.ls0{letter-spacing:0.085989pt;}
.ls3{letter-spacing:2.570932pt;}
.ws4{word-spacing:-37.621745pt;}
.ws2{word-spacing:-37.205974pt;}
.wsa{word-spacing:-16.018911pt;}
.wsb{word-spacing:-16.018872pt;}
.ws0{word-spacing:-15.999994pt;}
.ws3{word-spacing:-14.737661pt;}
.ws6{word-spacing:-14.719994pt;}
.ws1{word-spacing:-14.079994pt;}
.ws5{word-spacing:0.000000pt;}
.ws8{word-spacing:237.099656pt;}
.ws9{word-spacing:291.149010pt;}
.ws7{word-spacing:628.108037pt;}
._2f{margin-left:-8.233369pt;}
._10{margin-left:-7.315000pt;}
._30{margin-left:-6.363092pt;}
._4{margin-left:-5.466031pt;}
._24{margin-left:-4.575868pt;}
._3{margin-left:-3.676528pt;}
._2{margin-left:-2.455382pt;}
._1{margin-left:-0.938363pt;}
._0{width:0.939257pt;}
._d{width:1.893641pt;}
._c{width:2.793693pt;}
._5{width:3.779258pt;}
._6{width:5.177859pt;}
._8{width:6.888903pt;}
._7{width:7.981592pt;}
._9{width:9.072454pt;}
._a{width:9.998548pt;}
._b{width:11.605506pt;}
._e{width:13.055321pt;}
._14{width:14.391567pt;}
._12{width:16.934365pt;}
._11{width:17.948643pt;}
._17{width:19.235164pt;}
._13{width:20.303843pt;}
._15{width:21.224892pt;}
._21{width:23.011536pt;}
._f{width:23.900952pt;}
._3a{width:27.388520pt;}
._20{width:29.914841pt;}
._38{width:31.274583pt;}
._3e{width:32.498609pt;}
._40{width:33.403715pt;}
._22{width:34.581326pt;}
._31{width:37.299350pt;}
._35{width:38.644609pt;}
._23{width:41.945771pt;}
._3b{width:43.454245pt;}
._27{width:45.529707pt;}
._25{width:46.426324pt;}
._28{width:47.438488pt;}
._3d{width:48.418747pt;}
._39{width:62.077219pt;}
._3f{width:64.295362pt;}
._32{width:74.946251pt;}
._2d{width:78.829087pt;}
._2e{width:80.098510pt;}
._26{width:91.612005pt;}
._3c{width:95.783726pt;}
._2a{width:105.117267pt;}
._29{width:106.273444pt;}
._16{width:126.172724pt;}
._33{width:157.708078pt;}
._2c{width:159.647012pt;}
._36{width:197.833368pt;}
._2b{width:211.210055pt;}
._1f{width:275.731285pt;}
._34{width:316.437932pt;}
._1a{width:323.341247pt;}
._37{width:395.252841pt;}
._18{width:397.905852pt;}
._1e{width:414.047885pt;}
._1b{width:490.806725pt;}
._1d{width:494.994288pt;}
._19{width:525.840184pt;}
._1c{width:526.955164pt;}
.fs6{font-size:37.119985pt;}
.fs5{font-size:40.319984pt;}
.fsa{font-size:42.879983pt;}
.fsb{font-size:44.159982pt;}
.fs9{font-size:47.999981pt;}
.fsc{font-size:53.119979pt;}
.fs4{font-size:56.319977pt;}
.fs7{font-size:58.879976pt;}
.fs3{font-size:63.999974pt;}
.fs2{font-size:69.119972pt;}
.fs1{font-size:74.879970pt;}
.fs0{font-size:85.119966pt;}
.fs8{font-size:106.879957pt;}
.y0{bottom:0.000000pt;}
.y24{bottom:50.506913pt;}
.y23{bottom:66.186907pt;}
.y22{bottom:77.546902pt;}
.y57{bottom:102.506626pt;}
.y7e{bottom:104.106625pt;}
.y15e{bottom:104.906625pt;}
.y21{bottom:107.626624pt;}
.y17f{bottom:111.626622pt;}
.ycf{bottom:112.586622pt;}
.y163{bottom:113.386621pt;}
.yb3{bottom:115.466620pt;}
.yed{bottom:118.986619pt;}
.y56{bottom:120.906618pt;}
.y7d{bottom:122.506618pt;}
.y15d{bottom:123.306617pt;}
.y117{bottom:125.866616pt;}
.y20{bottom:126.026616pt;}
.y17e{bottom:130.026615pt;}
.yce{bottom:130.986614pt;}
.y162{bottom:131.786614pt;}
.y149{bottom:133.386613pt;}
.yb2{bottom:133.866613pt;}
.yec{bottom:137.386612pt;}
.y55{bottom:139.306611pt;}
.y7c{bottom:140.906610pt;}
.y116{bottom:144.266609pt;}
.y1f{bottom:144.426609pt;}
.y177{bottom:148.426607pt;}
.ycd{bottom:149.386607pt;}
.y161{bottom:150.186607pt;}
.y15c{bottom:150.826606pt;}
.y148{bottom:151.786606pt;}
.yb1{bottom:152.266606pt;}
.y186{bottom:152.746606pt;}
.yeb{bottom:155.786604pt;}
.y54{bottom:157.706604pt;}
.y7b{bottom:159.306603pt;}
.y115{bottom:162.666602pt;}
.y1e{bottom:162.826602pt;}
.y16f{bottom:166.826600pt;}
.ycc{bottom:167.786600pt;}
.y160{bottom:168.586599pt;}
.y15b{bottom:169.226599pt;}
.y185{bottom:169.706599pt;}
.y147{bottom:170.186599pt;}
.yb0{bottom:170.666598pt;}
.yea{bottom:174.186597pt;}
.y53{bottom:176.106596pt;}
.y7a{bottom:177.706596pt;}
.y114{bottom:181.066594pt;}
.y1d{bottom:181.226594pt;}
.y16e{bottom:185.226593pt;}
.ycb{bottom:186.186592pt;}
.y184{bottom:186.506592pt;}
.y165{bottom:186.986592pt;}
.y15a{bottom:187.626592pt;}
.y146{bottom:188.586591pt;}
.yaf{bottom:189.066591pt;}
.ye9{bottom:192.586590pt;}
.y52{bottom:194.506589pt;}
.y79{bottom:196.106588pt;}
.y183{bottom:203.466585pt;}
.y176{bottom:203.626585pt;}
.yca{bottom:204.586585pt;}
.y129{bottom:205.386585pt;}
.y159{bottom:206.026584pt;}
.y145{bottom:206.986584pt;}
.yae{bottom:207.466584pt;}
.y113{bottom:208.586583pt;}
.ye8{bottom:210.986582pt;}
.y51{bottom:212.906582pt;}
.y78{bottom:214.506581pt;}
.y1c{bottom:218.026579pt;}
.y182{bottom:220.266579pt;}
.y175{bottom:222.026578pt;}
.yc9{bottom:222.986577pt;}
.y128{bottom:223.786577pt;}
.y158{bottom:224.426577pt;}
.y112{bottom:226.986576pt;}
.ye7{bottom:229.386575pt;}
.y50{bottom:231.306574pt;}
.y77{bottom:232.906574pt;}
.y144{bottom:234.666573pt;}
.y1b{bottom:236.426572pt;}
.y181{bottom:237.066572pt;}
.y17d{bottom:240.426570pt;}
.yc8{bottom:241.386570pt;}
.y127{bottom:242.186570pt;}
.yad{bottom:244.906569pt;}
.y111{bottom:245.386569pt;}
.ye6{bottom:247.786568pt;}
.y4f{bottom:249.706567pt;}
.y76{bottom:251.306566pt;}
.y157{bottom:252.106566pt;}
.y143{bottom:253.066565pt;}
.y17c{bottom:258.826563pt;}
.yc7{bottom:259.786563pt;}
.y126{bottom:260.586562pt;}
.y110{bottom:263.786561pt;}
.yac{bottom:263.946561pt;}
.ye5{bottom:266.186560pt;}
.y4e{bottom:268.106559pt;}
.y75{bottom:269.706559pt;}
.y156{bottom:270.506558pt;}
.y180{bottom:271.146558pt;}
.y142{bottom:271.466558pt;}
.y1a{bottom:273.226557pt;}
.y17b{bottom:277.226556pt;}
.yc6{bottom:278.186555pt;}
.y125{bottom:278.986555pt;}
.yab{bottom:280.906554pt;}
.y10f{bottom:282.186554pt;}
.ye4{bottom:284.586553pt;}
.y4d{bottom:286.506552pt;}
.y74{bottom:288.106551pt;}
.y155{bottom:288.906551pt;}
.y141{bottom:289.866551pt;}
.y19{bottom:291.626550pt;}
.y16d{bottom:295.626548pt;}
.yc5{bottom:296.586548pt;}
.y15f{bottom:297.386548pt;}
.yaa{bottom:299.306547pt;}
.ye3{bottom:302.986545pt;}
.y4c{bottom:304.906545pt;}
.y73{bottom:306.506544pt;}
.y140{bottom:308.266543pt;}
.y10e{bottom:309.866543pt;}
.y18{bottom:310.026543pt;}
.y16c{bottom:314.026541pt;}
.yc4{bottom:314.986541pt;}
.y174{bottom:315.786540pt;}
.y154{bottom:316.426540pt;}
.y4b{bottom:323.306537pt;}
.y72{bottom:324.906537pt;}
.y13f{bottom:326.666536pt;}
.y10d{bottom:328.266535pt;}
.y17{bottom:328.426535pt;}
.y16b{bottom:332.426534pt;}
.ya9{bottom:333.066533pt;}
.yc3{bottom:333.386533pt;}
.y173{bottom:334.186533pt;}
.y153{bottom:334.826533pt;}
.ye2{bottom:338.986531pt;}
.y4a{bottom:341.706530pt;}
.y71{bottom:343.306529pt;}
.y13e{bottom:345.066529pt;}
.y10c{bottom:346.666528pt;}
.y16{bottom:346.826528pt;}
.ya8{bottom:349.866527pt;}
.y16a{bottom:350.826526pt;}
.yc2{bottom:351.786526pt;}
.y172{bottom:352.586526pt;}
.y49{bottom:360.106523pt;}
.y70{bottom:361.706522pt;}
.y152{bottom:362.506522pt;}
.y13d{bottom:363.466521pt;}
.y10b{bottom:365.066521pt;}
.y15{bottom:365.226521pt;}
.ye1{bottom:365.866520pt;}
.ya7{bottom:368.266519pt;}
.y88{bottom:369.226519pt;}
.yc1{bottom:370.186519pt;}
.y171{bottom:370.986518pt;}
.y48{bottom:378.506515pt;}
.y6f{bottom:380.106515pt;}
.y151{bottom:380.906514pt;}
.y13c{bottom:381.866514pt;}
.y14{bottom:383.626513pt;}
.ya6{bottom:385.066513pt;}
.y169{bottom:387.626512pt;}
.yc0{bottom:388.586511pt;}
.y170{bottom:389.386511pt;}
.y10a{bottom:390.986510pt;}
.y47{bottom:396.906508pt;}
.ye0{bottom:397.226508pt;}
.y6e{bottom:398.506507pt;}
.y13{bottom:402.026506pt;}
.ya5{bottom:403.466505pt;}
.y87{bottom:406.026504pt;}
.ybf{bottom:406.986504pt;}
.y124{bottom:407.786504pt;}
.y150{bottom:408.426503pt;}
.y46{bottom:415.306501pt;}
.y6d{bottom:416.906500pt;}
.ya4{bottom:420.266499pt;}
.y12{bottom:420.426498pt;}
.y86{bottom:424.426497pt;}
.ybe{bottom:425.386497pt;}
.y123{bottom:426.186496pt;}
.y14f{bottom:426.826496pt;}
.y109{bottom:427.786496pt;}
.ydf{bottom:428.746495pt;}
.y45{bottom:433.706493pt;}
.y6c{bottom:435.306493pt;}
.ya3{bottom:438.666491pt;}
.y11{bottom:438.826491pt;}
.y85{bottom:442.826490pt;}
.ybd{bottom:443.786489pt;}
.y122{bottom:444.586489pt;}
.y108{bottom:446.186488pt;}
.y44{bottom:452.106486pt;}
.y6b{bottom:453.706485pt;}
.y14e{bottom:454.506485pt;}
.ya2{bottom:457.066484pt;}
.y10{bottom:457.226484pt;}
.yde{bottom:460.266483pt;}
.y84{bottom:461.226482pt;}
.ybc{bottom:462.186482pt;}
.y121{bottom:462.986481pt;}
.y107{bottom:464.586481pt;}
.y43{bottom:470.506478pt;}
.y6a{bottom:472.106478pt;}
.y14d{bottom:472.906478pt;}
.ya1{bottom:475.306477pt;}
.yf{bottom:475.626476pt;}
.y83{bottom:479.626475pt;}
.ybb{bottom:480.586474pt;}
.y120{bottom:481.386474pt;}
.y106{bottom:482.986473pt;}
.ydd{bottom:484.266473pt;}
.y42{bottom:488.906471pt;}
.y69{bottom:490.506470pt;}
.ya0{bottom:492.266470pt;}
.ye{bottom:494.026469pt;}
.y82{bottom:498.026467pt;}
.yba{bottom:498.986467pt;}
.y11f{bottom:499.786467pt;}
.y14c{bottom:500.426466pt;}
.y105{bottom:501.386466pt;}
.y41{bottom:507.306464pt;}
.y68{bottom:508.906463pt;}
.y9f{bottom:509.066463pt;}
.ydc{bottom:515.466460pt;}
.y81{bottom:516.426460pt;}
.y11e{bottom:518.186459pt;}
.y14b{bottom:518.826459pt;}
.y104{bottom:519.786459pt;}
.y40{bottom:525.706456pt;}
.y67{bottom:527.306456pt;}
.y9e{bottom:527.466456pt;}
.y80{bottom:534.826453pt;}
.yb9{bottom:536.586452pt;}
.ydb{bottom:537.226452pt;}
.y3f{bottom:544.106449pt;}
.y9d{bottom:544.266449pt;}
.y164{bottom:545.706448pt;}
.yd{bottom:546.666448pt;}
.y103{bottom:547.466448pt;}
.y66{bottom:553.226445pt;}
.y13b{bottom:554.986445pt;}
.yb8{bottom:555.626444pt;}
.y9c{bottom:561.066442pt;}
.y3e{bottom:562.506442pt;}
.yc{bottom:562.666442pt;}
.y17a{bottom:564.106441pt;}
.y102{bottom:565.866440pt;}
.y7f{bottom:571.626438pt;}
.yb7{bottom:572.586438pt;}
.y13a{bottom:573.386437pt;}
.yda{bottom:574.026437pt;}
.yb{bottom:578.826435pt;}
.y9b{bottom:579.466435pt;}
.y3d{bottom:580.906434pt;}
.y179{bottom:582.506434pt;}
.y101{bottom:584.266433pt;}
.yb6{bottom:589.546431pt;}
.y65{bottom:590.026431pt;}
.y139{bottom:591.786430pt;}
.yd9{bottom:592.426430pt;}
.ya{bottom:594.986429pt;}
.y9a{bottom:597.866428pt;}
.y3c{bottom:599.306427pt;}
.y178{bottom:600.906426pt;}
.y100{bottom:602.666426pt;}
.yb5{bottom:606.506424pt;}
.y64{bottom:608.426423pt;}
.y138{bottom:610.186423pt;}
.yd8{bottom:610.826422pt;}
.y99{bottom:614.666421pt;}
.y3b{bottom:617.706420pt;}
.yff{bottom:621.066418pt;}
.yb4{bottom:623.466417pt;}
.y9{bottom:626.506416pt;}
.y63{bottom:626.826416pt;}
.y137{bottom:628.586415pt;}
.yd7{bottom:629.226415pt;}
.y98{bottom:631.466414pt;}
.y3a{bottom:636.106412pt;}
.y8{bottom:642.666410pt;}
.y62{bottom:645.226409pt;}
.yd6{bottom:647.626408pt;}
.yfe{bottom:648.586407pt;}
.y97{bottom:649.866407pt;}
.y39{bottom:654.506405pt;}
.y14a{bottom:655.626404pt;}
.y136{bottom:656.106404pt;}
.y61{bottom:663.626401pt;}
.yd5{bottom:666.026400pt;}
.y96{bottom:666.666400pt;}
.yfd{bottom:666.986400pt;}
.y38{bottom:672.906398pt;}
.y135{bottom:674.506397pt;}
.y60{bottom:682.026394pt;}
.yd4{bottom:684.426393pt;}
.y95{bottom:685.066393pt;}
.yfc{bottom:685.386393pt;}
.y37{bottom:691.306390pt;}
.y134{bottom:692.906390pt;}
.y7{bottom:693.706389pt;}
.y5f{bottom:700.426386pt;}
.y94{bottom:701.866386pt;}
.yd3{bottom:702.826386pt;}
.yfb{bottom:703.786385pt;}
.y36{bottom:709.706383pt;}
.y6{bottom:712.106382pt;}
.y5e{bottom:718.826379pt;}
.y93{bottom:720.266379pt;}
.y133{bottom:720.586378pt;}
.yd2{bottom:721.226378pt;}
.yfa{bottom:722.186378pt;}
.y35{bottom:728.106375pt;}
.y5{bottom:730.826374pt;}
.y5d{bottom:737.226372pt;}
.y132{bottom:738.986371pt;}
.yd1{bottom:739.626371pt;}
.y34{bottom:746.506368pt;}
.yf9{bottom:748.106367pt;}
.y5c{bottom:755.626364pt;}
.y131{bottom:757.386364pt;}
.y33{bottom:764.906361pt;}
.yd0{bottom:766.026360pt;}
.y92{bottom:773.866357pt;}
.y5b{bottom:774.026357pt;}
.y130{bottom:775.786356pt;}
.y168{bottom:783.306353pt;}
.yf8{bottom:784.906353pt;}
.y4{bottom:790.826350pt;}
.y91{bottom:792.266350pt;}
.y32{bottom:792.426350pt;}
.y12f{bottom:794.186349pt;}
.y11d{bottom:801.706346pt;}
.yf7{bottom:803.306345pt;}
.y90{bottom:810.666342pt;}
.y5a{bottom:810.826342pt;}
.y3{bottom:812.266342pt;}
.y12e{bottom:812.586342pt;}
.y11c{bottom:820.106339pt;}
.yf6{bottom:821.706338pt;}
.y8f{bottom:829.066335pt;}
.y59{bottom:829.226335pt;}
.y11b{bottom:838.506331pt;}
.yf5{bottom:840.106331pt;}
.y8e{bottom:845.866328pt;}
.y31{bottom:847.626328pt;}
.y11a{bottom:856.906324pt;}
.yf4{bottom:858.506323pt;}
.y2{bottom:858.986323pt;}
.y8d{bottom:862.826322pt;}
.y30{bottom:866.026320pt;}
.y12d{bottom:875.306317pt;}
.yf3{bottom:876.906316pt;}
.y8c{bottom:881.066314pt;}
.y1{bottom:883.466313pt;}
.y58{bottom:884.426313pt;}
.y12c{bottom:893.706309pt;}
.yf2{bottom:895.306309pt;}
.y8b{bottom:899.466307pt;}
.y2f{bottom:902.826306pt;}
.y12b{bottom:912.106302pt;}
.yf1{bottom:913.706301pt;}
.y8a{bottom:917.866300pt;}
.y2e{bottom:921.226298pt;}
.y12a{bottom:930.506294pt;}
.yf0{bottom:932.106294pt;}
.y89{bottom:936.266292pt;}
.y2d{bottom:939.626291pt;}
.y119{bottom:948.906287pt;}
.yef{bottom:950.506286pt;}
.y2c{bottom:958.026283pt;}
.y27{bottom:960.266283pt;}
.y28{bottom:960.906282pt;}
.y118{bottom:967.306280pt;}
.yee{bottom:968.906279pt;}
.y26{bottom:975.466276pt;}
.y2b{bottom:976.426276pt;}
.y167{bottom:985.706272pt;}
.y2a{bottom:994.826269pt;}
.y25{bottom:995.786268pt;}
.y166{bottom:1004.106265pt;}
.y29{bottom:1013.226261pt;}
.h9{height:27.839989pt;}
.h10{height:30.144363pt;}
.h8{height:30.633738pt;}
.he{height:32.578737pt;}
.hd{height:36.468735pt;}
.h6{height:40.156144pt;}
.hf{height:41.981423pt;}
.h11{height:42.719983pt;}
.h14{height:43.711983pt;}
.hc{height:44.734982pt;}
.h7{height:45.631982pt;}
.h13{height:47.276781pt;}
.h3{height:49.282540pt;}
.h5{height:50.124780pt;}
.h2{height:51.143020pt;}
.ha{height:52.403179pt;}
.h4{height:56.959977pt;}
.h1{height:60.690536pt;}
.h12{height:76.716769pt;}
.hb{height:81.203718pt;}
.h0{height:1122.666667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x11{left:112.479155pt;}
.x1{left:113.599955pt;}
.x7{left:121.439951pt;}
.x12{left:133.600012pt;}
.x5{left:145.599984pt;}
.xe{left:152.159939pt;}
.x2{left:158.719937pt;}
.xf{left:166.399933pt;}
.x8{left:169.439932pt;}
.x10{left:189.121207pt;}
.xd{left:191.518191pt;}
.xb{left:196.479921pt;}
.xc{left:202.879916pt;}
.x6{left:259.360513pt;}
.xa{left:267.679865pt;}
.x9{left:330.239868pt;}
.x13{left:380.959085pt;}
.x3{left:386.079846pt;}
.x4{left:454.399818pt;}
}




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