
    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_a6dd2c667f74477261b2189a.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_0e39e0f0400fe6eae428d4ab.woff2')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_c87e2e514fecc3efa8da5d49.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.983398;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_1551e001b88ec95172a42151.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.983398;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_9555f3d3271594c8ed0ca7be.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.758789;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_b87444467a102aee52b375a9.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.970215;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_d74b4ace65817fba3430d716.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.970215;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_5632a2273a4f3c85ca8534f1.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.750000;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_e149c35f45bb72228c3c6a50.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.958008;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_9597602cfd8da81604e72458.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_c9395d787623207e229e5f79.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_db31ca08707739b8742706be.woff2')format("woff");}.ffc{font-family:ffc;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;}
@font-face{font-family:ffd;src:url('chunks/assets/font_ca91a81810ac8e25654a4994.woff2')format("woff");}.ffd{font-family:ffd;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;}
@font-face{font-family:ffe;src:url('chunks/assets/font_c052da1632319b836536e560.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.914062;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_dfca7cb3e53cccd6a05cc186.woff2')format("woff");}.fff{font-family:fff;line-height:0.914062;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_8251e22f3ce2109c1ec03ba0.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.934082;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_2f62da7ac9814ad9b3e67ec1.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_869f5c5c4d7db06027601a6e.woff2')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v3{vertical-align:-20.880000px;}
.v2{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.lsb{letter-spacing:-2.220000px;}
.lsd{letter-spacing:-0.360000px;}
.lsa{letter-spacing:-0.127200px;}
.lsf{letter-spacing:-0.058320px;}
.lsc{letter-spacing:-0.038160px;}
.ls8{letter-spacing:-0.018000px;}
.ls7{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.012960px;}
.ls0{letter-spacing:0.036000px;}
.lse{letter-spacing:0.087600px;}
.ls1{letter-spacing:0.132600px;}
.ls6{letter-spacing:0.174240px;}
.ls9{letter-spacing:0.180000px;}
.ls2{letter-spacing:0.259920px;}
.ls10{letter-spacing:0.298800px;}
.ls5{letter-spacing:0.360000px;}
.ls12{letter-spacing:0.439920px;}
.ls4{letter-spacing:0.447840px;}
.ls3{letter-spacing:0.786240px;}
.ls13{letter-spacing:9.000000px;}
.ls15{letter-spacing:41.067360px;}
.ls14{letter-spacing:69.867360px;}
.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;}
}
.ws3{word-spacing:-21.367200px;}
.ws1{word-spacing:-16.626360px;}
.ws2{word-spacing:-16.493760px;}
.ws9{word-spacing:-15.300000px;}
.wsa{word-spacing:-14.940000px;}
.wsb{word-spacing:-14.580000px;}
.ws10{word-spacing:-14.220000px;}
.wsc{word-spacing:-13.505760px;}
.ws7{word-spacing:-12.854880px;}
.ws8{word-spacing:-12.816720px;}
.ws6{word-spacing:-12.204000px;}
.ws0{word-spacing:-12.186000px;}
.wse{word-spacing:-9.732960px;}
.wsf{word-spacing:-9.720000px;}
.ws4{word-spacing:-8.786880px;}
.ws5{word-spacing:-8.136000px;}
.wsd{word-spacing:0.000000px;}
._1d{margin-left:-6.522000px;}
._4{margin-left:-4.804560px;}
._3{margin-left:-3.403680px;}
._2{margin-left:-2.358720px;}
._0{margin-left:-1.242000px;}
._1{width:1.020000px;}
._5{width:2.155440px;}
._6{width:3.218880px;}
._c{width:4.469040px;}
._b{width:5.617440px;}
._11{width:6.629280px;}
._a{width:7.649280px;}
._9{width:8.665200px;}
._18{width:9.740880px;}
._12{width:10.963440px;}
._10{width:12.462000px;}
._f{width:13.565520px;}
._13{width:16.194960px;}
._19{width:17.330400px;}
._1a{width:18.390960px;}
._1b{width:19.597200px;}
._1c{width:20.625360px;}
._16{width:24.915840px;}
._17{width:26.127360px;}
._15{width:28.377840px;}
._14{width:29.401920px;}
._e{width:34.182720px;}
._d{width:35.198640px;}
._8{width:44.401680px;}
._7{width:45.473280px;}
.fc5{color:rgb(227,108,10);}
.fc4{color:rgb(50,62,79);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(31,56,100);}
.fc9{color:rgb(35,31,32);}
.fc8{color:rgb(48,48,48);}
.fc7{color:rgb(34,34,34);}
.fc6{color:rgb(33,33,33);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,54,93);}
.fs7{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs3{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs8{font-size:56.880000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y47{bottom:3.240000px;}
.y98{bottom:3.270000px;}
.y5{bottom:3.600000px;}
.y4d{bottom:3.960000px;}
.y10{bottom:9.540000px;}
.y7{bottom:10.260000px;}
.y1f{bottom:12.420000px;}
.ye{bottom:13.860000px;}
.y4{bottom:20.160000px;}
.y46{bottom:20.520000px;}
.y4c{bottom:22.140000px;}
.y1d{bottom:23.940000px;}
.y4a{bottom:28.980000px;}
.yd{bottom:30.240000px;}
.y1{bottom:32.760000px;}
.y3{bottom:36.720000px;}
.y45{bottom:37.800000px;}
.y1c{bottom:40.320000px;}
.y4b{bottom:40.500000px;}
.y49{bottom:43.560000px;}
.yc{bottom:46.620000px;}
.y6{bottom:50.400000px;}
.y2{bottom:53.100000px;}
.y44{bottom:54.900000px;}
.y1b{bottom:56.880000px;}
.y43{bottom:72.180000px;}
.y1a{bottom:73.260000px;}
.yb{bottom:73.440000px;}
.y19{bottom:85.680000px;}
.y42{bottom:89.505000px;}
.ya{bottom:93.090000px;}
.y18{bottom:100.440000px;}
.y41{bottom:106.785000px;}
.y9{bottom:111.450000px;}
.y17{bottom:115.740000px;}
.y30{bottom:115.785000px;}
.y58{bottom:122.580000px;}
.y40{bottom:124.065000px;}
.yea{bottom:124.560000px;}
.y103{bottom:126.360000px;}
.y2f{bottom:131.085000px;}
.y94{bottom:134.100000px;}
.y16{bottom:134.685000px;}
.y57{bottom:139.860000px;}
.y3f{bottom:141.345000px;}
.ye9{bottom:141.840000px;}
.y102{bottom:142.740000px;}
.y2e{bottom:148.725000px;}
.y95{bottom:152.460000px;}
.y56{bottom:156.960000px;}
.y3e{bottom:158.445000px;}
.ye8{bottom:158.940000px;}
.y101{bottom:159.120000px;}
.y15{bottom:160.425000px;}
.y2d{bottom:165.825000px;}
.y93{bottom:174.060000px;}
.y55{bottom:174.240000px;}
.y100{bottom:175.500000px;}
.y3d{bottom:175.725000px;}
.ye7{bottom:176.220000px;}
.y2c{bottom:183.105000px;}
.y14{bottom:186.165000px;}
.y92{bottom:191.340000px;}
.y54{bottom:191.520000px;}
.yff{bottom:191.880000px;}
.y3c{bottom:193.005000px;}
.ye6{bottom:193.500000px;}
.y2b{bottom:200.925000px;}
.yfe{bottom:208.260000px;}
.y91{bottom:208.440000px;}
.y53{bottom:208.800000px;}
.y3b{bottom:210.285000px;}
.ye5{bottom:210.780000px;}
.y13{bottom:211.905000px;}
.ybd{bottom:212.220000px;}
.y2a{bottom:218.385000px;}
.yfd{bottom:224.850000px;}
.y90{bottom:225.750000px;}
.y52{bottom:226.110000px;}
.ybc{bottom:227.370000px;}
.y3a{bottom:227.565000px;}
.ye4{bottom:228.090000px;}
.y29{bottom:235.665000px;}
.y12{bottom:236.385000px;}
.yfc{bottom:241.230000px;}
.y8f{bottom:243.030000px;}
.y51{bottom:243.210000px;}
.y39{bottom:244.665000px;}
.ye3{bottom:245.190000px;}
.ybb{bottom:245.730000px;}
.y28{bottom:253.125000px;}
.yfb{bottom:257.610000px;}
.y8e{bottom:260.310000px;}
.y50{bottom:260.490000px;}
.y38{bottom:261.945000px;}
.ye2{bottom:262.470000px;}
.yba{bottom:264.090000px;}
.y27{bottom:270.585000px;}
.yfa{bottom:273.990000px;}
.y8d{bottom:277.590000px;}
.y4f{bottom:277.770000px;}
.y37{bottom:279.225000px;}
.ye1{bottom:279.750000px;}
.yb9{bottom:282.450000px;}
.y26{bottom:287.865000px;}
.yf9{bottom:290.370000px;}
.y8c{bottom:294.870000px;}
.y4e{bottom:295.050000px;}
.y36{bottom:296.505000px;}
.ye0{bottom:297.030000px;}
.yb8{bottom:300.990000px;}
.y25{bottom:305.325000px;}
.yf8{bottom:306.750000px;}
.y48{bottom:309.090000px;}
.y8b{bottom:311.970000px;}
.y35{bottom:313.785000px;}
.ydf{bottom:314.310000px;}
.yb7{bottom:319.350000px;}
.y24{bottom:322.815000px;}
.yf7{bottom:323.130000px;}
.y8a{bottom:329.250000px;}
.y34{bottom:331.095000px;}
.yde{bottom:331.590000px;}
.yb6{bottom:337.710000px;}
.yf6{bottom:339.510000px;}
.y23{bottom:340.275000px;}
.y89{bottom:346.530000px;}
.y33{bottom:348.195000px;}
.ydd{bottom:348.690000px;}
.yf5{bottom:355.890000px;}
.yb5{bottom:356.070000px;}
.y88{bottom:363.810000px;}
.y20{bottom:363.990000px;}
.y32{bottom:365.475000px;}
.ydc{bottom:365.970000px;}
.y22{bottom:367.815000px;}
.yf4{bottom:372.270000px;}
.yb4{bottom:374.430000px;}
.y87{bottom:381.090000px;}
.y31{bottom:382.755000px;}
.ydb{bottom:383.250000px;}
.y21{bottom:385.455000px;}
.yf3{bottom:388.650000px;}
.yb3{bottom:392.790000px;}
.y86{bottom:398.370000px;}
.yda{bottom:400.530000px;}
.yf2{bottom:405.030000px;}
.yb2{bottom:411.150000px;}
.y85{bottom:415.470000px;}
.yd9{bottom:417.810000px;}
.yf1{bottom:421.410000px;}
.yb1{bottom:429.510000px;}
.y84{bottom:432.750000px;}
.yd8{bottom:435.090000px;}
.yf0{bottom:437.790000px;}
.yaf{bottom:447.915000px;}
.y83{bottom:450.075000px;}
.yd7{bottom:452.235000px;}
.yef{bottom:454.215000px;}
.yb0{bottom:466.275000px;}
.y82{bottom:467.355000px;}
.yd6{bottom:469.515000px;}
.yee{bottom:470.595000px;}
.y81{bottom:484.635000px;}
.yd5{bottom:486.795000px;}
.yed{bottom:486.975000px;}
.yae{bottom:487.875000px;}
.y80{bottom:501.735000px;}
.yec{bottom:503.355000px;}
.yd4{bottom:504.075000px;}
.yad{bottom:505.155000px;}
.y7f{bottom:519.015000px;}
.yeb{bottom:519.735000px;}
.yd3{bottom:521.355000px;}
.yac{bottom:522.435000px;}
.y7e{bottom:536.295000px;}
.yd2{bottom:538.455000px;}
.yab{bottom:539.715000px;}
.y7d{bottom:553.575000px;}
.yd1{bottom:555.735000px;}
.yaa{bottom:556.995000px;}
.y7c{bottom:570.855000px;}
.yd0{bottom:573.015000px;}
.ya9{bottom:574.095000px;}
.y7b{bottom:588.135000px;}
.ycf{bottom:590.295000px;}
.ya8{bottom:591.375000px;}
.y7a{bottom:605.235000px;}
.yce{bottom:607.575000px;}
.ya7{bottom:608.655000px;}
.y79{bottom:622.515000px;}
.ycd{bottom:624.855000px;}
.ya6{bottom:625.935000px;}
.y78{bottom:639.795000px;}
.ycc{bottom:641.955000px;}
.ya5{bottom:643.215000px;}
.y77{bottom:657.075000px;}
.ycb{bottom:659.235000px;}
.ya4{bottom:660.495000px;}
.y76{bottom:674.355000px;}
.ya3{bottom:674.535000px;}
.yca{bottom:676.515000px;}
.y75{bottom:691.665000px;}
.yc9{bottom:693.825000px;}
.y74{bottom:708.765000px;}
.yc8{bottom:711.105000px;}
.y73{bottom:726.045000px;}
.yc7{bottom:728.385000px;}
.y72{bottom:743.325000px;}
.yc6{bottom:745.485000px;}
.y71{bottom:760.605000px;}
.y1e{bottom:760.785000px;}
.yc5{bottom:762.765000px;}
.y70{bottom:777.885000px;}
.yc4{bottom:780.045000px;}
.y11{bottom:790.305000px;}
.y6f{bottom:795.165000px;}
.yc3{bottom:797.325000px;}
.y6e{bottom:812.265000px;}
.yc2{bottom:814.605000px;}
.y6d{bottom:829.545000px;}
.yc1{bottom:831.885000px;}
.y6c{bottom:846.825000px;}
.yc0{bottom:848.985000px;}
.y6b{bottom:864.105000px;}
.ybf{bottom:866.265000px;}
.ybe{bottom:880.305000px;}
.y6a{bottom:881.385000px;}
.y69{bottom:898.485000px;}
.y68{bottom:915.765000px;}
.y67{bottom:933.090000px;}
.y66{bottom:950.370000px;}
.y65{bottom:967.650000px;}
.ya2{bottom:971.430000px;}
.y64{bottom:984.930000px;}
.ya1{bottom:986.550000px;}
.y63{bottom:1002.030000px;}
.ya0{bottom:1004.910000px;}
.y62{bottom:1019.310000px;}
.y9f{bottom:1023.270000px;}
.y61{bottom:1036.590000px;}
.y9e{bottom:1041.630000px;}
.yf{bottom:1041.810000px;}
.y60{bottom:1053.870000px;}
.y9d{bottom:1059.990000px;}
.y8{bottom:1067.010000px;}
.y5f{bottom:1071.150000px;}
.y9c{bottom:1078.350000px;}
.y5e{bottom:1088.430000px;}
.y9b{bottom:1096.710000px;}
.y5d{bottom:1105.530000px;}
.y9a{bottom:1115.070000px;}
.y5c{bottom:1122.810000px;}
.y99{bottom:1133.430000px;}
.y5b{bottom:1140.090000px;}
.y97{bottom:1151.790000px;}
.y5a{bottom:1157.400000px;}
.y96{bottom:1170.180000px;}
.y59{bottom:1174.680000px;}
.h21{height:17.100000px;}
.h20{height:17.280000px;}
.h22{height:17.316000px;}
.hc{height:24.840000px;}
.h12{height:28.968750px;}
.h13{height:29.520000px;}
.h1f{height:35.640000px;}
.h9{height:36.180000px;}
.h1a{height:38.818125px;}
.h25{height:39.716016px;}
.h24{height:41.410195px;}
.h1b{height:41.726953px;}
.h1e{height:42.164648px;}
.h19{height:42.281367px;}
.h5{height:43.453125px;}
.he{height:44.002969px;}
.hb{height:44.820000px;}
.h18{height:45.770625px;}
.h16{height:47.980898px;}
.h1d{height:48.088125px;}
.h23{height:48.312422px;}
.h4{height:53.709961px;}
.ha{height:54.000000px;}
.h1c{height:54.900000px;}
.h3{height:55.291992px;}
.h17{height:56.574492px;}
.h10{height:59.439023px;}
.h11{height:61.189805px;}
.hf{height:63.180000px;}
.h2{height:66.060000px;}
.h6{height:67.824844px;}
.h7{height:71.613281px;}
.h14{height:73.722656px;}
.h8{height:121.536000px;}
.hd{height:251.490000px;}
.h15{height:396.795000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:74.916000px;}
.wf{width:150.150000px;}
.w5{width:151.950000px;}
.wd{width:166.530000px;}
.wa{width:177.150000px;}
.w12{width:181.470000px;}
.wb{width:193.395000px;}
.wc{width:195.870000px;}
.w10{width:198.390000px;}
.w11{width:203.115000px;}
.w8{width:223.275000px;}
.w9{width:524.085000px;}
.w6{width:595.410000px;}
.w2{width:673.530000px;}
.we{width:736.200000px;}
.w7{width:747.360000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x18{left:2.520000px;}
.x2{left:8.640000px;}
.x15{left:12.600000px;}
.xe{left:17.676000px;}
.xc{left:20.736000px;}
.xd{left:29.016000px;}
.x1{left:72.360000px;}
.x17{left:78.480000px;}
.x4{left:80.999987px;}
.x23{left:82.835987px;}
.x5{left:98.130000px;}
.x24{left:114.875987px;}
.xf{left:131.610000px;}
.x12{left:164.370000px;}
.x1e{left:169.949987px;}
.x11{left:172.470000px;}
.x10{left:179.670000px;}
.x16{left:208.829987px;}
.x13{left:215.175000px;}
.x6{left:224.850000px;}
.x1f{left:229.530000px;}
.x19{left:256.710000px;}
.x9{left:288.435000px;}
.x14{left:296.175000px;}
.x7{left:348.195000px;}
.x8{left:367.455000px;}
.xb{left:373.605000px;}
.x20{left:429.015000px;}
.x1c{left:446.504987px;}
.x1a{left:451.185000px;}
.xa{left:455.700000px;}
.x21{left:633.210000px;}
.x1b{left:648.150000px;}
.x1d{left:737.249987px;}
.x3{left:745.890000px;}
.x22{left:785.129987px;}
@media print{
.v3{vertical-align:-18.560000pt;}
.v2{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.lsb{letter-spacing:-1.973333pt;}
.lsd{letter-spacing:-0.320000pt;}
.lsa{letter-spacing:-0.113067pt;}
.lsf{letter-spacing:-0.051840pt;}
.lsc{letter-spacing:-0.033920pt;}
.ls8{letter-spacing:-0.016000pt;}
.ls7{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.011520pt;}
.ls0{letter-spacing:0.032000pt;}
.lse{letter-spacing:0.077867pt;}
.ls1{letter-spacing:0.117867pt;}
.ls6{letter-spacing:0.154880pt;}
.ls9{letter-spacing:0.160000pt;}
.ls2{letter-spacing:0.231040pt;}
.ls10{letter-spacing:0.265600pt;}
.ls5{letter-spacing:0.320000pt;}
.ls12{letter-spacing:0.391040pt;}
.ls4{letter-spacing:0.398080pt;}
.ls3{letter-spacing:0.698880pt;}
.ls13{letter-spacing:8.000000pt;}
.ls15{letter-spacing:36.504320pt;}
.ls14{letter-spacing:62.104320pt;}
.ws3{word-spacing:-18.993067pt;}
.ws1{word-spacing:-14.778987pt;}
.ws2{word-spacing:-14.661120pt;}
.ws9{word-spacing:-13.600000pt;}
.wsa{word-spacing:-13.280000pt;}
.wsb{word-spacing:-12.960000pt;}
.ws10{word-spacing:-12.640000pt;}
.wsc{word-spacing:-12.005120pt;}
.ws7{word-spacing:-11.426560pt;}
.ws8{word-spacing:-11.392640pt;}
.ws6{word-spacing:-10.848000pt;}
.ws0{word-spacing:-10.832000pt;}
.wse{word-spacing:-8.651520pt;}
.wsf{word-spacing:-8.640000pt;}
.ws4{word-spacing:-7.810560pt;}
.ws5{word-spacing:-7.232000pt;}
.wsd{word-spacing:0.000000pt;}
._1d{margin-left:-5.797333pt;}
._4{margin-left:-4.270720pt;}
._3{margin-left:-3.025493pt;}
._2{margin-left:-2.096640pt;}
._0{margin-left:-1.104000pt;}
._1{width:0.906667pt;}
._5{width:1.915947pt;}
._6{width:2.861227pt;}
._c{width:3.972480pt;}
._b{width:4.993280pt;}
._11{width:5.892693pt;}
._a{width:6.799360pt;}
._9{width:7.702400pt;}
._18{width:8.658560pt;}
._12{width:9.745280pt;}
._10{width:11.077333pt;}
._f{width:12.058240pt;}
._13{width:14.395520pt;}
._19{width:15.404800pt;}
._1a{width:16.347520pt;}
._1b{width:17.419733pt;}
._1c{width:18.333653pt;}
._16{width:22.147413pt;}
._17{width:23.224320pt;}
._15{width:25.224747pt;}
._14{width:26.135040pt;}
._e{width:30.384640pt;}
._d{width:31.287680pt;}
._8{width:39.468160pt;}
._7{width:40.420693pt;}
.fs7{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs3{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs8{font-size:50.560000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y47{bottom:2.880000pt;}
.y98{bottom:2.906667pt;}
.y5{bottom:3.200000pt;}
.y4d{bottom:3.520000pt;}
.y10{bottom:8.480000pt;}
.y7{bottom:9.120000pt;}
.y1f{bottom:11.040000pt;}
.ye{bottom:12.320000pt;}
.y4{bottom:17.920000pt;}
.y46{bottom:18.240000pt;}
.y4c{bottom:19.680000pt;}
.y1d{bottom:21.280000pt;}
.y4a{bottom:25.760000pt;}
.yd{bottom:26.880000pt;}
.y1{bottom:29.120000pt;}
.y3{bottom:32.640000pt;}
.y45{bottom:33.600000pt;}
.y1c{bottom:35.840000pt;}
.y4b{bottom:36.000000pt;}
.y49{bottom:38.720000pt;}
.yc{bottom:41.440000pt;}
.y6{bottom:44.800000pt;}
.y2{bottom:47.200000pt;}
.y44{bottom:48.800000pt;}
.y1b{bottom:50.560000pt;}
.y43{bottom:64.160000pt;}
.y1a{bottom:65.120000pt;}
.yb{bottom:65.280000pt;}
.y19{bottom:76.160000pt;}
.y42{bottom:79.560000pt;}
.ya{bottom:82.746667pt;}
.y18{bottom:89.280000pt;}
.y41{bottom:94.920000pt;}
.y9{bottom:99.066667pt;}
.y17{bottom:102.880000pt;}
.y30{bottom:102.920000pt;}
.y58{bottom:108.960000pt;}
.y40{bottom:110.280000pt;}
.yea{bottom:110.720000pt;}
.y103{bottom:112.320000pt;}
.y2f{bottom:116.520000pt;}
.y94{bottom:119.200000pt;}
.y16{bottom:119.720000pt;}
.y57{bottom:124.320000pt;}
.y3f{bottom:125.640000pt;}
.ye9{bottom:126.080000pt;}
.y102{bottom:126.880000pt;}
.y2e{bottom:132.200000pt;}
.y95{bottom:135.520000pt;}
.y56{bottom:139.520000pt;}
.y3e{bottom:140.840000pt;}
.ye8{bottom:141.280000pt;}
.y101{bottom:141.440000pt;}
.y15{bottom:142.600000pt;}
.y2d{bottom:147.400000pt;}
.y93{bottom:154.720000pt;}
.y55{bottom:154.880000pt;}
.y100{bottom:156.000000pt;}
.y3d{bottom:156.200000pt;}
.ye7{bottom:156.640000pt;}
.y2c{bottom:162.760000pt;}
.y14{bottom:165.480000pt;}
.y92{bottom:170.080000pt;}
.y54{bottom:170.240000pt;}
.yff{bottom:170.560000pt;}
.y3c{bottom:171.560000pt;}
.ye6{bottom:172.000000pt;}
.y2b{bottom:178.600000pt;}
.yfe{bottom:185.120000pt;}
.y91{bottom:185.280000pt;}
.y53{bottom:185.600000pt;}
.y3b{bottom:186.920000pt;}
.ye5{bottom:187.360000pt;}
.y13{bottom:188.360000pt;}
.ybd{bottom:188.640000pt;}
.y2a{bottom:194.120000pt;}
.yfd{bottom:199.866667pt;}
.y90{bottom:200.666667pt;}
.y52{bottom:200.986667pt;}
.ybc{bottom:202.106667pt;}
.y3a{bottom:202.280000pt;}
.ye4{bottom:202.746667pt;}
.y29{bottom:209.480000pt;}
.y12{bottom:210.120000pt;}
.yfc{bottom:214.426667pt;}
.y8f{bottom:216.026667pt;}
.y51{bottom:216.186667pt;}
.y39{bottom:217.480000pt;}
.ye3{bottom:217.946667pt;}
.ybb{bottom:218.426667pt;}
.y28{bottom:225.000000pt;}
.yfb{bottom:228.986667pt;}
.y8e{bottom:231.386667pt;}
.y50{bottom:231.546667pt;}
.y38{bottom:232.840000pt;}
.ye2{bottom:233.306667pt;}
.yba{bottom:234.746667pt;}
.y27{bottom:240.520000pt;}
.yfa{bottom:243.546667pt;}
.y8d{bottom:246.746667pt;}
.y4f{bottom:246.906667pt;}
.y37{bottom:248.200000pt;}
.ye1{bottom:248.666667pt;}
.yb9{bottom:251.066667pt;}
.y26{bottom:255.880000pt;}
.yf9{bottom:258.106667pt;}
.y8c{bottom:262.106667pt;}
.y4e{bottom:262.266667pt;}
.y36{bottom:263.560000pt;}
.ye0{bottom:264.026667pt;}
.yb8{bottom:267.546667pt;}
.y25{bottom:271.400000pt;}
.yf8{bottom:272.666667pt;}
.y48{bottom:274.746667pt;}
.y8b{bottom:277.306667pt;}
.y35{bottom:278.920000pt;}
.ydf{bottom:279.386667pt;}
.yb7{bottom:283.866667pt;}
.y24{bottom:286.946667pt;}
.yf7{bottom:287.226667pt;}
.y8a{bottom:292.666667pt;}
.y34{bottom:294.306667pt;}
.yde{bottom:294.746667pt;}
.yb6{bottom:300.186667pt;}
.yf6{bottom:301.786667pt;}
.y23{bottom:302.466667pt;}
.y89{bottom:308.026667pt;}
.y33{bottom:309.506667pt;}
.ydd{bottom:309.946667pt;}
.yf5{bottom:316.346667pt;}
.yb5{bottom:316.506667pt;}
.y88{bottom:323.386667pt;}
.y20{bottom:323.546667pt;}
.y32{bottom:324.866667pt;}
.ydc{bottom:325.306667pt;}
.y22{bottom:326.946667pt;}
.yf4{bottom:330.906667pt;}
.yb4{bottom:332.826667pt;}
.y87{bottom:338.746667pt;}
.y31{bottom:340.226667pt;}
.ydb{bottom:340.666667pt;}
.y21{bottom:342.626667pt;}
.yf3{bottom:345.466667pt;}
.yb3{bottom:349.146667pt;}
.y86{bottom:354.106667pt;}
.yda{bottom:356.026667pt;}
.yf2{bottom:360.026667pt;}
.yb2{bottom:365.466667pt;}
.y85{bottom:369.306667pt;}
.yd9{bottom:371.386667pt;}
.yf1{bottom:374.586667pt;}
.yb1{bottom:381.786667pt;}
.y84{bottom:384.666667pt;}
.yd8{bottom:386.746667pt;}
.yf0{bottom:389.146667pt;}
.yaf{bottom:398.146667pt;}
.y83{bottom:400.066667pt;}
.yd7{bottom:401.986667pt;}
.yef{bottom:403.746667pt;}
.yb0{bottom:414.466667pt;}
.y82{bottom:415.426667pt;}
.yd6{bottom:417.346667pt;}
.yee{bottom:418.306667pt;}
.y81{bottom:430.786667pt;}
.yd5{bottom:432.706667pt;}
.yed{bottom:432.866667pt;}
.yae{bottom:433.666667pt;}
.y80{bottom:445.986667pt;}
.yec{bottom:447.426667pt;}
.yd4{bottom:448.066667pt;}
.yad{bottom:449.026667pt;}
.y7f{bottom:461.346667pt;}
.yeb{bottom:461.986667pt;}
.yd3{bottom:463.426667pt;}
.yac{bottom:464.386667pt;}
.y7e{bottom:476.706667pt;}
.yd2{bottom:478.626667pt;}
.yab{bottom:479.746667pt;}
.y7d{bottom:492.066667pt;}
.yd1{bottom:493.986667pt;}
.yaa{bottom:495.106667pt;}
.y7c{bottom:507.426667pt;}
.yd0{bottom:509.346667pt;}
.ya9{bottom:510.306667pt;}
.y7b{bottom:522.786667pt;}
.ycf{bottom:524.706667pt;}
.ya8{bottom:525.666667pt;}
.y7a{bottom:537.986667pt;}
.yce{bottom:540.066667pt;}
.ya7{bottom:541.026667pt;}
.y79{bottom:553.346667pt;}
.ycd{bottom:555.426667pt;}
.ya6{bottom:556.386667pt;}
.y78{bottom:568.706667pt;}
.ycc{bottom:570.626667pt;}
.ya5{bottom:571.746667pt;}
.y77{bottom:584.066667pt;}
.ycb{bottom:585.986667pt;}
.ya4{bottom:587.106667pt;}
.y76{bottom:599.426667pt;}
.ya3{bottom:599.586667pt;}
.yca{bottom:601.346667pt;}
.y75{bottom:614.813333pt;}
.yc9{bottom:616.733333pt;}
.y74{bottom:630.013333pt;}
.yc8{bottom:632.093333pt;}
.y73{bottom:645.373333pt;}
.yc7{bottom:647.453333pt;}
.y72{bottom:660.733333pt;}
.yc6{bottom:662.653333pt;}
.y71{bottom:676.093333pt;}
.y1e{bottom:676.253333pt;}
.yc5{bottom:678.013333pt;}
.y70{bottom:691.453333pt;}
.yc4{bottom:693.373333pt;}
.y11{bottom:702.493333pt;}
.y6f{bottom:706.813333pt;}
.yc3{bottom:708.733333pt;}
.y6e{bottom:722.013333pt;}
.yc2{bottom:724.093333pt;}
.y6d{bottom:737.373333pt;}
.yc1{bottom:739.453333pt;}
.y6c{bottom:752.733333pt;}
.yc0{bottom:754.653333pt;}
.y6b{bottom:768.093333pt;}
.ybf{bottom:770.013333pt;}
.ybe{bottom:782.493333pt;}
.y6a{bottom:783.453333pt;}
.y69{bottom:798.653333pt;}
.y68{bottom:814.013333pt;}
.y67{bottom:829.413333pt;}
.y66{bottom:844.773333pt;}
.y65{bottom:860.133333pt;}
.ya2{bottom:863.493333pt;}
.y64{bottom:875.493333pt;}
.ya1{bottom:876.933333pt;}
.y63{bottom:890.693333pt;}
.ya0{bottom:893.253333pt;}
.y62{bottom:906.053333pt;}
.y9f{bottom:909.573333pt;}
.y61{bottom:921.413333pt;}
.y9e{bottom:925.893333pt;}
.yf{bottom:926.053333pt;}
.y60{bottom:936.773333pt;}
.y9d{bottom:942.213333pt;}
.y8{bottom:948.453333pt;}
.y5f{bottom:952.133333pt;}
.y9c{bottom:958.533333pt;}
.y5e{bottom:967.493333pt;}
.y9b{bottom:974.853333pt;}
.y5d{bottom:982.693333pt;}
.y9a{bottom:991.173333pt;}
.y5c{bottom:998.053333pt;}
.y99{bottom:1007.493333pt;}
.y5b{bottom:1013.413333pt;}
.y97{bottom:1023.813333pt;}
.y5a{bottom:1028.800000pt;}
.y96{bottom:1040.160000pt;}
.y59{bottom:1044.160000pt;}
.h21{height:15.200000pt;}
.h20{height:15.360000pt;}
.h22{height:15.392000pt;}
.hc{height:22.080000pt;}
.h12{height:25.750000pt;}
.h13{height:26.240000pt;}
.h1f{height:31.680000pt;}
.h9{height:32.160000pt;}
.h1a{height:34.505000pt;}
.h25{height:35.303125pt;}
.h24{height:36.809062pt;}
.h1b{height:37.090625pt;}
.h1e{height:37.479688pt;}
.h19{height:37.583438pt;}
.h5{height:38.625000pt;}
.he{height:39.113750pt;}
.hb{height:39.840000pt;}
.h18{height:40.685000pt;}
.h16{height:42.649687pt;}
.h1d{height:42.745000pt;}
.h23{height:42.944375pt;}
.h4{height:47.742188pt;}
.ha{height:48.000000pt;}
.h1c{height:48.800000pt;}
.h3{height:49.148438pt;}
.h17{height:50.288438pt;}
.h10{height:52.834688pt;}
.h11{height:54.390938pt;}
.hf{height:56.160000pt;}
.h2{height:58.720000pt;}
.h6{height:60.288750pt;}
.h7{height:63.656250pt;}
.h14{height:65.531250pt;}
.h8{height:108.032000pt;}
.hd{height:223.546667pt;}
.h15{height:352.706667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:66.592000pt;}
.wf{width:133.466667pt;}
.w5{width:135.066667pt;}
.wd{width:148.026667pt;}
.wa{width:157.466667pt;}
.w12{width:161.306667pt;}
.wb{width:171.906667pt;}
.wc{width:174.106667pt;}
.w10{width:176.346667pt;}
.w11{width:180.546667pt;}
.w8{width:198.466667pt;}
.w9{width:465.853333pt;}
.w6{width:529.253333pt;}
.w2{width:598.693333pt;}
.we{width:654.400000pt;}
.w7{width:664.320000pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x18{left:2.240000pt;}
.x2{left:7.680000pt;}
.x15{left:11.200000pt;}
.xe{left:15.712000pt;}
.xc{left:18.432000pt;}
.xd{left:25.792000pt;}
.x1{left:64.320000pt;}
.x17{left:69.760000pt;}
.x4{left:71.999988pt;}
.x23{left:73.631988pt;}
.x5{left:87.226667pt;}
.x24{left:102.111988pt;}
.xf{left:116.986667pt;}
.x12{left:146.106667pt;}
.x1e{left:151.066655pt;}
.x11{left:153.306667pt;}
.x10{left:159.706667pt;}
.x16{left:185.626655pt;}
.x13{left:191.266667pt;}
.x6{left:199.866667pt;}
.x1f{left:204.026667pt;}
.x19{left:228.186667pt;}
.x9{left:256.386667pt;}
.x14{left:263.266667pt;}
.x7{left:309.506667pt;}
.x8{left:326.626667pt;}
.xb{left:332.093333pt;}
.x20{left:381.346667pt;}
.x1c{left:396.893322pt;}
.x1a{left:401.053333pt;}
.xa{left:405.066667pt;}
.x21{left:562.853333pt;}
.x1b{left:576.133333pt;}
.x1d{left:655.333322pt;}
.x3{left:663.013333pt;}
.x22{left:697.893322pt;}
}




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