
    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_0fee3adc4714016c606142d3.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_31b777bd4e348e5d61fb98d8.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284180;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_68d8cf044beb89622bad89b1.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.972529;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_e78d0c68755fd4b40537b1b8.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.311035;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_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;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_bfce68cc11e88fd638687011.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.785156;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_195984c1a09c88f8aa5c839f.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.750000;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;}
.m3{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249855,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.009890px;}
.lsc{letter-spacing:0.010103px;}
.ls4{letter-spacing:0.010553px;}
.lse{letter-spacing:0.010620px;}
.ls0{letter-spacing:0.010641px;}
.lsf{letter-spacing:0.021106px;}
.ls7{letter-spacing:0.021238px;}
.ls6{letter-spacing:0.021282px;}
.ls9{letter-spacing:0.036720px;}
.lsa{letter-spacing:0.036761px;}
.ls2{letter-spacing:0.042505px;}
.ls5{letter-spacing:0.044400px;}
.ls3{letter-spacing:0.189300px;}
.ls8{letter-spacing:0.275460px;}
.lsd{letter-spacing:0.731842px;}
.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;}
}
.ws9{word-spacing:-71.999971px;}
.wsb{word-spacing:-59.796737px;}
.wsa{word-spacing:-59.759976px;}
.ws6{word-spacing:-18.021275px;}
.ws8{word-spacing:-18.021231px;}
.wsc{word-spacing:-18.021099px;}
.ws3{word-spacing:-17.999993px;}
.ws7{word-spacing:-16.559993px;}
.ws0{word-spacing:-14.939994px;}
.ws2{word-spacing:-12.059995px;}
.ws5{word-spacing:-10.439996px;}
.ws4{word-spacing:-9.719996px;}
.ws1{word-spacing:0.000000px;}
._12{margin-left:-2.343829px;}
._4{margin-left:-1.332298px;}
._1{width:1.152570px;}
._5{width:3.113386px;}
._b{width:4.139394px;}
._8{width:5.593316px;}
._15{width:6.715212px;}
._16{width:7.819833px;}
._13{width:9.641914px;}
._14{width:10.733224px;}
._18{width:12.264752px;}
._9{width:13.810875px;}
._a{width:14.878901px;}
._e{width:16.711460px;}
._1c{width:18.004057px;}
._6{width:19.417164px;}
._7{width:20.722232px;}
._10{width:22.270688px;}
._17{width:23.837073px;}
._20{width:24.877221px;}
._2{width:26.077000px;}
._3{width:27.480413px;}
._f{width:29.245301px;}
._19{width:30.816432px;}
._21{width:32.104964px;}
._1d{width:33.126455px;}
._1e{width:34.357394px;}
._1b{width:37.927461px;}
._11{width:39.811128px;}
._1a{width:41.310118px;}
._c{width:43.595115px;}
._d{width:44.844908px;}
._1f{width:2462.423015px;}
._0{width:2498.441001px;}
.fc5{color:rgb(0,0,255);}
.fc2{color:transparent;}
.fc4{color:rgb(17,17,17);}
.fc3{color:rgb(37,37,37);}
.fc1{color:rgb(26,26,26);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:38.879984px;}
.fs7{font-size:41.759983px;}
.fs2{font-size:48.239981px;}
.fs9{font-size:56.879977px;}
.fs4{font-size:59.759976px;}
.fs5{font-size:63.359975px;}
.fs6{font-size:66.239974px;}
.fs0{font-size:71.999971px;}
.fs8{font-size:74.879970px;}
.fs1{font-size:95.759962px;}
.y0{bottom:0.000000px;}
.y3{bottom:4.320037px;}
.y2{bottom:53.400240px;}
.y1{bottom:57.720277px;}
.y6f{bottom:110.099956px;}
.y2a{bottom:110.100256px;}
.y153{bottom:110.820256px;}
.y4d{bottom:116.940253px;}
.y152{bottom:117.660253px;}
.y6e{bottom:127.379949px;}
.y29{bottom:127.380249px;}
.y168{bottom:127.920249px;}
.y4c{bottom:128.099949px;}
.y151{bottom:129.540248px;}
.y28{bottom:134.220246px;}
.y27{bottom:144.659942px;}
.yb4{bottom:144.660242px;}
.ycb{bottom:145.379942px;}
.y150{bottom:147.540241px;}
.yb3{bottom:151.499939px;}
.y14f{bottom:154.379938px;}
.y4b{bottom:155.819938px;}
.y26{bottom:161.939935px;}
.y178{bottom:162.479935px;}
.ye1{bottom:162.659935px;}
.y14e{bottom:166.259933px;}
.y6d{bottom:168.779932px;}
.y177{bottom:169.319932px;}
.y14d{bottom:173.099931px;}
.y25{bottom:179.219928px;}
.y13b{bottom:179.759928px;}
.yff{bottom:179.939928px;}
.yca{bottom:181.739927px;}
.y176{bottom:182.099927px;}
.y14c{bottom:183.539927px;}
.y167{bottom:185.519926px;}
.y6c{bottom:186.059926px;}
.y4a{bottom:186.959925px;}
.y14b{bottom:190.379924px;}
.y166{bottom:192.359923px;}
.y24{bottom:196.499921px;}
.y6b{bottom:197.219921px;}
.y13a{bottom:199.199920px;}
.y14a{bottom:200.819920px;}
.y95{bottom:203.339919px;}
.y149{bottom:207.659917px;}
.y165{bottom:208.019917px;}
.yc8{bottom:212.879915px;}
.y109{bottom:213.059915px;}
.y8c{bottom:213.599915px;}
.y104{bottom:214.499914px;}
.y23{bottom:214.679914px;}
.y164{bottom:214.859914px;}
.y49{bottom:217.919913px;}
.y94{bottom:218.099913px;}
.y139{bottom:218.639913px;}
.y148{bottom:218.819912px;}
.y8b{bottom:220.439912px;}
.ye0{bottom:220.979912px;}
.yc9{bottom:221.159912px;}
.y22{bottom:221.519911px;}
.y163{bottom:225.299910px;}
.y138{bottom:225.479910px;}
.y8a{bottom:230.879908px;}
.y162{bottom:232.139907px;}
.y21{bottom:233.399907px;}
.y93{bottom:235.379906px;}
.y89{bottom:237.719905px;}
.y137{bottom:238.259905px;}
.y92{bottom:242.219903px;}
.y161{bottom:242.399903px;}
.y107{bottom:244.019902px;}
.y136{bottom:245.099902px;}
.yc7{bottom:247.079901px;}
.y88{bottom:248.159901px;}
.y48{bottom:249.059900px;}
.yfd{bottom:249.239900px;}
.ydf{bottom:249.419900px;}
.y108{bottom:252.299899px;}
.y103{bottom:253.019899px;}
.y91{bottom:253.379899px;}
.yb2{bottom:254.999898px;}
.y135{bottom:256.979897px;}
.yfe{bottom:257.519897px;}
.y160{bottom:260.399896px;}
.y87{bottom:265.439894px;}
.yb1{bottom:266.159894px;}
.y86{bottom:272.279891px;}
.y6a{bottom:274.979890px;}
.y47{bottom:280.019888px;}
.yfc{bottom:280.199888px;}
.yc6{bottom:280.379888px;}
.y134{bottom:281.819887px;}
.y85{bottom:282.719887px;}
.y102{bottom:283.979886px;}
.y20{bottom:285.419886px;}
.yde{bottom:287.939885px;}
.y147{bottom:293.339883px;}
.y133{bottom:293.879882px;}
.y84{bottom:299.819880px;}
.y132{bottom:300.719880px;}
.y15f{bottom:304.319878px;}
.y69{bottom:306.119878px;}
.y46{bottom:311.159876px;}
.yc5{bottom:311.339875px;}
.y131{bottom:311.879875px;}
.y101{bottom:315.119874px;}
.y1f{bottom:316.379873px;}
.y83{bottom:317.099873px;}
.ydd{bottom:319.079872px;}
.y11c{bottom:321.599871px;}
.y146{bottom:321.779871px;}
.y82{bottom:323.939870px;}
.y11d{bottom:329.159868px;}
.y81{bottom:334.379866px;}
.y15d{bottom:336.899865px;}
.y45{bottom:342.119863px;}
.yfb{bottom:342.299863px;}
.yc4{bottom:342.479863px;}
.y15e{bottom:345.179862px;}
.y68{bottom:346.079862px;}
.ydc{bottom:350.039860px;}
.y145{bottom:350.219860px;}
.y80{bottom:351.659859px;}
.y100{bottom:354.359858px;}
.y1d{bottom:356.519857px;}
.y7f{bottom:358.499857px;}
.y1e{bottom:364.799854px;}
.y15c{bottom:368.039853px;}
.y130{bottom:369.299852px;}
.y7e{bottom:369.659852px;}
.y44{bottom:373.259851px;}
.yfa{bottom:373.439851px;}
.yb0{bottom:376.139850px;}
.y67{bottom:377.219849px;}
.y11b{bottom:378.479849px;}
.y144{bottom:378.659849px;}
.ydb{bottom:381.179848px;}
.yc3{bottom:381.359847px;}
.y1c{bottom:387.479845px;}
.y15b{bottom:398.999840px;}
.y12f{bottom:400.259840px;}
.y43{bottom:404.219838px;}
.y11a{bottom:406.919837px;}
.yaf{bottom:407.099837px;}
.y66{bottom:408.179837px;}
.yc2{bottom:409.799836px;}
.yda{bottom:412.139835px;}
.yf9{bottom:413.399835px;}
.y90{bottom:416.459833px;}
.y143{bottom:417.179833px;}
.y1b{bottom:418.619833px;}
.y12e{bottom:431.399827px;}
.y119{bottom:435.359826px;}
.y159{bottom:438.059825px;}
.yc1{bottom:438.239825px;}
.y65{bottom:439.319824px;}
.yd9{bottom:443.279823px;}
.y42{bottom:444.359822px;}
.yf8{bottom:444.539822px;}
.y15a{bottom:445.619822px;}
.yae{bottom:447.239821px;}
.y7d{bottom:447.599821px;}
.y141{bottom:448.319821px;}
.y1a{bottom:449.579820px;}
.y142{bottom:456.599817px;}
.y12d{bottom:462.359815px;}
.y118{bottom:463.799814px;}
.y175{bottom:466.319813px;}
.yc0{bottom:466.679813px;}
.y158{bottom:469.919812px;}
.y63{bottom:470.279812px;}
.yd8{bottom:474.239810px;}
.y41{bottom:475.319810px;}
.yf7{bottom:475.499810px;}
.yad{bottom:477.119809px;}
.y64{bottom:478.559809px;}
.y140{bottom:479.279808px;}
.y19{bottom:480.719808px;}
.y12c{bottom:493.499803px;}
.y174{bottom:497.459801px;}
.y62{bottom:501.419799px;}
.y117{bottom:502.499799px;}
.ybf{bottom:505.379798px;}
.yac{bottom:505.559798px;}
.y40{bottom:506.459797px;}
.yf6{bottom:506.639797px;}
.y8f{bottom:509.699796px;}
.y13e{bottom:510.419796px;}
.y18{bottom:511.679795px;}
.y13f{bottom:518.699793px;}
.y12a{bottom:524.459790px;}
.y173{bottom:528.419789px;}
.y157{bottom:529.859788px;}
.y60{bottom:532.379787px;}
.y12b{bottom:532.739787px;}
.y115{bottom:533.459787px;}
.yab{bottom:533.999786px;}
.ybe{bottom:536.339785px;}
.y3f{bottom:537.419785px;}
.yf5{bottom:537.599785px;}
.y61{bottom:540.659784px;}
.y13d{bottom:541.379783px;}
.y116{bottom:541.739783px;}
.y17{bottom:542.819783px;}
.y129{bottom:555.599778px;}
.y172{bottom:559.559776px;}
.yaa{bottom:562.439775px;}
.y5f{bottom:563.519775px;}
.y114{bottom:564.599774px;}
.yd7{bottom:567.119773px;}
.ybd{bottom:567.479773px;}
.y3e{bottom:568.559773px;}
.yf4{bottom:568.739773px;}
.y7c{bottom:572.519771px;}
.y15{bottom:573.779770px;}
.y13c{bottom:580.799768px;}
.y16{bottom:582.059767px;}
.y128{bottom:586.559765px;}
.y171{bottom:590.519764px;}
.y5e{bottom:594.479762px;}
.y113{bottom:595.559762px;}
.ybc{bottom:598.439761px;}
.y3d{bottom:599.519760px;}
.yf3{bottom:599.699760px;}
.ya9{bottom:601.139760px;}
.y7a{bottom:603.479759px;}
.y14{bottom:604.919758px;}
.yd6{bottom:607.439757px;}
.y7b{bottom:611.759755px;}
.y170{bottom:621.659751px;}
.y106{bottom:625.619750px;}
.y111{bottom:626.699749px;}
.y126{bottom:629.039748px;}
.ybb{bottom:629.579748px;}
.y3c{bottom:630.659748px;}
.yf2{bottom:630.839748px;}
.ya8{bottom:632.099747px;}
.y5d{bottom:634.619746px;}
.y112{bottom:634.979746px;}
.y13{bottom:635.879746px;}
.y127{bottom:636.599745px;}
.yd5{bottom:638.579745px;}
.y110{bottom:657.659737px;}
.y125{bottom:660.539736px;}
.y3b{bottom:661.619735px;}
.yf1{bottom:661.799735px;}
.ya6{bottom:663.239735px;}
.y5c{bottom:665.579734px;}
.y12{bottom:667.019733px;}
.yba{bottom:668.459733px;}
.yd4{bottom:669.539732px;}
.ya7{bottom:671.519731px;}
.y10f{bottom:688.799724px;}
.y124{bottom:688.979724px;}
.y3a{bottom:692.759723px;}
.yf0{bottom:692.939723px;}
.ya5{bottom:694.199722px;}
.y5b{bottom:696.719721px;}
.yb9{bottom:696.899721px;}
.y156{bottom:701.039720px;}
.y11{bottom:706.979717px;}
.yd2{bottom:708.419717px;}
.yd3{bottom:715.979714px;}
.y10e{bottom:719.759712px;}
.y123{bottom:720.839712px;}
.y39{bottom:723.719711px;}
.yef{bottom:723.899710px;}
.ya4{bottom:725.339710px;}
.y5a{bottom:727.679709px;}
.y79{bottom:735.959706px;}
.yd1{bottom:736.859705px;}
.y10{bottom:738.119705px;}
.y10d{bottom:750.899700px;}
.yb8{bottom:753.779698px;}
.y38{bottom:754.859698px;}
.yee{bottom:755.039698px;}
.y122{bottom:755.939698px;}
.ya3{bottom:756.299697px;}
.y59{bottom:758.819696px;}
.y16f{bottom:763.139695px;}
.yd0{bottom:765.479694px;}
.yf{bottom:769.079692px;}
.yb7{bottom:782.219687px;}
.y10c{bottom:784.199686px;}
.y37{bottom:785.819686px;}
.yed{bottom:785.999686px;}
.ya1{bottom:787.259685px;}
.y58{bottom:789.779684px;}
.ycf{bottom:793.919682px;}
.ya2{bottom:795.539682px;}
.y121{bottom:796.439681px;}
.y8e{bottom:798.059681px;}
.ye{bottom:800.219680px;}
.y36{bottom:816.959673px;}
.ya0{bottom:818.399673px;}
.y10b{bottom:819.299672px;}
.y57{bottom:820.919672px;}
.yce{bottom:822.359671px;}
.y120{bottom:824.879670px;}
.yec{bottom:825.959670px;}
.y78{bottom:829.199668px;}
.yd{bottom:831.179668px;}
.y35{bottom:847.919661px;}
.y9f{bottom:849.359660px;}
.y56{bottom:851.879659px;}
.y11f{bottom:853.319659px;}
.yea{bottom:857.099657px;}
.ycd{bottom:860.879656px;}
.yc{bottom:862.319655px;}
.yeb{bottom:865.379654px;}
.y34{bottom:879.059648px;}
.y9e{bottom:880.499648px;}
.y55{bottom:883.019647px;}
.y16e{bottom:887.339645px;}
.ye9{bottom:888.059645px;}
.y154{bottom:890.399644px;}
.y76{bottom:892.019643px;}
.yb{bottom:893.279643px;}
.y155{bottom:898.679641px;}
.y77{bottom:900.299640px;}
.y33{bottom:910.019636px;}
.y54{bottom:913.979634px;}
.ye8{bottom:919.199632px;}
.y9c{bottom:919.379632px;}
.y105{bottom:922.259631px;}
.y75{bottom:922.979631px;}
.ya{bottom:924.419630px;}
.y9d{bottom:926.939629px;}
.ycc{bottom:931.259627px;}
.y32{bottom:941.159624px;}
.y53{bottom:945.119622px;}
.y9b{bottom:947.819621px;}
.ye7{bottom:950.159620px;}
.y74{bottom:954.119618px;}
.y9{bottom:955.379618px;}
.y8d{bottom:962.399615px;}
.y16d{bottom:971.759611px;}
.y31{bottom:972.119611px;}
.y52{bottom:976.079610px;}
.ye6{bottom:981.299607px;}
.y72{bottom:985.079606px;}
.y9a{bottom:985.259606px;}
.y8{bottom:986.519605px;}
.y73{bottom:993.359603px;}
.y30{bottom:1002.899599px;}
.y51{bottom:1007.219597px;}
.ye5{bottom:1012.259595px;}
.y99{bottom:1013.699595px;}
.y71{bottom:1016.219594px;}
.y7{bottom:1017.479593px;}
.y11e{bottom:1024.499590px;}
.y2f{bottom:1033.859586px;}
.yb6{bottom:1038.179585px;}
.y98{bottom:1042.319583px;}
.y16c{bottom:1043.219583px;}
.ye4{bottom:1043.399583px;}
.y50{bottom:1047.179581px;}
.y6{bottom:1048.619581px;}
.y70{bottom:1055.459578px;}
.yb5{bottom:1069.319572px;}
.y97{bottom:1070.759572px;}
.y2e{bottom:1074.359570px;}
.y4f{bottom:1078.319569px;}
.y16b{bottom:1082.639567px;}
.y10a{bottom:1086.599565px;}
.y5{bottom:1093.799562px;}
.y16a{bottom:1105.319558px;}
.y2d{bottom:1107.659557px;}
.y4e{bottom:1109.279556px;}
.ye3{bottom:1113.239555px;}
.y96{bottom:1117.559553px;}
.y4{bottom:1135.199546px;}
.y169{bottom:1138.799544px;}
.y2b{bottom:1140.419544px;}
.ye2{bottom:1141.859543px;}
.y2c{bottom:1148.699541px;}
.h2{height:20.520000px;}
.h5{height:38.158578px;}
.h12{height:40.271468px;}
.hd{height:40.985140px;}
.h13{height:42.659983px;}
.hf{height:43.554358px;}
.h4{height:47.344903px;}
.h11{height:49.905583px;}
.h14{height:53.015604px;}
.h15{height:58.621969px;}
.h6{height:58.651148px;}
.h10{height:60.127208px;}
.h7{height:62.153413px;}
.h8{height:62.184350px;}
.hb{height:62.327788px;}
.hc{height:65.010911px;}
.h1{height:70.664034px;}
.ha{height:70.665234px;}
.h9{height:72.562471px;}
.he{height:73.490596px;}
.h3{height:93.936408px;}
.h0{height:1263.000000px;}
.w1{width:0.360000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x1{left:127.619949px;}
.x9{left:132.479947px;}
.x25{left:137.339945px;}
.x30{left:139.499944px;}
.xf{left:140.939891px;}
.x82{left:142.739943px;}
.x5{left:148.859940px;}
.x69{left:150.479940px;}
.x1f{left:153.179939px;}
.x20{left:167.039933px;}
.x7d{left:172.079931px;}
.x7e{left:184.319926px;}
.xb{left:196.379921px;}
.x6e{left:204.119918px;}
.x6d{left:212.039915px;}
.x57{left:215.279914px;}
.x6f{left:216.359913px;}
.x63{left:219.239912px;}
.x53{left:221.579911px;}
.x3{left:223.919910px;}
.x58{left:225.719910px;}
.x54{left:233.819906px;}
.x2c{left:249.839900px;}
.x7a{left:253.259899px;}
.x64{left:255.059898px;}
.x4f{left:258.299897px;}
.x2d{left:262.079895px;}
.x4b{left:266.759893px;}
.x29{left:269.459892px;}
.x50{left:271.619891px;}
.x3f{left:275.578881px;}
.x4c{left:278.999888px;}
.x2e{left:280.259888px;}
.x2a{left:282.599887px;}
.x52{left:289.439884px;}
.x2f{left:292.499883px;}
.x81{left:309.059876px;}
.x7c{left:317.339873px;}
.x34{left:318.959872px;}
.x36{left:321.659871px;}
.x4{left:322.919873px;}
.x6a{left:324.539870px;}
.x21{left:330.479868px;}
.x37{left:333.899866px;}
.x72{left:335.339866px;}
.x10{left:340.379072px;}
.x22{left:343.079863px;}
.x74{left:348.299861px;}
.x61{left:349.379860px;}
.x23{left:359.459856px;}
.x75{left:361.439855px;}
.x35{left:367.379853px;}
.x38{left:369.539852px;}
.x24{left:374.579850px;}
.x7f{left:376.380467px;}
.x80{left:381.419847px;}
.x62{left:385.379846px;}
.x28{left:386.819845px;}
.x70{left:392.579843px;}
.x39{left:394.559842px;}
.x68{left:401.039840px;}
.x71{left:406.799837px;}
.x3d{left:414.179834px;}
.x7{left:417.419833px;}
.x3e{left:424.619830px;}
.x8{left:426.599829px;}
.x19{left:440.099824px;}
.x11{left:445.859822px;}
.x1a{left:449.099820px;}
.x12{left:455.039818px;}
.x73{left:463.859814px;}
.x31{left:468.359813px;}
.xc{left:470.339812px;}
.xd{left:478.259809px;}
.x17{left:481.139808px;}
.xe{left:483.479807px;}
.x18{left:487.259805px;}
.x77{left:491.219804px;}
.x2b{left:494.819802px;}
.x6b{left:500.219800px;}
.x55{left:501.659799px;}
.x78{left:503.459799px;}
.x4d{left:505.979798px;}
.x6c{left:512.459795px;}
.x56{left:513.899794px;}
.x4e{left:518.939792px;}
.x5d{left:526.679789px;}
.x47{left:531.719787px;}
.x5e{left:538.919784px;}
.x48{left:543.959782px;}
.x32{left:549.179780px;}
.x40{left:555.659778px;}
.x33{left:561.419775px;}
.x41{left:571.139772px;}
.x15{left:580.859768px;}
.x5b{left:584.639766px;}
.x16{left:586.979765px;}
.x42{left:592.199763px;}
.xa{left:594.719762px;}
.x5c{left:596.879761px;}
.x43{left:600.299760px;}
.x1d{left:617.399753px;}
.x59{left:622.799751px;}
.x76{left:623.879750px;}
.x1e{left:631.079748px;}
.x65{left:634.859746px;}
.x5a{left:636.479745px;}
.x66{left:638.459745px;}
.x49{left:641.339743px;}
.x67{left:642.419743px;}
.x46{left:644.399742px;}
.x4a{left:653.579739px;}
.x1b{left:668.879732px;}
.x1c{left:674.999730px;}
.x44{left:691.019724px;}
.x51{left:695.159722px;}
.x5f{left:701.639719px;}
.x45{left:703.259719px;}
.x26{left:704.339718px;}
.x3a{left:705.419718px;}
.x3b{left:708.299717px;}
.x27{left:716.579713px;}
.x60{left:719.639712px;}
.x7b{left:720.719712px;}
.x79{left:743.759702px;}
.x13{left:748.979700px;}
.x14{left:755.099698px;}
.x6{left:759.419696px;}
.x3c{left:761.039696px;}
.x2{left:765.360000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.008791pt;}
.lsc{letter-spacing:0.008980pt;}
.ls4{letter-spacing:0.009381pt;}
.lse{letter-spacing:0.009440pt;}
.ls0{letter-spacing:0.009459pt;}
.lsf{letter-spacing:0.018761pt;}
.ls7{letter-spacing:0.018878pt;}
.ls6{letter-spacing:0.018917pt;}
.ls9{letter-spacing:0.032640pt;}
.lsa{letter-spacing:0.032676pt;}
.ls2{letter-spacing:0.037782pt;}
.ls5{letter-spacing:0.039467pt;}
.ls3{letter-spacing:0.168267pt;}
.ls8{letter-spacing:0.244853pt;}
.lsd{letter-spacing:0.650526pt;}
.ws9{word-spacing:-63.999974pt;}
.wsb{word-spacing:-53.152655pt;}
.wsa{word-spacing:-53.119979pt;}
.ws6{word-spacing:-16.018911pt;}
.ws8{word-spacing:-16.018872pt;}
.wsc{word-spacing:-16.018755pt;}
.ws3{word-spacing:-15.999994pt;}
.ws7{word-spacing:-14.719994pt;}
.ws0{word-spacing:-13.279995pt;}
.ws2{word-spacing:-10.719996pt;}
.ws5{word-spacing:-9.279996pt;}
.ws4{word-spacing:-8.639997pt;}
.ws1{word-spacing:0.000000pt;}
._12{margin-left:-2.083404pt;}
._4{margin-left:-1.184265pt;}
._1{width:1.024507pt;}
._5{width:2.767454pt;}
._b{width:3.679461pt;}
._8{width:4.971836pt;}
._15{width:5.969077pt;}
._16{width:6.950963pt;}
._13{width:8.570590pt;}
._14{width:9.540644pt;}
._18{width:10.902002pt;}
._9{width:12.276334pt;}
._a{width:13.225690pt;}
._e{width:14.854631pt;}
._1c{width:16.003606pt;}
._6{width:17.259702pt;}
._7{width:18.419762pt;}
._10{width:19.796167pt;}
._17{width:21.188510pt;}
._20{width:22.113085pt;}
._2{width:23.179556pt;}
._3{width:24.427034pt;}
._f{width:25.995823pt;}
._19{width:27.392384pt;}
._21{width:28.537746pt;}
._1d{width:29.445738pt;}
._1e{width:30.539906pt;}
._1b{width:33.713299pt;}
._11{width:35.387669pt;}
._1a{width:36.720105pt;}
._c{width:38.751213pt;}
._d{width:39.862140pt;}
._1f{width:2188.820458pt;}
._0{width:2220.836445pt;}
.fs3{font-size:34.559986pt;}
.fs7{font-size:37.119985pt;}
.fs2{font-size:42.879983pt;}
.fs9{font-size:50.559980pt;}
.fs4{font-size:53.119979pt;}
.fs5{font-size:56.319977pt;}
.fs6{font-size:58.879976pt;}
.fs0{font-size:63.999974pt;}
.fs8{font-size:66.559973pt;}
.fs1{font-size:85.119966pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:3.840033pt;}
.y2{bottom:47.466880pt;}
.y1{bottom:51.306913pt;}
.y6f{bottom:97.866628pt;}
.y2a{bottom:97.866894pt;}
.y153{bottom:98.506894pt;}
.y4d{bottom:103.946892pt;}
.y152{bottom:104.586891pt;}
.y6e{bottom:113.226621pt;}
.y29{bottom:113.226888pt;}
.y168{bottom:113.706888pt;}
.y4c{bottom:113.866621pt;}
.y151{bottom:115.146887pt;}
.y28{bottom:119.306886pt;}
.y27{bottom:128.586615pt;}
.yb4{bottom:128.586882pt;}
.ycb{bottom:129.226615pt;}
.y150{bottom:131.146881pt;}
.yb3{bottom:134.666613pt;}
.y14f{bottom:137.226612pt;}
.y4b{bottom:138.506611pt;}
.y26{bottom:143.946609pt;}
.y178{bottom:144.426609pt;}
.ye1{bottom:144.586609pt;}
.y14e{bottom:147.786608pt;}
.y6d{bottom:150.026607pt;}
.y177{bottom:150.506606pt;}
.y14d{bottom:153.866605pt;}
.y25{bottom:159.306603pt;}
.y13b{bottom:159.786603pt;}
.yff{bottom:159.946603pt;}
.yca{bottom:161.546602pt;}
.y176{bottom:161.866602pt;}
.y14c{bottom:163.146601pt;}
.y167{bottom:164.906601pt;}
.y6c{bottom:165.386601pt;}
.y4a{bottom:166.186600pt;}
.y14b{bottom:169.226599pt;}
.y166{bottom:170.986598pt;}
.y24{bottom:174.666597pt;}
.y6b{bottom:175.306597pt;}
.y13a{bottom:177.066596pt;}
.y14a{bottom:178.506595pt;}
.y95{bottom:180.746594pt;}
.y149{bottom:184.586593pt;}
.y165{bottom:184.906593pt;}
.yc8{bottom:189.226591pt;}
.y109{bottom:189.386591pt;}
.y8c{bottom:189.866591pt;}
.y104{bottom:190.666590pt;}
.y23{bottom:190.826590pt;}
.y164{bottom:190.986590pt;}
.y49{bottom:193.706589pt;}
.y94{bottom:193.866589pt;}
.y139{bottom:194.346589pt;}
.y148{bottom:194.506589pt;}
.y8b{bottom:195.946588pt;}
.ye0{bottom:196.426588pt;}
.yc9{bottom:196.586588pt;}
.y22{bottom:196.906588pt;}
.y163{bottom:200.266587pt;}
.y138{bottom:200.426586pt;}
.y8a{bottom:205.226585pt;}
.y162{bottom:206.346584pt;}
.y21{bottom:207.466584pt;}
.y93{bottom:209.226583pt;}
.y89{bottom:211.306582pt;}
.y137{bottom:211.786582pt;}
.y92{bottom:215.306581pt;}
.y161{bottom:215.466580pt;}
.y107{bottom:216.906580pt;}
.y136{bottom:217.866580pt;}
.yc7{bottom:219.626579pt;}
.y88{bottom:220.586578pt;}
.y48{bottom:221.386578pt;}
.yfd{bottom:221.546578pt;}
.ydf{bottom:221.706578pt;}
.y108{bottom:224.266577pt;}
.y103{bottom:224.906577pt;}
.y91{bottom:225.226577pt;}
.yb2{bottom:226.666576pt;}
.y135{bottom:228.426575pt;}
.yfe{bottom:228.906575pt;}
.y160{bottom:231.466574pt;}
.y87{bottom:235.946572pt;}
.yb1{bottom:236.586572pt;}
.y86{bottom:242.026570pt;}
.y6a{bottom:244.426569pt;}
.y47{bottom:248.906567pt;}
.yfc{bottom:249.066567pt;}
.yc6{bottom:249.226567pt;}
.y134{bottom:250.506566pt;}
.y85{bottom:251.306566pt;}
.y102{bottom:252.426566pt;}
.y20{bottom:253.706565pt;}
.yde{bottom:255.946564pt;}
.y147{bottom:260.746562pt;}
.y133{bottom:261.226562pt;}
.y84{bottom:266.506560pt;}
.y132{bottom:267.306560pt;}
.y15f{bottom:270.506558pt;}
.y69{bottom:272.106558pt;}
.y46{bottom:276.586556pt;}
.yc5{bottom:276.746556pt;}
.y131{bottom:277.226556pt;}
.y101{bottom:280.106555pt;}
.y1f{bottom:281.226554pt;}
.y83{bottom:281.866554pt;}
.ydd{bottom:283.626553pt;}
.y11c{bottom:285.866552pt;}
.y146{bottom:286.026552pt;}
.y82{bottom:287.946551pt;}
.y11d{bottom:292.586550pt;}
.y81{bottom:297.226548pt;}
.y15d{bottom:299.466547pt;}
.y45{bottom:304.106545pt;}
.yfb{bottom:304.266545pt;}
.yc4{bottom:304.426545pt;}
.y15e{bottom:306.826544pt;}
.y68{bottom:307.626544pt;}
.ydc{bottom:311.146542pt;}
.y145{bottom:311.306542pt;}
.y80{bottom:312.586542pt;}
.y100{bottom:314.986541pt;}
.y1d{bottom:316.906540pt;}
.y7f{bottom:318.666539pt;}
.y1e{bottom:324.266537pt;}
.y15c{bottom:327.146536pt;}
.y130{bottom:328.266535pt;}
.y7e{bottom:328.586535pt;}
.y44{bottom:331.786534pt;}
.yfa{bottom:331.946534pt;}
.yb0{bottom:334.346533pt;}
.y67{bottom:335.306533pt;}
.y11b{bottom:336.426532pt;}
.y144{bottom:336.586532pt;}
.ydb{bottom:338.826531pt;}
.yc3{bottom:338.986531pt;}
.y1c{bottom:344.426529pt;}
.y15b{bottom:354.666525pt;}
.y12f{bottom:355.786524pt;}
.y43{bottom:359.306523pt;}
.y11a{bottom:361.706522pt;}
.yaf{bottom:361.866522pt;}
.y66{bottom:362.826522pt;}
.yc2{bottom:364.266521pt;}
.yda{bottom:366.346520pt;}
.yf9{bottom:367.466520pt;}
.y90{bottom:370.186519pt;}
.y143{bottom:370.826518pt;}
.y1b{bottom:372.106518pt;}
.y12e{bottom:383.466513pt;}
.y119{bottom:386.986512pt;}
.y159{bottom:389.386511pt;}
.yc1{bottom:389.546511pt;}
.y65{bottom:390.506510pt;}
.yd9{bottom:394.026509pt;}
.y42{bottom:394.986509pt;}
.yf8{bottom:395.146509pt;}
.y15a{bottom:396.106508pt;}
.yae{bottom:397.546508pt;}
.y7d{bottom:397.866508pt;}
.y141{bottom:398.506507pt;}
.y1a{bottom:399.626507pt;}
.y142{bottom:405.866504pt;}
.y12d{bottom:410.986502pt;}
.y118{bottom:412.266502pt;}
.y175{bottom:414.506501pt;}
.yc0{bottom:414.826501pt;}
.y158{bottom:417.706500pt;}
.y63{bottom:418.026499pt;}
.yd8{bottom:421.546498pt;}
.y41{bottom:422.506498pt;}
.yf7{bottom:422.666498pt;}
.yad{bottom:424.106497pt;}
.y64{bottom:425.386497pt;}
.y140{bottom:426.026496pt;}
.y19{bottom:427.306496pt;}
.y12c{bottom:438.666491pt;}
.y174{bottom:442.186490pt;}
.y62{bottom:445.706488pt;}
.y117{bottom:446.666488pt;}
.ybf{bottom:449.226487pt;}
.yac{bottom:449.386487pt;}
.y40{bottom:450.186487pt;}
.yf6{bottom:450.346487pt;}
.y8f{bottom:453.066485pt;}
.y13e{bottom:453.706485pt;}
.y18{bottom:454.826485pt;}
.y13f{bottom:461.066482pt;}
.y12a{bottom:466.186480pt;}
.y173{bottom:469.706479pt;}
.y157{bottom:470.986478pt;}
.y60{bottom:473.226477pt;}
.y12b{bottom:473.546477pt;}
.y115{bottom:474.186477pt;}
.yab{bottom:474.666477pt;}
.ybe{bottom:476.746476pt;}
.y3f{bottom:477.706476pt;}
.yf5{bottom:477.866476pt;}
.y61{bottom:480.586474pt;}
.y13d{bottom:481.226474pt;}
.y116{bottom:481.546474pt;}
.y17{bottom:482.506474pt;}
.y129{bottom:493.866469pt;}
.y172{bottom:497.386468pt;}
.yaa{bottom:499.946467pt;}
.y5f{bottom:500.906466pt;}
.y114{bottom:501.866466pt;}
.yd7{bottom:504.106465pt;}
.ybd{bottom:504.426465pt;}
.y3e{bottom:505.386465pt;}
.yf4{bottom:505.546464pt;}
.y7c{bottom:508.906463pt;}
.y15{bottom:510.026463pt;}
.y13c{bottom:516.266460pt;}
.y16{bottom:517.386460pt;}
.y128{bottom:521.386458pt;}
.y171{bottom:524.906457pt;}
.y5e{bottom:528.426455pt;}
.y113{bottom:529.386455pt;}
.ybc{bottom:531.946454pt;}
.y3d{bottom:532.906454pt;}
.yf3{bottom:533.066453pt;}
.ya9{bottom:534.346453pt;}
.y7a{bottom:536.426452pt;}
.y14{bottom:537.706452pt;}
.yd6{bottom:539.946451pt;}
.y7b{bottom:543.786449pt;}
.y170{bottom:552.586446pt;}
.y106{bottom:556.106444pt;}
.y111{bottom:557.066444pt;}
.y126{bottom:559.146443pt;}
.ybb{bottom:559.626443pt;}
.y3c{bottom:560.586442pt;}
.yf2{bottom:560.746442pt;}
.ya8{bottom:561.866442pt;}
.y5d{bottom:564.106441pt;}
.y112{bottom:564.426441pt;}
.y13{bottom:565.226441pt;}
.y127{bottom:565.866440pt;}
.yd5{bottom:567.626440pt;}
.y110{bottom:584.586433pt;}
.y125{bottom:587.146432pt;}
.y3b{bottom:588.106431pt;}
.yf1{bottom:588.266431pt;}
.ya6{bottom:589.546431pt;}
.y5c{bottom:591.626430pt;}
.y12{bottom:592.906430pt;}
.yba{bottom:594.186429pt;}
.yd4{bottom:595.146429pt;}
.ya7{bottom:596.906428pt;}
.y10f{bottom:612.266422pt;}
.y124{bottom:612.426422pt;}
.y3a{bottom:615.786420pt;}
.yf0{bottom:615.946420pt;}
.ya5{bottom:617.066420pt;}
.y5b{bottom:619.306419pt;}
.yb9{bottom:619.466419pt;}
.y156{bottom:623.146417pt;}
.y11{bottom:628.426415pt;}
.yd2{bottom:629.706415pt;}
.yd3{bottom:636.426412pt;}
.y10e{bottom:639.786411pt;}
.y123{bottom:640.746410pt;}
.y39{bottom:643.306409pt;}
.yef{bottom:643.466409pt;}
.ya4{bottom:644.746409pt;}
.y5a{bottom:646.826408pt;}
.y79{bottom:654.186405pt;}
.yd1{bottom:654.986405pt;}
.y10{bottom:656.106404pt;}
.y10d{bottom:667.466400pt;}
.yb8{bottom:670.026399pt;}
.y38{bottom:670.986398pt;}
.yee{bottom:671.146398pt;}
.y122{bottom:671.946398pt;}
.ya3{bottom:672.266398pt;}
.y59{bottom:674.506397pt;}
.y16f{bottom:678.346395pt;}
.yd0{bottom:680.426394pt;}
.yf{bottom:683.626393pt;}
.yb7{bottom:695.306389pt;}
.y10c{bottom:697.066388pt;}
.y37{bottom:698.506387pt;}
.yed{bottom:698.666387pt;}
.ya1{bottom:699.786387pt;}
.y58{bottom:702.026386pt;}
.ycf{bottom:705.706384pt;}
.ya2{bottom:707.146384pt;}
.y121{bottom:707.946383pt;}
.y8e{bottom:709.386383pt;}
.ye{bottom:711.306382pt;}
.y36{bottom:726.186376pt;}
.ya0{bottom:727.466376pt;}
.y10b{bottom:728.266375pt;}
.y57{bottom:729.706375pt;}
.yce{bottom:730.986374pt;}
.y120{bottom:733.226373pt;}
.yec{bottom:734.186373pt;}
.y78{bottom:737.066372pt;}
.yd{bottom:738.826371pt;}
.y35{bottom:753.706365pt;}
.y9f{bottom:754.986365pt;}
.y56{bottom:757.226364pt;}
.y11f{bottom:758.506363pt;}
.yea{bottom:761.866362pt;}
.ycd{bottom:765.226361pt;}
.yc{bottom:766.506360pt;}
.yeb{bottom:769.226359pt;}
.y34{bottom:781.386354pt;}
.y9e{bottom:782.666354pt;}
.y55{bottom:784.906353pt;}
.y16e{bottom:788.746351pt;}
.ye9{bottom:789.386351pt;}
.y154{bottom:791.466350pt;}
.y76{bottom:792.906350pt;}
.yb{bottom:794.026349pt;}
.y155{bottom:798.826347pt;}
.y77{bottom:800.266347pt;}
.y33{bottom:808.906343pt;}
.y54{bottom:812.426342pt;}
.ye8{bottom:817.066340pt;}
.y9c{bottom:817.226340pt;}
.y105{bottom:819.786339pt;}
.y75{bottom:820.426338pt;}
.ya{bottom:821.706338pt;}
.y9d{bottom:823.946337pt;}
.ycc{bottom:827.786336pt;}
.y32{bottom:836.586332pt;}
.y53{bottom:840.106331pt;}
.y9b{bottom:842.506330pt;}
.ye7{bottom:844.586329pt;}
.y74{bottom:848.106327pt;}
.y9{bottom:849.226327pt;}
.y8d{bottom:855.466324pt;}
.y16d{bottom:863.786321pt;}
.y31{bottom:864.106321pt;}
.y52{bottom:867.626320pt;}
.ye6{bottom:872.266318pt;}
.y72{bottom:875.626316pt;}
.y9a{bottom:875.786316pt;}
.y8{bottom:876.906316pt;}
.y73{bottom:882.986313pt;}
.y30{bottom:891.466310pt;}
.y51{bottom:895.306309pt;}
.ye5{bottom:899.786307pt;}
.y99{bottom:901.066306pt;}
.y71{bottom:903.306305pt;}
.y7{bottom:904.426305pt;}
.y11e{bottom:910.666302pt;}
.y2f{bottom:918.986299pt;}
.yb6{bottom:922.826298pt;}
.y98{bottom:926.506296pt;}
.y16c{bottom:927.306296pt;}
.ye4{bottom:927.466296pt;}
.y50{bottom:930.826294pt;}
.y6{bottom:932.106294pt;}
.y70{bottom:938.186291pt;}
.yb5{bottom:950.506286pt;}
.y97{bottom:951.786286pt;}
.y2e{bottom:954.986285pt;}
.y4f{bottom:958.506283pt;}
.y16b{bottom:962.346282pt;}
.y10a{bottom:965.866280pt;}
.y5{bottom:972.266278pt;}
.y16a{bottom:982.506274pt;}
.y2d{bottom:984.586273pt;}
.y4e{bottom:986.026272pt;}
.ye3{bottom:989.546271pt;}
.y96{bottom:993.386269pt;}
.y4{bottom:1009.066263pt;}
.y169{bottom:1012.266262pt;}
.y2b{bottom:1013.706261pt;}
.ye2{bottom:1014.986261pt;}
.y2c{bottom:1021.066258pt;}
.h2{height:18.240000pt;}
.h5{height:33.918736pt;}
.h12{height:35.796861pt;}
.hd{height:36.431235pt;}
.h13{height:37.919985pt;}
.hf{height:38.714985pt;}
.h4{height:42.084358pt;}
.h11{height:44.360518pt;}
.h14{height:47.124981pt;}
.h15{height:52.108417pt;}
.h6{height:52.134354pt;}
.h10{height:53.446407pt;}
.h7{height:55.247478pt;}
.h8{height:55.274978pt;}
.hb{height:55.402478pt;}
.hc{height:57.787477pt;}
.h1{height:62.812475pt;}
.ha{height:62.813542pt;}
.h9{height:64.499974pt;}
.he{height:65.324974pt;}
.h3{height:83.499029pt;}
.h0{height:1122.666667pt;}
.w1{width:0.320000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x1{left:113.439955pt;}
.x9{left:117.759953pt;}
.x25{left:122.079951pt;}
.x30{left:123.999950pt;}
.xf{left:125.279903pt;}
.x82{left:126.879949pt;}
.x5{left:132.319947pt;}
.x69{left:133.759946pt;}
.x1f{left:136.159946pt;}
.x20{left:148.479941pt;}
.x7d{left:152.959939pt;}
.x7e{left:163.839934pt;}
.xb{left:174.559930pt;}
.x6e{left:181.439927pt;}
.x6d{left:188.479925pt;}
.x57{left:191.359923pt;}
.x6f{left:192.319923pt;}
.x63{left:194.879922pt;}
.x53{left:196.959921pt;}
.x3{left:199.039920pt;}
.x58{left:200.639920pt;}
.x54{left:207.839917pt;}
.x2c{left:222.079911pt;}
.x7a{left:225.119910pt;}
.x64{left:226.719909pt;}
.x4f{left:229.599908pt;}
.x2d{left:232.959907pt;}
.x4b{left:237.119905pt;}
.x29{left:239.519904pt;}
.x50{left:241.439903pt;}
.x3f{left:244.959006pt;}
.x4c{left:247.999901pt;}
.x2e{left:249.119900pt;}
.x2a{left:251.199900pt;}
.x52{left:257.279897pt;}
.x2f{left:259.999896pt;}
.x81{left:274.719890pt;}
.x7c{left:282.079887pt;}
.x34{left:283.519887pt;}
.x36{left:285.919886pt;}
.x4{left:287.039887pt;}
.x6a{left:288.479885pt;}
.x21{left:293.759882pt;}
.x37{left:296.799881pt;}
.x72{left:298.079881pt;}
.x10{left:302.559175pt;}
.x22{left:304.959878pt;}
.x74{left:309.599876pt;}
.x61{left:310.559876pt;}
.x23{left:319.519872pt;}
.x75{left:321.279871pt;}
.x35{left:326.559869pt;}
.x38{left:328.479869pt;}
.x24{left:332.959867pt;}
.x7f{left:334.560415pt;}
.x80{left:339.039864pt;}
.x62{left:342.559863pt;}
.x28{left:343.839862pt;}
.x70{left:348.959860pt;}
.x39{left:350.719860pt;}
.x68{left:356.479857pt;}
.x71{left:361.599855pt;}
.x3d{left:368.159853pt;}
.x7{left:371.039852pt;}
.x3e{left:377.439849pt;}
.x8{left:379.199848pt;}
.x19{left:391.199844pt;}
.x11{left:396.319841pt;}
.x1a{left:399.199840pt;}
.x12{left:404.479838pt;}
.x73{left:412.319835pt;}
.x31{left:416.319833pt;}
.xc{left:418.079833pt;}
.xd{left:425.119830pt;}
.x17{left:427.679829pt;}
.xe{left:429.759828pt;}
.x18{left:433.119827pt;}
.x77{left:436.639825pt;}
.x2b{left:439.839824pt;}
.x6b{left:444.639822pt;}
.x55{left:445.919822pt;}
.x78{left:447.519821pt;}
.x4d{left:449.759820pt;}
.x6c{left:455.519818pt;}
.x56{left:456.799817pt;}
.x4e{left:461.279815pt;}
.x5d{left:468.159813pt;}
.x47{left:472.639811pt;}
.x5e{left:479.039808pt;}
.x48{left:483.519807pt;}
.x32{left:488.159805pt;}
.x40{left:493.919802pt;}
.x33{left:499.039800pt;}
.x41{left:507.679797pt;}
.x15{left:516.319793pt;}
.x5b{left:519.679792pt;}
.x16{left:521.759791pt;}
.x42{left:526.399789pt;}
.xa{left:528.639789pt;}
.x5c{left:530.559788pt;}
.x43{left:533.599787pt;}
.x1d{left:548.799780pt;}
.x59{left:553.599779pt;}
.x76{left:554.559778pt;}
.x1e{left:560.959776pt;}
.x65{left:564.319774pt;}
.x5a{left:565.759774pt;}
.x66{left:567.519773pt;}
.x49{left:570.079772pt;}
.x67{left:571.039772pt;}
.x46{left:572.799771pt;}
.x4a{left:580.959768pt;}
.x1b{left:594.559762pt;}
.x1c{left:599.999760pt;}
.x44{left:614.239754pt;}
.x51{left:617.919753pt;}
.x5f{left:623.679751pt;}
.x45{left:625.119750pt;}
.x26{left:626.079750pt;}
.x3a{left:627.039749pt;}
.x3b{left:629.599748pt;}
.x27{left:636.959745pt;}
.x60{left:639.679744pt;}
.x7b{left:640.639744pt;}
.x79{left:661.119736pt;}
.x13{left:665.759734pt;}
.x14{left:671.199732pt;}
.x6{left:675.039730pt;}
.x3c{left:676.479729pt;}
.x2{left:680.320000pt;}
}




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