
    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_ea8a0069b34d272cf8558914.woff')format("woff");}.ff1{font-family:ff1;line-height:1.064941;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_e83b8cd344207321c6253bb3.woff')format("woff");}.ff2{font-family:ff2;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_f4f0311e32e92b1f94d5ff60.woff')format("woff");}.ff3{font-family:ff3;line-height:0.729492;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_1e2673e54cf5cdcd3c787cb1.woff')format("woff");}.ff4{font-family:ff4;line-height:0.850586;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_68cebe2b31d1c4a048092f7d.woff')format("woff");}.ff5{font-family:ff5;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_0d9d523a669ade88ee25035d.woff')format("woff");}.ff6{font-family:ff6;line-height:1.202148;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_43f71bdb106d005305a26f6c.woff')format("woff");}.ff7{font-family:ff7;line-height:1.202148;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_85569c3bd5252635709c942d.woff')format("woff");}.ff8{font-family:ff8;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_ca6cefd2a88cd9d6265fcf8e.woff')format("woff");}.ff9{font-family:ff9;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;}
@font-face{font-family:ffa;src:url('chunks/assets/font_9043713a9603fcc28fc47fb2.woff')format("woff");}.ffa{font-family:ffa;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;}
@font-face{font-family:ffb;src:url('chunks/assets/font_247aa47f4867440be8b04ace.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_d9f383ffd769b7ececde39aa.woff')format("woff");}.ffc{font-family:ffc;line-height:1.056152;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_723d6b64be5e9d1b3b1f98f6.woff')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_4fc6a8f3dc7b8a5207f6f76a.woff')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_8aaf05a9c50f20ab18f921ca.woff')format("woff");}.fff{font-family:fff;line-height:0.977539;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:ff10;src:url('chunks/assets/font_fc4af3ac8e5fbf3e3b268ba0.woff')format("woff");}.ff10{font-family:ff10;line-height:0.800293;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:ff11;src:url('chunks/assets/font_98b7fb5275cbcd04c20fdde9.woff')format("woff");}.ff11{font-family:ff11;line-height:1.064941;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:ff12;src:url('chunks/assets/font_c8947bd8362732a0bc3dd67a.woff')format("woff");}.ff12{font-family:ff12;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.lsd{letter-spacing:-0.930000px;}
.ls11{letter-spacing:-0.536400px;}
.lse{letter-spacing:-0.501000px;}
.ls9{letter-spacing:-0.450000px;}
.ls7{letter-spacing:-0.324000px;}
.ls6{letter-spacing:-0.216000px;}
.lsf{letter-spacing:-0.208200px;}
.ls4{letter-spacing:-0.172800px;}
.ls5{letter-spacing:-0.144000px;}
.lsa{letter-spacing:-0.140400px;}
.lsc{letter-spacing:-0.085200px;}
.ls8{letter-spacing:-0.018000px;}
.lsb{letter-spacing:-0.012240px;}
.ls3{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.174240px;}
.ls0{letter-spacing:0.283680px;}
.ls12{letter-spacing:0.288000px;}
.ls1{letter-spacing:0.433440px;}
.ls10{letter-spacing:0.511800px;}
.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;}
}
.ws10{word-spacing:-18.288000px;}
.ws2{word-spacing:-18.000000px;}
.ws3{word-spacing:-17.856000px;}
.ws0{word-spacing:-17.107200px;}
.ws5{word-spacing:-11.106000px;}
.ws6{word-spacing:-10.674000px;}
.ws9{word-spacing:-10.612800px;}
.wsa{word-spacing:-10.527600px;}
.ws8{word-spacing:-10.472400px;}
.wse{word-spacing:-10.449240px;}
.wsc{word-spacing:-10.111800px;}
.ws4{word-spacing:-9.937440px;}
.wsd{word-spacing:-9.729240px;}
.wsf{word-spacing:-9.401040px;}
.wsb{word-spacing:-9.007440px;}
.ws1{word-spacing:-0.077760px;}
.ws7{word-spacing:0.000000px;}
._26{margin-left:-6.108000px;}
._3{margin-left:-3.107520px;}
._0{margin-left:-1.134000px;}
._2{width:1.244880px;}
._4{width:2.952000px;}
._9{width:4.536000px;}
._7{width:5.904000px;}
._8{width:7.119360px;}
._12{width:8.856000px;}
._d{width:10.008000px;}
._a{width:11.553120px;}
._b{width:13.044000px;}
._c{width:14.145120px;}
._5{width:15.624000px;}
._6{width:16.776000px;}
._14{width:19.836000px;}
._13{width:20.952000px;}
._16{width:22.896000px;}
._15{width:24.582000px;}
._17{width:25.776000px;}
._18{width:27.000000px;}
._e{width:29.160000px;}
._11{width:30.384000px;}
._10{width:31.608000px;}
._f{width:32.616000px;}
._2a{width:38.046240px;}
._23{width:42.228000px;}
._19{width:44.208000px;}
._2b{width:57.402000px;}
._29{width:59.976000px;}
._28{width:76.788000px;}
._25{width:96.048000px;}
._1b{width:100.656000px;}
._2c{width:104.112000px;}
._21{width:120.204000px;}
._1a{width:134.748000px;}
._2d{width:139.968000px;}
._1f{width:142.356000px;}
._27{width:150.732000px;}
._22{width:154.899120px;}
._20{width:164.592000px;}
._1e{width:166.032000px;}
._1c{width:168.228000px;}
._24{width:178.560000px;}
._1d{width:184.080000px;}
._1{width:2694.606000px;}
.fc8{color:rgb(0,0,255);}
.fc7{color:rgb(14,16,26);}
.fc6{color:transparent;}
.fc2{color:rgb(238,78,60);}
.fc5{color:rgb(166,166,166);}
.fc4{color:rgb(255,255,255);}
.fc3{color:rgb(35,31,32);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(38,38,38);}
.fs9{font-size:36.000000px;}
.fs0{font-size:45.360000px;}
.fs8{font-size:48.240000px;}
.fs2{font-size:54.000000px;}
.fs5{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs6{font-size:77.760000px;}
.fs7{font-size:84.240000px;}
.fs4{font-size:95.760000px;}
.y39{bottom:-6.480000px;}
.y34{bottom:-0.210000px;}
.y0{bottom:0.000000px;}
.y30{bottom:1.080000px;}
.y32{bottom:2.490000px;}
.y3{bottom:4.500000px;}
.y3a{bottom:5.400000px;}
.y61{bottom:5.940000px;}
.y112{bottom:6.120000px;}
.y38{bottom:12.240000px;}
.y111{bottom:14.760000px;}
.y82{bottom:15.480000px;}
.y125{bottom:15.840000px;}
.yc7{bottom:16.020000px;}
.y140{bottom:16.200000px;}
.y60{bottom:16.380000px;}
.y3f{bottom:22.680000px;}
.y2{bottom:24.660000px;}
.y37{bottom:27.720000px;}
.y3b{bottom:35.820000px;}
.y36{bottom:41.040000px;}
.y1{bottom:42.660000px;}
.y2e{bottom:47.880000px;}
.y2f{bottom:72.180000px;}
.y13f{bottom:112.860000px;}
.ydf{bottom:114.660000px;}
.y2d{bottom:115.560000px;}
.y5f{bottom:127.800000px;}
.ya9{bottom:129.240000px;}
.y2c{bottom:136.260000px;}
.y110{bottom:140.220000px;}
.y100{bottom:149.040000px;}
.y13e{bottom:151.560000px;}
.yc6{bottom:152.460000px;}
.y5e{bottom:152.820000px;}
.ya8{bottom:153.180000px;}
.y124{bottom:155.160000px;}
.y2b{bottom:156.960000px;}
.y81{bottom:160.200000px;}
.y10f{bottom:163.980000px;}
.yff{bottom:172.800000px;}
.y5d{bottom:173.520000px;}
.yde{bottom:175.500000px;}
.ya7{bottom:176.940000px;}
.y2a{bottom:177.660000px;}
.y123{bottom:179.100000px;}
.y80{bottom:183.960000px;}
.y10e{bottom:187.740000px;}
.yc5{bottom:189.000000px;}
.y13d{bottom:190.440000px;}
.yfe{bottom:196.560000px;}
.y29{bottom:198.360000px;}
.ydd{bottom:199.260000px;}
.y122{bottom:202.860000px;}
.y7f{bottom:207.750000px;}
.yc4{bottom:212.790000px;}
.y13c{bottom:214.230000px;}
.ya6{bottom:215.670000px;}
.y28{bottom:219.090000px;}
.ydc{bottom:223.590000px;}
.y10d{bottom:226.650000px;}
.y7e{bottom:231.690000px;}
.yfd{bottom:235.470000px;}
.yc3{bottom:236.730000px;}
.ya5{bottom:239.610000px;}
.y27{bottom:239.790000px;}
.y121{bottom:241.590000px;}
.ydb{bottom:247.350000px;}
.y10c{bottom:250.410000px;}
.y13b{bottom:253.110000px;}
.y7d{bottom:255.450000px;}
.yfc{bottom:259.230000px;}
.y26{bottom:260.490000px;}
.ya4{bottom:263.370000px;}
.y120{bottom:265.530000px;}
.yda{bottom:271.110000px;}
.y10b{bottom:274.350000px;}
.y13a{bottom:276.870000px;}
.y7c{bottom:279.210000px;}
.y25{bottom:281.190000px;}
.yfb{bottom:282.990000px;}
.yc2{bottom:284.250000px;}
.y11f{bottom:289.290000px;}
.ya3{bottom:293.970000px;}
.yd9{bottom:294.870000px;}
.y139{bottom:300.630000px;}
.y7b{bottom:302.970000px;}
.y24{bottom:304.770000px;}
.yfa{bottom:306.930000px;}
.y10a{bottom:313.050000px;}
.yd8{bottom:318.810000px;}
.yc1{bottom:320.790000px;}
.y138{bottom:324.390000px;}
.y7a{bottom:326.910000px;}
.y23{bottom:328.530000px;}
.ya2{bottom:333.210000px;}
.y109{bottom:336.810000px;}
.yd7{bottom:342.570000px;}
.yc0{bottom:344.550000px;}
.yf9{bottom:345.630000px;}
.y11e{bottom:351.930000px;}
.ya1{bottom:356.970000px;}
.y108{bottom:360.750000px;}
.y22{bottom:360.930000px;}
.y137{bottom:363.270000px;}
.y79{bottom:365.610000px;}
.yd6{bottom:366.330000px;}
.ybf{bottom:368.490000px;}
.yf8{bottom:369.390000px;}
.y11d{bottom:375.690000px;}
.ya0{bottom:380.730000px;}
.y107{bottom:384.510000px;}
.y136{bottom:387.030000px;}
.y21{bottom:387.930000px;}
.y78{bottom:389.370000px;}
.ybe{bottom:392.250000px;}
.yf7{bottom:393.330000px;}
.yd5{bottom:396.930000px;}
.y11c{bottom:399.450000px;}
.y9f{bottom:404.670000px;}
.y135{bottom:410.970000px;}
.y77{bottom:413.310000px;}
.y20{bottom:414.390000px;}
.ybd{bottom:416.010000px;}
.y106{bottom:423.210000px;}
.yf6{bottom:432.030000px;}
.yd4{bottom:436.170000px;}
.y76{bottom:437.070000px;}
.y1f{bottom:438.150000px;}
.y11b{bottom:438.330000px;}
.ybc{bottom:439.770000px;}
.y9e{bottom:443.415000px;}
.y105{bottom:447.195000px;}
.y134{bottom:449.715000px;}
.yf5{bottom:456.015000px;}
.yd3{bottom:459.975000px;}
.y5c{bottom:460.875000px;}
.y1e{bottom:462.135000px;}
.y9d{bottom:467.355000px;}
.y75{bottom:467.715000px;}
.ybb{bottom:470.595000px;}
.y104{bottom:470.955000px;}
.y133{bottom:473.475000px;}
.yd2{bottom:483.915000px;}
.y5b{bottom:484.635000px;}
.y1d{bottom:485.895000px;}
.y9c{bottom:491.115000px;}
.y74{bottom:492.195000px;}
.yf4{bottom:494.715000px;}
.y132{bottom:497.415000px;}
.yd1{bottom:507.675000px;}
.y5a{bottom:508.395000px;}
.y1c{bottom:509.655000px;}
.y9b{bottom:514.875000px;}
.y73{bottom:515.055000px;}
.yf3{bottom:518.475000px;}
.y11a{bottom:524.775000px;}
.yd0{bottom:531.435000px;}
.y59{bottom:532.335000px;}
.y1b{bottom:533.415000px;}
.yba{bottom:533.595000px;}
.y131{bottom:536.115000px;}
.y9a{bottom:538.635000px;}
.y72{bottom:538.995000px;}
.yf2{bottom:542.415000px;}
.y119{bottom:548.535000px;}
.ycf{bottom:555.195000px;}
.y58{bottom:556.095000px;}
.y1a{bottom:557.175000px;}
.yb9{bottom:557.355000px;}
.y130{bottom:559.875000px;}
.y99{bottom:562.575000px;}
.y71{bottom:562.755000px;}
.y118{bottom:572.295000px;}
.yce{bottom:578.955000px;}
.y57{bottom:579.855000px;}
.y19{bottom:581.115000px;}
.y98{bottom:586.335000px;}
.y70{bottom:586.515000px;}
.yb8{bottom:596.055000px;}
.y12f{bottom:598.755000px;}
.ycd{bottom:602.895000px;}
.y56{bottom:603.615000px;}
.yf1{bottom:604.875000px;}
.y6f{bottom:610.275000px;}
.y18{bottom:613.335000px;}
.yb7{bottom:619.995000px;}
.y97{bottom:625.035000px;}
.y55{bottom:627.375000px;}
.yf0{bottom:628.815000px;}
.ycc{bottom:633.495000px;}
.y6e{bottom:634.215000px;}
.y117{bottom:634.935000px;}
.y12e{bottom:637.635000px;}
.y17{bottom:638.535000px;}
.y103{bottom:643.755000px;}
.y96{bottom:648.975000px;}
.y54{bottom:651.315000px;}
.y6d{bottom:657.975000px;}
.yb6{bottom:658.695000px;}
.y16{bottom:659.595000px;}
.y12d{bottom:661.395000px;}
.yef{bottom:667.515000px;}
.y95{bottom:672.735000px;}
.y53{bottom:676.365000px;}
.y15{bottom:676.545000px;}
.yb5{bottom:682.665000px;}
.yee{bottom:691.305000px;}
.y94{bottom:696.525000px;}
.y6c{bottom:696.885000px;}
.y12c{bottom:700.125000px;}
.y52{bottom:701.385000px;}
.y14{bottom:705.885000px;}
.yb4{bottom:706.425000px;}
.yed{bottom:715.245000px;}
.y6b{bottom:719.925000px;}
.ycb{bottom:720.285000px;}
.y116{bottom:721.365000px;}
.y12b{bottom:724.065000px;}
.y51{bottom:725.325000px;}
.y13{bottom:726.945000px;}
.yb3{bottom:730.185000px;}
.y93{bottom:735.405000px;}
.y6a{bottom:743.685000px;}
.yca{bottom:744.225000px;}
.y115{bottom:745.125000px;}
.y12{bottom:748.005000px;}
.y50{bottom:749.085000px;}
.yec{bottom:753.945000px;}
.y92{bottom:759.165000px;}
.y12a{bottom:762.765000px;}
.y69{bottom:767.445000px;}
.yc9{bottom:767.985000px;}
.y11{bottom:769.065000px;}
.y4f{bottom:772.845000px;}
.yeb{bottom:777.705000px;}
.y91{bottom:782.925000px;}
.y10{bottom:790.125000px;}
.y68{bottom:791.385000px;}
.yb2{bottom:792.825000px;}
.y4e{bottom:796.605000px;}
.yea{bottom:801.645000px;}
.y90{bottom:806.685000px;}
.y114{bottom:807.765000px;}
.yf{bottom:808.845000px;}
.y67{bottom:815.145000px;}
.y4d{bottom:820.545000px;}
.ye9{bottom:825.405000px;}
.ye{bottom:829.545000px;}
.y8f{bottom:830.625000px;}
.yb1{bottom:831.525000px;}
.y66{bottom:838.905000px;}
.y129{bottom:840.345000px;}
.y4c{bottom:844.305000px;}
.yd{bottom:850.245000px;}
.y8e{bottom:854.385000px;}
.yb0{bottom:855.465000px;}
.y65{bottom:862.665000px;}
.ye8{bottom:864.285000px;}
.y4b{bottom:868.065000px;}
.yc{bottom:876.165000px;}
.y8d{bottom:878.145000px;}
.y102{bottom:879.225000px;}
.y64{bottom:886.605000px;}
.ye7{bottom:888.045000px;}
.y4a{bottom:891.825000px;}
.yaf{bottom:894.165000px;}
.y8c{bottom:901.905000px;}
.y128{bottom:902.985000px;}
.yb{bottom:908.565000px;}
.ye6{bottom:911.850000px;}
.y49{bottom:915.810000px;}
.y63{bottom:917.250000px;}
.yae{bottom:917.970000px;}
.y8b{bottom:925.890000px;}
.y127{bottom:926.790000px;}
.y48{bottom:940.830000px;}
.ya{bottom:941.010000px;}
.y62{bottom:941.730000px;}
.yad{bottom:941.910000px;}
.yc8{bottom:949.650000px;}
.ye5{bottom:950.730000px;}
.y8a{bottom:956.490000px;}
.y47{bottom:964.590000px;}
.yac{bottom:965.670000px;}
.y9{bottom:970.890000px;}
.ye4{bottom:974.490000px;}
.y113{bottom:980.610000px;}
.y31{bottom:983.880000px;}
.y33{bottom:985.860000px;}
.y46{bottom:988.350000px;}
.y126{bottom:989.430000px;}
.y8{bottom:993.390000px;}
.y89{bottom:995.730000px;}
.ye3{bottom:998.250000px;}
.yab{bottom:1004.370000px;}
.y45{bottom:1012.290000px;}
.y142{bottom:1013.190000px;}
.y88{bottom:1019.490000px;}
.y7{bottom:1027.590000px;}
.yaa{bottom:1028.310000px;}
.y44{bottom:1036.050000px;}
.ye2{bottom:1037.130000px;}
.y87{bottom:1043.250000px;}
.y101{bottom:1052.070000px;}
.y43{bottom:1059.810000px;}
.ye1{bottom:1060.890000px;}
.y6{bottom:1062.870000px;}
.y86{bottom:1067.010000px;}
.y141{bottom:1075.830000px;}
.y42{bottom:1083.570000px;}
.y85{bottom:1090.950000px;}
.ye0{bottom:1099.590000px;}
.y5{bottom:1101.030000px;}
.y41{bottom:1107.510000px;}
.y84{bottom:1114.710000px;}
.y40{bottom:1138.110000px;}
.y83{bottom:1138.470000px;}
.y4{bottom:1139.190000px;}
.y3e{bottom:1169.460000px;}
.y3d{bottom:1183.500000px;}
.y3c{bottom:1197.540000px;}
.y35{bottom:1207.800000px;}
.h15{height:11.700000px;}
.h13{height:14.400000px;}
.h1d{height:18.000000px;}
.h1f{height:18.180000px;}
.h12{height:24.660000px;}
.h18{height:28.705078px;}
.h19{height:36.168398px;}
.h2{height:38.405391px;}
.h14{height:38.464805px;}
.h5{height:38.469727px;}
.h1e{height:40.655391px;}
.h1b{height:40.843828px;}
.h1a{height:43.057617px;}
.hb{height:45.140977px;}
.h11{height:47.650430px;}
.h17{height:49.680000px;}
.h6{height:51.292969px;}
.h1c{height:52.066406px;}
.h16{height:52.817344px;}
.h4{height:53.709961px;}
.ha{height:59.439023px;}
.h9{height:61.189805px;}
.h10{height:61.740000px;}
.hc{height:65.534063px;}
.h3{height:65.884219px;}
.h8{height:70.628906px;}
.hd{height:70.664062px;}
.hf{height:72.562500px;}
.h7{height:80.703984px;}
.he{height:82.676953px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wd{width:73.260000px;}
.wa{width:73.620000px;}
.we{width:73.980000px;}
.wb{width:74.520000px;}
.wf{width:74.880000px;}
.wc{width:75.060000px;}
.w9{width:75.240000px;}
.w10{width:75.420000px;}
.w8{width:79.200000px;}
.w2{width:86.580000px;}
.w6{width:96.480000px;}
.w5{width:127.620000px;}
.w4{width:135.000000px;}
.w7{width:168.660000px;}
.w3{width:626.400000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xe{left:10.950000px;}
.x14{left:21.135000px;}
.x12{left:45.150000px;}
.xf{left:93.240000px;}
.x1{left:108.036000px;}
.x13{left:121.680000px;}
.x3{left:137.736000px;}
.x4{left:145.476000px;}
.x21{left:162.030000px;}
.x20{left:166.890000px;}
.x16{left:170.310000px;}
.x17{left:220.890000px;}
.x1e{left:236.730000px;}
.x19{left:239.790000px;}
.x1c{left:268.410000px;}
.x1b{left:299.775000px;}
.x5{left:313.815000px;}
.xb{left:340.635000px;}
.x7{left:344.415000px;}
.x8{left:349.455000px;}
.xa{left:373.575000px;}
.x6{left:434.055000px;}
.x9{left:441.435000px;}
.x2{left:446.475000px;}
.x10{left:454.965000px;}
.x18{left:560.445000px;}
.xc{left:600.585000px;}
.x11{left:667.440000px;}
.x1a{left:722.490000px;}
.xd{left:806.400000px;}
.x15{left:813.780000px;}
.x1d{left:817.740000px;}
.x1f{left:819.360000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsd{letter-spacing:-0.826667pt;}
.ls11{letter-spacing:-0.476800pt;}
.lse{letter-spacing:-0.445333pt;}
.ls9{letter-spacing:-0.400000pt;}
.ls7{letter-spacing:-0.288000pt;}
.ls6{letter-spacing:-0.192000pt;}
.lsf{letter-spacing:-0.185067pt;}
.ls4{letter-spacing:-0.153600pt;}
.ls5{letter-spacing:-0.128000pt;}
.lsa{letter-spacing:-0.124800pt;}
.lsc{letter-spacing:-0.075733pt;}
.ls8{letter-spacing:-0.016000pt;}
.lsb{letter-spacing:-0.010880pt;}
.ls3{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.154880pt;}
.ls0{letter-spacing:0.252160pt;}
.ls12{letter-spacing:0.256000pt;}
.ls1{letter-spacing:0.385280pt;}
.ls10{letter-spacing:0.454933pt;}
.ws10{word-spacing:-16.256000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws3{word-spacing:-15.872000pt;}
.ws0{word-spacing:-15.206400pt;}
.ws5{word-spacing:-9.872000pt;}
.ws6{word-spacing:-9.488000pt;}
.ws9{word-spacing:-9.433600pt;}
.wsa{word-spacing:-9.357867pt;}
.ws8{word-spacing:-9.308800pt;}
.wse{word-spacing:-9.288213pt;}
.wsc{word-spacing:-8.988267pt;}
.ws4{word-spacing:-8.833280pt;}
.wsd{word-spacing:-8.648213pt;}
.wsf{word-spacing:-8.356480pt;}
.wsb{word-spacing:-8.006613pt;}
.ws1{word-spacing:-0.069120pt;}
.ws7{word-spacing:0.000000pt;}
._26{margin-left:-5.429333pt;}
._3{margin-left:-2.762240pt;}
._0{margin-left:-1.008000pt;}
._2{width:1.106560pt;}
._4{width:2.624000pt;}
._9{width:4.032000pt;}
._7{width:5.248000pt;}
._8{width:6.328320pt;}
._12{width:7.872000pt;}
._d{width:8.896000pt;}
._a{width:10.269440pt;}
._b{width:11.594667pt;}
._c{width:12.573440pt;}
._5{width:13.888000pt;}
._6{width:14.912000pt;}
._14{width:17.632000pt;}
._13{width:18.624000pt;}
._16{width:20.352000pt;}
._15{width:21.850667pt;}
._17{width:22.912000pt;}
._18{width:24.000000pt;}
._e{width:25.920000pt;}
._11{width:27.008000pt;}
._10{width:28.096000pt;}
._f{width:28.992000pt;}
._2a{width:33.818880pt;}
._23{width:37.536000pt;}
._19{width:39.296000pt;}
._2b{width:51.024000pt;}
._29{width:53.312000pt;}
._28{width:68.256000pt;}
._25{width:85.376000pt;}
._1b{width:89.472000pt;}
._2c{width:92.544000pt;}
._21{width:106.848000pt;}
._1a{width:119.776000pt;}
._2d{width:124.416000pt;}
._1f{width:126.538667pt;}
._27{width:133.984000pt;}
._22{width:137.688107pt;}
._20{width:146.304000pt;}
._1e{width:147.584000pt;}
._1c{width:149.536000pt;}
._24{width:158.720000pt;}
._1d{width:163.626667pt;}
._1{width:2395.205333pt;}
.fs9{font-size:32.000000pt;}
.fs0{font-size:40.320000pt;}
.fs8{font-size:42.880000pt;}
.fs2{font-size:48.000000pt;}
.fs5{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs6{font-size:69.120000pt;}
.fs7{font-size:74.880000pt;}
.fs4{font-size:85.120000pt;}
.y39{bottom:-5.760000pt;}
.y34{bottom:-0.186667pt;}
.y0{bottom:0.000000pt;}
.y30{bottom:0.960000pt;}
.y32{bottom:2.213333pt;}
.y3{bottom:4.000000pt;}
.y3a{bottom:4.800000pt;}
.y61{bottom:5.280000pt;}
.y112{bottom:5.440000pt;}
.y38{bottom:10.880000pt;}
.y111{bottom:13.120000pt;}
.y82{bottom:13.760000pt;}
.y125{bottom:14.080000pt;}
.yc7{bottom:14.240000pt;}
.y140{bottom:14.400000pt;}
.y60{bottom:14.560000pt;}
.y3f{bottom:20.160000pt;}
.y2{bottom:21.920000pt;}
.y37{bottom:24.640000pt;}
.y3b{bottom:31.840000pt;}
.y36{bottom:36.480000pt;}
.y1{bottom:37.920000pt;}
.y2e{bottom:42.560000pt;}
.y2f{bottom:64.160000pt;}
.y13f{bottom:100.320000pt;}
.ydf{bottom:101.920000pt;}
.y2d{bottom:102.720000pt;}
.y5f{bottom:113.600000pt;}
.ya9{bottom:114.880000pt;}
.y2c{bottom:121.120000pt;}
.y110{bottom:124.640000pt;}
.y100{bottom:132.480000pt;}
.y13e{bottom:134.720000pt;}
.yc6{bottom:135.520000pt;}
.y5e{bottom:135.840000pt;}
.ya8{bottom:136.160000pt;}
.y124{bottom:137.920000pt;}
.y2b{bottom:139.520000pt;}
.y81{bottom:142.400000pt;}
.y10f{bottom:145.760000pt;}
.yff{bottom:153.600000pt;}
.y5d{bottom:154.240000pt;}
.yde{bottom:156.000000pt;}
.ya7{bottom:157.280000pt;}
.y2a{bottom:157.920000pt;}
.y123{bottom:159.200000pt;}
.y80{bottom:163.520000pt;}
.y10e{bottom:166.880000pt;}
.yc5{bottom:168.000000pt;}
.y13d{bottom:169.280000pt;}
.yfe{bottom:174.720000pt;}
.y29{bottom:176.320000pt;}
.ydd{bottom:177.120000pt;}
.y122{bottom:180.320000pt;}
.y7f{bottom:184.666667pt;}
.yc4{bottom:189.146667pt;}
.y13c{bottom:190.426667pt;}
.ya6{bottom:191.706667pt;}
.y28{bottom:194.746667pt;}
.ydc{bottom:198.746667pt;}
.y10d{bottom:201.466667pt;}
.y7e{bottom:205.946667pt;}
.yfd{bottom:209.306667pt;}
.yc3{bottom:210.426667pt;}
.ya5{bottom:212.986667pt;}
.y27{bottom:213.146667pt;}
.y121{bottom:214.746667pt;}
.ydb{bottom:219.866667pt;}
.y10c{bottom:222.586667pt;}
.y13b{bottom:224.986667pt;}
.y7d{bottom:227.066667pt;}
.yfc{bottom:230.426667pt;}
.y26{bottom:231.546667pt;}
.ya4{bottom:234.106667pt;}
.y120{bottom:236.026667pt;}
.yda{bottom:240.986667pt;}
.y10b{bottom:243.866667pt;}
.y13a{bottom:246.106667pt;}
.y7c{bottom:248.186667pt;}
.y25{bottom:249.946667pt;}
.yfb{bottom:251.546667pt;}
.yc2{bottom:252.666667pt;}
.y11f{bottom:257.146667pt;}
.ya3{bottom:261.306667pt;}
.yd9{bottom:262.106667pt;}
.y139{bottom:267.226667pt;}
.y7b{bottom:269.306667pt;}
.y24{bottom:270.906667pt;}
.yfa{bottom:272.826667pt;}
.y10a{bottom:278.266667pt;}
.yd8{bottom:283.386667pt;}
.yc1{bottom:285.146667pt;}
.y138{bottom:288.346667pt;}
.y7a{bottom:290.586667pt;}
.y23{bottom:292.026667pt;}
.ya2{bottom:296.186667pt;}
.y109{bottom:299.386667pt;}
.yd7{bottom:304.506667pt;}
.yc0{bottom:306.266667pt;}
.yf9{bottom:307.226667pt;}
.y11e{bottom:312.826667pt;}
.ya1{bottom:317.306667pt;}
.y108{bottom:320.666667pt;}
.y22{bottom:320.826667pt;}
.y137{bottom:322.906667pt;}
.y79{bottom:324.986667pt;}
.yd6{bottom:325.626667pt;}
.ybf{bottom:327.546667pt;}
.yf8{bottom:328.346667pt;}
.y11d{bottom:333.946667pt;}
.ya0{bottom:338.426667pt;}
.y107{bottom:341.786667pt;}
.y136{bottom:344.026667pt;}
.y21{bottom:344.826667pt;}
.y78{bottom:346.106667pt;}
.ybe{bottom:348.666667pt;}
.yf7{bottom:349.626667pt;}
.yd5{bottom:352.826667pt;}
.y11c{bottom:355.066667pt;}
.y9f{bottom:359.706667pt;}
.y135{bottom:365.306667pt;}
.y77{bottom:367.386667pt;}
.y20{bottom:368.346667pt;}
.ybd{bottom:369.786667pt;}
.y106{bottom:376.186667pt;}
.yf6{bottom:384.026667pt;}
.yd4{bottom:387.706667pt;}
.y76{bottom:388.506667pt;}
.y1f{bottom:389.466667pt;}
.y11b{bottom:389.626667pt;}
.ybc{bottom:390.906667pt;}
.y9e{bottom:394.146667pt;}
.y105{bottom:397.506667pt;}
.y134{bottom:399.746667pt;}
.yf5{bottom:405.346667pt;}
.yd3{bottom:408.866667pt;}
.y5c{bottom:409.666667pt;}
.y1e{bottom:410.786667pt;}
.y9d{bottom:415.426667pt;}
.y75{bottom:415.746667pt;}
.ybb{bottom:418.306667pt;}
.y104{bottom:418.626667pt;}
.y133{bottom:420.866667pt;}
.yd2{bottom:430.146667pt;}
.y5b{bottom:430.786667pt;}
.y1d{bottom:431.906667pt;}
.y9c{bottom:436.546667pt;}
.y74{bottom:437.506667pt;}
.yf4{bottom:439.746667pt;}
.y132{bottom:442.146667pt;}
.yd1{bottom:451.266667pt;}
.y5a{bottom:451.906667pt;}
.y1c{bottom:453.026667pt;}
.y9b{bottom:457.666667pt;}
.y73{bottom:457.826667pt;}
.yf3{bottom:460.866667pt;}
.y11a{bottom:466.466667pt;}
.yd0{bottom:472.386667pt;}
.y59{bottom:473.186667pt;}
.y1b{bottom:474.146667pt;}
.yba{bottom:474.306667pt;}
.y131{bottom:476.546667pt;}
.y9a{bottom:478.786667pt;}
.y72{bottom:479.106667pt;}
.yf2{bottom:482.146667pt;}
.y119{bottom:487.586667pt;}
.ycf{bottom:493.506667pt;}
.y58{bottom:494.306667pt;}
.y1a{bottom:495.266667pt;}
.yb9{bottom:495.426667pt;}
.y130{bottom:497.666667pt;}
.y99{bottom:500.066667pt;}
.y71{bottom:500.226667pt;}
.y118{bottom:508.706667pt;}
.yce{bottom:514.626667pt;}
.y57{bottom:515.426667pt;}
.y19{bottom:516.546667pt;}
.y98{bottom:521.186667pt;}
.y70{bottom:521.346667pt;}
.yb8{bottom:529.826667pt;}
.y12f{bottom:532.226667pt;}
.ycd{bottom:535.906667pt;}
.y56{bottom:536.546667pt;}
.yf1{bottom:537.666667pt;}
.y6f{bottom:542.466667pt;}
.y18{bottom:545.186667pt;}
.yb7{bottom:551.106667pt;}
.y97{bottom:555.586667pt;}
.y55{bottom:557.666667pt;}
.yf0{bottom:558.946667pt;}
.ycc{bottom:563.106667pt;}
.y6e{bottom:563.746667pt;}
.y117{bottom:564.386667pt;}
.y12e{bottom:566.786667pt;}
.y17{bottom:567.586667pt;}
.y103{bottom:572.226667pt;}
.y96{bottom:576.866667pt;}
.y54{bottom:578.946667pt;}
.y6d{bottom:584.866667pt;}
.yb6{bottom:585.506667pt;}
.y16{bottom:586.306667pt;}
.y12d{bottom:587.906667pt;}
.yef{bottom:593.346667pt;}
.y95{bottom:597.986667pt;}
.y53{bottom:601.213333pt;}
.y15{bottom:601.373333pt;}
.yb5{bottom:606.813333pt;}
.yee{bottom:614.493333pt;}
.y94{bottom:619.133333pt;}
.y6c{bottom:619.453333pt;}
.y12c{bottom:622.333333pt;}
.y52{bottom:623.453333pt;}
.y14{bottom:627.453333pt;}
.yb4{bottom:627.933333pt;}
.yed{bottom:635.773333pt;}
.y6b{bottom:639.933333pt;}
.ycb{bottom:640.253333pt;}
.y116{bottom:641.213333pt;}
.y12b{bottom:643.613333pt;}
.y51{bottom:644.733333pt;}
.y13{bottom:646.173333pt;}
.yb3{bottom:649.053333pt;}
.y93{bottom:653.693333pt;}
.y6a{bottom:661.053333pt;}
.yca{bottom:661.533333pt;}
.y115{bottom:662.333333pt;}
.y12{bottom:664.893333pt;}
.y50{bottom:665.853333pt;}
.yec{bottom:670.173333pt;}
.y92{bottom:674.813333pt;}
.y12a{bottom:678.013333pt;}
.y69{bottom:682.173333pt;}
.yc9{bottom:682.653333pt;}
.y11{bottom:683.613333pt;}
.y4f{bottom:686.973333pt;}
.yeb{bottom:691.293333pt;}
.y91{bottom:695.933333pt;}
.y10{bottom:702.333333pt;}
.y68{bottom:703.453333pt;}
.yb2{bottom:704.733333pt;}
.y4e{bottom:708.093333pt;}
.yea{bottom:712.573333pt;}
.y90{bottom:717.053333pt;}
.y114{bottom:718.013333pt;}
.yf{bottom:718.973333pt;}
.y67{bottom:724.573333pt;}
.y4d{bottom:729.373333pt;}
.ye9{bottom:733.693333pt;}
.ye{bottom:737.373333pt;}
.y8f{bottom:738.333333pt;}
.yb1{bottom:739.133333pt;}
.y66{bottom:745.693333pt;}
.y129{bottom:746.973333pt;}
.y4c{bottom:750.493333pt;}
.yd{bottom:755.773333pt;}
.y8e{bottom:759.453333pt;}
.yb0{bottom:760.413333pt;}
.y65{bottom:766.813333pt;}
.ye8{bottom:768.253333pt;}
.y4b{bottom:771.613333pt;}
.yc{bottom:778.813333pt;}
.y8d{bottom:780.573333pt;}
.y102{bottom:781.533333pt;}
.y64{bottom:788.093333pt;}
.ye7{bottom:789.373333pt;}
.y4a{bottom:792.733333pt;}
.yaf{bottom:794.813333pt;}
.y8c{bottom:801.693333pt;}
.y128{bottom:802.653333pt;}
.yb{bottom:807.613333pt;}
.ye6{bottom:810.533333pt;}
.y49{bottom:814.053333pt;}
.y63{bottom:815.333333pt;}
.yae{bottom:815.973333pt;}
.y8b{bottom:823.013333pt;}
.y127{bottom:823.813333pt;}
.y48{bottom:836.293333pt;}
.ya{bottom:836.453333pt;}
.y62{bottom:837.093333pt;}
.yad{bottom:837.253333pt;}
.yc8{bottom:844.133333pt;}
.ye5{bottom:845.093333pt;}
.y8a{bottom:850.213333pt;}
.y47{bottom:857.413333pt;}
.yac{bottom:858.373333pt;}
.y9{bottom:863.013333pt;}
.ye4{bottom:866.213333pt;}
.y113{bottom:871.653333pt;}
.y31{bottom:874.560000pt;}
.y33{bottom:876.320000pt;}
.y46{bottom:878.533333pt;}
.y126{bottom:879.493333pt;}
.y8{bottom:883.013333pt;}
.y89{bottom:885.093333pt;}
.ye3{bottom:887.333333pt;}
.yab{bottom:892.773333pt;}
.y45{bottom:899.813333pt;}
.y142{bottom:900.613333pt;}
.y88{bottom:906.213333pt;}
.y7{bottom:913.413333pt;}
.yaa{bottom:914.053333pt;}
.y44{bottom:920.933333pt;}
.ye2{bottom:921.893333pt;}
.y87{bottom:927.333333pt;}
.y101{bottom:935.173333pt;}
.y43{bottom:942.053333pt;}
.ye1{bottom:943.013333pt;}
.y6{bottom:944.773333pt;}
.y86{bottom:948.453333pt;}
.y141{bottom:956.293333pt;}
.y42{bottom:963.173333pt;}
.y85{bottom:969.733333pt;}
.ye0{bottom:977.413333pt;}
.y5{bottom:978.693333pt;}
.y41{bottom:984.453333pt;}
.y84{bottom:990.853333pt;}
.y40{bottom:1011.653333pt;}
.y83{bottom:1011.973333pt;}
.y4{bottom:1012.613333pt;}
.y3e{bottom:1039.520000pt;}
.y3d{bottom:1052.000000pt;}
.y3c{bottom:1064.480000pt;}
.y35{bottom:1073.600000pt;}
.h15{height:10.400000pt;}
.h13{height:12.800000pt;}
.h1d{height:16.000000pt;}
.h1f{height:16.160000pt;}
.h12{height:21.920000pt;}
.h18{height:25.515625pt;}
.h19{height:32.149687pt;}
.h2{height:34.138125pt;}
.h14{height:34.190937pt;}
.h5{height:34.195312pt;}
.h1e{height:36.138125pt;}
.h1b{height:36.305625pt;}
.h1a{height:38.273438pt;}
.hb{height:40.125312pt;}
.h11{height:42.355937pt;}
.h17{height:44.160000pt;}
.h6{height:45.593750pt;}
.h1c{height:46.281250pt;}
.h16{height:46.948750pt;}
.h4{height:47.742188pt;}
.ha{height:52.834688pt;}
.h9{height:54.390938pt;}
.h10{height:54.880000pt;}
.hc{height:58.252500pt;}
.h3{height:58.563750pt;}
.h8{height:62.781250pt;}
.hd{height:62.812500pt;}
.hf{height:64.500000pt;}
.h7{height:71.736875pt;}
.he{height:73.490625pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wd{width:65.120000pt;}
.wa{width:65.440000pt;}
.we{width:65.760000pt;}
.wb{width:66.240000pt;}
.wf{width:66.560000pt;}
.wc{width:66.720000pt;}
.w9{width:66.880000pt;}
.w10{width:67.040000pt;}
.w8{width:70.400000pt;}
.w2{width:76.960000pt;}
.w6{width:85.760000pt;}
.w5{width:113.440000pt;}
.w4{width:120.000000pt;}
.w7{width:149.920000pt;}
.w3{width:556.800000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xe{left:9.733333pt;}
.x14{left:18.786667pt;}
.x12{left:40.133333pt;}
.xf{left:82.880000pt;}
.x1{left:96.032000pt;}
.x13{left:108.160000pt;}
.x3{left:122.432000pt;}
.x4{left:129.312000pt;}
.x21{left:144.026667pt;}
.x20{left:148.346667pt;}
.x16{left:151.386667pt;}
.x17{left:196.346667pt;}
.x1e{left:210.426667pt;}
.x19{left:213.146667pt;}
.x1c{left:238.586667pt;}
.x1b{left:266.466667pt;}
.x5{left:278.946667pt;}
.xb{left:302.786667pt;}
.x7{left:306.146667pt;}
.x8{left:310.626667pt;}
.xa{left:332.066667pt;}
.x6{left:385.826667pt;}
.x9{left:392.386667pt;}
.x2{left:396.866667pt;}
.x10{left:404.413333pt;}
.x18{left:498.173333pt;}
.xc{left:533.853333pt;}
.x11{left:593.280000pt;}
.x1a{left:642.213333pt;}
.xd{left:716.800000pt;}
.x15{left:723.360000pt;}
.x1d{left:726.880000pt;}
.x1f{left:728.320000pt;}
}




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