
    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_4b7155813fdc4d9b6649d4ab.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.972168;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_86af6b2430f8ffa7d3a88357.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_78fef49f3f32985398928ae1.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.893066;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_9e86eb39406bf857491f5096.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.035156;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_4feba1da5490c83c20881e28.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.384000;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_175c0376a76ae8876cff5fc4.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.368000;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_d05a3dd75e7d17cbe63864a2.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.374000;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_fa3f8d74473b107332bd9064.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.773926;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_b73b79fc9dc2b3904ea27191.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.975098;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_c76eae85a5e0c5c7f25c123f.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.099609;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_3590e4e8b336c1499ec5421c.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.739746;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);}
.v1{vertical-align:-69.119937px;}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.367139px;}
.ls5{letter-spacing:0.410173px;}
.ls4{letter-spacing:0.410236px;}
.ls7{letter-spacing:0.410241px;}
.ls8{letter-spacing:0.506601px;}
.ls6{letter-spacing:1.130187px;}
.ls2{letter-spacing:1194.835770px;}
.ls0{letter-spacing:1198.652164px;}
.sc_{text-shadow:none;}
.sc3{text-shadow:-0.015em 0 rgb(128,0,0),0 0.015em rgb(128,0,0),0.015em 0 rgb(128,0,0),0 -0.015em  rgb(128,0,0);}
.sc2{text-shadow:-0.015em 0 rgb(255,0,0),0 0.015em rgb(255,0,0),0.015em 0 rgb(255,0,0),0 -0.015em  rgb(255,0,0);}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc3{-webkit-text-stroke:0.015em rgb(128,0,0);text-shadow:none;}
.sc2{-webkit-text-stroke:0.015em rgb(255,0,0);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2{word-spacing:-62.260346px;}
.ws0{word-spacing:-62.142750px;}
.ws8{word-spacing:-50.660100px;}
.ws1{word-spacing:-15.565086px;}
.ws4{word-spacing:-15.446864px;}
.ws9{word-spacing:-13.171626px;}
.ws7{word-spacing:-12.665025px;}
.ws3{word-spacing:-12.469248px;}
.ws5{word-spacing:-10.754859px;}
.ws6{word-spacing:0.000000px;}
._3{margin-left:-9.878719px;}
._21{margin-left:-2.407904px;}
._0{margin-left:-1.242855px;}
._1{width:1.182169px;}
._4{width:2.385456px;}
._9{width:3.977622px;}
._8{width:5.023125px;}
._5{width:6.442941px;}
._18{width:7.909121px;}
._b{width:9.302964px;}
._c{width:11.007763px;}
._15{width:12.605026px;}
._19{width:14.531936px;}
._2f{width:15.847550px;}
._12{width:17.193637px;}
._e{width:19.046996px;}
._6{width:20.134251px;}
._7{width:21.181211px;}
._13{width:22.605153px;}
._16{width:23.945835px;}
._17{width:25.531689px;}
._24{width:26.570031px;}
._22{width:28.764280px;}
._1d{width:30.324691px;}
._2c{width:31.431727px;}
._1f{width:32.499900px;}
._20{width:33.620587px;}
._1a{width:35.400491px;}
._10{width:37.162335px;}
._f{width:38.322172px;}
._2e{width:39.416952px;}
._29{width:41.043216px;}
._28{width:42.309746px;}
._11{width:43.366658px;}
._33{width:45.948711px;}
._1c{width:47.349863px;}
._1b{width:48.442458px;}
._26{width:49.682400px;}
._2b{width:58.600613px;}
._a{width:59.780840px;}
._30{width:62.012776px;}
._2a{width:65.468115px;}
._2d{width:66.606590px;}
._14{width:68.076654px;}
._1e{width:69.516376px;}
._25{width:92.075650px;}
._27{width:93.854001px;}
._35{width:137.170564px;}
._36{width:139.206237px;}
._34{width:146.417418px;}
._d{width:149.214210px;}
._32{width:511.396723px;}
._2{width:549.563316px;}
._31{width:559.027243px;}
._23{width:705.039998px;}
.fc8{color:rgb(128,0,0);}
.fc6{color:rgb(196,188,150);}
.fc5{color:rgb(255,0,0);}
.fc4{color:rgb(14,16,26);}
.fc7{color:transparent;}
.fc3{color:rgb(118,113,113);}
.fc2{color:rgb(127,127,127);}
.fc1{color:rgb(166,166,166);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:39.251312px;}
.fs1{font-size:45.256050px;}
.fs7{font-size:45.342719px;}
.fs2{font-size:50.660100px;}
.fsb{font-size:50.755829px;}
.fs3{font-size:56.063700px;}
.fs8{font-size:56.170413px;}
.fs0{font-size:62.142750px;}
.fs6{font-size:62.260346px;}
.fsa{font-size:84.433046px;}
.fs4{font-size:120.908250px;}
.fs5{font-size:275.590341px;}
.y7e{bottom:-8.097453px;}
.y0{bottom:0.000000px;}
.y7b{bottom:2.521461px;}
.y76{bottom:2.881653px;}
.y60{bottom:3.237667px;}
.y78{bottom:3.599788px;}
.y5a{bottom:4.319961px;}
.y82{bottom:6.839950px;}
.y81{bottom:30.420044px;}
.y3{bottom:31.500000px;}
.y80{bottom:47.340019px;}
.y2{bottom:48.240006px;}
.y147{bottom:67.860008px;}
.y7d{bottom:69.484879px;}
.yea{bottom:71.639992px;}
.y7c{bottom:74.527919px;}
.y11f{bottom:77.039977px;}
.y105{bottom:78.299973px;}
.yb1{bottom:79.740006px;}
.yeb{bottom:81.549863px;}
.y146{bottom:82.620002px;}
.y7a{bottom:85.143909px;}
.ye9{bottom:89.639992px;}
.y104{bottom:90.179970px;}
.y11e{bottom:91.620002px;}
.y145{bottom:97.019989px;}
.yb0{bottom:97.379998px;}
.y11d{bottom:106.200027px;}
.ye8{bottom:107.460022px;}
.y144{bottom:111.779983px;}
.y36{bottom:114.840019px;}
.y58{bottom:115.200027px;}
.yaf{bottom:115.379998px;}
.y11c{bottom:118.259994px;}
.ye7{bottom:125.279983px;}
.y143{bottom:126.360008px;}
.y35{bottom:132.299973px;}
.y57{bottom:133.019989px;}
.yae{bottom:133.379998px;}
.y142{bottom:141.120002px;}
.ye6{bottom:143.279983px;}
.y34{bottom:150.659981px;}
.y56{bottom:150.840019px;}
.yad{bottom:151.200027px;}
.y141{bottom:155.700027px;}
.ye5{bottom:161.100013px;}
.y33{bottom:167.940033px;}
.y55{bottom:168.840019px;}
.yac{bottom:169.019989px;}
.y140{bottom:170.279983px;}
.ye4{bottom:178.919975px;}
.y13f{bottom:184.860008px;}
.y32{bottom:185.940033px;}
.y54{bottom:186.659981px;}
.yab{bottom:187.019989px;}
.ye3{bottom:196.919975px;}
.y13e{bottom:199.620002px;}
.y31{bottom:203.940033px;}
.y53{bottom:204.480011px;}
.yaa{bottom:204.840019px;}
.y13d{bottom:214.200027px;}
.ye2{bottom:214.919975px;}
.y30{bottom:221.759994px;}
.y52{bottom:222.480011px;}
.ya9{bottom:222.840019px;}
.y13c{bottom:228.960022px;}
.ye1{bottom:232.559967px;}
.y2f{bottom:239.580025px;}
.y51{bottom:240.480011px;}
.ya8{bottom:240.659981px;}
.y13b{bottom:243.539977px;}
.ye0{bottom:250.559967px;}
.y2e{bottom:257.580025px;}
.y50{bottom:258.120002px;}
.ya7{bottom:258.480011px;}
.ydf{bottom:268.559967px;}
.y13a{bottom:272.700027px;}
.y2d{bottom:275.399986px;}
.y4f{bottom:276.120002px;}
.ya6{bottom:276.480011px;}
.yde{bottom:286.200027px;}
.y139{bottom:287.460022px;}
.y2c{bottom:293.399986px;}
.y4e{bottom:294.120002px;}
.y138{bottom:302.039977px;}
.ydd{bottom:304.200027px;}
.y2b{bottom:311.039977px;}
.y4d{bottom:311.940033px;}
.ya5{bottom:312.120002px;}
.y137{bottom:316.799973px;}
.ydc{bottom:322.200027px;}
.y2a{bottom:329.039977px;}
.y4c{bottom:329.759994px;}
.ya4{bottom:330.659981px;}
.y136{bottom:331.200027px;}
.ydb{bottom:340.019989px;}
.y135{bottom:346.320030px;}
.y29{bottom:347.039977px;}
.y4b{bottom:347.759994px;}
.ya3{bottom:348.480011px;}
.yda{bottom:357.840019px;}
.y134{bottom:360.539977px;}
.y28{bottom:364.679970px;}
.y4a{bottom:365.580025px;}
.ya2{bottom:365.759994px;}
.y133{bottom:375.299973px;}
.yd9{bottom:375.840019px;}
.y27{bottom:382.679970px;}
.y49{bottom:383.399986px;}
.ya1{bottom:383.759994px;}
.y132{bottom:390.059967px;}
.y103{bottom:391.679970px;}
.yd8{bottom:393.659981px;}
.y26{bottom:400.679970px;}
.y48{bottom:401.220017px;}
.ya0{bottom:401.580025px;}
.y131{bottom:404.460022px;}
.y102{bottom:409.679970px;}
.yd7{bottom:411.480011px;}
.y25{bottom:418.500000px;}
.y130{bottom:419.039977px;}
.y47{bottom:419.220017px;}
.y9f{bottom:419.399986px;}
.y101{bottom:427.500000px;}
.yd6{bottom:429.480011px;}
.y12f{bottom:434.159981px;}
.y24{bottom:436.320030px;}
.y46{bottom:437.220017px;}
.y9e{bottom:437.399986px;}
.y100{bottom:445.320030px;}
.yd5{bottom:447.299973px;}
.y12e{bottom:448.379998px;}
.y23{bottom:454.320030px;}
.y45{bottom:454.860008px;}
.y9d{bottom:455.220017px;}
.yff{bottom:463.139992px;}
.yd4{bottom:465.299973px;}
.y22{bottom:472.139992px;}
.y44{bottom:472.860008px;}
.y9c{bottom:473.220017px;}
.y12d{bottom:477.899986px;}
.yfe{bottom:481.139992px;}
.yd3{bottom:482.940033px;}
.y59{bottom:486.720017px;}
.y21{bottom:489.960022px;}
.y43{bottom:490.860008px;}
.y9b{bottom:491.039977px;}
.y12c{bottom:492.299973px;}
.yfd{bottom:498.960022px;}
.yd2{bottom:500.940033px;}
.y12b{bottom:506.879998px;}
.y20{bottom:507.960022px;}
.y42{bottom:508.500000px;}
.y9a{bottom:508.860008px;}
.yfc{bottom:516.779983px;}
.yd1{bottom:518.940033px;}
.y11b{bottom:521.279983px;}
.y12a{bottom:521.639992px;}
.y1f{bottom:525.779983px;}
.y41{bottom:526.500000px;}
.y99{bottom:526.860008px;}
.yfb{bottom:534.779983px;}
.y129{bottom:536.399986px;}
.yd0{bottom:536.759994px;}
.y11a{bottom:539.100013px;}
.y1e{bottom:543.779983px;}
.y40{bottom:544.139992px;}
.y98{bottom:544.679970px;}
.y128{bottom:550.799973px;}
.yfa{bottom:552.779983px;}
.ycf{bottom:554.580025px;}
.y119{bottom:556.919975px;}
.y3f{bottom:560.700027px;}
.y1d{bottom:561.600013px;}
.y97{bottom:562.500000px;}
.y127{bottom:565.379998px;}
.yf9{bottom:570.419975px;}
.yce{bottom:572.580025px;}
.y118{bottom:574.919975px;}
.y3e{bottom:578.700027px;}
.y1c{bottom:579.419975px;}
.y96{bottom:580.500000px;}
.yf8{bottom:588.419975px;}
.ycd{bottom:590.399986px;}
.y117{bottom:592.740006px;}
.y126{bottom:594.720017px;}
.y3d{bottom:596.340019px;}
.y1b{bottom:597.419975px;}
.y74{bottom:598.143644px;}
.y95{bottom:598.320030px;}
.yf7{bottom:606.419975px;}
.ycc{bottom:608.220017px;}
.y125{bottom:609.480011px;}
.y116{bottom:610.559967px;}
.y3c{bottom:614.339985px;}
.y1a{bottom:615.240006px;}
.y73{bottom:615.965981px;}
.y94{bottom:616.139992px;}
.y124{bottom:623.879998px;}
.yf6{bottom:624.060001px;}
.ycb{bottom:626.220017px;}
.y75{bottom:626.574585px;}
.y115{bottom:628.560001px;}
.y3b{bottom:632.160015px;}
.y19{bottom:633.060001px;}
.y72{bottom:633.964035px;}
.y93{bottom:634.139992px;}
.y123{bottom:638.639992px;}
.yf5{bottom:642.060001px;}
.yca{bottom:644.040012px;}
.y114{bottom:646.379998px;}
.y3a{bottom:650.160015px;}
.y18{bottom:651.060001px;}
.y71{bottom:651.786373px;}
.y92{bottom:651.959988px;}
.y122{bottom:653.220017px;}
.y77{bottom:653.401401px;}
.yf4{bottom:660.060001px;}
.yc9{bottom:662.040012px;}
.y113{bottom:664.199993px;}
.y39{bottom:667.980011px;}
.y17{bottom:668.879998px;}
.y70{bottom:669.608710px;}
.y91{bottom:669.959988px;}
.yf3{bottom:677.879998px;}
.yc8{bottom:679.860008px;}
.y112{bottom:682.199993px;}
.y121{bottom:682.560001px;}
.y38{bottom:685.800007px;}
.y6f{bottom:687.606764px;}
.y90{bottom:687.779983px;}
.y16{bottom:687.959988px;}
.yf2{bottom:695.699993px;}
.yc7{bottom:697.680004px;}
.y111{bottom:700.560001px;}
.y37{bottom:703.800007px;}
.y6e{bottom:705.429101px;}
.y8f{bottom:705.600013px;}
.yf1{bottom:713.699993px;}
.yc6{bottom:715.680004px;}
.y110{bottom:718.019989px;}
.y15{bottom:722.699993px;}
.y6d{bottom:723.243831px;}
.y8e{bottom:723.600013px;}
.yf0{bottom:731.519989px;}
.yc5{bottom:733.500000px;}
.y10f{bottom:735.839985px;}
.y15f{bottom:739.439999px;}
.y14{bottom:740.160015px;}
.y6c{bottom:741.248565px;}
.y8d{bottom:741.420010px;}
.yef{bottom:749.519989px;}
.yc4{bottom:751.319995px;}
.y10e{bottom:753.660015px;}
.y15e{bottom:754.019989px;}
.y8c{bottom:759.240006px;}
.y6b{bottom:759.602922px;}
.yee{bottom:766.800007px;}
.y15d{bottom:768.779983px;}
.yc3{bottom:769.319995px;}
.y10d{bottom:771.660015px;}
.y13{bottom:774.899986px;}
.y6a{bottom:776.885633px;}
.y8b{bottom:777.240006px;}
.yed{bottom:781.560001px;}
.y15c{bottom:783.360008px;}
.yc2{bottom:787.139992px;}
.y10c{bottom:790.019989px;}
.yec{bottom:793.259994px;}
.y69{bottom:794.882758px;}
.y8a{bottom:795.600013px;}
.y15b{bottom:798.120002px;}
.yc1{bottom:804.959988px;}
.y10b{bottom:807.300007px;}
.y12{bottom:809.639992px;}
.y15a{bottom:812.519989px;}
.y68{bottom:812.705096px;}
.y89{bottom:813.420010px;}
.yc0{bottom:822.959988px;}
.y10a{bottom:825.300007px;}
.y11{bottom:826.920010px;}
.y159{bottom:827.279983px;}
.y67{bottom:830.527410px;}
.y88{bottom:830.879998px;}
.ybf{bottom:840.779983px;}
.y158{bottom:841.860008px;}
.y109{bottom:843.300007px;}
.y10{bottom:844.379998px;}
.y66{bottom:848.524536px;}
.y87{bottom:848.879998px;}
.y157{bottom:856.620002px;}
.ybe{bottom:858.779983px;}
.y108{bottom:860.399986px;}
.yf{bottom:861.660015px;}
.y65{bottom:866.346874px;}
.y86{bottom:866.519989px;}
.y156{bottom:871.199993px;}
.y107{bottom:875.160015px;}
.ybd{bottom:876.600013px;}
.ye{bottom:879.120002px;}
.y64{bottom:884.344000px;}
.y155{bottom:885.779983px;}
.y106{bottom:887.040012px;}
.ybc{bottom:894.420010px;}
.yd{bottom:896.399987px;}
.y154{bottom:900.360008px;}
.y63{bottom:902.166338px;}
.y85{bottom:912.240006px;}
.ybb{bottom:912.419992px;}
.y120{bottom:912.960004px;}
.yc{bottom:913.860008px;}
.y153{bottom:915.120002px;}
.y62{bottom:919.981068px;}
.y84{bottom:927.900003px;}
.y152{bottom:929.699993px;}
.yba{bottom:930.240006px;}
.yb{bottom:931.139992px;}
.y61{bottom:937.985801px;}
.y83{bottom:939.780001px;}
.y151{bottom:944.460004px;}
.yb9{bottom:948.060001px;}
.ya{bottom:948.419992px;}
.y5f{bottom:952.745260px;}
.y5e{bottom:955.982927px;}
.y150{bottom:958.860008px;}
.y9{bottom:965.879998px;}
.yb8{bottom:966.060001px;}
.y14f{bottom:973.620002px;}
.y5d{bottom:973.622845px;}
.y8{bottom:983.159998px;}
.yb7{bottom:984.060001px;}
.y14e{bottom:988.199993px;}
.y5c{bottom:991.619971px;}
.y7{bottom:1000.620002px;}
.yb6{bottom:1001.699993px;}
.y14d{bottom:1002.960004px;}
.y79{bottom:1005.125435px;}
.y5b{bottom:1009.981924px;}
.y14c{bottom:1017.539996px;}
.y6{bottom:1018.080008px;}
.yb5{bottom:1019.699993px;}
.y14b{bottom:1032.120002px;}
.yb4{bottom:1037.699993px;}
.y5{bottom:1039.500000px;}
.y14a{bottom:1046.700002px;}
.yb3{bottom:1055.340002px;}
.y149{bottom:1061.459997px;}
.y4{bottom:1072.980002px;}
.yb2{bottom:1073.340002px;}
.y148{bottom:1076.040003px;}
.y7f{bottom:1105.379998px;}
.y1{bottom:1123.380001px;}
.h13{height:2.704181px;}
.h11{height:12.960814px;}
.hc{height:14.937574px;}
.hb{height:16.378316px;}
.he{height:18.354627px;}
.hd{height:33.564239px;}
.h12{height:33.942419px;}
.h16{height:38.316648px;}
.h17{height:38.389052px;}
.hf{height:41.579270px;}
.h7{height:42.403648px;}
.h1{height:47.001523px;}
.ha{height:47.090466px;}
.h2{height:50.388000px;}
.h5{height:51.065381px;}
.h6{height:51.369341px;}
.h8{height:53.639991px;}
.h3{height:55.762577px;}
.h14{height:61.808975px;}
.h10{height:61.925939px;}
.h15{height:83.979548px;}
.h4{height:123.810048px;}
.h9{height:208.442109px;}
.h0{height:1188.000000px;}
.wf{width:2.338800px;}
.wb{width:2.879633px;}
.w10{width:2.880876px;}
.w4{width:3.055331px;}
.w17{width:4.681219px;}
.w6{width:5.756414px;}
.w9{width:7.377859px;}
.w15{width:10.801693px;}
.w12{width:11.517364px;}
.wc{width:13.679498px;}
.wa{width:22.318435px;}
.w16{width:31.320867px;}
.w13{width:31.503587px;}
.w7{width:34.023130px;}
.w3{width:41.042022px;}
.w5{width:41.401793px;}
.w8{width:45.364194px;}
.w1{width:45.900011px;}
.w11{width:90.003830px;}
.w14{width:91.803596px;}
.wd{width:147.422992px;}
.w2{width:161.274934px;}
.we{width:208.076421px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1{left:102.959997px;}
.x10{left:113.939969px;}
.x1f{left:121.858597px;}
.x11{left:136.081124px;}
.x12{left:138.778696px;}
.x3{left:148.860008px;}
.x13{left:152.280914px;}
.x4{left:153.539996px;}
.x9{left:154.802876px;}
.xd{left:157.677598px;}
.x21{left:162.900003px;}
.xe{left:191.700728px;}
.xa{left:195.844898px;}
.xb{left:198.723104px;}
.xf{left:237.064922px;}
.xc{left:240.124898px;}
.x2{left:248.939999px;}
.x14{left:302.401478px;}
.x7{left:309.774103px;}
.x1e{left:445.500000px;}
.x5{left:472.139992px;}
.x15{left:510.301203px;}
.x16{left:512.460325px;}
.x17{left:515.158482px;}
.x6{left:522.899987px;}
.x22{left:532.259994px;}
.x18{left:604.979651px;}
.x19{left:615.236284px;}
.x8{left:641.879324px;}
.x1a{left:646.739871px;}
.x1b{left:648.896010px;}
.x25{left:653.940033px;}
.x24{left:678.600014px;}
.x27{left:681.120002px;}
.x26{left:696.600014px;}
.x23{left:729.000000px;}
.x1c{left:740.699605px;}
.x1d{left:750.959280px;}
.x20{left:814.860008px;}
@media print{
.v1{vertical-align:-61.439944pt;}
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.326346pt;}
.ls5{letter-spacing:0.364598pt;}
.ls4{letter-spacing:0.364654pt;}
.ls7{letter-spacing:0.364658pt;}
.ls8{letter-spacing:0.450312pt;}
.ls6{letter-spacing:1.004610pt;}
.ls2{letter-spacing:1062.076240pt;}
.ls0{letter-spacing:1065.468590pt;}
.ws2{word-spacing:-55.342529pt;}
.ws0{word-spacing:-55.238000pt;}
.ws8{word-spacing:-45.031200pt;}
.ws1{word-spacing:-13.835632pt;}
.ws4{word-spacing:-13.730545pt;}
.ws9{word-spacing:-11.708112pt;}
.ws7{word-spacing:-11.257800pt;}
.ws3{word-spacing:-11.083776pt;}
.ws5{word-spacing:-9.559875pt;}
.ws6{word-spacing:0.000000pt;}
._3{margin-left:-8.781084pt;}
._21{margin-left:-2.140359pt;}
._0{margin-left:-1.104760pt;}
._1{width:1.050817pt;}
._4{width:2.120405pt;}
._9{width:3.535664pt;}
._8{width:4.465000pt;}
._5{width:5.727059pt;}
._18{width:7.030330pt;}
._b{width:8.269301pt;}
._c{width:9.784678pt;}
._15{width:11.204467pt;}
._19{width:12.917277pt;}
._2f{width:14.086711pt;}
._12{width:15.283233pt;}
._e{width:16.930663pt;}
._6{width:17.897112pt;}
._7{width:18.827743pt;}
._13{width:20.093470pt;}
._16{width:21.285186pt;}
._17{width:22.694835pt;}
._24{width:23.617805pt;}
._22{width:25.568249pt;}
._1d{width:26.955281pt;}
._2c{width:27.939313pt;}
._1f{width:28.888800pt;}
._20{width:29.884966pt;}
._1a{width:31.467103pt;}
._10{width:33.033187pt;}
._f{width:34.064153pt;}
._2e{width:35.037291pt;}
._29{width:36.482859pt;}
._28{width:37.608663pt;}
._11{width:38.548140pt;}
._33{width:40.843298pt;}
._1c{width:42.088767pt;}
._1b{width:43.059963pt;}
._26{width:44.162134pt;}
._2b{width:52.089434pt;}
._a{width:53.138524pt;}
._30{width:55.122467pt;}
._2a{width:58.193880pt;}
._2d{width:59.205858pt;}
._14{width:60.512582pt;}
._1e{width:61.792334pt;}
._25{width:81.845023pt;}
._27{width:83.425779pt;}
._35{width:121.929391pt;}
._36{width:123.738877pt;}
._34{width:130.148816pt;}
._d{width:132.634853pt;}
._32{width:454.574865pt;}
._2{width:488.500725pt;}
._31{width:496.913105pt;}
._23{width:626.702220pt;}
.fs9{font-size:34.890055pt;}
.fs1{font-size:40.227600pt;}
.fs7{font-size:40.304639pt;}
.fs2{font-size:45.031200pt;}
.fsb{font-size:45.116292pt;}
.fs3{font-size:49.834400pt;}
.fs8{font-size:49.929256pt;}
.fs0{font-size:55.238000pt;}
.fs6{font-size:55.342529pt;}
.fsa{font-size:75.051596pt;}
.fs4{font-size:107.474000pt;}
.fs5{font-size:244.969192pt;}
.y7e{bottom:-7.197736pt;}
.y0{bottom:0.000000pt;}
.y7b{bottom:2.241299pt;}
.y76{bottom:2.561469pt;}
.y60{bottom:2.877926pt;}
.y78{bottom:3.199812pt;}
.y5a{bottom:3.839965pt;}
.y82{bottom:6.079956pt;}
.y81{bottom:27.040039pt;}
.y3{bottom:28.000000pt;}
.y80{bottom:42.080017pt;}
.y2{bottom:42.880005pt;}
.y147{bottom:60.320007pt;}
.y7d{bottom:61.764337pt;}
.yea{bottom:63.679993pt;}
.y7c{bottom:66.247039pt;}
.y11f{bottom:68.479980pt;}
.y105{bottom:69.599976pt;}
.yb1{bottom:70.880005pt;}
.yeb{bottom:72.488767pt;}
.y146{bottom:73.440002pt;}
.y7a{bottom:75.683474pt;}
.ye9{bottom:79.679993pt;}
.y104{bottom:80.159973pt;}
.y11e{bottom:81.440002pt;}
.y145{bottom:86.239990pt;}
.yb0{bottom:86.559998pt;}
.y11d{bottom:94.400024pt;}
.ye8{bottom:95.520020pt;}
.y144{bottom:99.359985pt;}
.y36{bottom:102.080017pt;}
.y58{bottom:102.400024pt;}
.yaf{bottom:102.559998pt;}
.y11c{bottom:105.119995pt;}
.ye7{bottom:111.359985pt;}
.y143{bottom:112.320007pt;}
.y35{bottom:117.599976pt;}
.y57{bottom:118.239990pt;}
.yae{bottom:118.559998pt;}
.y142{bottom:125.440002pt;}
.ye6{bottom:127.359985pt;}
.y34{bottom:133.919983pt;}
.y56{bottom:134.080017pt;}
.yad{bottom:134.400024pt;}
.y141{bottom:138.400024pt;}
.ye5{bottom:143.200012pt;}
.y33{bottom:149.280029pt;}
.y55{bottom:150.080017pt;}
.yac{bottom:150.239990pt;}
.y140{bottom:151.359985pt;}
.ye4{bottom:159.039978pt;}
.y13f{bottom:164.320007pt;}
.y32{bottom:165.280029pt;}
.y54{bottom:165.919983pt;}
.yab{bottom:166.239990pt;}
.ye3{bottom:175.039978pt;}
.y13e{bottom:177.440002pt;}
.y31{bottom:181.280029pt;}
.y53{bottom:181.760010pt;}
.yaa{bottom:182.080017pt;}
.y13d{bottom:190.400024pt;}
.ye2{bottom:191.039978pt;}
.y30{bottom:197.119995pt;}
.y52{bottom:197.760010pt;}
.ya9{bottom:198.080017pt;}
.y13c{bottom:203.520020pt;}
.ye1{bottom:206.719971pt;}
.y2f{bottom:212.960022pt;}
.y51{bottom:213.760010pt;}
.ya8{bottom:213.919983pt;}
.y13b{bottom:216.479980pt;}
.ye0{bottom:222.719971pt;}
.y2e{bottom:228.960022pt;}
.y50{bottom:229.440002pt;}
.ya7{bottom:229.760010pt;}
.ydf{bottom:238.719971pt;}
.y13a{bottom:242.400024pt;}
.y2d{bottom:244.799988pt;}
.y4f{bottom:245.440002pt;}
.ya6{bottom:245.760010pt;}
.yde{bottom:254.400024pt;}
.y139{bottom:255.520020pt;}
.y2c{bottom:260.799988pt;}
.y4e{bottom:261.440002pt;}
.y138{bottom:268.479980pt;}
.ydd{bottom:270.400024pt;}
.y2b{bottom:276.479980pt;}
.y4d{bottom:277.280029pt;}
.ya5{bottom:277.440002pt;}
.y137{bottom:281.599976pt;}
.ydc{bottom:286.400024pt;}
.y2a{bottom:292.479980pt;}
.y4c{bottom:293.119995pt;}
.ya4{bottom:293.919983pt;}
.y136{bottom:294.400024pt;}
.ydb{bottom:302.239990pt;}
.y135{bottom:307.840027pt;}
.y29{bottom:308.479980pt;}
.y4b{bottom:309.119995pt;}
.ya3{bottom:309.760010pt;}
.yda{bottom:318.080017pt;}
.y134{bottom:320.479980pt;}
.y28{bottom:324.159973pt;}
.y4a{bottom:324.960022pt;}
.ya2{bottom:325.119995pt;}
.y133{bottom:333.599976pt;}
.yd9{bottom:334.080017pt;}
.y27{bottom:340.159973pt;}
.y49{bottom:340.799988pt;}
.ya1{bottom:341.119995pt;}
.y132{bottom:346.719971pt;}
.y103{bottom:348.159973pt;}
.yd8{bottom:349.919983pt;}
.y26{bottom:356.159973pt;}
.y48{bottom:356.640015pt;}
.ya0{bottom:356.960022pt;}
.y131{bottom:359.520020pt;}
.y102{bottom:364.159973pt;}
.yd7{bottom:365.760010pt;}
.y25{bottom:372.000000pt;}
.y130{bottom:372.479980pt;}
.y47{bottom:372.640015pt;}
.y9f{bottom:372.799988pt;}
.y101{bottom:380.000000pt;}
.yd6{bottom:381.760010pt;}
.y12f{bottom:385.919983pt;}
.y24{bottom:387.840027pt;}
.y46{bottom:388.640015pt;}
.y9e{bottom:388.799988pt;}
.y100{bottom:395.840027pt;}
.yd5{bottom:397.599976pt;}
.y12e{bottom:398.559998pt;}
.y23{bottom:403.840027pt;}
.y45{bottom:404.320007pt;}
.y9d{bottom:404.640015pt;}
.yff{bottom:411.679993pt;}
.yd4{bottom:413.599976pt;}
.y22{bottom:419.679993pt;}
.y44{bottom:420.320007pt;}
.y9c{bottom:420.640015pt;}
.y12d{bottom:424.799988pt;}
.yfe{bottom:427.679993pt;}
.yd3{bottom:429.280029pt;}
.y59{bottom:432.640015pt;}
.y21{bottom:435.520020pt;}
.y43{bottom:436.320007pt;}
.y9b{bottom:436.479980pt;}
.y12c{bottom:437.599976pt;}
.yfd{bottom:443.520020pt;}
.yd2{bottom:445.280029pt;}
.y12b{bottom:450.559998pt;}
.y20{bottom:451.520020pt;}
.y42{bottom:452.000000pt;}
.y9a{bottom:452.320007pt;}
.yfc{bottom:459.359985pt;}
.yd1{bottom:461.280029pt;}
.y11b{bottom:463.359985pt;}
.y12a{bottom:463.679993pt;}
.y1f{bottom:467.359985pt;}
.y41{bottom:468.000000pt;}
.y99{bottom:468.320007pt;}
.yfb{bottom:475.359985pt;}
.y129{bottom:476.799988pt;}
.yd0{bottom:477.119995pt;}
.y11a{bottom:479.200012pt;}
.y1e{bottom:483.359985pt;}
.y40{bottom:483.679993pt;}
.y98{bottom:484.159973pt;}
.y128{bottom:489.599976pt;}
.yfa{bottom:491.359985pt;}
.ycf{bottom:492.960022pt;}
.y119{bottom:495.039978pt;}
.y3f{bottom:498.400024pt;}
.y1d{bottom:499.200012pt;}
.y97{bottom:500.000000pt;}
.y127{bottom:502.559998pt;}
.yf9{bottom:507.039978pt;}
.yce{bottom:508.960022pt;}
.y118{bottom:511.039978pt;}
.y3e{bottom:514.400024pt;}
.y1c{bottom:515.039978pt;}
.y96{bottom:516.000000pt;}
.yf8{bottom:523.039978pt;}
.ycd{bottom:524.799988pt;}
.y117{bottom:526.880005pt;}
.y126{bottom:528.640015pt;}
.y3d{bottom:530.080017pt;}
.y1b{bottom:531.039978pt;}
.y74{bottom:531.683239pt;}
.y95{bottom:531.840027pt;}
.yf7{bottom:539.039978pt;}
.ycc{bottom:540.640015pt;}
.y125{bottom:541.760010pt;}
.y116{bottom:542.719971pt;}
.y3c{bottom:546.079987pt;}
.y1a{bottom:546.880005pt;}
.y73{bottom:547.525317pt;}
.y94{bottom:547.679993pt;}
.y124{bottom:554.559998pt;}
.yf6{bottom:554.720001pt;}
.ycb{bottom:556.640015pt;}
.y75{bottom:556.955187pt;}
.y115{bottom:558.720001pt;}
.y3b{bottom:561.920013pt;}
.y19{bottom:562.720001pt;}
.y72{bottom:563.523587pt;}
.y93{bottom:563.679993pt;}
.y123{bottom:567.679993pt;}
.yf5{bottom:570.720001pt;}
.yca{bottom:572.480011pt;}
.y114{bottom:574.559998pt;}
.y3a{bottom:577.920013pt;}
.y18{bottom:578.720001pt;}
.y71{bottom:579.365664pt;}
.y92{bottom:579.519989pt;}
.y122{bottom:580.640015pt;}
.y77{bottom:580.801245pt;}
.yf4{bottom:586.720001pt;}
.yc9{bottom:588.480011pt;}
.y113{bottom:590.399994pt;}
.y39{bottom:593.760010pt;}
.y17{bottom:594.559998pt;}
.y70{bottom:595.207742pt;}
.y91{bottom:595.519989pt;}
.yf3{bottom:602.559998pt;}
.yc8{bottom:604.320007pt;}
.y112{bottom:606.399994pt;}
.y121{bottom:606.720001pt;}
.y38{bottom:609.600006pt;}
.y6f{bottom:611.206012pt;}
.y90{bottom:611.359985pt;}
.y16{bottom:611.519989pt;}
.yf2{bottom:618.399994pt;}
.yc7{bottom:620.160004pt;}
.y111{bottom:622.720001pt;}
.y37{bottom:625.600006pt;}
.y6e{bottom:627.048090pt;}
.y8f{bottom:627.200012pt;}
.yf1{bottom:634.399994pt;}
.yc6{bottom:636.160004pt;}
.y110{bottom:638.239990pt;}
.y15{bottom:642.399994pt;}
.y6d{bottom:642.883406pt;}
.y8e{bottom:643.200012pt;}
.yf0{bottom:650.239990pt;}
.yc5{bottom:652.000000pt;}
.y10f{bottom:654.079987pt;}
.y15f{bottom:657.279999pt;}
.y14{bottom:657.920013pt;}
.y6c{bottom:658.887613pt;}
.y8d{bottom:659.040009pt;}
.yef{bottom:666.239990pt;}
.yc4{bottom:667.839996pt;}
.y10e{bottom:669.920013pt;}
.y15e{bottom:670.239990pt;}
.y8c{bottom:674.880005pt;}
.y6b{bottom:675.202597pt;}
.yee{bottom:681.600006pt;}
.y15d{bottom:683.359985pt;}
.yc3{bottom:683.839996pt;}
.y10d{bottom:685.920013pt;}
.y13{bottom:688.799988pt;}
.y6a{bottom:690.565007pt;}
.y8b{bottom:690.880005pt;}
.yed{bottom:694.720001pt;}
.y15c{bottom:696.320007pt;}
.yc2{bottom:699.679993pt;}
.y10c{bottom:702.239990pt;}
.yec{bottom:705.119995pt;}
.y69{bottom:706.562452pt;}
.y8a{bottom:707.200012pt;}
.y15b{bottom:709.440002pt;}
.yc1{bottom:715.519989pt;}
.y10b{bottom:717.600006pt;}
.y12{bottom:719.679993pt;}
.y15a{bottom:722.239990pt;}
.y68{bottom:722.404530pt;}
.y89{bottom:723.040009pt;}
.yc0{bottom:731.519989pt;}
.y10a{bottom:733.600006pt;}
.y11{bottom:735.040009pt;}
.y159{bottom:735.359985pt;}
.y67{bottom:738.246587pt;}
.y88{bottom:738.559998pt;}
.ybf{bottom:747.359985pt;}
.y158{bottom:748.320007pt;}
.y109{bottom:749.600006pt;}
.y10{bottom:750.559998pt;}
.y66{bottom:754.244032pt;}
.y87{bottom:754.559998pt;}
.y157{bottom:761.440002pt;}
.ybe{bottom:763.359985pt;}
.y108{bottom:764.799988pt;}
.yf{bottom:765.920013pt;}
.y65{bottom:770.086110pt;}
.y86{bottom:770.239990pt;}
.y156{bottom:774.399994pt;}
.y107{bottom:777.920013pt;}
.ybd{bottom:779.200012pt;}
.ye{bottom:781.440002pt;}
.y64{bottom:786.083555pt;}
.y155{bottom:787.359985pt;}
.y106{bottom:788.480011pt;}
.ybc{bottom:795.040009pt;}
.yd{bottom:796.799988pt;}
.y154{bottom:800.320007pt;}
.y63{bottom:801.925633pt;}
.y85{bottom:810.880005pt;}
.ybb{bottom:811.039993pt;}
.y120{bottom:811.520004pt;}
.yc{bottom:812.320007pt;}
.y153{bottom:813.440002pt;}
.y62{bottom:817.760949pt;}
.y84{bottom:824.800003pt;}
.y152{bottom:826.399994pt;}
.yba{bottom:826.880005pt;}
.yb{bottom:827.679993pt;}
.y61{bottom:833.765157pt;}
.y83{bottom:835.360001pt;}
.y151{bottom:839.520004pt;}
.yb9{bottom:842.720001pt;}
.ya{bottom:843.039993pt;}
.y5f{bottom:846.884675pt;}
.y5e{bottom:849.762602pt;}
.y150{bottom:852.320007pt;}
.y9{bottom:858.559998pt;}
.yb8{bottom:858.720001pt;}
.y14f{bottom:865.440002pt;}
.y5d{bottom:865.442529pt;}
.y8{bottom:873.919998pt;}
.yb7{bottom:874.720001pt;}
.y14e{bottom:878.399994pt;}
.y5c{bottom:881.439975pt;}
.y7{bottom:889.440002pt;}
.yb6{bottom:890.399994pt;}
.y14d{bottom:891.520004pt;}
.y79{bottom:893.444831pt;}
.y5b{bottom:897.761710pt;}
.y14c{bottom:904.479996pt;}
.y6{bottom:904.960007pt;}
.yb5{bottom:906.399994pt;}
.y14b{bottom:917.440002pt;}
.yb4{bottom:922.399994pt;}
.y5{bottom:924.000000pt;}
.y14a{bottom:930.400002pt;}
.yb3{bottom:938.080002pt;}
.y149{bottom:943.519997pt;}
.y4{bottom:953.760002pt;}
.yb2{bottom:954.080002pt;}
.y148{bottom:956.480003pt;}
.y7f{bottom:982.559998pt;}
.y1{bottom:998.560001pt;}
.h13{height:2.403717pt;}
.h11{height:11.520724pt;}
.hc{height:13.277844pt;}
.hb{height:14.558503pt;}
.he{height:16.315224pt;}
.hd{height:29.834879pt;}
.h12{height:30.171039pt;}
.h16{height:34.059243pt;}
.h17{height:34.123602pt;}
.hf{height:36.959352pt;}
.h7{height:37.692132pt;}
.h1{height:41.779132pt;}
.ha{height:41.858192pt;}
.h2{height:44.789333pt;}
.h5{height:45.391450pt;}
.h6{height:45.661637pt;}
.h8{height:47.679992pt;}
.h3{height:49.566735pt;}
.h14{height:54.941312pt;}
.h10{height:55.045279pt;}
.h15{height:74.648487pt;}
.h4{height:110.053376pt;}
.h9{height:185.281874pt;}
.h0{height:1056.000000pt;}
.wf{width:2.078933pt;}
.wb{width:2.559674pt;}
.w10{width:2.560779pt;}
.w4{width:2.715850pt;}
.w17{width:4.161084pt;}
.w6{width:5.116812pt;}
.w9{width:6.558097pt;}
.w15{width:9.601504pt;}
.w12{width:10.237657pt;}
.wc{width:12.159554pt;}
.wa{width:19.838609pt;}
.w16{width:27.840771pt;}
.w13{width:28.003188pt;}
.w7{width:30.242782pt;}
.w3{width:36.481797pt;}
.w5{width:36.801594pt;}
.w8{width:40.323728pt;}
.w1{width:40.800010pt;}
.w11{width:80.003405pt;}
.w14{width:81.603196pt;}
.wd{width:131.042660pt;}
.w2{width:143.355497pt;}
.we{width:184.956819pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1{left:91.519997pt;}
.x10{left:101.279973pt;}
.x1f{left:108.318752pt;}
.x11{left:120.960999pt;}
.x12{left:123.358841pt;}
.x3{left:132.320007pt;}
.x13{left:135.360812pt;}
.x4{left:136.479996pt;}
.x9{left:137.602556pt;}
.xd{left:140.157865pt;}
.x21{left:144.800003pt;}
.xe{left:170.400647pt;}
.xa{left:174.084353pt;}
.xb{left:176.642759pt;}
.xf{left:210.724375pt;}
.xc{left:213.444353pt;}
.x2{left:221.279999pt;}
.x14{left:268.801313pt;}
.x7{left:275.354759pt;}
.x1e{left:396.000000pt;}
.x5{left:419.679993pt;}
.x15{left:453.601070pt;}
.x16{left:455.520289pt;}
.x17{left:457.918651pt;}
.x6{left:464.799988pt;}
.x22{left:473.119995pt;}
.x18{left:537.759689pt;}
.x19{left:546.876697pt;}
.x8{left:570.559399pt;}
.x1a{left:574.879885pt;}
.x1b{left:576.796453pt;}
.x25{left:581.280029pt;}
.x24{left:603.200012pt;}
.x27{left:605.440002pt;}
.x26{left:619.200012pt;}
.x23{left:648.000000pt;}
.x1c{left:658.399649pt;}
.x1d{left:667.519360pt;}
.x20{left:724.320007pt;}
}




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