
    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_dc42cc0eb5e373caba00f6a1.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.893066;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_678af5dace7b0fc7f6101c3c.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.050293;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_73b097b4943a7b66b1e32e93.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.072754;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_fdc7f554867b8fbf6ba87b71.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.910156;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_117a8bcafc79aa5ee6973e2a.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.072754;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_35a6aca90b34a9f50de6bd36.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.911133;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_35a6aca90b34a9f50de6bd36.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.911133;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_b1e271467fcece52d84e4fa9.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.072754;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_b1e271467fcece52d84e4fa9.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.072754;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_2b6c2a71c985c2a72d492942.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.893066;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_9d1a63088961d520f3e51552.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.969000;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:ffc;src:url('chunks/assets/font_82cdcd69154c84c1b421794e.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.687500;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:30.000000px;}
.v2{vertical-align:60.000000px;}
.lsc{letter-spacing:-2.862000px;}
.ls5{letter-spacing:-2.592000px;}
.lsa{letter-spacing:-2.430000px;}
.ls10{letter-spacing:-2.106000px;}
.ls7{letter-spacing:-1.998000px;}
.ls6{letter-spacing:-1.566000px;}
.lsf{letter-spacing:-1.404000px;}
.lsd{letter-spacing:-1.134000px;}
.ls3{letter-spacing:-0.810000px;}
.ls8{letter-spacing:-0.702000px;}
.ls4{letter-spacing:-0.648000px;}
.ls9{letter-spacing:-0.594000px;}
.ls1{letter-spacing:-0.144000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.000600px;}
.lsb{letter-spacing:0.810000px;}
.lse{letter-spacing:1.296000px;}
.ls11{letter-spacing:2.520000px;}
.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;}
}
.ws2{word-spacing:-15.000000px;}
.ws0{word-spacing:-13.500000px;}
.ws6{word-spacing:-12.852000px;}
.ws8{word-spacing:-12.798000px;}
.ws5{word-spacing:-12.690000px;}
.wsa{word-spacing:-12.366000px;}
.wsb{word-spacing:-12.096000px;}
.ws18{word-spacing:-12.000000px;}
.ws1{word-spacing:-11.856000px;}
.wsc{word-spacing:-11.394000px;}
.ws7{word-spacing:-10.908000px;}
.ws9{word-spacing:-10.638000px;}
.ws17{word-spacing:-2.520000px;}
.ws16{word-spacing:-1.296000px;}
.ws15{word-spacing:-0.810000px;}
.ws3{word-spacing:0.000000px;}
.ws12{word-spacing:0.594000px;}
.ws11{word-spacing:0.648000px;}
.ws13{word-spacing:0.702000px;}
.wsf{word-spacing:1.566000px;}
.ws10{word-spacing:1.998000px;}
.ws14{word-spacing:2.430000px;}
.ws19{word-spacing:8.712000px;}
.wse{word-spacing:94.946400px;}
.wsd{word-spacing:278.851200px;}
.ws4{word-spacing:544.446000px;}
._3{margin-left:-2187.444000px;}
._70{margin-left:-10.929600px;}
._2b{margin-left:-9.545400px;}
._25{margin-left:-8.424000px;}
._c{margin-left:-7.265400px;}
._26{margin-left:-5.830200px;}
._2{margin-left:-4.757400px;}
._0{margin-left:-3.558600px;}
._1{margin-left:-2.289600px;}
._6{margin-left:-1.176000px;}
._8{width:1.014000px;}
._5{width:2.100000px;}
._b{width:3.696000px;}
._a{width:4.914000px;}
._9{width:6.364800px;}
._7{width:7.470000px;}
._12{width:8.995800px;}
._1f{width:10.051800px;}
._1c{width:11.088000px;}
._4{width:12.582000px;}
._e{width:14.473800px;}
._73{width:16.061400px;}
._17{width:17.615400px;}
._11{width:19.225800px;}
._14{width:20.341200px;}
._1b{width:22.116600px;}
._16{width:23.331000px;}
._1d{width:24.591600px;}
._28{width:25.786200px;}
._13{width:27.324000px;}
._21{width:29.046600px;}
._f{width:30.505200px;}
._24{width:31.739400px;}
._23{width:33.006600px;}
._15{width:34.009800px;}
._20{width:35.092200px;}
._18{width:37.072200px;}
._10{width:38.121600px;}
._1e{width:40.029000px;}
._6d{width:41.685600px;}
._d{width:43.117800px;}
._22{width:44.378400px;}
._6f{width:45.606000px;}
._71{width:49.255800px;}
._6e{width:51.915600px;}
._2a{width:53.070600px;}
._19{width:54.179400px;}
._29{width:56.905200px;}
._74{width:58.878600px;}
._72{width:60.000000px;}
._27{width:67.471800px;}
._6c{width:77.962800px;}
._66{width:90.997800px;}
._2c{width:99.361800px;}
._69{width:113.419800px;}
._58{width:123.517800px;}
._32{width:132.776400px;}
._68{width:134.915400px;}
._6a{width:137.422200px;}
._46{width:141.410400px;}
._2d{width:143.329200px;}
._59{width:154.090200px;}
._67{width:171.646200px;}
._6b{width:195.470400px;}
._47{width:199.029600px;}
._33{width:201.807000px;}
._63{width:207.793200px;}
._52{width:230.903400px;}
._53{width:238.003800px;}
._54{width:280.803000px;}
._4f{width:309.903600px;}
._4a{width:311.814000px;}
._4e{width:319.101000px;}
._3a{width:321.607200px;}
._4c{width:331.273200px;}
._30{width:335.916600px;}
._49{width:340.536000px;}
._57{width:342.213000px;}
._51{width:347.396400px;}
._3d{width:350.461800px;}
._64{width:354.613200px;}
._2f{width:359.181000px;}
._65{width:360.685200px;}
._39{width:368.643000px;}
._35{width:370.753200px;}
._43{width:376.351200px;}
._62{width:379.513200px;}
._5b{width:388.666200px;}
._41{width:396.159000px;}
._37{width:398.238000px;}
._56{width:406.068000px;}
._3c{width:411.276600px;}
._5c{width:419.593200px;}
._3f{width:423.763800px;}
._60{width:433.666200px;}
._45{width:435.653400px;}
._5f{width:437.833200px;}
._5d{width:448.666200px;}
._48{width:454.665600px;}
._5a{width:456.193200px;}
._61{width:499.573200px;}
._5e{width:539.473200px;}
._50{width:629.376600px;}
._55{width:636.409200px;}
._4d{width:638.722200px;}
._4b{width:640.356000px;}
._3b{width:739.944000px;}
._34{width:841.312800px;}
._2e{width:857.145600px;}
._36{width:870.280200px;}
._31{width:941.754000px;}
._38{width:949.306200px;}
._42{width:1054.884600px;}
._40{width:1084.516800px;}
._44{width:1266.408000px;}
._3e{width:1296.963600px;}
._1a{width:1474.540200px;}
.fc6{color:rgb(0,173,239);}
.fc5{color:transparent;}
.fc4{color:rgb(24,23,23);}
.fc2{color:rgb(48,88,159);}
.fc3{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs0{font-size:48.000000px;}
.fs1{font-size:54.000000px;}
.fs4{font-size:60.000000px;}
.fs5{font-size:66.000000px;}
.fs2{font-size:72.000000px;}
.fs3{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y12{bottom:8.412750px;}
.y11{bottom:23.412750px;}
.y13{bottom:30.289950px;}
.yb{bottom:30.301800px;}
.y44{bottom:30.906150px;}
.y43{bottom:33.478950px;}
.ya6{bottom:33.490650px;}
.yf{bottom:33.691200px;}
.ye6{bottom:63.779550px;}
.y7a{bottom:66.583200px;}
.y34{bottom:73.191450px;}
.y124{bottom:73.445400px;}
.y41{bottom:80.603250px;}
.ye5{bottom:84.640950px;}
.y79{bottom:86.083200px;}
.y33{bottom:92.691450px;}
.y123{bottom:92.945400px;}
.y40{bottom:100.103250px;}
.ye4{bottom:103.545300px;}
.y78{bottom:105.583200px;}
.y32{bottom:112.191450px;}
.y122{bottom:112.445400px;}
.y3f{bottom:119.603250px;}
.ye3{bottom:122.449650px;}
.y77{bottom:125.083200px;}
.y31{bottom:131.691450px;}
.y121{bottom:131.945400px;}
.y3e{bottom:139.103250px;}
.ye2{bottom:141.354000px;}
.y76{bottom:144.583200px;}
.y30{bottom:151.191450px;}
.y120{bottom:151.445400px;}
.y3d{bottom:158.603250px;}
.ye1{bottom:160.258350px;}
.y75{bottom:164.083200px;}
.y2f{bottom:170.691450px;}
.y11f{bottom:170.945400px;}
.y3c{bottom:178.103250px;}
.ye0{bottom:179.162550px;}
.y14f{bottom:181.941450px;}
.ya5{bottom:183.583200px;}
.y2e{bottom:190.191450px;}
.y11e{bottom:190.445400px;}
.y74{bottom:192.087150px;}
.y3b{bottom:197.603250px;}
.ydf{bottom:198.066900px;}
.y14e{bottom:201.441450px;}
.ya4{bottom:203.083200px;}
.y2d{bottom:209.691450px;}
.y11d{bottom:209.945400px;}
.y73{bottom:211.587150px;}
.y3a{bottom:217.103250px;}
.yde{bottom:217.945800px;}
.y14d{bottom:220.941450px;}
.ya3{bottom:222.583200px;}
.y2c{bottom:229.191450px;}
.y11c{bottom:229.445400px;}
.y189{bottom:230.845050px;}
.y72{bottom:231.087150px;}
.y1d6{bottom:236.215050px;}
.y39{bottom:236.603250px;}
.ydd{bottom:237.824550px;}
.y14c{bottom:240.441450px;}
.ya2{bottom:242.083200px;}
.y188{bottom:242.845050px;}
.y1d5{bottom:248.215050px;}
.y2b{bottom:248.691450px;}
.y11b{bottom:248.945400px;}
.y71{bottom:250.587150px;}
.y187{bottom:254.845050px;}
.y38{bottom:256.103250px;}
.ydc{bottom:258.356100px;}
.y14b{bottom:259.941450px;}
.y1d4{bottom:260.215050px;}
.ya1{bottom:261.583200px;}
.y186{bottom:266.845050px;}
.y2a{bottom:268.191450px;}
.y11a{bottom:268.445400px;}
.y70{bottom:270.087150px;}
.y1d3{bottom:272.215050px;}
.y185{bottom:278.845050px;}
.y14a{bottom:279.441450px;}
.ye7{bottom:281.036700px;}
.ya0{bottom:281.083200px;}
.y37{bottom:284.107200px;}
.y1d2{bottom:284.215050px;}
.y29{bottom:287.691450px;}
.y119{bottom:287.945400px;}
.y6f{bottom:289.587150px;}
.y184{bottom:290.845050px;}
.y1d1{bottom:296.215050px;}
.y149{bottom:298.941450px;}
.y9f{bottom:300.583200px;}
.y183{bottom:302.845050px;}
.y36{bottom:303.607200px;}
.y28{bottom:307.191450px;}
.y118{bottom:307.445400px;}
.y1d0{bottom:308.215050px;}
.y6e{bottom:309.087150px;}
.y182{bottom:314.845050px;}
.yeb{bottom:315.148800px;}
.y148{bottom:318.441450px;}
.y9e{bottom:320.083200px;}
.y1cf{bottom:320.215050px;}
.y35{bottom:323.107200px;}
.y27{bottom:326.691450px;}
.y181{bottom:326.845050px;}
.y117{bottom:326.945400px;}
.yba{bottom:327.772200px;}
.y6d{bottom:328.587150px;}
.y1ce{bottom:332.215050px;}
.yea{bottom:334.060500px;}
.y147{bottom:337.941450px;}
.y180{bottom:338.845050px;}
.y9d{bottom:339.583200px;}
.y1cd{bottom:344.215050px;}
.y116{bottom:346.445400px;}
.y6c{bottom:348.087150px;}
.y17f{bottom:350.845050px;}
.ye9{bottom:352.843950px;}
.y1cc{bottom:356.215050px;}
.y146{bottom:357.441450px;}
.y9c{bottom:359.083200px;}
.ye8{bottom:360.343950px;}
.y17e{bottom:362.845050px;}
.y115{bottom:365.945400px;}
.yb9{bottom:366.772200px;}
.y6b{bottom:367.587150px;}
.y1cb{bottom:368.215050px;}
.y17d{bottom:374.845050px;}
.y145{bottom:376.941450px;}
.y9b{bottom:378.583200px;}
.y1ca{bottom:380.215050px;}
.y114{bottom:385.445400px;}
.yb8{bottom:386.272200px;}
.y17c{bottom:386.845050px;}
.y6a{bottom:387.087150px;}
.yec{bottom:387.855450px;}
.y26{bottom:391.321500px;}
.y1c9{bottom:392.215050px;}
.y144{bottom:396.441450px;}
.y9a{bottom:398.083200px;}
.y17b{bottom:398.845050px;}
.y1c8{bottom:404.215050px;}
.y113{bottom:404.945400px;}
.yb7{bottom:405.772200px;}
.y69{bottom:406.587150px;}
.y17a{bottom:410.845050px;}
.y143{bottom:415.941450px;}
.y1c7{bottom:416.215050px;}
.y25{bottom:416.325300px;}
.y99{bottom:417.583200px;}
.yc4{bottom:422.780100px;}
.y179{bottom:422.845050px;}
.y112{bottom:424.445400px;}
.yb6{bottom:425.272200px;}
.y68{bottom:426.087150px;}
.y1c6{bottom:428.215050px;}
.y24{bottom:432.825300px;}
.y178{bottom:434.845050px;}
.y142{bottom:435.441450px;}
.y98{bottom:437.083200px;}
.y1c5{bottom:440.215050px;}
.yc3{bottom:442.280100px;}
.y111{bottom:443.945400px;}
.yb5{bottom:444.772200px;}
.y177{bottom:446.845050px;}
.y23{bottom:449.325300px;}
.y1c4{bottom:452.215050px;}
.y141{bottom:454.941450px;}
.y97{bottom:456.583200px;}
.y176{bottom:458.845050px;}
.yc2{bottom:461.780100px;}
.y110{bottom:463.445400px;}
.y1c3{bottom:464.215050px;}
.yb4{bottom:464.272200px;}
.y175{bottom:470.845050px;}
.y67{bottom:473.591100px;}
.y22{bottom:474.329250px;}
.y140{bottom:474.441450px;}
.y1c2{bottom:476.215050px;}
.yc1{bottom:481.280100px;}
.y174{bottom:482.845050px;}
.y10f{bottom:482.945400px;}
.y1c1{bottom:488.215050px;}
.y21{bottom:490.829250px;}
.yb3{bottom:492.276150px;}
.y66{bottom:493.091100px;}
.y173{bottom:494.845050px;}
.y96{bottom:495.583200px;}
.y1c0{bottom:500.215050px;}
.yc0{bottom:500.780100px;}
.y10e{bottom:502.445400px;}
.y172{bottom:506.845050px;}
.y20{bottom:507.329250px;}
.yb2{bottom:511.776150px;}
.y1bf{bottom:512.215050px;}
.y65{bottom:512.591100px;}
.y13f{bottom:513.441450px;}
.y95{bottom:515.083200px;}
.y171{bottom:518.845050px;}
.ybf{bottom:520.280100px;}
.y10d{bottom:521.945400px;}
.y1be{bottom:524.215050px;}
.y170{bottom:530.845050px;}
.yb1{bottom:531.276150px;}
.y64{bottom:532.091100px;}
.y1f{bottom:532.333350px;}
.y13e{bottom:532.941450px;}
.y94{bottom:534.583200px;}
.y1bd{bottom:536.215050px;}
.ybe{bottom:539.780100px;}
.y10c{bottom:541.445400px;}
.y16f{bottom:542.845050px;}
.y1bc{bottom:548.215050px;}
.y1e{bottom:548.833350px;}
.yb0{bottom:550.776150px;}
.y13d{bottom:552.441450px;}
.y93{bottom:554.083200px;}
.y16e{bottom:554.845050px;}
.ybd{bottom:559.280100px;}
.y63{bottom:560.095050px;}
.y1bb{bottom:560.215050px;}
.y10b{bottom:560.945400px;}
.y1d{bottom:565.333200px;}
.y16d{bottom:566.845050px;}
.yaf{bottom:570.276150px;}
.y13c{bottom:571.941450px;}
.y1ba{bottom:572.215050px;}
.y92{bottom:573.583200px;}
.ybc{bottom:578.780100px;}
.y16c{bottom:578.845050px;}
.y62{bottom:579.595050px;}
.y10a{bottom:580.445400px;}
.y1c{bottom:581.833200px;}
.y1b9{bottom:584.215050px;}
.yae{bottom:589.776150px;}
.y13b{bottom:591.441450px;}
.y91{bottom:593.083200px;}
.y1b8{bottom:596.215050px;}
.ybb{bottom:598.280100px;}
.y1b{bottom:598.333200px;}
.y61{bottom:599.095050px;}
.y109{bottom:599.945400px;}
.y1b7{bottom:608.215050px;}
.y13a{bottom:610.941450px;}
.y90{bottom:612.583200px;}
.yad{bottom:617.780100px;}
.y16b{bottom:617.845050px;}
.y60{bottom:618.595050px;}
.y108{bottom:619.445400px;}
.y1b6{bottom:620.215050px;}
.y1a{bottom:623.337150px;}
.y139{bottom:630.441450px;}
.y8f{bottom:632.083200px;}
.y1b5{bottom:632.215050px;}
.yac{bottom:637.280100px;}
.y16a{bottom:637.345050px;}
.y5f{bottom:638.095050px;}
.y107{bottom:638.945400px;}
.y19{bottom:639.837150px;}
.y1b4{bottom:644.215050px;}
.y138{bottom:649.941450px;}
.y8e{bottom:651.583200px;}
.y1b3{bottom:656.215050px;}
.y18{bottom:656.337150px;}
.yab{bottom:656.780100px;}
.y169{bottom:656.845050px;}
.y5e{bottom:657.595050px;}
.y106{bottom:658.445400px;}
.y1b2{bottom:668.215050px;}
.y137{bottom:669.441450px;}
.y8d{bottom:671.083200px;}
.y17{bottom:672.837150px;}
.yaa{bottom:676.280100px;}
.y168{bottom:676.345050px;}
.y5d{bottom:677.095050px;}
.y105{bottom:677.945400px;}
.y1b1{bottom:680.215050px;}
.y136{bottom:688.941450px;}
.y16{bottom:689.337150px;}
.y8c{bottom:690.583200px;}
.y1b0{bottom:692.215050px;}
.ya9{bottom:695.780100px;}
.y167{bottom:695.845050px;}
.y5c{bottom:696.595050px;}
.y104{bottom:697.445400px;}
.y1af{bottom:704.215050px;}
.y15{bottom:705.837150px;}
.y135{bottom:708.441450px;}
.y8b{bottom:710.083200px;}
.ya8{bottom:715.280100px;}
.y166{bottom:715.345050px;}
.y5b{bottom:716.095050px;}
.y1ae{bottom:716.215050px;}
.y103{bottom:716.945400px;}
.y14{bottom:727.841100px;}
.y134{bottom:727.941450px;}
.y1ad{bottom:728.215050px;}
.ya7{bottom:734.780100px;}
.y165{bottom:734.845050px;}
.y5a{bottom:735.595050px;}
.y102{bottom:736.445400px;}
.y8a{bottom:738.087150px;}
.y1ac{bottom:740.215050px;}
.y133{bottom:747.441450px;}
.y1ab{bottom:752.215050px;}
.y164{bottom:754.345050px;}
.y59{bottom:755.095050px;}
.y101{bottom:755.945400px;}
.y89{bottom:757.587150px;}
.y1aa{bottom:764.215050px;}
.y132{bottom:766.941450px;}
.y9{bottom:772.104900px;}
.ydb{bottom:772.387650px;}
.y163{bottom:773.845050px;}
.y58{bottom:774.595050px;}
.y100{bottom:775.445400px;}
.y1a9{bottom:776.215050px;}
.y88{bottom:777.087150px;}
.y8{bottom:785.604900px;}
.yda{bottom:785.887650px;}
.y131{bottom:786.441450px;}
.y1a8{bottom:788.215050px;}
.y162{bottom:793.345050px;}
.y57{bottom:794.095050px;}
.yff{bottom:794.945400px;}
.y87{bottom:796.587150px;}
.y7{bottom:799.104900px;}
.y1a7{bottom:800.215050px;}
.yd8{bottom:804.002250px;}
.y130{bottom:805.941450px;}
.y1a6{bottom:812.215050px;}
.y161{bottom:812.845050px;}
.y56{bottom:813.595050px;}
.yfe{bottom:814.445400px;}
.y86{bottom:816.087150px;}
.yd7{bottom:821.866500px;}
.y1a5{bottom:824.215050px;}
.y12f{bottom:825.441450px;}
.y6{bottom:826.104900px;}
.y160{bottom:832.345050px;}
.y55{bottom:833.095050px;}
.yfd{bottom:833.945400px;}
.y85{bottom:835.587150px;}
.y1a4{bottom:836.215050px;}
.y5{bottom:839.604900px;}
.yd6{bottom:839.730900px;}
.y12e{bottom:844.941450px;}
.y1a3{bottom:848.215050px;}
.y15f{bottom:851.845050px;}
.y54{bottom:852.595050px;}
.yfc{bottom:853.445400px;}
.y84{bottom:855.087150px;}
.yd5{bottom:857.595150px;}
.y1a2{bottom:860.215050px;}
.y12d{bottom:864.441450px;}
.y4{bottom:866.604900px;}
.y15e{bottom:871.345050px;}
.y53{bottom:872.095050px;}
.y1a1{bottom:872.215050px;}
.yfb{bottom:872.945400px;}
.y83{bottom:874.587150px;}
.yd4{bottom:875.459400px;}
.y3{bottom:880.104900px;}
.y12c{bottom:883.941450px;}
.y1a0{bottom:884.215050px;}
.y15d{bottom:890.845050px;}
.y52{bottom:891.595050px;}
.yfa{bottom:892.445400px;}
.yd3{bottom:893.323650px;}
.y19f{bottom:896.215050px;}
.y82{bottom:902.591100px;}
.y12b{bottom:903.441450px;}
.y2{bottom:907.104900px;}
.y19e{bottom:908.215050px;}
.y15c{bottom:910.345050px;}
.y51{bottom:911.095050px;}
.yd2{bottom:911.188050px;}
.yf9{bottom:911.945400px;}
.ya{bottom:912.864300px;}
.y19d{bottom:920.215050px;}
.y1{bottom:920.604900px;}
.y81{bottom:922.091100px;}
.y12a{bottom:922.941450px;}
.yd1{bottom:929.052300px;}
.y15b{bottom:929.845050px;}
.y50{bottom:930.595050px;}
.yf8{bottom:931.445400px;}
.y19c{bottom:932.215050px;}
.y80{bottom:941.591100px;}
.y129{bottom:942.441450px;}
.y19b{bottom:944.215050px;}
.yd0{bottom:946.916550px;}
.y15a{bottom:949.345050px;}
.y4f{bottom:950.095050px;}
.yf7{bottom:950.945400px;}
.y19a{bottom:956.215050px;}
.y7f{bottom:961.091100px;}
.y128{bottom:961.941450px;}
.ycd{bottom:964.672050px;}
.ycf{bottom:964.780950px;}
.y10{bottom:965.485500px;}
.y199{bottom:968.215050px;}
.y159{bottom:968.845050px;}
.y4e{bottom:969.595050px;}
.yf6{bottom:970.445400px;}
.y198{bottom:980.215050px;}
.y7e{bottom:980.591100px;}
.y127{bottom:981.441450px;}
.yce{bottom:982.645200px;}
.y158{bottom:988.345050px;}
.y4d{bottom:989.095050px;}
.yf5{bottom:989.945400px;}
.y197{bottom:992.215050px;}
.y7d{bottom:1000.091100px;}
.ycc{bottom:1000.509450px;}
.y126{bottom:1000.941450px;}
.y196{bottom:1004.215050px;}
.y157{bottom:1007.845050px;}
.y4c{bottom:1008.595050px;}
.yf4{bottom:1009.445400px;}
.y195{bottom:1016.215050px;}
.ycb{bottom:1018.373700px;}
.y7c{bottom:1019.591100px;}
.y125{bottom:1020.441450px;}
.y156{bottom:1027.345050px;}
.y4b{bottom:1028.095050px;}
.y194{bottom:1028.215050px;}
.yf3{bottom:1028.945400px;}
.yd{bottom:1029.889650px;}
.yca{bottom:1036.237950px;}
.y7b{bottom:1039.091100px;}
.y193{bottom:1040.215050px;}
.y155{bottom:1046.845050px;}
.y4a{bottom:1047.595050px;}
.yc{bottom:1047.889650px;}
.yf2{bottom:1048.445400px;}
.y192{bottom:1052.215050px;}
.yc9{bottom:1054.102350px;}
.y191{bottom:1064.215050px;}
.y154{bottom:1066.345050px;}
.y49{bottom:1067.095050px;}
.yf1{bottom:1067.945400px;}
.yc8{bottom:1071.966600px;}
.y190{bottom:1076.215050px;}
.ye{bottom:1083.927000px;}
.y153{bottom:1085.845050px;}
.y48{bottom:1086.595050px;}
.yf0{bottom:1087.445400px;}
.y18f{bottom:1088.215050px;}
.yc7{bottom:1089.831000px;}
.y18e{bottom:1100.215050px;}
.y152{bottom:1105.345050px;}
.y47{bottom:1106.095050px;}
.yef{bottom:1106.945400px;}
.yc6{bottom:1107.695100px;}
.y18d{bottom:1112.215050px;}
.y18c{bottom:1124.215050px;}
.y151{bottom:1124.845050px;}
.y46{bottom:1125.595050px;}
.yee{bottom:1126.445400px;}
.yc5{bottom:1127.198700px;}
.y18b{bottom:1136.215050px;}
.y150{bottom:1144.345050px;}
.y45{bottom:1145.095050px;}
.yed{bottom:1145.945400px;}
.yd9{bottom:1146.135000px;}
.y18a{bottom:1148.215050px;}
.y42{bottom:1187.880600px;}
.h2{height:32.507812px;}
.h5{height:37.494141px;}
.h6{height:40.054688px;}
.ha{height:42.000000px;}
.h10{height:42.720000px;}
.h3{height:45.061523px;}
.h11{height:45.826172px;}
.h4{height:46.274414px;}
.hd{height:48.761719px;}
.hc{height:50.068359px;}
.hb{height:51.416016px;}
.he{height:55.075195px;}
.hf{height:56.557617px;}
.h9{height:58.898438px;}
.h7{height:61.699219px;}
.h12{height:80.068359px;}
.h8{height:84.000000px;}
.h13{height:110.068359px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:612.000000px;}
.w2{width:702.000300px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:9.026100px;}
.x4{left:63.779550px;}
.xd{left:70.157400px;}
.x2{left:73.783500px;}
.x1{left:75.283500px;}
.x8{left:87.412950px;}
.x1b{left:90.779550px;}
.xc{left:95.409450px;}
.x12{left:97.319850px;}
.x10{left:102.696900px;}
.x7{left:128.945700px;}
.x15{left:141.540300px;}
.x14{left:146.917350px;}
.x13{left:201.940950px;}
.x9{left:212.536500px;}
.xf{left:223.492200px;}
.x5{left:236.360850px;}
.x6{left:355.079100px;}
.xe{left:459.212550px;}
.x1a{left:476.595450px;}
.x19{left:481.972500px;}
.x1c{left:486.212550px;}
.x16{left:498.207750px;}
.x17{left:596.087250px;}
.xb{left:638.165100px;}
.x18{left:665.628150px;}
.x3{left:692.175750px;}
.x11{left:739.731150px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:26.666667pt;}
.v2{vertical-align:53.333333pt;}
.lsc{letter-spacing:-2.544000pt;}
.ls5{letter-spacing:-2.304000pt;}
.lsa{letter-spacing:-2.160000pt;}
.ls10{letter-spacing:-1.872000pt;}
.ls7{letter-spacing:-1.776000pt;}
.ls6{letter-spacing:-1.392000pt;}
.lsf{letter-spacing:-1.248000pt;}
.lsd{letter-spacing:-1.008000pt;}
.ls3{letter-spacing:-0.720000pt;}
.ls8{letter-spacing:-0.624000pt;}
.ls4{letter-spacing:-0.576000pt;}
.ls9{letter-spacing:-0.528000pt;}
.ls1{letter-spacing:-0.128000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.000533pt;}
.lsb{letter-spacing:0.720000pt;}
.lse{letter-spacing:1.152000pt;}
.ls11{letter-spacing:2.240000pt;}
.ws2{word-spacing:-13.333333pt;}
.ws0{word-spacing:-12.000000pt;}
.ws6{word-spacing:-11.424000pt;}
.ws8{word-spacing:-11.376000pt;}
.ws5{word-spacing:-11.280000pt;}
.wsa{word-spacing:-10.992000pt;}
.wsb{word-spacing:-10.752000pt;}
.ws18{word-spacing:-10.666667pt;}
.ws1{word-spacing:-10.538667pt;}
.wsc{word-spacing:-10.128000pt;}
.ws7{word-spacing:-9.696000pt;}
.ws9{word-spacing:-9.456000pt;}
.ws17{word-spacing:-2.240000pt;}
.ws16{word-spacing:-1.152000pt;}
.ws15{word-spacing:-0.720000pt;}
.ws3{word-spacing:0.000000pt;}
.ws12{word-spacing:0.528000pt;}
.ws11{word-spacing:0.576000pt;}
.ws13{word-spacing:0.624000pt;}
.wsf{word-spacing:1.392000pt;}
.ws10{word-spacing:1.776000pt;}
.ws14{word-spacing:2.160000pt;}
.ws19{word-spacing:7.744000pt;}
.wse{word-spacing:84.396800pt;}
.wsd{word-spacing:247.867733pt;}
.ws4{word-spacing:483.952000pt;}
._3{margin-left:-1944.394667pt;}
._70{margin-left:-9.715200pt;}
._2b{margin-left:-8.484800pt;}
._25{margin-left:-7.488000pt;}
._c{margin-left:-6.458133pt;}
._26{margin-left:-5.182400pt;}
._2{margin-left:-4.228800pt;}
._0{margin-left:-3.163200pt;}
._1{margin-left:-2.035200pt;}
._6{margin-left:-1.045333pt;}
._8{width:0.901333pt;}
._5{width:1.866667pt;}
._b{width:3.285333pt;}
._a{width:4.368000pt;}
._9{width:5.657600pt;}
._7{width:6.640000pt;}
._12{width:7.996267pt;}
._1f{width:8.934933pt;}
._1c{width:9.856000pt;}
._4{width:11.184000pt;}
._e{width:12.865600pt;}
._73{width:14.276800pt;}
._17{width:15.658133pt;}
._11{width:17.089600pt;}
._14{width:18.081067pt;}
._1b{width:19.659200pt;}
._16{width:20.738667pt;}
._1d{width:21.859200pt;}
._28{width:22.921067pt;}
._13{width:24.288000pt;}
._21{width:25.819200pt;}
._f{width:27.115733pt;}
._24{width:28.212800pt;}
._23{width:29.339200pt;}
._15{width:30.230933pt;}
._20{width:31.193067pt;}
._18{width:32.953067pt;}
._10{width:33.885867pt;}
._1e{width:35.581333pt;}
._6d{width:37.053867pt;}
._d{width:38.326933pt;}
._22{width:39.447467pt;}
._6f{width:40.538667pt;}
._71{width:43.782933pt;}
._6e{width:46.147200pt;}
._2a{width:47.173867pt;}
._19{width:48.159467pt;}
._29{width:50.582400pt;}
._74{width:52.336533pt;}
._72{width:53.333333pt;}
._27{width:59.974933pt;}
._6c{width:69.300267pt;}
._66{width:80.886933pt;}
._2c{width:88.321600pt;}
._69{width:100.817600pt;}
._58{width:109.793600pt;}
._32{width:118.023467pt;}
._68{width:119.924800pt;}
._6a{width:122.153067pt;}
._46{width:125.698133pt;}
._2d{width:127.403733pt;}
._59{width:136.969067pt;}
._67{width:152.574400pt;}
._6b{width:173.751467pt;}
._47{width:176.915200pt;}
._33{width:179.384000pt;}
._63{width:184.705067pt;}
._52{width:205.247467pt;}
._53{width:211.558933pt;}
._54{width:249.602667pt;}
._4f{width:275.469867pt;}
._4a{width:277.168000pt;}
._4e{width:283.645333pt;}
._3a{width:285.873067pt;}
._4c{width:294.465067pt;}
._30{width:298.592533pt;}
._49{width:302.698667pt;}
._57{width:304.189333pt;}
._51{width:308.796800pt;}
._3d{width:311.521600pt;}
._64{width:315.211733pt;}
._2f{width:319.272000pt;}
._65{width:320.609067pt;}
._39{width:327.682667pt;}
._35{width:329.558400pt;}
._43{width:334.534400pt;}
._62{width:337.345067pt;}
._5b{width:345.481067pt;}
._41{width:352.141333pt;}
._37{width:353.989333pt;}
._56{width:360.949333pt;}
._3c{width:365.579200pt;}
._5c{width:372.971733pt;}
._3f{width:376.678933pt;}
._60{width:385.481067pt;}
._45{width:387.247467pt;}
._5f{width:389.185067pt;}
._5d{width:398.814400pt;}
._48{width:404.147200pt;}
._5a{width:405.505067pt;}
._61{width:444.065067pt;}
._5e{width:479.531733pt;}
._50{width:559.445867pt;}
._55{width:565.697067pt;}
._4d{width:567.753067pt;}
._4b{width:569.205333pt;}
._3b{width:657.728000pt;}
._34{width:747.833600pt;}
._2e{width:761.907200pt;}
._36{width:773.582400pt;}
._31{width:837.114667pt;}
._38{width:843.827733pt;}
._42{width:937.675200pt;}
._40{width:964.014933pt;}
._44{width:1125.696000pt;}
._3e{width:1152.856533pt;}
._1a{width:1310.702400pt;}
.fs0{font-size:42.666667pt;}
.fs1{font-size:48.000000pt;}
.fs4{font-size:53.333333pt;}
.fs5{font-size:58.666667pt;}
.fs2{font-size:64.000000pt;}
.fs3{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y12{bottom:7.478000pt;}
.y11{bottom:20.811333pt;}
.y13{bottom:26.924400pt;}
.yb{bottom:26.934933pt;}
.y44{bottom:27.472133pt;}
.y43{bottom:29.759067pt;}
.ya6{bottom:29.769467pt;}
.yf{bottom:29.947733pt;}
.ye6{bottom:56.692933pt;}
.y7a{bottom:59.185067pt;}
.y34{bottom:65.059067pt;}
.y124{bottom:65.284800pt;}
.y41{bottom:71.647333pt;}
.ye5{bottom:75.236400pt;}
.y79{bottom:76.518400pt;}
.y33{bottom:82.392400pt;}
.y123{bottom:82.618133pt;}
.y40{bottom:88.980667pt;}
.ye4{bottom:92.040267pt;}
.y78{bottom:93.851733pt;}
.y32{bottom:99.725733pt;}
.y122{bottom:99.951467pt;}
.y3f{bottom:106.314000pt;}
.ye3{bottom:108.844133pt;}
.y77{bottom:111.185067pt;}
.y31{bottom:117.059067pt;}
.y121{bottom:117.284800pt;}
.y3e{bottom:123.647333pt;}
.ye2{bottom:125.648000pt;}
.y76{bottom:128.518400pt;}
.y30{bottom:134.392400pt;}
.y120{bottom:134.618133pt;}
.y3d{bottom:140.980667pt;}
.ye1{bottom:142.451867pt;}
.y75{bottom:145.851733pt;}
.y2f{bottom:151.725733pt;}
.y11f{bottom:151.951467pt;}
.y3c{bottom:158.314000pt;}
.ye0{bottom:159.255600pt;}
.y14f{bottom:161.725733pt;}
.ya5{bottom:163.185067pt;}
.y2e{bottom:169.059067pt;}
.y11e{bottom:169.284800pt;}
.y74{bottom:170.744133pt;}
.y3b{bottom:175.647333pt;}
.ydf{bottom:176.059467pt;}
.y14e{bottom:179.059067pt;}
.ya4{bottom:180.518400pt;}
.y2d{bottom:186.392400pt;}
.y11d{bottom:186.618133pt;}
.y73{bottom:188.077467pt;}
.y3a{bottom:192.980667pt;}
.yde{bottom:193.729600pt;}
.y14d{bottom:196.392400pt;}
.ya3{bottom:197.851733pt;}
.y2c{bottom:203.725733pt;}
.y11c{bottom:203.951467pt;}
.y189{bottom:205.195600pt;}
.y72{bottom:205.410800pt;}
.y1d6{bottom:209.968933pt;}
.y39{bottom:210.314000pt;}
.ydd{bottom:211.399600pt;}
.y14c{bottom:213.725733pt;}
.ya2{bottom:215.185067pt;}
.y188{bottom:215.862267pt;}
.y1d5{bottom:220.635600pt;}
.y2b{bottom:221.059067pt;}
.y11b{bottom:221.284800pt;}
.y71{bottom:222.744133pt;}
.y187{bottom:226.528933pt;}
.y38{bottom:227.647333pt;}
.ydc{bottom:229.649867pt;}
.y14b{bottom:231.059067pt;}
.y1d4{bottom:231.302267pt;}
.ya1{bottom:232.518400pt;}
.y186{bottom:237.195600pt;}
.y2a{bottom:238.392400pt;}
.y11a{bottom:238.618133pt;}
.y70{bottom:240.077467pt;}
.y1d3{bottom:241.968933pt;}
.y185{bottom:247.862267pt;}
.y14a{bottom:248.392400pt;}
.ye7{bottom:249.810400pt;}
.ya0{bottom:249.851733pt;}
.y37{bottom:252.539733pt;}
.y1d2{bottom:252.635600pt;}
.y29{bottom:255.725733pt;}
.y119{bottom:255.951467pt;}
.y6f{bottom:257.410800pt;}
.y184{bottom:258.528933pt;}
.y1d1{bottom:263.302267pt;}
.y149{bottom:265.725733pt;}
.y9f{bottom:267.185067pt;}
.y183{bottom:269.195600pt;}
.y36{bottom:269.873067pt;}
.y28{bottom:273.059067pt;}
.y118{bottom:273.284800pt;}
.y1d0{bottom:273.968933pt;}
.y6e{bottom:274.744133pt;}
.y182{bottom:279.862267pt;}
.yeb{bottom:280.132267pt;}
.y148{bottom:283.059067pt;}
.y9e{bottom:284.518400pt;}
.y1cf{bottom:284.635600pt;}
.y35{bottom:287.206400pt;}
.y27{bottom:290.392400pt;}
.y181{bottom:290.528933pt;}
.y117{bottom:290.618133pt;}
.yba{bottom:291.353067pt;}
.y6d{bottom:292.077467pt;}
.y1ce{bottom:295.302267pt;}
.yea{bottom:296.942667pt;}
.y147{bottom:300.392400pt;}
.y180{bottom:301.195600pt;}
.y9d{bottom:301.851733pt;}
.y1cd{bottom:305.968933pt;}
.y116{bottom:307.951467pt;}
.y6c{bottom:309.410800pt;}
.y17f{bottom:311.862267pt;}
.ye9{bottom:313.639067pt;}
.y1cc{bottom:316.635600pt;}
.y146{bottom:317.725733pt;}
.y9c{bottom:319.185067pt;}
.ye8{bottom:320.305733pt;}
.y17e{bottom:322.528933pt;}
.y115{bottom:325.284800pt;}
.yb9{bottom:326.019733pt;}
.y6b{bottom:326.744133pt;}
.y1cb{bottom:327.302267pt;}
.y17d{bottom:333.195600pt;}
.y145{bottom:335.059067pt;}
.y9b{bottom:336.518400pt;}
.y1ca{bottom:337.968933pt;}
.y114{bottom:342.618133pt;}
.yb8{bottom:343.353067pt;}
.y17c{bottom:343.862267pt;}
.y6a{bottom:344.077467pt;}
.yec{bottom:344.760400pt;}
.y26{bottom:347.841333pt;}
.y1c9{bottom:348.635600pt;}
.y144{bottom:352.392400pt;}
.y9a{bottom:353.851733pt;}
.y17b{bottom:354.528933pt;}
.y1c8{bottom:359.302267pt;}
.y113{bottom:359.951467pt;}
.yb7{bottom:360.686400pt;}
.y69{bottom:361.410800pt;}
.y17a{bottom:365.195600pt;}
.y143{bottom:369.725733pt;}
.y1c7{bottom:369.968933pt;}
.y25{bottom:370.066933pt;}
.y99{bottom:371.185067pt;}
.yc4{bottom:375.804533pt;}
.y179{bottom:375.862267pt;}
.y112{bottom:377.284800pt;}
.yb6{bottom:378.019733pt;}
.y68{bottom:378.744133pt;}
.y1c6{bottom:380.635600pt;}
.y24{bottom:384.733600pt;}
.y178{bottom:386.528933pt;}
.y142{bottom:387.059067pt;}
.y98{bottom:388.518400pt;}
.y1c5{bottom:391.302267pt;}
.yc3{bottom:393.137867pt;}
.y111{bottom:394.618133pt;}
.yb5{bottom:395.353067pt;}
.y177{bottom:397.195600pt;}
.y23{bottom:399.400267pt;}
.y1c4{bottom:401.968933pt;}
.y141{bottom:404.392400pt;}
.y97{bottom:405.851733pt;}
.y176{bottom:407.862267pt;}
.yc2{bottom:410.471200pt;}
.y110{bottom:411.951467pt;}
.y1c3{bottom:412.635600pt;}
.yb4{bottom:412.686400pt;}
.y175{bottom:418.528933pt;}
.y67{bottom:420.969867pt;}
.y22{bottom:421.626000pt;}
.y140{bottom:421.725733pt;}
.y1c2{bottom:423.302267pt;}
.yc1{bottom:427.804533pt;}
.y174{bottom:429.195600pt;}
.y10f{bottom:429.284800pt;}
.y1c1{bottom:433.968933pt;}
.y21{bottom:436.292667pt;}
.yb3{bottom:437.578800pt;}
.y66{bottom:438.303200pt;}
.y173{bottom:439.862267pt;}
.y96{bottom:440.518400pt;}
.y1c0{bottom:444.635600pt;}
.yc0{bottom:445.137867pt;}
.y10e{bottom:446.618133pt;}
.y172{bottom:450.528933pt;}
.y20{bottom:450.959333pt;}
.yb2{bottom:454.912133pt;}
.y1bf{bottom:455.302267pt;}
.y65{bottom:455.636533pt;}
.y13f{bottom:456.392400pt;}
.y95{bottom:457.851733pt;}
.y171{bottom:461.195600pt;}
.ybf{bottom:462.471200pt;}
.y10d{bottom:463.951467pt;}
.y1be{bottom:465.968933pt;}
.y170{bottom:471.862267pt;}
.yb1{bottom:472.245467pt;}
.y64{bottom:472.969867pt;}
.y1f{bottom:473.185200pt;}
.y13e{bottom:473.725733pt;}
.y94{bottom:475.185067pt;}
.y1bd{bottom:476.635600pt;}
.ybe{bottom:479.804533pt;}
.y10c{bottom:481.284800pt;}
.y16f{bottom:482.528933pt;}
.y1bc{bottom:487.302267pt;}
.y1e{bottom:487.851867pt;}
.yb0{bottom:489.578800pt;}
.y13d{bottom:491.059067pt;}
.y93{bottom:492.518400pt;}
.y16e{bottom:493.195600pt;}
.ybd{bottom:497.137867pt;}
.y63{bottom:497.862267pt;}
.y1bb{bottom:497.968933pt;}
.y10b{bottom:498.618133pt;}
.y1d{bottom:502.518400pt;}
.y16d{bottom:503.862267pt;}
.yaf{bottom:506.912133pt;}
.y13c{bottom:508.392400pt;}
.y1ba{bottom:508.635600pt;}
.y92{bottom:509.851733pt;}
.ybc{bottom:514.471200pt;}
.y16c{bottom:514.528933pt;}
.y62{bottom:515.195600pt;}
.y10a{bottom:515.951467pt;}
.y1c{bottom:517.185067pt;}
.y1b9{bottom:519.302267pt;}
.yae{bottom:524.245467pt;}
.y13b{bottom:525.725733pt;}
.y91{bottom:527.185067pt;}
.y1b8{bottom:529.968933pt;}
.ybb{bottom:531.804533pt;}
.y1b{bottom:531.851733pt;}
.y61{bottom:532.528933pt;}
.y109{bottom:533.284800pt;}
.y1b7{bottom:540.635600pt;}
.y13a{bottom:543.059067pt;}
.y90{bottom:544.518400pt;}
.yad{bottom:549.137867pt;}
.y16b{bottom:549.195600pt;}
.y60{bottom:549.862267pt;}
.y108{bottom:550.618133pt;}
.y1b6{bottom:551.302267pt;}
.y1a{bottom:554.077467pt;}
.y139{bottom:560.392400pt;}
.y8f{bottom:561.851733pt;}
.y1b5{bottom:561.968933pt;}
.yac{bottom:566.471200pt;}
.y16a{bottom:566.528933pt;}
.y5f{bottom:567.195600pt;}
.y107{bottom:567.951467pt;}
.y19{bottom:568.744133pt;}
.y1b4{bottom:572.635600pt;}
.y138{bottom:577.725733pt;}
.y8e{bottom:579.185067pt;}
.y1b3{bottom:583.302267pt;}
.y18{bottom:583.410800pt;}
.yab{bottom:583.804533pt;}
.y169{bottom:583.862267pt;}
.y5e{bottom:584.528933pt;}
.y106{bottom:585.284800pt;}
.y1b2{bottom:593.968933pt;}
.y137{bottom:595.059067pt;}
.y8d{bottom:596.518400pt;}
.y17{bottom:598.077467pt;}
.yaa{bottom:601.137867pt;}
.y168{bottom:601.195600pt;}
.y5d{bottom:601.862267pt;}
.y105{bottom:602.618133pt;}
.y1b1{bottom:604.635600pt;}
.y136{bottom:612.392400pt;}
.y16{bottom:612.744133pt;}
.y8c{bottom:613.851733pt;}
.y1b0{bottom:615.302267pt;}
.ya9{bottom:618.471200pt;}
.y167{bottom:618.528933pt;}
.y5c{bottom:619.195600pt;}
.y104{bottom:619.951467pt;}
.y1af{bottom:625.968933pt;}
.y15{bottom:627.410800pt;}
.y135{bottom:629.725733pt;}
.y8b{bottom:631.185067pt;}
.ya8{bottom:635.804533pt;}
.y166{bottom:635.862267pt;}
.y5b{bottom:636.528933pt;}
.y1ae{bottom:636.635600pt;}
.y103{bottom:637.284800pt;}
.y14{bottom:646.969867pt;}
.y134{bottom:647.059067pt;}
.y1ad{bottom:647.302267pt;}
.ya7{bottom:653.137867pt;}
.y165{bottom:653.195600pt;}
.y5a{bottom:653.862267pt;}
.y102{bottom:654.618133pt;}
.y8a{bottom:656.077467pt;}
.y1ac{bottom:657.968933pt;}
.y133{bottom:664.392400pt;}
.y1ab{bottom:668.635600pt;}
.y164{bottom:670.528933pt;}
.y59{bottom:671.195600pt;}
.y101{bottom:671.951467pt;}
.y89{bottom:673.410800pt;}
.y1aa{bottom:679.302267pt;}
.y132{bottom:681.725733pt;}
.y9{bottom:686.315467pt;}
.ydb{bottom:686.566800pt;}
.y163{bottom:687.862267pt;}
.y58{bottom:688.528933pt;}
.y100{bottom:689.284800pt;}
.y1a9{bottom:689.968933pt;}
.y88{bottom:690.744133pt;}
.y8{bottom:698.315467pt;}
.yda{bottom:698.566800pt;}
.y131{bottom:699.059067pt;}
.y1a8{bottom:700.635600pt;}
.y162{bottom:705.195600pt;}
.y57{bottom:705.862267pt;}
.yff{bottom:706.618133pt;}
.y87{bottom:708.077467pt;}
.y7{bottom:710.315467pt;}
.y1a7{bottom:711.302267pt;}
.yd8{bottom:714.668667pt;}
.y130{bottom:716.392400pt;}
.y1a6{bottom:721.968933pt;}
.y161{bottom:722.528933pt;}
.y56{bottom:723.195600pt;}
.yfe{bottom:723.951467pt;}
.y86{bottom:725.410800pt;}
.yd7{bottom:730.548000pt;}
.y1a5{bottom:732.635600pt;}
.y12f{bottom:733.725733pt;}
.y6{bottom:734.315467pt;}
.y160{bottom:739.862267pt;}
.y55{bottom:740.528933pt;}
.yfd{bottom:741.284800pt;}
.y85{bottom:742.744133pt;}
.y1a4{bottom:743.302267pt;}
.y5{bottom:746.315467pt;}
.yd6{bottom:746.427467pt;}
.y12e{bottom:751.059067pt;}
.y1a3{bottom:753.968933pt;}
.y15f{bottom:757.195600pt;}
.y54{bottom:757.862267pt;}
.yfc{bottom:758.618133pt;}
.y84{bottom:760.077467pt;}
.yd5{bottom:762.306800pt;}
.y1a2{bottom:764.635600pt;}
.y12d{bottom:768.392400pt;}
.y4{bottom:770.315467pt;}
.y15e{bottom:774.528933pt;}
.y53{bottom:775.195600pt;}
.y1a1{bottom:775.302267pt;}
.yfb{bottom:775.951467pt;}
.y83{bottom:777.410800pt;}
.yd4{bottom:778.186133pt;}
.y3{bottom:782.315467pt;}
.y12c{bottom:785.725733pt;}
.y1a0{bottom:785.968933pt;}
.y15d{bottom:791.862267pt;}
.y52{bottom:792.528933pt;}
.yfa{bottom:793.284800pt;}
.yd3{bottom:794.065467pt;}
.y19f{bottom:796.635600pt;}
.y82{bottom:802.303200pt;}
.y12b{bottom:803.059067pt;}
.y2{bottom:806.315467pt;}
.y19e{bottom:807.302267pt;}
.y15c{bottom:809.195600pt;}
.y51{bottom:809.862267pt;}
.yd2{bottom:809.944933pt;}
.yf9{bottom:810.618133pt;}
.ya{bottom:811.434933pt;}
.y19d{bottom:817.968933pt;}
.y1{bottom:818.315467pt;}
.y81{bottom:819.636533pt;}
.y12a{bottom:820.392400pt;}
.yd1{bottom:825.824267pt;}
.y15b{bottom:826.528933pt;}
.y50{bottom:827.195600pt;}
.yf8{bottom:827.951467pt;}
.y19c{bottom:828.635600pt;}
.y80{bottom:836.969867pt;}
.y129{bottom:837.725733pt;}
.y19b{bottom:839.302267pt;}
.yd0{bottom:841.703600pt;}
.y15a{bottom:843.862267pt;}
.y4f{bottom:844.528933pt;}
.yf7{bottom:845.284800pt;}
.y19a{bottom:849.968933pt;}
.y7f{bottom:854.303200pt;}
.y128{bottom:855.059067pt;}
.ycd{bottom:857.486267pt;}
.ycf{bottom:857.583067pt;}
.y10{bottom:858.209333pt;}
.y199{bottom:860.635600pt;}
.y159{bottom:861.195600pt;}
.y4e{bottom:861.862267pt;}
.yf6{bottom:862.618133pt;}
.y198{bottom:871.302267pt;}
.y7e{bottom:871.636533pt;}
.y127{bottom:872.392400pt;}
.yce{bottom:873.462400pt;}
.y158{bottom:878.528933pt;}
.y4d{bottom:879.195600pt;}
.yf5{bottom:879.951467pt;}
.y197{bottom:881.968933pt;}
.y7d{bottom:888.969867pt;}
.ycc{bottom:889.341733pt;}
.y126{bottom:889.725733pt;}
.y196{bottom:892.635600pt;}
.y157{bottom:895.862267pt;}
.y4c{bottom:896.528933pt;}
.yf4{bottom:897.284800pt;}
.y195{bottom:903.302267pt;}
.ycb{bottom:905.221067pt;}
.y7c{bottom:906.303200pt;}
.y125{bottom:907.059067pt;}
.y156{bottom:913.195600pt;}
.y4b{bottom:913.862267pt;}
.y194{bottom:913.968933pt;}
.yf3{bottom:914.618133pt;}
.yd{bottom:915.457467pt;}
.yca{bottom:921.100400pt;}
.y7b{bottom:923.636533pt;}
.y193{bottom:924.635600pt;}
.y155{bottom:930.528933pt;}
.y4a{bottom:931.195600pt;}
.yc{bottom:931.457467pt;}
.yf2{bottom:931.951467pt;}
.y192{bottom:935.302267pt;}
.yc9{bottom:936.979867pt;}
.y191{bottom:945.968933pt;}
.y154{bottom:947.862267pt;}
.y49{bottom:948.528933pt;}
.yf1{bottom:949.284800pt;}
.yc8{bottom:952.859200pt;}
.y190{bottom:956.635600pt;}
.ye{bottom:963.490667pt;}
.y153{bottom:965.195600pt;}
.y48{bottom:965.862267pt;}
.yf0{bottom:966.618133pt;}
.y18f{bottom:967.302267pt;}
.yc7{bottom:968.738667pt;}
.y18e{bottom:977.968933pt;}
.y152{bottom:982.528933pt;}
.y47{bottom:983.195600pt;}
.yef{bottom:983.951467pt;}
.yc6{bottom:984.617867pt;}
.y18d{bottom:988.635600pt;}
.y18c{bottom:999.302267pt;}
.y151{bottom:999.862267pt;}
.y46{bottom:1000.528933pt;}
.yee{bottom:1001.284800pt;}
.yc5{bottom:1001.954400pt;}
.y18b{bottom:1009.968933pt;}
.y150{bottom:1017.195600pt;}
.y45{bottom:1017.862267pt;}
.yed{bottom:1018.618133pt;}
.yd9{bottom:1018.786667pt;}
.y18a{bottom:1020.635600pt;}
.y42{bottom:1055.893867pt;}
.h2{height:28.895833pt;}
.h5{height:33.328125pt;}
.h6{height:35.604167pt;}
.ha{height:37.333333pt;}
.h10{height:37.973333pt;}
.h3{height:40.054688pt;}
.h11{height:40.734375pt;}
.h4{height:41.132812pt;}
.hd{height:43.343750pt;}
.hc{height:44.505208pt;}
.hb{height:45.703125pt;}
.he{height:48.955729pt;}
.hf{height:50.273438pt;}
.h9{height:52.354167pt;}
.h7{height:54.843750pt;}
.h12{height:71.171875pt;}
.h8{height:74.666667pt;}
.h13{height:97.838542pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:544.000000pt;}
.w2{width:624.000267pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:8.023200pt;}
.x4{left:56.692933pt;}
.xd{left:62.362133pt;}
.x2{left:65.585333pt;}
.x1{left:66.918667pt;}
.x8{left:77.700400pt;}
.x1b{left:80.692933pt;}
.xc{left:84.808400pt;}
.x12{left:86.506533pt;}
.x10{left:91.286133pt;}
.x7{left:114.618400pt;}
.x15{left:125.813600pt;}
.x14{left:130.593200pt;}
.x13{left:179.503067pt;}
.x9{left:188.921333pt;}
.xf{left:198.659733pt;}
.x5{left:210.098533pt;}
.x6{left:315.625867pt;}
.xe{left:408.188933pt;}
.x1a{left:423.640400pt;}
.x19{left:428.420000pt;}
.x1c{left:432.188933pt;}
.x16{left:442.851333pt;}
.x17{left:529.855333pt;}
.xb{left:567.257867pt;}
.x18{left:591.669467pt;}
.x3{left:615.267333pt;}
.x11{left:657.538800pt;}
}




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