
    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_b45f2ac76888442f750b087f.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_9e1624e5f53d244c918398fa.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.065430;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_4b483b63bc5b42de6d84c89d.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.088379;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_cf89fc6c9fe7a70182ff920f.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.088379;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_2d0aa7e433833d4fa031cc7f.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.088379;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_f97389ef92ebc87fdcb2bcfa.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.088379;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_f83d0923b38cdfe4c319aa5a.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.435059;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_6eefae818aa766cb2140ed89.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.402354;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_ccf0f6d948328af39e6bc74a.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.060059;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_9c20632475acf30ebb2b69c1.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_29feaac0a23a4ec1ab050731.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_6f433b6a7b85a1f781a6e91c.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.942383;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:ffd;src:url('chunks/assets/font_12d40a6f22ec38b166275544.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.172363;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:ffe;src:url('chunks/assets/font_020902726f4c95c34f07dce0.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.766602;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;}
.m2{transform:matrix(0.249734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249734,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249930,0.000000,0.000000,0.250000,0,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);}
.m4{transform:matrix(0.250024,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250024,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250024,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:-20.880000px;}
.v3{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls16{letter-spacing:-0.444600px;}
.ls11{letter-spacing:-0.391800px;}
.lsb{letter-spacing:-0.186600px;}
.ls8{letter-spacing:-0.135000px;}
.lsc{letter-spacing:-0.121200px;}
.ls7{letter-spacing:-0.090000px;}
.ls9{letter-spacing:-0.084600px;}
.ls1a{letter-spacing:-0.055059px;}
.ls12{letter-spacing:-0.031680px;}
.ls18{letter-spacing:-0.013349px;}
.ls19{letter-spacing:-0.010867px;}
.ls5{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.045360px;}
.lse{letter-spacing:0.048960px;}
.ls17{letter-spacing:0.060600px;}
.lsf{letter-spacing:0.064800px;}
.ls3{letter-spacing:0.065520px;}
.ls14{letter-spacing:0.068400px;}
.ls4{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls1c{letter-spacing:0.098400px;}
.ls6{letter-spacing:0.144000px;}
.lsa{letter-spacing:0.173400px;}
.ls1e{letter-spacing:0.180000px;}
.ls1f{letter-spacing:0.201600px;}
.ls15{letter-spacing:0.275400px;}
.ls13{letter-spacing:0.281931px;}
.ls0{letter-spacing:0.360000px;}
.ls1d{letter-spacing:47.726640px;}
.ls10{letter-spacing:63.566640px;}
.ls1b{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{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);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.wsb{word-spacing:-17.902603px;}
.ws7{word-spacing:-14.493600px;}
.ws9{word-spacing:-14.372400px;}
.ws11{word-spacing:-13.428000px;}
.ws4{word-spacing:-13.399800px;}
.ws10{word-spacing:-13.324800px;}
.wsd{word-spacing:-13.294800px;}
.wsc{word-spacing:-13.287000px;}
.wsa{word-spacing:-13.275360px;}
.ws3{word-spacing:-13.226400px;}
.ws5{word-spacing:-13.039800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.wse{word-spacing:-9.050584px;}
.ws2{word-spacing:-8.553600px;}
.wsf{word-spacing:-7.367830px;}
.ws8{word-spacing:0.000000px;}
.ws6{word-spacing:4.304880px;}
._c{margin-left:-3.469801px;}
._b{margin-left:-2.349000px;}
._0{margin-left:-1.110000px;}
._2{width:1.303103px;}
._5{width:2.653813px;}
._3{width:4.084824px;}
._4{width:5.386633px;}
._d{width:7.094400px;}
._9{width:8.263799px;}
._7{width:9.499200px;}
._6{width:10.524960px;}
._8{width:11.571720px;}
._13{width:14.246713px;}
._f{width:15.270480px;}
._a{width:16.473000px;}
._e{width:17.675040px;}
._10{width:18.727084px;}
._11{width:20.861640px;}
._12{width:23.899320px;}
._1{width:33.803388px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc3{color:rgb(89,89,89);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:32.601019px;}
.fsc{font-size:32.687955px;}
.fs0{font-size:38.880000px;}
.fs9{font-size:40.046832px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fsa{font-size:49.124114px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fsd{font-size:65.202039px;}
.fs5{font-size:65.880000px;}
.fs8{font-size:70.482688px;}
.fs7{font-size:72.000000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.ye1{bottom:3.549892px;}
.yda{bottom:3.564382px;}
.ye4{bottom:3.568004px;}
.ydd{bottom:3.586025px;}
.yd7{bottom:3.586116px;}
.yd4{bottom:3.676675px;}
.ye7{bottom:3.694784px;}
.yc7{bottom:4.378462px;}
.yc4{bottom:4.427408px;}
.ycf{bottom:4.449656px;}
.yca{bottom:4.505276px;}
.yd1{bottom:6.885835px;}
.y85{bottom:7.830000px;}
.y83{bottom:7.920000px;}
.y93{bottom:7.950000px;}
.ye0{bottom:13.547540px;}
.yd9{bottom:13.562031px;}
.ye3{bottom:13.565653px;}
.ydc{bottom:13.583673px;}
.yd6{bottom:13.610931px;}
.yd3{bottom:13.674324px;}
.ye6{bottom:13.692431px;}
.y65{bottom:13.915933px;}
.y68{bottom:13.920337px;}
.y63{bottom:13.920345px;}
.y73{bottom:13.920631px;}
.y6f{bottom:13.955579px;}
.yc6{bottom:16.658938px;}
.yc3{bottom:16.708442px;}
.yc9{bottom:16.786310px;}
.y86{bottom:26.550000px;}
.ya6{bottom:26.580000px;}
.y89{bottom:26.640000px;}
.y92{bottom:26.670000px;}
.ycc{bottom:29.011718px;}
.y61{bottom:31.052036px;}
.y81{bottom:35.280000px;}
.y2{bottom:73.380000px;}
.y29{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.yc1{bottom:113.880000px;}
.yfe{bottom:114.960000px;}
.y117{bottom:120.450000px;}
.yc0{bottom:131.430000px;}
.yfd{bottom:132.510000px;}
.y9f{bottom:134.490000px;}
.y5d{bottom:135.480000px;}
.y138{bottom:136.290000px;}
.y116{bottom:138.000000px;}
.y27{bottom:139.080000px;}
.ybf{bottom:149.070000px;}
.y5c{bottom:153.030000px;}
.y137{bottom:153.840000px;}
.y115{bottom:155.550000px;}
.y26{bottom:156.630000px;}
.y9e{bottom:161.760000px;}
.ybe{bottom:166.620000px;}
.yfc{bottom:168.150000px;}
.y25{bottom:174.180000px;}
.y136{bottom:180.480000px;}
.yb7{bottom:185.610000px;}
.yfb{bottom:185.700000px;}
.y5b{bottom:188.670000px;}
.y9d{bottom:189.120000px;}
.y114{bottom:191.190000px;}
.ybd{bottom:193.260000px;}
.y135{bottom:198.030000px;}
.y5a{bottom:206.220000px;}
.y113{bottom:208.740000px;}
.y24{bottom:209.820000px;}
.y134{bottom:215.580000px;}
.y9c{bottom:216.480000px;}
.y5f{bottom:219.230526px;}
.yb6{bottom:221.160000px;}
.yfa{bottom:221.250000px;}
.y59{bottom:223.770000px;}
.y112{bottom:226.380000px;}
.y23{bottom:227.370000px;}
.ybc{bottom:228.810000px;}
.yf9{bottom:238.890000px;}
.y133{bottom:242.220000px;}
.y9b{bottom:243.840000px;}
.y111{bottom:243.930000px;}
.y22{bottom:245.010000px;}
.ybb{bottom:246.360000px;}
.y58{bottom:250.410000px;}
.yb5{bottom:253.380000px;}
.yf8{bottom:256.440000px;}
.y132{bottom:259.770000px;}
.y110{bottom:261.480000px;}
.yce{bottom:261.687744px;}
.y21{bottom:262.560000px;}
.y9a{bottom:271.110000px;}
.ye9{bottom:273.196519px;}
.yf7{bottom:274.080000px;}
.y131{bottom:277.410000px;}
.yba{bottom:278.580000px;}
.y10f{bottom:279.120000px;}
.y20{bottom:280.110000px;}
.y57{bottom:286.320000px;}
.y4e{bottom:293.700000px;}
.y130{bottom:294.960000px;}
.y99{bottom:298.470000px;}
.yf6{bottom:300.630000px;}
.y10e{bottom:314.670000px;}
.y1f{bottom:315.750000px;}
.y12f{bottom:321.510000px;}
.y98{bottom:325.830000px;}
.y4d{bottom:329.250000px;}
.y10d{bottom:332.310000px;}
.y1e{bottom:333.300000px;}
.y56{bottom:334.560000px;}
.yf5{bottom:336.180000px;}
.y12e{bottom:339.150000px;}
.y4c{bottom:346.800000px;}
.y10c{bottom:349.860000px;}
.y1d{bottom:350.850000px;}
.y55{bottom:352.110000px;}
.y97{bottom:353.190000px;}
.y4b{bottom:364.440000px;}
.y12d{bottom:365.700000px;}
.yf4{bottom:368.400000px;}
.y1c{bottom:368.490000px;}
.y54{bottom:369.750000px;}
.y96{bottom:380.460000px;}
.y4a{bottom:381.990000px;}
.y12c{bottom:383.340000px;}
.y10b{bottom:385.410000px;}
.y1b{bottom:386.040000px;}
.y49{bottom:399.630000px;}
.y53{bottom:401.970000px;}
.y10a{bottom:403.050000px;}
.y5e{bottom:404.715000px;}
.y95{bottom:407.820000px;}
.y75{bottom:407.952482px;}
.y74{bottom:407.952489px;}
.y72{bottom:407.952497px;}
.y12b{bottom:409.890000px;}
.y1a{bottom:412.950000px;}
.y48{bottom:417.180000px;}
.y109{bottom:420.600000px;}
.y12a{bottom:427.440000px;}
.y94{bottom:435.180000px;}
.y108{bottom:438.240000px;}
.y71{bottom:441.255846px;}
.y70{bottom:441.255853px;}
.y6e{bottom:441.255861px;}
.y47{bottom:443.730000px;}
.y129{bottom:445.080000px;}
.y155{bottom:451.470000px;}
.y107{bottom:455.790000px;}
.y19{bottom:461.550000px;}
.y91{bottom:462.450000px;}
.y154{bottom:469.110000px;}
.y128{bottom:471.660000px;}
.y106{bottom:473.370000px;}
.y6d{bottom:474.594157px;}
.y6c{bottom:474.594164px;}
.y6b{bottom:474.594172px;}
.y46{bottom:479.400000px;}
.y127{bottom:489.300000px;}
.y90{bottom:489.840000px;}
.y153{bottom:495.690000px;}
.y45{bottom:496.950000px;}
.y18{bottom:498.660000px;}
.y105{bottom:500.280000px;}
.y126{bottom:506.850000px;}
.y6a{bottom:507.932469px;}
.y69{bottom:507.932476px;}
.y67{bottom:507.932483px;}
.y152{bottom:513.330000px;}
.y44{bottom:514.590000px;}
.y17{bottom:516.210000px;}
.y8f{bottom:517.200000px;}
.y151{bottom:530.880000px;}
.y125{bottom:533.400000px;}
.y16{bottom:533.760000px;}
.y43{bottom:541.140000px;}
.y66{bottom:541.940366px;}
.y64{bottom:541.940373px;}
.y60{bottom:541.940380px;}
.y8e{bottom:544.560000px;}
.y104{bottom:548.610000px;}
.y124{bottom:551.040000px;}
.y15{bottom:551.400000px;}
.ye8{bottom:555.420000px;}
.yb9{bottom:555.450000px;}
.y150{bottom:557.430000px;}
.ydb{bottom:563.030600px;}
.y103{bottom:566.160000px;}
.y123{bottom:568.590000px;}
.y14{bottom:568.950000px;}
.y8d{bottom:571.830000px;}
.y14f{bottom:575.070000px;}
.y62{bottom:576.164116px;}
.y42{bottom:576.690000px;}
.yd8{bottom:578.135631px;}
.y13{bottom:586.590000px;}
.yb4{bottom:592.080000px;}
.y14e{bottom:592.620000px;}
.y41{bottom:595.140000px;}
.y122{bottom:595.230000px;}
.y102{bottom:598.380000px;}
.y8c{bottom:599.190000px;}
.y12{bottom:604.140000px;}
.yde{bottom:608.345935px;}
.yb3{bottom:609.630000px;}
.y40{bottom:612.690000px;}
.y121{bottom:612.780000px;}
.y14d{bottom:619.260000px;}
.y11{bottom:621.690000px;}
.y8b{bottom:626.550000px;}
.y3f{bottom:631.140000px;}
.y14c{bottom:636.810000px;}
.y10{bottom:639.330000px;}
.y120{bottom:639.690000px;}
.yb2{bottom:645.270000px;}
.y8a{bottom:653.910000px;}
.ydf{bottom:654.635760px;}
.yf{bottom:656.880000px;}
.yb1{bottom:662.820000px;}
.y14b{bottom:663.360000px;}
.y52{bottom:664.080000px;}
.y3e{bottom:667.590000px;}
.y14a{bottom:681.000000px;}
.y88{bottom:681.180000px;}
.ye{bottom:683.790000px;}
.y3d{bottom:685.140000px;}
.y11f{bottom:687.930000px;}
.yb0{bottom:698.370000px;}
.y51{bottom:699.720000px;}
.y3c{bottom:702.690000px;}
.ye2{bottom:706.471381px;}
.yf3{bottom:707.100000px;}
.y149{bottom:707.550000px;}
.y87{bottom:708.540000px;}
.y11e{bottom:714.840000px;}
.yaf{bottom:716.010000px;}
.yd5{bottom:717.773039px;}
.yf2{bottom:724.650000px;}
.y148{bottom:725.190000px;}
.y3b{bottom:729.330000px;}
.yd{bottom:732.030000px;}
.yae{bottom:733.560000px;}
.y50{bottom:735.270000px;}
.y84{bottom:735.900000px;}
.yf1{bottom:742.290000px;}
.y147{bottom:751.740000px;}
.y11d{bottom:752.190000px;}
.yf0{bottom:759.840000px;}
.y80{bottom:763.170000px;}
.y3a{bottom:764.880000px;}
.y4f{bottom:767.490000px;}
.yc{bottom:767.850000px;}
.yad{bottom:769.200000px;}
.y146{bottom:769.290000px;}
.y39{bottom:782.520000px;}
.yac{bottom:786.750000px;}
.y82{bottom:790.530000px;}
.yef{bottom:795.390000px;}
.y145{bottom:795.930000px;}
.y11c{bottom:800.520000px;}
.ye5{bottom:802.535713px;}
.yb{bottom:803.850000px;}
.yee{bottom:813.030000px;}
.y144{bottom:813.480000px;}
.yd2{bottom:813.837381px;}
.y38{bottom:818.070000px;}
.yab{bottom:822.300000px;}
.yed{bottom:830.580000px;}
.y143{bottom:831.030000px;}
.y37{bottom:835.620000px;}
.y7f{bottom:839.220000px;}
.ya{bottom:839.850000px;}
.yaa{bottom:839.940000px;}
.y36{bottom:853.260000px;}
.yec{bottom:857.220000px;}
.y142{bottom:857.670000px;}
.y9{bottom:861.630000px;}
.yb8{bottom:868.470000px;}
.ycd{bottom:868.855369px;}
.y35{bottom:870.810000px;}
.yc5{bottom:873.260569px;}
.y7e{bottom:874.860000px;}
.y141{bottom:875.220000px;}
.ya9{bottom:875.490000px;}
.y8{bottom:875.850000px;}
.y34{bottom:888.450000px;}
.y11b{bottom:888.810000px;}
.y7d{bottom:892.410000px;}
.yeb{bottom:892.770000px;}
.y7{bottom:897.630000px;}
.y140{bottom:901.860000px;}
.y33{bottom:906.000000px;}
.y11a{bottom:906.450000px;}
.ya8{bottom:908.430000px;}
.y7c{bottom:909.960000px;}
.y13f{bottom:919.410000px;}
.y119{bottom:924.000000px;}
.yea{bottom:924.990000px;}
.y7b{bottom:927.600000px;}
.y6{bottom:929.940000px;}
.y32{bottom:932.550000px;}
.ya7{bottom:935.790000px;}
.y118{bottom:941.550000px;}
.y13e{bottom:945.960000px;}
.y5{bottom:949.290000px;}
.y7a{bottom:963.150000px;}
.y13d{bottom:963.600000px;}
.y101{bottom:963.960000px;}
.y31{bottom:968.460000px;}
.y79{bottom:980.790000px;}
.y100{bottom:981.600000px;}
.y4{bottom:987.630000px;}
.y13c{bottom:990.150000px;}
.ya5{bottom:990.510000px;}
.yff{bottom:999.150000px;}
.y13b{bottom:1007.790000px;}
.y3{bottom:1012.320000px;}
.y78{bottom:1016.370000px;}
.y30{bottom:1016.820000px;}
.ya4{bottom:1017.810000px;}
.y77{bottom:1033.920000px;}
.y2f{bottom:1034.370000px;}
.ya3{bottom:1045.170000px;}
.y2e{bottom:1051.920000px;}
.y2d{bottom:1069.560000px;}
.ya2{bottom:1072.530000px;}
.yc8{bottom:1075.233996px;}
.y13a{bottom:1078.560000px;}
.y76{bottom:1087.110000px;}
.y139{bottom:1096.110000px;}
.ya1{bottom:1099.890000px;}
.y2c{bottom:1105.110000px;}
.ycb{bottom:1113.812428px;}
.yc2{bottom:1122.222229px;}
.y2b{bottom:1122.750000px;}
.ya0{bottom:1127.160000px;}
.yd0{bottom:1129.163705px;}
.y2a{bottom:1140.300000px;}
.y28{bottom:1194.300000px;}
.h21{height:22.559724px;}
.h25{height:22.820719px;}
.h23{height:22.820721px;}
.h27{height:22.929386px;}
.h24{height:24.896482px;}
.h26{height:24.962872px;}
.h17{height:26.550000px;}
.h19{height:26.580000px;}
.h16{height:26.640000px;}
.h18{height:26.670000px;}
.h1d{height:28.032796px;}
.h1a{height:28.032797px;}
.h1e{height:28.166285px;}
.h2{height:30.022383px;}
.h1b{height:30.582639px;}
.h28{height:32.425916px;}
.h29{height:32.512385px;}
.h13{height:33.303077px;}
.h11{height:33.303085px;}
.h12{height:33.338319px;}
.h22{height:37.106936px;}
.h6{height:37.191445px;}
.h3{height:39.155273px;}
.h1c{height:39.831737px;}
.h1f{height:40.447314px;}
.h15{height:50.902383px;}
.h7{height:52.311445px;}
.h14{height:54.000000px;}
.h8{height:55.779258px;}
.h5{height:57.323320px;}
.h9{height:60.960938px;}
.hc{height:61.793886px;}
.hb{height:62.585859px;}
.h2b{height:64.851832px;}
.hf{height:67.522422px;}
.ha{height:68.582109px;}
.he{height:69.174904px;}
.h10{height:71.033334px;}
.h4{height:72.985430px;}
.hd{height:235.793959px;}
.h20{height:285.400504px;}
.h2a{height:295.039225px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w1c{width:28.148246px;}
.wd{width:41.760000px;}
.w14{width:47.909346px;}
.w18{width:60.100308px;}
.w16{width:60.861072px;}
.w1a{width:61.947877px;}
.w19{width:69.338150px;}
.w1b{width:70.750996px;}
.w10{width:73.665624px;}
.w11{width:73.932528px;}
.w12{width:75.000147px;}
.w17{width:77.489186px;}
.w15{width:78.902032px;}
.wf{width:81.806209px;}
.w9{width:105.240000px;}
.w7{width:117.440198px;}
.w8{width:118.496315px;}
.w4{width:118.496317px;}
.w6{width:128.212591px;}
.wa{width:158.760000px;}
.wc{width:169.290000px;}
.w5{width:245.649854px;}
.wb{width:275.700000px;}
.we{width:318.270000px;}
.w1d{width:433.740000px;}
.w13{width:454.671711px;}
.w3{width:678.804456px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1b{left:3.625453px;}
.xc{left:7.920878px;}
.xa{left:13.201452px;}
.x25{left:20.607247px;}
.x29{left:23.411588px;}
.x2c{left:25.087079px;}
.x1e{left:28.158419px;}
.x2e{left:29.713245px;}
.x20{left:30.774082px;}
.x27{left:32.386785px;}
.x1c{left:34.753182px;}
.x1{left:68.040000px;}
.x37{left:71.639987px;}
.xf{left:90.990000px;}
.x4{left:95.039987px;}
.x18{left:103.319987px;}
.x9{left:106.837500px;}
.x39{left:111.239987px;}
.xb{left:120.038952px;}
.x5{left:122.039987px;}
.x23{left:163.423347px;}
.x19{left:176.069987px;}
.x34{left:190.379987px;}
.x10{left:196.950000px;}
.x2{left:201.539987px;}
.x22{left:219.161895px;}
.x32{left:229.470000px;}
.x35{left:233.759987px;}
.xd{left:238.535266px;}
.x33{left:248.353022px;}
.x30{left:250.771375px;}
.x2d{left:259.031092px;}
.x2f{left:263.595672px;}
.x1f{left:269.873729px;}
.x1d{left:332.329379px;}
.x38{left:335.099987px;}
.x31{left:344.019232px;}
.x11{left:356.430000px;}
.x2b{left:359.886582px;}
.x21{left:361.021587px;}
.xe{left:366.744923px;}
.x24{left:433.619591px;}
.x6{left:446.609987px;}
.x26{left:502.149338px;}
.x2a{left:517.799328px;}
.x1a{left:541.182075px;}
.x28{left:569.531239px;}
.x12{left:632.940000px;}
.x36{left:653.639987px;}
.x16{left:663.809987px;}
.x17{left:668.309987px;}
.x15{left:674.339987px;}
.x13{left:675.420000px;}
.x7{left:718.889987px;}
.x14{left:760.470000px;}
.x8{left:788.639987px;}
.x3{left:792.059987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls16{letter-spacing:-0.395200pt;}
.ls11{letter-spacing:-0.348267pt;}
.lsb{letter-spacing:-0.165867pt;}
.ls8{letter-spacing:-0.120000pt;}
.lsc{letter-spacing:-0.107733pt;}
.ls7{letter-spacing:-0.080000pt;}
.ls9{letter-spacing:-0.075200pt;}
.ls1a{letter-spacing:-0.048942pt;}
.ls12{letter-spacing:-0.028160pt;}
.ls18{letter-spacing:-0.011866pt;}
.ls19{letter-spacing:-0.009660pt;}
.ls5{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.040320pt;}
.lse{letter-spacing:0.043520pt;}
.ls17{letter-spacing:0.053867pt;}
.lsf{letter-spacing:0.057600pt;}
.ls3{letter-spacing:0.058240pt;}
.ls14{letter-spacing:0.060800pt;}
.ls4{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls1c{letter-spacing:0.087467pt;}
.ls6{letter-spacing:0.128000pt;}
.lsa{letter-spacing:0.154133pt;}
.ls1e{letter-spacing:0.160000pt;}
.ls1f{letter-spacing:0.179200pt;}
.ls15{letter-spacing:0.244800pt;}
.ls13{letter-spacing:0.250605pt;}
.ls0{letter-spacing:0.320000pt;}
.ls1d{letter-spacing:42.423680pt;}
.ls10{letter-spacing:56.503680pt;}
.ls1b{letter-spacing:71.863680pt;}
.wsb{word-spacing:-15.913425pt;}
.ws7{word-spacing:-12.883200pt;}
.ws9{word-spacing:-12.775467pt;}
.ws11{word-spacing:-11.936000pt;}
.ws4{word-spacing:-11.910933pt;}
.ws10{word-spacing:-11.844267pt;}
.wsd{word-spacing:-11.817600pt;}
.wsc{word-spacing:-11.810667pt;}
.wsa{word-spacing:-11.800320pt;}
.ws3{word-spacing:-11.756800pt;}
.ws5{word-spacing:-11.590933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.wse{word-spacing:-8.044964pt;}
.ws2{word-spacing:-7.603200pt;}
.wsf{word-spacing:-6.549183pt;}
.ws8{word-spacing:0.000000pt;}
.ws6{word-spacing:3.826560pt;}
._c{margin-left:-3.084268pt;}
._b{margin-left:-2.088000pt;}
._0{margin-left:-0.986667pt;}
._2{width:1.158314pt;}
._5{width:2.358945pt;}
._3{width:3.630954pt;}
._4{width:4.788118pt;}
._d{width:6.306134pt;}
._9{width:7.345599pt;}
._7{width:8.443734pt;}
._6{width:9.355520pt;}
._8{width:10.285974pt;}
._13{width:12.663745pt;}
._f{width:13.573760pt;}
._a{width:14.642667pt;}
._e{width:15.711146pt;}
._10{width:16.646297pt;}
._11{width:18.543680pt;}
._12{width:21.243840pt;}
._1{width:30.047456pt;}
.fsb{font-size:28.978684pt;}
.fsc{font-size:29.055960pt;}
.fs0{font-size:34.560000pt;}
.fs9{font-size:35.597184pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fsa{font-size:43.665879pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fsd{font-size:57.957368pt;}
.fs5{font-size:58.560000pt;}
.fs8{font-size:62.651278pt;}
.fs7{font-size:64.000000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.ye1{bottom:3.155460pt;}
.yda{bottom:3.168340pt;}
.ye4{bottom:3.171559pt;}
.ydd{bottom:3.187578pt;}
.yd7{bottom:3.187658pt;}
.yd4{bottom:3.268155pt;}
.ye7{bottom:3.284253pt;}
.yc7{bottom:3.891966pt;}
.yc4{bottom:3.935474pt;}
.ycf{bottom:3.955250pt;}
.yca{bottom:4.004690pt;}
.yd1{bottom:6.120742pt;}
.y85{bottom:6.960000pt;}
.y83{bottom:7.040000pt;}
.y93{bottom:7.066667pt;}
.ye0{bottom:12.042258pt;}
.yd9{bottom:12.055139pt;}
.ye3{bottom:12.058358pt;}
.ydc{bottom:12.074376pt;}
.yd6{bottom:12.098605pt;}
.yd3{bottom:12.154954pt;}
.ye6{bottom:12.171049pt;}
.y65{bottom:12.369718pt;}
.y68{bottom:12.373633pt;}
.y63{bottom:12.373640pt;}
.y73{bottom:12.373894pt;}
.y6f{bottom:12.404959pt;}
.yc6{bottom:14.807945pt;}
.yc3{bottom:14.851949pt;}
.yc9{bottom:14.921164pt;}
.y86{bottom:23.600000pt;}
.ya6{bottom:23.626667pt;}
.y89{bottom:23.680000pt;}
.y92{bottom:23.706667pt;}
.ycc{bottom:25.788194pt;}
.y61{bottom:27.601810pt;}
.y81{bottom:31.360000pt;}
.y2{bottom:65.226667pt;}
.y29{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.yc1{bottom:101.226667pt;}
.yfe{bottom:102.186667pt;}
.y117{bottom:107.066667pt;}
.yc0{bottom:116.826667pt;}
.yfd{bottom:117.786667pt;}
.y9f{bottom:119.546667pt;}
.y5d{bottom:120.426667pt;}
.y138{bottom:121.146667pt;}
.y116{bottom:122.666667pt;}
.y27{bottom:123.626667pt;}
.ybf{bottom:132.506667pt;}
.y5c{bottom:136.026667pt;}
.y137{bottom:136.746667pt;}
.y115{bottom:138.266667pt;}
.y26{bottom:139.226667pt;}
.y9e{bottom:143.786667pt;}
.ybe{bottom:148.106667pt;}
.yfc{bottom:149.466667pt;}
.y25{bottom:154.826667pt;}
.y136{bottom:160.426667pt;}
.yb7{bottom:164.986667pt;}
.yfb{bottom:165.066667pt;}
.y5b{bottom:167.706667pt;}
.y9d{bottom:168.106667pt;}
.y114{bottom:169.946667pt;}
.ybd{bottom:171.786667pt;}
.y135{bottom:176.026667pt;}
.y5a{bottom:183.306667pt;}
.y113{bottom:185.546667pt;}
.y24{bottom:186.506667pt;}
.y134{bottom:191.626667pt;}
.y9c{bottom:192.426667pt;}
.y5f{bottom:194.871579pt;}
.yb6{bottom:196.586667pt;}
.yfa{bottom:196.666667pt;}
.y59{bottom:198.906667pt;}
.y112{bottom:201.226667pt;}
.y23{bottom:202.106667pt;}
.ybc{bottom:203.386667pt;}
.yf9{bottom:212.346667pt;}
.y133{bottom:215.306667pt;}
.y9b{bottom:216.746667pt;}
.y111{bottom:216.826667pt;}
.y22{bottom:217.786667pt;}
.ybb{bottom:218.986667pt;}
.y58{bottom:222.586667pt;}
.yb5{bottom:225.226667pt;}
.yf8{bottom:227.946667pt;}
.y132{bottom:230.906667pt;}
.y110{bottom:232.426667pt;}
.yce{bottom:232.611328pt;}
.y21{bottom:233.386667pt;}
.y9a{bottom:240.986667pt;}
.ye9{bottom:242.841350pt;}
.yf7{bottom:243.626667pt;}
.y131{bottom:246.586667pt;}
.yba{bottom:247.626667pt;}
.y10f{bottom:248.106667pt;}
.y20{bottom:248.986667pt;}
.y57{bottom:254.506667pt;}
.y4e{bottom:261.066667pt;}
.y130{bottom:262.186667pt;}
.y99{bottom:265.306667pt;}
.yf6{bottom:267.226667pt;}
.y10e{bottom:279.706667pt;}
.y1f{bottom:280.666667pt;}
.y12f{bottom:285.786667pt;}
.y98{bottom:289.626667pt;}
.y4d{bottom:292.666667pt;}
.y10d{bottom:295.386667pt;}
.y1e{bottom:296.266667pt;}
.y56{bottom:297.386667pt;}
.yf5{bottom:298.826667pt;}
.y12e{bottom:301.466667pt;}
.y4c{bottom:308.266667pt;}
.y10c{bottom:310.986667pt;}
.y1d{bottom:311.866667pt;}
.y55{bottom:312.986667pt;}
.y97{bottom:313.946667pt;}
.y4b{bottom:323.946667pt;}
.y12d{bottom:325.066667pt;}
.yf4{bottom:327.466667pt;}
.y1c{bottom:327.546667pt;}
.y54{bottom:328.666667pt;}
.y96{bottom:338.186667pt;}
.y4a{bottom:339.546667pt;}
.y12c{bottom:340.746667pt;}
.y10b{bottom:342.586667pt;}
.y1b{bottom:343.146667pt;}
.y49{bottom:355.226667pt;}
.y53{bottom:357.306667pt;}
.y10a{bottom:358.266667pt;}
.y5e{bottom:359.746667pt;}
.y95{bottom:362.506667pt;}
.y75{bottom:362.624429pt;}
.y74{bottom:362.624435pt;}
.y72{bottom:362.624442pt;}
.y12b{bottom:364.346667pt;}
.y1a{bottom:367.066667pt;}
.y48{bottom:370.826667pt;}
.y109{bottom:373.866667pt;}
.y12a{bottom:379.946667pt;}
.y94{bottom:386.826667pt;}
.y108{bottom:389.546667pt;}
.y71{bottom:392.227419pt;}
.y70{bottom:392.227425pt;}
.y6e{bottom:392.227432pt;}
.y47{bottom:394.426667pt;}
.y129{bottom:395.626667pt;}
.y155{bottom:401.306667pt;}
.y107{bottom:405.146667pt;}
.y19{bottom:410.266667pt;}
.y91{bottom:411.066667pt;}
.y154{bottom:416.986667pt;}
.y128{bottom:419.253333pt;}
.y106{bottom:420.773333pt;}
.y6d{bottom:421.861473pt;}
.y6c{bottom:421.861479pt;}
.y6b{bottom:421.861486pt;}
.y46{bottom:426.133333pt;}
.y127{bottom:434.933333pt;}
.y90{bottom:435.413333pt;}
.y153{bottom:440.613333pt;}
.y45{bottom:441.733333pt;}
.y18{bottom:443.253333pt;}
.y105{bottom:444.693333pt;}
.y126{bottom:450.533333pt;}
.y6a{bottom:451.495528pt;}
.y69{bottom:451.495534pt;}
.y67{bottom:451.495541pt;}
.y152{bottom:456.293333pt;}
.y44{bottom:457.413333pt;}
.y17{bottom:458.853333pt;}
.y8f{bottom:459.733333pt;}
.y151{bottom:471.893333pt;}
.y125{bottom:474.133333pt;}
.y16{bottom:474.453333pt;}
.y43{bottom:481.013333pt;}
.y66{bottom:481.724769pt;}
.y64{bottom:481.724776pt;}
.y60{bottom:481.724783pt;}
.y8e{bottom:484.053333pt;}
.y104{bottom:487.653333pt;}
.y124{bottom:489.813333pt;}
.y15{bottom:490.133333pt;}
.ye8{bottom:493.706667pt;}
.yb9{bottom:493.733333pt;}
.y150{bottom:495.493333pt;}
.ydb{bottom:500.471644pt;}
.y103{bottom:503.253333pt;}
.y123{bottom:505.413333pt;}
.y14{bottom:505.733333pt;}
.y8d{bottom:508.293333pt;}
.y14f{bottom:511.173333pt;}
.y62{bottom:512.145881pt;}
.y42{bottom:512.613333pt;}
.yd8{bottom:513.898339pt;}
.y13{bottom:521.413333pt;}
.yb4{bottom:526.293333pt;}
.y14e{bottom:526.773333pt;}
.y41{bottom:529.013333pt;}
.y122{bottom:529.093333pt;}
.y102{bottom:531.893333pt;}
.y8c{bottom:532.613333pt;}
.y12{bottom:537.013333pt;}
.yde{bottom:540.751942pt;}
.yb3{bottom:541.893333pt;}
.y40{bottom:544.613333pt;}
.y121{bottom:544.693333pt;}
.y14d{bottom:550.453333pt;}
.y11{bottom:552.613333pt;}
.y8b{bottom:556.933333pt;}
.y3f{bottom:561.013333pt;}
.y14c{bottom:566.053333pt;}
.y10{bottom:568.293333pt;}
.y120{bottom:568.613333pt;}
.yb2{bottom:573.573333pt;}
.y8a{bottom:581.253333pt;}
.ydf{bottom:581.898453pt;}
.yf{bottom:583.893333pt;}
.yb1{bottom:589.173333pt;}
.y14b{bottom:589.653333pt;}
.y52{bottom:590.293333pt;}
.y3e{bottom:593.413333pt;}
.y14a{bottom:605.333333pt;}
.y88{bottom:605.493333pt;}
.ye{bottom:607.813333pt;}
.y3d{bottom:609.013333pt;}
.y11f{bottom:611.493333pt;}
.yb0{bottom:620.773333pt;}
.y51{bottom:621.973333pt;}
.y3c{bottom:624.613333pt;}
.ye2{bottom:627.974561pt;}
.yf3{bottom:628.533333pt;}
.y149{bottom:628.933333pt;}
.y87{bottom:629.813333pt;}
.y11e{bottom:635.413333pt;}
.yaf{bottom:636.453333pt;}
.yd5{bottom:638.020479pt;}
.yf2{bottom:644.133333pt;}
.y148{bottom:644.613333pt;}
.y3b{bottom:648.293333pt;}
.yd{bottom:650.693333pt;}
.yae{bottom:652.053333pt;}
.y50{bottom:653.573333pt;}
.y84{bottom:654.133333pt;}
.yf1{bottom:659.813333pt;}
.y147{bottom:668.213333pt;}
.y11d{bottom:668.613333pt;}
.yf0{bottom:675.413333pt;}
.y80{bottom:678.373333pt;}
.y3a{bottom:679.893333pt;}
.y4f{bottom:682.213333pt;}
.yc{bottom:682.533333pt;}
.yad{bottom:683.733333pt;}
.y146{bottom:683.813333pt;}
.y39{bottom:695.573333pt;}
.yac{bottom:699.333333pt;}
.y82{bottom:702.693333pt;}
.yef{bottom:707.013333pt;}
.y145{bottom:707.493333pt;}
.y11c{bottom:711.573333pt;}
.ye5{bottom:713.365079pt;}
.yb{bottom:714.533333pt;}
.yee{bottom:722.693333pt;}
.y144{bottom:723.093333pt;}
.yd2{bottom:723.411005pt;}
.y38{bottom:727.173333pt;}
.yab{bottom:730.933333pt;}
.yed{bottom:738.293333pt;}
.y143{bottom:738.693333pt;}
.y37{bottom:742.773333pt;}
.y7f{bottom:745.973333pt;}
.ya{bottom:746.533333pt;}
.yaa{bottom:746.613333pt;}
.y36{bottom:758.453333pt;}
.yec{bottom:761.973333pt;}
.y142{bottom:762.373333pt;}
.y9{bottom:765.893333pt;}
.yb8{bottom:771.973333pt;}
.ycd{bottom:772.315884pt;}
.y35{bottom:774.053333pt;}
.yc5{bottom:776.231617pt;}
.y7e{bottom:777.653333pt;}
.y141{bottom:777.973333pt;}
.ya9{bottom:778.213333pt;}
.y8{bottom:778.533333pt;}
.y34{bottom:789.733333pt;}
.y11b{bottom:790.053333pt;}
.y7d{bottom:793.253333pt;}
.yeb{bottom:793.573333pt;}
.y7{bottom:797.893333pt;}
.y140{bottom:801.653333pt;}
.y33{bottom:805.333333pt;}
.y11a{bottom:805.733333pt;}
.ya8{bottom:807.493333pt;}
.y7c{bottom:808.853333pt;}
.y13f{bottom:817.253333pt;}
.y119{bottom:821.333333pt;}
.yea{bottom:822.213333pt;}
.y7b{bottom:824.533333pt;}
.y6{bottom:826.613333pt;}
.y32{bottom:828.933333pt;}
.ya7{bottom:831.813333pt;}
.y118{bottom:836.933333pt;}
.y13e{bottom:840.853333pt;}
.y5{bottom:843.813333pt;}
.y7a{bottom:856.133333pt;}
.y13d{bottom:856.533333pt;}
.y101{bottom:856.853333pt;}
.y31{bottom:860.853333pt;}
.y79{bottom:871.813333pt;}
.y100{bottom:872.533333pt;}
.y4{bottom:877.893333pt;}
.y13c{bottom:880.133333pt;}
.ya5{bottom:880.453333pt;}
.yff{bottom:888.133333pt;}
.y13b{bottom:895.813333pt;}
.y3{bottom:899.840000pt;}
.y78{bottom:903.440000pt;}
.y30{bottom:903.840000pt;}
.ya4{bottom:904.720000pt;}
.y77{bottom:919.040000pt;}
.y2f{bottom:919.440000pt;}
.ya3{bottom:929.040000pt;}
.y2e{bottom:935.040000pt;}
.y2d{bottom:950.720000pt;}
.ya2{bottom:953.360000pt;}
.yc8{bottom:955.763552pt;}
.y13a{bottom:958.720000pt;}
.y76{bottom:966.320000pt;}
.y139{bottom:974.320000pt;}
.ya1{bottom:977.680000pt;}
.y2c{bottom:982.320000pt;}
.ycb{bottom:990.055491pt;}
.yc2{bottom:997.530870pt;}
.y2b{bottom:998.000000pt;}
.ya0{bottom:1001.920000pt;}
.yd0{bottom:1003.701071pt;}
.y2a{bottom:1013.600000pt;}
.y28{bottom:1061.600000pt;}
.h21{height:20.053088pt;}
.h25{height:20.285084pt;}
.h23{height:20.285085pt;}
.h27{height:20.381677pt;}
.h24{height:22.130206pt;}
.h26{height:22.189220pt;}
.h17{height:23.600000pt;}
.h19{height:23.626667pt;}
.h16{height:23.680000pt;}
.h18{height:23.706667pt;}
.h1d{height:24.918041pt;}
.h1a{height:24.918042pt;}
.h1e{height:25.036698pt;}
.h2{height:26.686562pt;}
.h1b{height:27.184568pt;}
.h28{height:28.823037pt;}
.h29{height:28.899898pt;}
.h13{height:29.602735pt;}
.h11{height:29.602742pt;}
.h12{height:29.634061pt;}
.h22{height:32.983943pt;}
.h6{height:33.059063pt;}
.h3{height:34.804688pt;}
.h1c{height:35.405988pt;}
.h1f{height:35.953168pt;}
.h15{height:45.246562pt;}
.h7{height:46.499062pt;}
.h14{height:48.000000pt;}
.h8{height:49.581562pt;}
.h5{height:50.954062pt;}
.h9{height:54.187500pt;}
.hc{height:54.927899pt;}
.hb{height:55.631875pt;}
.h2b{height:57.646073pt;}
.hf{height:60.019931pt;}
.ha{height:60.961875pt;}
.he{height:61.488803pt;}
.h10{height:63.140741pt;}
.h4{height:64.875937pt;}
.hd{height:209.594630pt;}
.h20{height:253.689337pt;}
.h2a{height:262.257089pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w1c{width:25.020663pt;}
.wd{width:37.120000pt;}
.w14{width:42.586085pt;}
.w18{width:53.422496pt;}
.w16{width:54.098730pt;}
.w1a{width:55.064779pt;}
.w19{width:61.633911pt;}
.w1b{width:62.889774pt;}
.w10{width:65.480554pt;}
.w11{width:65.717803pt;}
.w12{width:66.666797pt;}
.w17{width:68.879276pt;}
.w15{width:70.135140pt;}
.wf{width:72.716630pt;}
.w9{width:93.546667pt;}
.w7{width:104.391288pt;}
.w8{width:105.330058pt;}
.w4{width:105.330059pt;}
.w6{width:113.966747pt;}
.wa{width:141.120000pt;}
.wc{width:150.480000pt;}
.w5{width:218.355426pt;}
.wb{width:245.066667pt;}
.we{width:282.906667pt;}
.w1d{width:385.546667pt;}
.w13{width:404.152632pt;}
.w3{width:603.381739pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1b{left:3.222625pt;}
.xc{left:7.040781pt;}
.xa{left:11.734624pt;}
.x25{left:18.317553pt;}
.x29{left:20.810300pt;}
.x2c{left:22.299626pt;}
.x1e{left:25.029705pt;}
.x2e{left:26.411773pt;}
.x20{left:27.354740pt;}
.x27{left:28.788253pt;}
.x1c{left:30.891718pt;}
.x1{left:60.480000pt;}
.x37{left:63.679988pt;}
.xf{left:80.880000pt;}
.x4{left:84.479988pt;}
.x18{left:91.839988pt;}
.x9{left:94.966667pt;}
.x39{left:98.879988pt;}
.xb{left:106.701291pt;}
.x5{left:108.479988pt;}
.x23{left:145.265197pt;}
.x19{left:156.506655pt;}
.x34{left:169.226655pt;}
.x10{left:175.066667pt;}
.x2{left:179.146655pt;}
.x22{left:194.810574pt;}
.x32{left:203.973333pt;}
.x35{left:207.786655pt;}
.xd{left:212.031348pt;}
.x33{left:220.758242pt;}
.x30{left:222.907889pt;}
.x2d{left:230.249860pt;}
.x2f{left:234.307264pt;}
.x1f{left:239.887759pt;}
.x1d{left:295.403892pt;}
.x38{left:297.866655pt;}
.x31{left:305.794872pt;}
.x11{left:316.826667pt;}
.x2b{left:319.899184pt;}
.x21{left:320.908077pt;}
.xe{left:325.995487pt;}
.x24{left:385.439637pt;}
.x6{left:396.986655pt;}
.x26{left:446.354967pt;}
.x2a{left:460.266069pt;}
.x1a{left:481.050733pt;}
.x28{left:506.249990pt;}
.x12{left:562.613333pt;}
.x36{left:581.013322pt;}
.x16{left:590.053322pt;}
.x17{left:594.053322pt;}
.x15{left:599.413322pt;}
.x13{left:600.373333pt;}
.x7{left:639.013322pt;}
.x14{left:675.973333pt;}
.x8{left:701.013322pt;}
.x3{left:704.053322pt;}
}




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