
    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_759e736e5b74e588ce6b09d4.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_50ec19d063f85ecd05985f64.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_2d0c4d0469664102f67dfa4f.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_81b6649233a110dc71652369.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.112305;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_5431fcba942fb7d4f57c3dc5.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_983cdaff78c8e9ab78613e7c.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.978027;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_541b5d57070ae7a6e2c7e195.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_f9500dcd10e1bfec2fea0624.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.921387;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_d7b6043e07a1dbc448d4b445.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.923340;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;}
.m9{transform:matrix(0.000000,-0.250504,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250504,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250504,0.250000,0.000000,0,0);}
.md{transform:matrix(0.000000,-0.249967,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249967,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249967,0.250000,0.000000,0,0);}
.m11{transform:matrix(0.000000,-0.249730,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249730,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249730,0.250000,0.000000,0,0);}
.m5{transform:matrix(0.000000,-0.249860,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249860,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249860,0.250000,0.000000,0,0);}
.mf{transform:matrix(0.000000,-0.250394,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250394,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250394,0.250000,0.000000,0,0);}
.mb{transform:matrix(0.000000,-0.249910,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249910,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249910,0.250000,0.000000,0,0);}
.m7{transform:matrix(0.000000,-0.249264,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249264,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249264,0.250000,0.000000,0,0);}
.m2{transform:matrix(0.164705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164705,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.200801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200801,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.249497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249497,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.249607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249607,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);}
.mc{transform:matrix(0.250033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250033,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.250090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250090,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.250271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250271,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.250738,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250738,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250738,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.267735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267735,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-79.500000px;}
.v2{vertical-align:-78.000000px;}
.v8{vertical-align:-69.000000px;}
.v7{vertical-align:-23.450627px;}
.v3{vertical-align:-21.000000px;}
.v4{vertical-align:-6.000000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:6.000000px;}
.v5{vertical-align:21.000000px;}
.ls1b{letter-spacing:-1.500000px;}
.lsf{letter-spacing:-0.660000px;}
.ls6{letter-spacing:-0.480000px;}
.ls17{letter-spacing:-0.203913px;}
.ls15{letter-spacing:-0.202650px;}
.lse{letter-spacing:-0.180000px;}
.lsc{letter-spacing:-0.064930px;}
.ls12{letter-spacing:-0.055737px;}
.ls18{letter-spacing:-0.051796px;}
.ls14{letter-spacing:-0.051639px;}
.ls13{letter-spacing:-0.051147px;}
.ls16{letter-spacing:-0.050988px;}
.ls3{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.060000px;}
.ls9{letter-spacing:0.120000px;}
.ls1c{letter-spacing:0.180000px;}
.ls8{letter-spacing:0.240000px;}
.lsa{letter-spacing:0.360000px;}
.ls5{letter-spacing:0.420000px;}
.ls7{letter-spacing:0.480000px;}
.ls1{letter-spacing:0.750000px;}
.ls4{letter-spacing:0.810000px;}
.ls11{letter-spacing:0.840000px;}
.lsd{letter-spacing:1.020000px;}
.lsb{letter-spacing:1.500000px;}
.ls1a{letter-spacing:7.500000px;}
.ls0{letter-spacing:90.000000px;}
.ls19{letter-spacing:306.150000px;}
.ls2{letter-spacing:849.420000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7{word-spacing:-17.546840px;}
.wsb{word-spacing:-15.840000px;}
.ws19{word-spacing:-15.180000px;}
.ws1{word-spacing:-15.000000px;}
.ws9{word-spacing:-14.820000px;}
.ws3{word-spacing:-14.520000px;}
.wsa{word-spacing:-14.340000px;}
.ws12{word-spacing:-12.364662px;}
.wse{word-spacing:-12.357728px;}
.wsf{word-spacing:-12.301990px;}
.ws2{word-spacing:-9.750000px;}
.ws0{word-spacing:0.000000px;}
.wsc{word-spacing:14.269135px;}
.ws6{word-spacing:15.868901px;}
.ws11{word-spacing:20.045140px;}
.ws10{word-spacing:32.238869px;}
.wsd{word-spacing:35.873931px;}
.ws17{word-spacing:111.191058px;}
.ws13{word-spacing:144.046435px;}
.ws15{word-spacing:148.021069px;}
.ws16{word-spacing:148.555654px;}
.ws4{word-spacing:155.954921px;}
.ws14{word-spacing:156.995609px;}
.ws18{word-spacing:191.363781px;}
.ws8{word-spacing:295.781613px;}
.ws5{word-spacing:496.083063px;}
._13{margin-left:-154.912301px;}
._12{margin-left:-131.053569px;}
._14{margin-left:-89.924698px;}
._11{margin-left:-66.687950px;}
._9{margin-left:-3.720000px;}
._4{margin-left:-2.100000px;}
._0{margin-left:-1.080000px;}
._1{width:1.260000px;}
._6{width:2.310000px;}
._d{width:3.390000px;}
._2{width:4.410000px;}
._8{width:5.580000px;}
._7{width:6.720000px;}
._c{width:7.740000px;}
._3{width:8.940000px;}
._b{width:10.590000px;}
._5{width:11.670000px;}
._a{width:12.900000px;}
._1a{width:13.920000px;}
._25{width:16.470000px;}
._26{width:17.730000px;}
._10{width:18.960000px;}
._f{width:19.980000px;}
._18{width:21.060000px;}
._17{width:22.110000px;}
._1b{width:24.420000px;}
._1c{width:25.890000px;}
._e{width:28.350000px;}
._19{width:39.098542px;}
._22{width:45.000000px;}
._1e{width:47.010000px;}
._1f{width:48.390000px;}
._23{width:122.378512px;}
._21{width:162.124558px;}
._16{width:196.380000px;}
._15{width:198.420000px;}
._24{width:203.917105px;}
._20{width:1186.920000px;}
._1d{width:1204.920000px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:39.000000px;}
.fs5{font-size:41.096571px;}
.fs14{font-size:45.218616px;}
.fsb{font-size:45.360154px;}
.fse{font-size:45.795870px;}
.fs18{font-size:45.935912px;}
.fs11{font-size:48.885232px;}
.fs12{font-size:48.902746px;}
.fs17{font-size:49.112476px;}
.fs16{font-size:49.189851px;}
.fs13{font-size:49.198940px;}
.fs15{font-size:49.205490px;}
.fsc{font-size:49.352937px;}
.fs7{font-size:49.430910px;}
.fs9{font-size:49.458648px;}
.fsd{font-size:49.498617px;}
.fs10{font-size:49.726807px;}
.fsf{font-size:49.827006px;}
.fs19{font-size:49.979375px;}
.fs1a{font-size:50.033487px;}
.fs3{font-size:53.755565px;}
.fsa{font-size:53.894391px;}
.fs8{font-size:53.924634px;}
.fs1{font-size:60.000000px;}
.fs6{font-size:70.447081px;}
.fs0{font-size:72.000000px;}
.fs4{font-size:112.825174px;}
.y0{bottom:0.000000px;}
.y3{bottom:4.125000px;}
.y9d{bottom:5.001516px;}
.y75{bottom:6.781713px;}
.y78{bottom:6.781716px;}
.y73{bottom:6.827488px;}
.yda{bottom:7.355647px;}
.yfb{bottom:7.373510px;}
.y104{bottom:7.569171px;}
.yc5{bottom:7.999598px;}
.ybc{bottom:8.071549px;}
.ye5{bottom:8.395670px;}
.y95{bottom:11.985000px;}
.y48{bottom:12.000000px;}
.y97{bottom:12.030000px;}
.y54{bottom:12.045000px;}
.y74{bottom:14.661224px;}
.y72{bottom:14.661235px;}
.y9e{bottom:19.730556px;}
.y79{bottom:20.523908px;}
.y77{bottom:20.523911px;}
.y49{bottom:24.750000px;}
.y93{bottom:25.125000px;}
.ybf{bottom:26.323151px;}
.yfe{bottom:27.686026px;}
.yb6{bottom:27.706109px;}
.yf5{bottom:28.091442px;}
.yd3{bottom:28.122791px;}
.yde{bottom:28.351577px;}
.y76{bottom:31.518131px;}
.y47{bottom:37.875000px;}
.y45{bottom:37.905000px;}
.yc0{bottom:39.969879px;}
.yb7{bottom:41.196188px;}
.yff{bottom:41.373441px;}
.yd4{bottom:42.499299px;}
.yf6{bottom:42.634620px;}
.ydf{bottom:42.795671px;}
.yc6{bottom:43.096300px;}
.y9f{bottom:46.733938px;}
.ybd{bottom:47.263736px;}
.y92{bottom:51.000000px;}
.y2{bottom:52.537500px;}
.ya5{bottom:56.469990px;}
.y1{bottom:56.662500px;}
.ya8{bottom:60.347942px;}
.y105{bottom:60.376255px;}
.yfc{bottom:62.969377px;}
.y56{bottom:63.750000px;}
.y51{bottom:63.780000px;}
.yd5{bottom:71.937688px;}
.ye0{bottom:72.422973px;}
.ya0{bottom:73.821600px;}
.ye6{bottom:75.765954px;}
.ydb{bottom:76.324696px;}
.yc1{bottom:77.573340px;}
.yb8{bottom:78.289262px;}
.y100{bottom:79.092936px;}
.yf7{bottom:79.604094px;}
.ya7{bottom:83.222717px;}
.ya1{bottom:100.824982px;}
.yd6{bottom:101.452683px;}
.ye1{bottom:102.127373px;}
.ya6{bottom:106.069399px;}
.yc2{bottom:115.208033px;}
.yb9{bottom:115.483393px;}
.yf8{bottom:116.653734px;}
.y101{bottom:116.813475px;}
.yd1{bottom:123.787500px;}
.y12f{bottom:124.912500px;}
.ya2{bottom:127.914892px;}
.y70{bottom:128.287500px;}
.yd7{bottom:130.966656px;}
.y43{bottom:131.662500px;}
.ye2{bottom:131.755702px;}
.y3e{bottom:133.537500px;}
.y12e{bottom:142.162500px;}
.yb4{bottom:149.662500px;}
.yba{bottom:152.657930px;}
.yc3{bottom:152.729247px;}
.yf9{bottom:153.623206px;}
.y6f{bottom:154.170000px;}
.y102{bottom:154.501642px;}
.ya3{bottom:154.996935px;}
.y42{bottom:157.545000px;}
.y3d{bottom:159.420000px;}
.yd8{bottom:160.485737px;}
.ye3{bottom:161.381975px;}
.y9c{bottom:168.780000px;}
.yb3{bottom:175.575000px;}
.y12d{bottom:176.700000px;}
.y6e{bottom:180.075000px;}
.ya4{bottom:182.034030px;}
.y41{bottom:183.450000px;}
.y3c{bottom:185.325000px;}
.ybb{bottom:189.822156px;}
.yd9{bottom:189.994604px;}
.yc4{bottom:190.333749px;}
.yfa{bottom:190.664625px;}
.ye4{bottom:191.008250px;}
.y103{bottom:192.221137px;}
.y12c{bottom:193.950000px;}
.y9b{bottom:194.700000px;}
.yb2{bottom:201.450000px;}
.y6d{bottom:205.950000px;}
.y40{bottom:209.325000px;}
.y3b{bottom:211.200000px;}
.y106{bottom:217.210825px;}
.ydc{bottom:217.583190px;}
.yc7{bottom:217.600136px;}
.ybe{bottom:217.602510px;}
.ye7{bottom:218.013176px;}
.yfd{bottom:218.353172px;}
.y9a{bottom:220.575000px;}
.yb1{bottom:227.325000px;}
.y12b{bottom:228.450000px;}
.y6c{bottom:231.825000px;}
.y3f{bottom:235.950000px;}
.y3a{bottom:237.075000px;}
.y12a{bottom:245.700000px;}
.y99{bottom:247.200000px;}
.yb0{bottom:253.200000px;}
.y6b{bottom:257.700000px;}
.y39{bottom:262.950000px;}
.y98{bottom:273.075000px;}
.yaf{bottom:279.075000px;}
.y129{bottom:280.200000px;}
.y6a{bottom:283.575000px;}
.y38{bottom:288.825000px;}
.y128{bottom:297.450000px;}
.y96{bottom:298.950000px;}
.yae{bottom:304.995000px;}
.y69{bottom:309.495000px;}
.y37{bottom:314.730000px;}
.y91{bottom:325.620000px;}
.yad{bottom:330.855000px;}
.y127{bottom:331.995000px;}
.y68{bottom:335.370000px;}
.y36{bottom:340.620000px;}
.y126{bottom:349.245000px;}
.y94{bottom:352.245000px;}
.yac{bottom:356.745000px;}
.y67{bottom:361.230000px;}
.y35{bottom:366.495000px;}
.yab{bottom:382.620000px;}
.y125{bottom:383.745000px;}
.y66{bottom:387.120000px;}
.y34{bottom:392.355000px;}
.y124{bottom:400.995000px;}
.yaa{bottom:408.495000px;}
.y71{bottom:409.694959px;}
.y65{bottom:412.995000px;}
.y90{bottom:416.745000px;}
.y33{bottom:418.245000px;}
.y7a{bottom:430.620000px;}
.ya9{bottom:430.995000px;}
.yb5{bottom:431.310000px;}
.yd0{bottom:434.400000px;}
.y123{bottom:435.525000px;}
.y64{bottom:438.900000px;}
.y8f{bottom:442.650000px;}
.y32{bottom:444.150000px;}
.y122{bottom:452.775000px;}
.ycf{bottom:460.275000px;}
.y63{bottom:464.775000px;}
.y8e{bottom:468.525000px;}
.y31{bottom:470.025000px;}
.yce{bottom:486.150000px;}
.y121{bottom:487.275000px;}
.y62{bottom:490.650000px;}
.y8d{bottom:494.400000px;}
.y30{bottom:495.900000px;}
.y120{bottom:504.525000px;}
.ycd{bottom:512.025000px;}
.y61{bottom:516.525000px;}
.y18{bottom:519.525000px;}
.y8c{bottom:520.275000px;}
.y2f{bottom:521.775000px;}
.ycc{bottom:537.900000px;}
.y11f{bottom:539.025000px;}
.y60{bottom:542.400000px;}
.y8b{bottom:546.150000px;}
.y2e{bottom:547.650000px;}
.y11e{bottom:556.275000px;}
.y17{bottom:557.400000px;}
.ycb{bottom:563.820000px;}
.y5f{bottom:568.320000px;}
.y8a{bottom:572.070000px;}
.y2d{bottom:573.570000px;}
.y16{bottom:577.320000px;}
.y15{bottom:582.570000px;}
.yca{bottom:589.695000px;}
.y11d{bottom:590.820000px;}
.y5e{bottom:594.195000px;}
.y89{bottom:597.945000px;}
.y2c{bottom:599.445000px;}
.y11c{bottom:608.070000px;}
.y14{bottom:615.195000px;}
.yc9{bottom:615.570000px;}
.y5d{bottom:620.070000px;}
.y88{bottom:623.820000px;}
.y2b{bottom:625.320000px;}
.yc8{bottom:638.070000px;}
.ydd{bottom:638.280000px;}
.yd2{bottom:638.310000px;}
.yf3{bottom:641.445000px;}
.y11b{bottom:642.570000px;}
.y5c{bottom:645.945000px;}
.y87{bottom:649.695000px;}
.y2a{bottom:651.195000px;}
.y13{bottom:653.070000px;}
.y11a{bottom:659.820000px;}
.yf2{bottom:667.320000px;}
.y5b{bottom:671.820000px;}
.y86{bottom:675.570000px;}
.y29{bottom:677.070000px;}
.y12{bottom:690.975000px;}
.yf1{bottom:693.225000px;}
.y119{bottom:694.350000px;}
.y5a{bottom:697.725000px;}
.y85{bottom:701.475000px;}
.y28{bottom:702.975000px;}
.y11{bottom:710.850000px;}
.y118{bottom:711.600000px;}
.yf0{bottom:719.100000px;}
.y59{bottom:723.600000px;}
.y84{bottom:727.350000px;}
.y27{bottom:728.850000px;}
.y55{bottom:738.225000px;}
.yef{bottom:744.975000px;}
.y117{bottom:746.100000px;}
.y10{bottom:748.725000px;}
.y83{bottom:753.225000px;}
.y26{bottom:754.725000px;}
.y116{bottom:763.350000px;}
.y58{bottom:764.100000px;}
.yee{bottom:770.850000px;}
.y82{bottom:779.100000px;}
.y25{bottom:780.600000px;}
.yf{bottom:786.600000px;}
.y57{bottom:789.975000px;}
.yed{bottom:796.725000px;}
.y115{bottom:797.850000px;}
.y81{bottom:804.975000px;}
.ye{bottom:806.100000px;}
.y24{bottom:806.475000px;}
.y114{bottom:815.100000px;}
.y50{bottom:816.600000px;}
.yec{bottom:822.630000px;}
.y80{bottom:830.880000px;}
.y23{bottom:832.380000px;}
.y53{bottom:842.505000px;}
.yd{bottom:844.005000px;}
.yeb{bottom:848.505000px;}
.y113{bottom:849.645000px;}
.y7f{bottom:856.755000px;}
.y22{bottom:858.255000px;}
.y112{bottom:866.880000px;}
.y52{bottom:868.380000px;}
.yea{bottom:874.380000px;}
.yc{bottom:881.880000px;}
.y7e{bottom:882.630000px;}
.y21{bottom:884.130000px;}
.y4f{bottom:895.005000px;}
.ye9{bottom:900.255000px;}
.y10a{bottom:901.380000px;}
.yb{bottom:901.755000px;}
.y7d{bottom:908.505000px;}
.y20{bottom:910.005000px;}
.y111{bottom:918.630000px;}
.ye8{bottom:922.755000px;}
.yf4{bottom:922.920000px;}
.y109{bottom:927.255000px;}
.y4e{bottom:933.630000px;}
.y7c{bottom:934.380000px;}
.y1f{bottom:935.880000px;}
.ya{bottom:939.630000px;}
.y108{bottom:953.175000px;}
.y7b{bottom:956.925000px;}
.y4d{bottom:959.550000px;}
.y1e{bottom:961.800000px;}
.y107{bottom:970.425000px;}
.y4c{bottom:974.175000px;}
.y9{bottom:977.550000px;}
.y1d{bottom:987.675000px;}
.y8{bottom:997.425000px;}
.y4b{bottom:1000.050000px;}
.y110{bottom:1004.925000px;}
.y1c{bottom:1013.550000px;}
.y10f{bottom:1022.175000px;}
.y4a{bottom:1025.925000px;}
.y7{bottom:1035.300000px;}
.y1b{bottom:1039.425000px;}
.y44{bottom:1052.550000px;}
.y10e{bottom:1056.675000px;}
.y1a{bottom:1065.300000px;}
.y6{bottom:1073.175000px;}
.y10d{bottom:1073.925000px;}
.y46{bottom:1078.455000px;}
.y19{bottom:1091.205000px;}
.y10c{bottom:1108.455000px;}
.y5{bottom:1117.080000px;}
.y10b{bottom:1125.705000px;}
.y4{bottom:1142.955000px;}
.h2{height:21.000000px;}
.hb{height:25.875000px;}
.ha{height:25.912500px;}
.h25{height:31.904736px;}
.h19{height:32.004601px;}
.h1d{height:32.312027px;}
.h2b{height:32.410837px;}
.h21{height:34.491777px;}
.h22{height:34.504135px;}
.h29{height:34.652113px;}
.h28{height:34.706706px;}
.h24{height:34.713119px;}
.h26{height:34.717741px;}
.h1a{height:34.821774px;}
.h15{height:34.876790px;}
.h1b{height:34.924561px;}
.h1f{height:35.085564px;}
.h1e{height:35.156261px;}
.h2c{height:35.263768px;}
.h2d{height:35.301948px;}
.he{height:37.324421px;}
.h16{height:38.047410px;}
.h17{height:38.131334px;}
.h5{height:38.276367px;}
.h10{height:40.334037px;}
.hd{height:48.375656px;}
.h12{height:48.913940px;}
.h9{height:51.750000px;}
.h27{height:53.789062px;}
.h6{height:58.857422px;}
.h4{height:58.886719px;}
.h7{height:59.276367px;}
.h3{height:60.468750px;}
.h11{height:69.139957px;}
.h1{height:70.664062px;}
.hc{height:77.625000px;}
.h8{height:77.662500px;}
.hf{height:78.338573px;}
.h13{height:78.375000px;}
.h14{height:199.800000px;}
.h2a{height:233.804479px;}
.h20{height:233.805000px;}
.h1c{height:233.820000px;}
.h18{height:233.823200px;}
.h23{height:233.850000px;}
.h0{height:1263.000000px;}
.w2{width:9.037500px;}
.w14{width:18.037500px;}
.wd{width:65.662500px;}
.w5{width:85.162500px;}
.w8{width:95.700000px;}
.w6{width:116.662500px;}
.wb{width:127.162500px;}
.wa{width:127.575000px;}
.w7{width:138.412500px;}
.w4{width:138.450000px;}
.w10{width:148.200000px;}
.wf{width:148.537500px;}
.we{width:148.575000px;}
.w9{width:148.912500px;}
.wc{width:153.750338px;}
.w12{width:296.319448px;}
.w16{width:296.760041px;}
.w15{width:297.150000px;}
.w17{width:298.425000px;}
.w13{width:301.425000px;}
.w18{width:304.790287px;}
.w11{width:403.095000px;}
.w3{width:892.499973px;}
.w1{width:892.499987px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x17{left:5.250000px;}
.x12{left:8.250000px;}
.x1e{left:12.030000px;}
.x1d{left:13.875000px;}
.x18{left:15.000000px;}
.x3f{left:16.482646px;}
.x1c{left:18.750000px;}
.x2a{left:20.344686px;}
.x14{left:22.545000px;}
.x3d{left:24.955122px;}
.xd{left:27.750000px;}
.x33{left:29.655000px;}
.x2c{left:30.787588px;}
.xf{left:33.000000px;}
.x19{left:34.500000px;}
.x36{left:36.030000px;}
.x42{left:37.348087px;}
.x16{left:39.000000px;}
.x35{left:40.860000px;}
.x24{left:42.375000px;}
.x25{left:44.250000px;}
.x27{left:45.780000px;}
.x23{left:48.000000px;}
.x26{left:49.530000px;}
.xb{left:51.037500px;}
.x1a{left:52.125000px;}
.x1b{left:53.625000px;}
.x2b{left:60.544540px;}
.x11{left:69.030000px;}
.x29{left:72.310859px;}
.x9{left:73.537473px;}
.x40{left:81.438980px;}
.x7{left:82.537473px;}
.x4b{left:85.070480px;}
.x4{left:91.537473px;}
.xa{left:95.662500px;}
.x5{left:100.537487px;}
.x2f{left:116.662500px;}
.x3e{left:125.908099px;}
.x1{left:127.537487px;}
.x3a{left:130.162487px;}
.x48{left:133.199987px;}
.x28{left:136.091050px;}
.x45{left:138.824987px;}
.x3c{left:145.500000px;}
.x46{left:147.412500px;}
.x3{left:148.574987px;}
.x8{left:180.824987px;}
.x30{left:182.325000px;}
.xc{left:234.120000px;}
.x37{left:244.650000px;}
.x1f{left:255.120000px;}
.xe{left:319.275000px;}
.x38{left:325.178122px;}
.x31{left:330.900000px;}
.x2d{left:334.649987px;}
.x49{left:344.774987px;}
.x3b{left:352.274987px;}
.x20{left:382.275000px;}
.x6{left:394.274987px;}
.x10{left:435.945000px;}
.x39{left:441.944987px;}
.x4a{left:443.070000px;}
.x44{left:444.569987px;}
.x41{left:445.575000px;}
.x47{left:448.319959px;}
.x32{left:479.445000px;}
.x21{left:509.850000px;}
.x13{left:574.350000px;}
.x34{left:627.645000px;}
.x22{left:637.020000px;}
.x2e{left:647.879987px;}
.x15{left:670.050000px;}
.x43{left:747.300000px;}
.x2{left:756.300000px;}
@media print{
.v1{vertical-align:-70.666667pt;}
.v2{vertical-align:-69.333333pt;}
.v8{vertical-align:-61.333333pt;}
.v7{vertical-align:-20.845002pt;}
.v3{vertical-align:-18.666667pt;}
.v4{vertical-align:-5.333333pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:5.333333pt;}
.v5{vertical-align:18.666667pt;}
.ls1b{letter-spacing:-1.333333pt;}
.lsf{letter-spacing:-0.586667pt;}
.ls6{letter-spacing:-0.426667pt;}
.ls17{letter-spacing:-0.181256pt;}
.ls15{letter-spacing:-0.180133pt;}
.lse{letter-spacing:-0.160000pt;}
.lsc{letter-spacing:-0.057716pt;}
.ls12{letter-spacing:-0.049544pt;}
.ls18{letter-spacing:-0.046041pt;}
.ls14{letter-spacing:-0.045901pt;}
.ls13{letter-spacing:-0.045464pt;}
.ls16{letter-spacing:-0.045322pt;}
.ls3{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.053333pt;}
.ls9{letter-spacing:0.106667pt;}
.ls1c{letter-spacing:0.160000pt;}
.ls8{letter-spacing:0.213333pt;}
.lsa{letter-spacing:0.320000pt;}
.ls5{letter-spacing:0.373333pt;}
.ls7{letter-spacing:0.426667pt;}
.ls1{letter-spacing:0.666667pt;}
.ls4{letter-spacing:0.720000pt;}
.ls11{letter-spacing:0.746667pt;}
.lsd{letter-spacing:0.906667pt;}
.lsb{letter-spacing:1.333333pt;}
.ls1a{letter-spacing:6.666667pt;}
.ls0{letter-spacing:80.000000pt;}
.ls19{letter-spacing:272.133333pt;}
.ls2{letter-spacing:755.040000pt;}
.ws7{word-spacing:-15.597191pt;}
.wsb{word-spacing:-14.080000pt;}
.ws19{word-spacing:-13.493333pt;}
.ws1{word-spacing:-13.333333pt;}
.ws9{word-spacing:-13.173333pt;}
.ws3{word-spacing:-12.906667pt;}
.wsa{word-spacing:-12.746667pt;}
.ws12{word-spacing:-10.990811pt;}
.wse{word-spacing:-10.984647pt;}
.wsf{word-spacing:-10.935102pt;}
.ws2{word-spacing:-8.666667pt;}
.ws0{word-spacing:0.000000pt;}
.wsc{word-spacing:12.683676pt;}
.ws6{word-spacing:14.105689pt;}
.ws11{word-spacing:17.817902pt;}
.ws10{word-spacing:28.656773pt;}
.wsd{word-spacing:31.887939pt;}
.ws17{word-spacing:98.836496pt;}
.ws13{word-spacing:128.041275pt;}
.ws15{word-spacing:131.574284pt;}
.ws16{word-spacing:132.049470pt;}
.ws4{word-spacing:138.626596pt;}
.ws14{word-spacing:139.551652pt;}
.ws18{word-spacing:170.101139pt;}
.ws8{word-spacing:262.916989pt;}
.ws5{word-spacing:440.962723pt;}
._13{margin-left:-137.699823pt;}
._12{margin-left:-116.492061pt;}
._14{margin-left:-79.933065pt;}
._11{margin-left:-59.278178pt;}
._9{margin-left:-3.306667pt;}
._4{margin-left:-1.866667pt;}
._0{margin-left:-0.960000pt;}
._1{width:1.120000pt;}
._6{width:2.053333pt;}
._d{width:3.013333pt;}
._2{width:3.920000pt;}
._8{width:4.960000pt;}
._7{width:5.973333pt;}
._c{width:6.880000pt;}
._3{width:7.946667pt;}
._b{width:9.413333pt;}
._5{width:10.373333pt;}
._a{width:11.466667pt;}
._1a{width:12.373333pt;}
._25{width:14.640000pt;}
._26{width:15.760000pt;}
._10{width:16.853333pt;}
._f{width:17.760000pt;}
._18{width:18.720000pt;}
._17{width:19.653333pt;}
._1b{width:21.706667pt;}
._1c{width:23.013333pt;}
._e{width:25.200000pt;}
._19{width:34.754259pt;}
._22{width:40.000000pt;}
._1e{width:41.786667pt;}
._1f{width:43.013333pt;}
._23{width:108.780899pt;}
._21{width:144.110718pt;}
._16{width:174.560000pt;}
._15{width:176.373333pt;}
._24{width:181.259649pt;}
._20{width:1055.040000pt;}
._1d{width:1071.040000pt;}
.fs2{font-size:34.666667pt;}
.fs5{font-size:36.530286pt;}
.fs14{font-size:40.194325pt;}
.fsb{font-size:40.320137pt;}
.fse{font-size:40.707440pt;}
.fs18{font-size:40.831922pt;}
.fs11{font-size:43.453539pt;}
.fs12{font-size:43.469107pt;}
.fs17{font-size:43.655534pt;}
.fs16{font-size:43.724312pt;}
.fs13{font-size:43.732391pt;}
.fs15{font-size:43.738214pt;}
.fsc{font-size:43.869277pt;}
.fs7{font-size:43.938587pt;}
.fs9{font-size:43.963243pt;}
.fsd{font-size:43.998771pt;}
.fs10{font-size:44.201606pt;}
.fsf{font-size:44.290672pt;}
.fs19{font-size:44.426111pt;}
.fs1a{font-size:44.474211pt;}
.fs3{font-size:47.782725pt;}
.fsa{font-size:47.906125pt;}
.fs8{font-size:47.933008pt;}
.fs1{font-size:53.333333pt;}
.fs6{font-size:62.619627pt;}
.fs0{font-size:64.000000pt;}
.fs4{font-size:100.289044pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:3.666667pt;}
.y9d{bottom:4.445792pt;}
.y75{bottom:6.028189pt;}
.y78{bottom:6.028192pt;}
.y73{bottom:6.068878pt;}
.yda{bottom:6.538353pt;}
.yfb{bottom:6.554231pt;}
.y104{bottom:6.728152pt;}
.yc5{bottom:7.110754pt;}
.ybc{bottom:7.174710pt;}
.ye5{bottom:7.462818pt;}
.y95{bottom:10.653333pt;}
.y48{bottom:10.666667pt;}
.y97{bottom:10.693333pt;}
.y54{bottom:10.706667pt;}
.y74{bottom:13.032199pt;}
.y72{bottom:13.032209pt;}
.y9e{bottom:17.538272pt;}
.y79{bottom:18.243474pt;}
.y77{bottom:18.243477pt;}
.y49{bottom:22.000000pt;}
.y93{bottom:22.333333pt;}
.ybf{bottom:23.398357pt;}
.yfe{bottom:24.609801pt;}
.yb6{bottom:24.627653pt;}
.yf5{bottom:24.970170pt;}
.yd3{bottom:24.998037pt;}
.yde{bottom:25.201402pt;}
.y76{bottom:28.016116pt;}
.y47{bottom:33.666667pt;}
.y45{bottom:33.693333pt;}
.yc0{bottom:35.528781pt;}
.yb7{bottom:36.618834pt;}
.yff{bottom:36.776392pt;}
.yd4{bottom:37.777155pt;}
.yf6{bottom:37.897440pt;}
.ydf{bottom:38.040597pt;}
.yc6{bottom:38.307822pt;}
.y9f{bottom:41.541278pt;}
.ybd{bottom:42.012209pt;}
.y92{bottom:45.333333pt;}
.y2{bottom:46.700000pt;}
.ya5{bottom:50.195547pt;}
.y1{bottom:50.366667pt;}
.ya8{bottom:53.642615pt;}
.y105{bottom:53.667782pt;}
.yfc{bottom:55.972780pt;}
.y56{bottom:56.666667pt;}
.y51{bottom:56.693333pt;}
.yd5{bottom:63.944612pt;}
.ye0{bottom:64.375976pt;}
.ya0{bottom:65.619200pt;}
.ye6{bottom:67.347514pt;}
.ydb{bottom:67.844174pt;}
.yc1{bottom:68.954080pt;}
.yb8{bottom:69.590455pt;}
.y100{bottom:70.304832pt;}
.yf7{bottom:70.759195pt;}
.ya7{bottom:73.975749pt;}
.ya1{bottom:89.622206pt;}
.yd6{bottom:90.180163pt;}
.ye1{bottom:90.779887pt;}
.ya6{bottom:94.283910pt;}
.yc2{bottom:102.407141pt;}
.yb9{bottom:102.651905pt;}
.yf8{bottom:103.692208pt;}
.y101{bottom:103.834200pt;}
.yd1{bottom:110.033333pt;}
.y12f{bottom:111.033333pt;}
.ya2{bottom:113.702126pt;}
.y70{bottom:114.033333pt;}
.yd7{bottom:116.414806pt;}
.y43{bottom:117.033333pt;}
.ye2{bottom:117.116180pt;}
.y3e{bottom:118.700000pt;}
.y12e{bottom:126.366667pt;}
.yb4{bottom:133.033333pt;}
.yba{bottom:135.695938pt;}
.yc3{bottom:135.759331pt;}
.yf9{bottom:136.553961pt;}
.y6f{bottom:137.040000pt;}
.y102{bottom:137.334793pt;}
.ya3{bottom:137.775054pt;}
.y42{bottom:140.040000pt;}
.y3d{bottom:141.706667pt;}
.yd8{bottom:142.653988pt;}
.ye3{bottom:143.450645pt;}
.y9c{bottom:150.026667pt;}
.yb3{bottom:156.066667pt;}
.y12d{bottom:157.066667pt;}
.y6e{bottom:160.066667pt;}
.ya4{bottom:161.808026pt;}
.y41{bottom:163.066667pt;}
.y3c{bottom:164.733333pt;}
.ybb{bottom:168.730806pt;}
.yd9{bottom:168.884092pt;}
.yc4{bottom:169.185554pt;}
.yfa{bottom:169.479667pt;}
.ye4{bottom:169.785111pt;}
.y103{bottom:170.863233pt;}
.y12c{bottom:172.400000pt;}
.y9b{bottom:173.066667pt;}
.yb2{bottom:179.066667pt;}
.y6d{bottom:183.066667pt;}
.y40{bottom:186.066667pt;}
.y3b{bottom:187.733333pt;}
.y106{bottom:193.076289pt;}
.ydc{bottom:193.407280pt;}
.yc7{bottom:193.422343pt;}
.ybe{bottom:193.424454pt;}
.ye7{bottom:193.789490pt;}
.yfd{bottom:194.091708pt;}
.y9a{bottom:196.066667pt;}
.yb1{bottom:202.066667pt;}
.y12b{bottom:203.066667pt;}
.y6c{bottom:206.066667pt;}
.y3f{bottom:209.733333pt;}
.y3a{bottom:210.733333pt;}
.y12a{bottom:218.400000pt;}
.y99{bottom:219.733333pt;}
.yb0{bottom:225.066667pt;}
.y6b{bottom:229.066667pt;}
.y39{bottom:233.733333pt;}
.y98{bottom:242.733333pt;}
.yaf{bottom:248.066667pt;}
.y129{bottom:249.066667pt;}
.y6a{bottom:252.066667pt;}
.y38{bottom:256.733333pt;}
.y128{bottom:264.400000pt;}
.y96{bottom:265.733333pt;}
.yae{bottom:271.106667pt;}
.y69{bottom:275.106667pt;}
.y37{bottom:279.760000pt;}
.y91{bottom:289.440000pt;}
.yad{bottom:294.093333pt;}
.y127{bottom:295.106667pt;}
.y68{bottom:298.106667pt;}
.y36{bottom:302.773333pt;}
.y126{bottom:310.440000pt;}
.y94{bottom:313.106667pt;}
.yac{bottom:317.106667pt;}
.y67{bottom:321.093333pt;}
.y35{bottom:325.773333pt;}
.yab{bottom:340.106667pt;}
.y125{bottom:341.106667pt;}
.y66{bottom:344.106667pt;}
.y34{bottom:348.760000pt;}
.y124{bottom:356.440000pt;}
.yaa{bottom:363.106667pt;}
.y71{bottom:364.173297pt;}
.y65{bottom:367.106667pt;}
.y90{bottom:370.440000pt;}
.y33{bottom:371.773333pt;}
.y7a{bottom:382.773333pt;}
.ya9{bottom:383.106667pt;}
.yb5{bottom:383.386667pt;}
.yd0{bottom:386.133333pt;}
.y123{bottom:387.133333pt;}
.y64{bottom:390.133333pt;}
.y8f{bottom:393.466667pt;}
.y32{bottom:394.800000pt;}
.y122{bottom:402.466667pt;}
.ycf{bottom:409.133333pt;}
.y63{bottom:413.133333pt;}
.y8e{bottom:416.466667pt;}
.y31{bottom:417.800000pt;}
.yce{bottom:432.133333pt;}
.y121{bottom:433.133333pt;}
.y62{bottom:436.133333pt;}
.y8d{bottom:439.466667pt;}
.y30{bottom:440.800000pt;}
.y120{bottom:448.466667pt;}
.ycd{bottom:455.133333pt;}
.y61{bottom:459.133333pt;}
.y18{bottom:461.800000pt;}
.y8c{bottom:462.466667pt;}
.y2f{bottom:463.800000pt;}
.ycc{bottom:478.133333pt;}
.y11f{bottom:479.133333pt;}
.y60{bottom:482.133333pt;}
.y8b{bottom:485.466667pt;}
.y2e{bottom:486.800000pt;}
.y11e{bottom:494.466667pt;}
.y17{bottom:495.466667pt;}
.ycb{bottom:501.173333pt;}
.y5f{bottom:505.173333pt;}
.y8a{bottom:508.506667pt;}
.y2d{bottom:509.840000pt;}
.y16{bottom:513.173333pt;}
.y15{bottom:517.840000pt;}
.yca{bottom:524.173333pt;}
.y11d{bottom:525.173333pt;}
.y5e{bottom:528.173333pt;}
.y89{bottom:531.506667pt;}
.y2c{bottom:532.840000pt;}
.y11c{bottom:540.506667pt;}
.y14{bottom:546.840000pt;}
.yc9{bottom:547.173333pt;}
.y5d{bottom:551.173333pt;}
.y88{bottom:554.506667pt;}
.y2b{bottom:555.840000pt;}
.yc8{bottom:567.173333pt;}
.ydd{bottom:567.360000pt;}
.yd2{bottom:567.386667pt;}
.yf3{bottom:570.173333pt;}
.y11b{bottom:571.173333pt;}
.y5c{bottom:574.173333pt;}
.y87{bottom:577.506667pt;}
.y2a{bottom:578.840000pt;}
.y13{bottom:580.506667pt;}
.y11a{bottom:586.506667pt;}
.yf2{bottom:593.173333pt;}
.y5b{bottom:597.173333pt;}
.y86{bottom:600.506667pt;}
.y29{bottom:601.840000pt;}
.y12{bottom:614.200000pt;}
.yf1{bottom:616.200000pt;}
.y119{bottom:617.200000pt;}
.y5a{bottom:620.200000pt;}
.y85{bottom:623.533333pt;}
.y28{bottom:624.866667pt;}
.y11{bottom:631.866667pt;}
.y118{bottom:632.533333pt;}
.yf0{bottom:639.200000pt;}
.y59{bottom:643.200000pt;}
.y84{bottom:646.533333pt;}
.y27{bottom:647.866667pt;}
.y55{bottom:656.200000pt;}
.yef{bottom:662.200000pt;}
.y117{bottom:663.200000pt;}
.y10{bottom:665.533333pt;}
.y83{bottom:669.533333pt;}
.y26{bottom:670.866667pt;}
.y116{bottom:678.533333pt;}
.y58{bottom:679.200000pt;}
.yee{bottom:685.200000pt;}
.y82{bottom:692.533333pt;}
.y25{bottom:693.866667pt;}
.yf{bottom:699.200000pt;}
.y57{bottom:702.200000pt;}
.yed{bottom:708.200000pt;}
.y115{bottom:709.200000pt;}
.y81{bottom:715.533333pt;}
.ye{bottom:716.533333pt;}
.y24{bottom:716.866667pt;}
.y114{bottom:724.533333pt;}
.y50{bottom:725.866667pt;}
.yec{bottom:731.226667pt;}
.y80{bottom:738.560000pt;}
.y23{bottom:739.893333pt;}
.y53{bottom:748.893333pt;}
.yd{bottom:750.226667pt;}
.yeb{bottom:754.226667pt;}
.y113{bottom:755.240000pt;}
.y7f{bottom:761.560000pt;}
.y22{bottom:762.893333pt;}
.y112{bottom:770.560000pt;}
.y52{bottom:771.893333pt;}
.yea{bottom:777.226667pt;}
.yc{bottom:783.893333pt;}
.y7e{bottom:784.560000pt;}
.y21{bottom:785.893333pt;}
.y4f{bottom:795.560000pt;}
.ye9{bottom:800.226667pt;}
.y10a{bottom:801.226667pt;}
.yb{bottom:801.560000pt;}
.y7d{bottom:807.560000pt;}
.y20{bottom:808.893333pt;}
.y111{bottom:816.560000pt;}
.ye8{bottom:820.226667pt;}
.yf4{bottom:820.373333pt;}
.y109{bottom:824.226667pt;}
.y4e{bottom:829.893333pt;}
.y7c{bottom:830.560000pt;}
.y1f{bottom:831.893333pt;}
.ya{bottom:835.226667pt;}
.y108{bottom:847.266667pt;}
.y7b{bottom:850.600000pt;}
.y4d{bottom:852.933333pt;}
.y1e{bottom:854.933333pt;}
.y107{bottom:862.600000pt;}
.y4c{bottom:865.933333pt;}
.y9{bottom:868.933333pt;}
.y1d{bottom:877.933333pt;}
.y8{bottom:886.600000pt;}
.y4b{bottom:888.933333pt;}
.y110{bottom:893.266667pt;}
.y1c{bottom:900.933333pt;}
.y10f{bottom:908.600000pt;}
.y4a{bottom:911.933333pt;}
.y7{bottom:920.266667pt;}
.y1b{bottom:923.933333pt;}
.y44{bottom:935.600000pt;}
.y10e{bottom:939.266667pt;}
.y1a{bottom:946.933333pt;}
.y6{bottom:953.933333pt;}
.y10d{bottom:954.600000pt;}
.y46{bottom:958.626667pt;}
.y19{bottom:969.960000pt;}
.y10c{bottom:985.293333pt;}
.y5{bottom:992.960000pt;}
.y10b{bottom:1000.626667pt;}
.y4{bottom:1015.960000pt;}
.h2{height:18.666667pt;}
.hb{height:23.000000pt;}
.ha{height:23.033333pt;}
.h25{height:28.359766pt;}
.h19{height:28.448534pt;}
.h1d{height:28.721802pt;}
.h2b{height:28.809633pt;}
.h21{height:30.659357pt;}
.h22{height:30.670342pt;}
.h29{height:30.801879pt;}
.h28{height:30.850406pt;}
.h24{height:30.856106pt;}
.h26{height:30.860214pt;}
.h1a{height:30.952688pt;}
.h15{height:31.001591pt;}
.h1b{height:31.044055pt;}
.h1f{height:31.187168pt;}
.h1e{height:31.250010pt;}
.h2c{height:31.345572pt;}
.h2d{height:31.379509pt;}
.he{height:33.177263pt;}
.h16{height:33.819920pt;}
.h17{height:33.894519pt;}
.h5{height:34.023438pt;}
.h10{height:35.852478pt;}
.hd{height:43.000583pt;}
.h12{height:43.479058pt;}
.h9{height:46.000000pt;}
.h27{height:47.812500pt;}
.h6{height:52.317708pt;}
.h4{height:52.343750pt;}
.h7{height:52.690104pt;}
.h3{height:53.750000pt;}
.h11{height:61.457740pt;}
.h1{height:62.812500pt;}
.hc{height:69.000000pt;}
.h8{height:69.033333pt;}
.hf{height:69.634287pt;}
.h13{height:69.666667pt;}
.h14{height:177.600000pt;}
.h2a{height:207.826204pt;}
.h20{height:207.826667pt;}
.h1c{height:207.840000pt;}
.h18{height:207.842845pt;}
.h23{height:207.866667pt;}
.h0{height:1122.666667pt;}
.w2{width:8.033333pt;}
.w14{width:16.033333pt;}
.wd{width:58.366667pt;}
.w5{width:75.700000pt;}
.w8{width:85.066667pt;}
.w6{width:103.700000pt;}
.wb{width:113.033333pt;}
.wa{width:113.400000pt;}
.w7{width:123.033333pt;}
.w4{width:123.066667pt;}
.w10{width:131.733333pt;}
.wf{width:132.033333pt;}
.we{width:132.066667pt;}
.w9{width:132.366667pt;}
.wc{width:136.666967pt;}
.w12{width:263.395065pt;}
.w16{width:263.786703pt;}
.w15{width:264.133333pt;}
.w17{width:265.266667pt;}
.w13{width:267.933333pt;}
.w18{width:270.924700pt;}
.w11{width:358.306667pt;}
.w3{width:793.333310pt;}
.w1{width:793.333322pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x17{left:4.666667pt;}
.x12{left:7.333333pt;}
.x1e{left:10.693333pt;}
.x1d{left:12.333333pt;}
.x18{left:13.333333pt;}
.x3f{left:14.651241pt;}
.x1c{left:16.666667pt;}
.x2a{left:18.084165pt;}
.x14{left:20.040000pt;}
.x3d{left:22.182331pt;}
.xd{left:24.666667pt;}
.x33{left:26.360000pt;}
.x2c{left:27.366745pt;}
.xf{left:29.333333pt;}
.x19{left:30.666667pt;}
.x36{left:32.026667pt;}
.x42{left:33.198300pt;}
.x16{left:34.666667pt;}
.x35{left:36.320000pt;}
.x24{left:37.666667pt;}
.x25{left:39.333333pt;}
.x27{left:40.693333pt;}
.x23{left:42.666667pt;}
.x26{left:44.026667pt;}
.xb{left:45.366667pt;}
.x1a{left:46.333333pt;}
.x1b{left:47.666667pt;}
.x2b{left:53.817369pt;}
.x11{left:61.360000pt;}
.x29{left:64.276319pt;}
.x9{left:65.366643pt;}
.x40{left:72.390205pt;}
.x7{left:73.366643pt;}
.x4b{left:75.618205pt;}
.x4{left:81.366643pt;}
.xa{left:85.033333pt;}
.x5{left:89.366655pt;}
.x2f{left:103.700000pt;}
.x3e{left:111.918311pt;}
.x1{left:113.366655pt;}
.x3a{left:115.699988pt;}
.x48{left:118.399988pt;}
.x28{left:120.969822pt;}
.x45{left:123.399988pt;}
.x3c{left:129.333333pt;}
.x46{left:131.033333pt;}
.x3{left:132.066655pt;}
.x8{left:160.733322pt;}
.x30{left:162.066667pt;}
.xc{left:208.106667pt;}
.x37{left:217.466667pt;}
.x1f{left:226.773333pt;}
.xe{left:283.800000pt;}
.x38{left:289.047220pt;}
.x31{left:294.133333pt;}
.x2d{left:297.466655pt;}
.x49{left:306.466655pt;}
.x3b{left:313.133322pt;}
.x20{left:339.800000pt;}
.x6{left:350.466655pt;}
.x10{left:387.506667pt;}
.x39{left:392.839988pt;}
.x4a{left:393.840000pt;}
.x44{left:395.173322pt;}
.x41{left:396.066667pt;}
.x47{left:398.506630pt;}
.x32{left:426.173333pt;}
.x21{left:453.200000pt;}
.x13{left:510.533333pt;}
.x34{left:557.906667pt;}
.x22{left:566.240000pt;}
.x2e{left:575.893322pt;}
.x15{left:595.600000pt;}
.x43{left:664.266667pt;}
.x2{left:672.266667pt;}
}




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