
    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_0735347396da723053d63d95.woff')format("woff");}.ff1{font-family:ff1;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_211792239687fb46ed5fb3e8.woff')format("woff");}.ff2{font-family:ff2;line-height:0.893555;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_454cb686b7d59fdd3fdcedca.woff')format("woff");}.ff3{font-family:ff3;line-height:0.666504;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_c9857ce55bc4c8aa909a67d7.woff')format("woff");}.ff4{font-family:ff4;line-height:0.893555;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_820f6927a4f60c9d1d45230d.woff')format("woff");}.ff5{font-family:ff5;line-height:0.686523;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_b2342b68c200d54e3b6eca49.woff')format("woff");}.ff6{font-family:ff6;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_353f2e6234853831ac303af2.woff')format("woff");}.ff7{font-family:ff7;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_75e74938316ca1c2319f5057.woff')format("woff");}.ff8{font-family:ff8;line-height:0.866699;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_8915296f19c0426240b07aa4.woff')format("woff");}.ff9{font-family:ff9;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_0664c2ff9c1c9fff5755b964.woff')format("woff");}.ffa{font-family:ffa;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1{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.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);}
.m5{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-2.159999px;}
.v0{vertical-align:0.000000px;}
.ls3{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.018600px;}
.ls1{letter-spacing:0.019699px;}
.ls4{letter-spacing:0.021238px;}
.ls6{letter-spacing:0.021282px;}
.ls5{letter-spacing:34.015846px;}
.ls0{letter-spacing:1203.128893px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(83,129,53),0 0.015em rgb(83,129,53),0.015em 0 rgb(83,129,53),0 -0.015em  rgb(83,129,53);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(83,129,53);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5{word-spacing:-32.418587px;}
.ws1{word-spacing:-21.059992px;}
.ws9{word-spacing:-18.021231px;}
.ws8{word-spacing:-17.999993px;}
.ws6{word-spacing:-16.613273px;}
.ws0{word-spacing:-16.579693px;}
.ws4{word-spacing:-15.011994px;}
.ws3{word-spacing:-14.939994px;}
.ws2{word-spacing:-14.374074px;}
.ws7{word-spacing:0.000000px;}
._2{margin-left:-5.302437px;}
._4{margin-left:-4.267693px;}
._3{margin-left:-3.064657px;}
._1{margin-left:-1.118470px;}
._0{width:1.003097px;}
._d{width:2.517330px;}
._7{width:3.950123px;}
._a{width:5.133593px;}
._6{width:6.134637px;}
._5{width:7.597074px;}
._14{width:8.606497px;}
._f{width:10.039825px;}
._e{width:11.063061px;}
._10{width:12.103526px;}
._15{width:13.137553px;}
._11{width:14.223707px;}
._13{width:16.137518px;}
._12{width:17.679062px;}
._19{width:19.231730px;}
._c{width:20.461699px;}
._b{width:21.470955px;}
._1b{width:22.534827px;}
._1a{width:24.548258px;}
._1c{width:25.683970px;}
._1d{width:26.813285px;}
._1f{width:28.193438px;}
._20{width:29.235417px;}
._21{width:30.502075px;}
._23{width:31.633095px;}
._9{width:35.365237px;}
._1e{width:36.775177px;}
._22{width:40.258542px;}
._17{width:53.049257px;}
._18{width:54.090489px;}
._8{width:75.274746px;}
._24{width:77.524979px;}
._16{width:80.825099px;}
.fc1{color:rgb(64,64,64);}
.fc2{color:rgb(255,255,255);}
.fc9{color:rgb(51,51,51);}
.fcb{color:rgb(0,176,80);}
.fc3{color:rgb(31,73,124);}
.fc0{color:rgb(0,0,0);}
.fc8{color:rgb(44,62,80);}
.fc4{color:rgb(192,0,0);}
.fc5{color:rgb(0,112,192);}
.fc6{color:rgb(83,129,53);}
.fcd{color:transparent;}
.fc7{color:rgb(0,32,96);}
.fca{color:rgb(0,0,255);}
.fcc{color:rgb(0,101,204);}
.fs5{font-size:48.239981px;}
.fs2{font-size:53.999978px;}
.fs0{font-size:59.759976px;}
.fs1{font-size:66.239974px;}
.fs4{font-size:71.999971px;}
.fs3{font-size:84.239966px;}
.y3f{bottom:-0.001010px;}
.y0{bottom:0.000000px;}
.y29{bottom:0.000003px;}
.y1b{bottom:3.599120px;}
.ya{bottom:3.960038px;}
.y18{bottom:4.319120px;}
.y16{bottom:5.039120px;}
.yb{bottom:32.700287px;}
.y9{bottom:50.700240px;}
.y7{bottom:54.660278px;}
.y8{bottom:55.200278px;}
.yab{bottom:102.899959px;}
.y14c{bottom:109.019956px;}
.yb5{bottom:111.359955px;}
.y100{bottom:118.919952px;}
.y12f{bottom:126.839949px;}
.y67{bottom:128.819948px;}
.yaa{bottom:133.859946px;}
.y14b{bottom:139.979944px;}
.y5{bottom:140.339944px;}
.yb4{bottom:142.499943px;}
.y28{bottom:143.040240px;}
.yff{bottom:149.879940px;}
.y12e{bottom:157.619937px;}
.y66{bottom:159.779936px;}
.ya9{bottom:164.999934px;}
.y14a{bottom:171.119932px;}
.yb3{bottom:173.639931px;}
.yfe{bottom:181.019928px;}
.y95{bottom:185.879926px;}
.y12d{bottom:188.759924px;}
.y122{bottom:188.939924px;}
.y65{bottom:190.739924px;}
.ya8{bottom:195.959922px;}
.y82{bottom:199.739920px;}
.y149{bottom:202.079919px;}
.yb2{bottom:204.959918px;}
.ye3{bottom:206.219918px;}
.yfd{bottom:211.979915px;}
.y94{bottom:217.019913px;}
.y12c{bottom:219.899912px;}
.y121{bottom:220.079912px;}
.y113{bottom:225.299910px;}
.yb1{bottom:225.659910px;}
.ya7{bottom:227.099909px;}
.y81{bottom:230.699908px;}
.y148{bottom:233.219907px;}
.y64{bottom:235.739906px;}
.ye2{bottom:237.359905px;}
.yfc{bottom:243.119903px;}
.y49{bottom:246.899901px;}
.y93{bottom:247.979901px;}
.y12b{bottom:250.859900px;}
.y120{bottom:251.039900px;}
.y112{bottom:256.259897px;}
.ya6{bottom:258.059897px;}
.yc9{bottom:260.399896px;}
.y80{bottom:261.839895px;}
.y48{bottom:264.179894px;}
.y147{bottom:264.359894px;}
.ye1{bottom:268.319893px;}
.yfb{bottom:274.079890px;}
.y92{bottom:279.119888px;}
.yc8{bottom:281.099888px;}
.y47{bottom:281.459887px;}
.y12a{bottom:281.639887px;}
.y11f{bottom:282.179887px;}
.y63{bottom:282.359887px;}
.y111{bottom:287.399885px;}
.y27{bottom:287.579885px;}
.ya5{bottom:289.199884px;}
.y7f{bottom:292.799883px;}
.yfa{bottom:294.779882px;}
.y146{bottom:295.679882px;}
.y46{bottom:298.739881px;}
.ye0{bottom:299.459880px;}
.y91{bottom:310.079876px;}
.y129{bottom:312.599875px;}
.y11e{bottom:313.139875px;}
.y62{bottom:313.319875px;}
.y45{bottom:316.019874px;}
.yf9{bottom:316.379873px;}
.y110{bottom:318.359873px;}
.ya4{bottom:320.159872px;}
.y145{bottom:326.639869px;}
.y44{bottom:333.299867px;}
.y7e{bottom:335.459866px;}
.y90{bottom:341.219864px;}
.ydf{bottom:341.399863px;}
.y128{bottom:343.739863px;}
.y11d{bottom:344.279862px;}
.y61{bottom:344.459862px;}
.y10f{bottom:349.499860px;}
.ya3{bottom:351.299859px;}
.y144{bottom:357.779857px;}
.yf8{bottom:360.119856px;}
.y3d{bottom:363.899854px;}
.y7d{bottom:366.779853px;}
.y8f{bottom:372.179851px;}
.y127{bottom:374.699850px;}
.y11c{bottom:375.239850px;}
.y60{bottom:375.419850px;}
.y3c{bottom:379.739848px;}
.y10e{bottom:380.459848px;}
.ya2{bottom:382.259847px;}
.yde{bottom:385.319846px;}
.y143{bottom:388.919844px;}
.yf7{bottom:391.259843px;}
.y26{bottom:392.699843px;}
.y3b{bottom:397.019841px;}
.y7c{bottom:397.919841px;}
.y8e{bottom:403.139839px;}
.y126{bottom:405.839838px;}
.y11b{bottom:406.379837px;}
.y5f{bottom:406.559837px;}
.y10d{bottom:411.599835px;}
.ya1{bottom:413.399835px;}
.y3a{bottom:414.299834px;}
.ydd{bottom:416.279833px;}
.y142{bottom:420.059832px;}
.yf6{bottom:422.219831px;}
.y39{bottom:431.579827px;}
.ya0{bottom:434.099826px;}
.y25{bottom:436.439825px;}
.y125{bottom:436.979825px;}
.y11a{bottom:437.339825px;}
.y5e{bottom:437.519825px;}
.y7b{bottom:440.939824px;}
.y10c{bottom:442.559823px;}
.ydc{bottom:447.419821px;}
.y8d{bottom:448.319821px;}
.y38{bottom:448.859820px;}
.y141{bottom:451.379819px;}
.y24{bottom:451.739819px;}
.yf5{bottom:453.359819px;}
.y9f{bottom:455.519818px;}
.y37{bottom:465.959814px;}
.y23{bottom:467.039813px;}
.y124{bottom:468.299813px;}
.y5d{bottom:468.479813px;}
.y8c{bottom:471.899811px;}
.y7a{bottom:472.079811px;}
.y10b{bottom:473.699811px;}
.ydb{bottom:478.379809px;}
.y22{bottom:481.079808px;}
.y140{bottom:482.159807px;}
.y36{bottom:483.239807px;}
.yf4{bottom:484.319806px;}
.y8b{bottom:495.839802px;}
.y9e{bottom:499.259800px;}
.y119{bottom:499.439800px;}
.y5c{bottom:499.619800px;}
.y35{bottom:500.519800px;}
.y79{bottom:503.219799px;}
.y10a{bottom:504.659798px;}
.yda{bottom:509.519796px;}
.y13f{bottom:512.759795px;}
.yf3{bottom:515.459794px;}
.y8a{bottom:516.539793px;}
.y34{bottom:517.799793px;}
.y21{bottom:523.559791px;}
.y9d{bottom:530.399788px;}
.y5b{bottom:530.579788px;}
.y33{bottom:535.079786px;}
.y109{bottom:535.799786px;}
.y89{bottom:537.239785px;}
.yd9{bottom:540.479784px;}
.y13e{bottom:544.079782px;}
.y78{bottom:546.419781px;}
.y32{bottom:552.179779px;}
.y9c{bottom:561.359775px;}
.y118{bottom:561.539775px;}
.y5a{bottom:561.719775px;}
.y20{bottom:566.039774px;}
.y108{bottom:566.759773px;}
.yf2{bottom:567.119773px;}
.y88{bottom:568.559773px;}
.y31{bottom:569.459772px;}
.yd8{bottom:571.619771px;}
.y13d{bottom:575.219770px;}
.y77{bottom:577.379769px;}
.y30{bottom:586.739765px;}
.yf1{bottom:588.899764px;}
.y9b{bottom:592.499763px;}
.y59{bottom:592.679763px;}
.y123{bottom:592.859763px;}
.y107{bottom:597.899761px;}
.y87{bottom:599.699760px;}
.yd7{bottom:602.579759px;}
.y2f{bottom:604.019758px;}
.y13c{bottom:606.359757px;}
.y1f{bottom:608.519757px;}
.yc7{bottom:613.019755px;}
.y2e{bottom:621.299751px;}
.y9a{bottom:623.459751px;}
.y117{bottom:623.639751px;}
.y58{bottom:623.819750px;}
.y1e{bottom:624.179750px;}
.y106{bottom:628.859748px;}
.y86{bottom:630.839748px;}
.yc6{bottom:631.379747px;}
.yf0{bottom:632.639747px;}
.yd6{bottom:633.719747px;}
.y13b{bottom:637.139745px;}
.y2d{bottom:638.579745px;}
.y76{bottom:639.479744px;}
.yc5{bottom:648.659741px;}
.y99{bottom:654.599738px;}
.y57{bottom:654.779738px;}
.y2c{bottom:655.679738px;}
.y105{bottom:659.999736px;}
.y85{bottom:661.799735px;}
.yef{bottom:663.599735px;}
.yd5{bottom:664.679734px;}
.y116{bottom:668.639733px;}
.y75{bottom:670.619732px;}
.y2a{bottom:671.699731px;}
.y2b{bottom:672.959731px;}
.y1d{bottom:674.399730px;}
.yc4{bottom:676.919729px;}
.y84{bottom:682.499727px;}
.y98{bottom:685.559726px;}
.y56{bottom:685.919726px;}
.y104{bottom:690.959724px;}
.yee{bottom:694.739722px;}
.yd4{bottom:695.819722px;}
.y15{bottom:695.820600px;}
.y17{bottom:696.360600px;}
.y1a{bottom:697.620600px;}
.y154{bottom:699.239720px;}
.y13a{bottom:699.419720px;}
.y83{bottom:700.499720px;}
.y19{bottom:700.859720px;}
.y74{bottom:701.579719px;}
.y1c{bottom:702.479719px;}
.yc3{bottom:707.879717px;}
.y115{bottom:715.079714px;}
.y55{bottom:716.879713px;}
.yed{bottom:725.699710px;}
.y153{bottom:730.199708px;}
.y97{bottom:730.559708px;}
.y73{bottom:732.539707px;}
.y103{bottom:735.959706px;}
.yc2{bottom:739.019704px;}
.y114{bottom:746.039702px;}
.y14{bottom:748.379701px;}
.yec{bottom:756.839697px;}
.y139{bottom:761.339695px;}
.y54{bottom:761.879695px;}
.y72{bottom:763.679695px;}
.yc1{bottom:769.979692px;}
.yd3{bottom:770.159692px;}
.y96{bottom:777.179689px;}
.y13{bottom:780.779688px;}
.y102{bottom:782.039687px;}
.yeb{bottom:787.799685px;}
.y138{bottom:792.479683px;}
.y152{bottom:792.659683px;}
.y71{bottom:794.639682px;}
.yc0{bottom:801.119680px;}
.y53{bottom:808.139677px;}
.y12{bottom:813.179675px;}
.yea{bottom:818.939672px;}
.y137{bottom:823.439671px;}
.y151{bottom:823.619671px;}
.y70{bottom:825.779670px;}
.ybf{bottom:831.899667px;}
.yd2{bottom:832.259667px;}
.y52{bottom:839.099664px;}
.y101{bottom:844.139662px;}
.y11{bottom:845.579662px;}
.ye9{bottom:849.899660px;}
.y136{bottom:854.579658px;}
.y150{bottom:854.759658px;}
.y6f{bottom:856.739657px;}
.yd1{bottom:863.219655px;}
.y51{bottom:870.239652px;}
.ye8{bottom:870.779652px;}
.ybe{bottom:875.279650px;}
.yf{bottom:880.679648px;}
.y135{bottom:885.719646px;}
.y10{bottom:886.619645px;}
.y6e{bottom:887.879645px;}
.ye7{bottom:892.559643px;}
.y50{bottom:901.199640px;}
.yd0{bottom:906.059638px;}
.ybd{bottom:906.239638px;}
.y14f{bottom:916.859633px;}
.y134{bottom:917.039633px;}
.y6d{bottom:918.839632px;}
.ye{bottom:925.499630px;}
.y4f{bottom:932.339627px;}
.ye6{bottom:935.399626px;}
.ycf{bottom:937.199625px;}
.ybc{bottom:937.379625px;}
.y14e{bottom:947.819621px;}
.y133{bottom:947.999621px;}
.yd{bottom:961.679615px;}
.y4e{bottom:963.299615px;}
.y6c{bottom:963.839614px;}
.ye5{bottom:966.719613px;}
.yce{bottom:968.159613px;}
.ybb{bottom:968.339613px;}
.y132{bottom:978.959608px;}
.y4d{bottom:994.439602px;}
.yc{bottom:997.859601px;}
.ycd{bottom:999.299600px;}
.yba{bottom:999.479600px;}
.yb0{bottom:1005.239598px;}
.y6b{bottom:1009.739596px;}
.y14d{bottom:1009.919596px;}
.y131{bottom:1010.099596px;}
.y3e{bottom:1024.140600px;}
.y4c{bottom:1025.399590px;}
.yaf{bottom:1026.299589px;}
.ye4{bottom:1029.179588px;}
.ycc{bottom:1030.259588px;}
.yb9{bottom:1030.439588px;}
.y6a{bottom:1041.059584px;}
.y130{bottom:1041.419583px;}
.yae{bottom:1043.579583px;}
.y43{bottom:1046.459581px;}
.y4b{bottom:1056.539577px;}
.yb8{bottom:1061.399575px;}
.ycb{bottom:1064.639574px;}
.y42{bottom:1065.539574px;}
.yad{bottom:1072.019571px;}
.y69{bottom:1072.199571px;}
.yb7{bottom:1082.279567px;}
.y41{bottom:1084.439566px;}
.yca{bottom:1099.379560px;}
.y4a{bottom:1101.539559px;}
.yac{bottom:1103.159559px;}
.y40{bottom:1103.339559px;}
.yb6{bottom:1104.059558px;}
.y68{bottom:1108.739557px;}
.y4{bottom:1129.259548px;}
.y6{bottom:1157.519537px;}
.y3{bottom:1160.399536px;}
.y2{bottom:1177.679529px;}
.y1{bottom:1194.959522px;}
.h12{height:12.060000px;}
.h13{height:14.760000px;}
.h4{height:18.720000px;}
.hc{height:20.160000px;}
.ha{height:20.700000px;}
.h8{height:32.693893px;}
.h3{height:36.597642px;}
.h11{height:36.624009px;}
.he{height:37.520493px;}
.h10{height:39.339828px;}
.h5{height:39.830258px;}
.h1{height:41.522679px;}
.h14{height:43.536076px;}
.hd{height:44.149201px;}
.hf{height:44.893107px;}
.h2{height:46.025138px;}
.h7{height:48.796855px;}
.h9{height:50.027324px;}
.h15{height:52.417948px;}
.h16{height:52.453104px;}
.h6{height:57.092321px;}
.hb{height:58.531969px;}
.h0{height:1263.000000px;}
.w5{width:3.600000px;}
.w9{width:4.680000px;}
.w2{width:4.860000px;}
.w8{width:6.840000px;}
.w7{width:14.580000px;}
.w3{width:20.880000px;}
.w6{width:33.840000px;}
.w4{width:58.500000px;}
.w1{width:892.500000px;}
.w0{width:892.830000px;}
.x0{left:0.000000px;}
.x20{left:92.699963px;}
.x1e{left:94.679962px;}
.x1d{left:97.379961px;}
.x1{left:100.439960px;}
.x1b{left:104.579958px;}
.x13{left:107.280000px;}
.x21{left:109.799956px;}
.x1c{left:112.319955px;}
.x7{left:118.259953px;}
.x10{left:123.658684px;}
.x4{left:124.739950px;}
.x14{left:128.160000px;}
.x2a{left:134.999946px;}
.xf{left:141.839943px;}
.x8{left:146.699288px;}
.x1f{left:151.379939px;}
.x2b{left:161.990931px;}
.x15{left:186.660000px;}
.x16{left:190.260000px;}
.xa{left:195.839922px;}
.x25{left:216.540000px;}
.x17{left:224.099910px;}
.x18{left:227.339909px;}
.x22{left:235.799859px;}
.x26{left:247.139901px;}
.x19{left:257.760000px;}
.x24{left:278.279630px;}
.x1a{left:280.259888px;}
.x23{left:286.019886px;}
.x2{left:295.019882px;}
.x12{left:301.678969px;}
.x11{left:365.218932px;}
.x9{left:398.879377px;}
.x27{left:442.080179px;}
.x5{left:458.639817px;}
.xb{left:509.759796px;}
.xc{left:515.879794px;}
.x3{left:675.539730px;}
.xd{left:691.559723px;}
.xe{left:697.319721px;}
.x28{left:705.960931px;}
.x29{left:782.999687px;}
.x6{left:788.220000px;}
@media print{
.v1{vertical-align:-1.919999pt;}
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.016533pt;}
.ls1{letter-spacing:0.017510pt;}
.ls4{letter-spacing:0.018878pt;}
.ls6{letter-spacing:0.018917pt;}
.ls5{letter-spacing:30.236308pt;}
.ls0{letter-spacing:1069.447905pt;}
.ws5{word-spacing:-28.816521pt;}
.ws1{word-spacing:-18.719993pt;}
.ws9{word-spacing:-16.018872pt;}
.ws8{word-spacing:-15.999994pt;}
.ws6{word-spacing:-14.767354pt;}
.ws0{word-spacing:-14.737505pt;}
.ws4{word-spacing:-13.343995pt;}
.ws3{word-spacing:-13.279995pt;}
.ws2{word-spacing:-12.776955pt;}
.ws7{word-spacing:0.000000pt;}
._2{margin-left:-4.713278pt;}
._4{margin-left:-3.793505pt;}
._3{margin-left:-2.724139pt;}
._1{margin-left:-0.994195pt;}
._0{width:0.891642pt;}
._d{width:2.237627pt;}
._7{width:3.511220pt;}
._a{width:4.563194pt;}
._6{width:5.453011pt;}
._5{width:6.752954pt;}
._14{width:7.650219pt;}
._f{width:8.924289pt;}
._e{width:9.833832pt;}
._10{width:10.758690pt;}
._15{width:11.677825pt;}
._11{width:12.643295pt;}
._13{width:14.344461pt;}
._12{width:15.714722pt;}
._19{width:17.094871pt;}
._c{width:18.188177pt;}
._b{width:19.085293pt;}
._1b{width:20.030958pt;}
._1a{width:21.820674pt;}
._1c{width:22.830196pt;}
._1d{width:23.834031pt;}
._1f{width:25.060834pt;}
._20{width:25.987038pt;}
._21{width:27.112955pt;}
._23{width:28.118307pt;}
._9{width:31.435766pt;}
._1e{width:32.689046pt;}
._22{width:35.785371pt;}
._17{width:47.154895pt;}
._18{width:48.080434pt;}
._8{width:66.910886pt;}
._24{width:68.911093pt;}
._16{width:71.844533pt;}
.fs5{font-size:42.879983pt;}
.fs2{font-size:47.999981pt;}
.fs0{font-size:53.119979pt;}
.fs1{font-size:58.879976pt;}
.fs4{font-size:63.999974pt;}
.fs3{font-size:74.879970pt;}
.y3f{bottom:-0.000897pt;}
.y0{bottom:0.000000pt;}
.y29{bottom:0.000002pt;}
.y1b{bottom:3.199217pt;}
.ya{bottom:3.520034pt;}
.y18{bottom:3.839218pt;}
.y16{bottom:4.479217pt;}
.yb{bottom:29.066922pt;}
.y9{bottom:45.066880pt;}
.y7{bottom:48.586914pt;}
.y8{bottom:49.066914pt;}
.yab{bottom:91.466630pt;}
.y14c{bottom:96.906628pt;}
.yb5{bottom:98.986627pt;}
.y100{bottom:105.706624pt;}
.y12f{bottom:112.746622pt;}
.y67{bottom:114.506621pt;}
.yaa{bottom:118.986619pt;}
.y14b{bottom:124.426617pt;}
.y5{bottom:124.746617pt;}
.yb4{bottom:126.666616pt;}
.y28{bottom:127.146880pt;}
.yff{bottom:133.226613pt;}
.y12e{bottom:140.106611pt;}
.y66{bottom:142.026610pt;}
.ya9{bottom:146.666608pt;}
.y14a{bottom:152.106606pt;}
.yb3{bottom:154.346605pt;}
.yfe{bottom:160.906602pt;}
.y95{bottom:165.226601pt;}
.y12d{bottom:167.786600pt;}
.y122{bottom:167.946599pt;}
.y65{bottom:169.546599pt;}
.ya8{bottom:174.186597pt;}
.y82{bottom:177.546596pt;}
.y149{bottom:179.626595pt;}
.yb2{bottom:182.186594pt;}
.ye3{bottom:183.306593pt;}
.yfd{bottom:188.426591pt;}
.y94{bottom:192.906590pt;}
.y12c{bottom:195.466588pt;}
.y121{bottom:195.626588pt;}
.y113{bottom:200.266587pt;}
.yb1{bottom:200.586586pt;}
.ya7{bottom:201.866586pt;}
.y81{bottom:205.066585pt;}
.y148{bottom:207.306584pt;}
.y64{bottom:209.546583pt;}
.ye2{bottom:210.986582pt;}
.yfc{bottom:216.106580pt;}
.y49{bottom:219.466579pt;}
.y93{bottom:220.426578pt;}
.y12b{bottom:222.986577pt;}
.y120{bottom:223.146577pt;}
.y112{bottom:227.786576pt;}
.ya6{bottom:229.386575pt;}
.yc9{bottom:231.466574pt;}
.y80{bottom:232.746574pt;}
.y48{bottom:234.826573pt;}
.y147{bottom:234.986573pt;}
.ye1{bottom:238.506571pt;}
.yfb{bottom:243.626569pt;}
.y92{bottom:248.106567pt;}
.yc8{bottom:249.866567pt;}
.y47{bottom:250.186567pt;}
.y12a{bottom:250.346567pt;}
.y11f{bottom:250.826566pt;}
.y63{bottom:250.986566pt;}
.y111{bottom:255.466564pt;}
.y27{bottom:255.626564pt;}
.ya5{bottom:257.066564pt;}
.y7f{bottom:260.266563pt;}
.yfa{bottom:262.026562pt;}
.y146{bottom:262.826562pt;}
.y46{bottom:265.546560pt;}
.ye0{bottom:266.186560pt;}
.y91{bottom:275.626556pt;}
.y129{bottom:277.866556pt;}
.y11e{bottom:278.346555pt;}
.y62{bottom:278.506555pt;}
.y45{bottom:280.906554pt;}
.yf9{bottom:281.226554pt;}
.y110{bottom:282.986553pt;}
.ya4{bottom:284.586553pt;}
.y145{bottom:290.346551pt;}
.y44{bottom:296.266548pt;}
.y7e{bottom:298.186547pt;}
.y90{bottom:303.306545pt;}
.ydf{bottom:303.466545pt;}
.y128{bottom:305.546544pt;}
.y11d{bottom:306.026544pt;}
.y61{bottom:306.186544pt;}
.y10f{bottom:310.666542pt;}
.ya3{bottom:312.266542pt;}
.y144{bottom:318.026539pt;}
.yf8{bottom:320.106539pt;}
.y3d{bottom:323.466537pt;}
.y7d{bottom:326.026536pt;}
.y8f{bottom:330.826534pt;}
.y127{bottom:333.066533pt;}
.y11c{bottom:333.546533pt;}
.y60{bottom:333.706533pt;}
.y3c{bottom:337.546532pt;}
.y10e{bottom:338.186531pt;}
.ya2{bottom:339.786531pt;}
.yde{bottom:342.506530pt;}
.y143{bottom:345.706528pt;}
.yf7{bottom:347.786528pt;}
.y26{bottom:349.066527pt;}
.y3b{bottom:352.906526pt;}
.y7c{bottom:353.706525pt;}
.y8e{bottom:358.346523pt;}
.y126{bottom:360.746522pt;}
.y11b{bottom:361.226522pt;}
.y5f{bottom:361.386522pt;}
.y10d{bottom:365.866520pt;}
.ya1{bottom:367.466520pt;}
.y3a{bottom:368.266519pt;}
.ydd{bottom:370.026519pt;}
.y142{bottom:373.386517pt;}
.yf6{bottom:375.306517pt;}
.y39{bottom:383.626513pt;}
.ya0{bottom:385.866512pt;}
.y25{bottom:387.946511pt;}
.y125{bottom:388.426511pt;}
.y11a{bottom:388.746511pt;}
.y5e{bottom:388.906511pt;}
.y7b{bottom:391.946510pt;}
.y10c{bottom:393.386509pt;}
.ydc{bottom:397.706508pt;}
.y8d{bottom:398.506507pt;}
.y38{bottom:398.986507pt;}
.y141{bottom:401.226506pt;}
.y24{bottom:401.546506pt;}
.yf5{bottom:402.986505pt;}
.y9f{bottom:404.906505pt;}
.y37{bottom:414.186501pt;}
.y23{bottom:415.146501pt;}
.y124{bottom:416.266500pt;}
.y5d{bottom:416.426500pt;}
.y8c{bottom:419.466499pt;}
.y7a{bottom:419.626499pt;}
.y10b{bottom:421.066498pt;}
.ydb{bottom:425.226497pt;}
.y22{bottom:427.626496pt;}
.y140{bottom:428.586495pt;}
.y36{bottom:429.546495pt;}
.yf4{bottom:430.506494pt;}
.y8b{bottom:440.746490pt;}
.y9e{bottom:443.786489pt;}
.y119{bottom:443.946489pt;}
.y5c{bottom:444.106489pt;}
.y35{bottom:444.906489pt;}
.y79{bottom:447.306488pt;}
.y10a{bottom:448.586487pt;}
.yda{bottom:452.906486pt;}
.y13f{bottom:455.786484pt;}
.yf3{bottom:458.186483pt;}
.y8a{bottom:459.146483pt;}
.y34{bottom:460.266483pt;}
.y21{bottom:465.386481pt;}
.y9d{bottom:471.466478pt;}
.y5b{bottom:471.626478pt;}
.y33{bottom:475.626476pt;}
.y109{bottom:476.266476pt;}
.y89{bottom:477.546476pt;}
.yd9{bottom:480.426474pt;}
.y13e{bottom:483.626473pt;}
.y78{bottom:485.706472pt;}
.y32{bottom:490.826470pt;}
.y9c{bottom:498.986467pt;}
.y118{bottom:499.146467pt;}
.y5a{bottom:499.306467pt;}
.y20{bottom:503.146465pt;}
.y108{bottom:503.786465pt;}
.yf2{bottom:504.106465pt;}
.y88{bottom:505.386465pt;}
.y31{bottom:506.186464pt;}
.yd8{bottom:508.106463pt;}
.y13d{bottom:511.306462pt;}
.y77{bottom:513.226461pt;}
.y30{bottom:521.546458pt;}
.yf1{bottom:523.466457pt;}
.y9b{bottom:526.666456pt;}
.y59{bottom:526.826456pt;}
.y123{bottom:526.986456pt;}
.y107{bottom:531.466454pt;}
.y87{bottom:533.066453pt;}
.yd7{bottom:535.626452pt;}
.y2f{bottom:536.906452pt;}
.y13c{bottom:538.986451pt;}
.y1f{bottom:540.906450pt;}
.yc7{bottom:544.906449pt;}
.y2e{bottom:552.266446pt;}
.y9a{bottom:554.186445pt;}
.y117{bottom:554.346445pt;}
.y58{bottom:554.506445pt;}
.y1e{bottom:554.826445pt;}
.y106{bottom:558.986443pt;}
.y86{bottom:560.746442pt;}
.yc6{bottom:561.226442pt;}
.yf0{bottom:562.346442pt;}
.yd6{bottom:563.306441pt;}
.y13b{bottom:566.346440pt;}
.y2d{bottom:567.626440pt;}
.y76{bottom:568.426439pt;}
.yc5{bottom:576.586436pt;}
.y99{bottom:581.866434pt;}
.y57{bottom:582.026434pt;}
.y2c{bottom:582.826434pt;}
.y105{bottom:586.666432pt;}
.y85{bottom:588.266431pt;}
.yef{bottom:589.866431pt;}
.yd5{bottom:590.826430pt;}
.y116{bottom:594.346429pt;}
.y75{bottom:596.106428pt;}
.y2a{bottom:597.066428pt;}
.y2b{bottom:598.186427pt;}
.y1d{bottom:599.466427pt;}
.yc4{bottom:601.706426pt;}
.y84{bottom:606.666424pt;}
.y98{bottom:609.386423pt;}
.y56{bottom:609.706423pt;}
.y104{bottom:614.186421pt;}
.yee{bottom:617.546420pt;}
.yd4{bottom:618.506419pt;}
.y15{bottom:618.507200pt;}
.y17{bottom:618.987200pt;}
.y1a{bottom:620.107200pt;}
.y154{bottom:621.546418pt;}
.y13a{bottom:621.706418pt;}
.y83{bottom:622.666418pt;}
.y19{bottom:622.986417pt;}
.y74{bottom:623.626417pt;}
.y1c{bottom:624.426417pt;}
.yc3{bottom:629.226415pt;}
.y115{bottom:635.626412pt;}
.y55{bottom:637.226412pt;}
.yed{bottom:645.066409pt;}
.y153{bottom:649.066407pt;}
.y97{bottom:649.386407pt;}
.y73{bottom:651.146406pt;}
.y103{bottom:654.186405pt;}
.yc2{bottom:656.906404pt;}
.y114{bottom:663.146401pt;}
.y14{bottom:665.226401pt;}
.yec{bottom:672.746398pt;}
.y139{bottom:676.746396pt;}
.y54{bottom:677.226396pt;}
.y72{bottom:678.826395pt;}
.yc1{bottom:684.426393pt;}
.yd3{bottom:684.586393pt;}
.y96{bottom:690.826390pt;}
.y13{bottom:694.026389pt;}
.y102{bottom:695.146389pt;}
.yeb{bottom:700.266387pt;}
.y138{bottom:704.426385pt;}
.y152{bottom:704.586385pt;}
.y71{bottom:706.346384pt;}
.yc0{bottom:712.106382pt;}
.y53{bottom:718.346379pt;}
.y12{bottom:722.826378pt;}
.yea{bottom:727.946375pt;}
.y137{bottom:731.946374pt;}
.y151{bottom:732.106374pt;}
.y70{bottom:734.026373pt;}
.ybf{bottom:739.466371pt;}
.yd2{bottom:739.786371pt;}
.y52{bottom:745.866368pt;}
.y101{bottom:750.346367pt;}
.y11{bottom:751.626366pt;}
.ye9{bottom:755.466364pt;}
.y136{bottom:759.626363pt;}
.y150{bottom:759.786363pt;}
.y6f{bottom:761.546362pt;}
.yd1{bottom:767.306360pt;}
.y51{bottom:773.546357pt;}
.ye8{bottom:774.026357pt;}
.ybe{bottom:778.026355pt;}
.yf{bottom:782.826354pt;}
.y135{bottom:787.306352pt;}
.y10{bottom:788.106351pt;}
.y6e{bottom:789.226351pt;}
.ye7{bottom:793.386349pt;}
.y50{bottom:801.066346pt;}
.yd0{bottom:805.386345pt;}
.ybd{bottom:805.546344pt;}
.y14f{bottom:814.986341pt;}
.y134{bottom:815.146341pt;}
.y6d{bottom:816.746340pt;}
.ye{bottom:822.666338pt;}
.y4f{bottom:828.746335pt;}
.ye6{bottom:831.466334pt;}
.ycf{bottom:833.066333pt;}
.ybc{bottom:833.226333pt;}
.y14e{bottom:842.506330pt;}
.y133{bottom:842.666330pt;}
.yd{bottom:854.826325pt;}
.y4e{bottom:856.266324pt;}
.y6c{bottom:856.746324pt;}
.ye5{bottom:859.306323pt;}
.yce{bottom:860.586322pt;}
.ybb{bottom:860.746322pt;}
.y132{bottom:870.186319pt;}
.y4d{bottom:883.946313pt;}
.yc{bottom:886.986312pt;}
.ycd{bottom:888.266311pt;}
.yba{bottom:888.426311pt;}
.yb0{bottom:893.546309pt;}
.y6b{bottom:897.546308pt;}
.y14d{bottom:897.706308pt;}
.y131{bottom:897.866308pt;}
.y3e{bottom:910.347200pt;}
.y4c{bottom:911.466302pt;}
.yaf{bottom:912.266302pt;}
.ye4{bottom:914.826301pt;}
.ycc{bottom:915.786300pt;}
.yb9{bottom:915.946300pt;}
.y6a{bottom:925.386297pt;}
.y130{bottom:925.706296pt;}
.yae{bottom:927.626296pt;}
.y43{bottom:930.186295pt;}
.y4b{bottom:939.146291pt;}
.yb8{bottom:943.466289pt;}
.ycb{bottom:946.346288pt;}
.y42{bottom:947.146288pt;}
.yad{bottom:952.906286pt;}
.y69{bottom:953.066285pt;}
.yb7{bottom:962.026282pt;}
.y41{bottom:963.946281pt;}
.yca{bottom:977.226276pt;}
.y4a{bottom:979.146275pt;}
.yac{bottom:980.586274pt;}
.y40{bottom:980.746274pt;}
.yb6{bottom:981.386274pt;}
.y68{bottom:985.546272pt;}
.y4{bottom:1003.786265pt;}
.y6{bottom:1028.906255pt;}
.y3{bottom:1031.466254pt;}
.y2{bottom:1046.826248pt;}
.y1{bottom:1062.186242pt;}
.h12{height:10.720000pt;}
.h13{height:13.120000pt;}
.h4{height:16.640000pt;}
.hc{height:17.920000pt;}
.ha{height:18.400000pt;}
.h8{height:29.061238pt;}
.h3{height:32.531237pt;}
.h11{height:32.554674pt;}
.he{height:33.351549pt;}
.h10{height:34.968736pt;}
.h5{height:35.404673pt;}
.h1{height:36.909048pt;}
.h14{height:38.698735pt;}
.hd{height:39.243734pt;}
.hf{height:39.904984pt;}
.h2{height:40.911234pt;}
.h7{height:43.374983pt;}
.h9{height:44.468732pt;}
.h15{height:46.593731pt;}
.h16{height:46.624981pt;}
.h6{height:50.748730pt;}
.hb{height:52.028417pt;}
.h0{height:1122.666667pt;}
.w5{width:3.200000pt;}
.w9{width:4.160000pt;}
.w2{width:4.320000pt;}
.w8{width:6.080000pt;}
.w7{width:12.960000pt;}
.w3{width:18.560000pt;}
.w6{width:30.080000pt;}
.w4{width:52.000000pt;}
.w1{width:793.333333pt;}
.w0{width:793.626667pt;}
.x0{left:0.000000pt;}
.x20{left:82.399967pt;}
.x1e{left:84.159966pt;}
.x1d{left:86.559965pt;}
.x1{left:89.279964pt;}
.x1b{left:92.959963pt;}
.x13{left:95.360000pt;}
.x21{left:97.599961pt;}
.x1c{left:99.839960pt;}
.x7{left:105.119958pt;}
.x10{left:109.918830pt;}
.x4{left:110.879956pt;}
.x14{left:113.920000pt;}
.x2a{left:119.999952pt;}
.xf{left:126.079950pt;}
.x8{left:130.399367pt;}
.x1f{left:134.559946pt;}
.x2b{left:143.991939pt;}
.x15{left:165.920000pt;}
.x16{left:169.120000pt;}
.xa{left:174.079930pt;}
.x25{left:192.480000pt;}
.x17{left:199.199920pt;}
.x18{left:202.079919pt;}
.x22{left:209.599875pt;}
.x26{left:219.679912pt;}
.x19{left:229.120000pt;}
.x24{left:247.359671pt;}
.x1a{left:249.119900pt;}
.x23{left:254.239898pt;}
.x2{left:262.239895pt;}
.x12{left:268.159083pt;}
.x11{left:324.639051pt;}
.x9{left:354.559447pt;}
.x27{left:392.960159pt;}
.x5{left:407.679837pt;}
.xb{left:453.119819pt;}
.xc{left:458.559817pt;}
.x3{left:600.479760pt;}
.xd{left:614.719754pt;}
.xe{left:619.839752pt;}
.x28{left:627.520828pt;}
.x29{left:695.999722pt;}
.x6{left:700.640000pt;}
}




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