
    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_743b163a631ebbe7599e1097.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_bfc8e4e9e058ca9d9d776d79.woff')format("woff");}.ff2{font-family:ff2;line-height:1.049000;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_56b6b03e9fece0e06369cf08.woff')format("woff");}.ff3{font-family:ff3;line-height:0.900391;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_ec975071da8e7f0015e6db68.woff')format("woff");}.ff4{font-family:ff4;line-height:1.009000;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_d353407237851fa36537a999.woff')format("woff");}.ff5{font-family:ff5;line-height:0.860000;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_213dfe3ab758d08bd4f9db0c.woff')format("woff");}.ff6{font-family:ff6;line-height:0.860000;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_c4dcf1a507dbca136f6d28ff.woff')format("woff");}.ff7{font-family:ff7;line-height:1.049000;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_1a69e9c8bd59bd541799c805.woff')format("woff");}.ff8{font-family:ff8;line-height:1.019000;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_b248549db29d8ed7c5da4295.woff')format("woff");}.ff9{font-family:ff9;line-height:1.179000;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_be9afe86b214788c94430c2c.woff')format("woff");}.ffa{font-family:ffa;line-height:0.950000;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_7adc21715d6ead40421c6dae.woff')format("woff");}.ffb{font-family:ffb;line-height:1.179000;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_a88bbe05889b2101b40ff16a.woff')format("woff");}.ffc{font-family:ffc;line-height:1.009000;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_e5ad33d95ff1d8138fe951c1.woff')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_0d7d90064ddf2f2eddce2987.woff')format("woff");}.ffe{font-family:ffe;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;}
.m1{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m3{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,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);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls9{letter-spacing:-0.720000px;}
.ls8{letter-spacing:-0.288000px;}
.ls17{letter-spacing:-0.216000px;}
.lsf{letter-spacing:-0.162000px;}
.ls21{letter-spacing:-0.144000px;}
.ls15{letter-spacing:-0.108000px;}
.ls22{letter-spacing:-0.072000px;}
.ls14{letter-spacing:-0.036000px;}
.ls11{letter-spacing:-0.018000px;}
.lsb{letter-spacing:-0.013680px;}
.ls6{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.067680px;}
.ls4{letter-spacing:0.072000px;}
.ls10{letter-spacing:0.108000px;}
.ls18{letter-spacing:0.126000px;}
.lsa{letter-spacing:0.144000px;}
.ls5{letter-spacing:0.149760px;}
.ls7{letter-spacing:0.150000px;}
.ls2{letter-spacing:0.216000px;}
.ls0{letter-spacing:0.249120px;}
.lsc{letter-spacing:0.288000px;}
.ls16{letter-spacing:0.306000px;}
.lsd{letter-spacing:0.360000px;}
.ls13{letter-spacing:0.378000px;}
.ls3{letter-spacing:0.378720px;}
.ls20{letter-spacing:0.720000px;}
.ls1f{letter-spacing:14.544000px;}
.ls1b{letter-spacing:18.864000px;}
.ls1e{letter-spacing:20.304000px;}
.ls1c{letter-spacing:22.464000px;}
.ls1d{letter-spacing:23.904000px;}
.ls1a{letter-spacing:25.344000px;}
.ls19{letter-spacing:40.464000px;}
.lse{letter-spacing:209.382000px;}
.ls12{letter-spacing:209.802000px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc1{text-shadow:-0.015em 0 rgb(145,25,56),0 0.015em rgb(145,25,56),0.015em 0 rgb(145,25,56),0 -0.015em  rgb(145,25,56);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(145,25,56);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws17{word-spacing:-222.006000px;}
.wse{word-spacing:-221.586000px;}
.ws5{word-spacing:-19.944000px;}
.ws1{word-spacing:-19.872000px;}
.ws10{word-spacing:-19.504734px;}
.ws7{word-spacing:-19.051200px;}
.wsa{word-spacing:-18.792000px;}
.ws18{word-spacing:-18.648000px;}
.ws3{word-spacing:-18.504000px;}
.ws1b{word-spacing:-18.432000px;}
.ws1a{word-spacing:-18.360000px;}
.ws16{word-spacing:-18.288000px;}
.ws6{word-spacing:-18.282240px;}
.ws19{word-spacing:-18.216000px;}
.ws4{word-spacing:-17.023680px;}
.ws11{word-spacing:-14.256000px;}
.ws14{word-spacing:-14.184000px;}
.wsd{word-spacing:-13.986000px;}
.wsb{word-spacing:-13.878000px;}
.ws12{word-spacing:-13.842000px;}
.ws13{word-spacing:-13.770000px;}
.wsc{word-spacing:-13.716000px;}
.ws15{word-spacing:-13.590000px;}
.ws2{word-spacing:-10.732320px;}
.ws0{word-spacing:-0.156240px;}
.ws9{word-spacing:-0.142560px;}
.ws8{word-spacing:0.000000px;}
.wsf{word-spacing:235.458000px;}
._29{margin-left:-13.860000px;}
._2e{margin-left:-7.152000px;}
._1b{margin-left:-4.980000px;}
._f{margin-left:-3.974400px;}
._c{margin-left:-2.221440px;}
._1{margin-left:-1.157760px;}
._2{width:1.044000px;}
._3{width:2.121600px;}
._16{width:3.139200px;}
._b{width:4.204800px;}
._a{width:5.264640px;}
._12{width:6.589440px;}
._8{width:7.968000px;}
._d{width:9.803520px;}
._e{width:11.592000px;}
._1a{width:12.780000px;}
._22{width:14.484960px;}
._17{width:16.056000px;}
._5{width:17.400000px;}
._9{width:18.615840px;}
._1e{width:20.520000px;}
._1f{width:21.852000px;}
._21{width:23.333760px;}
._1d{width:24.408000px;}
._1c{width:25.555200px;}
._15{width:26.784000px;}
._13{width:27.936000px;}
._14{width:29.005440px;}
._20{width:30.064320px;}
._10{width:31.066560px;}
._11{width:32.130240px;}
._25{width:33.329760px;}
._23{width:34.416000px;}
._24{width:35.640000px;}
._18{width:37.728000px;}
._2c{width:40.248000px;}
._6{width:45.720000px;}
._7{width:47.771520px;}
._19{width:51.912000px;}
._4{width:79.644000px;}
._27{width:107.424000px;}
._26{width:108.576000px;}
._2d{width:109.788000px;}
._2b{width:111.678000px;}
._2a{width:119.268000px;}
._28{width:136.296000px;}
._0{width:1481.489760px;}
.fc4{color:transparent;}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(0,32,96);}
.fc1{color:rgb(145,25,56);}
.fc5{color:rgb(89,89,89);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:18.000000px;}
.fs8{font-size:30.240000px;}
.fs5{font-size:36.000000px;}
.fs4{font-size:41.760000px;}
.fs2{font-size:48.240000px;}
.fsb{font-size:54.000000px;}
.fsc{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs7{font-size:72.000000px;}
.fs6{font-size:74.880000px;}
.fsa{font-size:75.893905px;}
.fs9{font-size:77.760000px;}
.fs1{font-size:156.240000px;}
.yd{bottom:-5.940000px;}
.y0{bottom:0.000000px;}
.y8{bottom:4.320000px;}
.yc{bottom:5.400000px;}
.y76{bottom:5.760000px;}
.yb9{bottom:5.805000px;}
.y80{bottom:5.940000px;}
.y42{bottom:6.660000px;}
.y7d{bottom:7.380000px;}
.yad{bottom:15.300000px;}
.yb{bottom:16.740000px;}
.ya0{bottom:17.610000px;}
.y99{bottom:17.670000px;}
.yca{bottom:17.715000px;}
.y6{bottom:19.650000px;}
.ya{bottom:24.156000px;}
.y82{bottom:24.660000px;}
.yb8{bottom:24.705000px;}
.y75{bottom:24.840000px;}
.y79{bottom:26.280000px;}
.y7{bottom:26.820000px;}
.y41{bottom:30.450000px;}
.yac{bottom:34.200000px;}
.y98{bottom:34.380000px;}
.y43{bottom:39.450000px;}
.yae{bottom:43.740000px;}
.y78{bottom:45.180000px;}
.y9{bottom:47.520000px;}
.yc9{bottom:47.625000px;}
.y93{bottom:51.945000px;}
.y40{bottom:54.210000px;}
.y4{bottom:58.320000px;}
.y9b{bottom:65.085000px;}
.yc4{bottom:65.160000px;}
.y3{bottom:78.156000px;}
.y94{bottom:83.445000px;}
.y9c{bottom:93.390000px;}
.yc5{bottom:95.190000px;}
.y2{bottom:98.676000px;}
.y95{bottom:114.915000px;}
.y9d{bottom:121.650000px;}
.yc6{bottom:125.175000px;}
.y73{bottom:128.916000px;}
.y5{bottom:131.220000px;}
.y3e{bottom:137.016000px;}
.yc2{bottom:137.376000px;}
.y96{bottom:146.415000px;}
.y9e{bottom:149.940000px;}
.y72{bottom:150.870000px;}
.yc7{bottom:155.160000px;}
.y3d{bottom:158.970000px;}
.yc1{bottom:159.330000px;}
.y71{bottom:172.830000px;}
.y97{bottom:177.870000px;}
.y9f{bottom:178.230000px;}
.y3c{bottom:180.930000px;}
.yc0{bottom:181.290000px;}
.yc8{bottom:185.145000px;}
.y70{bottom:194.790000px;}
.y3b{bottom:202.710000px;}
.ybf{bottom:203.250000px;}
.y6f{bottom:216.750000px;}
.y3a{bottom:224.670000px;}
.ybe{bottom:225.210000px;}
.y6e{bottom:238.710000px;}
.y39{bottom:246.630000px;}
.ybd{bottom:247.170000px;}
.y6d{bottom:260.670000px;}
.y91{bottom:268.230000px;}
.y38{bottom:268.590000px;}
.ybc{bottom:269.130000px;}
.y6c{bottom:282.630000px;}
.y90{bottom:286.410000px;}
.y37{bottom:290.550000px;}
.ybb{bottom:291.090000px;}
.y8f{bottom:300.990000px;}
.y9a{bottom:302.760000px;}
.y6b{bottom:304.590000px;}
.y36{bottom:312.510000px;}
.yba{bottom:313.050000px;}
.y6a{bottom:326.370000px;}
.yb7{bottom:332.310000px;}
.y35{bottom:334.470000px;}
.y69{bottom:348.375000px;}
.y34{bottom:356.475000px;}
.y68{bottom:370.335000px;}
.yb6{bottom:373.215000px;}
.y33{bottom:378.435000px;}
.y67{bottom:392.295000px;}
.y32{bottom:400.395000px;}
.yb5{bottom:414.075000px;}
.y66{bottom:414.255000px;}
.y31{bottom:422.175000px;}
.y65{bottom:436.215000px;}
.y30{bottom:444.135000px;}
.yb4{bottom:454.935000px;}
.y64{bottom:458.175000px;}
.y2f{bottom:465.735000px;}
.y63{bottom:480.135000px;}
.y2e{bottom:487.335000px;}
.yb3{bottom:495.795000px;}
.y2d{bottom:498.855000px;}
.y62{bottom:502.095000px;}
.y8e{bottom:505.155000px;}
.y2c{bottom:518.835000px;}
.y8d{bottom:519.555000px;}
.y92{bottom:521.280000px;}
.y61{bottom:524.055000px;}
.yb2{bottom:536.655000px;}
.y2b{bottom:538.995000px;}
.y60{bottom:545.835000px;}
.y2a{bottom:559.155000px;}
.y5f{bottom:567.795000px;}
.yb1{bottom:577.515000px;}
.y29{bottom:579.315000px;}
.y5e{bottom:589.755000px;}
.y28{bottom:599.295000px;}
.y5d{bottom:611.745000px;}
.yb0{bottom:618.405000px;}
.y27{bottom:619.485000px;}
.y5c{bottom:633.705000px;}
.y26{bottom:639.645000px;}
.y5b{bottom:655.665000px;}
.yaf{bottom:659.085000px;}
.y25{bottom:659.805000px;}
.y5a{bottom:677.625000px;}
.y24{bottom:679.785000px;}
.y59{bottom:699.585000px;}
.y23{bottom:699.945000px;}
.y22{bottom:720.105000px;}
.y58{bottom:721.545000px;}
.y8c{bottom:725.865000px;}
.y21{bottom:740.265000px;}
.y57{bottom:743.505000px;}
.y8b{bottom:744.945000px;}
.yab{bottom:759.705000px;}
.y20{bottom:760.245000px;}
.y56{bottom:765.285000px;}
.y8a{bottom:766.905000px;}
.y1f{bottom:780.405000px;}
.yaa{bottom:785.085000px;}
.y55{bottom:787.245000px;}
.y89{bottom:788.865000px;}
.y1e{bottom:800.565000px;}
.ya9{bottom:807.045000px;}
.y54{bottom:809.205000px;}
.y88{bottom:810.645000px;}
.y1d{bottom:817.665000px;}
.y1c{bottom:826.485000px;}
.ya8{bottom:829.005000px;}
.y53{bottom:831.165000px;}
.y87{bottom:832.605000px;}
.y1b{bottom:845.745000px;}
.ya7{bottom:850.965000px;}
.y52{bottom:853.125000px;}
.y86{bottom:854.565000px;}
.y1a{bottom:858.525000px;}
.y19{bottom:870.405000px;}
.ya6{bottom:872.970000px;}
.y51{bottom:875.130000px;}
.y85{bottom:876.570000px;}
.y18{bottom:892.410000px;}
.ya5{bottom:894.930000px;}
.y50{bottom:897.090000px;}
.y84{bottom:898.530000px;}
.y17{bottom:914.370000px;}
.ya4{bottom:916.710000px;}
.y4f{bottom:919.050000px;}
.y83{bottom:920.490000px;}
.y16{bottom:936.330000px;}
.ya3{bottom:937.950000px;}
.y81{bottom:938.670000px;}
.y4e{bottom:941.010000px;}
.ya2{bottom:956.310000px;}
.y15{bottom:958.290000px;}
.y4d{bottom:962.970000px;}
.ya1{bottom:970.890000px;}
.yc3{bottom:972.360000px;}
.y7c{bottom:977.190000px;}
.y14{bottom:980.250000px;}
.y4c{bottom:984.750000px;}
.y7f{bottom:996.990000px;}
.y13{bottom:1002.210000px;}
.y4b{bottom:1006.710000px;}
.y7e{bottom:1016.610000px;}
.y4a{bottom:1028.670000px;}
.y77{bottom:1036.230000px;}
.y12{bottom:1045.230000px;}
.y49{bottom:1050.630000px;}
.y7b{bottom:1056.030000px;}
.y11{bottom:1068.090000px;}
.y48{bottom:1072.590000px;}
.y7a{bottom:1075.650000px;}
.y47{bottom:1094.550000px;}
.y74{bottom:1095.270000px;}
.y3f{bottom:1114.710000px;}
.y46{bottom:1116.510000px;}
.y10{bottom:1121.910000px;}
.y45{bottom:1138.500000px;}
.yf{bottom:1142.100000px;}
.y44{bottom:1160.460000px;}
.ye{bottom:1162.260000px;}
.y1{bottom:1193.220000px;}
.ha{height:15.336000px;}
.h10{height:16.398000px;}
.h6{height:17.280000px;}
.h1a{height:18.900000px;}
.h1b{height:19.080000px;}
.hf{height:27.548640px;}
.h12{height:29.635200px;}
.hc{height:30.672000px;}
.hb{height:35.579520px;}
.h8{height:35.676000px;}
.h9{height:36.228240px;}
.h1c{height:37.800000px;}
.h22{height:37.836000px;}
.h17{height:37.980000px;}
.h7{height:39.315600px;}
.h18{height:52.920000px;}
.h1f{height:53.709961px;}
.h13{height:53.928000px;}
.hd{height:56.234880px;}
.h3{height:56.436480px;}
.h21{height:56.880000px;}
.h19{height:58.320000px;}
.h1d{height:58.564800px;}
.h15{height:63.374400px;}
.h11{height:64.915200px;}
.h23{height:65.592000px;}
.h2{height:65.884219px;}
.he{height:70.560000px;}
.h14{height:73.116000px;}
.h25{height:74.004654px;}
.h16{height:74.376027px;}
.h5{height:121.070742px;}
.h20{height:198.720000px;}
.h1e{height:200.880000px;}
.h24{height:205.560000px;}
.h4{height:210.420000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:43.380000px;}
.wa{width:104.400000px;}
.w9{width:138.996000px;}
.w8{width:174.630000px;}
.w7{width:241.230000px;}
.w4{width:317.415000px;}
.wc{width:345.315000px;}
.wd{width:401.295000px;}
.w6{width:438.195000px;}
.w5{width:445.965000px;}
.we{width:645.300000px;}
.wb{width:671.400000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x33{left:1.440000px;}
.x3b{left:2.520000px;}
.x2e{left:3.780000px;}
.x3e{left:4.860000px;}
.x3{left:5.910000px;}
.x1a{left:7.740000px;}
.x24{left:9.936000px;}
.x32{left:11.916000px;}
.x30{left:13.320000px;}
.x16{left:15.480000px;}
.xe{left:17.640000px;}
.x3d{left:21.060000px;}
.x19{left:22.680000px;}
.x38{left:25.740000px;}
.xf{left:28.080000px;}
.x21{left:31.425000px;}
.x20{left:38.265000px;}
.x37{left:40.356000px;}
.x14{left:42.474000px;}
.x1b{left:43.920000px;}
.x9{left:46.110000px;}
.x1c{left:48.060000px;}
.x35{left:52.056000px;}
.x3c{left:62.676000px;}
.x25{left:67.110000px;}
.x36{left:70.410000px;}
.x2f{left:73.830000px;}
.x1{left:80.999987px;}
.x22{left:83.805000px;}
.x3a{left:102.450000px;}
.x39{left:104.070000px;}
.x5{left:105.165000px;}
.x2b{left:110.370000px;}
.x31{left:119.190000px;}
.x13{left:124.416000px;}
.x11{left:127.475987px;}
.x34{left:132.330000px;}
.xc{left:134.135987px;}
.x23{left:142.275000px;}
.xa{left:143.855987px;}
.x42{left:145.835987px;}
.x10{left:146.880000px;}
.x3f{left:155.340000px;}
.x2d{left:162.030000px;}
.x1f{left:169.229987px;}
.x41{left:172.829987px;}
.x29{left:181.469987px;}
.xb{left:201.989987px;}
.x26{left:207.690000px;}
.x40{left:237.705000px;}
.xd{left:285.735000px;}
.x28{left:325.514987px;}
.x15{left:366.375000px;}
.x7{left:374.475000px;}
.x6{left:422.175000px;}
.x2c{left:427.395000px;}
.x8{left:435.165000px;}
.x1d{left:478.364987px;}
.x17{left:541.725000px;}
.x4{left:554.145000px;}
.x12{left:586.904987px;}
.x18{left:681.450000px;}
.x2a{left:763.529987px;}
.x1e{left:800.249987px;}
.x27{left:801.329987px;}
.x2{left:829.260000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls9{letter-spacing:-0.640000pt;}
.ls8{letter-spacing:-0.256000pt;}
.ls17{letter-spacing:-0.192000pt;}
.lsf{letter-spacing:-0.144000pt;}
.ls21{letter-spacing:-0.128000pt;}
.ls15{letter-spacing:-0.096000pt;}
.ls22{letter-spacing:-0.064000pt;}
.ls14{letter-spacing:-0.032000pt;}
.ls11{letter-spacing:-0.016000pt;}
.lsb{letter-spacing:-0.012160pt;}
.ls6{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.060160pt;}
.ls4{letter-spacing:0.064000pt;}
.ls10{letter-spacing:0.096000pt;}
.ls18{letter-spacing:0.112000pt;}
.lsa{letter-spacing:0.128000pt;}
.ls5{letter-spacing:0.133120pt;}
.ls7{letter-spacing:0.133333pt;}
.ls2{letter-spacing:0.192000pt;}
.ls0{letter-spacing:0.221440pt;}
.lsc{letter-spacing:0.256000pt;}
.ls16{letter-spacing:0.272000pt;}
.lsd{letter-spacing:0.320000pt;}
.ls13{letter-spacing:0.336000pt;}
.ls3{letter-spacing:0.336640pt;}
.ls20{letter-spacing:0.640000pt;}
.ls1f{letter-spacing:12.928000pt;}
.ls1b{letter-spacing:16.768000pt;}
.ls1e{letter-spacing:18.048000pt;}
.ls1c{letter-spacing:19.968000pt;}
.ls1d{letter-spacing:21.248000pt;}
.ls1a{letter-spacing:22.528000pt;}
.ls19{letter-spacing:35.968000pt;}
.lse{letter-spacing:186.117333pt;}
.ls12{letter-spacing:186.490667pt;}
.ws17{word-spacing:-197.338667pt;}
.wse{word-spacing:-196.965333pt;}
.ws5{word-spacing:-17.728000pt;}
.ws1{word-spacing:-17.664000pt;}
.ws10{word-spacing:-17.337541pt;}
.ws7{word-spacing:-16.934400pt;}
.wsa{word-spacing:-16.704000pt;}
.ws18{word-spacing:-16.576000pt;}
.ws3{word-spacing:-16.448000pt;}
.ws1b{word-spacing:-16.384000pt;}
.ws1a{word-spacing:-16.320000pt;}
.ws16{word-spacing:-16.256000pt;}
.ws6{word-spacing:-16.250880pt;}
.ws19{word-spacing:-16.192000pt;}
.ws4{word-spacing:-15.132160pt;}
.ws11{word-spacing:-12.672000pt;}
.ws14{word-spacing:-12.608000pt;}
.wsd{word-spacing:-12.432000pt;}
.wsb{word-spacing:-12.336000pt;}
.ws12{word-spacing:-12.304000pt;}
.ws13{word-spacing:-12.240000pt;}
.wsc{word-spacing:-12.192000pt;}
.ws15{word-spacing:-12.080000pt;}
.ws2{word-spacing:-9.539840pt;}
.ws0{word-spacing:-0.138880pt;}
.ws9{word-spacing:-0.126720pt;}
.ws8{word-spacing:0.000000pt;}
.wsf{word-spacing:209.296000pt;}
._29{margin-left:-12.320000pt;}
._2e{margin-left:-6.357333pt;}
._1b{margin-left:-4.426667pt;}
._f{margin-left:-3.532800pt;}
._c{margin-left:-1.974613pt;}
._1{margin-left:-1.029120pt;}
._2{width:0.928000pt;}
._3{width:1.885867pt;}
._16{width:2.790400pt;}
._b{width:3.737600pt;}
._a{width:4.679680pt;}
._12{width:5.857280pt;}
._8{width:7.082667pt;}
._d{width:8.714240pt;}
._e{width:10.304000pt;}
._1a{width:11.360000pt;}
._22{width:12.875520pt;}
._17{width:14.272000pt;}
._5{width:15.466667pt;}
._9{width:16.547413pt;}
._1e{width:18.240000pt;}
._1f{width:19.424000pt;}
._21{width:20.741120pt;}
._1d{width:21.696000pt;}
._1c{width:22.715733pt;}
._15{width:23.808000pt;}
._13{width:24.832000pt;}
._14{width:25.782613pt;}
._20{width:26.723840pt;}
._10{width:27.614720pt;}
._11{width:28.560213pt;}
._25{width:29.626453pt;}
._23{width:30.592000pt;}
._24{width:31.680000pt;}
._18{width:33.536000pt;}
._2c{width:35.776000pt;}
._6{width:40.640000pt;}
._7{width:42.463573pt;}
._19{width:46.144000pt;}
._4{width:70.794667pt;}
._27{width:95.488000pt;}
._26{width:96.512000pt;}
._2d{width:97.589333pt;}
._2b{width:99.269333pt;}
._2a{width:106.016000pt;}
._28{width:121.152000pt;}
._0{width:1316.879787pt;}
.fs3{font-size:16.000000pt;}
.fs8{font-size:26.880000pt;}
.fs5{font-size:32.000000pt;}
.fs4{font-size:37.120000pt;}
.fs2{font-size:42.880000pt;}
.fsb{font-size:48.000000pt;}
.fsc{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs7{font-size:64.000000pt;}
.fs6{font-size:66.560000pt;}
.fsa{font-size:67.461249pt;}
.fs9{font-size:69.120000pt;}
.fs1{font-size:138.880000pt;}
.yd{bottom:-5.280000pt;}
.y0{bottom:0.000000pt;}
.y8{bottom:3.840000pt;}
.yc{bottom:4.800000pt;}
.y76{bottom:5.120000pt;}
.yb9{bottom:5.160000pt;}
.y80{bottom:5.280000pt;}
.y42{bottom:5.920000pt;}
.y7d{bottom:6.560000pt;}
.yad{bottom:13.600000pt;}
.yb{bottom:14.880000pt;}
.ya0{bottom:15.653333pt;}
.y99{bottom:15.706667pt;}
.yca{bottom:15.746667pt;}
.y6{bottom:17.466667pt;}
.ya{bottom:21.472000pt;}
.y82{bottom:21.920000pt;}
.yb8{bottom:21.960000pt;}
.y75{bottom:22.080000pt;}
.y79{bottom:23.360000pt;}
.y7{bottom:23.840000pt;}
.y41{bottom:27.066667pt;}
.yac{bottom:30.400000pt;}
.y98{bottom:30.560000pt;}
.y43{bottom:35.066667pt;}
.yae{bottom:38.880000pt;}
.y78{bottom:40.160000pt;}
.y9{bottom:42.240000pt;}
.yc9{bottom:42.333333pt;}
.y93{bottom:46.173333pt;}
.y40{bottom:48.186667pt;}
.y4{bottom:51.840000pt;}
.y9b{bottom:57.853333pt;}
.yc4{bottom:57.920000pt;}
.y3{bottom:69.472000pt;}
.y94{bottom:74.173333pt;}
.y9c{bottom:83.013333pt;}
.yc5{bottom:84.613333pt;}
.y2{bottom:87.712000pt;}
.y95{bottom:102.146667pt;}
.y9d{bottom:108.133333pt;}
.yc6{bottom:111.266667pt;}
.y73{bottom:114.592000pt;}
.y5{bottom:116.640000pt;}
.y3e{bottom:121.792000pt;}
.yc2{bottom:122.112000pt;}
.y96{bottom:130.146667pt;}
.y9e{bottom:133.280000pt;}
.y72{bottom:134.106667pt;}
.yc7{bottom:137.920000pt;}
.y3d{bottom:141.306667pt;}
.yc1{bottom:141.626667pt;}
.y71{bottom:153.626667pt;}
.y97{bottom:158.106667pt;}
.y9f{bottom:158.426667pt;}
.y3c{bottom:160.826667pt;}
.yc0{bottom:161.146667pt;}
.yc8{bottom:164.573333pt;}
.y70{bottom:173.146667pt;}
.y3b{bottom:180.186667pt;}
.ybf{bottom:180.666667pt;}
.y6f{bottom:192.666667pt;}
.y3a{bottom:199.706667pt;}
.ybe{bottom:200.186667pt;}
.y6e{bottom:212.186667pt;}
.y39{bottom:219.226667pt;}
.ybd{bottom:219.706667pt;}
.y6d{bottom:231.706667pt;}
.y91{bottom:238.426667pt;}
.y38{bottom:238.746667pt;}
.ybc{bottom:239.226667pt;}
.y6c{bottom:251.226667pt;}
.y90{bottom:254.586667pt;}
.y37{bottom:258.266667pt;}
.ybb{bottom:258.746667pt;}
.y8f{bottom:267.546667pt;}
.y9a{bottom:269.120000pt;}
.y6b{bottom:270.746667pt;}
.y36{bottom:277.786667pt;}
.yba{bottom:278.266667pt;}
.y6a{bottom:290.106667pt;}
.yb7{bottom:295.386667pt;}
.y35{bottom:297.306667pt;}
.y69{bottom:309.666667pt;}
.y34{bottom:316.866667pt;}
.y68{bottom:329.186667pt;}
.yb6{bottom:331.746667pt;}
.y33{bottom:336.386667pt;}
.y67{bottom:348.706667pt;}
.y32{bottom:355.906667pt;}
.yb5{bottom:368.066667pt;}
.y66{bottom:368.226667pt;}
.y31{bottom:375.266667pt;}
.y65{bottom:387.746667pt;}
.y30{bottom:394.786667pt;}
.yb4{bottom:404.386667pt;}
.y64{bottom:407.266667pt;}
.y2f{bottom:413.986667pt;}
.y63{bottom:426.786667pt;}
.y2e{bottom:433.186667pt;}
.yb3{bottom:440.706667pt;}
.y2d{bottom:443.426667pt;}
.y62{bottom:446.306667pt;}
.y8e{bottom:449.026667pt;}
.y2c{bottom:461.186667pt;}
.y8d{bottom:461.826667pt;}
.y92{bottom:463.360000pt;}
.y61{bottom:465.826667pt;}
.yb2{bottom:477.026667pt;}
.y2b{bottom:479.106667pt;}
.y60{bottom:485.186667pt;}
.y2a{bottom:497.026667pt;}
.y5f{bottom:504.706667pt;}
.yb1{bottom:513.346667pt;}
.y29{bottom:514.946667pt;}
.y5e{bottom:524.226667pt;}
.y28{bottom:532.706667pt;}
.y5d{bottom:543.773333pt;}
.yb0{bottom:549.693333pt;}
.y27{bottom:550.653333pt;}
.y5c{bottom:563.293333pt;}
.y26{bottom:568.573333pt;}
.y5b{bottom:582.813333pt;}
.yaf{bottom:585.853333pt;}
.y25{bottom:586.493333pt;}
.y5a{bottom:602.333333pt;}
.y24{bottom:604.253333pt;}
.y59{bottom:621.853333pt;}
.y23{bottom:622.173333pt;}
.y22{bottom:640.093333pt;}
.y58{bottom:641.373333pt;}
.y8c{bottom:645.213333pt;}
.y21{bottom:658.013333pt;}
.y57{bottom:660.893333pt;}
.y8b{bottom:662.173333pt;}
.yab{bottom:675.293333pt;}
.y20{bottom:675.773333pt;}
.y56{bottom:680.253333pt;}
.y8a{bottom:681.693333pt;}
.y1f{bottom:693.693333pt;}
.yaa{bottom:697.853333pt;}
.y55{bottom:699.773333pt;}
.y89{bottom:701.213333pt;}
.y1e{bottom:711.613333pt;}
.ya9{bottom:717.373333pt;}
.y54{bottom:719.293333pt;}
.y88{bottom:720.573333pt;}
.y1d{bottom:726.813333pt;}
.y1c{bottom:734.653333pt;}
.ya8{bottom:736.893333pt;}
.y53{bottom:738.813333pt;}
.y87{bottom:740.093333pt;}
.y1b{bottom:751.773333pt;}
.ya7{bottom:756.413333pt;}
.y52{bottom:758.333333pt;}
.y86{bottom:759.613333pt;}
.y1a{bottom:763.133333pt;}
.y19{bottom:773.693333pt;}
.ya6{bottom:775.973333pt;}
.y51{bottom:777.893333pt;}
.y85{bottom:779.173333pt;}
.y18{bottom:793.253333pt;}
.ya5{bottom:795.493333pt;}
.y50{bottom:797.413333pt;}
.y84{bottom:798.693333pt;}
.y17{bottom:812.773333pt;}
.ya4{bottom:814.853333pt;}
.y4f{bottom:816.933333pt;}
.y83{bottom:818.213333pt;}
.y16{bottom:832.293333pt;}
.ya3{bottom:833.733333pt;}
.y81{bottom:834.373333pt;}
.y4e{bottom:836.453333pt;}
.ya2{bottom:850.053333pt;}
.y15{bottom:851.813333pt;}
.y4d{bottom:855.973333pt;}
.ya1{bottom:863.013333pt;}
.yc3{bottom:864.320000pt;}
.y7c{bottom:868.613333pt;}
.y14{bottom:871.333333pt;}
.y4c{bottom:875.333333pt;}
.y7f{bottom:886.213333pt;}
.y13{bottom:890.853333pt;}
.y4b{bottom:894.853333pt;}
.y7e{bottom:903.653333pt;}
.y4a{bottom:914.373333pt;}
.y77{bottom:921.093333pt;}
.y12{bottom:929.093333pt;}
.y49{bottom:933.893333pt;}
.y7b{bottom:938.693333pt;}
.y11{bottom:949.413333pt;}
.y48{bottom:953.413333pt;}
.y7a{bottom:956.133333pt;}
.y47{bottom:972.933333pt;}
.y74{bottom:973.573333pt;}
.y3f{bottom:990.853333pt;}
.y46{bottom:992.453333pt;}
.y10{bottom:997.253333pt;}
.y45{bottom:1012.000000pt;}
.yf{bottom:1015.200000pt;}
.y44{bottom:1031.520000pt;}
.ye{bottom:1033.120000pt;}
.y1{bottom:1060.640000pt;}
.ha{height:13.632000pt;}
.h10{height:14.576000pt;}
.h6{height:15.360000pt;}
.h1a{height:16.800000pt;}
.h1b{height:16.960000pt;}
.hf{height:24.487680pt;}
.h12{height:26.342400pt;}
.hc{height:27.264000pt;}
.hb{height:31.626240pt;}
.h8{height:31.712000pt;}
.h9{height:32.202880pt;}
.h1c{height:33.600000pt;}
.h22{height:33.632000pt;}
.h17{height:33.760000pt;}
.h7{height:34.947200pt;}
.h18{height:47.040000pt;}
.h1f{height:47.742188pt;}
.h13{height:47.936000pt;}
.hd{height:49.986560pt;}
.h3{height:50.165760pt;}
.h21{height:50.560000pt;}
.h19{height:51.840000pt;}
.h1d{height:52.057600pt;}
.h15{height:56.332800pt;}
.h11{height:57.702400pt;}
.h23{height:58.304000pt;}
.h2{height:58.563750pt;}
.he{height:62.720000pt;}
.h14{height:64.992000pt;}
.h25{height:65.781915pt;}
.h16{height:66.112024pt;}
.h5{height:107.618438pt;}
.h20{height:176.640000pt;}
.h1e{height:178.560000pt;}
.h24{height:182.720000pt;}
.h4{height:187.040000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:38.560000pt;}
.wa{width:92.800000pt;}
.w9{width:123.552000pt;}
.w8{width:155.226667pt;}
.w7{width:214.426667pt;}
.w4{width:282.146667pt;}
.wc{width:306.946667pt;}
.wd{width:356.706667pt;}
.w6{width:389.506667pt;}
.w5{width:396.413333pt;}
.we{width:573.600000pt;}
.wb{width:596.800000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x33{left:1.280000pt;}
.x3b{left:2.240000pt;}
.x2e{left:3.360000pt;}
.x3e{left:4.320000pt;}
.x3{left:5.253333pt;}
.x1a{left:6.880000pt;}
.x24{left:8.832000pt;}
.x32{left:10.592000pt;}
.x30{left:11.840000pt;}
.x16{left:13.760000pt;}
.xe{left:15.680000pt;}
.x3d{left:18.720000pt;}
.x19{left:20.160000pt;}
.x38{left:22.880000pt;}
.xf{left:24.960000pt;}
.x21{left:27.933333pt;}
.x20{left:34.013333pt;}
.x37{left:35.872000pt;}
.x14{left:37.754667pt;}
.x1b{left:39.040000pt;}
.x9{left:40.986667pt;}
.x1c{left:42.720000pt;}
.x35{left:46.272000pt;}
.x3c{left:55.712000pt;}
.x25{left:59.653333pt;}
.x36{left:62.586667pt;}
.x2f{left:65.626667pt;}
.x1{left:71.999988pt;}
.x22{left:74.493333pt;}
.x3a{left:91.066667pt;}
.x39{left:92.506667pt;}
.x5{left:93.480000pt;}
.x2b{left:98.106667pt;}
.x31{left:105.946667pt;}
.x13{left:110.592000pt;}
.x11{left:113.311988pt;}
.x34{left:117.626667pt;}
.xc{left:119.231988pt;}
.x23{left:126.466667pt;}
.xa{left:127.871988pt;}
.x42{left:129.631988pt;}
.x10{left:130.560000pt;}
.x3f{left:138.080000pt;}
.x2d{left:144.026667pt;}
.x1f{left:150.426655pt;}
.x41{left:153.626655pt;}
.x29{left:161.306655pt;}
.xb{left:179.546655pt;}
.x26{left:184.613333pt;}
.x40{left:211.293333pt;}
.xd{left:253.986667pt;}
.x28{left:289.346655pt;}
.x15{left:325.666667pt;}
.x7{left:332.866667pt;}
.x6{left:375.266667pt;}
.x2c{left:379.906667pt;}
.x8{left:386.813333pt;}
.x1d{left:425.213322pt;}
.x17{left:481.533333pt;}
.x4{left:492.573333pt;}
.x12{left:521.693322pt;}
.x18{left:605.733333pt;}
.x2a{left:678.693322pt;}
.x1e{left:711.333322pt;}
.x27{left:712.293322pt;}
.x2{left:737.120000pt;}
}




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