
    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_a9b352da2501308213b5de12.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.079000;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_bc8c5efcddd26e56f7b2b97f.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.062000;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_8cf691c4f380f356a63a47a0.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.061000;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_957c9941ad0bac099d632edc.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.062000;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_6e65df26c7130b1744bb38f2.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.061000;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_0e3ef36a77288e1897142441.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.079000;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_ac884b084f0c77242a8cfe40.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.061000;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_93a9d541b38bfcbf7b16329d.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.079000;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_e983b236ed3a42276f2a13d5.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.123000;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_8f47079f8feecd6d95c4a047.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.954000;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:ffb;src:url('chunks/assets/font_784b0c77062ac618e4a8eedc.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.079000;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:ffc;src:url('chunks/assets/font_db2aacaa37c7b7063318fffd.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.123000;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:ffd;src:url('chunks/assets/font_4df0030edb55a18653c322d7.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.140000;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:ffe;src:url('chunks/assets/font_18ff8b0efaa11ead7bcd26d3.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.061000;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:fff;src:url('chunks/assets/font_f18e0b8cd068d8410ef630aa.woff2')format("woff");}.fff{font-family:fff;line-height:1.089000;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.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4{word-spacing:-39.581998px;}
.ws9{word-spacing:-22.751999px;}
.ws1{word-spacing:-17.999999px;}
.ws0{word-spacing:-16.492499px;}
.ws5{word-spacing:-14.996249px;}
.ws3{word-spacing:-12.000262px;}
.ws8{word-spacing:-10.500723px;}
.ws6{word-spacing:-6.993414px;}
.ws7{word-spacing:-5.899237px;}
.ws2{word-spacing:0.000000px;}
._36{margin-left:-1.002420px;}
._c{width:1.642802px;}
._e{width:3.267457px;}
._21{width:4.718414px;}
._3b{width:5.819075px;}
._15{width:6.865622px;}
._2{width:8.209794px;}
._2d{width:9.240189px;}
._3{width:11.270764px;}
._16{width:13.057257px;}
._6{width:15.226378px;}
._1{width:18.046123px;}
._26{width:19.585123px;}
._0{width:20.737628px;}
._5{width:22.796355px;}
._39{width:23.915300px;}
._23{width:25.810137px;}
._2f{width:27.537634px;}
._29{width:28.669759px;}
._4{width:30.033634px;}
._3d{width:31.325005px;}
._1c{width:33.305052px;}
._2b{width:34.876246px;}
._33{width:36.874108px;}
._11{width:38.119830px;}
._20{width:39.444266px;}
._22{width:40.515341px;}
._7{width:41.597424px;}
._1f{width:43.215628px;}
._3a{width:44.907569px;}
._24{width:46.921646px;}
._44{width:48.686256px;}
._17{width:51.056252px;}
._27{width:52.059247px;}
._4f{width:53.964627px;}
._40{width:55.672186px;}
._48{width:56.741702px;}
._2a{width:58.153259px;}
._1a{width:59.230027px;}
._13{width:60.451598px;}
._1b{width:61.657813px;}
._35{width:63.761790px;}
._38{width:64.812846px;}
._18{width:66.602251px;}
._45{width:67.602730px;}
._31{width:68.886016px;}
._1e{width:69.914068px;}
._32{width:71.120698px;}
._58{width:72.607469px;}
._8{width:73.713345px;}
._9{width:74.829282px;}
._46{width:76.422365px;}
._2c{width:77.482398px;}
._1d{width:79.235094px;}
._10{width:80.244425px;}
._41{width:81.377096px;}
._4e{width:84.042215px;}
._47{width:85.445593px;}
._2e{width:90.125737px;}
._12{width:92.038228px;}
._25{width:93.631835px;}
._b{width:94.794379px;}
._f{width:100.559034px;}
._3f{width:104.717786px;}
._52{width:105.734519px;}
._34{width:114.712889px;}
._3c{width:124.289510px;}
._53{width:127.656670px;}
._d{width:132.765588px;}
._4b{width:134.718311px;}
._30{width:139.178363px;}
._4a{width:145.856967px;}
._28{width:148.402234px;}
._5a{width:154.531617px;}
._59{width:156.109920px;}
._50{width:157.848263px;}
._4c{width:159.753744px;}
._56{width:168.900238px;}
._a{width:170.249072px;}
._49{width:173.207457px;}
._42{width:183.073605px;}
._37{width:197.710489px;}
._54{width:207.110923px;}
._43{width:210.350329px;}
._4d{width:248.953390px;}
._55{width:257.249501px;}
._14{width:267.230213px;}
._57{width:272.467493px;}
._51{width:293.563169px;}
._19{width:295.635724px;}
._3e{width:303.074334px;}
.fc3{color:transparent;}
.fc2{color:rgb(1,52,44);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,76,62);}
.fs7{font-size:18.668471px;}
.fs6{font-size:27.973655px;}
.fs8{font-size:29.739314px;}
.fs9{font-size:42.002892px;}
.fs3{font-size:48.001047px;}
.fs4{font-size:53.999998px;}
.fs5{font-size:59.984997px;}
.fs1{font-size:65.969996px;}
.fs2{font-size:71.999997px;}
.fs0{font-size:83.969997px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000021px;}
.y142{bottom:5.720482px;}
.y141{bottom:15.633587px;}
.y140{bottom:25.546692px;}
.y13d{bottom:30.015019px;}
.y13f{bottom:35.459796px;}
.y13b{bottom:35.977753px;}
.y13e{bottom:45.372901px;}
.y13a{bottom:54.326772px;}
.y13c{bottom:55.199585px;}
.y134{bottom:63.446937px;}
.y139{bottom:71.458487px;}
.y52{bottom:72.667334px;}
.yb1{bottom:79.406277px;}
.y133{bottom:85.946936px;}
.yb0{bottom:101.906276px;}
.y2e{bottom:105.511280px;}
.y132{bottom:108.446935px;}
.yd4{bottom:109.198903px;}
.y9f{bottom:112.571347px;}
.yd6{bottom:119.468947px;}
.yaf{bottom:124.406275px;}
.y2d{bottom:128.011279px;}
.y131{bottom:130.946935px;}
.yd3{bottom:131.698903px;}
.y9e{bottom:135.071346px;}
.yd5{bottom:141.968946px;}
.y143{bottom:144.297559px;}
.yae{bottom:146.906274px;}
.y2c{bottom:150.511278px;}
.y130{bottom:153.446934px;}
.yd2{bottom:154.198902px;}
.y9d{bottom:157.571345px;}
.y2b{bottom:173.011277px;}
.y12f{bottom:175.946933px;}
.yd1{bottom:176.698901px;}
.y9c{bottom:180.071344px;}
.y84{bottom:180.675244px;}
.y95{bottom:192.956212px;}
.y2a{bottom:195.511276px;}
.y12e{bottom:198.446932px;}
.y86{bottom:199.089285px;}
.yd0{bottom:199.198900px;}
.y11d{bottom:202.029338px;}
.y9b{bottom:202.571344px;}
.y83{bottom:203.175244px;}
.y94{bottom:217.706211px;}
.y29{bottom:218.011275px;}
.y12d{bottom:220.946931px;}
.ycf{bottom:221.698899px;}
.y47{bottom:223.500123px;}
.y11c{bottom:224.529337px;}
.y9a{bottom:225.071343px;}
.y82{bottom:225.675243px;}
.y1c{bottom:239.570846px;}
.y151{bottom:239.814998px;}
.y28{bottom:240.511274px;}
.y12c{bottom:243.446930px;}
.yce{bottom:244.198898px;}
.y46{bottom:246.000122px;}
.y11b{bottom:247.029337px;}
.y99{bottom:247.571342px;}
.y81{bottom:248.175242px;}
.y1b{bottom:262.070845px;}
.y8f{bottom:262.331418px;}
.y27{bottom:263.011273px;}
.y12b{bottom:265.946929px;}
.ycd{bottom:266.698897px;}
.y45{bottom:268.500121px;}
.y137{bottom:269.253097px;}
.y11a{bottom:269.529336px;}
.y98{bottom:270.071341px;}
.y80{bottom:270.675241px;}
.yeb{bottom:277.748376px;}
.y1a{bottom:284.570844px;}
.y26{bottom:285.511272px;}
.y12a{bottom:288.446928px;}
.ycc{bottom:289.198896px;}
.y44{bottom:291.000120px;}
.y119{bottom:292.029335px;}
.y97{bottom:292.571340px;}
.y7f{bottom:293.175240px;}
.yea{bottom:293.748725px;}
.y19{bottom:307.070843px;}
.y25{bottom:308.011271px;}
.y129{bottom:310.946927px;}
.ycb{bottom:311.698895px;}
.y43{bottom:313.500119px;}
.y118{bottom:314.529334px;}
.y7e{bottom:315.675239px;}
.y18{bottom:329.570842px;}
.yc8{bottom:330.148894px;}
.y150{bottom:330.227986px;}
.y24{bottom:330.511270px;}
.y128{bottom:333.446926px;}
.y42{bottom:336.000118px;}
.y117{bottom:337.029333px;}
.y7d{bottom:338.175238px;}
.y93{bottom:338.621278px;}
.y17{bottom:352.070841px;}
.yc7{bottom:352.648893px;}
.y23{bottom:353.011269px;}
.y127{bottom:355.946925px;}
.y41{bottom:358.500117px;}
.y116{bottom:359.529332px;}
.ye5{bottom:359.998833px;}
.y7c{bottom:360.675237px;}
.y138{bottom:362.938701px;}
.y16{bottom:374.570840px;}
.yc6{bottom:375.148892px;}
.y22{bottom:375.511268px;}
.y126{bottom:378.446924px;}
.y115{bottom:382.029331px;}
.y51{bottom:382.331221px;}
.y7b{bottom:383.175236px;}
.y92{bottom:383.246438px;}
.ye4{bottom:384.748832px;}
.y15{bottom:397.070839px;}
.yc5{bottom:397.648891px;}
.y91{bottom:399.246787px;}
.y4e{bottom:402.300055px;}
.y114{bottom:404.529330px;}
.y7a{bottom:405.675235px;}
.y90{bottom:415.247136px;}
.y14{bottom:419.570839px;}
.yc4{bottom:420.148890px;}
.y12{bottom:420.910188px;}
.yf4{bottom:422.246862px;}
.y113{bottom:427.029329px;}
.y79{bottom:428.175234px;}
.yca{bottom:433.048878px;}
.y13{bottom:442.070838px;}
.yc3{bottom:442.648890px;}
.y50{bottom:444.675263px;}
.y112{bottom:449.529328px;}
.y78{bottom:450.675233px;}
.yc9{bottom:455.548877px;}
.yc2{bottom:465.148889px;}
.y125{bottom:466.046873px;}
.y111{bottom:472.029327px;}
.y77{bottom:473.175232px;}
.y11{bottom:476.853898px;}
.y74{bottom:480.535886px;}
.yc1{bottom:487.648888px;}
.y124{bottom:488.546872px;}
.y110{bottom:494.529326px;}
.y76{bottom:495.675231px;}
.y73{bottom:503.035885px;}
.ye3{bottom:503.848815px;}
.yc0{bottom:510.148887px;}
.y123{bottom:511.046871px;}
.y10f{bottom:517.029325px;}
.y75{bottom:518.175230px;}
.y72{bottom:525.535884px;}
.y8e{bottom:530.567042px;}
.ybf{bottom:532.648886px;}
.y122{bottom:533.546870px;}
.y10e{bottom:539.529324px;}
.y8d{bottom:546.567391px;}
.y71{bottom:548.035883px;}
.ybe{bottom:552.148879px;}
.y10d{bottom:562.029323px;}
.y89{bottom:563.100241px;}
.y70{bottom:570.535882px;}
.ybd{bottom:574.648878px;}
.ye7{bottom:574.680180px;}
.y121{bottom:578.546868px;}
.y10c{bottom:584.529322px;}
.y6f{bottom:593.035881px;}
.ybc{bottom:597.148877px;}
.ye6{bottom:599.430179px;}
.y120{bottom:601.046867px;}
.y10b{bottom:607.029322px;}
.y5d{bottom:608.025207px;}
.y6e{bottom:615.535880px;}
.ybb{bottom:619.648876px;}
.y10a{bottom:629.529321px;}
.y5c{bottom:630.525207px;}
.y6d{bottom:638.035879px;}
.ye1{bottom:641.461527px;}
.yba{bottom:642.148875px;}
.y109{bottom:652.029320px;}
.y5b{bottom:653.025206px;}
.y6c{bottom:660.535878px;}
.ye0{bottom:663.961526px;}
.yb9{bottom:664.648874px;}
.y4f{bottom:664.997907px;}
.y21{bottom:672.656106px;}
.y108{bottom:674.529319px;}
.y5a{bottom:675.525205px;}
.y6b{bottom:683.035877px;}
.ydf{bottom:686.461525px;}
.yb8{bottom:687.148873px;}
.y20{bottom:695.156105px;}
.y107{bottom:697.029318px;}
.y59{bottom:698.025204px;}
.y6a{bottom:705.535876px;}
.yde{bottom:708.961524px;}
.y1f{bottom:717.656104px;}
.y106{bottom:719.529317px;}
.y58{bottom:720.525203px;}
.y69{bottom:728.035875px;}
.ydd{bottom:731.461524px;}
.ye2{bottom:733.048934px;}
.y1e{bottom:740.156103px;}
.y105{bottom:742.029316px;}
.y57{bottom:743.025202px;}
.y68{bottom:750.535874px;}
.ydc{bottom:753.961523px;}
.y11f{bottom:756.603760px;}
.y1d{bottom:762.656102px;}
.y104{bottom:764.529315px;}
.y56{bottom:765.525201px;}
.y10{bottom:767.493602px;}
.y11e{bottom:772.604109px;}
.y67{bottom:773.035873px;}
.ydb{bottom:776.461522px;}
.y103{bottom:787.029314px;}
.y55{bottom:788.025200px;}
.yf{bottom:789.993601px;}
.y66{bottom:795.535872px;}
.yda{bottom:798.961521px;}
.yc{bottom:809.268583px;}
.y102{bottom:809.529313px;}
.y54{bottom:810.525199px;}
.yfc{bottom:811.254318px;}
.ye{bottom:812.493600px;}
.yad{bottom:813.500563px;}
.y65{bottom:818.035872px;}
.yd9{bottom:821.461520px;}
.y101{bottom:832.029312px;}
.y53{bottom:833.025198px;}
.yfb{bottom:833.754317px;}
.yb{bottom:834.018582px;}
.yd{bottom:834.993599px;}
.yac{bottom:836.000562px;}
.y64{bottom:840.535871px;}
.y40{bottom:843.744979px;}
.y100{bottom:854.529311px;}
.yfa{bottom:856.254316px;}
.yab{bottom:858.500561px;}
.y63{bottom:863.035870px;}
.y3f{bottom:866.244978px;}
.yd8{bottom:866.461518px;}
.y85{bottom:875.550306px;}
.yff{bottom:877.029310px;}
.yf9{bottom:878.754315px;}
.yaa{bottom:881.000560px;}
.y14f{bottom:884.567994px;}
.y62{bottom:885.535869px;}
.y8c{bottom:887.459118px;}
.y3e{bottom:888.744977px;}
.yd7{bottom:888.961517px;}
.ya{bottom:890.441617px;}
.yfe{bottom:899.529309px;}
.yf8{bottom:901.254314px;}
.y8b{bottom:903.459467px;}
.ya9{bottom:903.500559px;}
.y14e{bottom:907.067993px;}
.y61{bottom:908.035868px;}
.y3d{bottom:911.244976px;}
.y9{bottom:912.941616px;}
.yfd{bottom:922.029308px;}
.yf7{bottom:923.754313px;}
.ya8{bottom:926.000558px;}
.y3a{bottom:926.457456px;}
.y14d{bottom:929.567992px;}
.y60{bottom:930.535867px;}
.y3c{bottom:933.744975px;}
.y8{bottom:935.441615px;}
.yf6{bottom:946.254312px;}
.ya7{bottom:948.500557px;}
.y39{bottom:948.957455px;}
.y14c{bottom:952.067992px;}
.y5f{bottom:953.035866px;}
.y3b{bottom:956.244974px;}
.y7{bottom:957.941614px;}
.yf1{bottom:967.104298px;}
.yf5{bottom:968.754311px;}
.ya6{bottom:971.000556px;}
.y38{bottom:971.457454px;}
.y14b{bottom:974.567991px;}
.y5e{bottom:975.535865px;}
.y6{bottom:980.441614px;}
.yf0{bottom:989.604297px;}
.y4d{bottom:991.044999px;}
.ya5{bottom:993.500555px;}
.y37{bottom:993.957453px;}
.y14a{bottom:997.067990px;}
.y5{bottom:1002.941613px;}
.yf3{bottom:1012.554296px;}
.ya4{bottom:1016.000554px;}
.y36{bottom:1016.457452px;}
.y8a{bottom:1019.335850px;}
.y149{bottom:1019.567989px;}
.y4{bottom:1025.441612px;}
.y4b{bottom:1025.844984px;}
.yb7{bottom:1033.647628px;}
.yf2{bottom:1037.304295px;}
.ya3{bottom:1038.500554px;}
.y35{bottom:1038.957451px;}
.ye9{bottom:1039.144424px;}
.y148{bottom:1042.067988px;}
.y3{bottom:1047.941611px;}
.y4a{bottom:1048.344984px;}
.ye8{bottom:1055.144773px;}
.yb6{bottom:1056.147627px;}
.ya2{bottom:1061.000553px;}
.y34{bottom:1061.457450px;}
.y147{bottom:1064.567987px;}
.y49{bottom:1070.844983px;}
.yb5{bottom:1078.647626px;}
.yef{bottom:1081.164703px;}
.ya1{bottom:1083.500552px;}
.y33{bottom:1083.957449px;}
.y146{bottom:1087.067986px;}
.yb4{bottom:1101.147625px;}
.y2f{bottom:1102.316602px;}
.yee{bottom:1103.664702px;}
.ya0{bottom:1106.000551px;}
.y32{bottom:1106.457448px;}
.y145{bottom:1109.567985px;}
.y48{bottom:1115.844981px;}
.yb3{bottom:1123.647624px;}
.yed{bottom:1126.164701px;}
.y31{bottom:1128.957447px;}
.y88{bottom:1132.363040px;}
.y136{bottom:1136.839153px;}
.y96{bottom:1141.208139px;}
.yb2{bottom:1146.147623px;}
.y144{bottom:1146.345994px;}
.y87{bottom:1148.363389px;}
.yec{bottom:1148.664700px;}
.y4c{bottom:1150.482444px;}
.y30{bottom:1151.457446px;}
.y135{bottom:1152.839503px;}
.y2{bottom:1168.443815px;}
.hf{height:16.596270px;}
.he{height:22.742582px;}
.h11{height:24.178062px;}
.h12{height:34.148351px;}
.h9{height:39.024851px;}
.h6{height:39.072852px;}
.hb{height:42.000916px;}
.h7{height:43.955998px;}
.hd{height:48.767803px;}
.h8{height:53.633607px;}
.h10{height:53.639998px;}
.h4{height:53.699577px;}
.ha{height:57.723747px;}
.h5{height:59.615998px;}
.hc{height:64.007997px;}
.h3{height:69.527157px;}
.h1{height:1263.000000px;}
.h2{height:1263.374947px;}
.h0{height:1263.374968px;}
.w2{width:200.519992px;}
.w1{width:893.249963px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:41.152553px;}
.xb{left:43.235352px;}
.x4{left:44.296181px;}
.x10{left:55.109705px;}
.xa{left:56.262503px;}
.x9{left:71.573049px;}
.xe{left:119.519995px;}
.xf{left:127.235486px;}
.x1{left:189.451950px;}
.x3{left:467.536139px;}
.x6{left:469.058798px;}
.x5{left:470.283378px;}
.x7{left:472.374693px;}
.x8{left:497.095906px;}
.xd{left:618.425974px;}
.xc{left:620.329942px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws4{word-spacing:-35.183998pt;}
.ws9{word-spacing:-20.223999pt;}
.ws1{word-spacing:-15.999999pt;}
.ws0{word-spacing:-14.659999pt;}
.ws5{word-spacing:-13.329999pt;}
.ws3{word-spacing:-10.666899pt;}
.ws8{word-spacing:-9.333976pt;}
.ws6{word-spacing:-6.216368pt;}
.ws7{word-spacing:-5.243766pt;}
.ws2{word-spacing:0.000000pt;}
._36{margin-left:-0.891040pt;}
._c{width:1.460269pt;}
._e{width:2.904407pt;}
._21{width:4.194146pt;}
._3b{width:5.172511pt;}
._15{width:6.102775pt;}
._2{width:7.297595pt;}
._2d{width:8.213501pt;}
._3{width:10.018457pt;}
._16{width:11.606450pt;}
._6{width:13.534558pt;}
._1{width:16.040998pt;}
._26{width:17.408998pt;}
._0{width:18.433447pt;}
._5{width:20.263427pt;}
._39{width:21.258045pt;}
._23{width:22.942344pt;}
._2f{width:24.477897pt;}
._29{width:25.484230pt;}
._4{width:26.696564pt;}
._3d{width:27.844448pt;}
._1c{width:29.604491pt;}
._2b{width:31.001108pt;}
._33{width:32.776985pt;}
._11{width:33.884293pt;}
._20{width:35.061570pt;}
._22{width:36.013637pt;}
._7{width:36.975488pt;}
._1f{width:38.413891pt;}
._3a{width:39.917839pt;}
._24{width:41.708130pt;}
._44{width:43.276672pt;}
._17{width:45.383335pt;}
._27{width:46.274887pt;}
._4f{width:47.968557pt;}
._40{width:49.486387pt;}
._48{width:50.437069pt;}
._2a{width:51.691786pt;}
._1a{width:52.648912pt;}
._13{width:53.734754pt;}
._1b{width:54.806945pt;}
._35{width:56.677147pt;}
._38{width:57.611419pt;}
._18{width:59.202000pt;}
._45{width:60.091316pt;}
._31{width:61.232014pt;}
._1e{width:62.145838pt;}
._32{width:63.218399pt;}
._58{width:64.539972pt;}
._8{width:65.522974pt;}
._9{width:66.514917pt;}
._46{width:67.930991pt;}
._2c{width:68.873243pt;}
._1d{width:70.431194pt;}
._10{width:71.328378pt;}
._41{width:72.335196pt;}
._4e{width:74.704191pt;}
._47{width:75.951638pt;}
._2e{width:80.111766pt;}
._12{width:81.811758pt;}
._25{width:83.228298pt;}
._b{width:84.261670pt;}
._f{width:89.385808pt;}
._3f{width:93.082477pt;}
._52{width:93.986239pt;}
._34{width:101.967012pt;}
._3c{width:110.479564pt;}
._53{width:113.472596pt;}
._d{width:118.013856pt;}
._4b{width:119.749610pt;}
._30{width:123.714100pt;}
._4a{width:129.650637pt;}
._28{width:131.913097pt;}
._5a{width:137.361437pt;}
._59{width:138.764374pt;}
._50{width:140.309567pt;}
._4c{width:142.003328pt;}
._56{width:150.133545pt;}
._a{width:151.332508pt;}
._49{width:153.962184pt;}
._42{width:162.732093pt;}
._37{width:175.742656pt;}
._54{width:184.098598pt;}
._43{width:186.978071pt;}
._4d{width:221.291903pt;}
._55{width:228.666223pt;}
._14{width:237.537967pt;}
._57{width:242.193327pt;}
._51{width:260.945039pt;}
._19{width:262.787311pt;}
._3e{width:269.399408pt;}
.fs7{font-size:16.594196pt;}
.fs6{font-size:24.865471pt;}
.fs8{font-size:26.434946pt;}
.fs9{font-size:37.335904pt;}
.fs3{font-size:42.667598pt;}
.fs4{font-size:47.999998pt;}
.fs5{font-size:53.319997pt;}
.fs1{font-size:58.639997pt;}
.fs2{font-size:63.999997pt;}
.fs0{font-size:74.639997pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000018pt;}
.y142{bottom:5.084873pt;}
.y141{bottom:13.896522pt;}
.y140{bottom:22.708170pt;}
.y13d{bottom:26.680017pt;}
.y13f{bottom:31.519819pt;}
.y13b{bottom:31.980225pt;}
.y13e{bottom:40.331468pt;}
.y13a{bottom:48.290464pt;}
.y13c{bottom:49.066298pt;}
.y134{bottom:56.397278pt;}
.y139{bottom:63.518656pt;}
.y52{bottom:64.593186pt;}
.yb1{bottom:70.583357pt;}
.y133{bottom:76.397277pt;}
.yb0{bottom:90.583356pt;}
.y2e{bottom:93.787804pt;}
.y132{bottom:96.397276pt;}
.yd4{bottom:97.065692pt;}
.y9f{bottom:100.063420pt;}
.yd6{bottom:106.194620pt;}
.yaf{bottom:110.583355pt;}
.y2d{bottom:113.787803pt;}
.y131{bottom:116.397275pt;}
.yd3{bottom:117.065691pt;}
.y9e{bottom:120.063419pt;}
.yd5{bottom:126.194619pt;}
.y143{bottom:128.264497pt;}
.yae{bottom:130.583355pt;}
.y2c{bottom:133.787802pt;}
.y130{bottom:136.397274pt;}
.yd2{bottom:137.065690pt;}
.y9d{bottom:140.063418pt;}
.y2b{bottom:153.787802pt;}
.y12f{bottom:156.397273pt;}
.yd1{bottom:157.065689pt;}
.y9c{bottom:160.063417pt;}
.y84{bottom:160.600217pt;}
.y95{bottom:171.516633pt;}
.y2a{bottom:173.787801pt;}
.y12e{bottom:176.397273pt;}
.y86{bottom:176.968253pt;}
.yd0{bottom:177.065689pt;}
.y11d{bottom:179.581634pt;}
.y9b{bottom:180.063416pt;}
.y83{bottom:180.600216pt;}
.y94{bottom:193.516632pt;}
.y29{bottom:193.787800pt;}
.y12d{bottom:196.397272pt;}
.ycf{bottom:197.065688pt;}
.y47{bottom:198.666776pt;}
.y11c{bottom:199.581633pt;}
.y9a{bottom:200.063416pt;}
.y82{bottom:200.600216pt;}
.y1c{bottom:212.951863pt;}
.y151{bottom:213.168887pt;}
.y28{bottom:213.787799pt;}
.y12c{bottom:216.397271pt;}
.yce{bottom:217.065687pt;}
.y46{bottom:218.666775pt;}
.y11b{bottom:219.581632pt;}
.y99{bottom:220.063415pt;}
.y81{bottom:220.600215pt;}
.y1b{bottom:232.951862pt;}
.y8f{bottom:233.183483pt;}
.y27{bottom:233.787798pt;}
.y12b{bottom:236.397270pt;}
.ycd{bottom:237.065686pt;}
.y45{bottom:238.666774pt;}
.y137{bottom:239.336086pt;}
.y11a{bottom:239.581632pt;}
.y98{bottom:240.063414pt;}
.y80{bottom:240.600214pt;}
.yeb{bottom:246.887445pt;}
.y1a{bottom:252.951861pt;}
.y26{bottom:253.787797pt;}
.y12a{bottom:256.397269pt;}
.ycc{bottom:257.065685pt;}
.y44{bottom:258.666773pt;}
.y119{bottom:259.581631pt;}
.y97{bottom:260.063413pt;}
.y7f{bottom:260.600213pt;}
.yea{bottom:261.109978pt;}
.y19{bottom:272.951861pt;}
.y25{bottom:273.787797pt;}
.y129{bottom:276.397268pt;}
.ycb{bottom:277.065684pt;}
.y43{bottom:278.666772pt;}
.y118{bottom:279.581630pt;}
.y7e{bottom:280.600212pt;}
.y18{bottom:292.951860pt;}
.yc8{bottom:293.465684pt;}
.y150{bottom:293.535988pt;}
.y24{bottom:293.787796pt;}
.y128{bottom:296.397268pt;}
.y42{bottom:298.666772pt;}
.y117{bottom:299.581629pt;}
.y7d{bottom:300.600211pt;}
.y93{bottom:300.996691pt;}
.y17{bottom:312.951859pt;}
.yc7{bottom:313.465683pt;}
.y23{bottom:313.787795pt;}
.y127{bottom:316.397267pt;}
.y41{bottom:318.666771pt;}
.y116{bottom:319.581628pt;}
.ye5{bottom:319.998963pt;}
.y7c{bottom:320.600211pt;}
.y138{bottom:322.612179pt;}
.y16{bottom:332.951858pt;}
.yc6{bottom:333.465682pt;}
.y22{bottom:333.787794pt;}
.y126{bottom:336.397266pt;}
.y115{bottom:339.581627pt;}
.y51{bottom:339.849975pt;}
.y7b{bottom:340.600210pt;}
.y92{bottom:340.663500pt;}
.ye4{bottom:341.998962pt;}
.y15{bottom:352.951857pt;}
.yc5{bottom:353.465681pt;}
.y91{bottom:354.886033pt;}
.y4e{bottom:357.600049pt;}
.y114{bottom:359.581627pt;}
.y7a{bottom:360.600209pt;}
.y90{bottom:369.108565pt;}
.y14{bottom:372.951856pt;}
.yc4{bottom:373.465680pt;}
.y12{bottom:374.142389pt;}
.yf4{bottom:375.330544pt;}
.y113{bottom:379.581626pt;}
.y79{bottom:380.600208pt;}
.yca{bottom:384.932336pt;}
.y13{bottom:392.951856pt;}
.yc3{bottom:393.465680pt;}
.y50{bottom:395.266900pt;}
.y112{bottom:399.581625pt;}
.y78{bottom:400.600207pt;}
.yc9{bottom:404.932335pt;}
.yc2{bottom:413.465679pt;}
.y125{bottom:414.263887pt;}
.y111{bottom:419.581624pt;}
.y77{bottom:420.600206pt;}
.y11{bottom:423.870131pt;}
.y74{bottom:427.143009pt;}
.yc1{bottom:433.465678pt;}
.y124{bottom:434.263886pt;}
.y110{bottom:439.581623pt;}
.y76{bottom:440.600206pt;}
.y73{bottom:447.143009pt;}
.ye3{bottom:447.865613pt;}
.yc0{bottom:453.465677pt;}
.y123{bottom:454.263885pt;}
.y10f{bottom:459.581622pt;}
.y75{bottom:460.600205pt;}
.y72{bottom:467.143008pt;}
.y8e{bottom:471.615148pt;}
.ybf{bottom:473.465676pt;}
.y122{bottom:474.263884pt;}
.y10e{bottom:479.581622pt;}
.y8d{bottom:485.837681pt;}
.y71{bottom:487.143007pt;}
.ybe{bottom:490.799004pt;}
.y10d{bottom:499.581621pt;}
.y89{bottom:500.533547pt;}
.y70{bottom:507.143006pt;}
.ybd{bottom:510.799003pt;}
.ye7{bottom:510.826827pt;}
.y121{bottom:514.263883pt;}
.y10c{bottom:519.581620pt;}
.y6f{bottom:527.143005pt;}
.ybc{bottom:530.799002pt;}
.ye6{bottom:532.826826pt;}
.y120{bottom:534.263882pt;}
.y10b{bottom:539.581619pt;}
.y5d{bottom:540.466851pt;}
.y6e{bottom:547.143004pt;}
.ybb{bottom:550.799001pt;}
.y10a{bottom:559.581618pt;}
.y5c{bottom:560.466850pt;}
.y6d{bottom:567.143004pt;}
.ye1{bottom:570.188024pt;}
.yba{bottom:570.799000pt;}
.y109{bottom:579.581617pt;}
.y5b{bottom:580.466849pt;}
.y6c{bottom:587.143003pt;}
.ye0{bottom:590.188023pt;}
.yb9{bottom:590.798999pt;}
.y4f{bottom:591.109251pt;}
.y21{bottom:597.916538pt;}
.y108{bottom:599.581617pt;}
.y5a{bottom:600.466849pt;}
.y6b{bottom:607.143002pt;}
.ydf{bottom:610.188023pt;}
.yb8{bottom:610.798999pt;}
.y20{bottom:617.916537pt;}
.y107{bottom:619.581616pt;}
.y59{bottom:620.466848pt;}
.y6a{bottom:627.143001pt;}
.yde{bottom:630.188022pt;}
.y1f{bottom:637.916537pt;}
.y106{bottom:639.581615pt;}
.y58{bottom:640.466847pt;}
.y69{bottom:647.143000pt;}
.ydd{bottom:650.188021pt;}
.ye2{bottom:651.599053pt;}
.y1e{bottom:657.916536pt;}
.y105{bottom:659.581614pt;}
.y57{bottom:660.466846pt;}
.y68{bottom:667.142999pt;}
.ydc{bottom:670.188020pt;}
.y11f{bottom:672.536676pt;}
.y1d{bottom:677.916535pt;}
.y104{bottom:679.581613pt;}
.y56{bottom:680.466845pt;}
.y10{bottom:682.216535pt;}
.y11e{bottom:686.759208pt;}
.y67{bottom:687.142999pt;}
.ydb{bottom:690.188019pt;}
.y103{bottom:699.581612pt;}
.y55{bottom:700.466844pt;}
.yf{bottom:702.216534pt;}
.y66{bottom:707.142998pt;}
.yda{bottom:710.188018pt;}
.yc{bottom:719.349852pt;}
.y102{bottom:719.581612pt;}
.y54{bottom:720.466844pt;}
.yfc{bottom:721.114949pt;}
.ye{bottom:722.216533pt;}
.yad{bottom:723.111611pt;}
.y65{bottom:727.142997pt;}
.yd9{bottom:730.188018pt;}
.y101{bottom:739.581611pt;}
.y53{bottom:740.466843pt;}
.yfb{bottom:741.114948pt;}
.yb{bottom:741.349851pt;}
.yd{bottom:742.216532pt;}
.yac{bottom:743.111611pt;}
.y64{bottom:747.142996pt;}
.y40{bottom:749.995537pt;}
.y100{bottom:759.581610pt;}
.yfa{bottom:761.114947pt;}
.yab{bottom:763.111610pt;}
.y63{bottom:767.142995pt;}
.y3f{bottom:769.995536pt;}
.yd8{bottom:770.188016pt;}
.y85{bottom:778.266939pt;}
.yff{bottom:779.581609pt;}
.yf9{bottom:781.114947pt;}
.yaa{bottom:783.111609pt;}
.y14f{bottom:786.282662pt;}
.y62{bottom:787.142994pt;}
.y8c{bottom:788.852549pt;}
.y3e{bottom:789.995535pt;}
.yd7{bottom:790.188015pt;}
.ya{bottom:791.503660pt;}
.yfe{bottom:799.581608pt;}
.yf8{bottom:801.114946pt;}
.y8b{bottom:803.075082pt;}
.ya9{bottom:803.111608pt;}
.y14e{bottom:806.282661pt;}
.y61{bottom:807.142994pt;}
.y3d{bottom:809.995534pt;}
.y9{bottom:811.503659pt;}
.yfd{bottom:819.581607pt;}
.yf7{bottom:821.114945pt;}
.ya8{bottom:823.111607pt;}
.y3a{bottom:823.517738pt;}
.y14d{bottom:826.282660pt;}
.y60{bottom:827.142993pt;}
.y3c{bottom:829.995533pt;}
.y8{bottom:831.503658pt;}
.yf6{bottom:841.114944pt;}
.ya7{bottom:843.111606pt;}
.y39{bottom:843.517738pt;}
.y14c{bottom:846.282659pt;}
.y5f{bottom:847.142992pt;}
.y3b{bottom:849.995533pt;}
.y7{bottom:851.503657pt;}
.yf1{bottom:859.648265pt;}
.yf5{bottom:861.114943pt;}
.ya6{bottom:863.111606pt;}
.y38{bottom:863.517737pt;}
.y14b{bottom:866.282658pt;}
.y5e{bottom:867.142991pt;}
.y6{bottom:871.503656pt;}
.yf0{bottom:879.648264pt;}
.y4d{bottom:880.928888pt;}
.ya5{bottom:883.111605pt;}
.y37{bottom:883.517736pt;}
.y14a{bottom:886.282657pt;}
.y5{bottom:891.503656pt;}
.yf3{bottom:900.048263pt;}
.ya4{bottom:903.111604pt;}
.y36{bottom:903.517735pt;}
.y8a{bottom:906.076311pt;}
.y149{bottom:906.282657pt;}
.y4{bottom:911.503655pt;}
.y4b{bottom:911.862208pt;}
.yb7{bottom:918.797891pt;}
.yf2{bottom:922.048262pt;}
.ya3{bottom:923.111603pt;}
.y35{bottom:923.517734pt;}
.ye9{bottom:923.683932pt;}
.y148{bottom:926.282656pt;}
.y3{bottom:931.503654pt;}
.y4a{bottom:931.862208pt;}
.ye8{bottom:937.906465pt;}
.yb6{bottom:938.797890pt;}
.ya2{bottom:943.111602pt;}
.y34{bottom:943.517733pt;}
.y147{bottom:946.282655pt;}
.y49{bottom:951.862207pt;}
.yb5{bottom:958.797890pt;}
.yef{bottom:961.035291pt;}
.ya1{bottom:963.111601pt;}
.y33{bottom:963.517733pt;}
.y146{bottom:966.282654pt;}
.yb4{bottom:978.797889pt;}
.y2f{bottom:979.836980pt;}
.yee{bottom:981.035290pt;}
.ya0{bottom:983.111601pt;}
.y32{bottom:983.517732pt;}
.y145{bottom:986.282653pt;}
.y48{bottom:991.862205pt;}
.yb3{bottom:998.797888pt;}
.yed{bottom:1001.035289pt;}
.y31{bottom:1003.517731pt;}
.y88{bottom:1006.544924pt;}
.y136{bottom:1010.523692pt;}
.y96{bottom:1014.407235pt;}
.yb2{bottom:1018.797887pt;}
.y144{bottom:1018.974217pt;}
.y87{bottom:1020.767457pt;}
.yec{bottom:1021.035289pt;}
.y4c{bottom:1022.651061pt;}
.y30{bottom:1023.517730pt;}
.y135{bottom:1024.746225pt;}
.y2{bottom:1038.616725pt;}
.hf{height:14.752240pt;}
.he{height:20.215628pt;}
.h11{height:21.491611pt;}
.h12{height:30.354090pt;}
.h9{height:34.688757pt;}
.h6{height:34.731424pt;}
.hb{height:37.334148pt;}
.h7{height:39.071998pt;}
.hd{height:43.349158pt;}
.h8{height:47.674317pt;}
.h10{height:47.679998pt;}
.h4{height:47.732957pt;}
.ha{height:51.309997pt;}
.h5{height:52.991998pt;}
.hc{height:56.895998pt;}
.h3{height:61.801917pt;}
.h1{height:1122.666667pt;}
.h2{height:1122.999953pt;}
.h0{height:1122.999972pt;}
.w2{width:178.239993pt;}
.w1{width:793.999967pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:36.580047pt;}
.xb{left:38.431424pt;}
.x4{left:39.374383pt;}
.x10{left:48.986404pt;}
.xa{left:50.011114pt;}
.x9{left:63.620488pt;}
.xe{left:106.239996pt;}
.xf{left:113.098210pt;}
.x1{left:168.401734pt;}
.x3{left:415.587679pt;}
.x6{left:416.941154pt;}
.x5{left:418.029669pt;}
.x7{left:419.888616pt;}
.x8{left:441.863028pt;}
.xd{left:549.711977pt;}
.xc{left:551.404393pt;}
}




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