
    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_7fe573b18149bc7cc51c8689.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_c5741c9c44e657dd4af60fbc.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.128906;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_edf8c74055921c7e5e4ee7fb.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_39355442ddf8f8d011f88b87.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.972656;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_31be45a3acebc439b59471e6.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.973145;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_d1cd353d79a8b15dc8c16108.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.939941;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_70e52f4b49f9b5f308bc9c6b.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.960938;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_415b723d5b7d086f31147563.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.966309;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_a327d54bd0f69d9aa1629f79.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.727539;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;}
.v1{vertical-align:19.221600px;}
.ls1{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.000015px;}
.lsb{letter-spacing:0.000031px;}
.ls2{letter-spacing:0.000075px;}
.ls7{letter-spacing:0.000095px;}
.ls4{letter-spacing:0.000104px;}
.ls0{letter-spacing:0.000183px;}
.ls6{letter-spacing:0.000195px;}
.ls9{letter-spacing:0.000240px;}
.lsd{letter-spacing:0.000271px;}
.ls8{letter-spacing:0.000282px;}
.lse{letter-spacing:0.000333px;}
.ls3{letter-spacing:0.000344px;}
.lsa{letter-spacing:0.000358px;}
.ls5{letter-spacing:4.805202px;}
.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:-49.839055px;}
.ws1{word-spacing:-49.447840px;}
.ws5{word-spacing:-19.521941px;}
.wsb{word-spacing:-16.264217px;}
.ws3{word-spacing:-16.227608px;}
.ws2{word-spacing:-16.021127px;}
.ws9{word-spacing:-15.451001px;}
.ws6{word-spacing:-13.909378px;}
.wsa{word-spacing:-12.456426px;}
.ws8{word-spacing:-10.814542px;}
.ws7{word-spacing:0.000000px;}
.wsc{word-spacing:2346.008928px;}
.ws0{word-spacing:2372.704227px;}
._1{width:1.108833px;}
._a{width:2.143042px;}
._4{width:3.327044px;}
._2{width:4.805733px;}
._1b{width:5.805965px;}
._5{width:6.807724px;}
._8{width:8.008618px;}
._15{width:9.050342px;}
._10{width:10.090650px;}
._e{width:11.357924px;}
._11{width:12.909408px;}
._d{width:14.268168px;}
._1c{width:16.017865px;}
._b{width:17.299547px;}
._3{width:18.784958px;}
._c{width:20.330153px;}
._7{width:21.624492px;}
._f{width:23.226070px;}
._13{width:24.507343px;}
._9{width:25.604032px;}
._12{width:26.624546px;}
._18{width:28.418866px;}
._1a{width:29.564273px;}
._19{width:30.579926px;}
._16{width:32.326966px;}
._17{width:33.638224px;}
._14{width:36.307268px;}
._6{width:48.534765px;}
._0{width:876.483633px;}
.fc2{color:rgb(34,34,34);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:44.834382px;}
.fs0{font-size:48.000180px;}
.fs9{font-size:51.225564px;}
.fs3{font-size:57.664800px;}
.fs2{font-size:64.055982px;}
.fs5{font-size:67.275600px;}
.fs7{font-size:76.886400px;}
.fs4{font-size:96.108000px;}
.fs6{font-size:179.385582px;}
.fs1{font-size:204.998364px;}
.y0{bottom:0.000000px;}
.y117{bottom:15.365267px;}
.ycb{bottom:15.365627px;}
.y91{bottom:15.365747px;}
.y106{bottom:15.365867px;}
.y10e{bottom:16.567217px;}
.y5a{bottom:24.976427px;}
.y2{bottom:25.495366px;}
.y5b{bottom:26.177777px;}
.y116{bottom:32.184167px;}
.yca{bottom:36.989927px;}
.y90{bottom:36.990047px;}
.y105{bottom:36.990167px;}
.ycc{bottom:38.191277px;}
.y3{bottom:43.928400px;}
.y58{bottom:46.600727px;}
.y115{bottom:49.003067px;}
.y184{bottom:53.808467px;}
.yc8{bottom:58.614227px;}
.y8f{bottom:58.614347px;}
.y104{bottom:58.614467px;}
.y23{bottom:61.017047px;}
.y114{bottom:65.821967px;}
.y57{bottom:68.225027px;}
.y183{bottom:70.627367px;}
.yc7{bottom:80.238527px;}
.y22{bottom:80.238647px;}
.y103{bottom:80.238767px;}
.y113{bottom:82.640867px;}
.y182{bottom:87.446267px;}
.y56{bottom:89.849327px;}
.y21{bottom:99.460247px;}
.yc6{bottom:101.862827px;}
.y8e{bottom:101.862947px;}
.y102{bottom:101.863067px;}
.ycf{bottom:103.064177px;}
.y181{bottom:104.265167px;}
.y55{bottom:111.473627px;}
.y112{bottom:116.278667px;}
.y20{bottom:118.681847px;}
.y180{bottom:121.084067px;}
.yc5{bottom:123.487127px;}
.y8d{bottom:123.487247px;}
.y101{bottom:123.487367px;}
.y54{bottom:133.097927px;}
.y17f{bottom:137.902967px;}
.y1f{bottom:137.903447px;}
.yc4{bottom:145.111427px;}
.y8c{bottom:145.111547px;}
.y100{bottom:145.111667px;}
.y17e{bottom:154.721867px;}
.y53{bottom:154.722227px;}
.y1e{bottom:157.125047px;}
.yc3{bottom:166.735727px;}
.y8b{bottom:166.735847px;}
.yff{bottom:166.735967px;}
.y111{bottom:167.937317px;}
.y17d{bottom:171.540767px;}
.y52{bottom:176.346527px;}
.y147{bottom:188.359667px;}
.yc2{bottom:188.360027px;}
.y8a{bottom:188.360147px;}
.yfe{bottom:188.360267px;}
.y1d{bottom:193.165547px;}
.y51{bottom:197.970827px;}
.y17c{bottom:205.178567px;}
.y146{bottom:209.983967px;}
.yc1{bottom:209.984327px;}
.y89{bottom:209.984447px;}
.yfd{bottom:209.984567px;}
.y50{bottom:219.595127px;}
.y17b{bottom:221.997467px;}
.y145{bottom:231.608267px;}
.yc0{bottom:231.608627px;}
.y88{bottom:231.608747px;}
.yfc{bottom:231.608867px;}
.y17a{bottom:238.816367px;}
.y4f{bottom:241.219427px;}
.y144{bottom:253.232567px;}
.ybf{bottom:253.232927px;}
.y87{bottom:253.233047px;}
.yfb{bottom:253.233167px;}
.y179{bottom:255.635267px;}
.y1c{bottom:261.642497px;}
.y4e{bottom:262.843727px;}
.y178{bottom:272.454167px;}
.y143{bottom:274.856867px;}
.ybe{bottom:274.857227px;}
.y86{bottom:274.857347px;}
.yfa{bottom:274.857467px;}
.y1b{bottom:278.461397px;}
.y4d{bottom:284.468027px;}
.y177{bottom:289.273067px;}
.y1a{bottom:295.280297px;}
.y142{bottom:296.481167px;}
.ybd{bottom:296.481527px;}
.y85{bottom:296.481647px;}
.yf9{bottom:296.481767px;}
.y176{bottom:306.091967px;}
.y4c{bottom:306.092327px;}
.y19{bottom:312.099197px;}
.y141{bottom:318.105467px;}
.ybc{bottom:318.105827px;}
.y84{bottom:318.105947px;}
.yf8{bottom:318.106067px;}
.yc9{bottom:319.307177px;}
.y10a{bottom:319.307417px;}
.y175{bottom:322.910867px;}
.y4b{bottom:327.716627px;}
.y18{bottom:328.918097px;}
.y140{bottom:339.729767px;}
.yba{bottom:339.730127px;}
.y83{bottom:339.730247px;}
.yf7{bottom:339.730367px;}
.y17{bottom:345.736997px;}
.y4a{bottom:349.340927px;}
.y174{bottom:356.548667px;}
.y13f{bottom:361.354067px;}
.yb9{bottom:361.354427px;}
.y82{bottom:361.354547px;}
.yf6{bottom:361.354667px;}
.y16{bottom:362.555897px;}
.y49{bottom:370.965227px;}
.y173{bottom:373.367567px;}
.y13e{bottom:382.978367px;}
.yb8{bottom:382.978727px;}
.y81{bottom:382.978847px;}
.yf5{bottom:382.978967px;}
.y10d{bottom:384.180317px;}
.y172{bottom:390.186467px;}
.y48{bottom:392.589527px;}
.y15{bottom:396.193697px;}
.y13d{bottom:404.602667px;}
.yb7{bottom:404.603027px;}
.y80{bottom:404.603147px;}
.yf4{bottom:404.603267px;}
.y110{bottom:405.804617px;}
.y171{bottom:407.005367px;}
.y14{bottom:413.012597px;}
.y47{bottom:414.213827px;}
.y170{bottom:423.824267px;}
.y13c{bottom:426.226967px;}
.yb6{bottom:426.227327px;}
.y7f{bottom:426.227447px;}
.yf3{bottom:426.227567px;}
.y13{bottom:429.831497px;}
.y46{bottom:435.838127px;}
.y16f{bottom:440.643167px;}
.y12{bottom:446.650397px;}
.y13b{bottom:447.851267px;}
.yb5{bottom:447.851627px;}
.y7e{bottom:447.851747px;}
.yf2{bottom:447.851867px;}
.y148{bottom:449.052617px;}
.y107{bottom:449.053217px;}
.y16e{bottom:457.462067px;}
.y45{bottom:457.462427px;}
.y59{bottom:458.663777px;}
.y11{bottom:463.469297px;}
.y139{bottom:469.475567px;}
.yb4{bottom:469.475927px;}
.y7d{bottom:469.476047px;}
.yf0{bottom:469.476167px;}
.y16d{bottom:474.280967px;}
.y43{bottom:479.086727px;}
.y10{bottom:480.288197px;}
.y138{bottom:491.099867px;}
.yb3{bottom:491.100227px;}
.y7c{bottom:491.100347px;}
.yef{bottom:491.100467px;}
.y92{bottom:492.301697px;}
.y42{bottom:500.711027px;}
.y16c{bottom:507.918767px;}
.y137{bottom:512.724167px;}
.yb2{bottom:512.724527px;}
.y7a{bottom:512.724647px;}
.yee{bottom:512.724767px;}
.yf{bottom:513.925997px;}
.y41{bottom:522.335327px;}
.y16b{bottom:524.737667px;}
.y136{bottom:534.348467px;}
.yb1{bottom:534.348827px;}
.y79{bottom:534.348947px;}
.yed{bottom:534.349067px;}
.y16a{bottom:541.556567px;}
.y40{bottom:543.959627px;}
.y135{bottom:555.972767px;}
.yb0{bottom:555.973127px;}
.y78{bottom:555.973247px;}
.yec{bottom:555.973367px;}
.y169{bottom:558.375467px;}
.y3f{bottom:565.583927px;}
.y168{bottom:575.194367px;}
.y134{bottom:577.597067px;}
.yaf{bottom:577.597427px;}
.y77{bottom:577.597547px;}
.yeb{bottom:577.597667px;}
.ybb{bottom:578.798777px;}
.y3e{bottom:587.208227px;}
.y167{bottom:592.013267px;}
.y133{bottom:599.221367px;}
.yad{bottom:599.221727px;}
.y76{bottom:599.221847px;}
.yea{bottom:599.221967px;}
.y166{bottom:608.832167px;}
.y3d{bottom:608.832527px;}
.y132{bottom:620.845667px;}
.yac{bottom:620.846027px;}
.y75{bottom:620.846147px;}
.ye9{bottom:620.846267px;}
.yce{bottom:622.047377px;}
.y165{bottom:625.651067px;}
.y3c{bottom:630.456827px;}
.ye{bottom:632.859647px;}
.y131{bottom:642.469967px;}
.yab{bottom:642.470327px;}
.y74{bottom:642.470447px;}
.ye8{bottom:642.470567px;}
.y3b{bottom:652.081127px;}
.yd{bottom:655.685297px;}
.y164{bottom:659.288867px;}
.y130{bottom:664.094267px;}
.yaa{bottom:664.094627px;}
.y73{bottom:664.094747px;}
.ye7{bottom:664.094867px;}
.y10c{bottom:665.296217px;}
.y3a{bottom:673.705427px;}
.y163{bottom:676.107767px;}
.y12f{bottom:685.718567px;}
.ya9{bottom:685.718927px;}
.y72{bottom:685.719047px;}
.ye6{bottom:685.719167px;}
.y162{bottom:692.926667px;}
.y39{bottom:695.329727px;}
.yc{bottom:703.739297px;}
.y12e{bottom:707.342867px;}
.ya8{bottom:707.343227px;}
.y71{bottom:707.343347px;}
.ye5{bottom:707.343467px;}
.y109{bottom:708.544817px;}
.y161{bottom:709.745567px;}
.y38{bottom:716.954027px;}
.y160{bottom:726.564467px;}
.y12d{bottom:728.967167px;}
.ya7{bottom:728.967527px;}
.y70{bottom:728.967647px;}
.ye4{bottom:728.967767px;}
.y37{bottom:738.578327px;}
.y44{bottom:739.779677px;}
.y15f{bottom:743.383367px;}
.y12c{bottom:750.591467px;}
.ya6{bottom:750.591827px;}
.y6f{bottom:750.591947px;}
.ye3{bottom:750.592067px;}
.yb{bottom:751.793297px;}
.y15e{bottom:760.202267px;}
.y35{bottom:760.202627px;}
.y12b{bottom:772.215767px;}
.ya5{bottom:772.216127px;}
.y6e{bottom:772.216247px;}
.ye2{bottom:772.216367px;}
.y15d{bottom:777.021167px;}
.y34{bottom:781.826927px;}
.y12a{bottom:793.840067px;}
.ya4{bottom:793.840427px;}
.y6d{bottom:793.840547px;}
.ye1{bottom:793.840667px;}
.y10f{bottom:795.042017px;}
.y33{bottom:803.451227px;}
.y18f{bottom:805.853567px;}
.y15c{bottom:810.658967px;}
.y129{bottom:815.464367px;}
.ya3{bottom:815.464727px;}
.y6c{bottom:815.464847px;}
.ye0{bottom:815.464967px;}
.y32{bottom:825.075527px;}
.y15b{bottom:827.477867px;}
.y128{bottom:837.088667px;}
.ya2{bottom:837.089027px;}
.y6b{bottom:837.089147px;}
.ydf{bottom:837.089267px;}
.y18e{bottom:839.491367px;}
.y15a{bottom:844.296767px;}
.y31{bottom:846.699827px;}
.y127{bottom:858.712967px;}
.ya1{bottom:858.713327px;}
.y6a{bottom:858.713447px;}
.yde{bottom:858.713567px;}
.y159{bottom:861.115667px;}
.y30{bottom:868.324127px;}
.ya{bottom:875.532347px;}
.y158{bottom:877.934567px;}
.y126{bottom:880.337267px;}
.ya0{bottom:880.337627px;}
.y69{bottom:880.337747px;}
.ydd{bottom:880.337867px;}
.ycd{bottom:881.538977px;}
.y2f{bottom:889.948427px;}
.y157{bottom:894.753467px;}
.y125{bottom:901.961567px;}
.y9f{bottom:901.961927px;}
.y68{bottom:901.962047px;}
.ydc{bottom:901.962167px;}
.y10b{bottom:903.163517px;}
.y18d{bottom:909.169667px;}
.y156{bottom:911.572367px;}
.y2e{bottom:911.572727px;}
.y124{bottom:923.585867px;}
.y9e{bottom:923.586227px;}
.y67{bottom:923.586347px;}
.ydb{bottom:923.586467px;}
.y9{bottom:925.989047px;}
.y155{bottom:928.391267px;}
.y2d{bottom:933.197027px;}
.y18c{bottom:940.404767px;}
.y123{bottom:945.210167px;}
.y9d{bottom:945.210527px;}
.y66{bottom:945.210647px;}
.yda{bottom:945.210767px;}
.y8{bottom:948.814697px;}
.y2c{bottom:954.821327px;}
.y154{bottom:962.029067px;}
.y122{bottom:966.834467px;}
.y9c{bottom:966.834827px;}
.y65{bottom:966.834947px;}
.yd9{bottom:966.835067px;}
.y7b{bottom:968.036297px;}
.y108{bottom:968.036417px;}
.y18b{bottom:975.243917px;}
.y2b{bottom:976.445627px;}
.y153{bottom:978.847967px;}
.y121{bottom:988.458767px;}
.y9b{bottom:988.459127px;}
.y64{bottom:988.459247px;}
.yd8{bottom:988.459367px;}
.y13a{bottom:989.660117px;}
.y152{bottom:995.666867px;}
.y2a{bottom:998.069927px;}
.y7{bottom:1001.674097px;}
.y63{bottom:1009.407788px;}
.y11f{bottom:1010.083067px;}
.y9a{bottom:1010.083427px;}
.yd7{bottom:1010.083667px;}
.y151{bottom:1012.485767px;}
.y29{bottom:1019.694227px;}
.y6{bottom:1023.298397px;}
.y150{bottom:1029.304667px;}
.y62{bottom:1031.032088px;}
.y11e{bottom:1031.707367px;}
.y99{bottom:1031.707727px;}
.yd6{bottom:1031.707967px;}
.yf1{bottom:1032.909317px;}
.y28{bottom:1041.318527px;}
.y18a{bottom:1043.720867px;}
.y14f{bottom:1046.123567px;}
.y61{bottom:1052.656388px;}
.y11d{bottom:1053.331667px;}
.y98{bottom:1053.332027px;}
.yd5{bottom:1053.332267px;}
.y189{bottom:1060.539767px;}
.y14e{bottom:1062.942467px;}
.y27{bottom:1062.942827px;}
.y5{bottom:1067.748347px;}
.y60{bottom:1074.280688px;}
.y11c{bottom:1074.955967px;}
.y97{bottom:1074.956327px;}
.yd4{bottom:1074.956567px;}
.yae{bottom:1076.157677px;}
.y188{bottom:1077.358667px;}
.y14d{bottom:1079.761367px;}
.y26{bottom:1084.567127px;}
.y187{bottom:1094.177567px;}
.y5f{bottom:1095.904988px;}
.y11b{bottom:1096.580267px;}
.y96{bottom:1096.580627px;}
.yd3{bottom:1096.580867px;}
.y25{bottom:1106.191427px;}
.y36{bottom:1107.392777px;}
.y186{bottom:1109.795117px;}
.y14c{bottom:1113.399167px;}
.y5e{bottom:1117.792023px;}
.y11a{bottom:1118.204567px;}
.y95{bottom:1118.204927px;}
.yd2{bottom:1118.205167px;}
.y4{bottom:1129.017197px;}
.y14b{bottom:1130.218067px;}
.y5d{bottom:1139.416323px;}
.y119{bottom:1139.828867px;}
.y94{bottom:1139.829227px;}
.yd1{bottom:1139.829467px;}
.y185{bottom:1143.432917px;}
.y24{bottom:1143.433277px;}
.y14a{bottom:1147.036967px;}
.y5c{bottom:1161.040623px;}
.y118{bottom:1161.453167px;}
.y93{bottom:1161.453527px;}
.yd0{bottom:1161.453767px;}
.y120{bottom:1162.654517px;}
.y149{bottom:1164.231288px;}
.y1{bottom:1231.499877px;}
.hb{height:32.662548px;}
.h1{height:34.968881px;}
.hd{height:38.744335px;}
.he{height:41.981551px;}
.h5{height:42.009708px;}
.hc{height:48.448592px;}
.h9{height:52.596605px;}
.h8{height:58.115306px;}
.h4{height:58.426062px;}
.ha{height:60.115460px;}
.h6{height:87.661008px;}
.h7{height:130.597609px;}
.h3{height:186.980930px;}
.h2{height:1177.323000px;}
.h0{height:1264.500000px;}
.w1{width:808.508550px;}
.w0{width:894.000000px;}
.x0{left:0.000000px;}
.x6{left:28.423821px;}
.x5{left:34.657506px;}
.x1{left:39.000146px;}
.x2{left:43.248600px;}
.x3{left:64.918191px;}
.x4{left:80.930024px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:17.085867pt;}
.ls1{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.000014pt;}
.lsb{letter-spacing:0.000027pt;}
.ls2{letter-spacing:0.000067pt;}
.ls7{letter-spacing:0.000085pt;}
.ls4{letter-spacing:0.000093pt;}
.ls0{letter-spacing:0.000162pt;}
.ls6{letter-spacing:0.000174pt;}
.ls9{letter-spacing:0.000214pt;}
.lsd{letter-spacing:0.000241pt;}
.ls8{letter-spacing:0.000251pt;}
.lse{letter-spacing:0.000296pt;}
.ls3{letter-spacing:0.000306pt;}
.lsa{letter-spacing:0.000318pt;}
.ls5{letter-spacing:4.271290pt;}
.ws4{word-spacing:-44.301382pt;}
.ws1{word-spacing:-43.953635pt;}
.ws5{word-spacing:-17.352837pt;}
.wsb{word-spacing:-14.457082pt;}
.ws3{word-spacing:-14.424540pt;}
.ws2{word-spacing:-14.241002pt;}
.ws9{word-spacing:-13.734223pt;}
.ws6{word-spacing:-12.363892pt;}
.wsa{word-spacing:-11.072379pt;}
.ws8{word-spacing:-9.612926pt;}
.ws7{word-spacing:0.000000pt;}
.wsc{word-spacing:2085.341269pt;}
.ws0{word-spacing:2109.070424pt;}
._1{width:0.985629pt;}
._a{width:1.904926pt;}
._4{width:2.957372pt;}
._2{width:4.271762pt;}
._1b{width:5.160858pt;}
._5{width:6.051310pt;}
._8{width:7.118772pt;}
._15{width:8.044749pt;}
._10{width:8.969466pt;}
._e{width:10.095933pt;}
._11{width:11.475029pt;}
._d{width:12.682816pt;}
._1c{width:14.238102pt;}
._b{width:15.377375pt;}
._3{width:16.697741pt;}
._c{width:18.071247pt;}
._7{width:19.221771pt;}
._f{width:20.645396pt;}
._13{width:21.784305pt;}
._9{width:22.759140pt;}
._12{width:23.666263pt;}
._18{width:25.261214pt;}
._1a{width:26.279353pt;}
._19{width:27.182157pt;}
._16{width:28.735081pt;}
._17{width:29.900643pt;}
._14{width:32.273127pt;}
._6{width:43.142013pt;}
._0{width:779.096563pt;}
.fs8{font-size:39.852784pt;}
.fs0{font-size:42.666826pt;}
.fs9{font-size:45.533835pt;}
.fs3{font-size:51.257600pt;}
.fs2{font-size:56.938651pt;}
.fs5{font-size:59.800533pt;}
.fs7{font-size:68.343467pt;}
.fs4{font-size:85.429333pt;}
.fs6{font-size:159.453851pt;}
.fs1{font-size:182.220768pt;}
.y0{bottom:0.000000pt;}
.y117{bottom:13.658015pt;}
.ycb{bottom:13.658335pt;}
.y91{bottom:13.658442pt;}
.y106{bottom:13.658549pt;}
.y10e{bottom:14.726415pt;}
.y5a{bottom:22.201268pt;}
.y2{bottom:22.662548pt;}
.y5b{bottom:23.269135pt;}
.y116{bottom:28.608148pt;}
.yca{bottom:32.879935pt;}
.y90{bottom:32.880042pt;}
.y105{bottom:32.880149pt;}
.ycc{bottom:33.947802pt;}
.y3{bottom:39.047467pt;}
.y58{bottom:41.422868pt;}
.y115{bottom:43.558281pt;}
.y184{bottom:47.829748pt;}
.yc8{bottom:52.101535pt;}
.y8f{bottom:52.101642pt;}
.y104{bottom:52.101749pt;}
.y23{bottom:54.237375pt;}
.y114{bottom:58.508415pt;}
.y57{bottom:60.644468pt;}
.y183{bottom:62.779881pt;}
.yc7{bottom:71.323135pt;}
.y22{bottom:71.323242pt;}
.y103{bottom:71.323349pt;}
.y113{bottom:73.458548pt;}
.y182{bottom:77.730015pt;}
.y56{bottom:79.866068pt;}
.y21{bottom:88.409108pt;}
.yc6{bottom:90.544735pt;}
.y8e{bottom:90.544842pt;}
.y102{bottom:90.544949pt;}
.ycf{bottom:91.612602pt;}
.y181{bottom:92.680148pt;}
.y55{bottom:99.087668pt;}
.y112{bottom:103.358815pt;}
.y20{bottom:105.494975pt;}
.y180{bottom:107.630281pt;}
.yc5{bottom:109.766335pt;}
.y8d{bottom:109.766442pt;}
.y101{bottom:109.766549pt;}
.y54{bottom:118.309268pt;}
.y17f{bottom:122.580415pt;}
.y1f{bottom:122.580842pt;}
.yc4{bottom:128.987935pt;}
.y8c{bottom:128.988042pt;}
.y100{bottom:128.988149pt;}
.y17e{bottom:137.530548pt;}
.y53{bottom:137.530868pt;}
.y1e{bottom:139.666708pt;}
.yc3{bottom:148.209535pt;}
.y8b{bottom:148.209642pt;}
.yff{bottom:148.209749pt;}
.y111{bottom:149.277615pt;}
.y17d{bottom:152.480681pt;}
.y52{bottom:156.752468pt;}
.y147{bottom:167.430815pt;}
.yc2{bottom:167.431135pt;}
.y8a{bottom:167.431242pt;}
.yfe{bottom:167.431349pt;}
.y1d{bottom:171.702708pt;}
.y51{bottom:175.974068pt;}
.y17c{bottom:182.380948pt;}
.y146{bottom:186.652415pt;}
.yc1{bottom:186.652735pt;}
.y89{bottom:186.652842pt;}
.yfd{bottom:186.652949pt;}
.y50{bottom:195.195668pt;}
.y17b{bottom:197.331081pt;}
.y145{bottom:205.874015pt;}
.yc0{bottom:205.874335pt;}
.y88{bottom:205.874442pt;}
.yfc{bottom:205.874549pt;}
.y17a{bottom:212.281215pt;}
.y4f{bottom:214.417268pt;}
.y144{bottom:225.095615pt;}
.ybf{bottom:225.095935pt;}
.y87{bottom:225.096042pt;}
.yfb{bottom:225.096149pt;}
.y179{bottom:227.231348pt;}
.y1c{bottom:232.571108pt;}
.y4e{bottom:233.638868pt;}
.y178{bottom:242.181481pt;}
.y143{bottom:244.317215pt;}
.ybe{bottom:244.317535pt;}
.y86{bottom:244.317642pt;}
.yfa{bottom:244.317749pt;}
.y1b{bottom:247.521242pt;}
.y4d{bottom:252.860468pt;}
.y177{bottom:257.131615pt;}
.y1a{bottom:262.471375pt;}
.y142{bottom:263.538815pt;}
.ybd{bottom:263.539135pt;}
.y85{bottom:263.539242pt;}
.yf9{bottom:263.539349pt;}
.y176{bottom:272.081748pt;}
.y4c{bottom:272.082068pt;}
.y19{bottom:277.421508pt;}
.y141{bottom:282.760415pt;}
.ybc{bottom:282.760735pt;}
.y84{bottom:282.760842pt;}
.yf8{bottom:282.760949pt;}
.yc9{bottom:283.828602pt;}
.y10a{bottom:283.828815pt;}
.y175{bottom:287.031881pt;}
.y4b{bottom:291.303668pt;}
.y18{bottom:292.371642pt;}
.y140{bottom:301.982015pt;}
.yba{bottom:301.982335pt;}
.y83{bottom:301.982442pt;}
.yf7{bottom:301.982549pt;}
.y17{bottom:307.321775pt;}
.y4a{bottom:310.525268pt;}
.y174{bottom:316.932148pt;}
.y13f{bottom:321.203615pt;}
.yb9{bottom:321.203935pt;}
.y82{bottom:321.204042pt;}
.yf6{bottom:321.204149pt;}
.y16{bottom:322.271908pt;}
.y49{bottom:329.746868pt;}
.y173{bottom:331.882281pt;}
.y13e{bottom:340.425215pt;}
.yb8{bottom:340.425535pt;}
.y81{bottom:340.425642pt;}
.yf5{bottom:340.425749pt;}
.y10d{bottom:341.493615pt;}
.y172{bottom:346.832415pt;}
.y48{bottom:348.968468pt;}
.y15{bottom:352.172175pt;}
.y13d{bottom:359.646815pt;}
.yb7{bottom:359.647135pt;}
.y80{bottom:359.647242pt;}
.yf4{bottom:359.647349pt;}
.y110{bottom:360.715215pt;}
.y171{bottom:361.782548pt;}
.y14{bottom:367.122308pt;}
.y47{bottom:368.190068pt;}
.y170{bottom:376.732681pt;}
.y13c{bottom:378.868415pt;}
.yb6{bottom:378.868735pt;}
.y7f{bottom:378.868842pt;}
.yf3{bottom:378.868949pt;}
.y13{bottom:382.072442pt;}
.y46{bottom:387.411668pt;}
.y16f{bottom:391.682815pt;}
.y12{bottom:397.022575pt;}
.y13b{bottom:398.090015pt;}
.yb5{bottom:398.090335pt;}
.y7e{bottom:398.090442pt;}
.yf2{bottom:398.090549pt;}
.y148{bottom:399.157881pt;}
.y107{bottom:399.158415pt;}
.y16e{bottom:406.632948pt;}
.y45{bottom:406.633268pt;}
.y59{bottom:407.701135pt;}
.y11{bottom:411.972708pt;}
.y139{bottom:417.311615pt;}
.yb4{bottom:417.311935pt;}
.y7d{bottom:417.312042pt;}
.yf0{bottom:417.312149pt;}
.y16d{bottom:421.583081pt;}
.y43{bottom:425.854868pt;}
.y10{bottom:426.922842pt;}
.y138{bottom:436.533215pt;}
.yb3{bottom:436.533535pt;}
.y7c{bottom:436.533642pt;}
.yef{bottom:436.533749pt;}
.y92{bottom:437.601508pt;}
.y42{bottom:445.076468pt;}
.y16c{bottom:451.483348pt;}
.y137{bottom:455.754815pt;}
.yb2{bottom:455.755135pt;}
.y7a{bottom:455.755242pt;}
.yee{bottom:455.755349pt;}
.yf{bottom:456.823108pt;}
.y41{bottom:464.298068pt;}
.y16b{bottom:466.433481pt;}
.y136{bottom:474.976415pt;}
.yb1{bottom:474.976735pt;}
.y79{bottom:474.976842pt;}
.yed{bottom:474.976949pt;}
.y16a{bottom:481.383615pt;}
.y40{bottom:483.519668pt;}
.y135{bottom:494.198015pt;}
.yb0{bottom:494.198335pt;}
.y78{bottom:494.198442pt;}
.yec{bottom:494.198549pt;}
.y169{bottom:496.333748pt;}
.y3f{bottom:502.741268pt;}
.y168{bottom:511.283881pt;}
.y134{bottom:513.419615pt;}
.yaf{bottom:513.419935pt;}
.y77{bottom:513.420042pt;}
.yeb{bottom:513.420149pt;}
.ybb{bottom:514.487802pt;}
.y3e{bottom:521.962868pt;}
.y167{bottom:526.234015pt;}
.y133{bottom:532.641215pt;}
.yad{bottom:532.641535pt;}
.y76{bottom:532.641642pt;}
.yea{bottom:532.641749pt;}
.y166{bottom:541.184148pt;}
.y3d{bottom:541.184468pt;}
.y132{bottom:551.862815pt;}
.yac{bottom:551.863135pt;}
.y75{bottom:551.863242pt;}
.ye9{bottom:551.863349pt;}
.yce{bottom:552.931002pt;}
.y165{bottom:556.134281pt;}
.y3c{bottom:560.406068pt;}
.ye{bottom:562.541908pt;}
.y131{bottom:571.084415pt;}
.yab{bottom:571.084735pt;}
.y74{bottom:571.084842pt;}
.ye8{bottom:571.084949pt;}
.y3b{bottom:579.627668pt;}
.yd{bottom:582.831375pt;}
.y164{bottom:586.034548pt;}
.y130{bottom:590.306015pt;}
.yaa{bottom:590.306335pt;}
.y73{bottom:590.306442pt;}
.ye7{bottom:590.306549pt;}
.y10c{bottom:591.374415pt;}
.y3a{bottom:598.849268pt;}
.y163{bottom:600.984681pt;}
.y12f{bottom:609.527615pt;}
.ya9{bottom:609.527935pt;}
.y72{bottom:609.528042pt;}
.ye6{bottom:609.528149pt;}
.y162{bottom:615.934815pt;}
.y39{bottom:618.070868pt;}
.yc{bottom:625.546042pt;}
.y12e{bottom:628.749215pt;}
.ya8{bottom:628.749535pt;}
.y71{bottom:628.749642pt;}
.ye5{bottom:628.749749pt;}
.y109{bottom:629.817615pt;}
.y161{bottom:630.884948pt;}
.y38{bottom:637.292468pt;}
.y160{bottom:645.835081pt;}
.y12d{bottom:647.970815pt;}
.ya7{bottom:647.971135pt;}
.y70{bottom:647.971242pt;}
.ye4{bottom:647.971349pt;}
.y37{bottom:656.514068pt;}
.y44{bottom:657.581935pt;}
.y15f{bottom:660.785215pt;}
.y12c{bottom:667.192415pt;}
.ya6{bottom:667.192735pt;}
.y6f{bottom:667.192842pt;}
.ye3{bottom:667.192949pt;}
.yb{bottom:668.260708pt;}
.y15e{bottom:675.735348pt;}
.y35{bottom:675.735668pt;}
.y12b{bottom:686.414015pt;}
.ya5{bottom:686.414335pt;}
.y6e{bottom:686.414442pt;}
.ye2{bottom:686.414549pt;}
.y15d{bottom:690.685481pt;}
.y34{bottom:694.957268pt;}
.y12a{bottom:705.635615pt;}
.ya4{bottom:705.635935pt;}
.y6d{bottom:705.636042pt;}
.ye1{bottom:705.636149pt;}
.y10f{bottom:706.704015pt;}
.y33{bottom:714.178868pt;}
.y18f{bottom:716.314281pt;}
.y15c{bottom:720.585748pt;}
.y129{bottom:724.857215pt;}
.ya3{bottom:724.857535pt;}
.y6c{bottom:724.857642pt;}
.ye0{bottom:724.857749pt;}
.y32{bottom:733.400468pt;}
.y15b{bottom:735.535881pt;}
.y128{bottom:744.078815pt;}
.ya2{bottom:744.079135pt;}
.y6b{bottom:744.079242pt;}
.ydf{bottom:744.079349pt;}
.y18e{bottom:746.214548pt;}
.y15a{bottom:750.486015pt;}
.y31{bottom:752.622068pt;}
.y127{bottom:763.300415pt;}
.ya1{bottom:763.300735pt;}
.y6a{bottom:763.300842pt;}
.yde{bottom:763.300949pt;}
.y159{bottom:765.436148pt;}
.y30{bottom:771.843668pt;}
.ya{bottom:778.250975pt;}
.y158{bottom:780.386281pt;}
.y126{bottom:782.522015pt;}
.ya0{bottom:782.522335pt;}
.y69{bottom:782.522442pt;}
.ydd{bottom:782.522549pt;}
.ycd{bottom:783.590202pt;}
.y2f{bottom:791.065268pt;}
.y157{bottom:795.336415pt;}
.y125{bottom:801.743615pt;}
.y9f{bottom:801.743935pt;}
.y68{bottom:801.744042pt;}
.ydc{bottom:801.744149pt;}
.y10b{bottom:802.812015pt;}
.y18d{bottom:808.150815pt;}
.y156{bottom:810.286548pt;}
.y2e{bottom:810.286868pt;}
.y124{bottom:820.965215pt;}
.y9e{bottom:820.965535pt;}
.y67{bottom:820.965642pt;}
.ydb{bottom:820.965749pt;}
.y9{bottom:823.101375pt;}
.y155{bottom:825.236681pt;}
.y2d{bottom:829.508468pt;}
.y18c{bottom:835.915348pt;}
.y123{bottom:840.186815pt;}
.y9d{bottom:840.187135pt;}
.y66{bottom:840.187242pt;}
.yda{bottom:840.187349pt;}
.y8{bottom:843.390842pt;}
.y2c{bottom:848.730068pt;}
.y154{bottom:855.136948pt;}
.y122{bottom:859.408415pt;}
.y9c{bottom:859.408735pt;}
.y65{bottom:859.408842pt;}
.yd9{bottom:859.408949pt;}
.y7b{bottom:860.476708pt;}
.y108{bottom:860.476815pt;}
.y18b{bottom:866.883481pt;}
.y2b{bottom:867.951668pt;}
.y153{bottom:870.087081pt;}
.y121{bottom:878.630015pt;}
.y9b{bottom:878.630335pt;}
.y64{bottom:878.630442pt;}
.yd8{bottom:878.630549pt;}
.y13a{bottom:879.697881pt;}
.y152{bottom:885.037215pt;}
.y2a{bottom:887.173268pt;}
.y7{bottom:890.376975pt;}
.y63{bottom:897.251367pt;}
.y11f{bottom:897.851615pt;}
.y9a{bottom:897.851935pt;}
.yd7{bottom:897.852149pt;}
.y151{bottom:899.987348pt;}
.y29{bottom:906.394868pt;}
.y6{bottom:909.598575pt;}
.y150{bottom:914.937481pt;}
.y62{bottom:916.472967pt;}
.y11e{bottom:917.073215pt;}
.y99{bottom:917.073535pt;}
.yd6{bottom:917.073749pt;}
.yf1{bottom:918.141615pt;}
.y28{bottom:925.616468pt;}
.y18a{bottom:927.751881pt;}
.y14f{bottom:929.887615pt;}
.y61{bottom:935.694567pt;}
.y11d{bottom:936.294815pt;}
.y98{bottom:936.295135pt;}
.yd5{bottom:936.295349pt;}
.y189{bottom:942.702015pt;}
.y14e{bottom:944.837748pt;}
.y27{bottom:944.838068pt;}
.y5{bottom:949.109642pt;}
.y60{bottom:954.916167pt;}
.y11c{bottom:955.516415pt;}
.y97{bottom:955.516735pt;}
.yd4{bottom:955.516949pt;}
.yae{bottom:956.584602pt;}
.y188{bottom:957.652148pt;}
.y14d{bottom:959.787881pt;}
.y26{bottom:964.059668pt;}
.y187{bottom:972.602281pt;}
.y5f{bottom:974.137767pt;}
.y11b{bottom:974.738015pt;}
.y96{bottom:974.738335pt;}
.yd3{bottom:974.738549pt;}
.y25{bottom:983.281268pt;}
.y36{bottom:984.349135pt;}
.y186{bottom:986.484548pt;}
.y14c{bottom:989.688148pt;}
.y5e{bottom:993.592909pt;}
.y11a{bottom:993.959615pt;}
.y95{bottom:993.959935pt;}
.yd2{bottom:993.960149pt;}
.y4{bottom:1003.570842pt;}
.y14b{bottom:1004.638281pt;}
.y5d{bottom:1012.814509pt;}
.y119{bottom:1013.181215pt;}
.y94{bottom:1013.181535pt;}
.yd1{bottom:1013.181749pt;}
.y185{bottom:1016.384815pt;}
.y24{bottom:1016.385135pt;}
.y14a{bottom:1019.588415pt;}
.y5c{bottom:1032.036109pt;}
.y118{bottom:1032.402815pt;}
.y93{bottom:1032.403135pt;}
.yd0{bottom:1032.403349pt;}
.y120{bottom:1033.470681pt;}
.y149{bottom:1034.872256pt;}
.y1{bottom:1094.666557pt;}
.hb{height:29.033376pt;}
.h1{height:31.083450pt;}
.hd{height:34.439409pt;}
.he{height:37.316934pt;}
.h5{height:37.341963pt;}
.hc{height:43.065415pt;}
.h9{height:46.752538pt;}
.h8{height:51.658050pt;}
.h4{height:51.934277pt;}
.ha{height:53.435965pt;}
.h6{height:77.920896pt;}
.h7{height:116.086763pt;}
.h3{height:166.205271pt;}
.h2{height:1046.509333pt;}
.h0{height:1124.000000pt;}
.w1{width:718.674267pt;}
.w0{width:794.666667pt;}
.x0{left:0.000000pt;}
.x6{left:25.265619pt;}
.x5{left:30.806672pt;}
.x1{left:34.666796pt;}
.x2{left:38.443200pt;}
.x3{left:57.705059pt;}
.x4{left:71.937799pt;}
}




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