
    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_aec20e9b395886092e9e4742.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_91edde4599d33edbb5ded6f0.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_1b3fa442b1f74511631240dc.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_ec2a70507093c42c1109c2c7.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_1fb239c90822cf51a0a10d00.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_9f26385cab8c8c1902e42853.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.281250;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_b29e60404126b3c9748480d5.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.000000;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_d08c5d4e1c6f9e81ef503391.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.239258;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_1572603227c9405ccdd090b4.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.872559;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_5f0cee13d0cd4e141ca1627d.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.859375;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;}
.md{transform:matrix(0.000000,-0.249852,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249852,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249852,0.250000,0.000000,0,0);}
.mc{transform:matrix(0.000000,-0.250078,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250078,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250078,0.250000,0.000000,0,0);}
.me{transform:matrix(0.249839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249839,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);}
.m0{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);}
.m9{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);}
.m3{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);}
.m4{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);}
.m1{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);}
.m7{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.250013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250013,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.250020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250020,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.250078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250078,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.250080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250080,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-84.959966px;}
.v2{vertical-align:-82.799967px;}
.va{vertical-align:-79.199968px;}
.vb{vertical-align:-69.119972px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:11.519995px;}
.v8{vertical-align:27.359989px;}
.v6{vertical-align:43.199983px;}
.v4{vertical-align:52.559979px;}
.vc{vertical-align:53.999978px;}
.v3{vertical-align:56.159978px;}
.v5{vertical-align:59.759976px;}
.v9{vertical-align:62.639975px;}
.ls0{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.010553px;}
.lsd{letter-spacing:0.010620px;}
.ls5{letter-spacing:0.010641px;}
.ls6{letter-spacing:0.233307px;}
.ls7{letter-spacing:0.233395px;}
.ls4{letter-spacing:0.272340px;}
.ls2{letter-spacing:1.602645px;}
.ls3{letter-spacing:31.168308px;}
.lsa{letter-spacing:39.093164px;}
.ls8{letter-spacing:53.321979px;}
.lsc{letter-spacing:175.969363px;}
.lsb{letter-spacing:587.153765px;}
.ls1{letter-spacing:837.143665px;}
.lse{letter-spacing:1076.327569px;}
.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;}
}
.wsa{word-spacing:-24.409430px;}
.ws4{word-spacing:-19.996310px;}
.ws7{word-spacing:-15.245389px;}
.ws6{word-spacing:-15.011994px;}
.ws5{word-spacing:-14.939994px;}
.ws8{word-spacing:-12.990779px;}
.wsb{word-spacing:-12.059995px;}
.ws2{word-spacing:-9.997788px;}
.ws0{word-spacing:-9.719996px;}
.ws1{word-spacing:0.000000px;}
.ws9{word-spacing:133.774184px;}
.ws3{word-spacing:164.065612px;}
._11{margin-left:-7.199429px;}
._10{margin-left:-5.596747px;}
._14{margin-left:-4.226711px;}
._f{margin-left:-3.049604px;}
._1{margin-left:-1.044965px;}
._0{width:1.003888px;}
._d{width:2.011200px;}
._4{width:3.128369px;}
._e{width:4.149590px;}
._3{width:5.339175px;}
._2{width:6.683532px;}
._c{width:7.790801px;}
._16{width:8.841268px;}
._5{width:9.879364px;}
._7{width:11.881088px;}
._6{width:13.154838px;}
._18{width:14.485931px;}
._1a{width:16.058451px;}
._29{width:17.782530px;}
._9{width:19.879250px;}
._8{width:21.113057px;}
._19{width:22.837451px;}
._4d{width:25.055658px;}
._4c{width:28.783247px;}
._4b{width:30.420860px;}
._15{width:31.470999px;}
._b{width:33.898267px;}
._a{width:35.211459px;}
._22{width:145.488983px;}
._21{width:148.857069px;}
._20{width:150.085890px;}
._49{width:151.480375px;}
._2d{width:154.157698px;}
._48{width:156.773149px;}
._44{width:163.052237px;}
._45{width:164.096719px;}
._46{width:165.191203px;}
._47{width:166.978094px;}
._41{width:168.419022px;}
._43{width:175.226734px;}
._3f{width:176.343886px;}
._40{width:178.464927px;}
._13{width:179.985593px;}
._1f{width:182.034461px;}
._12{width:183.585156px;}
._37{width:185.791754px;}
._42{width:189.992047px;}
._2e{width:192.394483px;}
._32{width:198.385973px;}
._2a{width:203.948982px;}
._2c{width:219.050072px;}
._38{width:222.132678px;}
._33{width:233.659139px;}
._35{width:240.143818px;}
._2f{width:241.188624px;}
._36{width:242.491366px;}
._25{width:248.913038px;}
._31{width:254.018309px;}
._24{width:268.786893px;}
._1b{width:311.180693px;}
._1c{width:315.489089px;}
._1e{width:324.794031px;}
._30{width:328.983009px;}
._34{width:330.195465px;}
._28{width:336.644390px;}
._26{width:339.166062px;}
._1d{width:344.589157px;}
._2b{width:383.811548px;}
._17{width:410.549836px;}
._27{width:413.576646px;}
._3e{width:545.545942px;}
._3d{width:555.041465px;}
._3c{width:596.529291px;}
._3b{width:661.194993px;}
._23{width:682.265727px;}
._3a{width:700.493720px;}
._39{width:749.245630px;}
._4a{width:1086.413565px;}
.fc1{color:transparent;}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsd{font-size:30.239988px;}
.fs6{font-size:35.963266px;}
.fs9{font-size:35.999986px;}
.fs1{font-size:38.879984px;}
.fsa{font-size:41.759983px;}
.fsc{font-size:46.729421px;}
.fs4{font-size:48.239981px;}
.fs8{font-size:53.999978px;}
.fs0{font-size:59.759976px;}
.fsb{font-size:61.106976px;}
.fs5{font-size:61.141176px;}
.fs7{font-size:71.929171px;}
.fs3{font-size:71.999971px;}
.fs2{font-size:84.239966px;}
.y124{bottom:-0.000993px;}
.y0{bottom:0.000000px;}
.y15b{bottom:1.619020px;}
.ybb{bottom:2.879234px;}
.yb5{bottom:2.879237px;}
.y120{bottom:3.239032px;}
.y126{bottom:3.239056px;}
.y122{bottom:3.419032px;}
.yb7{bottom:3.959237px;}
.ybe{bottom:4.319174px;}
.y119{bottom:4.858953px;}
.y5{bottom:57.000277px;}
.y2{bottom:74.279970px;}
.y4{bottom:74.280270px;}
.y3{bottom:81.120268px;}
.y13d{bottom:114.059954px;}
.y35{bottom:114.239954px;}
.y117{bottom:118.740253px;}
.y7c{bottom:119.099952px;}
.y65{bottom:121.620251px;}
.y158{bottom:124.319950px;}
.ye4{bottom:130.619948px;}
.y13c{bottom:134.759946px;}
.y34{bottom:134.939946px;}
.yb2{bottom:138.720245px;}
.y64{bottom:138.900244px;}
.y7b{bottom:139.799944px;}
.y116{bottom:148.080241px;}
.y63{bottom:152.399939px;}
.y157{bottom:155.279938px;}
.y13b{bottom:155.459938px;}
.y33{bottom:155.639938px;}
.y102{bottom:156.359937px;}
.yb1{bottom:156.719937px;}
.y7a{bottom:160.499936px;}
.y5f{bottom:160.859936px;}
.ye3{bottom:161.039936px;}
.y114{bottom:166.259933px;}
.y13a{bottom:176.159930px;}
.y5e{bottom:176.339929px;}
.yb0{bottom:177.419929px;}
.y79{bottom:181.199928px;}
.y115{bottom:184.439926px;}
.y32{bottom:186.059926px;}
.y156{bottom:186.239926px;}
.y55{bottom:188.939924px;}
.ye2{bottom:192.179923px;}
.y101{bottom:193.619923px;}
.y139{bottom:196.859921px;}
.yaf{bottom:198.119921px;}
.y78{bottom:201.899919px;}
.y185{bottom:205.499918px;}
.y31{bottom:217.199913px;}
.y138{bottom:217.559913px;}
.y113{bottom:218.279913px;}
.yae{bottom:218.819912px;}
.y56{bottom:221.159912px;}
.y77{bottom:222.599911px;}
.y100{bottom:222.779911px;}
.ye1{bottom:223.139911px;}
.y112{bottom:233.939906px;}
.y184{bottom:235.919906px;}
.y30{bottom:237.719905px;}
.y137{bottom:238.259905px;}
.y155{bottom:238.619905px;}
.yad{bottom:239.519904px;}
.yfe{bottom:240.959904px;}
.y76{bottom:242.579903px;}
.ye0{bottom:244.379902px;}
.y57{bottom:253.559899px;}
.y2f{bottom:254.999898px;}
.y183{bottom:257.159897px;}
.y136{bottom:258.959896px;}
.yff{bottom:259.139896px;}
.y154{bottom:259.319896px;}
.y75{bottom:259.679896px;}
.yac{bottom:260.219896px;}
.ydf{bottom:265.079894px;}
.y2e{bottom:272.099891px;}
.y74{bottom:273.359891px;}
.y111{bottom:277.679889px;}
.y182{bottom:277.859889px;}
.y135{bottom:279.659888px;}
.y153{bottom:280.019888px;}
.y9a{bottom:280.379888px;}
.yab{bottom:280.919888px;}
.y110{bottom:281.639887px;}
.y10f{bottom:284.699886px;}
.yde{bottom:285.779886px;}
.y58{bottom:285.959886px;}
.y2d{bottom:289.379884px;}
.yfd{bottom:292.979883px;}
.y181{bottom:298.559881px;}
.y152{bottom:299.999880px;}
.y134{bottom:300.359880px;}
.yaa{bottom:301.619879px;}
.y10d{bottom:304.139878px;}
.ydd{bottom:306.299877px;}
.y2c{bottom:306.659877px;}
.yfc{bottom:308.639877px;}
.y99{bottom:311.339875px;}
.y151{bottom:313.499875px;}
.y59{bottom:318.359873px;}
.y180{bottom:319.259872px;}
.ya9{bottom:322.319871px;}
.y10e{bottom:323.579871px;}
.y2b{bottom:323.939870px;}
.ydc{bottom:328.259869px;}
.y98{bottom:332.579867px;}
.y133{bottom:337.619865px;}
.y17f{bottom:339.959864px;}
.y2a{bottom:341.219864px;}
.ya8{bottom:343.019863px;}
.ydb{bottom:350.399860px;}
.y132{bottom:351.119860px;}
.y5a{bottom:351.659859px;}
.yfb{bottom:352.559859px;}
.y97{bottom:353.279859px;}
.yfa{bottom:356.519857px;}
.y29{bottom:358.499857px;}
.yf9{bottom:359.399856px;}
.y17e{bottom:360.659856px;}
.y140{bottom:360.839856px;}
.ya7{bottom:362.999855px;}
.y10c{bottom:363.359855px;}
.yda{bottom:372.359851px;}
.y96{bottom:373.979850px;}
.y62{bottom:374.339850px;}
.y28{bottom:375.599850px;}
.ya6{bottom:376.499849px;}
.yf7{bottom:378.839848px;}
.y17d{bottom:381.359847px;}
.y10b{bottom:383.519847px;}
.y5b{bottom:384.059846px;}
.y27{bottom:392.879843px;}
.yd9{bottom:394.499842px;}
.y95{bottom:394.679842px;}
.yf8{bottom:398.279841px;}
.y61{bottom:398.459841px;}
.y17c{bottom:402.059839px;}
.yb6{bottom:404.400600px;}
.yb4{bottom:405.480600px;}
.y10a{bottom:407.459837px;}
.y26{bottom:410.159836px;}
.yba{bottom:410.880600px;}
.yb8{bottom:413.759834px;}
.yd8{bottom:415.199834px;}
.y94{bottom:415.379834px;}
.y5c{bottom:416.279833px;}
.yb9{bottom:417.719833px;}
.y17b{bottom:422.759831px;}
.yb3{bottom:423.479831px;}
.y60{bottom:423.659831px;}
.y25{bottom:427.439829px;}
.yf6{bottom:427.979829px;}
.y13f{bottom:428.339829px;}
.yd7{bottom:435.899826px;}
.y93{bottom:436.079826px;}
.y17a{bottom:443.459823px;}
.y24{bottom:444.719822px;}
.yf5{bottom:447.959821px;}
.y5d{bottom:448.679821px;}
.yd6{bottom:456.599817px;}
.y92{bottom:456.779817px;}
.y23{bottom:461.819815px;}
.yf4{bottom:465.059814px;}
.y54{bottom:470.819812px;}
.yd5{bottom:477.299809px;}
.y91{bottom:477.479809px;}
.yf3{bottom:478.739809px;}
.y22{bottom:479.099808px;}
.y13e{bottom:480.539808px;}
.y179{bottom:484.499806px;}
.y21{bottom:496.379801px;}
.y53{bottom:497.099801px;}
.yd4{bottom:497.999801px;}
.y90{bottom:498.179801px;}
.y131{bottom:503.759798px;}
.y178{bottom:505.559798px;}
.y20{bottom:513.659795px;}
.y52{bottom:517.799793px;}
.y8f{bottom:518.879792px;}
.y130{bottom:524.459790px;}
.y177{bottom:526.259789px;}
.yd3{bottom:528.419789px;}
.y1f{bottom:530.939788px;}
.y51{bottom:538.499785px;}
.y8e{bottom:539.579784px;}
.y12f{bottom:545.159782px;}
.y176{bottom:546.599781px;}
.y1e{bottom:548.219781px;}
.y50{bottom:559.199776px;}
.ybd{bottom:559.740600px;}
.y8d{bottom:560.279776px;}
.ybc{bottom:564.059774px;}
.y1d{bottom:565.319774px;}
.y12e{bottom:565.859774px;}
.y175{bottom:567.299773px;}
.y4f{bottom:579.539768px;}
.yd2{bottom:580.799768px;}
.y1c{bottom:582.599767px;}
.y12d{bottom:586.559765px;}
.y8c{bottom:590.879764px;}
.y4e{bottom:600.239760px;}
.yd1{bottom:601.499759px;}
.y12c{bottom:607.259757px;}
.y150{bottom:607.619757px;}
.y1b{bottom:610.499756px;}
.y174{bottom:619.319752px;}
.y8b{bottom:621.839751px;}
.yd0{bottom:622.199751px;}
.y73{bottom:622.739751px;}
.y12b{bottom:627.599749px;}
.y14f{bottom:628.319749px;}
.y4d{bottom:631.199748px;}
.y173{bottom:640.019744px;}
.y1a{bottom:641.459743px;}
.ycf{bottom:642.899743px;}
.y8a{bottom:643.079743px;}
.y72{bottom:643.439743px;}
.y12a{bottom:648.299741px;}
.y14e{bottom:649.019740px;}
.y172{bottom:660.719736px;}
.yce{bottom:662.699735px;}
.y89{bottom:663.059735px;}
.y71{bottom:664.139734px;}
.y129{bottom:669.359732px;}
.y14d{bottom:669.719732px;}
.y19{bottom:674.939730px;}
.ycd{bottom:676.379729px;}
.ya5{bottom:676.919729px;}
.y88{bottom:680.339728px;}
.y171{bottom:681.419727px;}
.y4c{bottom:683.399727px;}
.y70{bottom:684.839726px;}
.y128{bottom:689.339724px;}
.y14c{bottom:690.419724px;}
.y87{bottom:697.619721px;}
.y109{bottom:700.859720px;}
.ycb{bottom:702.119719px;}
.y127{bottom:702.839719px;}
.y4b{bottom:704.099718px;}
.y6f{bottom:705.539718px;}
.y18{bottom:706.439717px;}
.y14b{bottom:711.119716px;}
.y86{bottom:711.299715px;}
.ya4{bottom:718.319713px;}
.y108{bottom:721.559711px;}
.y170{bottom:722.819711px;}
.yca{bottom:723.179711px;}
.y4a{bottom:724.799710px;}
.y6e{bottom:726.239710px;}
.y14a{bottom:731.459707px;}
.y17{bottom:732.359707px;}
.ya2{bottom:738.839704px;}
.yc0{bottom:740.099704px;}
.y107{bottom:742.259703px;}
.y16f{bottom:743.519703px;}
.y49{bottom:745.499702px;}
.y6d{bottom:746.579701px;}
.ya3{bottom:747.119701px;}
.y16{bottom:758.279697px;}
.ya1{bottom:760.799696px;}
.y106{bottom:762.599695px;}
.y16e{bottom:764.219694px;}
.y48{bottom:766.199694px;}
.yc1{bottom:767.099693px;}
.y149{bottom:773.219691px;}
.ya0{bottom:782.759687px;}
.y105{bottom:783.299687px;}
.y15{bottom:784.019686px;}
.y16d{bottom:784.919686px;}
.y47{bottom:786.899685px;}
.y6c{bottom:788.339685px;}
.y14{bottom:791.579683px;}
.yc2{bottom:793.199683px;}
.y148{bottom:793.919682px;}
.yf2{bottom:804.719678px;}
.y9f{bottom:804.899678px;}
.y16c{bottom:805.619678px;}
.y46{bottom:807.599677px;}
.y6b{bottom:809.039676px;}
.y13{bottom:809.939676px;}
.ycc{bottom:814.619674px;}
.yc3{bottom:820.199672px;}
.y104{bottom:824.159670px;}
.yf1{bottom:825.419670px;}
.y9e{bottom:825.599670px;}
.y16b{bottom:826.319669px;}
.y45{bottom:828.299669px;}
.y6a{bottom:829.739668px;}
.y147{bottom:835.319666px;}
.y12{bottom:835.859666px;}
.y103{bottom:837.659665px;}
.y9d{bottom:845.579662px;}
.yf0{bottom:846.119662px;}
.yc4{bottom:846.299661px;}
.y16a{bottom:847.019661px;}
.y44{bottom:848.999660px;}
.y69{bottom:850.439660px;}
.y125{bottom:855.840600px;}
.y146{bottom:856.019658px;}
.y11{bottom:861.779655px;}
.y9c{bottom:862.859655px;}
.yef{bottom:866.819653px;}
.y169{bottom:867.719653px;}
.y43{bottom:869.699652px;}
.y68{bottom:871.139652px;}
.yc5{bottom:873.119651px;}
.y145{bottom:875.999650px;}
.y9b{bottom:876.359649px;}
.y10{bottom:887.519645px;}
.y168{bottom:888.419645px;}
.y42{bottom:890.399644px;}
.y67{bottom:891.119644px;}
.y144{bottom:893.279643px;}
.yc6{bottom:899.219640px;}
.y66{bottom:904.619638px;}
.yee{bottom:908.219637px;}
.y167{bottom:909.119636px;}
.y143{bottom:910.559636px;}
.y41{bottom:911.099636px;}
.yf{bottom:913.439635px;}
.y121{bottom:915.960600px;}
.y11f{bottom:916.140600px;}
.yc7{bottom:926.219630px;}
.y142{bottom:928.559629px;}
.yed{bottom:928.919628px;}
.y166{bottom:929.459628px;}
.y15c{bottom:930.719628px;}
.y40{bottom:931.799627px;}
.y84{bottom:932.879627px;}
.y11a{bottom:933.419627px;}
.ye{bottom:939.359624px;}
.y159{bottom:944.399622px;}
.yd{bottom:946.919621px;}
.y15a{bottom:948.720600px;}
.yec{bottom:949.259620px;}
.y165{bottom:950.159620px;}
.yc8{bottom:952.319619px;}
.y3f{bottom:952.499619px;}
.y83{bottom:960.779616px;}
.yc{bottom:967.439613px;}
.y11b{bottom:969.239612px;}
.yeb{bottom:969.959612px;}
.y3e{bottom:973.199611px;}
.yc9{bottom:979.139608px;}
.y164{bottom:981.119608px;}
.y123{bottom:981.660600px;}
.y141{bottom:986.159606px;}
.yea{bottom:990.299604px;}
.y3d{bottom:993.899602px;}
.ya{bottom:998.579601px;}
.y163{bottom:1001.639599px;}
.y11c{bottom:1005.239598px;}
.yb{bottom:1006.859597px;}
.y3c{bottom:1014.599594px;}
.y80{bottom:1015.499594px;}
.ybf{bottom:1017.119593px;}
.ye9{bottom:1019.459592px;}
.y162{bottom:1027.019589px;}
.y7e{bottom:1028.639589px;}
.y9{bottom:1029.539588px;}
.y7f{bottom:1029.899588px;}
.y82{bottom:1030.259588px;}
.y3b{bottom:1035.299586px;}
.y11d{bottom:1042.139583px;}
.y7d{bottom:1043.579583px;}
.y81{bottom:1044.479582px;}
.y161{bottom:1050.059580px;}
.ye8{bottom:1053.299579px;}
.y3a{bottom:1055.999578px;}
.y8{bottom:1063.199575px;}
.y160{bottom:1072.919571px;}
.y39{bottom:1076.699569px;}
.y11e{bottom:1078.139569px;}
.ye7{bottom:1088.399565px;}
.y15f{bottom:1095.959562px;}
.y38{bottom:1097.399561px;}
.y7{bottom:1099.379560px;}
.y118{bottom:1112.700600px;}
.ye6{bottom:1117.739553px;}
.y37{bottom:1118.099553px;}
.y15e{bottom:1118.819552px;}
.y6{bottom:1135.559546px;}
.ye5{bottom:1138.439545px;}
.y36{bottom:1138.799544px;}
.y15d{bottom:1141.679543px;}
.y85{bottom:1142.219843px;}
.y1{bottom:1196.399521px;}
.h29{height:6.660000px;}
.h1a{height:14.040000px;}
.h25{height:14.580000px;}
.h27{height:14.760000px;}
.h16{height:14.940000px;}
.h17{height:20.160000px;}
.h22{height:21.960000px;}
.h2a{height:31.539362px;}
.h26{height:34.625377px;}
.hb{height:37.508562px;}
.h18{height:37.546860px;}
.h2{height:38.158578px;}
.h6{height:40.550609px;}
.h19{height:43.554358px;}
.hf{height:47.344903px;}
.h1d{height:48.616856px;}
.h1c{height:48.737326px;}
.h23{height:50.062480px;}
.h5{height:50.312792px;}
.h24{height:51.679667px;}
.h15{height:56.320290px;}
.hd{height:58.621969px;}
.h1{height:58.651148px;}
.h13{height:59.759976px;}
.h7{height:62.327788px;}
.h1b{height:63.732666px;}
.ha{height:63.768335px;}
.h14{height:66.691380px;}
.he{height:70.628878px;}
.h9{height:70.664034px;}
.h8{height:72.562471px;}
.hc{height:75.019878px;}
.h4{height:75.093720px;}
.h28{height:76.500000px;}
.h1f{height:87.496840px;}
.h3{height:87.859652px;}
.h21{height:88.216840px;}
.h1e{height:91.816838px;}
.h11{height:99.904882px;}
.h10{height:103.504880px;}
.h2b{height:104.312771px;}
.h12{height:107.104879px;}
.h20{height:111.256830px;}
.h0{height:1263.000000px;}
.w9{width:0.180000px;}
.w2{width:4.680000px;}
.wf{width:5.580000px;}
.w6{width:6.120000px;}
.w4{width:8.100000px;}
.w8{width:15.120000px;}
.w7{width:21.240000px;}
.wa{width:22.500000px;}
.wc{width:46.440000px;}
.we{width:46.980000px;}
.wb{width:47.340000px;}
.wd{width:48.060000px;}
.w3{width:68.940000px;}
.w5{width:88.200000px;}
.w1{width:121.140000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x61{left:17.279941px;}
.x7{left:107.999578px;}
.x13{left:118.979952px;}
.x24{left:121.499951px;}
.x6d{left:123.659951px;}
.x14{left:127.079949px;}
.x60{left:130.320000px;}
.x37{left:134.999907px;}
.x48{left:139.321404px;}
.xe{left:143.099943px;}
.x49{left:147.599941px;}
.x2{left:151.379065px;}
.x55{left:159.119936px;}
.x22{left:161.999935px;}
.x46{left:163.259935px;}
.x3d{left:164.339934px;}
.x4a{left:166.319933px;}
.x43{left:172.259896px;}
.x1e{left:174.419981px;}
.x19{left:176.039930px;}
.x1d{left:178.019983px;}
.x4f{left:179.999928px;}
.x42{left:184.859926px;}
.x26{left:188.639928px;}
.x36{left:192.959373px;}
.x1c{left:194.219922px;}
.x44{left:197.459896px;}
.x25{left:200.699920px;}
.x6c{left:214.559914px;}
.x62{left:218.700000px;}
.x1f{left:230.219923px;}
.x5{left:235.980130px;}
.x16{left:244.799428px;}
.x11{left:246.059972px;}
.x34{left:249.299258px;}
.x8{left:253.979640px;}
.x56{left:262.800000px;}
.xa{left:269.099561px;}
.x6a{left:275.940000px;}
.x52{left:279.719888px;}
.x6b{left:281.519887px;}
.x3{left:284.399886px;}
.x4c{left:289.079884px;}
.x4{left:292.499883px;}
.x33{left:296.999289px;}
.x4b{left:307.080030px;}
.x31{left:311.579816px;}
.x68{left:319.139872px;}
.x1b{left:321.839871px;}
.x65{left:327.239869px;}
.x30{left:334.439845px;}
.x6{left:338.579865px;}
.x4e{left:341.999863px;}
.x40{left:345.779862px;}
.x12{left:355.500190px;}
.x57{left:360.900000px;}
.xf{left:362.699964px;}
.x63{left:366.300000px;}
.x66{left:373.319851px;}
.x1a{left:374.399905px;}
.x58{left:376.020000px;}
.x17{left:381.239548px;}
.x38{left:383.939846px;}
.x10{left:386.099978px;}
.x39{left:392.939843px;}
.x18{left:398.519841px;}
.x15{left:402.659879px;}
.x5f{left:405.899838px;}
.x53{left:428.579829px;}
.x45{left:441.900551px;}
.x9{left:446.399821px;}
.x59{left:451.800000px;}
.xb{left:454.319818px;}
.x20{left:455.939889px;}
.xc{left:460.979816px;}
.x2f{left:467.819716px;}
.x5a{left:473.040000px;}
.x50{left:476.279884px;}
.x2e{left:488.879743px;}
.x27{left:505.799867px;}
.x28{left:512.639871px;}
.x3a{left:514.799794px;}
.x3b{left:523.439791px;}
.x3e{left:534.419786px;}
.x4d{left:555.299778px;}
.x5b{left:560.520000px;}
.x3f{left:586.619765px;}
.x32{left:596.339761px;}
.x54{left:605.879758px;}
.xd{left:617.039753px;}
.x2d{left:623.879758px;}
.x2c{left:635.039750px;}
.x5c{left:640.980000px;}
.x51{left:650.519927px;}
.x2a{left:658.979743px;}
.x2b{left:661.319735px;}
.x29{left:667.619733px;}
.x6e{left:673.379731px;}
.x69{left:703.259719px;}
.x35{left:707.219717px;}
.x41{left:708.299717px;}
.x23{left:731.699007px;}
.x21{left:734.579706px;}
.x5d{left:739.080000px;}
.x5e{left:754.200000px;}
.x47{left:761.759695px;}
.x3c{left:765.001089px;}
.x67{left:770.039692px;}
.x64{left:772.739691px;}
.x1{left:777.419689px;}
@media print{
.v1{vertical-align:-75.519970pt;}
.v2{vertical-align:-73.599971pt;}
.va{vertical-align:-70.399972pt;}
.vb{vertical-align:-61.439975pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:10.239996pt;}
.v8{vertical-align:24.319990pt;}
.v6{vertical-align:38.399985pt;}
.v4{vertical-align:46.719981pt;}
.vc{vertical-align:47.999981pt;}
.v3{vertical-align:49.919980pt;}
.v5{vertical-align:53.119979pt;}
.v9{vertical-align:55.679978pt;}
.ls0{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.009381pt;}
.lsd{letter-spacing:0.009440pt;}
.ls5{letter-spacing:0.009459pt;}
.ls6{letter-spacing:0.207384pt;}
.ls7{letter-spacing:0.207463pt;}
.ls4{letter-spacing:0.242080pt;}
.ls2{letter-spacing:1.424574pt;}
.ls3{letter-spacing:27.705162pt;}
.lsa{letter-spacing:34.749479pt;}
.ls8{letter-spacing:47.397314pt;}
.lsc{letter-spacing:156.417211pt;}
.lsb{letter-spacing:521.914458pt;}
.ls1{letter-spacing:744.127702pt;}
.lse{letter-spacing:956.735617pt;}
.wsa{word-spacing:-21.697271pt;}
.ws4{word-spacing:-17.774497pt;}
.ws7{word-spacing:-13.551457pt;}
.ws6{word-spacing:-13.343995pt;}
.ws5{word-spacing:-13.279995pt;}
.ws8{word-spacing:-11.547359pt;}
.wsb{word-spacing:-10.719996pt;}
.ws2{word-spacing:-8.886923pt;}
.ws0{word-spacing:-8.639997pt;}
.ws1{word-spacing:0.000000pt;}
.ws9{word-spacing:118.910385pt;}
.ws3{word-spacing:145.836099pt;}
._11{margin-left:-6.399492pt;}
._10{margin-left:-4.974886pt;}
._14{margin-left:-3.757076pt;}
._f{margin-left:-2.710759pt;}
._1{margin-left:-0.928857pt;}
._0{width:0.892345pt;}
._d{width:1.787733pt;}
._4{width:2.780773pt;}
._e{width:3.688525pt;}
._3{width:4.745933pt;}
._2{width:5.940918pt;}
._c{width:6.925156pt;}
._16{width:7.858905pt;}
._5{width:8.781657pt;}
._7{width:10.560967pt;}
._6{width:11.693189pt;}
._18{width:12.876383pt;}
._1a{width:14.274179pt;}
._29{width:15.806693pt;}
._9{width:17.670444pt;}
._8{width:18.767162pt;}
._19{width:20.299957pt;}
._4d{width:22.271696pt;}
._4c{width:25.585109pt;}
._4b{width:27.040764pt;}
._15{width:27.974221pt;}
._b{width:30.131793pt;}
._a{width:31.299075pt;}
._22{width:129.323541pt;}
._21{width:132.317394pt;}
._20{width:133.409680pt;}
._49{width:134.649222pt;}
._2d{width:137.029065pt;}
._48{width:139.353910pt;}
._44{width:144.935322pt;}
._45{width:145.863751pt;}
._46{width:146.836625pt;}
._47{width:148.424972pt;}
._41{width:149.705797pt;}
._43{width:155.757097pt;}
._3f{width:156.750121pt;}
._40{width:158.635491pt;}
._13{width:159.987194pt;}
._1f{width:161.808410pt;}
._12{width:163.186805pt;}
._37{width:165.148226pt;}
._42{width:168.881819pt;}
._2e{width:171.017318pt;}
._32{width:176.343087pt;}
._2a{width:181.287984pt;}
._2c{width:194.711175pt;}
._38{width:197.451269pt;}
._33{width:207.697012pt;}
._35{width:213.461172pt;}
._2f{width:214.389888pt;}
._36{width:215.547881pt;}
._25{width:221.256034pt;}
._31{width:225.794053pt;}
._24{width:238.921682pt;}
._1b{width:276.605061pt;}
._1c{width:280.434745pt;}
._1e{width:288.705806pt;}
._30{width:292.429341pt;}
._34{width:293.507080pt;}
._28{width:299.239458pt;}
._26{width:301.480944pt;}
._1d{width:306.301473pt;}
._2b{width:341.165820pt;}
._17{width:364.933187pt;}
._27{width:367.623685pt;}
._3e{width:484.929726pt;}
._3d{width:493.370191pt;}
._3c{width:530.248258pt;}
._3b{width:587.728882pt;}
._23{width:606.458424pt;}
._3a{width:622.661084pt;}
._39{width:665.996116pt;}
._4a{width:965.700947pt;}
.fsd{font-size:26.879989pt;}
.fs6{font-size:31.967347pt;}
.fs9{font-size:31.999987pt;}
.fs1{font-size:34.559986pt;}
.fsa{font-size:37.119985pt;}
.fsc{font-size:41.537263pt;}
.fs4{font-size:42.879983pt;}
.fs8{font-size:47.999981pt;}
.fs0{font-size:53.119979pt;}
.fsb{font-size:54.317312pt;}
.fs5{font-size:54.347712pt;}
.fs7{font-size:63.937041pt;}
.fs3{font-size:63.999974pt;}
.fs2{font-size:74.879970pt;}
.y124{bottom:-0.000882pt;}
.y0{bottom:0.000000pt;}
.y15b{bottom:1.439129pt;}
.ybb{bottom:2.559320pt;}
.yb5{bottom:2.559321pt;}
.y120{bottom:2.879140pt;}
.y126{bottom:2.879161pt;}
.y122{bottom:3.039140pt;}
.yb7{bottom:3.519321pt;}
.ybe{bottom:3.839266pt;}
.y119{bottom:4.319069pt;}
.y5{bottom:50.666913pt;}
.y2{bottom:66.026640pt;}
.y4{bottom:66.026907pt;}
.y3{bottom:72.106904pt;}
.y13d{bottom:101.386626pt;}
.y35{bottom:101.546626pt;}
.y117{bottom:105.546891pt;}
.y7c{bottom:105.866624pt;}
.y65{bottom:108.106890pt;}
.y158{bottom:110.506622pt;}
.ye4{bottom:116.106620pt;}
.y13c{bottom:119.786619pt;}
.y34{bottom:119.946619pt;}
.yb2{bottom:123.306884pt;}
.y64{bottom:123.466884pt;}
.y7b{bottom:124.266617pt;}
.y116{bottom:131.626881pt;}
.y63{bottom:135.466612pt;}
.y157{bottom:138.026611pt;}
.y13b{bottom:138.186611pt;}
.y33{bottom:138.346611pt;}
.y102{bottom:138.986611pt;}
.yb1{bottom:139.306611pt;}
.y7a{bottom:142.666610pt;}
.y5f{bottom:142.986609pt;}
.ye3{bottom:143.146609pt;}
.y114{bottom:147.786608pt;}
.y13a{bottom:156.586604pt;}
.y5e{bottom:156.746604pt;}
.yb0{bottom:157.706604pt;}
.y79{bottom:161.066602pt;}
.y115{bottom:163.946601pt;}
.y32{bottom:165.386601pt;}
.y156{bottom:165.546600pt;}
.y55{bottom:167.946599pt;}
.ye2{bottom:170.826598pt;}
.y101{bottom:172.106598pt;}
.y139{bottom:174.986597pt;}
.yaf{bottom:176.106596pt;}
.y78{bottom:179.466595pt;}
.y185{bottom:182.666594pt;}
.y31{bottom:193.066589pt;}
.y138{bottom:193.386589pt;}
.y113{bottom:194.026589pt;}
.yae{bottom:194.506589pt;}
.y56{bottom:196.586588pt;}
.y77{bottom:197.866588pt;}
.y100{bottom:198.026587pt;}
.ye1{bottom:198.346587pt;}
.y112{bottom:207.946583pt;}
.y184{bottom:209.706583pt;}
.y30{bottom:211.306582pt;}
.y137{bottom:211.786582pt;}
.y155{bottom:212.106582pt;}
.yad{bottom:212.906582pt;}
.yfe{bottom:214.186581pt;}
.y76{bottom:215.626580pt;}
.ye0{bottom:217.226580pt;}
.y57{bottom:225.386577pt;}
.y2f{bottom:226.666576pt;}
.y183{bottom:228.586575pt;}
.y136{bottom:230.186575pt;}
.yff{bottom:230.346575pt;}
.y154{bottom:230.506574pt;}
.y75{bottom:230.826574pt;}
.yac{bottom:231.306574pt;}
.ydf{bottom:235.626572pt;}
.y2e{bottom:241.866570pt;}
.y74{bottom:242.986569pt;}
.y111{bottom:246.826568pt;}
.y182{bottom:246.986568pt;}
.y135{bottom:248.586567pt;}
.y153{bottom:248.906567pt;}
.y9a{bottom:249.226567pt;}
.yab{bottom:249.706567pt;}
.y110{bottom:250.346567pt;}
.y10f{bottom:253.066565pt;}
.yde{bottom:254.026565pt;}
.y58{bottom:254.186565pt;}
.y2d{bottom:257.226564pt;}
.yfd{bottom:260.426562pt;}
.y181{bottom:265.386561pt;}
.y152{bottom:266.666560pt;}
.y134{bottom:266.986560pt;}
.yaa{bottom:268.106559pt;}
.y10d{bottom:270.346559pt;}
.ydd{bottom:272.266558pt;}
.y2c{bottom:272.586558pt;}
.yfc{bottom:274.346557pt;}
.y99{bottom:276.746556pt;}
.y151{bottom:278.666555pt;}
.y59{bottom:282.986553pt;}
.y180{bottom:283.786553pt;}
.ya9{bottom:286.506552pt;}
.y10e{bottom:287.626552pt;}
.y2b{bottom:287.946551pt;}
.ydc{bottom:291.786550pt;}
.y98{bottom:295.626548pt;}
.y133{bottom:300.106547pt;}
.y17f{bottom:302.186546pt;}
.y2a{bottom:303.306545pt;}
.ya8{bottom:304.906545pt;}
.ydb{bottom:311.466542pt;}
.y132{bottom:312.106542pt;}
.y5a{bottom:312.586542pt;}
.yfb{bottom:313.386541pt;}
.y97{bottom:314.026541pt;}
.yfa{bottom:316.906540pt;}
.y29{bottom:318.666539pt;}
.yf9{bottom:319.466539pt;}
.y17e{bottom:320.586538pt;}
.y140{bottom:320.746538pt;}
.ya7{bottom:322.666538pt;}
.y10c{bottom:322.986537pt;}
.yda{bottom:330.986534pt;}
.y96{bottom:332.426534pt;}
.y62{bottom:332.746534pt;}
.y28{bottom:333.866533pt;}
.ya6{bottom:334.666533pt;}
.yf7{bottom:336.746532pt;}
.y17d{bottom:338.986531pt;}
.y10b{bottom:340.906530pt;}
.y5b{bottom:341.386530pt;}
.y27{bottom:349.226527pt;}
.yd9{bottom:350.666526pt;}
.y95{bottom:350.826526pt;}
.yf8{bottom:354.026525pt;}
.y61{bottom:354.186525pt;}
.y17c{bottom:357.386524pt;}
.yb6{bottom:359.467200pt;}
.yb4{bottom:360.427200pt;}
.y10a{bottom:362.186522pt;}
.y26{bottom:364.586521pt;}
.yba{bottom:365.227200pt;}
.yb8{bottom:367.786520pt;}
.yd8{bottom:369.066519pt;}
.y94{bottom:369.226519pt;}
.y5c{bottom:370.026519pt;}
.yb9{bottom:371.306518pt;}
.y17b{bottom:375.786516pt;}
.yb3{bottom:376.426516pt;}
.y60{bottom:376.586516pt;}
.y25{bottom:379.946515pt;}
.yf6{bottom:380.426514pt;}
.y13f{bottom:380.746514pt;}
.yd7{bottom:387.466512pt;}
.y93{bottom:387.626512pt;}
.y17a{bottom:394.186509pt;}
.y24{bottom:395.306509pt;}
.yf5{bottom:398.186507pt;}
.y5d{bottom:398.826507pt;}
.yd6{bottom:405.866504pt;}
.y92{bottom:406.026504pt;}
.y23{bottom:410.506502pt;}
.yf4{bottom:413.386501pt;}
.y54{bottom:418.506499pt;}
.yd5{bottom:424.266497pt;}
.y91{bottom:424.426497pt;}
.yf3{bottom:425.546496pt;}
.y22{bottom:425.866496pt;}
.y13e{bottom:427.146496pt;}
.y179{bottom:430.666494pt;}
.y21{bottom:441.226490pt;}
.y53{bottom:441.866490pt;}
.yd4{bottom:442.666490pt;}
.y90{bottom:442.826490pt;}
.y131{bottom:447.786488pt;}
.y178{bottom:449.386487pt;}
.y20{bottom:456.586484pt;}
.y52{bottom:460.266483pt;}
.y8f{bottom:461.226482pt;}
.y130{bottom:466.186480pt;}
.y177{bottom:467.786480pt;}
.yd3{bottom:469.706479pt;}
.y1f{bottom:471.946478pt;}
.y51{bottom:478.666475pt;}
.y8e{bottom:479.626475pt;}
.y12f{bottom:484.586473pt;}
.y176{bottom:485.866472pt;}
.y1e{bottom:487.306472pt;}
.y50{bottom:497.066468pt;}
.ybd{bottom:497.547200pt;}
.y8d{bottom:498.026467pt;}
.ybc{bottom:501.386466pt;}
.y1d{bottom:502.506466pt;}
.y12e{bottom:502.986465pt;}
.y175{bottom:504.266465pt;}
.y4f{bottom:515.146461pt;}
.yd2{bottom:516.266460pt;}
.y1c{bottom:517.866460pt;}
.y12d{bottom:521.386458pt;}
.y8c{bottom:525.226457pt;}
.y4e{bottom:533.546453pt;}
.yd1{bottom:534.666453pt;}
.y12c{bottom:539.786451pt;}
.y150{bottom:540.106451pt;}
.y1b{bottom:542.666450pt;}
.y174{bottom:550.506446pt;}
.y8b{bottom:552.746446pt;}
.yd0{bottom:553.066445pt;}
.y73{bottom:553.546445pt;}
.y12b{bottom:557.866444pt;}
.y14f{bottom:558.506443pt;}
.y4d{bottom:561.066442pt;}
.y173{bottom:568.906439pt;}
.y1a{bottom:570.186439pt;}
.ycf{bottom:571.466438pt;}
.y8a{bottom:571.626438pt;}
.y72{bottom:571.946438pt;}
.y12a{bottom:576.266436pt;}
.y14e{bottom:576.906436pt;}
.y172{bottom:587.306432pt;}
.yce{bottom:589.066431pt;}
.y89{bottom:589.386431pt;}
.y71{bottom:590.346431pt;}
.y129{bottom:594.986429pt;}
.y14d{bottom:595.306429pt;}
.y19{bottom:599.946427pt;}
.ycd{bottom:601.226426pt;}
.ya5{bottom:601.706426pt;}
.y88{bottom:604.746425pt;}
.y171{bottom:605.706424pt;}
.y4c{bottom:607.466424pt;}
.y70{bottom:608.746423pt;}
.y128{bottom:612.746422pt;}
.y14c{bottom:613.706421pt;}
.y87{bottom:620.106419pt;}
.y109{bottom:622.986417pt;}
.ycb{bottom:624.106417pt;}
.y127{bottom:624.746417pt;}
.y4b{bottom:625.866416pt;}
.y6f{bottom:627.146416pt;}
.y18{bottom:627.946415pt;}
.y14b{bottom:632.106414pt;}
.y86{bottom:632.266414pt;}
.ya4{bottom:638.506411pt;}
.y108{bottom:641.386410pt;}
.y170{bottom:642.506410pt;}
.yca{bottom:642.826410pt;}
.y4a{bottom:644.266409pt;}
.y6e{bottom:645.546408pt;}
.y14a{bottom:650.186407pt;}
.y17{bottom:650.986406pt;}
.ya2{bottom:656.746404pt;}
.yc0{bottom:657.866404pt;}
.y107{bottom:659.786403pt;}
.y16f{bottom:660.906402pt;}
.y49{bottom:662.666402pt;}
.y6d{bottom:663.626401pt;}
.ya3{bottom:664.106401pt;}
.y16{bottom:674.026397pt;}
.ya1{bottom:676.266396pt;}
.y106{bottom:677.866396pt;}
.y16e{bottom:679.306395pt;}
.y48{bottom:681.066394pt;}
.yc1{bottom:681.866394pt;}
.y149{bottom:687.306392pt;}
.ya0{bottom:695.786388pt;}
.y105{bottom:696.266388pt;}
.y15{bottom:696.906388pt;}
.y16d{bottom:697.706388pt;}
.y47{bottom:699.466387pt;}
.y6c{bottom:700.746386pt;}
.y14{bottom:703.626385pt;}
.yc2{bottom:705.066385pt;}
.y148{bottom:705.706384pt;}
.yf2{bottom:715.306381pt;}
.y9f{bottom:715.466380pt;}
.y16c{bottom:716.106380pt;}
.y46{bottom:717.866380pt;}
.y6b{bottom:719.146379pt;}
.y13{bottom:719.946379pt;}
.ycc{bottom:724.106377pt;}
.yc3{bottom:729.066375pt;}
.y104{bottom:732.586374pt;}
.yf1{bottom:733.706373pt;}
.y9e{bottom:733.866373pt;}
.y16b{bottom:734.506373pt;}
.y45{bottom:736.266372pt;}
.y6a{bottom:737.546372pt;}
.y147{bottom:742.506370pt;}
.y12{bottom:742.986369pt;}
.y103{bottom:744.586369pt;}
.y9d{bottom:751.626366pt;}
.yf0{bottom:752.106366pt;}
.yc4{bottom:752.266366pt;}
.y16a{bottom:752.906366pt;}
.y44{bottom:754.666365pt;}
.y69{bottom:755.946364pt;}
.y125{bottom:760.747200pt;}
.y146{bottom:760.906362pt;}
.y11{bottom:766.026360pt;}
.y9c{bottom:766.986360pt;}
.yef{bottom:770.506358pt;}
.y169{bottom:771.306358pt;}
.y43{bottom:773.066357pt;}
.y68{bottom:774.346357pt;}
.yc5{bottom:776.106356pt;}
.y145{bottom:778.666355pt;}
.y9b{bottom:778.986355pt;}
.y10{bottom:788.906351pt;}
.y168{bottom:789.706351pt;}
.y42{bottom:791.466350pt;}
.y67{bottom:792.106350pt;}
.y144{bottom:794.026349pt;}
.yc6{bottom:799.306347pt;}
.y66{bottom:804.106345pt;}
.yee{bottom:807.306344pt;}
.y167{bottom:808.106343pt;}
.y143{bottom:809.386343pt;}
.y41{bottom:809.866343pt;}
.yf{bottom:811.946342pt;}
.y121{bottom:814.187200pt;}
.y11f{bottom:814.347200pt;}
.yc7{bottom:823.306337pt;}
.y142{bottom:825.386337pt;}
.yed{bottom:825.706336pt;}
.y166{bottom:826.186336pt;}
.y15c{bottom:827.306336pt;}
.y40{bottom:828.266335pt;}
.y84{bottom:829.226335pt;}
.y11a{bottom:829.706335pt;}
.ye{bottom:834.986333pt;}
.y159{bottom:839.466331pt;}
.yd{bottom:841.706330pt;}
.y15a{bottom:843.307200pt;}
.yec{bottom:843.786329pt;}
.y165{bottom:844.586329pt;}
.yc8{bottom:846.506328pt;}
.y3f{bottom:846.666328pt;}
.y83{bottom:854.026325pt;}
.yc{bottom:859.946323pt;}
.y11b{bottom:861.546322pt;}
.yeb{bottom:862.186322pt;}
.y3e{bottom:865.066321pt;}
.yc9{bottom:870.346319pt;}
.y164{bottom:872.106318pt;}
.y123{bottom:872.587200pt;}
.y141{bottom:876.586316pt;}
.yea{bottom:880.266315pt;}
.y3d{bottom:883.466313pt;}
.ya{bottom:887.626312pt;}
.y163{bottom:890.346311pt;}
.y11c{bottom:893.546309pt;}
.yb{bottom:894.986309pt;}
.y3c{bottom:901.866306pt;}
.y80{bottom:902.666306pt;}
.ybf{bottom:904.106305pt;}
.ye9{bottom:906.186304pt;}
.y162{bottom:912.906302pt;}
.y7e{bottom:914.346301pt;}
.y9{bottom:915.146301pt;}
.y7f{bottom:915.466300pt;}
.y82{bottom:915.786300pt;}
.y3b{bottom:920.266299pt;}
.y11d{bottom:926.346296pt;}
.y7d{bottom:927.626296pt;}
.y81{bottom:928.426295pt;}
.y161{bottom:933.386293pt;}
.ye8{bottom:936.266292pt;}
.y3a{bottom:938.666291pt;}
.y8{bottom:945.066289pt;}
.y160{bottom:953.706285pt;}
.y39{bottom:957.066284pt;}
.y11e{bottom:958.346283pt;}
.ye7{bottom:967.466280pt;}
.y15f{bottom:974.186277pt;}
.y38{bottom:975.466276pt;}
.y7{bottom:977.226276pt;}
.y118{bottom:989.067200pt;}
.ye6{bottom:993.546269pt;}
.y37{bottom:993.866269pt;}
.y15e{bottom:994.506269pt;}
.y6{bottom:1009.386263pt;}
.ye5{bottom:1011.946262pt;}
.y36{bottom:1012.266262pt;}
.y15d{bottom:1014.826261pt;}
.y85{bottom:1015.306527pt;}
.y1{bottom:1063.466241pt;}
.h29{height:5.920000pt;}
.h1a{height:12.480000pt;}
.h25{height:12.960000pt;}
.h27{height:13.120000pt;}
.h16{height:13.280000pt;}
.h17{height:17.920000pt;}
.h22{height:19.520000pt;}
.h2a{height:28.034989pt;}
.h26{height:30.778113pt;}
.hb{height:33.340944pt;}
.h18{height:33.374987pt;}
.h2{height:33.918736pt;}
.h6{height:36.044986pt;}
.h19{height:38.714985pt;}
.hf{height:42.084358pt;}
.h1d{height:43.214983pt;}
.h1c{height:43.322068pt;}
.h23{height:44.499982pt;}
.h5{height:44.722482pt;}
.h24{height:45.937482pt;}
.h15{height:50.062480pt;}
.hd{height:52.108417pt;}
.h1{height:52.134354pt;}
.h13{height:53.119979pt;}
.h7{height:55.402478pt;}
.h1b{height:56.651259pt;}
.ha{height:56.682965pt;}
.h14{height:59.281226pt;}
.he{height:62.781225pt;}
.h9{height:62.812475pt;}
.h8{height:64.499974pt;}
.hc{height:66.684336pt;}
.h4{height:66.749973pt;}
.h28{height:68.000000pt;}
.h1f{height:77.774969pt;}
.h3{height:78.097469pt;}
.h21{height:78.414969pt;}
.h1e{height:81.614967pt;}
.h11{height:88.804339pt;}
.h10{height:92.004338pt;}
.h2b{height:92.722463pt;}
.h12{height:95.204337pt;}
.h20{height:98.894960pt;}
.h0{height:1122.666667pt;}
.w9{width:0.160000pt;}
.w2{width:4.160000pt;}
.wf{width:4.960000pt;}
.w6{width:5.440000pt;}
.w4{width:7.200000pt;}
.w8{width:13.440000pt;}
.w7{width:18.880000pt;}
.wa{width:20.000000pt;}
.wc{width:41.280000pt;}
.we{width:41.760000pt;}
.wb{width:42.080000pt;}
.wd{width:42.720000pt;}
.w3{width:61.280000pt;}
.w5{width:78.400000pt;}
.w1{width:107.680000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x61{left:15.359948pt;}
.x7{left:95.999624pt;}
.x13{left:105.759958pt;}
.x24{left:107.999957pt;}
.x6d{left:109.919956pt;}
.x14{left:112.959955pt;}
.x60{left:115.840000pt;}
.x37{left:119.999917pt;}
.x48{left:123.841248pt;}
.xe{left:127.199949pt;}
.x49{left:131.199948pt;}
.x2{left:134.559169pt;}
.x55{left:141.439943pt;}
.x22{left:143.999942pt;}
.x46{left:145.119942pt;}
.x3d{left:146.079942pt;}
.x4a{left:147.839941pt;}
.x43{left:153.119908pt;}
.x1e{left:155.039983pt;}
.x19{left:156.479937pt;}
.x1d{left:158.239985pt;}
.x4f{left:159.999936pt;}
.x42{left:164.319934pt;}
.x26{left:167.679936pt;}
.x36{left:171.519442pt;}
.x1c{left:172.639931pt;}
.x44{left:175.519907pt;}
.x25{left:178.399929pt;}
.x6c{left:190.719924pt;}
.x62{left:194.400000pt;}
.x1f{left:204.639931pt;}
.x5{left:209.760116pt;}
.x16{left:217.599491pt;}
.x11{left:218.719975pt;}
.x34{left:221.599341pt;}
.x8{left:225.759680pt;}
.x56{left:233.600000pt;}
.xa{left:239.199610pt;}
.x6a{left:245.280000pt;}
.x52{left:248.639901pt;}
.x6b{left:250.239900pt;}
.x3{left:252.799899pt;}
.x4c{left:256.959897pt;}
.x4{left:259.999896pt;}
.x33{left:263.999368pt;}
.x4b{left:272.960026pt;}
.x31{left:276.959837pt;}
.x68{left:283.679887pt;}
.x1b{left:286.079886pt;}
.x65{left:290.879884pt;}
.x30{left:297.279862pt;}
.x6{left:300.959880pt;}
.x4e{left:303.999878pt;}
.x40{left:307.359877pt;}
.x12{left:316.000169pt;}
.x57{left:320.800000pt;}
.xf{left:322.399968pt;}
.x63{left:325.600000pt;}
.x66{left:331.839867pt;}
.x1a{left:332.799916pt;}
.x58{left:334.240000pt;}
.x17{left:338.879598pt;}
.x38{left:341.279863pt;}
.x10{left:343.199981pt;}
.x39{left:349.279860pt;}
.x18{left:354.239858pt;}
.x15{left:357.919892pt;}
.x5f{left:360.799856pt;}
.x53{left:380.959848pt;}
.x45{left:392.800490pt;}
.x9{left:396.799841pt;}
.x59{left:401.600000pt;}
.xb{left:403.839838pt;}
.x20{left:405.279901pt;}
.xc{left:409.759836pt;}
.x2f{left:415.839747pt;}
.x5a{left:420.480000pt;}
.x50{left:423.359897pt;}
.x2e{left:434.559772pt;}
.x27{left:449.599881pt;}
.x28{left:455.679885pt;}
.x3a{left:457.599817pt;}
.x3b{left:465.279814pt;}
.x3e{left:475.039810pt;}
.x4d{left:493.599803pt;}
.x5b{left:498.240000pt;}
.x3f{left:521.439791pt;}
.x32{left:530.079788pt;}
.x54{left:538.559785pt;}
.xd{left:548.479781pt;}
.x2d{left:554.559785pt;}
.x2c{left:564.479778pt;}
.x5c{left:569.760000pt;}
.x51{left:578.239935pt;}
.x2a{left:585.759771pt;}
.x2b{left:587.839765pt;}
.x29{left:593.439763pt;}
.x6e{left:598.559761pt;}
.x69{left:625.119750pt;}
.x35{left:628.639749pt;}
.x41{left:629.599748pt;}
.x23{left:650.399118pt;}
.x21{left:652.959739pt;}
.x5d{left:656.960000pt;}
.x5e{left:670.400000pt;}
.x47{left:677.119729pt;}
.x3c{left:680.000968pt;}
.x67{left:684.479726pt;}
.x64{left:686.879725pt;}
.x1{left:691.039724pt;}
}




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