
    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_f4fc0be1c0dfef804863014f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.002930;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_622b041b7c0a35b78607dd47.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_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_1e2ad2cabbb980ec264dae6e.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.677734;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_ab5738f08496b04e0e1916c2.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_c94ad9ef339af7f088166f2e.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.862793;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_5db73ccb53cfeddc6d6a5111.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{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);}
.m5{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);}
.m3{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);}
.m0{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);}
.m4{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);}
.m6{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);}
.m2{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;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:6.440877px;}
.ls4{letter-spacing:31.094448px;}
.ls3{letter-spacing:37.058690px;}
.ls1{letter-spacing:41.381026px;}
.ls5{letter-spacing:73.800647px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(255,0,0),0 0.015em rgb(255,0,0),0.015em 0 rgb(255,0,0),0 -0.015em  rgb(255,0,0);}
.sc3{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc1{text-shadow:-0.015em 0 rgb(0,21,136),0 0.015em rgb(0,21,136),0.015em 0 rgb(0,21,136),0 -0.015em  rgb(0,21,136);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(255,0,0);text-shadow:none;}
.sc3{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,21,136);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-14.970234px;}
.ws0{word-spacing:-13.505755px;}
.ws2{word-spacing:0.000000px;}
._6{margin-left:-6.078741px;}
._3{margin-left:-4.948523px;}
._1{margin-left:-2.246029px;}
._0{margin-left:-1.025791px;}
._2{width:1.214787px;}
._5{width:2.621538px;}
._4{width:3.882673px;}
._8{width:5.152312px;}
._7{width:6.475365px;}
._9{width:7.638832px;}
._e{width:9.495899px;}
._d{width:10.698734px;}
._a{width:12.045786px;}
._c{width:13.885227px;}
._b{width:16.057512px;}
._11{width:17.672793px;}
._13{width:19.217589px;}
._12{width:21.019888px;}
._15{width:22.142742px;}
._10{width:23.290001px;}
._f{width:24.310066px;}
._14{width:25.460645px;}
._17{width:27.401693px;}
._16{width:29.055250px;}
._1a{width:31.107902px;}
._1b{width:32.376829px;}
._26{width:33.555685px;}
._1c{width:34.628354px;}
._21{width:36.580563px;}
._1e{width:40.391905px;}
._2a{width:42.901704px;}
._25{width:43.987608px;}
._23{width:47.606825px;}
._2c{width:53.416314px;}
._24{width:54.604609px;}
._27{width:58.206847px;}
._1f{width:60.193169px;}
._22{width:73.146844px;}
._2d{width:82.957301px;}
._2e{width:84.466319px;}
._20{width:92.503289px;}
._1d{width:132.086942px;}
._28{width:364.679471px;}
._18{width:383.812379px;}
._29{width:575.482209px;}
._19{width:672.611808px;}
._2b{width:987.185845px;}
.fc3{color:transparent;}
.fc2{color:rgb(255,0,0);}
.fc4{color:rgb(255,255,255);}
.fc1{color:rgb(0,21,136);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:38.879984px;}
.fs3{font-size:41.759983px;}
.fs1{font-size:45.359982px;}
.fs6{font-size:53.999978px;}
.fs5{font-size:59.759976px;}
.fs0{font-size:66.239974px;}
.fs2{font-size:84.239966px;}
.y0{bottom:0.000000px;}
.y4{bottom:2.878920px;}
.y2{bottom:4.498930px;}
.y9{bottom:30.900288px;}
.y8{bottom:49.440280px;}
.yae{bottom:90.119964px;}
.y37{bottom:99.659960px;}
.yad{bottom:110.279956px;}
.y8c{bottom:118.199953px;}
.y145{bottom:118.200253px;}
.y36{bottom:119.819952px;}
.ye3{bottom:126.839949px;}
.y11e{bottom:128.279949px;}
.y163{bottom:128.819948px;}
.yac{bottom:130.439948px;}
.y8b{bottom:138.359945px;}
.y35{bottom:139.979944px;}
.ye2{bottom:146.819941px;}
.y144{bottom:147.180241px;}
.y11d{bottom:148.439941px;}
.y162{bottom:148.979940px;}
.y64{bottom:149.339940px;}
.yab{bottom:150.419940px;}
.y106{bottom:153.299939px;}
.y8a{bottom:158.339937px;}
.y34{bottom:160.139936px;}
.ye1{bottom:166.979933px;}
.ybc{bottom:167.339933px;}
.y11c{bottom:168.419933px;}
.y63{bottom:169.499932px;}
.y161{bottom:178.139929px;}
.y89{bottom:178.499929px;}
.yaa{bottom:179.579928px;}
.y105{bottom:182.459927px;}
.y143{bottom:185.519926px;}
.ye0{bottom:187.139925px;}
.ybb{bottom:187.499925px;}
.y11b{bottom:188.579925px;}
.y33{bottom:189.119924px;}
.y62{bottom:189.659924px;}
.y160{bottom:198.299921px;}
.y88{bottom:198.659921px;}
.ya9{bottom:199.739920px;}
.ydf{bottom:207.299917px;}
.yba{bottom:207.659917px;}
.y11a{bottom:208.739917px;}
.y61{bottom:209.819916px;}
.y104{bottom:211.619915px;}
.y142{bottom:214.679914px;}
.y87{bottom:218.819912px;}
.ya8{bottom:219.899912px;}
.y32{bottom:227.459909px;}
.yb9{bottom:227.819909px;}
.y60{bottom:229.979908px;}
.y103{bottom:231.779907px;}
.y141{bottom:234.839906px;}
.yde{bottom:236.459905px;}
.y119{bottom:237.899905px;}
.y86{bottom:238.979904px;}
.ya7{bottom:240.059904px;}
.y15f{bottom:247.619901px;}
.yb8{bottom:247.979901px;}
.y140{bottom:254.999898px;}
.y31{bottom:256.439897px;}
.ydd{bottom:256.619897px;}
.y118{bottom:258.059897px;}
.y5f{bottom:259.139896px;}
.y102{bottom:260.939896px;}
.y15e{bottom:267.599893px;}
.yb7{bottom:268.139893px;}
.ya6{bottom:270.659892px;}
.y13f{bottom:275.159890px;}
.y30{bottom:276.419889px;}
.ydc{bottom:276.779889px;}
.y117{bottom:278.219889px;}
.y5e{bottom:279.299888px;}
.y101{bottom:281.099888px;}
.yb6{bottom:288.299885px;}
.y13e{bottom:295.319882px;}
.y15d{bottom:296.759881px;}
.ydb{bottom:296.939881px;}
.y116{bottom:298.379881px;}
.y5d{bottom:299.459880px;}
.ya5{bottom:299.999880px;}
.y100{bottom:301.259879px;}
.y2f{bottom:305.759878px;}
.yb5{bottom:308.459877px;}
.y15c{bottom:316.919873px;}
.yda{bottom:317.099873px;}
.y115{bottom:318.539873px;}
.y5c{bottom:319.619872px;}
.yff{bottom:321.419871px;}
.y13d{bottom:324.119870px;}
.y2e{bottom:325.919870px;}
.yb4{bottom:328.619869px;}
.ya4{bottom:329.159868px;}
.y15b{bottom:337.079865px;}
.y114{bottom:338.699865px;}
.y85{bottom:339.599864px;}
.yfe{bottom:341.579863px;}
.y2d{bottom:346.079862px;}
.y5b{bottom:348.599861px;}
.ya3{bottom:349.319860px;}
.y15a{bottom:357.239857px;}
.y84{bottom:359.759856px;}
.y13c{bottom:362.459855px;}
.y2c{bottom:366.239854px;}
.y113{bottom:367.859853px;}
.y5a{bottom:368.759852px;}
.yfd{bottom:372.179851px;}
.ya2{bottom:378.299849px;}
.y83{bottom:379.919848px;}
.yd9{bottom:384.239846px;}
.y159{bottom:386.399845px;}
.y112{bottom:387.839845px;}
.y59{bottom:388.919844px;}
.y13b{bottom:391.619843px;}
.y2b{bottom:395.399842px;}
.yb3{bottom:397.919841px;}
.ya1{bottom:398.459841px;}
.y82{bottom:400.079840px;}
.yfc{bottom:401.339839px;}
.y158{bottom:406.559837px;}
.y111{bottom:407.999837px;}
.y58{bottom:409.079836px;}
.y13a{bottom:411.779835px;}
.yd8{bottom:412.499835px;}
.y2a{bottom:415.559834px;}
.yb2{bottom:418.079833px;}
.ya0{bottom:418.619833px;}
.y81{bottom:420.239832px;}
.y110{bottom:428.159829px;}
.yd7{bottom:428.879828px;}
.y57{bottom:429.239828px;}
.yfb{bottom:430.319828px;}
.y139{bottom:431.939827px;}
.y29{bottom:435.719826px;}
.yb1{bottom:438.239825px;}
.y9f{bottom:438.779824px;}
.y80{bottom:440.399824px;}
.y10f{bottom:448.319821px;}
.y138{bottom:452.099819px;}
.yd6{bottom:455.519818px;}
.y28{bottom:455.879818px;}
.y56{bottom:458.399817px;}
.y9e{bottom:458.939816px;}
.y7f{bottom:460.559816px;}
.y157{bottom:464.879814px;}
.yfa{bottom:468.659813px;}
.y137{bottom:472.259811px;}
.yd5{bottom:473.879810px;}
.y55{bottom:478.559809px;}
.y10e{bottom:478.919808px;}
.y9d{bottom:479.099808px;}
.y7e{bottom:480.719808px;}
.y27{bottom:485.039806px;}
.yd4{bottom:492.239803px;}
.yf9{bottom:496.919801px;}
.y54{bottom:498.719801px;}
.y9c{bottom:499.259800px;}
.y10d{bottom:500.699800px;}
.y7d{bottom:500.879800px;}
.y136{bottom:501.419799px;}
.y26{bottom:505.019798px;}
.yd3{bottom:510.599796px;}
.yf8{bottom:513.119795px;}
.y156{bottom:514.019794px;}
.y53{bottom:518.879792px;}
.y9b{bottom:519.419792px;}
.y7c{bottom:521.039792px;}
.y135{bottom:521.579791px;}
.y25{bottom:525.179790px;}
.yd2{bottom:528.779788px;}
.y10c{bottom:530.039788px;}
.y155{bottom:534.179786px;}
.y9a{bottom:539.579784px;}
.y7b{bottom:541.019784px;}
.y134{bottom:541.739783px;}
.y24{bottom:545.339782px;}
.yd1{bottom:547.139781px;}
.y52{bottom:548.039781px;}
.yf7{bottom:548.939780px;}
.y10b{bottom:559.019776px;}
.y99{bottom:559.739776px;}
.y7a{bottom:561.179776px;}
.y133{bottom:561.719775px;}
.y154{bottom:563.339775px;}
.yd0{bottom:566.219774px;}
.yf6{bottom:567.299773px;}
.y51{bottom:568.019773px;}
.y23{bottom:574.499770px;}
.y10a{bottom:579.179768px;}
.y98{bottom:579.719768px;}
.y79{bottom:581.339767px;}
.y132{bottom:581.879767px;}
.y153{bottom:583.499767px;}
.ycf{bottom:584.579766px;}
.yf5{bottom:585.659766px;}
.y50{bottom:588.179765px;}
.y109{bottom:599.339760px;}
.y97{bottom:599.879760px;}
.y131{bottom:602.039759px;}
.yce{bottom:602.759759px;}
.y22{bottom:602.939759px;}
.yf4{bottom:604.739758px;}
.y4f{bottom:608.339757px;}
.y78{bottom:610.499756px;}
.y152{bottom:612.659755px;}
.y96{bottom:620.039752px;}
.ycd{bottom:621.119752px;}
.y130{bottom:622.199751px;}
.yf3{bottom:622.919751px;}
.y4e{bottom:628.499749px;}
.y77{bottom:630.659748px;}
.y21{bottom:630.839748px;}
.y151{bottom:632.819747px;}
.ycc{bottom:639.479744px;}
.y95{bottom:640.199744px;}
.yf2{bottom:641.279743px;}
.y4d{bottom:648.659741px;}
.y76{bottom:650.819740px;}
.y20{bottom:650.999740px;}
.y12f{bottom:651.179740px;}
.ycb{bottom:657.839737px;}
.yf1{bottom:659.639736px;}
.y150{bottom:661.979735px;}
.y4c{bottom:668.819732px;}
.y94{bottom:670.799732px;}
.y75{bottom:670.979732px;}
.yca{bottom:676.739729px;}
.yf0{bottom:677.819729px;}
.y1f{bottom:680.339728px;}
.y14f{bottom:682.139727px;}
.y108{bottom:688.979724px;}
.y12e{bottom:689.519724px;}
.yc9{bottom:695.099722px;}
.yef{bottom:696.899721px;}
.y4b{bottom:697.979721px;}
.y74{bottom:700.139720px;}
.y1e{bottom:700.319720px;}
.y14e{bottom:702.299719px;}
.y107{bottom:709.139716px;}
.yc8{bottom:713.459715px;}
.yee{bottom:715.259714px;}
.y4a{bottom:718.139713px;}
.y12d{bottom:718.679713px;}
.y73{bottom:720.299712px;}
.y1d{bottom:720.479712px;}
.y93{bottom:729.299708px;}
.y14d{bottom:731.459707px;}
.yc7{bottom:731.819707px;}
.yed{bottom:733.619707px;}
.y49{bottom:738.299705px;}
.y12c{bottom:738.839704px;}
.y72{bottom:740.459704px;}
.y1c{bottom:740.639704px;}
.y168{bottom:742.439703px;}
.y92{bottom:749.459700px;}
.yc6{bottom:749.999700px;}
.y14c{bottom:751.439699px;}
.yec{bottom:751.979699px;}
.y48{bottom:758.459697px;}
.y12b{bottom:758.999696px;}
.y71{bottom:760.439696px;}
.y1b{bottom:760.799696px;}
.y167{bottom:762.599695px;}
.yc5{bottom:769.079692px;}
.y91{bottom:769.439692px;}
.yeb{bottom:770.159692px;}
.y47{bottom:778.439689px;}
.y12a{bottom:778.979688px;}
.y70{bottom:780.599688px;}
.yc4{bottom:787.439685px;}
.yea{bottom:789.239684px;}
.y90{bottom:789.599684px;}
.y1a{bottom:789.959684px;}
.y166{bottom:791.759683px;}
.y46{bottom:798.599681px;}
.y6f{bottom:800.759680px;}
.yc3{bottom:805.799678px;}
.ye9{bottom:807.599677px;}
.y129{bottom:808.139677px;}
.y19{bottom:810.119676px;}
.y165{bottom:811.919675px;}
.y45{bottom:818.759672px;}
.y6e{bottom:820.919672px;}
.yc2{bottom:823.979670px;}
.ye8{bottom:825.959670px;}
.y128{bottom:828.299669px;}
.y18{bottom:830.279668px;}
.y44{bottom:838.919664px;}
.y6d{bottom:841.079664px;}
.yc1{bottom:842.339663px;}
.ye7{bottom:844.139662px;}
.y127{bottom:848.459661px;}
.y14b{bottom:850.079660px;}
.y17{bottom:850.439660px;}
.y43{bottom:859.079656px;}
.yc0{bottom:860.699656px;}
.y6c{bottom:861.239656px;}
.ye6{bottom:862.499655px;}
.y126{bottom:868.619653px;}
.y14a{bottom:870.239652px;}
.y42{bottom:879.239648px;}
.y16{bottom:879.599648px;}
.ybf{bottom:879.779648px;}
.ye5{bottom:880.859648px;}
.y6b{bottom:881.399647px;}
.y8f{bottom:888.239645px;}
.y125{bottom:888.779644px;}
.y149{bottom:890.399644px;}
.y41{bottom:899.399640px;}
.y15{bottom:899.759640px;}
.ye4{bottom:899.939640px;}
.y6a{bottom:901.559639px;}
.y8e{bottom:908.399637px;}
.y124{bottom:908.939636px;}
.y148{bottom:910.559636px;}
.y14{bottom:919.739632px;}
.y69{bottom:921.719631px;}
.y40{bottom:928.559629px;}
.y123{bottom:929.099628px;}
.y147{bottom:939.719624px;}
.y13{bottom:939.899624px;}
.y68{bottom:941.879623px;}
.y3f{bottom:948.719621px;}
.y122{bottom:949.259620px;}
.y146{bottom:959.879616px;}
.y12{bottom:960.059616px;}
.y67{bottom:961.859615px;}
.y3e{bottom:968.879612px;}
.y121{bottom:969.419612px;}
.y164{bottom:979.859608px;}
.y3d{bottom:988.859604px;}
.y11{bottom:989.219604px;}
.y120{bottom:989.399604px;}
.y66{bottom:990.839604px;}
.yb0{bottom:997.859601px;}
.y3c{bottom:1009.019596px;}
.y10{bottom:1017.659593px;}
.yaf{bottom:1018.019593px;}
.y11f{bottom:1019.999592px;}
.y65{bottom:1029.179588px;}
.yf{bottom:1036.199586px;}
.y3b{bottom:1038.179585px;}
.ye{bottom:1041.419583px;}
.y8d{bottom:1049.339580px;}
.y3a{bottom:1058.339577px;}
.yc{bottom:1064.099574px;}
.yd{bottom:1070.039572px;}
.ybe{bottom:1078.319569px;}
.y39{bottom:1078.499569px;}
.ya{bottom:1093.979562px;}
.yb{bottom:1094.159562px;}
.ybd{bottom:1098.479561px;}
.y38{bottom:1098.659561px;}
.y7{bottom:1150.499540px;}
.y1{bottom:1170.660600px;}
.y6{bottom:1171.739531px;}
.y5{bottom:1185.419526px;}
.y3{bottom:1196.220600px;}
.h3{height:13.680000px;}
.h1{height:20.340000px;}
.h7{height:32.064597px;}
.h6{height:34.439752px;}
.h4{height:37.408696px;}
.hf{height:38.759750px;}
.hc{height:40.909906px;}
.hd{height:42.894123px;}
.ha{height:44.149201px;}
.h9{height:49.284472px;}
.h2{height:54.628572px;}
.he{height:57.040290px;}
.h8{height:62.327788px;}
.h5{height:69.473293px;}
.hb{height:69.806222px;}
.h0{height:1263.000000px;}
.w1{width:0.180000px;}
.w3{width:3.420000px;}
.w4{width:152.280000px;}
.w2{width:352.980000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x7{left:84.959966px;}
.xc{left:89.819964px;}
.xd{left:112.139955px;}
.x11{left:119.159952px;}
.x1{left:253.620000px;}
.xa{left:285.479886px;}
.xb{left:290.699884px;}
.x2{left:299.160000px;}
.xe{left:334.979260px;}
.x5{left:443.339823px;}
.xf{left:563.399832px;}
.x10{left:584.998554px;}
.x3{left:652.140000px;}
.x4{left:655.560000px;}
.x6{left:671.039998px;}
.x9{left:761.939695px;}
.x12{left:796.499681px;}
.x8{left:802.079679px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:5.725224pt;}
.ls4{letter-spacing:27.639509pt;}
.ls3{letter-spacing:32.941058pt;}
.ls1{letter-spacing:36.783134pt;}
.ls5{letter-spacing:65.600575pt;}
.ws1{word-spacing:-13.306875pt;}
.ws0{word-spacing:-12.005115pt;}
.ws2{word-spacing:0.000000pt;}
._6{margin-left:-5.403325pt;}
._3{margin-left:-4.398687pt;}
._1{margin-left:-1.996470pt;}
._0{margin-left:-0.911814pt;}
._2{width:1.079810pt;}
._5{width:2.330256pt;}
._4{width:3.451265pt;}
._8{width:4.579833pt;}
._7{width:5.755880pt;}
._9{width:6.790073pt;}
._e{width:8.440799pt;}
._d{width:9.509986pt;}
._a{width:10.707365pt;}
._c{width:12.342424pt;}
._b{width:14.273344pt;}
._11{width:15.709149pt;}
._13{width:17.082301pt;}
._12{width:18.684345pt;}
._15{width:19.682437pt;}
._10{width:20.702223pt;}
._f{width:21.608948pt;}
._14{width:22.631685pt;}
._17{width:24.357061pt;}
._16{width:25.826889pt;}
._1a{width:27.651468pt;}
._1b{width:28.779403pt;}
._26{width:29.827275pt;}
._1c{width:30.780759pt;}
._21{width:32.516056pt;}
._1e{width:35.903915pt;}
._2a{width:38.134848pt;}
._25{width:39.100096pt;}
._23{width:42.317178pt;}
._2c{width:47.481168pt;}
._24{width:48.537431pt;}
._27{width:51.739419pt;}
._1f{width:53.505039pt;}
._22{width:65.019417pt;}
._2d{width:73.739823pt;}
._2e{width:75.081173pt;}
._20{width:82.225145pt;}
._1d{width:117.410615pt;}
._28{width:324.159530pt;}
._18{width:341.166559pt;}
._29{width:511.539741pt;}
._19{width:597.877163pt;}
._2b{width:877.498529pt;}
.fs4{font-size:34.559986pt;}
.fs3{font-size:37.119985pt;}
.fs1{font-size:40.319984pt;}
.fs6{font-size:47.999981pt;}
.fs5{font-size:53.119979pt;}
.fs0{font-size:58.879976pt;}
.fs2{font-size:74.879970pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:2.559040pt;}
.y2{bottom:3.999049pt;}
.y9{bottom:27.466922pt;}
.y8{bottom:43.946916pt;}
.yae{bottom:80.106635pt;}
.y37{bottom:88.586631pt;}
.yad{bottom:98.026627pt;}
.y8c{bottom:105.066625pt;}
.y145{bottom:105.066891pt;}
.y36{bottom:106.506624pt;}
.ye3{bottom:112.746622pt;}
.y11e{bottom:114.026621pt;}
.y163{bottom:114.506621pt;}
.yac{bottom:115.946620pt;}
.y8b{bottom:122.986617pt;}
.y35{bottom:124.426617pt;}
.ye2{bottom:130.506614pt;}
.y144{bottom:130.826881pt;}
.y11d{bottom:131.946614pt;}
.y162{bottom:132.426614pt;}
.y64{bottom:132.746614pt;}
.yab{bottom:133.706613pt;}
.y106{bottom:136.266612pt;}
.y8a{bottom:140.746610pt;}
.y34{bottom:142.346610pt;}
.ye1{bottom:148.426607pt;}
.ybc{bottom:148.746607pt;}
.y11c{bottom:149.706607pt;}
.y63{bottom:150.666606pt;}
.y161{bottom:158.346603pt;}
.y89{bottom:158.666603pt;}
.yaa{bottom:159.626603pt;}
.y105{bottom:162.186602pt;}
.y143{bottom:164.906601pt;}
.ye0{bottom:166.346600pt;}
.ybb{bottom:166.666600pt;}
.y11b{bottom:167.626600pt;}
.y33{bottom:168.106599pt;}
.y62{bottom:168.586599pt;}
.y160{bottom:176.266596pt;}
.y88{bottom:176.586596pt;}
.ya9{bottom:177.546596pt;}
.ydf{bottom:184.266593pt;}
.yba{bottom:184.586593pt;}
.y11a{bottom:185.546592pt;}
.y61{bottom:186.506592pt;}
.y104{bottom:188.106591pt;}
.y142{bottom:190.826590pt;}
.y87{bottom:194.506589pt;}
.ya8{bottom:195.466588pt;}
.y32{bottom:202.186586pt;}
.yb9{bottom:202.506586pt;}
.y60{bottom:204.426585pt;}
.y103{bottom:206.026584pt;}
.y141{bottom:208.746583pt;}
.yde{bottom:210.186583pt;}
.y119{bottom:211.466582pt;}
.y86{bottom:212.426582pt;}
.ya7{bottom:213.386581pt;}
.y15f{bottom:220.106579pt;}
.yb8{bottom:220.426578pt;}
.y140{bottom:226.666576pt;}
.y31{bottom:227.946575pt;}
.ydd{bottom:228.106575pt;}
.y118{bottom:229.386575pt;}
.y5f{bottom:230.346575pt;}
.y102{bottom:231.946574pt;}
.y15e{bottom:237.866572pt;}
.yb7{bottom:238.346571pt;}
.ya6{bottom:240.586570pt;}
.y13f{bottom:244.586569pt;}
.y30{bottom:245.706568pt;}
.ydc{bottom:246.026568pt;}
.y117{bottom:247.306568pt;}
.y5e{bottom:248.266567pt;}
.y101{bottom:249.866567pt;}
.yb6{bottom:256.266564pt;}
.y13e{bottom:262.506562pt;}
.y15d{bottom:263.786561pt;}
.ydb{bottom:263.946561pt;}
.y116{bottom:265.226561pt;}
.y5d{bottom:266.186560pt;}
.ya5{bottom:266.666560pt;}
.y100{bottom:267.786560pt;}
.y2f{bottom:271.786558pt;}
.yb5{bottom:274.186557pt;}
.y15c{bottom:281.706554pt;}
.yda{bottom:281.866554pt;}
.y115{bottom:283.146553pt;}
.y5c{bottom:284.106553pt;}
.yff{bottom:285.706552pt;}
.y13d{bottom:288.106551pt;}
.y2e{bottom:289.706551pt;}
.yb4{bottom:292.106550pt;}
.ya4{bottom:292.586550pt;}
.y15b{bottom:299.626547pt;}
.y114{bottom:301.066546pt;}
.y85{bottom:301.866546pt;}
.yfe{bottom:303.626545pt;}
.y2d{bottom:307.626544pt;}
.y5b{bottom:309.866543pt;}
.ya3{bottom:310.506542pt;}
.y15a{bottom:317.546540pt;}
.y84{bottom:319.786539pt;}
.y13c{bottom:322.186538pt;}
.y2c{bottom:325.546536pt;}
.y113{bottom:326.986536pt;}
.y5a{bottom:327.786536pt;}
.yfd{bottom:330.826534pt;}
.ya2{bottom:336.266532pt;}
.y83{bottom:337.706532pt;}
.yd9{bottom:341.546530pt;}
.y159{bottom:343.466529pt;}
.y112{bottom:344.746529pt;}
.y59{bottom:345.706528pt;}
.y13b{bottom:348.106527pt;}
.y2b{bottom:351.466526pt;}
.yb3{bottom:353.706525pt;}
.ya1{bottom:354.186525pt;}
.y82{bottom:355.626524pt;}
.yfc{bottom:356.746524pt;}
.y158{bottom:361.386522pt;}
.y111{bottom:362.666522pt;}
.y58{bottom:363.626521pt;}
.y13a{bottom:366.026520pt;}
.yd8{bottom:366.666520pt;}
.y2a{bottom:369.386519pt;}
.yb2{bottom:371.626518pt;}
.ya0{bottom:372.106518pt;}
.y81{bottom:373.546517pt;}
.y110{bottom:380.586514pt;}
.yd7{bottom:381.226514pt;}
.y57{bottom:381.546514pt;}
.yfb{bottom:382.506514pt;}
.y139{bottom:383.946513pt;}
.y29{bottom:387.306512pt;}
.yb1{bottom:389.546511pt;}
.y9f{bottom:390.026511pt;}
.y80{bottom:391.466510pt;}
.y10f{bottom:398.506507pt;}
.y138{bottom:401.866506pt;}
.yd6{bottom:404.906505pt;}
.y28{bottom:405.226505pt;}
.y56{bottom:407.466504pt;}
.y9e{bottom:407.946503pt;}
.y7f{bottom:409.386503pt;}
.y157{bottom:413.226501pt;}
.yfa{bottom:416.586500pt;}
.y137{bottom:419.786499pt;}
.yd5{bottom:421.226498pt;}
.y55{bottom:425.386497pt;}
.y10e{bottom:425.706496pt;}
.y9d{bottom:425.866496pt;}
.y7e{bottom:427.306496pt;}
.y27{bottom:431.146494pt;}
.yd4{bottom:437.546492pt;}
.yf9{bottom:441.706490pt;}
.y54{bottom:443.306489pt;}
.y9c{bottom:443.786489pt;}
.y10d{bottom:445.066489pt;}
.y7d{bottom:445.226489pt;}
.y136{bottom:445.706488pt;}
.y26{bottom:448.906487pt;}
.yd3{bottom:453.866485pt;}
.yf8{bottom:456.106484pt;}
.y156{bottom:456.906484pt;}
.y53{bottom:461.226482pt;}
.y9b{bottom:461.706482pt;}
.y7c{bottom:463.146481pt;}
.y135{bottom:463.626481pt;}
.y25{bottom:466.826480pt;}
.yd2{bottom:470.026479pt;}
.y10c{bottom:471.146478pt;}
.y155{bottom:474.826477pt;}
.y9a{bottom:479.626475pt;}
.y7b{bottom:480.906474pt;}
.y134{bottom:481.546474pt;}
.y24{bottom:484.746473pt;}
.yd1{bottom:486.346472pt;}
.y52{bottom:487.146472pt;}
.yf7{bottom:487.946471pt;}
.y10b{bottom:496.906468pt;}
.y99{bottom:497.546468pt;}
.y7a{bottom:498.826467pt;}
.y133{bottom:499.306467pt;}
.y154{bottom:500.746466pt;}
.yd0{bottom:503.306465pt;}
.yf6{bottom:504.266465pt;}
.y51{bottom:504.906465pt;}
.y23{bottom:510.666462pt;}
.y10a{bottom:514.826461pt;}
.y98{bottom:515.306461pt;}
.y79{bottom:516.746460pt;}
.y132{bottom:517.226460pt;}
.y153{bottom:518.666459pt;}
.ycf{bottom:519.626459pt;}
.yf5{bottom:520.586458pt;}
.y50{bottom:522.826458pt;}
.y109{bottom:532.746454pt;}
.y97{bottom:533.226453pt;}
.y131{bottom:535.146453pt;}
.yce{bottom:535.786452pt;}
.y22{bottom:535.946452pt;}
.yf4{bottom:537.546452pt;}
.y4f{bottom:540.746450pt;}
.y78{bottom:542.666450pt;}
.y152{bottom:544.586449pt;}
.y96{bottom:551.146446pt;}
.ycd{bottom:552.106446pt;}
.y130{bottom:553.066445pt;}
.yf3{bottom:553.706445pt;}
.y4e{bottom:558.666443pt;}
.y77{bottom:560.586442pt;}
.y21{bottom:560.746442pt;}
.y151{bottom:562.506442pt;}
.ycc{bottom:568.426439pt;}
.y95{bottom:569.066439pt;}
.yf2{bottom:570.026439pt;}
.y4d{bottom:576.586436pt;}
.y76{bottom:578.506435pt;}
.y20{bottom:578.666435pt;}
.y12f{bottom:578.826435pt;}
.ycb{bottom:584.746433pt;}
.yf1{bottom:586.346432pt;}
.y150{bottom:588.426431pt;}
.y4c{bottom:594.506429pt;}
.y94{bottom:596.266428pt;}
.y75{bottom:596.426428pt;}
.yca{bottom:601.546426pt;}
.yf0{bottom:602.506426pt;}
.y1f{bottom:604.746425pt;}
.y14f{bottom:606.346424pt;}
.y108{bottom:612.426422pt;}
.y12e{bottom:612.906422pt;}
.yc9{bottom:617.866420pt;}
.yef{bottom:619.466419pt;}
.y4b{bottom:620.426418pt;}
.y74{bottom:622.346418pt;}
.y1e{bottom:622.506418pt;}
.y14e{bottom:624.266417pt;}
.y107{bottom:630.346415pt;}
.yc8{bottom:634.186413pt;}
.yee{bottom:635.786412pt;}
.y4a{bottom:638.346411pt;}
.y12d{bottom:638.826411pt;}
.y73{bottom:640.266411pt;}
.y1d{bottom:640.426410pt;}
.y93{bottom:648.266407pt;}
.y14d{bottom:650.186407pt;}
.yc7{bottom:650.506406pt;}
.yed{bottom:652.106406pt;}
.y49{bottom:656.266404pt;}
.y12c{bottom:656.746404pt;}
.y72{bottom:658.186403pt;}
.y1c{bottom:658.346403pt;}
.y168{bottom:659.946403pt;}
.y92{bottom:666.186400pt;}
.yc6{bottom:666.666400pt;}
.y14c{bottom:667.946399pt;}
.yec{bottom:668.426399pt;}
.y48{bottom:674.186397pt;}
.y12b{bottom:674.666397pt;}
.y71{bottom:675.946396pt;}
.y1b{bottom:676.266396pt;}
.y167{bottom:677.866396pt;}
.yc5{bottom:683.626393pt;}
.y91{bottom:683.946393pt;}
.yeb{bottom:684.586393pt;}
.y47{bottom:691.946390pt;}
.y12a{bottom:692.426390pt;}
.y70{bottom:693.866389pt;}
.yc4{bottom:699.946387pt;}
.yea{bottom:701.546386pt;}
.y90{bottom:701.866386pt;}
.y1a{bottom:702.186386pt;}
.y166{bottom:703.786385pt;}
.y46{bottom:709.866383pt;}
.y6f{bottom:711.786382pt;}
.yc3{bottom:716.266380pt;}
.ye9{bottom:717.866380pt;}
.y129{bottom:718.346379pt;}
.y19{bottom:720.106379pt;}
.y165{bottom:721.706378pt;}
.y45{bottom:727.786376pt;}
.y6e{bottom:729.706375pt;}
.yc2{bottom:732.426374pt;}
.ye8{bottom:734.186373pt;}
.y128{bottom:736.266372pt;}
.y18{bottom:738.026371pt;}
.y44{bottom:745.706368pt;}
.y6d{bottom:747.626368pt;}
.yc1{bottom:748.746367pt;}
.ye7{bottom:750.346367pt;}
.y127{bottom:754.186365pt;}
.y14b{bottom:755.626364pt;}
.y17{bottom:755.946364pt;}
.y43{bottom:763.626361pt;}
.yc0{bottom:765.066361pt;}
.y6c{bottom:765.546360pt;}
.ye6{bottom:766.666360pt;}
.y126{bottom:772.106358pt;}
.y14a{bottom:773.546357pt;}
.y42{bottom:781.546354pt;}
.y16{bottom:781.866354pt;}
.ybf{bottom:782.026354pt;}
.ye5{bottom:782.986353pt;}
.y6b{bottom:783.466353pt;}
.y8f{bottom:789.546351pt;}
.y125{bottom:790.026351pt;}
.y149{bottom:791.466350pt;}
.y41{bottom:799.466347pt;}
.y15{bottom:799.786347pt;}
.ye4{bottom:799.946347pt;}
.y6a{bottom:801.386346pt;}
.y8e{bottom:807.466344pt;}
.y124{bottom:807.946343pt;}
.y148{bottom:809.386343pt;}
.y14{bottom:817.546340pt;}
.y69{bottom:819.306339pt;}
.y40{bottom:825.386337pt;}
.y123{bottom:825.866336pt;}
.y147{bottom:835.306333pt;}
.y13{bottom:835.466332pt;}
.y68{bottom:837.226332pt;}
.y3f{bottom:843.306329pt;}
.y122{bottom:843.786329pt;}
.y146{bottom:853.226325pt;}
.y12{bottom:853.386325pt;}
.y67{bottom:854.986325pt;}
.y3e{bottom:861.226322pt;}
.y121{bottom:861.706322pt;}
.y164{bottom:870.986318pt;}
.y3d{bottom:878.986315pt;}
.y11{bottom:879.306315pt;}
.y120{bottom:879.466315pt;}
.y66{bottom:880.746314pt;}
.yb0{bottom:886.986312pt;}
.y3c{bottom:896.906308pt;}
.y10{bottom:904.586305pt;}
.yaf{bottom:904.906305pt;}
.y11f{bottom:906.666304pt;}
.y65{bottom:914.826301pt;}
.yf{bottom:921.066298pt;}
.y3b{bottom:922.826298pt;}
.ye{bottom:925.706296pt;}
.y8d{bottom:932.746294pt;}
.y3a{bottom:940.746290pt;}
.yc{bottom:945.866288pt;}
.yd{bottom:951.146286pt;}
.ybe{bottom:958.506283pt;}
.y39{bottom:958.666283pt;}
.ya{bottom:972.426278pt;}
.yb{bottom:972.586278pt;}
.ybd{bottom:976.426276pt;}
.y38{bottom:976.586276pt;}
.y7{bottom:1022.666258pt;}
.y1{bottom:1040.587200pt;}
.y6{bottom:1041.546250pt;}
.y5{bottom:1053.706245pt;}
.y3{bottom:1063.307200pt;}
.h3{height:12.160000pt;}
.h1{height:18.080000pt;}
.h7{height:28.501864pt;}
.h6{height:30.613113pt;}
.h4{height:33.252174pt;}
.hf{height:34.453111pt;}
.hc{height:36.364360pt;}
.hd{height:38.128110pt;}
.ha{height:39.243734pt;}
.h9{height:43.808420pt;}
.h2{height:48.558731pt;}
.he{height:50.702480pt;}
.h8{height:55.402478pt;}
.h5{height:61.754038pt;}
.hb{height:62.049975pt;}
.h0{height:1122.666667pt;}
.w1{width:0.160000pt;}
.w3{width:3.040000pt;}
.w4{width:135.360000pt;}
.w2{width:313.760000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x7{left:75.519970pt;}
.xc{left:79.839968pt;}
.xd{left:99.679960pt;}
.x11{left:105.919958pt;}
.x1{left:225.440000pt;}
.xa{left:253.759898pt;}
.xb{left:258.399897pt;}
.x2{left:265.920000pt;}
.xe{left:297.759342pt;}
.x5{left:394.079842pt;}
.xf{left:500.799851pt;}
.x10{left:519.998714pt;}
.x3{left:579.680000pt;}
.x4{left:582.720000pt;}
.x6{left:596.479998pt;}
.x9{left:677.279729pt;}
.x12{left:707.999717pt;}
.x8{left:712.959715pt;}
}




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