
    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_a8296d920ed8a48445c5b407.woff')format("woff");}.ff1{font-family:ff1;line-height:1.130371;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_f9bc88ee13ba83617e6df284.woff')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_4f58ee24fdbc75af5e791a29.woff')format("woff");}.ff3{font-family:ff3;line-height:1.130371;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_2c48642d5eac3fe6348d659a.woff')format("woff");}.ff4{font-family:ff4;line-height:0.921875;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_9e41a246847e12254ad2e022.woff')format("woff");}.ff5{font-family:ff5;line-height:0.754395;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_546909654fc90c281ac572b1.woff')format("woff");}.ff6{font-family:ff6;line-height:0.739746;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_51e5c11822713adbb3989369.woff')format("woff");}.ff7{font-family:ff7;line-height:1.148926;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);}
.v1{vertical-align:-41.460000px;}
.v0{vertical-align:0.000000px;}
.ls1a{letter-spacing:-3.222000px;}
.ls4{letter-spacing:-2.016000px;}
.ls19{letter-spacing:-1.914000px;}
.ls17{letter-spacing:-1.248000px;}
.ls18{letter-spacing:-0.540600px;}
.lsb{letter-spacing:-0.288000px;}
.ls1f{letter-spacing:-0.252000px;}
.ls21{letter-spacing:-0.181200px;}
.ls3{letter-spacing:-0.144000px;}
.ls5{letter-spacing:-0.131400px;}
.ls6{letter-spacing:-0.058320px;}
.ls22{letter-spacing:-0.037020px;}
.ls2{letter-spacing:-0.036000px;}
.lsd{letter-spacing:-0.018000px;}
.ls0{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.012960px;}
.ls8{letter-spacing:0.022320px;}
.ls7{letter-spacing:0.035160px;}
.lse{letter-spacing:0.085800px;}
.lsc{letter-spacing:0.108000px;}
.lsa{letter-spacing:0.144000px;}
.ls12{letter-spacing:0.180000px;}
.ls14{letter-spacing:0.183600px;}
.ls9{letter-spacing:0.213000px;}
.ls1{letter-spacing:0.216000px;}
.ls13{letter-spacing:0.238200px;}
.lsf{letter-spacing:0.256200px;}
.ls11{letter-spacing:0.319680px;}
.ls1b{letter-spacing:0.400200px;}
.ls20{letter-spacing:0.540000px;}
.ls16{letter-spacing:93.225600px;}
.ls15{letter-spacing:93.276000px;}
.ls1e{letter-spacing:97.509600px;}
.ls1d{letter-spacing:97.560000px;}
.ls1c{letter-spacing:97.680000px;}
.sc_{text-shadow:none;}
.sc8{text-shadow:-0.015em 0 rgb(42,60,141),0 0.015em rgb(42,60,141),0.015em 0 rgb(42,60,141),0 -0.015em  rgb(42,60,141);}
.sc9{text-shadow:-0.015em 0 rgb(0,255,0),0 0.015em rgb(0,255,0),0.015em 0 rgb(0,255,0),0 -0.015em  rgb(0,255,0);}
.sc7{text-shadow:-0.015em 0 rgb(223,52,144),0 0.015em rgb(223,52,144),0.015em 0 rgb(223,52,144),0 -0.015em  rgb(223,52,144);}
.sc6{text-shadow:-0.015em 0 rgb(30,67,129),0 0.015em rgb(30,67,129),0.015em 0 rgb(30,67,129),0 -0.015em  rgb(30,67,129);}
.sc5{text-shadow:-0.015em 0 rgb(255,0,0),0 0.015em rgb(255,0,0),0.015em 0 rgb(255,0,0),0 -0.015em  rgb(255,0,0);}
.sc2{text-shadow:-0.015em 0 rgb(102,255,255),0 0.015em rgb(102,255,255),0.015em 0 rgb(102,255,255),0 -0.015em  rgb(102,255,255);}
.sc3{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc1{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.sc4{text-shadow:-0.015em 0 rgb(0,255,255),0 0.015em rgb(0,255,255),0.015em 0 rgb(0,255,255),0 -0.015em  rgb(0,255,255);}
.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;}
.sc8{-webkit-text-stroke:0.015em rgb(42,60,141);text-shadow:none;}
.sc9{-webkit-text-stroke:0.015em rgb(0,255,0);text-shadow:none;}
.sc7{-webkit-text-stroke:0.015em rgb(223,52,144);text-shadow:none;}
.sc6{-webkit-text-stroke:0.015em rgb(30,67,129);text-shadow:none;}
.sc5{-webkit-text-stroke:0.015em rgb(255,0,0);text-shadow:none;}
.sc2{-webkit-text-stroke:0.015em rgb(102,255,255);text-shadow:none;}
.sc3{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc4{-webkit-text-stroke:0.015em rgb(0,255,255);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd{word-spacing:-59.750784px;}
.ws4{word-spacing:-59.718240px;}
.ws22{word-spacing:-48.848544px;}
.wsa{word-spacing:-43.446240px;}
.wse{word-spacing:-32.688000px;}
.ws9{word-spacing:-32.544000px;}
.wsf{word-spacing:-32.256000px;}
.ws1c{word-spacing:-27.174240px;}
.ws5{word-spacing:-24.440544px;}
.ws6{word-spacing:-24.408000px;}
.ws23{word-spacing:-24.372000px;}
.ws0{word-spacing:-16.304544px;}
.ws11{word-spacing:-16.272000px;}
.ws1{word-spacing:-15.002784px;}
.ws21{word-spacing:-13.538304px;}
.ws2{word-spacing:-13.505760px;}
.ws13{word-spacing:-10.902240px;}
.ws1a{word-spacing:-3.338496px;}
.ws1e{word-spacing:-3.039840px;}
.ws7{word-spacing:-1.584000px;}
.ws19{word-spacing:-1.554432px;}
.ws26{word-spacing:-1.440000px;}
.wsb{word-spacing:-0.737736px;}
.ws24{word-spacing:-0.648000px;}
.ws1b{word-spacing:-0.643464px;}
.ws14{word-spacing:-0.402480px;}
.ws25{word-spacing:-0.072000px;}
.ws3{word-spacing:0.000000px;}
.wsc{word-spacing:0.042264px;}
.ws10{word-spacing:0.288000px;}
.ws12{word-spacing:0.411360px;}
.ws16{word-spacing:0.593280px;}
.ws1f{word-spacing:0.624240px;}
.ws15{word-spacing:0.626880px;}
.ws8{word-spacing:1.152000px;}
.ws17{word-spacing:1.603440px;}
.ws18{word-spacing:2.323440px;}
.ws1d{word-spacing:2.615760px;}
.ws20{word-spacing:7.585104px;}
._13{margin-left:-16.426944px;}
._d{margin-left:-14.993472px;}
._15{margin-left:-13.084416px;}
._c{margin-left:-11.613504px;}
._8{margin-left:-9.290256px;}
._a{margin-left:-7.893984px;}
._0{margin-left:-6.627312px;}
._9{margin-left:-5.048352px;}
._1{margin-left:-4.034016px;}
._6{margin-left:-2.402592px;}
._3{margin-left:-1.015920px;}
._2{width:1.075680px;}
._5{width:2.211120px;}
._4{width:3.585600px;}
._10{width:14.536080px;}
._14{width:21.809904px;}
._7{width:23.112000px;}
._12{width:24.828096px;}
._11{width:25.848720px;}
._b{width:28.267776px;}
._e{width:102.432000px;}
._f{width:1300.564896px;}
.fcb{color:rgb(42,60,141);}
.fc8{color:rgb(30,67,129);}
.fc7{color:rgb(255,0,0);}
.fcc{color:rgb(0,255,0);}
.fca{color:rgb(223,52,144);}
.fc6{color:rgb(0,32,96);}
.fc5{color:rgb(0,255,255);}
.fc4{color:transparent;}
.fc2{color:rgb(44,187,222);}
.fc1{color:rgb(102,255,255);}
.fc9{color:rgb(95,95,95);}
.fc3{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs11{font-size:48.240000px;}
.fs12{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fsf{font-size:59.904000px;}
.fs10{font-size:66.240000px;}
.fs4{font-size:66.384000px;}
.fse{font-size:72.000000px;}
.fs3{font-size:72.144000px;}
.fs13{font-size:84.240000px;}
.fs2{font-size:108.000000px;}
.fs9{font-size:108.144000px;}
.fs6{font-size:120.240000px;}
.fs7{font-size:120.384000px;}
.fsa{font-size:144.000000px;}
.fs15{font-size:144.144000px;}
.fsd{font-size:192.240000px;}
.fsc{font-size:192.384000px;}
.fsb{font-size:216.000000px;}
.fs14{font-size:216.144000px;}
.fs8{font-size:264.240000px;}
.fs5{font-size:264.384000px;}
.fs0{font-size:288.144000px;}
.fs17{font-size:324.000000px;}
.fs16{font-size:324.144000px;}
.y0{bottom:0.000000px;}
.y8c{bottom:9.432000px;}
.ydf{bottom:12.816000px;}
.ybe{bottom:13.968000px;}
.ya2{bottom:16.056000px;}
.y7b{bottom:18.684000px;}
.y117{bottom:19.224000px;}
.y6e{bottom:19.440000px;}
.y74{bottom:20.052000px;}
.y101{bottom:21.024000px;}
.y2{bottom:21.708000px;}
.y1d{bottom:23.076000px;}
.yae{bottom:24.372000px;}
.ye8{bottom:27.684000px;}
.yb8{bottom:33.408000px;}
.y2b{bottom:39.276000px;}
.y73{bottom:41.652000px;}
.ybd{bottom:46.368000px;}
.y8f{bottom:48.024000px;}
.ya1{bottom:48.456000px;}
.y10{bottom:48.780000px;}
.y8e{bottom:50.220000px;}
.y6d{bottom:51.840000px;}
.y56{bottom:52.524000px;}
.y100{bottom:53.424000px;}
.y1c{bottom:55.476000px;}
.y65{bottom:57.204000px;}
.y41{bottom:58.068000px;}
.y11{bottom:59.904000px;}
.yad{bottom:60.372000px;}
.y72{bottom:63.252000px;}
.y39{bottom:66.924000px;}
.y112{bottom:69.012000px;}
.ye7{bottom:70.920000px;}
.yd1{bottom:71.244000px;}
.y2a{bottom:71.712000px;}
.ybc{bottom:78.804000px;}
.ya0{bottom:80.856000px;}
.y6c{bottom:84.276000px;}
.yf{bottom:84.780000px;}
.yff{bottom:85.824000px;}
.y8d{bottom:86.256000px;}
.y3b{bottom:86.904000px;}
.y1b{bottom:87.912000px;}
.y40{bottom:90.468000px;}
.yac{bottom:96.408000px;}
.y111{bottom:101.412000px;}
.y7e{bottom:101.988000px;}
.yd0{bottom:103.644000px;}
.y29{bottom:104.112000px;}
.y97{bottom:108.720000px;}
.y61{bottom:108.972000px;}
.ye6{bottom:114.120000px;}
.y6b{bottom:116.676000px;}
.ydc{bottom:116.712000px;}
.yfe{bottom:118.224000px;}
.y3a{bottom:119.304000px;}
.y1a{bottom:120.312000px;}
.ye{bottom:120.780000px;}
.y3f{bottom:122.868000px;}
.yab{bottom:132.408000px;}
.ycf{bottom:136.080000px;}
.y28{bottom:136.512000px;}
.y116{bottom:137.736000px;}
.yd7{bottom:138.708000px;}
.y31{bottom:143.964000px;}
.y6a{bottom:149.076000px;}
.ydb{bottom:149.148000px;}
.yfd{bottom:150.660000px;}
.y19{bottom:152.715000px;}
.y3e{bottom:155.265000px;}
.yd{bottom:156.810000px;}
.ya8{bottom:159.225000px;}
.y53{bottom:160.380000px;}
.y5f{bottom:161.565000px;}
.y109{bottom:164.235000px;}
.y55{bottom:164.340000px;}
.yaa{bottom:168.405000px;}
.yd6{bottom:171.105000px;}
.y35{bottom:174.315000px;}
.y30{bottom:176.400000px;}
.yda{bottom:181.545000px;}
.yfc{bottom:183.060000px;}
.y3d{bottom:187.710000px;}
.y5e{bottom:193.965000px;}
.y7a{bottom:197.790000px;}
.yd5{bottom:203.505000px;}
.ya9{bottom:204.405000px;}
.y114{bottom:205.590000px;}
.y2f{bottom:208.800000px;}
.y62{bottom:213.945000px;}
.y3c{bottom:220.110000px;}
.yb6{bottom:221.220000px;}
.y37{bottom:222.015000px;}
.y5d{bottom:226.365000px;}
.y7d{bottom:229.500000px;}
.yd4{bottom:235.905000px;}
.ya6{bottom:238.245000px;}
.y4b{bottom:238.350000px;}
.yd9{bottom:246.345000px;}
.yb7{bottom:253.830000px;}
.yfb{bottom:255.030000px;}
.y5c{bottom:258.765000px;}
.y10c{bottom:259.740000px;}
.y7c{bottom:261.900000px;}
.yd3{bottom:268.350000px;}
.y57{bottom:275.010000px;}
.y9f{bottom:277.560000px;}
.yd8{bottom:278.790000px;}
.y36{bottom:279.645000px;}
.y87{bottom:285.660000px;}
.yfa{bottom:287.460000px;}
.y5b{bottom:291.210000px;}
.y10b{bottom:292.140000px;}
.y79{bottom:306.900000px;}
.y34{bottom:315.435000px;}
.yf9{bottom:319.860000px;}
.y5a{bottom:323.610000px;}
.y10a{bottom:324.540000px;}
.y22{bottom:329.505000px;}
.y78{bottom:339.300000px;}
.yce{bottom:340.920000px;}
.ya7{bottom:342.360000px;}
.y8b{bottom:344.910000px;}
.y6{bottom:350.175000px;}
.yf8{bottom:352.260000px;}
.y59{bottom:356.010000px;}
.y3{bottom:365.865000px;}
.y21{bottom:368.385000px;}
.y104{bottom:368.460000px;}
.y77{bottom:371.700000px;}
.yb3{bottom:374.970000px;}
.yaf{bottom:379.410000px;}
.y5{bottom:384.690000px;}
.y58{bottom:388.410000px;}
.y76{bottom:404.100000px;}
.y20{bottom:407.265000px;}
.y9d{bottom:409.860000px;}
.ybb{bottom:410.655000px;}
.y4{bottom:416.310000px;}
.y103{bottom:417.060000px;}
.y113{bottom:420.915000px;}
.y8{bottom:424.905000px;}
.y45{bottom:432.510000px;}
.y75{bottom:432.750000px;}
.y7f{bottom:437.910000px;}
.yba{bottom:443.085000px;}
.yb9{bottom:444.570000px;}
.y1f{bottom:446.145000px;}
.yca{bottom:446.730000px;}
.y33{bottom:451.875000px;}
.y18{bottom:457.380000px;}
.y9c{bottom:462.990000px;}
.y110{bottom:463.710000px;}
.y44{bottom:464.910000px;}
.yc9{bottom:479.130000px;}
.y96{bottom:481.890000px;}
.y27{bottom:482.760000px;}
.y7{bottom:489.705000px;}
.y17{bottom:489.780000px;}
.yec{bottom:490.110000px;}
.y9b{bottom:495.435000px;}
.y10f{bottom:496.110000px;}
.y43{bottom:497.340000px;}
.y85{bottom:501.510000px;}
.y2e{bottom:506.700000px;}
.yf7{bottom:506.775000px;}
.yc8{bottom:511.560000px;}
.y90{bottom:513.870000px;}
.y26{bottom:515.160000px;}
.y84{bottom:515.805000px;}
.y92{bottom:518.730000px;}
.y16{bottom:522.180000px;}
.yeb{bottom:522.510000px;}
.y108{bottom:523.110000px;}
.y9a{bottom:527.835000px;}
.y10e{bottom:528.510000px;}
.ycd{bottom:530.640000px;}
.yb5{bottom:533.415000px;}
.y2d{bottom:539.100000px;}
.yf6{bottom:539.175000px;}
.yc7{bottom:543.960000px;}
.yc{bottom:544.830000px;}
.y25{bottom:547.560000px;}
.y91{bottom:551.130000px;}
.y15{bottom:554.580000px;}
.yea{bottom:554.910000px;}
.y107{bottom:555.555000px;}
.y99{bottom:560.235000px;}
.ye4{bottom:560.310000px;}
.ycc{bottom:563.040000px;}
.y1{bottom:571.530000px;}
.yf5{bottom:571.605000px;}
.yc6{bottom:576.360000px;}
.ye5{bottom:579.240000px;}
.yb{bottom:580.830000px;}
.y14{bottom:586.980000px;}
.ye9{bottom:587.340000px;}
.y106{bottom:587.955000px;}
.y98{bottom:592.635000px;}
.ycb{bottom:595.440000px;}
.y4f{bottom:598.140000px;}
.y83{bottom:603.285000px;}
.yf4{bottom:604.005000px;}
.y69{bottom:604.230000px;}
.y80{bottom:604.650000px;}
.yc5{bottom:608.760000px;}
.y89{bottom:610.560000px;}
.ya{bottom:616.830000px;}
.y13{bottom:619.410000px;}
.y105{bottom:620.355000px;}
.y49{bottom:630.930000px;}
.yf3{bottom:636.405000px;}
.y10d{bottom:637.305000px;}
.ya4{bottom:638.025000px;}
.yc4{bottom:641.160000px;}
.yf1{bottom:642.345000px;}
.y88{bottom:642.960000px;}
.y82{bottom:646.050000px;}
.y95{bottom:647.430000px;}
.y68{bottom:647.460000px;}
.y42{bottom:651.165000px;}
.y12{bottom:651.810000px;}
.ye0{bottom:655.350000px;}
.yb4{bottom:656.745000px;}
.yb2{bottom:658.185000px;}
.y54{bottom:661.425000px;}
.y64{bottom:661.890000px;}
.y48{bottom:663.375000px;}
.y102{bottom:666.180000px;}
.y94{bottom:669.030000px;}
.y4a{bottom:669.135000px;}
.y2c{bottom:670.395000px;}
.y24{bottom:673.050000px;}
.y4e{bottom:673.125000px;}
.yf0{bottom:674.790000px;}
.y52{bottom:676.725000px;}
.ya3{bottom:677.670000px;}
.y81{bottom:678.450000px;}
.ye3{bottom:678.885000px;}
.y32{bottom:680.070000px;}
.yc3{bottom:680.610000px;}
.ybf{bottom:682.560000px;}
.y67{bottom:690.660000px;}
.y93{bottom:692.250000px;}
.y9{bottom:694.650000px;}
.yf2{bottom:694.725000px;}
.y47{bottom:695.775000px;}
.y23{bottom:696.270000px;}
.y9e{bottom:697.290000px;}
.y60{bottom:699.270000px;}
.yd2{bottom:700.125000px;}
.y1e{bottom:700.770000px;}
.y4d{bottom:705.570000px;}
.yef{bottom:707.190000px;}
.y51{bottom:709.125000px;}
.ye2{bottom:711.285000px;}
.y71{bottom:712.005000px;}
.yb1{bottom:713.520000px;}
.yc1{bottom:714.675000px;}
.yc0{bottom:715.140000px;}
.y6f{bottom:715.530000px;}
.y63{bottom:717.480000px;}
.y38{bottom:721.365000px;}
.yde{bottom:724.530000px;}
.y115{bottom:724.830000px;}
.y86{bottom:725.145000px;}
.y46{bottom:728.175000px;}
.ya5{bottom:731.235000px;}
.y66{bottom:733.860000px;}
.y4c{bottom:737.970000px;}
.yee{bottom:739.590000px;}
.y50{bottom:741.570000px;}
.ye1{bottom:743.685000px;}
.y70{bottom:744.405000px;}
.yc2{bottom:745.410000px;}
.yb0{bottom:757.230000px;}
.ydd{bottom:766.950000px;}
.yed{bottom:771.990000px;}
.y8a{bottom:784.335000px;}
.h17{height:44.002969px;}
.h13{height:47.980898px;}
.h14{height:49.680000px;}
.h16{height:53.709961px;}
.h6{height:56.900391px;}
.h2{height:59.439023px;}
.h11{height:59.582250px;}
.h15{height:63.070312px;}
.h12{height:65.884219px;}
.h5{height:66.027445px;}
.h4{height:68.691797px;}
.h10{height:71.613281px;}
.h18{height:83.787539px;}
.h3{height:102.832031px;}
.hb{height:102.969141px;}
.h1a{height:107.419922px;}
.h8{height:114.486328px;}
.h9{height:114.623437px;}
.hc{height:137.109375px;}
.h1b{height:137.246484px;}
.hf{height:183.041016px;}
.he{height:183.178125px;}
.hd{height:205.664062px;}
.h19{height:205.801172px;}
.ha{height:251.595703px;}
.h7{height:251.732813px;}
.h1{height:274.355859px;}
.h1d{height:331.751953px;}
.h1c{height:331.899398px;}
.h0{height:810.000000px;}
.w1{width:1079.999984px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x69{left:10.799984px;}
.xbe{left:14.255984px;}
.x30{left:18.683984px;}
.xcb{left:20.735984px;}
.xc2{left:24.515984px;}
.xdc{left:30.707984px;}
.x23{left:33.191984px;}
.x56{left:34.919984px;}
.xb5{left:40.427984px;}
.x4{left:41.543984px;}
.x22{left:43.091984px;}
.xb4{left:44.747984px;}
.x21{left:46.151984px;}
.x55{left:47.195984px;}
.x38{left:50.075984px;}
.xa4{left:51.839984px;}
.x3b{left:54.395984px;}
.x57{left:56.375984px;}
.x11{left:58.355984px;}
.x3a{left:59.795984px;}
.x9{left:61.991984px;}
.x51{left:64.079984px;}
.x99{left:65.087984px;}
.x25{left:66.491984px;}
.x24{left:68.111984px;}
.x90{left:70.667984px;}
.x43{left:73.223984px;}
.x77{left:74.987984px;}
.x5{left:77.939984px;}
.x7c{left:79.307984px;}
.x58{left:80.495984px;}
.xb6{left:82.367984px;}
.x1e{left:85.067984px;}
.xcf{left:86.147984px;}
.x4e{left:91.223984px;}
.xb3{left:95.003984px;}
.x4d{left:97.343984px;}
.xd0{left:98.567984px;}
.x7e{left:99.827984px;}
.x8f{left:108.503984px;}
.x9a{left:116.855984px;}
.x44{left:123.263984px;}
.x95{left:124.451984px;}
.xb1{left:127.367984px;}
.x2{left:128.555984px;}
.x6{left:129.887984px;}
.x91{left:133.343984px;}
.xb0{left:138.527984px;}
.x78{left:139.607984px;}
.x1{left:141.227984px;}
.x7d{left:148.067984px;}
.xb2{left:149.147984px;}
.xb7{left:152.249984px;}
.x83{left:160.124984px;}
.x6f{left:166.934984px;}
.xa7{left:180.074984px;}
.x87{left:181.109984px;}
.x45{left:182.849984px;}
.xc5{left:184.934984px;}
.x76{left:198.869984px;}
.x96{left:201.059984px;}
.x28{left:217.334984px;}
.xd4{left:222.659984px;}
.xc6{left:224.384984px;}
.xd5{left:227.309984px;}
.xd6{left:230.549984px;}
.x97{left:234.899984px;}
.xf{left:237.674984px;}
.x29{left:240.914984px;}
.x39{left:247.139984px;}
.x93{left:252.209984px;}
.x9d{left:258.584984px;}
.xdd{left:260.249984px;}
.x8{left:267.584984px;}
.x54{left:273.449984px;}
.x82{left:281.309984px;}
.x10{left:283.604984px;}
.xc4{left:286.844984px;}
.x42{left:288.329984px;}
.x71{left:291.854984px;}
.x7{left:298.904984px;}
.x70{left:309.524984px;}
.xa0{left:326.879984px;}
.x9f{left:332.279984px;}
.x35{left:335.774984px;}
.x1b{left:338.114984px;}
.x26{left:339.374984px;}
.x37{left:341.714984px;}
.x1a{left:343.514984px;}
.x64{left:347.504984px;}
.x5d{left:350.174984px;}
.x4b{left:357.194984px;}
.x27{left:358.634984px;}
.x16{left:360.614984px;}
.x4a{left:362.054984px;}
.xa6{left:363.314984px;}
.x3{left:365.009984px;}
.x12{left:366.014984px;}
.x1c{left:367.634984px;}
.x67{left:369.074984px;}
.x50{left:370.154984px;}
.x14{left:373.214984px;}
.x13{left:375.374984px;}
.x8b{left:379.154984px;}
.xe{left:380.984984px;}
.x8a{left:382.574984px;}
.x17{left:387.614984px;}
.xa5{left:392.114984px;}
.x8c{left:396.614984px;}
.x65{left:404.024984px;}
.x36{left:405.254984px;}
.x52{left:407.054984px;}
.x7b{left:410.549984px;}
.x15{left:413.564984px;}
.x53{left:415.694984px;}
.x68{left:420.194984px;}
.x5e{left:421.994984px;}
.x59{left:428.039984px;}
.xaa{left:430.199984px;}
.xd{left:434.444984px;}
.xab{left:436.889984px;}
.xa9{left:443.909984px;}
.x31{left:447.689984px;}
.xa8{left:450.569984px;}
.x32{left:451.799984px;}
.x4f{left:457.409984px;}
.xac{left:458.849984px;}
.x9e{left:464.219984px;}
.x5a{left:469.514984px;}
.xc3{left:470.954984px;}
.xd2{left:472.289984px;}
.x66{left:474.269984px;}
.xd1{left:479.309984px;}
.x18{left:484.484984px;}
.x1d{left:489.884984px;}
.x2b{left:491.609984px;}
.x85{left:499.649984px;}
.xbc{left:505.004984px;}
.x86{left:519.449984px;}
.x2a{left:532.469984px;}
.x2c{left:536.969984px;}
.x19{left:544.424984px;}
.x81{left:547.199984px;}
.x89{left:571.034984px;}
.xd3{left:581.759984px;}
.x88{left:596.189984px;}
.x5f{left:604.289984px;}
.x61{left:611.894984px;}
.x63{left:613.514984px;}
.x1f{left:620.024984px;}
.x6b{left:625.529984px;}
.x20{left:628.124984px;}
.x6a{left:630.389984px;}
.x60{left:645.374984px;}
.x46{left:647.489984px;}
.x4c{left:651.749984px;}
.xda{left:653.969984px;}
.xb{left:658.979984px;}
.xdb{left:669.419984px;}
.x75{left:674.999984px;}
.xc{left:677.519984px;}
.xa{left:681.119984px;}
.xcd{left:682.229984px;}
.x47{left:687.629984px;}
.xb8{left:691.589984px;}
.x62{left:698.654984px;}
.xc0{left:709.454984px;}
.xbf{left:716.294984px;}
.xce{left:720.749984px;}
.xcc{left:727.589984px;}
.x49{left:733.889984px;}
.x48{left:735.869984px;}
.xa1{left:743.969984px;}
.xa3{left:745.769984px;}
.xbd{left:750.599984px;}
.xb9{left:752.789984px;}
.x2e{left:753.989984px;}
.x2d{left:758.849984px;}
.x73{left:761.039984px;}
.x79{left:762.944984px;}
.xca{left:765.719984px;}
.xc9{left:768.779984px;}
.xa2{left:774.974984px;}
.xc8{left:779.399984px;}
.x9b{left:782.819984px;}
.x72{left:787.169984px;}
.xba{left:791.669984px;}
.x92{left:794.054984px;}
.xd8{left:795.059984px;}
.x2f{left:797.009984px;}
.xad{left:804.449984px;}
.x80{left:826.049984px;}
.xae{left:828.389984px;}
.xbb{left:829.439984px;}
.x40{left:831.164984px;}
.xc7{left:833.939984px;}
.x3d{left:835.484984px;}
.x3e{left:837.824984px;}
.x3c{left:840.344984px;}
.x3f{left:844.664984px;}
.x5c{left:846.464984px;}
.x34{left:862.994984px;}
.x33{left:865.334984px;}
.x41{left:867.344984px;}
.xd9{left:873.179984px;}
.x8d{left:875.669984px;}
.x7f{left:882.749984px;}
.x9c{left:884.054984px;}
.x74{left:895.319984px;}
.xc1{left:897.734984px;}
.xaf{left:900.644984px;}
.x98{left:914.504984px;}
.x6c{left:920.594984px;}
.x6e{left:922.934984px;}
.x8e{left:950.069984px;}
.x7a{left:951.734984px;}
.x84{left:967.604984px;}
.x6d{left:982.544984px;}
.x94{left:987.584984px;}
.x5b{left:1000.229984px;}
.xd7{left:1008.869984px;}
@media print{
.v1{vertical-align:-36.853333pt;}
.v0{vertical-align:0.000000pt;}
.ls1a{letter-spacing:-2.864000pt;}
.ls4{letter-spacing:-1.792000pt;}
.ls19{letter-spacing:-1.701333pt;}
.ls17{letter-spacing:-1.109333pt;}
.ls18{letter-spacing:-0.480533pt;}
.lsb{letter-spacing:-0.256000pt;}
.ls1f{letter-spacing:-0.224000pt;}
.ls21{letter-spacing:-0.161067pt;}
.ls3{letter-spacing:-0.128000pt;}
.ls5{letter-spacing:-0.116800pt;}
.ls6{letter-spacing:-0.051840pt;}
.ls22{letter-spacing:-0.032907pt;}
.ls2{letter-spacing:-0.032000pt;}
.lsd{letter-spacing:-0.016000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.011520pt;}
.ls8{letter-spacing:0.019840pt;}
.ls7{letter-spacing:0.031253pt;}
.lse{letter-spacing:0.076267pt;}
.lsc{letter-spacing:0.096000pt;}
.lsa{letter-spacing:0.128000pt;}
.ls12{letter-spacing:0.160000pt;}
.ls14{letter-spacing:0.163200pt;}
.ls9{letter-spacing:0.189333pt;}
.ls1{letter-spacing:0.192000pt;}
.ls13{letter-spacing:0.211733pt;}
.lsf{letter-spacing:0.227733pt;}
.ls11{letter-spacing:0.284160pt;}
.ls1b{letter-spacing:0.355733pt;}
.ls20{letter-spacing:0.480000pt;}
.ls16{letter-spacing:82.867200pt;}
.ls15{letter-spacing:82.912000pt;}
.ls1e{letter-spacing:86.675200pt;}
.ls1d{letter-spacing:86.720000pt;}
.ls1c{letter-spacing:86.826667pt;}
.wsd{word-spacing:-53.111808pt;}
.ws4{word-spacing:-53.082880pt;}
.ws22{word-spacing:-43.420928pt;}
.wsa{word-spacing:-38.618880pt;}
.wse{word-spacing:-29.056000pt;}
.ws9{word-spacing:-28.928000pt;}
.wsf{word-spacing:-28.672000pt;}
.ws1c{word-spacing:-24.154880pt;}
.ws5{word-spacing:-21.724928pt;}
.ws6{word-spacing:-21.696000pt;}
.ws23{word-spacing:-21.664000pt;}
.ws0{word-spacing:-14.492928pt;}
.ws11{word-spacing:-14.464000pt;}
.ws1{word-spacing:-13.335808pt;}
.ws21{word-spacing:-12.034048pt;}
.ws2{word-spacing:-12.005120pt;}
.ws13{word-spacing:-9.690880pt;}
.ws1a{word-spacing:-2.967552pt;}
.ws1e{word-spacing:-2.702080pt;}
.ws7{word-spacing:-1.408000pt;}
.ws19{word-spacing:-1.381717pt;}
.ws26{word-spacing:-1.280000pt;}
.wsb{word-spacing:-0.655765pt;}
.ws24{word-spacing:-0.576000pt;}
.ws1b{word-spacing:-0.571968pt;}
.ws14{word-spacing:-0.357760pt;}
.ws25{word-spacing:-0.064000pt;}
.ws3{word-spacing:0.000000pt;}
.wsc{word-spacing:0.037568pt;}
.ws10{word-spacing:0.256000pt;}
.ws12{word-spacing:0.365653pt;}
.ws16{word-spacing:0.527360pt;}
.ws1f{word-spacing:0.554880pt;}
.ws15{word-spacing:0.557227pt;}
.ws8{word-spacing:1.024000pt;}
.ws17{word-spacing:1.425280pt;}
.ws18{word-spacing:2.065280pt;}
.ws1d{word-spacing:2.325120pt;}
.ws20{word-spacing:6.742315pt;}
._13{margin-left:-14.601728pt;}
._d{margin-left:-13.327531pt;}
._15{margin-left:-11.630592pt;}
._c{margin-left:-10.323115pt;}
._8{margin-left:-8.258005pt;}
._a{margin-left:-7.016875pt;}
._0{margin-left:-5.890944pt;}
._9{margin-left:-4.487424pt;}
._1{margin-left:-3.585792pt;}
._6{margin-left:-2.135637pt;}
._3{margin-left:-0.903040pt;}
._2{width:0.956160pt;}
._5{width:1.965440pt;}
._4{width:3.187200pt;}
._10{width:12.920960pt;}
._14{width:19.386581pt;}
._7{width:20.544000pt;}
._12{width:22.069419pt;}
._11{width:22.976640pt;}
._b{width:25.126912pt;}
._e{width:91.050667pt;}
._f{width:1156.057685pt;}
.fs11{font-size:42.880000pt;}
.fs12{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fsf{font-size:53.248000pt;}
.fs10{font-size:58.880000pt;}
.fs4{font-size:59.008000pt;}
.fse{font-size:64.000000pt;}
.fs3{font-size:64.128000pt;}
.fs13{font-size:74.880000pt;}
.fs2{font-size:96.000000pt;}
.fs9{font-size:96.128000pt;}
.fs6{font-size:106.880000pt;}
.fs7{font-size:107.008000pt;}
.fsa{font-size:128.000000pt;}
.fs15{font-size:128.128000pt;}
.fsd{font-size:170.880000pt;}
.fsc{font-size:171.008000pt;}
.fsb{font-size:192.000000pt;}
.fs14{font-size:192.128000pt;}
.fs8{font-size:234.880000pt;}
.fs5{font-size:235.008000pt;}
.fs0{font-size:256.128000pt;}
.fs17{font-size:288.000000pt;}
.fs16{font-size:288.128000pt;}
.y0{bottom:0.000000pt;}
.y8c{bottom:8.384000pt;}
.ydf{bottom:11.392000pt;}
.ybe{bottom:12.416000pt;}
.ya2{bottom:14.272000pt;}
.y7b{bottom:16.608000pt;}
.y117{bottom:17.088000pt;}
.y6e{bottom:17.280000pt;}
.y74{bottom:17.824000pt;}
.y101{bottom:18.688000pt;}
.y2{bottom:19.296000pt;}
.y1d{bottom:20.512000pt;}
.yae{bottom:21.664000pt;}
.ye8{bottom:24.608000pt;}
.yb8{bottom:29.696000pt;}
.y2b{bottom:34.912000pt;}
.y73{bottom:37.024000pt;}
.ybd{bottom:41.216000pt;}
.y8f{bottom:42.688000pt;}
.ya1{bottom:43.072000pt;}
.y10{bottom:43.360000pt;}
.y8e{bottom:44.640000pt;}
.y6d{bottom:46.080000pt;}
.y56{bottom:46.688000pt;}
.y100{bottom:47.488000pt;}
.y1c{bottom:49.312000pt;}
.y65{bottom:50.848000pt;}
.y41{bottom:51.616000pt;}
.y11{bottom:53.248000pt;}
.yad{bottom:53.664000pt;}
.y72{bottom:56.224000pt;}
.y39{bottom:59.488000pt;}
.y112{bottom:61.344000pt;}
.ye7{bottom:63.040000pt;}
.yd1{bottom:63.328000pt;}
.y2a{bottom:63.744000pt;}
.ybc{bottom:70.048000pt;}
.ya0{bottom:71.872000pt;}
.y6c{bottom:74.912000pt;}
.yf{bottom:75.360000pt;}
.yff{bottom:76.288000pt;}
.y8d{bottom:76.672000pt;}
.y3b{bottom:77.248000pt;}
.y1b{bottom:78.144000pt;}
.y40{bottom:80.416000pt;}
.yac{bottom:85.696000pt;}
.y111{bottom:90.144000pt;}
.y7e{bottom:90.656000pt;}
.yd0{bottom:92.128000pt;}
.y29{bottom:92.544000pt;}
.y97{bottom:96.640000pt;}
.y61{bottom:96.864000pt;}
.ye6{bottom:101.440000pt;}
.y6b{bottom:103.712000pt;}
.ydc{bottom:103.744000pt;}
.yfe{bottom:105.088000pt;}
.y3a{bottom:106.048000pt;}
.y1a{bottom:106.944000pt;}
.ye{bottom:107.360000pt;}
.y3f{bottom:109.216000pt;}
.yab{bottom:117.696000pt;}
.ycf{bottom:120.960000pt;}
.y28{bottom:121.344000pt;}
.y116{bottom:122.432000pt;}
.yd7{bottom:123.296000pt;}
.y31{bottom:127.968000pt;}
.y6a{bottom:132.512000pt;}
.ydb{bottom:132.576000pt;}
.yfd{bottom:133.920000pt;}
.y19{bottom:135.746667pt;}
.y3e{bottom:138.013333pt;}
.yd{bottom:139.386667pt;}
.ya8{bottom:141.533333pt;}
.y53{bottom:142.560000pt;}
.y5f{bottom:143.613333pt;}
.y109{bottom:145.986667pt;}
.y55{bottom:146.080000pt;}
.yaa{bottom:149.693333pt;}
.yd6{bottom:152.093333pt;}
.y35{bottom:154.946667pt;}
.y30{bottom:156.800000pt;}
.yda{bottom:161.373333pt;}
.yfc{bottom:162.720000pt;}
.y3d{bottom:166.853333pt;}
.y5e{bottom:172.413333pt;}
.y7a{bottom:175.813333pt;}
.yd5{bottom:180.893333pt;}
.ya9{bottom:181.693333pt;}
.y114{bottom:182.746667pt;}
.y2f{bottom:185.600000pt;}
.y62{bottom:190.173333pt;}
.y3c{bottom:195.653333pt;}
.yb6{bottom:196.640000pt;}
.y37{bottom:197.346667pt;}
.y5d{bottom:201.213333pt;}
.y7d{bottom:204.000000pt;}
.yd4{bottom:209.693333pt;}
.ya6{bottom:211.773333pt;}
.y4b{bottom:211.866667pt;}
.yd9{bottom:218.973333pt;}
.yb7{bottom:225.626667pt;}
.yfb{bottom:226.693333pt;}
.y5c{bottom:230.013333pt;}
.y10c{bottom:230.880000pt;}
.y7c{bottom:232.800000pt;}
.yd3{bottom:238.533333pt;}
.y57{bottom:244.453333pt;}
.y9f{bottom:246.720000pt;}
.yd8{bottom:247.813333pt;}
.y36{bottom:248.573333pt;}
.y87{bottom:253.920000pt;}
.yfa{bottom:255.520000pt;}
.y5b{bottom:258.853333pt;}
.y10b{bottom:259.680000pt;}
.y79{bottom:272.800000pt;}
.y34{bottom:280.386667pt;}
.yf9{bottom:284.320000pt;}
.y5a{bottom:287.653333pt;}
.y10a{bottom:288.480000pt;}
.y22{bottom:292.893333pt;}
.y78{bottom:301.600000pt;}
.yce{bottom:303.040000pt;}
.ya7{bottom:304.320000pt;}
.y8b{bottom:306.586667pt;}
.y6{bottom:311.266667pt;}
.yf8{bottom:313.120000pt;}
.y59{bottom:316.453333pt;}
.y3{bottom:325.213333pt;}
.y21{bottom:327.453333pt;}
.y104{bottom:327.520000pt;}
.y77{bottom:330.400000pt;}
.yb3{bottom:333.306667pt;}
.yaf{bottom:337.253333pt;}
.y5{bottom:341.946667pt;}
.y58{bottom:345.253333pt;}
.y76{bottom:359.200000pt;}
.y20{bottom:362.013333pt;}
.y9d{bottom:364.320000pt;}
.ybb{bottom:365.026667pt;}
.y4{bottom:370.053333pt;}
.y103{bottom:370.720000pt;}
.y113{bottom:374.146667pt;}
.y8{bottom:377.693333pt;}
.y45{bottom:384.453333pt;}
.y75{bottom:384.666667pt;}
.y7f{bottom:389.253333pt;}
.yba{bottom:393.853333pt;}
.yb9{bottom:395.173333pt;}
.y1f{bottom:396.573333pt;}
.yca{bottom:397.093333pt;}
.y33{bottom:401.666667pt;}
.y18{bottom:406.560000pt;}
.y9c{bottom:411.546667pt;}
.y110{bottom:412.186667pt;}
.y44{bottom:413.253333pt;}
.yc9{bottom:425.893333pt;}
.y96{bottom:428.346667pt;}
.y27{bottom:429.120000pt;}
.y7{bottom:435.293333pt;}
.y17{bottom:435.360000pt;}
.yec{bottom:435.653333pt;}
.y9b{bottom:440.386667pt;}
.y10f{bottom:440.986667pt;}
.y43{bottom:442.080000pt;}
.y85{bottom:445.786667pt;}
.y2e{bottom:450.400000pt;}
.yf7{bottom:450.466667pt;}
.yc8{bottom:454.720000pt;}
.y90{bottom:456.773333pt;}
.y26{bottom:457.920000pt;}
.y84{bottom:458.493333pt;}
.y92{bottom:461.093333pt;}
.y16{bottom:464.160000pt;}
.yeb{bottom:464.453333pt;}
.y108{bottom:464.986667pt;}
.y9a{bottom:469.186667pt;}
.y10e{bottom:469.786667pt;}
.ycd{bottom:471.680000pt;}
.yb5{bottom:474.146667pt;}
.y2d{bottom:479.200000pt;}
.yf6{bottom:479.266667pt;}
.yc7{bottom:483.520000pt;}
.yc{bottom:484.293333pt;}
.y25{bottom:486.720000pt;}
.y91{bottom:489.893333pt;}
.y15{bottom:492.960000pt;}
.yea{bottom:493.253333pt;}
.y107{bottom:493.826667pt;}
.y99{bottom:497.986667pt;}
.ye4{bottom:498.053333pt;}
.ycc{bottom:500.480000pt;}
.y1{bottom:508.026667pt;}
.yf5{bottom:508.093333pt;}
.yc6{bottom:512.320000pt;}
.ye5{bottom:514.880000pt;}
.yb{bottom:516.293333pt;}
.y14{bottom:521.760000pt;}
.ye9{bottom:522.080000pt;}
.y106{bottom:522.626667pt;}
.y98{bottom:526.786667pt;}
.ycb{bottom:529.280000pt;}
.y4f{bottom:531.680000pt;}
.y83{bottom:536.253333pt;}
.yf4{bottom:536.893333pt;}
.y69{bottom:537.093333pt;}
.y80{bottom:537.466667pt;}
.yc5{bottom:541.120000pt;}
.y89{bottom:542.720000pt;}
.ya{bottom:548.293333pt;}
.y13{bottom:550.586667pt;}
.y105{bottom:551.426667pt;}
.y49{bottom:560.826667pt;}
.yf3{bottom:565.693333pt;}
.y10d{bottom:566.493333pt;}
.ya4{bottom:567.133333pt;}
.yc4{bottom:569.920000pt;}
.yf1{bottom:570.973333pt;}
.y88{bottom:571.520000pt;}
.y82{bottom:574.266667pt;}
.y95{bottom:575.493333pt;}
.y68{bottom:575.520000pt;}
.y42{bottom:578.813333pt;}
.y12{bottom:579.386667pt;}
.ye0{bottom:582.533333pt;}
.yb4{bottom:583.773333pt;}
.yb2{bottom:585.053333pt;}
.y54{bottom:587.933333pt;}
.y64{bottom:588.346667pt;}
.y48{bottom:589.666667pt;}
.y102{bottom:592.160000pt;}
.y94{bottom:594.693333pt;}
.y4a{bottom:594.786667pt;}
.y2c{bottom:595.906667pt;}
.y24{bottom:598.266667pt;}
.y4e{bottom:598.333333pt;}
.yf0{bottom:599.813333pt;}
.y52{bottom:601.533333pt;}
.ya3{bottom:602.373333pt;}
.y81{bottom:603.066667pt;}
.ye3{bottom:603.453333pt;}
.y32{bottom:604.506667pt;}
.yc3{bottom:604.986667pt;}
.ybf{bottom:606.720000pt;}
.y67{bottom:613.920000pt;}
.y93{bottom:615.333333pt;}
.y9{bottom:617.466667pt;}
.yf2{bottom:617.533333pt;}
.y47{bottom:618.466667pt;}
.y23{bottom:618.906667pt;}
.y9e{bottom:619.813333pt;}
.y60{bottom:621.573333pt;}
.yd2{bottom:622.333333pt;}
.y1e{bottom:622.906667pt;}
.y4d{bottom:627.173333pt;}
.yef{bottom:628.613333pt;}
.y51{bottom:630.333333pt;}
.ye2{bottom:632.253333pt;}
.y71{bottom:632.893333pt;}
.yb1{bottom:634.240000pt;}
.yc1{bottom:635.266667pt;}
.yc0{bottom:635.680000pt;}
.y6f{bottom:636.026667pt;}
.y63{bottom:637.760000pt;}
.y38{bottom:641.213333pt;}
.yde{bottom:644.026667pt;}
.y115{bottom:644.293333pt;}
.y86{bottom:644.573333pt;}
.y46{bottom:647.266667pt;}
.ya5{bottom:649.986667pt;}
.y66{bottom:652.320000pt;}
.y4c{bottom:655.973333pt;}
.yee{bottom:657.413333pt;}
.y50{bottom:659.173333pt;}
.ye1{bottom:661.053333pt;}
.y70{bottom:661.693333pt;}
.yc2{bottom:662.586667pt;}
.yb0{bottom:673.093333pt;}
.ydd{bottom:681.733333pt;}
.yed{bottom:686.213333pt;}
.y8a{bottom:697.186667pt;}
.h17{height:39.113750pt;}
.h13{height:42.649687pt;}
.h14{height:44.160000pt;}
.h16{height:47.742188pt;}
.h6{height:50.578125pt;}
.h2{height:52.834688pt;}
.h11{height:52.962000pt;}
.h15{height:56.062500pt;}
.h12{height:58.563750pt;}
.h5{height:58.691063pt;}
.h4{height:61.059375pt;}
.h10{height:63.656250pt;}
.h18{height:74.477812pt;}
.h3{height:91.406250pt;}
.hb{height:91.528125pt;}
.h1a{height:95.484375pt;}
.h8{height:101.765625pt;}
.h9{height:101.887500pt;}
.hc{height:121.875000pt;}
.h1b{height:121.996875pt;}
.hf{height:162.703125pt;}
.he{height:162.825000pt;}
.hd{height:182.812500pt;}
.h19{height:182.934375pt;}
.ha{height:223.640625pt;}
.h7{height:223.762500pt;}
.h1{height:243.871875pt;}
.h1d{height:294.890625pt;}
.h1c{height:295.021687pt;}
.h0{height:720.000000pt;}
.w1{width:959.999986pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x69{left:9.599986pt;}
.xbe{left:12.671986pt;}
.x30{left:16.607986pt;}
.xcb{left:18.431986pt;}
.xc2{left:21.791986pt;}
.xdc{left:27.295986pt;}
.x23{left:29.503986pt;}
.x56{left:31.039986pt;}
.xb5{left:35.935986pt;}
.x4{left:36.927986pt;}
.x22{left:38.303986pt;}
.xb4{left:39.775986pt;}
.x21{left:41.023986pt;}
.x55{left:41.951986pt;}
.x38{left:44.511986pt;}
.xa4{left:46.079986pt;}
.x3b{left:48.351986pt;}
.x57{left:50.111986pt;}
.x11{left:51.871986pt;}
.x3a{left:53.151986pt;}
.x9{left:55.103986pt;}
.x51{left:56.959986pt;}
.x99{left:57.855986pt;}
.x25{left:59.103986pt;}
.x24{left:60.543986pt;}
.x90{left:62.815986pt;}
.x43{left:65.087986pt;}
.x77{left:66.655986pt;}
.x5{left:69.279986pt;}
.x7c{left:70.495986pt;}
.x58{left:71.551986pt;}
.xb6{left:73.215986pt;}
.x1e{left:75.615986pt;}
.xcf{left:76.575986pt;}
.x4e{left:81.087986pt;}
.xb3{left:84.447986pt;}
.x4d{left:86.527986pt;}
.xd0{left:87.615986pt;}
.x7e{left:88.735986pt;}
.x8f{left:96.447986pt;}
.x9a{left:103.871986pt;}
.x44{left:109.567986pt;}
.x95{left:110.623986pt;}
.xb1{left:113.215986pt;}
.x2{left:114.271986pt;}
.x6{left:115.455986pt;}
.x91{left:118.527986pt;}
.xb0{left:123.135986pt;}
.x78{left:124.095986pt;}
.x1{left:125.535986pt;}
.x7d{left:131.615986pt;}
.xb2{left:132.575986pt;}
.xb7{left:135.333319pt;}
.x83{left:142.333319pt;}
.x6f{left:148.386652pt;}
.xa7{left:160.066652pt;}
.x87{left:160.986652pt;}
.x45{left:162.533319pt;}
.xc5{left:164.386652pt;}
.x76{left:176.773319pt;}
.x96{left:178.719986pt;}
.x28{left:193.186652pt;}
.xd4{left:197.919986pt;}
.xc6{left:199.453319pt;}
.xd5{left:202.053319pt;}
.xd6{left:204.933319pt;}
.x97{left:208.799986pt;}
.xf{left:211.266652pt;}
.x29{left:214.146652pt;}
.x39{left:219.679986pt;}
.x93{left:224.186652pt;}
.x9d{left:229.853319pt;}
.xdd{left:231.333319pt;}
.x8{left:237.853319pt;}
.x54{left:243.066652pt;}
.x82{left:250.053319pt;}
.x10{left:252.093319pt;}
.xc4{left:254.973319pt;}
.x42{left:256.293319pt;}
.x71{left:259.426652pt;}
.x7{left:265.693319pt;}
.x70{left:275.133319pt;}
.xa0{left:290.559986pt;}
.x9f{left:295.359986pt;}
.x35{left:298.466652pt;}
.x1b{left:300.546652pt;}
.x26{left:301.666652pt;}
.x37{left:303.746652pt;}
.x1a{left:305.346652pt;}
.x64{left:308.893319pt;}
.x5d{left:311.266652pt;}
.x4b{left:317.506652pt;}
.x27{left:318.786652pt;}
.x16{left:320.546652pt;}
.x4a{left:321.826652pt;}
.xa6{left:322.946652pt;}
.x3{left:324.453319pt;}
.x12{left:325.346652pt;}
.x1c{left:326.786652pt;}
.x67{left:328.066652pt;}
.x50{left:329.026652pt;}
.x14{left:331.746652pt;}
.x13{left:333.666652pt;}
.x8b{left:337.026652pt;}
.xe{left:338.653319pt;}
.x8a{left:340.066652pt;}
.x17{left:344.546652pt;}
.xa5{left:348.546652pt;}
.x8c{left:352.546652pt;}
.x65{left:359.133319pt;}
.x36{left:360.226652pt;}
.x52{left:361.826652pt;}
.x7b{left:364.933319pt;}
.x15{left:367.613319pt;}
.x53{left:369.506652pt;}
.x68{left:373.506652pt;}
.x5e{left:375.106652pt;}
.x59{left:380.479986pt;}
.xaa{left:382.399986pt;}
.xd{left:386.173319pt;}
.xab{left:388.346652pt;}
.xa9{left:394.586652pt;}
.x31{left:397.946652pt;}
.xa8{left:400.506652pt;}
.x32{left:401.599986pt;}
.x4f{left:406.586652pt;}
.xac{left:407.866652pt;}
.x9e{left:412.639986pt;}
.x5a{left:417.346652pt;}
.xc3{left:418.626652pt;}
.xd2{left:419.813319pt;}
.x66{left:421.573319pt;}
.xd1{left:426.053319pt;}
.x18{left:430.653319pt;}
.x1d{left:435.453319pt;}
.x2b{left:436.986652pt;}
.x85{left:444.133319pt;}
.xbc{left:448.893319pt;}
.x86{left:461.733319pt;}
.x2a{left:473.306652pt;}
.x2c{left:477.306652pt;}
.x19{left:483.933319pt;}
.x81{left:486.399986pt;}
.x89{left:507.586652pt;}
.xd3{left:517.119986pt;}
.x88{left:529.946652pt;}
.x5f{left:537.146652pt;}
.x61{left:543.906652pt;}
.x63{left:545.346652pt;}
.x1f{left:551.133319pt;}
.x6b{left:556.026652pt;}
.x20{left:558.333319pt;}
.x6a{left:560.346652pt;}
.x60{left:573.666652pt;}
.x46{left:575.546652pt;}
.x4c{left:579.333319pt;}
.xda{left:581.306652pt;}
.xb{left:585.759986pt;}
.xdb{left:595.039986pt;}
.x75{left:599.999986pt;}
.xc{left:602.239986pt;}
.xa{left:605.439986pt;}
.xcd{left:606.426652pt;}
.x47{left:611.226652pt;}
.xb8{left:614.746652pt;}
.x62{left:621.026652pt;}
.xc0{left:630.626652pt;}
.xbf{left:636.706652pt;}
.xce{left:640.666652pt;}
.xcc{left:646.746652pt;}
.x49{left:652.346652pt;}
.x48{left:654.106652pt;}
.xa1{left:661.306652pt;}
.xa3{left:662.906652pt;}
.xbd{left:667.199986pt;}
.xb9{left:669.146652pt;}
.x2e{left:670.213319pt;}
.x2d{left:674.533319pt;}
.x73{left:676.479986pt;}
.x79{left:678.173319pt;}
.xca{left:680.639986pt;}
.xc9{left:683.359986pt;}
.xa2{left:688.866652pt;}
.xc8{left:692.799986pt;}
.x9b{left:695.839986pt;}
.x72{left:699.706652pt;}
.xba{left:703.706652pt;}
.x92{left:705.826652pt;}
.xd8{left:706.719986pt;}
.x2f{left:708.453319pt;}
.xad{left:715.066652pt;}
.x80{left:734.266652pt;}
.xae{left:736.346652pt;}
.xbb{left:737.279986pt;}
.x40{left:738.813319pt;}
.xc7{left:741.279986pt;}
.x3d{left:742.653319pt;}
.x3e{left:744.733319pt;}
.x3c{left:746.973319pt;}
.x3f{left:750.813319pt;}
.x5c{left:752.413319pt;}
.x34{left:767.106652pt;}
.x33{left:769.186652pt;}
.x41{left:770.973319pt;}
.xd9{left:776.159986pt;}
.x8d{left:778.373319pt;}
.x7f{left:784.666652pt;}
.x9c{left:785.826652pt;}
.x74{left:795.839986pt;}
.xc1{left:797.986652pt;}
.xaf{left:800.573319pt;}
.x98{left:812.893319pt;}
.x6c{left:818.306652pt;}
.x6e{left:820.386652pt;}
.x8e{left:844.506652pt;}
.x7a{left:845.986652pt;}
.x84{left:860.093319pt;}
.x6d{left:873.373319pt;}
.x94{left:877.853319pt;}
.x5b{left:889.093319pt;}
.xd7{left:896.773319pt;}
}




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