
    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_66318a9efc4c85bde4ecb344.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_24249560cb669e386a9024c6.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.081543;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_fc6a8e699dc99be35356c345.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.137207;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_7696944d8a654b865678d4dc.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_eb96f2b216c1ee3a216e982a.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;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_b24f7333201e06aa24e42c15.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.239258;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_f2e0642351d1d58073fc22b8.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.840332;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_dd483a7e8d30d224d6d73d4b.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.946777;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.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);}
.m7{transform:matrix(0.249847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249847,0.000000,0.000000,0.250000,0,0);}
.m8{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.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);}
.m6{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);}
.m2{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);}
.m3{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);}
.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);}
.m5{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-20.879992px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:35.279986px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.010641px;}
.ls3{letter-spacing:0.017940px;}
.ls2{letter-spacing:3.071039px;}
.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;}
}
.ws0{word-spacing:-23.039991px;}
.ws2{word-spacing:-22.616091px;}
.ws6{word-spacing:-21.599991px;}
.ws4{word-spacing:-13.192735px;}
.ws5{word-spacing:-12.441595px;}
.ws1{word-spacing:0.000000px;}
.ws3{word-spacing:57.392584px;}
._6a{margin-left:-388.976800px;}
._68{margin-left:-194.312271px;}
._69{margin-left:-155.431531px;}
._6b{margin-left:-5.917755px;}
._0{margin-left:-1.116357px;}
._1{width:1.043177px;}
._3{width:2.729694px;}
._2{width:3.756505px;}
._16{width:5.009905px;}
._5{width:6.048021px;}
._d{width:7.292099px;}
._18{width:8.689227px;}
._30{width:9.773969px;}
._e{width:10.987067px;}
._c{width:12.310983px;}
._8{width:13.834514px;}
._f{width:14.975882px;}
._7{width:16.496598px;}
._6{width:18.239944px;}
._15{width:19.281492px;}
._1a{width:20.402859px;}
._14{width:21.434406px;}
._11{width:24.024483px;}
._b{width:25.083532px;}
._a{width:26.262589px;}
._9{width:28.203912px;}
._31{width:29.682414px;}
._17{width:30.899850px;}
._10{width:31.922647px;}
._19{width:32.927943px;}
._12{width:33.972378px;}
._13{width:34.981139px;}
._34{width:36.886044px;}
._6d{width:38.145398px;}
._6e{width:39.797435px;}
._63{width:41.681876px;}
._35{width:42.758019px;}
._6c{width:43.882312px;}
._4{width:44.897916px;}
._64{width:46.249710px;}
._36{width:48.374157px;}
._44{width:49.569438px;}
._33{width:50.742831px;}
._32{width:51.976271px;}
._66{width:54.746098px;}
._65{width:55.776476px;}
._2f{width:59.327732px;}
._37{width:60.928776px;}
._67{width:65.771224px;}
._43{width:78.613105px;}
._1c{width:105.839537px;}
._1d{width:138.566956px;}
._1e{width:171.364163px;}
._21{width:179.842160px;}
._25{width:185.606272px;}
._22{width:189.208604px;}
._1f{width:197.285921px;}
._3f{width:210.981654px;}
._28{width:212.623702px;}
._29{width:216.900279px;}
._40{width:218.094501px;}
._24{width:219.466872px;}
._2d{width:222.664304px;}
._2a{width:226.266635px;}
._23{width:228.112946px;}
._41{width:242.205177px;}
._2e{width:249.528460px;}
._2c{width:256.524904px;}
._39{width:261.252578px;}
._2b{width:265.170379px;}
._3c{width:304.402509px;}
._3a{width:328.231951px;}
._3b{width:359.241980px;}
._3d{width:369.829095px;}
._1b{width:405.228215px;}
._38{width:437.963461px;}
._42{width:442.778123px;}
._46{width:444.670882px;}
._20{width:451.862348px;}
._3e{width:483.367123px;}
._26{width:517.479947px;}
._27{width:547.360212px;}
._45{width:600.473894px;}
._56{width:634.896259px;}
._4e{width:778.313350px;}
._48{width:803.747327px;}
._52{width:827.307128px;}
._5e{width:841.483750px;}
._61{width:853.448051px;}
._62{width:863.043491px;}
._51{width:865.379787px;}
._5a{width:871.359016px;}
._47{width:883.325921px;}
._54{width:884.521565px;}
._4f{width:889.334264px;}
._57{width:891.670603px;}
._5c{width:892.895444px;}
._50{width:907.251247px;}
._49{width:912.008157px;}
._58{width:915.598581px;}
._53{width:923.975068px;}
._4a{width:933.573828px;}
._4b{width:937.135053px;}
._55{width:940.748695px;}
._4c{width:962.226820px;}
._5d{width:965.846438px;}
._4d{width:970.574153px;}
._5f{width:981.333207px;}
._5b{width:987.309205px;}
._60{width:988.656428px;}
._59{width:1002.846799px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:37.693425px;}
.fs3{font-size:38.879984px;}
.fs2{font-size:48.239981px;}
.fs6{font-size:52.770939px;}
.fs4{font-size:59.759976px;}
.fs9{font-size:66.239974px;}
.fs0{font-size:71.999971px;}
.fs1{font-size:84.239966px;}
.fs5{font-size:90.464364px;}
.fs8{font-size:135.697746px;}
.y0{bottom:0.000000px;}
.y5{bottom:4.140037px;}
.y4{bottom:52.860240px;}
.y3{bottom:57.899977px;}
.y34{bottom:110.099956px;}
.y76{bottom:110.100256px;}
.yb9{bottom:113.700255px;}
.y7d{bottom:114.239954px;}
.y64{bottom:114.780254px;}
.y62{bottom:115.319954px;}
.yeb{bottom:120.719952px;}
.ycc{bottom:121.079952px;}
.y9c{bottom:127.019949px;}
.y84{bottom:127.199949px;}
.y33{bottom:127.739949px;}
.yc7{bottom:127.740249px;}
.y75{bottom:127.920249px;}
.y63{bottom:129.000248px;}
.yb8{bottom:131.880247px;}
.y74{bottom:134.760246px;}
.y7c{bottom:135.299946px;}
.y61{bottom:136.379945px;}
.yea{bottom:141.959943px;}
.ycb{bottom:142.319943px;}
.yc5{bottom:143.760242px;}
.y32{bottom:145.199942px;}
.yc6{bottom:145.200242px;}
.y9b{bottom:148.259941px;}
.y83{bottom:148.439941px;}
.y7b{bottom:156.359937px;}
.y60{bottom:157.619937px;}
.y31{bottom:162.839935px;}
.ye9{bottom:163.019935px;}
.yca{bottom:163.379935px;}
.yc3{bottom:164.099934px;}
.yc0{bottom:168.059933px;}
.y9a{bottom:169.319932px;}
.y81{bottom:169.499932px;}
.y82{bottom:173.999930px;}
.y7a{bottom:177.599929px;}
.y5f{bottom:178.679929px;}
.yc4{bottom:178.859928px;}
.ybf{bottom:180.299928px;}
.y30{bottom:180.479928px;}
.y73{bottom:180.659928px;}
.ybe{bottom:184.079926px;}
.ye8{bottom:184.259926px;}
.yc9{bottom:184.439926px;}
.yc1{bottom:185.699926px;}
.y72{bottom:187.499925px;}
.y80{bottom:190.559924px;}
.y2f{bottom:198.119921px;}
.y79{bottom:198.659921px;}
.y71{bottom:199.019920px;}
.y5e{bottom:199.739920px;}
.y2e{bottom:201.899919px;}
.yb7{bottom:204.959918px;}
.ye7{bottom:205.319918px;}
.yc8{bottom:205.679918px;}
.yc2{bottom:208.559917px;}
.y99{bottom:211.619915px;}
.y7f{bottom:211.799915px;}
.y2d{bottom:216.659913px;}
.y5d{bottom:220.979912px;}
.ye6{bottom:226.379909px;}
.y70{bottom:226.739909px;}
.ybd{bottom:227.819909px;}
.yb6{bottom:229.439908px;}
.y98{bottom:232.139907px;}
.y7e{bottom:232.859907px;}
.y78{bottom:233.939906px;}
.y5c{bottom:242.039903px;}
.ye5{bottom:247.619901px;}
.y6f{bottom:247.799901px;}
.y77{bottom:248.159901px;}
.y97{bottom:250.499900px;}
.yb5{bottom:253.739899px;}
.y9d{bottom:253.919898px;}
.y2c{bottom:258.419897px;}
.y5b{bottom:263.279895px;}
.ye4{bottom:268.679893px;}
.y6e{bottom:269.039892px;}
.y96{bottom:273.719891px;}
.yb4{bottom:278.219889px;}
.y2b{bottom:279.659888px;}
.y5a{bottom:283.619887px;}
.ye3{bottom:289.919884px;}
.y6d{bottom:290.099884px;}
.y95{bottom:296.939881px;}
.y2a{bottom:300.719880px;}
.yb3{bottom:302.519879px;}
.y59{bottom:302.879879px;}
.ye2{bottom:310.979876px;}
.y6c{bottom:311.339875px;}
.y94{bottom:320.339872px;}
.y29{bottom:321.779871px;}
.y58{bottom:322.679871px;}
.yb2{bottom:326.819869px;}
.ye1{bottom:332.039867px;}
.y6b{bottom:332.399867px;}
.y57{bottom:342.659863px;}
.y28{bottom:343.019863px;}
.y93{bottom:343.559863px;}
.yb1{bottom:351.299859px;}
.ye0{bottom:353.279859px;}
.y6a{bottom:353.459859px;}
.y56{bottom:362.459855px;}
.y27{bottom:364.079854px;}
.y92{bottom:366.779853px;}
.ydf{bottom:374.339850px;}
.y69{bottom:374.699850px;}
.yb0{bottom:375.599850px;}
.y55{bottom:382.439847px;}
.y26{bottom:385.139846px;}
.y8b{bottom:389.999844px;}
.yde{bottom:395.579842px;}
.y68{bottom:395.759842px;}
.y8d{bottom:398.819840px;}
.yaf{bottom:400.079840px;}
.y54{bottom:401.519839px;}
.y8e{bottom:402.599839px;}
.y25{bottom:406.379837px;}
.y90{bottom:407.639837px;}
.y53{bottom:410.339836px;}
.y8f{bottom:411.419835px;}
.y8c{bottom:416.459833px;}
.ydd{bottom:416.639833px;}
.y67{bottom:416.999833px;}
.yae{bottom:424.379830px;}
.y91{bottom:425.279830px;}
.y24{bottom:427.439829px;}
.ydc{bottom:437.879825px;}
.y52{bottom:438.059825px;}
.y8a{bottom:444.179822px;}
.y22{bottom:448.679821px;}
.yad{bottom:448.859820px;}
.y23{bottom:453.179819px;}
.ydb{bottom:458.939816px;}
.y51{bottom:459.119816px;}
.y66{bottom:463.619815px;}
.y89{bottom:465.239814px;}
.y21{bottom:469.739812px;}
.yac{bottom:473.159811px;}
.yda{bottom:479.999808px;}
.y50{bottom:480.359808px;}
.yf2{bottom:481.439807px;}
.y65{bottom:484.859806px;}
.y20{bottom:490.799804px;}
.yab{bottom:497.459801px;}
.yd9{bottom:501.239800px;}
.y4f{bottom:501.419799px;}
.y1f{bottom:512.039795px;}
.yaa{bottom:521.939791px;}
.yd8{bottom:522.299791px;}
.y4e{bottom:522.479791px;}
.y1e{bottom:533.099787px;}
.yf1{bottom:543.359783px;}
.yd7{bottom:543.539783px;}
.y4d{bottom:543.719783px;}
.ybc{bottom:543.899782px;}
.ya9{bottom:546.239782px;}
.y1d{bottom:554.159778px;}
.yd6{bottom:564.599774px;}
.y4c{bottom:564.779774px;}
.ybb{bottom:564.959774px;}
.ya8{bottom:570.719772px;}
.y1c{bottom:575.399770px;}
.yf0{bottom:585.659766px;}
.yd5{bottom:585.839766px;}
.y4b{bottom:586.019766px;}
.y88{bottom:590.519764px;}
.ya7{bottom:595.019762px;}
.y1b{bottom:596.459761px;}
.yd4{bottom:606.899757px;}
.y4a{bottom:607.079757px;}
.y1a{bottom:617.699753px;}
.ya6{bottom:619.319752px;}
.yd3{bottom:627.959749px;}
.y49{bottom:628.139749px;}
.y19{bottom:638.759744px;}
.ya5{bottom:643.799742px;}
.yd2{bottom:649.199740px;}
.y48{bottom:649.379740px;}
.y18{bottom:659.819736px;}
.ya4{bottom:668.099733px;}
.yd1{bottom:670.259732px;}
.y47{bottom:670.439732px;}
.y17{bottom:681.059728px;}
.y46{bottom:691.499723px;}
.ya3{bottom:692.579723px;}
.y16{bottom:702.119719px;}
.yd0{bottom:712.559715px;}
.y45{bottom:712.739715px;}
.ya2{bottom:716.879713px;}
.y15{bottom:723.359711px;}
.yef{bottom:733.619707px;}
.y44{bottom:733.799706px;}
.y87{bottom:738.299705px;}
.ya1{bottom:741.359703px;}
.y14{bottom:744.419702px;}
.ycf{bottom:754.859698px;}
.y43{bottom:755.039698px;}
.y13{bottom:765.479694px;}
.ya0{bottom:765.659694px;}
.yee{bottom:775.919690px;}
.y42{bottom:776.099690px;}
.y12{bottom:786.719685px;}
.y9f{bottom:789.959684px;}
.y41{bottom:797.159681px;}
.yba{bottom:801.659679px;}
.y11{bottom:807.779677px;}
.y9e{bottom:814.439674px;}
.yce{bottom:818.219673px;}
.y40{bottom:818.399673px;}
.y10{bottom:828.839668px;}
.y3f{bottom:839.459664px;}
.yf{bottom:850.079660px;}
.ycd{bottom:860.519656px;}
.y3e{bottom:860.699656px;}
.ye{bottom:871.139652px;}
.yed{bottom:881.579647px;}
.y3d{bottom:881.759647px;}
.yd{bottom:892.379643px;}
.y3c{bottom:902.819639px;}
.yc{bottom:913.439635px;}
.yec{bottom:923.879630px;}
.y3b{bottom:924.059630px;}
.yb{bottom:934.499626px;}
.y3a{bottom:945.119622px;}
.y86{bottom:949.619620px;}
.ya{bottom:955.739618px;}
.y39{bottom:966.179614px;}
.y9{bottom:976.799609px;}
.y38{bottom:987.419605px;}
.y8{bottom:998.759600px;}
.y37{bottom:1008.479597px;}
.y7{bottom:1023.419591px;}
.y36{bottom:1029.719588px;}
.y6{bottom:1048.079581px;}
.y35{bottom:1050.779580px;}
.y85{bottom:1055.279578px;}
.y2{bottom:1072.199571px;}
.y1{bottom:1088.399565px;}
.h2{height:21.060000px;}
.h7{height:33.070768px;}
.hf{height:36.975630px;}
.ha{height:38.158578px;}
.h6{height:41.032249px;}
.h8{height:50.830995px;}
.he{height:51.766024px;}
.h11{height:51.791791px;}
.h13{height:56.342790px;}
.hb{height:58.651148px;}
.h3{height:61.242163px;}
.hc{height:61.607788px;}
.h5{height:65.566380px;}
.h1{height:70.664034px;}
.h4{height:76.712665px;}
.h10{height:83.794384px;}
.h9{height:86.110981px;}
.hd{height:88.741654px;}
.h12{height:88.785826px;}
.h0{height:1263.000000px;}
.w2{width:0.180000px;}
.w1{width:22.320000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x2{left:106.380379px;}
.x15{left:111.239956px;}
.xa{left:112.319955px;}
.x22{left:122.219951px;}
.x7{left:148.859912px;}
.x5{left:150.120636px;}
.x16{left:153.900385px;}
.xe{left:158.041389px;}
.xf{left:160.921187px;}
.x3d{left:163.079935px;}
.x33{left:165.780145px;}
.x32{left:166.859507px;}
.x18{left:170.459932px;}
.x19{left:178.019929px;}
.x39{left:181.079892px;}
.xb{left:183.958556px;}
.x3c{left:185.039926px;}
.xc{left:186.479925px;}
.x20{left:191.519923px;}
.x1c{left:200.339920px;}
.x1d{left:207.899917px;}
.x37{left:209.519867px;}
.x3a{left:218.699831px;}
.x3b{left:229.859881px;}
.x6{left:239.760564px;}
.x1a{left:255.059898px;}
.x24{left:256.139925px;}
.x23{left:258.659921px;}
.x21{left:260.641090px;}
.x1b{left:262.619895px;}
.x36{left:279.179899px;}
.x35{left:280.259888px;}
.x38{left:288.179885px;}
.x3e{left:304.739878px;}
.x25{left:323.819870px;}
.x26{left:329.759868px;}
.x13{left:362.519855px;}
.x27{left:367.919853px;}
.x14{left:370.079852px;}
.x28{left:373.859850px;}
.x3f{left:376.019850px;}
.x8{left:423.359831px;}
.x9{left:430.919828px;}
.x4{left:446.399821px;}
.x2a{left:461.339770px;}
.x40{left:463.499815px;}
.x29{left:483.112534px;}
.x2b{left:499.859789px;}
.x11{left:501.119800px;}
.x12{left:508.679797px;}
.xd{left:547.919376px;}
.x2c{left:577.619833px;}
.x2d{left:579.779840px;}
.x2e{left:584.999841px;}
.x1e{left:668.519733px;}
.x1f{left:676.079730px;}
.x2f{left:698.219836px;}
.x31{left:707.219778px;}
.x30{left:714.419777px;}
.x10{left:723.059711px;}
.x17{left:744.119702px;}
.x1{left:765.179694px;}
.x34{left:779.039688px;}
.x3{left:786.600000px;}
@media print{
.v2{vertical-align:-18.559993pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:31.359987pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.009459pt;}
.ls3{letter-spacing:0.015947pt;}
.ls2{letter-spacing:2.729812pt;}
.ws0{word-spacing:-20.479992pt;}
.ws2{word-spacing:-20.103192pt;}
.ws6{word-spacing:-19.199992pt;}
.ws4{word-spacing:-11.726875pt;}
.ws5{word-spacing:-11.059196pt;}
.ws1{word-spacing:0.000000pt;}
.ws3{word-spacing:51.015630pt;}
._6a{margin-left:-345.757156pt;}
._68{margin-left:-172.722018pt;}
._69{margin-left:-138.161361pt;}
._6b{margin-left:-5.260226pt;}
._0{margin-left:-0.992318pt;}
._1{width:0.927268pt;}
._3{width:2.426394pt;}
._2{width:3.339116pt;}
._16{width:4.453249pt;}
._5{width:5.376019pt;}
._d{width:6.481866pt;}
._18{width:7.723757pt;}
._30{width:8.687972pt;}
._e{width:9.766281pt;}
._c{width:10.943096pt;}
._8{width:12.297345pt;}
._f{width:13.311895pt;}
._7{width:14.663642pt;}
._6{width:16.213283pt;}
._15{width:17.139104pt;}
._1a{width:18.135875pt;}
._14{width:19.052805pt;}
._11{width:21.355096pt;}
._b{width:22.296473pt;}
._a{width:23.344523pt;}
._9{width:25.070144pt;}
._31{width:26.384368pt;}
._17{width:27.466533pt;}
._10{width:28.375687pt;}
._19{width:29.269283pt;}
._12{width:30.197669pt;}
._13{width:31.094346pt;}
._34{width:32.787595pt;}
._6d{width:33.907021pt;}
._6e{width:35.375498pt;}
._63{width:37.050556pt;}
._35{width:38.007128pt;}
._6c{width:39.006500pt;}
._4{width:39.909259pt;}
._64{width:41.110853pt;}
._36{width:42.999250pt;}
._44{width:44.061723pt;}
._33{width:45.104739pt;}
._32{width:46.201130pt;}
._66{width:48.663199pt;}
._65{width:49.579090pt;}
._2f{width:52.735762pt;}
._37{width:54.158912pt;}
._67{width:58.463310pt;}
._43{width:69.878316pt;}
._1c{width:94.079589pt;}
._1d{width:123.170628pt;}
._1e{width:152.323701pt;}
._21{width:159.859698pt;}
._25{width:164.983353pt;}
._22{width:168.185426pt;}
._1f{width:175.365263pt;}
._3f{width:187.539248pt;}
._28{width:188.998846pt;}
._29{width:192.800248pt;}
._40{width:193.861779pt;}
._24{width:195.081664pt;}
._2d{width:197.923825pt;}
._2a{width:201.125898pt;}
._23{width:202.767063pt;}
._41{width:215.293491pt;}
._2e{width:221.803075pt;}
._2c{width:228.022137pt;}
._39{width:232.224513pt;}
._2b{width:235.707004pt;}
._3c{width:270.580008pt;}
._3a{width:291.761734pt;}
._3b{width:319.326204pt;}
._3d{width:328.736974pt;}
._1b{width:360.202858pt;}
._38{width:389.300854pt;}
._42{width:393.580553pt;}
._46{width:395.263006pt;}
._20{width:401.655420pt;}
._3e{width:429.659665pt;}
._26{width:459.982175pt;}
._27{width:486.542410pt;}
._45{width:533.754572pt;}
._56{width:564.352230pt;}
._4e{width:691.834089pt;}
._48{width:714.442068pt;}
._52{width:735.384114pt;}
._5e{width:747.985556pt;}
._61{width:758.620490pt;}
._62{width:767.149770pt;}
._51{width:769.226477pt;}
._5a{width:774.541348pt;}
._47{width:785.178596pt;}
._54{width:786.241391pt;}
._4f{width:790.519346pt;}
._57{width:792.596091pt;}
._5c{width:793.684839pt;}
._50{width:806.445553pt;}
._49{width:810.673917pt;}
._58{width:813.865405pt;}
._53{width:821.311172pt;}
._4a{width:829.843402pt;}
._4b{width:833.008936pt;}
._55{width:836.221062pt;}
._4c{width:855.312729pt;}
._5d{width:858.530167pt;}
._4d{width:862.732580pt;}
._5f{width:872.296184pt;}
._5b{width:877.608182pt;}
._60{width:878.805713pt;}
._59{width:891.419377pt;}
.fs7{font-size:33.505267pt;}
.fs3{font-size:34.559986pt;}
.fs2{font-size:42.879983pt;}
.fs6{font-size:46.907501pt;}
.fs4{font-size:53.119979pt;}
.fs9{font-size:58.879976pt;}
.fs0{font-size:63.999974pt;}
.fs1{font-size:74.879970pt;}
.fs5{font-size:80.412768pt;}
.fs8{font-size:120.620218pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:3.680033pt;}
.y4{bottom:46.986880pt;}
.y3{bottom:51.466646pt;}
.y34{bottom:97.866628pt;}
.y76{bottom:97.866894pt;}
.yb9{bottom:101.066893pt;}
.y7d{bottom:101.546626pt;}
.y64{bottom:102.026893pt;}
.y62{bottom:102.506626pt;}
.yeb{bottom:107.306624pt;}
.ycc{bottom:107.626624pt;}
.y9c{bottom:112.906622pt;}
.y84{bottom:113.066621pt;}
.y33{bottom:113.546621pt;}
.yc7{bottom:113.546888pt;}
.y75{bottom:113.706888pt;}
.y63{bottom:114.666887pt;}
.yb8{bottom:117.226886pt;}
.y74{bottom:119.786885pt;}
.y7c{bottom:120.266619pt;}
.y61{bottom:121.226618pt;}
.yea{bottom:126.186616pt;}
.ycb{bottom:126.506616pt;}
.yc5{bottom:127.786882pt;}
.y32{bottom:129.066615pt;}
.yc6{bottom:129.066882pt;}
.y9b{bottom:131.786614pt;}
.y83{bottom:131.946614pt;}
.y7b{bottom:138.986611pt;}
.y60{bottom:140.106611pt;}
.y31{bottom:144.746609pt;}
.ye9{bottom:144.906609pt;}
.yca{bottom:145.226609pt;}
.yc3{bottom:145.866608pt;}
.yc0{bottom:149.386607pt;}
.y9a{bottom:150.506606pt;}
.y81{bottom:150.666606pt;}
.y82{bottom:154.666605pt;}
.y7a{bottom:157.866604pt;}
.y5f{bottom:158.826603pt;}
.yc4{bottom:158.986603pt;}
.ybf{bottom:160.266603pt;}
.y30{bottom:160.426602pt;}
.y73{bottom:160.586602pt;}
.ybe{bottom:163.626601pt;}
.ye8{bottom:163.786601pt;}
.yc9{bottom:163.946601pt;}
.yc1{bottom:165.066601pt;}
.y72{bottom:166.666600pt;}
.y80{bottom:169.386599pt;}
.y2f{bottom:176.106596pt;}
.y79{bottom:176.586596pt;}
.y71{bottom:176.906596pt;}
.y5e{bottom:177.546596pt;}
.y2e{bottom:179.466595pt;}
.yb7{bottom:182.186594pt;}
.ye7{bottom:182.506594pt;}
.yc8{bottom:182.826594pt;}
.yc2{bottom:185.386593pt;}
.y99{bottom:188.106591pt;}
.y7f{bottom:188.266591pt;}
.y2d{bottom:192.586590pt;}
.y5d{bottom:196.426588pt;}
.ye6{bottom:201.226586pt;}
.y70{bottom:201.546586pt;}
.ybd{bottom:202.506586pt;}
.yb6{bottom:203.946585pt;}
.y98{bottom:206.346584pt;}
.y7e{bottom:206.986584pt;}
.y78{bottom:207.946583pt;}
.y5c{bottom:215.146581pt;}
.ye5{bottom:220.106579pt;}
.y6f{bottom:220.266579pt;}
.y77{bottom:220.586578pt;}
.y97{bottom:222.666578pt;}
.yb5{bottom:225.546576pt;}
.y9d{bottom:225.706576pt;}
.y2c{bottom:229.706575pt;}
.y5b{bottom:234.026573pt;}
.ye4{bottom:238.826571pt;}
.y6e{bottom:239.146571pt;}
.y96{bottom:243.306569pt;}
.yb4{bottom:247.306568pt;}
.y2b{bottom:248.586567pt;}
.y5a{bottom:252.106566pt;}
.ye3{bottom:257.706564pt;}
.y6d{bottom:257.866564pt;}
.y95{bottom:263.946561pt;}
.y2a{bottom:267.306560pt;}
.yb3{bottom:268.906559pt;}
.y59{bottom:269.226559pt;}
.ye2{bottom:276.426556pt;}
.y6c{bottom:276.746556pt;}
.y94{bottom:284.746553pt;}
.y29{bottom:286.026552pt;}
.y58{bottom:286.826552pt;}
.yb2{bottom:290.506550pt;}
.ye1{bottom:295.146549pt;}
.y6b{bottom:295.466548pt;}
.y57{bottom:304.586545pt;}
.y28{bottom:304.906545pt;}
.y93{bottom:305.386545pt;}
.yb1{bottom:312.266542pt;}
.ye0{bottom:314.026541pt;}
.y6a{bottom:314.186541pt;}
.y56{bottom:322.186538pt;}
.y27{bottom:323.626537pt;}
.y92{bottom:326.026536pt;}
.ydf{bottom:332.746534pt;}
.y69{bottom:333.066533pt;}
.yb0{bottom:333.866533pt;}
.y55{bottom:339.946531pt;}
.y26{bottom:342.346530pt;}
.y8b{bottom:346.666528pt;}
.yde{bottom:351.626526pt;}
.y68{bottom:351.786526pt;}
.y8d{bottom:354.506525pt;}
.yaf{bottom:355.626524pt;}
.y54{bottom:356.906524pt;}
.y8e{bottom:357.866524pt;}
.y25{bottom:361.226522pt;}
.y90{bottom:362.346522pt;}
.y53{bottom:364.746521pt;}
.y8f{bottom:365.706520pt;}
.y8c{bottom:370.186519pt;}
.ydd{bottom:370.346519pt;}
.y67{bottom:370.666518pt;}
.yae{bottom:377.226516pt;}
.y91{bottom:378.026515pt;}
.y24{bottom:379.946515pt;}
.ydc{bottom:389.226511pt;}
.y52{bottom:389.386511pt;}
.y8a{bottom:394.826509pt;}
.y22{bottom:398.826507pt;}
.yad{bottom:398.986507pt;}
.y23{bottom:402.826506pt;}
.ydb{bottom:407.946503pt;}
.y51{bottom:408.106503pt;}
.y66{bottom:412.106502pt;}
.y89{bottom:413.546501pt;}
.y21{bottom:417.546500pt;}
.yac{bottom:420.586498pt;}
.yda{bottom:426.666496pt;}
.y50{bottom:426.986496pt;}
.yf2{bottom:427.946495pt;}
.y65{bottom:430.986494pt;}
.y20{bottom:436.266492pt;}
.yab{bottom:442.186490pt;}
.yd9{bottom:445.546488pt;}
.y4f{bottom:445.706488pt;}
.y1f{bottom:455.146485pt;}
.yaa{bottom:463.946481pt;}
.yd8{bottom:464.266481pt;}
.y4e{bottom:464.426481pt;}
.y1e{bottom:473.866477pt;}
.yf1{bottom:482.986473pt;}
.yd7{bottom:483.146473pt;}
.y4d{bottom:483.306473pt;}
.ybc{bottom:483.466473pt;}
.ya9{bottom:485.546472pt;}
.y1d{bottom:492.586470pt;}
.yd6{bottom:501.866466pt;}
.y4c{bottom:502.026466pt;}
.ybb{bottom:502.186466pt;}
.ya8{bottom:507.306464pt;}
.y1c{bottom:511.466462pt;}
.yf0{bottom:520.586458pt;}
.yd5{bottom:520.746458pt;}
.y4b{bottom:520.906458pt;}
.y88{bottom:524.906457pt;}
.ya7{bottom:528.906455pt;}
.y1b{bottom:530.186455pt;}
.yd4{bottom:539.466451pt;}
.y4a{bottom:539.626451pt;}
.y1a{bottom:549.066447pt;}
.ya6{bottom:550.506446pt;}
.yd3{bottom:558.186443pt;}
.y49{bottom:558.346443pt;}
.y19{bottom:567.786440pt;}
.ya5{bottom:572.266438pt;}
.yd2{bottom:577.066436pt;}
.y48{bottom:577.226436pt;}
.y18{bottom:586.506432pt;}
.ya4{bottom:593.866429pt;}
.yd1{bottom:595.786428pt;}
.y47{bottom:595.946428pt;}
.y17{bottom:605.386425pt;}
.y46{bottom:614.666421pt;}
.ya3{bottom:615.626420pt;}
.y16{bottom:624.106417pt;}
.yd0{bottom:633.386413pt;}
.y45{bottom:633.546413pt;}
.ya2{bottom:637.226412pt;}
.y15{bottom:642.986409pt;}
.yef{bottom:652.106406pt;}
.y44{bottom:652.266406pt;}
.y87{bottom:656.266404pt;}
.ya1{bottom:658.986403pt;}
.y14{bottom:661.706402pt;}
.ycf{bottom:670.986398pt;}
.y43{bottom:671.146398pt;}
.y13{bottom:680.426394pt;}
.ya0{bottom:680.586394pt;}
.yee{bottom:689.706391pt;}
.y42{bottom:689.866391pt;}
.y12{bottom:699.306387pt;}
.y9f{bottom:702.186386pt;}
.y41{bottom:708.586383pt;}
.yba{bottom:712.586382pt;}
.y11{bottom:718.026379pt;}
.y9e{bottom:723.946377pt;}
.yce{bottom:727.306376pt;}
.y40{bottom:727.466376pt;}
.y10{bottom:736.746372pt;}
.y3f{bottom:746.186368pt;}
.yf{bottom:755.626364pt;}
.ycd{bottom:764.906361pt;}
.y3e{bottom:765.066361pt;}
.ye{bottom:774.346357pt;}
.yed{bottom:783.626353pt;}
.y3d{bottom:783.786353pt;}
.yd{bottom:793.226349pt;}
.y3c{bottom:802.506346pt;}
.yc{bottom:811.946342pt;}
.yec{bottom:821.226338pt;}
.y3b{bottom:821.386338pt;}
.yb{bottom:830.666334pt;}
.y3a{bottom:840.106331pt;}
.y86{bottom:844.106329pt;}
.ya{bottom:849.546327pt;}
.y39{bottom:858.826323pt;}
.y9{bottom:868.266319pt;}
.y38{bottom:877.706316pt;}
.y8{bottom:887.786312pt;}
.y37{bottom:896.426308pt;}
.y7{bottom:909.706303pt;}
.y36{bottom:915.306301pt;}
.y6{bottom:931.626294pt;}
.y35{bottom:934.026293pt;}
.y85{bottom:938.026291pt;}
.y2{bottom:953.066285pt;}
.y1{bottom:967.466280pt;}
.h2{height:18.720000pt;}
.h7{height:29.396238pt;}
.hf{height:32.867227pt;}
.ha{height:33.918736pt;}
.h6{height:36.473110pt;}
.h8{height:45.183107pt;}
.he{height:46.014243pt;}
.h11{height:46.037147pt;}
.h13{height:50.082480pt;}
.hb{height:52.134354pt;}
.h3{height:54.437478pt;}
.hc{height:54.762478pt;}
.h5{height:58.281227pt;}
.h1{height:62.812475pt;}
.h4{height:68.189035pt;}
.h10{height:74.483897pt;}
.h9{height:76.543094pt;}
.hd{height:78.881470pt;}
.h12{height:78.920734pt;}
.h0{height:1122.666667pt;}
.w2{width:0.160000pt;}
.w1{width:19.840000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x2{left:94.560337pt;}
.x15{left:98.879960pt;}
.xa{left:99.839960pt;}
.x22{left:108.639957pt;}
.x7{left:132.319922pt;}
.x5{left:133.440565pt;}
.x16{left:136.800342pt;}
.xe{left:140.481234pt;}
.xf{left:143.041055pt;}
.x3d{left:144.959942pt;}
.x33{left:147.360129pt;}
.x32{left:148.319562pt;}
.x18{left:151.519939pt;}
.x19{left:158.239937pt;}
.x39{left:160.959904pt;}
.xb{left:163.518716pt;}
.x3c{left:164.479934pt;}
.xc{left:165.759934pt;}
.x20{left:170.239932pt;}
.x1c{left:178.079929pt;}
.x1d{left:184.799926pt;}
.x37{left:186.239882pt;}
.x3a{left:194.399850pt;}
.x3b{left:204.319894pt;}
.x6{left:213.120502pt;}
.x1a{left:226.719909pt;}
.x24{left:227.679933pt;}
.x23{left:229.919930pt;}
.x21{left:231.680969pt;}
.x1b{left:233.439907pt;}
.x36{left:248.159910pt;}
.x35{left:249.119900pt;}
.x38{left:256.159898pt;}
.x3e{left:270.879892pt;}
.x25{left:287.839885pt;}
.x26{left:293.119883pt;}
.x13{left:322.239871pt;}
.x27{left:327.039869pt;}
.x14{left:328.959868pt;}
.x28{left:332.319867pt;}
.x3f{left:334.239866pt;}
.x8{left:376.319849pt;}
.x9{left:383.039847pt;}
.x4{left:396.799841pt;}
.x2a{left:410.079795pt;}
.x40{left:411.999835pt;}
.x29{left:429.433364pt;}
.x2b{left:444.319812pt;}
.x11{left:445.439822pt;}
.x12{left:452.159819pt;}
.xd{left:487.039445pt;}
.x2c{left:513.439852pt;}
.x2d{left:515.359858pt;}
.x2e{left:519.999859pt;}
.x1e{left:594.239762pt;}
.x1f{left:600.959760pt;}
.x2f{left:620.639854pt;}
.x31{left:628.639803pt;}
.x30{left:635.039802pt;}
.x10{left:642.719743pt;}
.x17{left:661.439735pt;}
.x1{left:680.159728pt;}
.x34{left:692.479723pt;}
.x3{left:699.200000pt;}
}




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