
    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_0efce9266264bb1c3e53a99f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.922852;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_ad816a8b79793ac562e3f890.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.103027;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_e2c34f52da0fdd83f2a3ba12.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.912598;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_c90a247ffea5f85c7823c6fa.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.731445;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);}
.v2{vertical-align:-24.502499px;}
.v3{vertical-align:-22.768066px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:26.730002px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:4.488270px;}
.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:-18.000000px;}
.ws1{word-spacing:-10.800000px;}
.ws3{word-spacing:-10.001953px;}
.ws2{word-spacing:-9.900000px;}
.ws0{word-spacing:0.000000px;}
._11{margin-left:-8.561324px;}
._d{margin-left:-6.855459px;}
._4{margin-left:-5.030190px;}
._10{margin-left:-3.966897px;}
._0{margin-left:-2.598673px;}
._6{margin-left:-1.110035px;}
._7{width:1.259843px;}
._5{width:2.560647px;}
._8{width:4.499999px;}
._3{width:8.232332px;}
._2{width:9.383828px;}
._1{width:13.500000px;}
._9{width:22.356487px;}
._f{width:23.361098px;}
._c{width:26.050769px;}
._b{width:27.190186px;}
._a{width:31.356485px;}
._14{width:32.487283px;}
._13{width:35.050789px;}
._e{width:36.949211px;}
._12{width:40.499999px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:36.000000px;}
.fs5{font-size:39.600001px;}
.fs3{font-size:43.200002px;}
.fs7{font-size:59.999999px;}
.fs4{font-size:66.000002px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:78.000003px;}
.fs0{font-size:83.999997px;}
.y0{bottom:0.000000px;}
.yd6{bottom:112.508051px;}
.yb5{bottom:112.508054px;}
.y92{bottom:112.508055px;}
.y1e2{bottom:116.787602px;}
.y13f{bottom:124.137442px;}
.yd5{bottom:131.070554px;}
.y157{bottom:131.070555px;}
.y1b1{bottom:131.787594px;}
.yfa{bottom:133.268555px;}
.y26{bottom:134.749849px;}
.y1c4{bottom:135.462890px;}
.y6e{bottom:135.651130px;}
.yb4{bottom:136.762571px;}
.y91{bottom:137.196179px;}
.y190{bottom:139.136720px;}
.y4d{bottom:139.137439px;}
.y217{bottom:141.155270px;}
.y1e1{bottom:143.112308px;}
.y11e{bottom:146.786870px;}
.y13e{bottom:150.461430px;}
.yd4{bottom:155.325071px;}
.y156{bottom:155.325073px;}
.y1b0{bottom:158.112305px;}
.yf9{bottom:159.593255px;}
.y25{bottom:161.074770px;}
.y1c3{bottom:161.787605px;}
.y6d{bottom:164.169430px;}
.y4c{bottom:165.462157px;}
.y18f{bottom:165.462890px;}
.y15a{bottom:168.195555px;}
.y216{bottom:168.379391px;}
.y1e0{bottom:169.435550px;}
.y176{bottom:169.437020px;}
.y11d{bottom:173.112305px;}
.y13d{bottom:176.787603px;}
.y1af{bottom:184.437005px;}
.yf8{bottom:185.918705px;}
.y159{bottom:186.758055px;}
.y24{bottom:187.399837px;}
.y1c2{bottom:188.112305px;}
.y18e{bottom:191.786132px;}
.y4b{bottom:191.787427px;}
.y6c{bottom:191.787594px;}
.y1ff{bottom:195.761725px;}
.y175{bottom:195.763190px;}
.y11c{bottom:199.437740px;}
.yb3{bottom:203.112300px;}
.y13c{bottom:203.112304px;}
.y90{bottom:207.856204px;}
.y1ae{bottom:210.761709px;}
.y1df{bottom:210.761720px;}
.y158{bottom:211.012573px;}
.yf7{bottom:212.243405px;}
.y23{bottom:213.724725px;}
.y1c1{bottom:214.437005px;}
.y6b{bottom:218.112304px;}
.y18d{bottom:218.112305px;}
.y4a{bottom:218.112315px;}
.y174{bottom:222.087884px;}
.y1fe{bottom:222.087894px;}
.y11b{bottom:225.761720px;}
.y13b{bottom:229.437015px;}
.yb2{bottom:229.437740px;}
.y8f{bottom:234.180915px;}
.y1ad{bottom:237.086420px;}
.y1de{bottom:237.087890px;}
.yf6{bottom:238.568120px;}
.y22{bottom:240.049781px;}
.y1c0{bottom:240.763188px;}
.y6a{bottom:244.437010px;}
.y49{bottom:244.437371px;}
.y18c{bottom:244.438475px;}
.y173{bottom:248.412589px;}
.y155{bottom:248.412596px;}
.y1fd{bottom:248.412605px;}
.y11a{bottom:252.087890px;}
.yb1{bottom:255.762450px;}
.y13a{bottom:255.762454px;}
.y8e{bottom:260.505616px;}
.y1ac{bottom:263.412605px;}
.y1dd{bottom:264.312741px;}
.yf5{bottom:264.893555px;}
.y21{bottom:266.374882px;}
.y1bf{bottom:267.087889px;}
.y18b{bottom:270.761717px;}
.yd3{bottom:270.761720px;}
.y48{bottom:270.762439px;}
.y69{bottom:270.762444px;}
.y154{bottom:274.737292px;}
.y172{bottom:274.737294px;}
.y119{bottom:278.411870px;}
.y139{bottom:282.086426px;}
.yb0{bottom:282.087159px;}
.y1fc{bottom:282.237299px;}
.y8d{bottom:286.831060px;}
.y1ab{bottom:289.737304px;}
.yf4{bottom:291.218255px;}
.y1dc{bottom:291.931640px;}
.y20{bottom:292.699770px;}
.y1be{bottom:293.412600px;}
.y68{bottom:297.087155px;}
.y47{bottom:297.087157px;}
.yd2{bottom:297.087881px;}
.y18a{bottom:297.087886px;}
.y171{bottom:301.062005px;}
.y153{bottom:301.062011px;}
.y118{bottom:304.737305px;}
.yaf{bottom:308.412230px;}
.y138{bottom:308.412594px;}
.y1fb{bottom:308.563472px;}
.y8c{bottom:313.156134px;}
.y1aa{bottom:316.062009px;}
.yf3{bottom:317.543705px;}
.y1db{bottom:318.257810px;}
.y1f{bottom:319.024837px;}
.y1bd{bottom:319.737301px;}
.y189{bottom:323.411132px;}
.y46{bottom:323.412214px;}
.yd1{bottom:323.412600px;}
.y67{bottom:323.412622px;}
.y152{bottom:327.388174px;}
.y170{bottom:327.388189px;}
.y117{bottom:331.062740px;}
.yae{bottom:334.737304px;}
.y1fa{bottom:334.888178px;}
.y215{bottom:335.566412px;}
.y8b{bottom:339.481205px;}
.y1a9{bottom:342.386720px;}
.yf2{bottom:343.868405px;}
.y1da{bottom:344.581054px;}
.y1e{bottom:345.349725px;}
.y1bc{bottom:346.062011px;}
.y188{bottom:349.737305px;}
.y66{bottom:349.737307px;}
.y45{bottom:349.737315px;}
.yd0{bottom:349.737319px;}
.y151{bottom:353.712875px;}
.y16f{bottom:353.712900px;}
.y116{bottom:357.386720px;}
.y137{bottom:361.062007px;}
.yad{bottom:361.062744px;}
.y1f9{bottom:361.211420px;}
.y214{bottom:361.892585px;}
.y8a{bottom:365.805906px;}
.y1a8{bottom:368.711426px;}
.yf1{bottom:370.193120px;}
.y1d9{bottom:370.905759px;}
.y1d{bottom:371.674781px;}
.y1bb{bottom:372.388179px;}
.y65{bottom:376.061992px;}
.ycf{bottom:376.062004px;}
.y44{bottom:376.062371px;}
.y187{bottom:376.063475px;}
.y150{bottom:380.037594px;}
.y16e{bottom:380.037601px;}
.y115{bottom:383.712890px;}
.y136{bottom:387.387446px;}
.yac{bottom:387.387454px;}
.y213{bottom:388.218755px;}
.y89{bottom:392.130613px;}
.y1a7{bottom:395.037594px;}
.y1f8{bottom:395.039062px;}
.yf0{bottom:396.518555px;}
.y1d8{bottom:397.230470px;}
.y1c{bottom:397.999882px;}
.y1ba{bottom:398.712890px;}
.y186{bottom:402.386719px;}
.yce{bottom:402.386722px;}
.y64{bottom:402.387431px;}
.y43{bottom:402.387439px;}
.y14f{bottom:406.362304px;}
.y16d{bottom:406.362311px;}
.y114{bottom:410.036870px;}
.y135{bottom:413.711411px;}
.yab{bottom:413.712160px;}
.y212{bottom:414.543455px;}
.y88{bottom:418.456052px;}
.y1a6{bottom:421.362305px;}
.y1b{bottom:424.324770px;}
.y1d7{bottom:424.456780px;}
.y42{bottom:428.712158px;}
.y63{bottom:428.712184px;}
.ycd{bottom:428.712881px;}
.y185{bottom:428.712889px;}
.y14e{bottom:432.687010px;}
.y16c{bottom:432.687020px;}
.y113{bottom:436.362305px;}
.yef{bottom:437.843990px;}
.yaa{bottom:440.037234px;}
.y134{bottom:440.037604px;}
.y211{bottom:440.866700px;}
.y87{bottom:444.781123px;}
.y1a5{bottom:447.687015px;}
.y1a{bottom:450.649837px;}
.y1d6{bottom:452.975832px;}
.y184{bottom:455.036131px;}
.y41{bottom:455.037236px;}
.ycc{bottom:455.037600px;}
.y62{bottom:455.037622px;}
.y14d{bottom:459.013184px;}
.y16b{bottom:459.013190px;}
.y1f7{bottom:462.688475px;}
.y133{bottom:466.362289px;}
.ya9{bottom:466.362305px;}
.y210{bottom:467.191400px;}
.y86{bottom:471.106202px;}
.y1a4{bottom:474.011716px;}
.y19{bottom:476.974725px;}
.y112{bottom:477.687005px;}
.yee{bottom:479.167970px;}
.y1d5{bottom:480.593259px;}
.y40{bottom:481.362292px;}
.y183{bottom:481.362304px;}
.y61{bottom:481.362307px;}
.ycb{bottom:481.362319px;}
.y14c{bottom:485.337155px;}
.y1b9{bottom:492.687005px;}
.y132{bottom:492.687007px;}
.y20f{bottom:493.517585px;}
.y85{bottom:497.431272px;}
.y16a{bottom:500.336420px;}
.y1a3{bottom:500.336426px;}
.y1f6{bottom:503.111580px;}
.y18{bottom:503.299804px;}
.y111{bottom:504.013190px;}
.yed{bottom:505.494140px;}
.y1d4{bottom:506.917970px;}
.y60{bottom:507.686992px;}
.ya8{bottom:507.687005px;}
.y3f{bottom:507.687371px;}
.y182{bottom:507.688477px;}
.y1b8{bottom:519.011720px;}
.y131{bottom:519.012446px;}
.y20e{bottom:519.843755px;}
.y84{bottom:523.755982px;}
.y1a2{bottom:526.662594px;}
.y14b{bottom:526.662605px;}
.y1f5{bottom:529.045173px;}
.y17{bottom:529.624826px;}
.y110{bottom:530.337155px;}
.yec{bottom:531.818839px;}
.y181{bottom:534.011720px;}
.yca{bottom:534.011722px;}
.ya7{bottom:534.012080px;}
.y5f{bottom:534.012431px;}
.y3e{bottom:534.012453px;}
.y1d3{bottom:534.144280px;}
.y1b7{bottom:545.336420px;}
.y130{bottom:545.336423px;}
.y20d{bottom:546.168455px;}
.y83{bottom:550.081055px;}
.y169{bottom:552.987305px;}
.y16{bottom:555.949755px;}
.y10f{bottom:556.662605px;}
.yeb{bottom:558.143544px;}
.y3d{bottom:560.337154px;}
.y5e{bottom:560.337184px;}
.ya6{bottom:560.337515px;}
.y180{bottom:560.337881px;}
.yc9{bottom:560.337892px;}
.y1d2{bottom:562.663334px;}
.y14a{bottom:567.987305px;}
.y12f{bottom:571.662581px;}
.y1b6{bottom:571.662605px;}
.y20c{bottom:572.491700px;}
.y1a1{bottom:579.312005px;}
.y15{bottom:582.274834px;}
.y10e{bottom:582.987305px;}
.y1f4{bottom:582.987308px;}
.yea{bottom:584.468255px;}
.y17f{bottom:586.661127px;}
.y3c{bottom:586.662225px;}
.y5d{bottom:586.662589px;}
.yc8{bottom:586.662600px;}
.y1d1{bottom:590.280766px;}
.y82{bottom:591.406130px;}
.y168{bottom:594.313475px;}
.y12e{bottom:597.987303px;}
.y1b5{bottom:597.987305px;}
.y20b{bottom:598.816400px;}
.y1a0{bottom:605.636709px;}
.y14{bottom:608.599768px;}
.y1f3{bottom:609.310550px;}
.y10d{bottom:609.312005px;}
.y149{bottom:609.312016px;}
.ye9{bottom:610.792970px;}
.ya5{bottom:612.987294px;}
.yc7{bottom:612.987296px;}
.y3b{bottom:612.987304px;}
.y5c{bottom:612.987307px;}
.y1d0{bottom:616.605476px;}
.y81{bottom:617.730830px;}
.y167{bottom:620.636720px;}
.y12d{bottom:624.312004px;}
.y20a{bottom:625.142576px;}
.y19f{bottom:631.961420px;}
.y13{bottom:634.924795px;}
.y1f2{bottom:635.636720px;}
.y10c{bottom:635.638190px;}
.ye8{bottom:637.119139px;}
.ya4{bottom:639.312005px;}
.yc6{bottom:639.312018px;}
.y5b{bottom:639.312026px;}
.y3a{bottom:639.312375px;}
.y17e{bottom:639.313474px;}
.y1cf{bottom:642.931644px;}
.y80{bottom:644.055905px;}
.y166{bottom:646.962892px;}
.y12c{bottom:650.637444px;}
.y209{bottom:651.468744px;}
.y19e{bottom:658.287605px;}
.y12{bottom:661.249827px;}
.y10b{bottom:661.962155px;}
.y148{bottom:661.962165px;}
.y1f1{bottom:661.962890px;}
.ye7{bottom:663.443844px;}
.y17d{bottom:665.636716px;}
.yc5{bottom:665.636719px;}
.ya3{bottom:665.637090px;}
.y39{bottom:665.637444px;}
.y5a{bottom:665.637465px;}
.y1ce{bottom:669.256355px;}
.y7f{bottom:670.380980px;}
.y165{bottom:673.286135px;}
.y12b{bottom:676.961416px;}
.y208{bottom:677.793455px;}
.y19d{bottom:684.612299px;}
.y11{bottom:687.574764px;}
.y1f0{bottom:688.287602px;}
.y10a{bottom:688.287605px;}
.ye6{bottom:689.768555px;}
.y59{bottom:691.962150px;}
.y38{bottom:691.962155px;}
.ya2{bottom:691.962525px;}
.yc4{bottom:691.962889px;}
.y7e{bottom:696.706055px;}
.y164{bottom:699.612305px;}
.y12a{bottom:703.287589px;}
.y207{bottom:704.116700px;}
.y1cd{bottom:710.581058px;}
.y19c{bottom:710.937004px;}
.y10{bottom:713.899835px;}
.y109{bottom:714.612305px;}
.y1ef{bottom:714.612308px;}
.ye5{bottom:716.093254px;}
.y17c{bottom:718.286135px;}
.y37{bottom:718.287235px;}
.y58{bottom:718.287589px;}
.yc3{bottom:718.287599px;}
.ya1{bottom:718.287604px;}
.y7d{bottom:723.031130px;}
.y163{bottom:725.938481px;}
.y129{bottom:729.612294px;}
.y206{bottom:730.441412px;}
.y19b{bottom:737.261709px;}
.y1cc{bottom:737.805910px;}
.yf{bottom:740.224825px;}
.y1ee{bottom:740.935550px;}
.y108{bottom:740.937005px;}
.y147{bottom:740.937010px;}
.ye4{bottom:742.417972px;}
.yc2{bottom:744.612304px;}
.y57{bottom:744.612307px;}
.y36{bottom:744.612310px;}
.ya0{bottom:744.612315px;}
.y7c{bottom:749.355830px;}
.y162{bottom:752.261719px;}
.y128{bottom:755.937005px;}
.y205{bottom:756.767585px;}
.y19a{bottom:763.586420px;}
.y1cb{bottom:766.326415px;}
.ye{bottom:766.549805px;}
.y146{bottom:767.263184px;}
.y107{bottom:767.263190px;}
.ye3{bottom:768.744131px;}
.yc1{bottom:770.937009px;}
.y9f{bottom:770.937016px;}
.y56{bottom:770.937195px;}
.y35{bottom:770.937384px;}
.y17b{bottom:770.938466px;}
.y1b4{bottom:770.938475px;}
.y7b{bottom:775.680905px;}
.y161{bottom:778.587892px;}
.y1ed{bottom:782.261720px;}
.y204{bottom:783.093755px;}
.yd{bottom:792.874790px;}
.y145{bottom:793.587155px;}
.y1ca{bottom:794.843995px;}
.ye2{bottom:795.068850px;}
.y17a{bottom:797.261712px;}
.yc0{bottom:797.261720px;}
.y9e{bottom:797.262090px;}
.y34{bottom:797.262455px;}
.y55{bottom:797.262465px;}
.y7a{bottom:802.005980px;}
.y160{bottom:804.911135px;}
.y106{bottom:808.586420px;}
.y1ec{bottom:808.587890px;}
.yc{bottom:819.199774px;}
.ye1{bottom:821.393546px;}
.y1c9{bottom:823.364500px;}
.y33{bottom:823.587150px;}
.y9d{bottom:823.587534px;}
.y127{bottom:823.587890px;}
.ybf{bottom:823.587894px;}
.y203{bottom:824.416985px;}
.y79{bottom:828.331055px;}
.y199{bottom:831.237305px;}
.y105{bottom:834.912605px;}
.y1eb{bottom:834.914057px;}
.yb{bottom:845.524844px;}
.y15f{bottom:846.237305px;}
.ye0{bottom:847.718265px;}
.y179{bottom:849.911132px;}
.y1b3{bottom:849.911135px;}
.y126{bottom:849.911870px;}
.y32{bottom:849.912240px;}
.y54{bottom:849.912420px;}
.ybe{bottom:849.912590px;}
.y9c{bottom:849.912605px;}
.y78{bottom:854.656130px;}
.y198{bottom:857.563475px;}
.y1ea{bottom:861.237294px;}
.y104{bottom:861.237305px;}
.y202{bottom:865.743170px;}
.y1c8{bottom:866.882080px;}
.ya{bottom:871.849825px;}
.ydf{bottom:874.042973px;}
.y178{bottom:876.237301px;}
.y125{bottom:876.237305px;}
.y31{bottom:876.237308px;}
.y9b{bottom:876.237310px;}
.y77{bottom:880.980830px;}
.y197{bottom:883.886720px;}
.y103{bottom:887.562005px;}
.y144{bottom:887.562016px;}
.y201{bottom:888.381585px;}
.y1c7{bottom:895.401130px;}
.y9{bottom:898.174805px;}
.yde{bottom:900.369146px;}
.y9a{bottom:902.562015px;}
.ybd{bottom:902.562016px;}
.y53{bottom:902.562195px;}
.y30{bottom:902.562386px;}
.y124{bottom:902.562740px;}
.y177{bottom:902.563474px;}
.y1b2{bottom:902.563477px;}
.y76{bottom:907.305905px;}
.y196{bottom:910.212890px;}
.y200{bottom:911.024410px;}
.y15e{bottom:913.886709px;}
.y1e9{bottom:913.886717px;}
.y102{bottom:913.887455px;}
.y143{bottom:913.887460px;}
.y1c6{bottom:923.920165px;}
.y8{bottom:924.499790px;}
.ydd{bottom:926.693847px;}
.ybc{bottom:928.886714px;}
.y123{bottom:928.886720px;}
.y99{bottom:928.887090px;}
.y2f{bottom:928.887442px;}
.y75{bottom:933.630980px;}
.y101{bottom:940.211420px;}
.y142{bottom:940.211435px;}
.y1e8{bottom:940.212890px;}
.y195{bottom:951.537605px;}
.y7{bottom:952.626870px;}
.ydc{bottom:953.018558px;}
.y2e{bottom:955.212161px;}
.y98{bottom:955.212530px;}
.ybb{bottom:955.212891px;}
.y74{bottom:959.956055px;}
.y100{bottom:966.537605px;}
.y1e7{bottom:966.539060px;}
.y194{bottom:977.862305px;}
.ydb{bottom:979.343258px;}
.y15d{bottom:981.536135px;}
.y122{bottom:981.536870px;}
.y2d{bottom:981.537225px;}
.y52{bottom:981.537414px;}
.yba{bottom:981.537601px;}
.y97{bottom:981.537603px;}
.y6{bottom:983.339355px;}
.y73{bottom:986.281130px;}
.y1e6{bottom:992.862302px;}
.yff{bottom:992.862305px;}
.y193{bottom:1004.187012px;}
.yda{bottom:1005.667968px;}
.yb9{bottom:1007.862302px;}
.y2c{bottom:1007.862304px;}
.y72{bottom:1012.605836px;}
.y5{bottom:1014.051864px;}
.y1e5{bottom:1019.187012px;}
.yfe{bottom:1019.187744px;}
.yd9{bottom:1031.994137px;}
.yb8{bottom:1034.187012px;}
.y96{bottom:1034.187015px;}
.y51{bottom:1034.187195px;}
.y2b{bottom:1034.187375px;}
.y121{bottom:1034.187744px;}
.y15c{bottom:1034.188476px;}
.y71{bottom:1038.930908px;}
.y4{bottom:1044.764373px;}
.y192{bottom:1045.511718px;}
.yfd{bottom:1045.512452px;}
.yd8{bottom:1058.318847px;}
.y141{bottom:1060.511716px;}
.y120{bottom:1060.511718px;}
.yb7{bottom:1060.511722px;}
.y95{bottom:1060.512085px;}
.y2a{bottom:1060.512359px;}
.y50{bottom:1060.512454px;}
.y1e4{bottom:1060.513184px;}
.y191{bottom:1071.836426px;}
.y1c5{bottom:1071.836428px;}
.yfc{bottom:1071.837158px;}
.y3{bottom:1075.476847px;}
.y70{bottom:1080.256347px;}
.yd7{bottom:1085.545166px;}
.y1e3{bottom:1086.836426px;}
.y4f{bottom:1086.837160px;}
.y29{bottom:1086.837250px;}
.y94{bottom:1086.837525px;}
.y140{bottom:1086.837889px;}
.yb6{bottom:1086.837891px;}
.yfb{bottom:1098.162597px;}
.y2{bottom:1106.189346px;}
.y6f{bottom:1107.481933px;}
.y15b{bottom:1113.161135px;}
.y11f{bottom:1113.161865px;}
.y28{bottom:1113.162234px;}
.y4e{bottom:1113.162414px;}
.y93{bottom:1113.162594px;}
.y1{bottom:1136.901855px;}
.y27{bottom:1139.487305px;}
.he{height:32.661619px;}
.hb{height:32.661622px;}
.h8{height:33.257813px;}
.h6{height:47.988281px;}
.h5{height:51.987307px;}
.h9{height:55.429689px;}
.h2{height:55.986326px;}
.h3{height:60.468750px;}
.ha{height:63.011243px;}
.hc{height:63.011252px;}
.h7{height:63.011254px;}
.hd{height:63.011265px;}
.h4{height:65.507815px;}
.h1{height:70.546872px;}
.h0{height:1263.000000px;}
.w0{width:894.000000px;}
.x0{left:0.000000px;}
.x2{left:108.000000px;}
.x6{left:139.500000px;}
.x1{left:162.000000px;}
.x3{left:345.665790px;}
.xa{left:351.092284px;}
.xe{left:395.783348px;}
.xc{left:408.005933px;}
.x7{left:429.948034px;}
.x9{left:442.611484px;}
.x5{left:446.657861px;}
.x8{left:469.292299px;}
.x4{left:473.456700px;}
.xd{left:561.769200px;}
.xb{left:598.331700px;}
@media print{
.v2{vertical-align:-21.779999pt;}
.v3{vertical-align:-20.238281pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:23.760002pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:3.989573pt;}
.ws4{word-spacing:-16.000000pt;}
.ws1{word-spacing:-9.600000pt;}
.ws3{word-spacing:-8.890625pt;}
.ws2{word-spacing:-8.800000pt;}
.ws0{word-spacing:0.000000pt;}
._11{margin-left:-7.610066pt;}
._d{margin-left:-6.093741pt;}
._4{margin-left:-4.471280pt;}
._10{margin-left:-3.526130pt;}
._0{margin-left:-2.309931pt;}
._6{margin-left:-0.986697pt;}
._7{width:1.119861pt;}
._5{width:2.276131pt;}
._8{width:4.000000pt;}
._3{width:7.317629pt;}
._2{width:8.341181pt;}
._1{width:12.000000pt;}
._9{width:19.872433pt;}
._f{width:20.765420pt;}
._c{width:23.156239pt;}
._b{width:24.169054pt;}
._a{width:27.872431pt;}
._14{width:28.877585pt;}
._13{width:31.156257pt;}
._e{width:32.843743pt;}
._12{width:36.000000pt;}
.fs6{font-size:32.000000pt;}
.fs5{font-size:35.200001pt;}
.fs3{font-size:38.400002pt;}
.fs7{font-size:53.333332pt;}
.fs4{font-size:58.666668pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:69.333336pt;}
.fs0{font-size:74.666664pt;}
.y0{bottom:0.000000pt;}
.yd6{bottom:100.007157pt;}
.yb5{bottom:100.007159pt;}
.y92{bottom:100.007160pt;}
.y1e2{bottom:103.811202pt;}
.y13f{bottom:110.344393pt;}
.yd5{bottom:116.507159pt;}
.y157{bottom:116.507160pt;}
.y1b1{bottom:117.144528pt;}
.yfa{bottom:118.460938pt;}
.y26{bottom:119.777643pt;}
.y1c4{bottom:120.411458pt;}
.y6e{bottom:120.578782pt;}
.yb4{bottom:121.566730pt;}
.y91{bottom:121.952159pt;}
.y190{bottom:123.677084pt;}
.y4d{bottom:123.677723pt;}
.y217{bottom:125.471351pt;}
.y1e1{bottom:127.210940pt;}
.y11e{bottom:130.477218pt;}
.y13e{bottom:133.743493pt;}
.yd4{bottom:138.066730pt;}
.y156{bottom:138.066731pt;}
.y1b0{bottom:140.544271pt;}
.yf9{bottom:141.860671pt;}
.y25{bottom:143.177573pt;}
.y1c3{bottom:143.811204pt;}
.y6d{bottom:145.928382pt;}
.y4c{bottom:147.077473pt;}
.y18f{bottom:147.078124pt;}
.y15a{bottom:149.507160pt;}
.y216{bottom:149.670570pt;}
.y1e0{bottom:150.609378pt;}
.y176{bottom:150.610685pt;}
.y11d{bottom:153.877604pt;}
.y13d{bottom:157.144536pt;}
.y1af{bottom:163.944004pt;}
.yf8{bottom:165.261071pt;}
.y159{bottom:166.007160pt;}
.y24{bottom:166.577633pt;}
.y1c2{bottom:167.210938pt;}
.y18e{bottom:170.476562pt;}
.y4b{bottom:170.477713pt;}
.y6c{bottom:170.477861pt;}
.y1ff{bottom:174.010423pt;}
.y175{bottom:174.011724pt;}
.y11c{bottom:177.277991pt;}
.yb3{bottom:180.544267pt;}
.y13c{bottom:180.544270pt;}
.y90{bottom:184.761070pt;}
.y1ae{bottom:187.343742pt;}
.y1df{bottom:187.343751pt;}
.y158{bottom:187.566731pt;}
.yf7{bottom:188.660804pt;}
.y23{bottom:189.977533pt;}
.y1c1{bottom:190.610671pt;}
.y6b{bottom:193.877603pt;}
.y18d{bottom:193.877605pt;}
.y4a{bottom:193.877613pt;}
.y174{bottom:197.411452pt;}
.y1fe{bottom:197.411462pt;}
.y11b{bottom:200.677084pt;}
.y13b{bottom:203.944013pt;}
.yb2{bottom:203.944658pt;}
.y8f{bottom:208.160813pt;}
.y1ad{bottom:210.743484pt;}
.y1de{bottom:210.744791pt;}
.yf6{bottom:212.060551pt;}
.y22{bottom:213.377583pt;}
.y1c0{bottom:214.011723pt;}
.y6a{bottom:217.277342pt;}
.y49{bottom:217.277663pt;}
.y18c{bottom:217.278644pt;}
.y173{bottom:220.811190pt;}
.y155{bottom:220.811197pt;}
.y1fd{bottom:220.811204pt;}
.y11a{bottom:224.078124pt;}
.yb1{bottom:227.344400pt;}
.y13a{bottom:227.344403pt;}
.y8e{bottom:231.560547pt;}
.y1ac{bottom:234.144537pt;}
.y1dd{bottom:234.944658pt;}
.yf5{bottom:235.460938pt;}
.y21{bottom:236.777673pt;}
.y1bf{bottom:237.411457pt;}
.y18b{bottom:240.677082pt;}
.yd3{bottom:240.677084pt;}
.y48{bottom:240.677723pt;}
.y69{bottom:240.677728pt;}
.y154{bottom:244.210927pt;}
.y172{bottom:244.210928pt;}
.y119{bottom:247.477218pt;}
.y139{bottom:250.743489pt;}
.yb0{bottom:250.744142pt;}
.y1fc{bottom:250.877599pt;}
.y8d{bottom:254.960942pt;}
.y1ab{bottom:257.544270pt;}
.yf4{bottom:258.860671pt;}
.y1dc{bottom:259.494791pt;}
.y20{bottom:260.177573pt;}
.y1be{bottom:260.811200pt;}
.y68{bottom:264.077471pt;}
.y47{bottom:264.077473pt;}
.yd2{bottom:264.078117pt;}
.y18a{bottom:264.078121pt;}
.y171{bottom:267.610671pt;}
.y153{bottom:267.610677pt;}
.y118{bottom:270.877604pt;}
.yaf{bottom:274.144204pt;}
.y138{bottom:274.144528pt;}
.y1fb{bottom:274.278642pt;}
.y8c{bottom:278.361008pt;}
.y1aa{bottom:280.944008pt;}
.yf3{bottom:282.261071pt;}
.y1db{bottom:282.895831pt;}
.y1f{bottom:283.577633pt;}
.y1bd{bottom:284.210934pt;}
.y189{bottom:287.476562pt;}
.y46{bottom:287.477523pt;}
.yd1{bottom:287.477867pt;}
.y67{bottom:287.477887pt;}
.y152{bottom:291.011711pt;}
.y170{bottom:291.011724pt;}
.y117{bottom:294.277991pt;}
.yae{bottom:297.544270pt;}
.y1fa{bottom:297.678380pt;}
.y215{bottom:298.281255pt;}
.y8b{bottom:301.761071pt;}
.y1a9{bottom:304.343751pt;}
.yf2{bottom:305.660804pt;}
.y1da{bottom:306.294270pt;}
.y1e{bottom:306.977533pt;}
.y1bc{bottom:307.610676pt;}
.y188{bottom:310.877605pt;}
.y66{bottom:310.877607pt;}
.y45{bottom:310.877613pt;}
.yd0{bottom:310.877617pt;}
.y151{bottom:314.411445pt;}
.y16f{bottom:314.411467pt;}
.y116{bottom:317.677084pt;}
.y137{bottom:320.944007pt;}
.yad{bottom:320.944661pt;}
.y1f9{bottom:321.076818pt;}
.y214{bottom:321.682298pt;}
.y8a{bottom:325.160806pt;}
.y1a8{bottom:327.743489pt;}
.yf1{bottom:329.060551pt;}
.y1d9{bottom:329.694008pt;}
.y1d{bottom:330.377583pt;}
.y1bb{bottom:331.011715pt;}
.y65{bottom:334.277327pt;}
.ycf{bottom:334.277337pt;}
.y44{bottom:334.277663pt;}
.y187{bottom:334.278644pt;}
.y150{bottom:337.811195pt;}
.y16e{bottom:337.811201pt;}
.y115{bottom:341.078124pt;}
.y136{bottom:344.344397pt;}
.yac{bottom:344.344403pt;}
.y213{bottom:345.083337pt;}
.y89{bottom:348.560545pt;}
.y1a7{bottom:351.144528pt;}
.y1f8{bottom:351.145833pt;}
.yf0{bottom:352.460938pt;}
.y1d8{bottom:353.093751pt;}
.y1c{bottom:353.777673pt;}
.y1ba{bottom:354.411458pt;}
.y186{bottom:357.677084pt;}
.yce{bottom:357.677087pt;}
.y64{bottom:357.677717pt;}
.y43{bottom:357.677723pt;}
.y14f{bottom:361.210937pt;}
.y16d{bottom:361.210943pt;}
.y114{bottom:364.477218pt;}
.y135{bottom:367.743477pt;}
.yab{bottom:367.744142pt;}
.y212{bottom:368.483071pt;}
.y88{bottom:371.960936pt;}
.y1a6{bottom:374.544271pt;}
.y1b{bottom:377.177573pt;}
.y1d7{bottom:377.294915pt;}
.y42{bottom:381.077473pt;}
.y63{bottom:381.077497pt;}
.ycd{bottom:381.078117pt;}
.y185{bottom:381.078124pt;}
.y14e{bottom:384.610676pt;}
.y16c{bottom:384.610685pt;}
.y113{bottom:387.877604pt;}
.yef{bottom:389.194658pt;}
.yaa{bottom:391.144208pt;}
.y134{bottom:391.144537pt;}
.y211{bottom:391.881511pt;}
.y87{bottom:395.360999pt;}
.y1a5{bottom:397.944013pt;}
.y1a{bottom:400.577633pt;}
.y1d6{bottom:402.645184pt;}
.y184{bottom:404.476561pt;}
.y41{bottom:404.477543pt;}
.ycc{bottom:404.477867pt;}
.y62{bottom:404.477887pt;}
.y14d{bottom:408.011719pt;}
.y16b{bottom:408.011724pt;}
.y1f7{bottom:411.278644pt;}
.y133{bottom:414.544257pt;}
.ya9{bottom:414.544271pt;}
.y210{bottom:415.281244pt;}
.y86{bottom:418.761069pt;}
.y1a4{bottom:421.343747pt;}
.y19{bottom:423.977533pt;}
.y112{bottom:424.610671pt;}
.yee{bottom:425.927084pt;}
.y1d5{bottom:427.194008pt;}
.y40{bottom:427.877593pt;}
.y183{bottom:427.877604pt;}
.y61{bottom:427.877607pt;}
.ycb{bottom:427.877617pt;}
.y14c{bottom:431.410804pt;}
.y1b9{bottom:437.944004pt;}
.y132{bottom:437.944007pt;}
.y20f{bottom:438.682297pt;}
.y85{bottom:442.161131pt;}
.y16a{bottom:444.743484pt;}
.y1a3{bottom:444.743489pt;}
.y1f6{bottom:447.210293pt;}
.y18{bottom:447.377603pt;}
.y111{bottom:448.011724pt;}
.yed{bottom:449.328124pt;}
.y1d4{bottom:450.593751pt;}
.y60{bottom:451.277327pt;}
.ya8{bottom:451.277337pt;}
.y3f{bottom:451.277663pt;}
.y182{bottom:451.278647pt;}
.y1b8{bottom:461.343751pt;}
.y131{bottom:461.344397pt;}
.y20e{bottom:462.083337pt;}
.y84{bottom:465.560873pt;}
.y1a2{bottom:468.144528pt;}
.y14b{bottom:468.144537pt;}
.y1f5{bottom:470.262376pt;}
.y17{bottom:470.777623pt;}
.y110{bottom:471.410804pt;}
.yec{bottom:472.727857pt;}
.y181{bottom:474.677084pt;}
.yca{bottom:474.677087pt;}
.ya7{bottom:474.677404pt;}
.y5f{bottom:474.677717pt;}
.y3e{bottom:474.677736pt;}
.y1d3{bottom:474.794915pt;}
.y1b7{bottom:484.743484pt;}
.y130{bottom:484.743487pt;}
.y20d{bottom:485.483071pt;}
.y83{bottom:488.960938pt;}
.y169{bottom:491.544271pt;}
.y16{bottom:494.177560pt;}
.y10f{bottom:494.811204pt;}
.yeb{bottom:496.127595pt;}
.y3d{bottom:498.077470pt;}
.y5e{bottom:498.077497pt;}
.ya6{bottom:498.077791pt;}
.y180{bottom:498.078117pt;}
.yc9{bottom:498.078127pt;}
.y1d2{bottom:500.145186pt;}
.y14a{bottom:504.877604pt;}
.y12f{bottom:508.144517pt;}
.y1b6{bottom:508.144537pt;}
.y20c{bottom:508.881511pt;}
.y1a1{bottom:514.944004pt;}
.y15{bottom:517.577630pt;}
.y10e{bottom:518.210938pt;}
.y1f4{bottom:518.210940pt;}
.yea{bottom:519.527337pt;}
.y17f{bottom:521.476558pt;}
.y3c{bottom:521.477533pt;}
.y5d{bottom:521.477857pt;}
.yc8{bottom:521.477867pt;}
.y1d1{bottom:524.694014pt;}
.y82{bottom:525.694337pt;}
.y168{bottom:528.278644pt;}
.y12e{bottom:531.544270pt;}
.y1b5{bottom:531.544271pt;}
.y20b{bottom:532.281244pt;}
.y1a0{bottom:538.343742pt;}
.y14{bottom:540.977571pt;}
.y1f3{bottom:541.609378pt;}
.y10d{bottom:541.610671pt;}
.y149{bottom:541.610681pt;}
.ye9{bottom:542.927084pt;}
.ya5{bottom:544.877595pt;}
.yc7{bottom:544.877597pt;}
.y3b{bottom:544.877603pt;}
.y5c{bottom:544.877607pt;}
.y1d0{bottom:548.093756pt;}
.y81{bottom:549.094071pt;}
.y167{bottom:551.677084pt;}
.y12d{bottom:554.944004pt;}
.y20a{bottom:555.682289pt;}
.y19f{bottom:561.743484pt;}
.y13{bottom:564.377595pt;}
.y1f2{bottom:565.010418pt;}
.y10c{bottom:565.011724pt;}
.ye8{bottom:566.328124pt;}
.ya4{bottom:568.277337pt;}
.yc6{bottom:568.277350pt;}
.y5b{bottom:568.277357pt;}
.y3a{bottom:568.277666pt;}
.y17e{bottom:568.278644pt;}
.y1cf{bottom:571.494795pt;}
.y80{bottom:572.494137pt;}
.y166{bottom:575.078127pt;}
.y12c{bottom:578.344395pt;}
.y209{bottom:579.083328pt;}
.y19e{bottom:585.144537pt;}
.y12{bottom:587.777624pt;}
.y10b{bottom:588.410804pt;}
.y148{bottom:588.410814pt;}
.y1f1{bottom:588.411457pt;}
.ye7{bottom:589.727862pt;}
.y17d{bottom:591.677081pt;}
.yc5{bottom:591.677084pt;}
.ya3{bottom:591.677413pt;}
.y39{bottom:591.677728pt;}
.y5a{bottom:591.677747pt;}
.y1ce{bottom:594.894538pt;}
.y7f{bottom:595.894204pt;}
.y165{bottom:598.476564pt;}
.y12b{bottom:601.743481pt;}
.y208{bottom:602.483071pt;}
.y19d{bottom:608.544266pt;}
.y11{bottom:611.177568pt;}
.y1f0{bottom:611.811202pt;}
.y10a{bottom:611.811204pt;}
.ye6{bottom:613.127604pt;}
.y59{bottom:615.077467pt;}
.y38{bottom:615.077471pt;}
.ya2{bottom:615.077800pt;}
.yc4{bottom:615.078124pt;}
.y7e{bottom:619.294271pt;}
.y164{bottom:621.877604pt;}
.y12a{bottom:625.144524pt;}
.y207{bottom:625.881511pt;}
.y1cd{bottom:631.627607pt;}
.y19c{bottom:631.944004pt;}
.y10{bottom:634.577631pt;}
.y109{bottom:635.210938pt;}
.y1ef{bottom:635.210940pt;}
.ye5{bottom:636.527337pt;}
.y17c{bottom:638.476565pt;}
.y37{bottom:638.477542pt;}
.y58{bottom:638.477857pt;}
.yc3{bottom:638.477866pt;}
.ya1{bottom:638.477870pt;}
.y7d{bottom:642.694337pt;}
.y163{bottom:645.278650pt;}
.y129{bottom:648.544262pt;}
.y206{bottom:649.281255pt;}
.y19b{bottom:655.343742pt;}
.y1cc{bottom:655.827475pt;}
.yf{bottom:657.977622pt;}
.y1ee{bottom:658.609378pt;}
.y108{bottom:658.610671pt;}
.y147{bottom:658.610676pt;}
.ye4{bottom:659.927087pt;}
.yc2{bottom:661.877604pt;}
.y57{bottom:661.877607pt;}
.y36{bottom:661.877609pt;}
.ya0{bottom:661.877613pt;}
.y7c{bottom:666.094071pt;}
.y162{bottom:668.677084pt;}
.y128{bottom:671.944004pt;}
.y205{bottom:672.682298pt;}
.y19a{bottom:678.743484pt;}
.y1cb{bottom:681.179035pt;}
.ye{bottom:681.377604pt;}
.y146{bottom:682.011719pt;}
.y107{bottom:682.011724pt;}
.ye3{bottom:683.328117pt;}
.yc1{bottom:685.277342pt;}
.y9f{bottom:685.277347pt;}
.y56{bottom:685.277507pt;}
.y35{bottom:685.277675pt;}
.y17b{bottom:685.278637pt;}
.y1b4{bottom:685.278644pt;}
.y7b{bottom:689.494137pt;}
.y161{bottom:692.078127pt;}
.y1ed{bottom:695.343751pt;}
.y204{bottom:696.083337pt;}
.yd{bottom:704.777591pt;}
.y145{bottom:705.410804pt;}
.y1ca{bottom:706.527995pt;}
.ye2{bottom:706.727867pt;}
.y17a{bottom:708.677078pt;}
.yc0{bottom:708.677084pt;}
.y9e{bottom:708.677413pt;}
.y34{bottom:708.677737pt;}
.y55{bottom:708.677747pt;}
.y7a{bottom:712.894204pt;}
.y160{bottom:715.476564pt;}
.y106{bottom:718.743484pt;}
.y1ec{bottom:718.744791pt;}
.yc{bottom:728.177577pt;}
.ye1{bottom:730.127597pt;}
.y1c9{bottom:731.879555pt;}
.y33{bottom:732.077467pt;}
.y9d{bottom:732.077808pt;}
.y127{bottom:732.078124pt;}
.ybf{bottom:732.078128pt;}
.y203{bottom:732.815097pt;}
.y79{bottom:736.294271pt;}
.y199{bottom:738.877604pt;}
.y105{bottom:742.144537pt;}
.y1eb{bottom:742.145829pt;}
.yb{bottom:751.577639pt;}
.y15f{bottom:752.210938pt;}
.ye0{bottom:753.527347pt;}
.y179{bottom:755.476562pt;}
.y1b3{bottom:755.476564pt;}
.y126{bottom:755.477217pt;}
.y32{bottom:755.477547pt;}
.y54{bottom:755.477707pt;}
.ybe{bottom:755.477858pt;}
.y9c{bottom:755.477871pt;}
.y78{bottom:759.694337pt;}
.y198{bottom:762.278644pt;}
.y1ea{bottom:765.544262pt;}
.y104{bottom:765.544271pt;}
.y202{bottom:769.549484pt;}
.y1c8{bottom:770.561849pt;}
.ya{bottom:774.977622pt;}
.ydf{bottom:776.927087pt;}
.y178{bottom:778.877601pt;}
.y125{bottom:778.877604pt;}
.y31{bottom:778.877607pt;}
.y9b{bottom:778.877609pt;}
.y77{bottom:783.094071pt;}
.y197{bottom:785.677084pt;}
.y103{bottom:788.944004pt;}
.y144{bottom:788.944014pt;}
.y201{bottom:789.672520pt;}
.y1c7{bottom:795.912115pt;}
.y9{bottom:798.377604pt;}
.yde{bottom:800.328130pt;}
.y9a{bottom:802.277347pt;}
.ybd{bottom:802.277348pt;}
.y53{bottom:802.277507pt;}
.y30{bottom:802.277677pt;}
.y124{bottom:802.277991pt;}
.y177{bottom:802.278644pt;}
.y1b2{bottom:802.278647pt;}
.y76{bottom:806.494137pt;}
.y196{bottom:809.078124pt;}
.y200{bottom:809.799475pt;}
.y15e{bottom:812.343742pt;}
.y1e9{bottom:812.343748pt;}
.y102{bottom:812.344404pt;}
.y143{bottom:812.344409pt;}
.y1c6{bottom:821.262369pt;}
.y8{bottom:821.777591pt;}
.ydd{bottom:823.727864pt;}
.ybc{bottom:825.677079pt;}
.y123{bottom:825.677084pt;}
.y99{bottom:825.677414pt;}
.y2f{bottom:825.677727pt;}
.y75{bottom:829.894204pt;}
.y101{bottom:835.743484pt;}
.y142{bottom:835.743498pt;}
.y1e8{bottom:835.744791pt;}
.y195{bottom:845.811204pt;}
.y7{bottom:846.779440pt;}
.ydc{bottom:847.127607pt;}
.y2e{bottom:849.077477pt;}
.y98{bottom:849.077804pt;}
.ybb{bottom:849.078125pt;}
.y74{bottom:853.294271pt;}
.y100{bottom:859.144538pt;}
.y1e7{bottom:859.145831pt;}
.y194{bottom:869.210938pt;}
.ydb{bottom:870.527341pt;}
.y15d{bottom:872.476564pt;}
.y122{bottom:872.477217pt;}
.y2d{bottom:872.477534pt;}
.y52{bottom:872.477702pt;}
.yba{bottom:872.477868pt;}
.y97{bottom:872.477870pt;}
.y6{bottom:874.079426pt;}
.y73{bottom:876.694337pt;}
.y1e6{bottom:882.544268pt;}
.yff{bottom:882.544271pt;}
.y193{bottom:892.610677pt;}
.yda{bottom:893.927083pt;}
.yb9{bottom:895.877602pt;}
.y2c{bottom:895.877604pt;}
.y72{bottom:900.094076pt;}
.y5{bottom:901.379434pt;}
.y1e5{bottom:905.944011pt;}
.yfe{bottom:905.944661pt;}
.yd9{bottom:917.328122pt;}
.yb8{bottom:919.277344pt;}
.y96{bottom:919.277347pt;}
.y51{bottom:919.277507pt;}
.y2b{bottom:919.277667pt;}
.y121{bottom:919.277995pt;}
.y15c{bottom:919.278645pt;}
.y71{bottom:923.494140pt;}
.y4{bottom:928.679442pt;}
.y192{bottom:929.343749pt;}
.yfd{bottom:929.344402pt;}
.yd8{bottom:940.727864pt;}
.y141{bottom:942.677081pt;}
.y120{bottom:942.677083pt;}
.yb7{bottom:942.677086pt;}
.y95{bottom:942.677409pt;}
.y2a{bottom:942.677653pt;}
.y50{bottom:942.677737pt;}
.y1e4{bottom:942.678385pt;}
.y191{bottom:952.743489pt;}
.y1c5{bottom:952.743491pt;}
.yfc{bottom:952.744140pt;}
.y3{bottom:955.979420pt;}
.y70{bottom:960.227864pt;}
.yd7{bottom:964.929037pt;}
.y1e3{bottom:966.076823pt;}
.y4f{bottom:966.077476pt;}
.y29{bottom:966.077556pt;}
.y94{bottom:966.077800pt;}
.y140{bottom:966.078124pt;}
.yb6{bottom:966.078125pt;}
.yfb{bottom:976.144531pt;}
.y2{bottom:983.279418pt;}
.y6f{bottom:984.428385pt;}
.y15b{bottom:989.476565pt;}
.y11f{bottom:989.477214pt;}
.y28{bottom:989.477542pt;}
.y4e{bottom:989.477702pt;}
.y93{bottom:989.477862pt;}
.y1{bottom:1010.579426pt;}
.y27{bottom:1012.877604pt;}
.he{height:29.032550pt;}
.hb{height:29.032553pt;}
.h8{height:29.562501pt;}
.h6{height:42.656250pt;}
.h5{height:46.210939pt;}
.h9{height:49.270834pt;}
.h2{height:49.765623pt;}
.h3{height:53.750000pt;}
.ha{height:56.009993pt;}
.hc{height:56.010001pt;}
.h7{height:56.010003pt;}
.hd{height:56.010013pt;}
.h4{height:58.229169pt;}
.h1{height:62.708331pt;}
.h0{height:1122.666667pt;}
.w0{width:794.666667pt;}
.x0{left:0.000000pt;}
.x2{left:96.000000pt;}
.x6{left:124.000000pt;}
.x1{left:144.000000pt;}
.x3{left:307.258480pt;}
.xa{left:312.082030pt;}
.xe{left:351.807420pt;}
.xc{left:362.671940pt;}
.x7{left:382.176030pt;}
.x9{left:393.432430pt;}
.x5{left:397.029210pt;}
.x8{left:417.148710pt;}
.x4{left:420.850400pt;}
.xd{left:499.350400pt;}
.xb{left:531.850400pt;}
}




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