
    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_45f33271d641e424c4dbc119.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_7bb6e40d947954d212cfa013.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_d2c1de7a546332ceb12b6ee7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.053223;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_a73085ce0f0c4d3c6c55543a.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.053223;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_43b0192c579bde55b77463fc.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_17ec487f2be6ec95c1eaf724.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_94ffa7be89c02942f69faa78.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_6063bdc5ba90cbb97ed298c8.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_5632a2273a4f3c85ca8534f1.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_abcf159db0e8aaae8b15cc8a.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_514713adcece71ebcf4d5ff3.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_4b3c2593567dfb34267bcde5.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_d6daedaf330413e415327dfc.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_ac2a81dcaff83bac957ea66e.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_f729ce3c9e4683edbd68401e.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_2a5ec3e89521d2753c25e0b0.woff2')format("woff");}.ff10{font-family:ff10;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;}
@font-face{font-family:ff11;src:url('chunks/assets/font_6d57abc62f18bf267011ebad.woff2')format("woff");}.ff11{font-family:ff11;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;}
@font-face{font-family:ff12;src:url('chunks/assets/font_2faff0a540179368e037e5ff.woff2')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_215455c419ffab3b728a3d24.woff2')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_4d1693561fbb11cf26ce0894.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.005859;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:ff15;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff15{font-family:ff15;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;}
.m2{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);}
.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);}
.v4{vertical-align:-20.880000px;}
.v2{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:6.180000px;}
.v1{vertical-align:20.880000px;}
.lsd{letter-spacing:-0.540000px;}
.ls14{letter-spacing:-0.058320px;}
.ls13{letter-spacing:-0.053280px;}
.ls9{letter-spacing:-0.018000px;}
.ls8{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.012960px;}
.ls0{letter-spacing:0.036000px;}
.lsf{letter-spacing:0.053280px;}
.ls1{letter-spacing:0.132600px;}
.ls7{letter-spacing:0.174240px;}
.ls5{letter-spacing:0.180000px;}
.lsc{letter-spacing:0.259800px;}
.ls2{letter-spacing:0.259920px;}
.lse{letter-spacing:0.298800px;}
.ls6{letter-spacing:0.360000px;}
.ls4{letter-spacing:0.447840px;}
.ls11{letter-spacing:0.666720px;}
.lsb{letter-spacing:0.709200px;}
.ls3{letter-spacing:0.786240px;}
.ls10{letter-spacing:5.220000px;}
.ls12{letter-spacing:46.026720px;}
.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;}
}
.ws1{word-spacing:-16.626360px;}
.ws2{word-spacing:-16.493760px;}
.ws6{word-spacing:-15.300000px;}
.ws9{word-spacing:-15.199800px;}
.wsc{word-spacing:-14.993280px;}
.ws7{word-spacing:-14.940000px;}
.wsf{word-spacing:-14.886720px;}
.ws4{word-spacing:-13.505760px;}
.ws10{word-spacing:-13.447440px;}
.wsb{word-spacing:-13.160160px;}
.wsa{word-spacing:-13.147200px;}
.ws0{word-spacing:-12.186000px;}
.wse{word-spacing:-9.720000px;}
.ws3{word-spacing:-8.786880px;}
.ws5{word-spacing:-8.136000px;}
.ws8{word-spacing:0.000000px;}
.wsd{word-spacing:355.920000px;}
._c{margin-left:-7.897200px;}
._3{margin-left:-5.557680px;}
._4{margin-left:-4.302000px;}
._2{margin-left:-2.843040px;}
._0{margin-left:-1.032000px;}
._1{width:1.260000px;}
._5{width:2.433120px;}
._9{width:4.422240px;}
._d{width:6.300720px;}
._6{width:7.768800px;}
._7{width:8.844480px;}
._b{width:10.936080px;}
._f{width:12.544560px;}
._e{width:13.859280px;}
._8{width:16.787520px;}
._a{width:18.412080px;}
._12{width:23.664960px;}
._11{width:26.508000px;}
._10{width:28.923840px;}
._13{width:34.003440px;}
._15{width:200.268000px;}
._14{width:235.320000px;}
.fc5{color:rgb(227,108,10);}
.fc4{color:rgb(50,62,79);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(31,56,100);}
.fc8{color:rgb(64,64,64);}
.fc7{color:rgb(89,89,89);}
.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;}
.fs9{font-size:54.144000px;}
.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;}
.y4d{bottom:3.240000px;}
.y3{bottom:3.600000px;}
.y52{bottom:3.960000px;}
.y1c{bottom:4.860000px;}
.yaf{bottom:5.220000px;}
.yb9{bottom:7.920000px;}
.ye{bottom:9.540000px;}
.y50{bottom:10.620000px;}
.y1e{bottom:12.420000px;}
.yc{bottom:13.860000px;}
.yc9{bottom:15.660000px;}
.y4{bottom:17.316000px;}
.yb1{bottom:19.620000px;}
.y2{bottom:20.196000px;}
.y4c{bottom:20.340000px;}
.y98{bottom:20.520000px;}
.ya5{bottom:21.240000px;}
.y51{bottom:22.320000px;}
.ybb{bottom:22.500000px;}
.y4f{bottom:25.380000px;}
.y1b{bottom:29.340000px;}
.ya1{bottom:29.700000px;}
.y96{bottom:29.880000px;}
.yb{bottom:30.240000px;}
.yc2{bottom:32.550000px;}
.y5{bottom:33.120000px;}
.y4b{bottom:37.620000px;}
.ya4{bottom:38.520000px;}
.y1a{bottom:45.900000px;}
.ya{bottom:46.620000px;}
.y1{bottom:54.180000px;}
.y4a{bottom:54.900000px;}
.yc3{bottom:62.385000px;}
.y19{bottom:62.460000px;}
.y49{bottom:72.180000px;}
.y9e{bottom:72.210000px;}
.y9{bottom:73.470000px;}
.y18{bottom:78.840000px;}
.y48{bottom:89.460000px;}
.y9d{bottom:89.490000px;}
.yc4{bottom:92.235000px;}
.y8{bottom:93.090000px;}
.y17{bottom:94.725000px;}
.y16{bottom:105.165000px;}
.y57{bottom:105.876000px;}
.y47{bottom:106.740000px;}
.y9c{bottom:106.770000px;}
.y7{bottom:111.450000px;}
.y109{bottom:113.796000px;}
.yc0{bottom:114.156000px;}
.yc5{bottom:122.070000px;}
.y56{bottom:123.156000px;}
.y15{bottom:123.525000px;}
.y46{bottom:123.885000px;}
.y9b{bottom:124.050000px;}
.ybc{bottom:128.916000px;}
.y108{bottom:131.076000px;}
.y55{bottom:140.436000px;}
.y9a{bottom:141.150000px;}
.y45{bottom:141.165000px;}
.y14{bottom:141.705000px;}
.y107{bottom:148.356000px;}
.ybf{bottom:151.770000px;}
.yc6{bottom:151.950000px;}
.y54{bottom:157.710000px;}
.y44{bottom:158.445000px;}
.y13{bottom:160.785000px;}
.y106{bottom:165.630000px;}
.yca{bottom:168.810000px;}
.ybe{bottom:174.450000px;}
.y53{bottom:174.810000px;}
.y43{bottom:175.725000px;}
.yc7{bottom:181.800000px;}
.y105{bottom:182.910000px;}
.y12{bottom:186.525000px;}
.y4e{bottom:188.850000px;}
.y42{bottom:193.005000px;}
.ybd{bottom:197.130000px;}
.y104{bottom:200.010000px;}
.y90{bottom:207.570000px;}
.y41{bottom:210.285000px;}
.yc8{bottom:211.650000px;}
.ycb{bottom:211.965000px;}
.y11{bottom:212.265000px;}
.y103{bottom:217.290000px;}
.yba{bottom:219.810000px;}
.y8f{bottom:225.030000px;}
.y1f{bottom:225.570000px;}
.y40{bottom:227.385000px;}
.y102{bottom:234.570000px;}
.y10{bottom:236.565000px;}
.y8e{bottom:242.670000px;}
.y3f{bottom:244.665000px;}
.y101{bottom:251.850000px;}
.y8d{bottom:260.130000px;}
.y3e{bottom:261.945000px;}
.yb8{bottom:268.590000px;}
.y100{bottom:269.130000px;}
.y2e{bottom:273.105000px;}
.y8c{bottom:277.410000px;}
.ycc{bottom:277.845000px;}
.y3d{bottom:279.225000px;}
.yb7{bottom:285.870000px;}
.yff{bottom:286.230000px;}
.y2d{bottom:288.405000px;}
.y8b{bottom:294.510000px;}
.y3c{bottom:296.505000px;}
.yb6{bottom:303.150000px;}
.yfe{bottom:303.510000px;}
.y2c{bottom:306.045000px;}
.y8a{bottom:311.790000px;}
.y3b{bottom:313.785000px;}
.yb2{bottom:317.910000px;}
.yfd{bottom:320.790000px;}
.y2b{bottom:323.325000px;}
.y89{bottom:329.070000px;}
.y3a{bottom:330.885000px;}
.yb5{bottom:337.755000px;}
.yfc{bottom:338.115000px;}
.y2a{bottom:340.425000px;}
.y88{bottom:346.395000px;}
.y39{bottom:348.165000px;}
.yfb{bottom:355.395000px;}
.yb4{bottom:357.735000px;}
.y29{bottom:358.245000px;}
.y87{bottom:363.675000px;}
.y38{bottom:365.445000px;}
.yfa{bottom:372.675000px;}
.y28{bottom:374.985000px;}
.yb3{bottom:377.715000px;}
.y86{bottom:380.775000px;}
.y37{bottom:382.755000px;}
.yf9{bottom:389.775000px;}
.y27{bottom:391.395000px;}
.yb0{bottom:397.695000px;}
.y85{bottom:398.055000px;}
.y36{bottom:400.035000px;}
.yf8{bottom:407.055000px;}
.y26{bottom:408.495000px;}
.y84{bottom:415.335000px;}
.y35{bottom:417.135000px;}
.yae{bottom:417.675000px;}
.yf7{bottom:424.335000px;}
.y25{bottom:425.955000px;}
.y83{bottom:432.615000px;}
.y34{bottom:434.415000px;}
.yad{bottom:440.895000px;}
.yf6{bottom:441.615000px;}
.y24{bottom:443.235000px;}
.y82{bottom:449.895000px;}
.y33{bottom:451.695000px;}
.yac{bottom:457.995000px;}
.yf5{bottom:458.895000px;}
.y23{bottom:460.695000px;}
.y81{bottom:467.175000px;}
.y32{bottom:468.975000px;}
.yab{bottom:475.275000px;}
.yf4{bottom:476.175000px;}
.y22{bottom:478.335000px;}
.y80{bottom:484.275000px;}
.y31{bottom:486.255000px;}
.yaa{bottom:492.555000px;}
.yf3{bottom:493.275000px;}
.y7f{bottom:501.555000px;}
.y30{bottom:503.535000px;}
.y21{bottom:505.695000px;}
.ya9{bottom:509.835000px;}
.yf2{bottom:510.555000px;}
.y7e{bottom:518.835000px;}
.y2f{bottom:520.635000px;}
.y20{bottom:523.335000px;}
.ya8{bottom:527.115000px;}
.yf1{bottom:527.835000px;}
.y7d{bottom:536.115000px;}
.y99{bottom:541.875000px;}
.yf0{bottom:545.115000px;}
.y7c{bottom:553.395000px;}
.ya7{bottom:559.875000px;}
.yef{bottom:562.395000px;}
.y7b{bottom:570.675000px;}
.ya6{bottom:577.875000px;}
.yee{bottom:579.495000px;}
.y7a{bottom:587.775000px;}
.yed{bottom:596.775000px;}
.y79{bottom:605.085000px;}
.ya0{bottom:613.185000px;}
.yec{bottom:614.085000px;}
.y78{bottom:622.365000px;}
.ya3{bottom:631.185000px;}
.yeb{bottom:631.365000px;}
.y77{bottom:639.645000px;}
.yea{bottom:648.645000px;}
.ya2{bottom:649.185000px;}
.y76{bottom:656.925000px;}
.ye9{bottom:665.925000px;}
.y75{bottom:674.025000px;}
.ye8{bottom:683.025000px;}
.y95{bottom:684.285000px;}
.y74{bottom:691.305000px;}
.ye7{bottom:700.305000px;}
.y9f{bottom:702.285000px;}
.y125{bottom:706.425000px;}
.y73{bottom:708.585000px;}
.ye6{bottom:717.585000px;}
.y97{bottom:720.285000px;}
.y124{bottom:723.705000px;}
.y72{bottom:725.865000px;}
.ye5{bottom:734.865000px;}
.y123{bottom:740.985000px;}
.y71{bottom:743.145000px;}
.ye4{bottom:752.145000px;}
.y94{bottom:755.565000px;}
.y122{bottom:758.265000px;}
.y1d{bottom:760.245000px;}
.y70{bottom:760.425000px;}
.ye3{bottom:769.425000px;}
.y93{bottom:773.565000px;}
.y121{bottom:775.545000px;}
.y6f{bottom:777.525000px;}
.ye2{bottom:786.525000px;}
.yf{bottom:789.765000px;}
.y120{bottom:792.645000px;}
.y6e{bottom:794.805000px;}
.ye1{bottom:803.805000px;}
.y11f{bottom:809.925000px;}
.y6d{bottom:812.085000px;}
.ye0{bottom:821.085000px;}
.y11e{bottom:827.205000px;}
.y6c{bottom:829.365000px;}
.ydf{bottom:838.365000px;}
.y11d{bottom:844.485000px;}
.y6b{bottom:846.645000px;}
.yde{bottom:855.645000px;}
.y11c{bottom:862.485000px;}
.y92{bottom:863.745000px;}
.y6a{bottom:863.925000px;}
.ydd{bottom:872.970000px;}
.y91{bottom:877.830000px;}
.yc1{bottom:879.660000px;}
.y11b{bottom:879.990000px;}
.y69{bottom:881.070000px;}
.ydc{bottom:890.070000px;}
.y11a{bottom:897.270000px;}
.y68{bottom:898.350000px;}
.ydb{bottom:907.350000px;}
.y119{bottom:914.550000px;}
.y67{bottom:915.630000px;}
.yda{bottom:924.630000px;}
.y118{bottom:931.830000px;}
.y66{bottom:932.910000px;}
.yd9{bottom:941.910000px;}
.y117{bottom:949.110000px;}
.y65{bottom:950.190000px;}
.yd8{bottom:959.190000px;}
.y116{bottom:966.390000px;}
.y64{bottom:967.470000px;}
.yd7{bottom:976.290000px;}
.y115{bottom:983.490000px;}
.y63{bottom:984.570000px;}
.yd6{bottom:993.570000px;}
.y114{bottom:1000.770000px;}
.y62{bottom:1001.850000px;}
.yd5{bottom:1010.850000px;}
.y113{bottom:1018.050000px;}
.y61{bottom:1019.130000px;}
.yd4{bottom:1028.130000px;}
.y112{bottom:1035.330000px;}
.y60{bottom:1036.410000px;}
.yd{bottom:1041.450000px;}
.yd3{bottom:1045.410000px;}
.y111{bottom:1052.610000px;}
.y5f{bottom:1053.690000px;}
.yd2{bottom:1062.690000px;}
.y6{bottom:1066.830000px;}
.y110{bottom:1069.890000px;}
.y5e{bottom:1070.790000px;}
.yd1{bottom:1077.450000px;}
.y10f{bottom:1086.990000px;}
.y5d{bottom:1088.070000px;}
.yd0{bottom:1096.170000px;}
.y10e{bottom:1104.270000px;}
.y5c{bottom:1105.350000px;}
.ycf{bottom:1114.890000px;}
.y10d{bottom:1121.550000px;}
.y5b{bottom:1122.630000px;}
.yce{bottom:1133.610000px;}
.y10c{bottom:1138.860000px;}
.y5a{bottom:1139.940000px;}
.ycd{bottom:1152.360000px;}
.y10b{bottom:1156.140000px;}
.y59{bottom:1157.220000px;}
.y58{bottom:1174.320000px;}
.y10a{bottom:1179.360000px;}
.h28{height:17.100000px;}
.h22{height:17.280000px;}
.h39{height:18.000000px;}
.h3a{height:18.036000px;}
.h2b{height:19.080000px;}
.h30{height:19.116000px;}
.h2f{height:19.260000px;}
.h31{height:21.960000px;}
.h34{height:22.140000px;}
.hc{height:25.020000px;}
.h14{height:29.520000px;}
.h13{height:32.103633px;}
.h2{height:32.976000px;}
.h27{height:34.380000px;}
.h2a{height:34.416000px;}
.h24{height:34.560000px;}
.h12{height:35.806641px;}
.h9{height:36.180000px;}
.h1e{height:36.720000px;}
.h2c{height:39.060000px;}
.h19{height:40.243711px;}
.h3d{height:40.309805px;}
.h20{height:42.164648px;}
.h1c{height:42.186445px;}
.h1b{height:42.281367px;}
.h33{height:43.215099px;}
.h2e{height:43.215103px;}
.h1d{height:43.215117px;}
.h3e{height:43.506914px;}
.he{height:44.002969px;}
.hb{height:44.820000px;}
.h17{height:47.980898px;}
.h3c{height:48.312422px;}
.h3b{height:48.995859px;}
.h1a{height:49.742227px;}
.h21{height:50.364141px;}
.h1f{height:52.260820px;}
.h4{height:53.709961px;}
.h36{height:53.853187px;}
.ha{height:54.000000px;}
.h3{height:55.291992px;}
.h18{height:56.574492px;}
.h38{height:59.436914px;}
.h10{height:59.439023px;}
.h37{height:59.889961px;}
.h11{height:61.189805px;}
.hf{height:63.180000px;}
.h6{height:65.884219px;}
.h5{height:67.824844px;}
.h26{height:70.380000px;}
.h29{height:70.416000px;}
.h23{height:70.560000px;}
.h8{height:71.613281px;}
.h15{height:73.722656px;}
.h2d{height:99.036000px;}
.h32{height:113.040000px;}
.h7{height:121.536000px;}
.h25{height:212.970000px;}
.hd{height:251.670000px;}
.h35{height:308.700000px;}
.h16{height:534.675000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w14{width:64.800000px;}
.w1b{width:65.340000px;}
.w10{width:71.676000px;}
.w3{width:73.080000px;}
.wf{width:78.660000px;}
.w11{width:99.000000px;}
.wc{width:113.976000px;}
.wb{width:120.816000px;}
.w22{width:122.400000px;}
.we{width:122.796000px;}
.w12{width:125.136000px;}
.w19{width:126.576000px;}
.wd{width:129.960000px;}
.w5{width:151.950000px;}
.w18{width:155.190000px;}
.w1f{width:157.350000px;}
.w24{width:174.270000px;}
.w17{width:174.810000px;}
.w1e{width:176.790000px;}
.w23{width:201.270000px;}
.w15{width:207.930000px;}
.w1c{width:210.450000px;}
.w8{width:223.455000px;}
.w21{width:230.655000px;}
.w16{width:330.375000px;}
.w1d{width:334.515000px;}
.w9{width:507.675000px;}
.w13{width:538.665000px;}
.w20{width:542.880000px;}
.w1a{width:545.325000px;}
.w6{width:579.165000px;}
.w2{width:658.050000px;}
.w7{width:731.130000px;}
.wa{width:739.230000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:8.676000px;}
.x15{left:12.600000px;}
.x10{left:19.656000px;}
.x11{left:25.056000px;}
.x2e{left:31.755000px;}
.xc{left:33.876000px;}
.x2d{left:38.595000px;}
.xb{left:43.416000px;}
.xe{left:46.116000px;}
.x23{left:59.076000px;}
.x12{left:61.596000px;}
.x2a{left:68.616000px;}
.x24{left:76.890000px;}
.x1{left:81.000000px;}
.x2f{left:87.225000px;}
.x4{left:98.130000px;}
.x20{left:107.675987px;}
.x18{left:112.895987px;}
.x30{left:119.370000px;}
.x27{left:134.135987px;}
.x2c{left:174.060000px;}
.x32{left:184.830000px;}
.x1a{left:203.070000px;}
.x28{left:204.690000px;}
.x21{left:207.570000px;}
.x13{left:215.175000px;}
.x5{left:232.950000px;}
.x19{left:245.369987px;}
.x17{left:246.449987px;}
.x31{left:249.090000px;}
.xd{left:252.435000px;}
.xf{left:261.615000px;}
.x8{left:272.235000px;}
.x14{left:304.455000px;}
.x33{left:312.735000px;}
.x1b{left:317.415000px;}
.x6{left:331.995000px;}
.x7{left:351.255000px;}
.xa{left:365.475000px;}
.x25{left:415.875000px;}
.x34{left:435.495000px;}
.x9{left:439.500000px;}
.x1c{left:447.735000px;}
.x1d{left:570.885000px;}
.x26{left:591.045000px;}
.x2b{left:592.665000px;}
.x35{left:637.125000px;}
.x1e{left:649.905000px;}
.x16{left:718.889987px;}
.x1f{left:721.950000px;}
.x3{left:739.050000px;}
.x22{left:746.610000px;}
.x29{left:750.390000px;}
@media print{
.v4{vertical-align:-18.560000pt;}
.v2{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:5.493333pt;}
.v1{vertical-align:18.560000pt;}
.lsd{letter-spacing:-0.480000pt;}
.ls14{letter-spacing:-0.051840pt;}
.ls13{letter-spacing:-0.047360pt;}
.ls9{letter-spacing:-0.016000pt;}
.ls8{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.011520pt;}
.ls0{letter-spacing:0.032000pt;}
.lsf{letter-spacing:0.047360pt;}
.ls1{letter-spacing:0.117867pt;}
.ls7{letter-spacing:0.154880pt;}
.ls5{letter-spacing:0.160000pt;}
.lsc{letter-spacing:0.230933pt;}
.ls2{letter-spacing:0.231040pt;}
.lse{letter-spacing:0.265600pt;}
.ls6{letter-spacing:0.320000pt;}
.ls4{letter-spacing:0.398080pt;}
.ls11{letter-spacing:0.592640pt;}
.lsb{letter-spacing:0.630400pt;}
.ls3{letter-spacing:0.698880pt;}
.ls10{letter-spacing:4.640000pt;}
.ls12{letter-spacing:40.912640pt;}
.ws1{word-spacing:-14.778987pt;}
.ws2{word-spacing:-14.661120pt;}
.ws6{word-spacing:-13.600000pt;}
.ws9{word-spacing:-13.510933pt;}
.wsc{word-spacing:-13.327360pt;}
.ws7{word-spacing:-13.280000pt;}
.wsf{word-spacing:-13.232640pt;}
.ws4{word-spacing:-12.005120pt;}
.ws10{word-spacing:-11.953280pt;}
.wsb{word-spacing:-11.697920pt;}
.wsa{word-spacing:-11.686400pt;}
.ws0{word-spacing:-10.832000pt;}
.wse{word-spacing:-8.640000pt;}
.ws3{word-spacing:-7.810560pt;}
.ws5{word-spacing:-7.232000pt;}
.ws8{word-spacing:0.000000pt;}
.wsd{word-spacing:316.373333pt;}
._c{margin-left:-7.019733pt;}
._3{margin-left:-4.940160pt;}
._4{margin-left:-3.824000pt;}
._2{margin-left:-2.527147pt;}
._0{margin-left:-0.917333pt;}
._1{width:1.120000pt;}
._5{width:2.162773pt;}
._9{width:3.930880pt;}
._d{width:5.600640pt;}
._6{width:6.905600pt;}
._7{width:7.861760pt;}
._b{width:9.720960pt;}
._f{width:11.150720pt;}
._e{width:12.319360pt;}
._8{width:14.922240pt;}
._a{width:16.366293pt;}
._12{width:21.035520pt;}
._11{width:23.562667pt;}
._10{width:25.710080pt;}
._13{width:30.225280pt;}
._15{width:178.016000pt;}
._14{width:209.173333pt;}
.fs7{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs3{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs9{font-size:48.128000pt;}
.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;}
.y4d{bottom:2.880000pt;}
.y3{bottom:3.200000pt;}
.y52{bottom:3.520000pt;}
.y1c{bottom:4.320000pt;}
.yaf{bottom:4.640000pt;}
.yb9{bottom:7.040000pt;}
.ye{bottom:8.480000pt;}
.y50{bottom:9.440000pt;}
.y1e{bottom:11.040000pt;}
.yc{bottom:12.320000pt;}
.yc9{bottom:13.920000pt;}
.y4{bottom:15.392000pt;}
.yb1{bottom:17.440000pt;}
.y2{bottom:17.952000pt;}
.y4c{bottom:18.080000pt;}
.y98{bottom:18.240000pt;}
.ya5{bottom:18.880000pt;}
.y51{bottom:19.840000pt;}
.ybb{bottom:20.000000pt;}
.y4f{bottom:22.560000pt;}
.y1b{bottom:26.080000pt;}
.ya1{bottom:26.400000pt;}
.y96{bottom:26.560000pt;}
.yb{bottom:26.880000pt;}
.yc2{bottom:28.933333pt;}
.y5{bottom:29.440000pt;}
.y4b{bottom:33.440000pt;}
.ya4{bottom:34.240000pt;}
.y1a{bottom:40.800000pt;}
.ya{bottom:41.440000pt;}
.y1{bottom:48.160000pt;}
.y4a{bottom:48.800000pt;}
.yc3{bottom:55.453333pt;}
.y19{bottom:55.520000pt;}
.y49{bottom:64.160000pt;}
.y9e{bottom:64.186667pt;}
.y9{bottom:65.306667pt;}
.y18{bottom:70.080000pt;}
.y48{bottom:79.520000pt;}
.y9d{bottom:79.546667pt;}
.yc4{bottom:81.986667pt;}
.y8{bottom:82.746667pt;}
.y17{bottom:84.200000pt;}
.y16{bottom:93.480000pt;}
.y57{bottom:94.112000pt;}
.y47{bottom:94.880000pt;}
.y9c{bottom:94.906667pt;}
.y7{bottom:99.066667pt;}
.y109{bottom:101.152000pt;}
.yc0{bottom:101.472000pt;}
.yc5{bottom:108.506667pt;}
.y56{bottom:109.472000pt;}
.y15{bottom:109.800000pt;}
.y46{bottom:110.120000pt;}
.y9b{bottom:110.266667pt;}
.ybc{bottom:114.592000pt;}
.y108{bottom:116.512000pt;}
.y55{bottom:124.832000pt;}
.y9a{bottom:125.466667pt;}
.y45{bottom:125.480000pt;}
.y14{bottom:125.960000pt;}
.y107{bottom:131.872000pt;}
.ybf{bottom:134.906667pt;}
.yc6{bottom:135.066667pt;}
.y54{bottom:140.186667pt;}
.y44{bottom:140.840000pt;}
.y13{bottom:142.920000pt;}
.y106{bottom:147.226667pt;}
.yca{bottom:150.053333pt;}
.ybe{bottom:155.066667pt;}
.y53{bottom:155.386667pt;}
.y43{bottom:156.200000pt;}
.yc7{bottom:161.600000pt;}
.y105{bottom:162.586667pt;}
.y12{bottom:165.800000pt;}
.y4e{bottom:167.866667pt;}
.y42{bottom:171.560000pt;}
.ybd{bottom:175.226667pt;}
.y104{bottom:177.786667pt;}
.y90{bottom:184.506667pt;}
.y41{bottom:186.920000pt;}
.yc8{bottom:188.133333pt;}
.ycb{bottom:188.413333pt;}
.y11{bottom:188.680000pt;}
.y103{bottom:193.146667pt;}
.yba{bottom:195.386667pt;}
.y8f{bottom:200.026667pt;}
.y1f{bottom:200.506667pt;}
.y40{bottom:202.120000pt;}
.y102{bottom:208.506667pt;}
.y10{bottom:210.280000pt;}
.y8e{bottom:215.706667pt;}
.y3f{bottom:217.480000pt;}
.y101{bottom:223.866667pt;}
.y8d{bottom:231.226667pt;}
.y3e{bottom:232.840000pt;}
.yb8{bottom:238.746667pt;}
.y100{bottom:239.226667pt;}
.y2e{bottom:242.760000pt;}
.y8c{bottom:246.586667pt;}
.ycc{bottom:246.973333pt;}
.y3d{bottom:248.200000pt;}
.yb7{bottom:254.106667pt;}
.yff{bottom:254.426667pt;}
.y2d{bottom:256.360000pt;}
.y8b{bottom:261.786667pt;}
.y3c{bottom:263.560000pt;}
.yb6{bottom:269.466667pt;}
.yfe{bottom:269.786667pt;}
.y2c{bottom:272.040000pt;}
.y8a{bottom:277.146667pt;}
.y3b{bottom:278.920000pt;}
.yb2{bottom:282.586667pt;}
.yfd{bottom:285.146667pt;}
.y2b{bottom:287.400000pt;}
.y89{bottom:292.506667pt;}
.y3a{bottom:294.120000pt;}
.yb5{bottom:300.226667pt;}
.yfc{bottom:300.546667pt;}
.y2a{bottom:302.600000pt;}
.y88{bottom:307.906667pt;}
.y39{bottom:309.480000pt;}
.yfb{bottom:315.906667pt;}
.yb4{bottom:317.986667pt;}
.y29{bottom:318.440000pt;}
.y87{bottom:323.266667pt;}
.y38{bottom:324.840000pt;}
.yfa{bottom:331.266667pt;}
.y28{bottom:333.320000pt;}
.yb3{bottom:335.746667pt;}
.y86{bottom:338.466667pt;}
.y37{bottom:340.226667pt;}
.yf9{bottom:346.466667pt;}
.y27{bottom:347.906667pt;}
.yb0{bottom:353.506667pt;}
.y85{bottom:353.826667pt;}
.y36{bottom:355.586667pt;}
.yf8{bottom:361.826667pt;}
.y26{bottom:363.106667pt;}
.y84{bottom:369.186667pt;}
.y35{bottom:370.786667pt;}
.yae{bottom:371.266667pt;}
.yf7{bottom:377.186667pt;}
.y25{bottom:378.626667pt;}
.y83{bottom:384.546667pt;}
.y34{bottom:386.146667pt;}
.yad{bottom:391.906667pt;}
.yf6{bottom:392.546667pt;}
.y24{bottom:393.986667pt;}
.y82{bottom:399.906667pt;}
.y33{bottom:401.506667pt;}
.yac{bottom:407.106667pt;}
.yf5{bottom:407.906667pt;}
.y23{bottom:409.506667pt;}
.y81{bottom:415.266667pt;}
.y32{bottom:416.866667pt;}
.yab{bottom:422.466667pt;}
.yf4{bottom:423.266667pt;}
.y22{bottom:425.186667pt;}
.y80{bottom:430.466667pt;}
.y31{bottom:432.226667pt;}
.yaa{bottom:437.826667pt;}
.yf3{bottom:438.466667pt;}
.y7f{bottom:445.826667pt;}
.y30{bottom:447.586667pt;}
.y21{bottom:449.506667pt;}
.ya9{bottom:453.186667pt;}
.yf2{bottom:453.826667pt;}
.y7e{bottom:461.186667pt;}
.y2f{bottom:462.786667pt;}
.y20{bottom:465.186667pt;}
.ya8{bottom:468.546667pt;}
.yf1{bottom:469.186667pt;}
.y7d{bottom:476.546667pt;}
.y99{bottom:481.666667pt;}
.yf0{bottom:484.546667pt;}
.y7c{bottom:491.906667pt;}
.ya7{bottom:497.666667pt;}
.yef{bottom:499.906667pt;}
.y7b{bottom:507.266667pt;}
.ya6{bottom:513.666667pt;}
.yee{bottom:515.106667pt;}
.y7a{bottom:522.466667pt;}
.yed{bottom:530.466667pt;}
.y79{bottom:537.853333pt;}
.ya0{bottom:545.053333pt;}
.yec{bottom:545.853333pt;}
.y78{bottom:553.213333pt;}
.ya3{bottom:561.053333pt;}
.yeb{bottom:561.213333pt;}
.y77{bottom:568.573333pt;}
.yea{bottom:576.573333pt;}
.ya2{bottom:577.053333pt;}
.y76{bottom:583.933333pt;}
.ye9{bottom:591.933333pt;}
.y75{bottom:599.133333pt;}
.ye8{bottom:607.133333pt;}
.y95{bottom:608.253333pt;}
.y74{bottom:614.493333pt;}
.ye7{bottom:622.493333pt;}
.y9f{bottom:624.253333pt;}
.y125{bottom:627.933333pt;}
.y73{bottom:629.853333pt;}
.ye6{bottom:637.853333pt;}
.y97{bottom:640.253333pt;}
.y124{bottom:643.293333pt;}
.y72{bottom:645.213333pt;}
.ye5{bottom:653.213333pt;}
.y123{bottom:658.653333pt;}
.y71{bottom:660.573333pt;}
.ye4{bottom:668.573333pt;}
.y94{bottom:671.613333pt;}
.y122{bottom:674.013333pt;}
.y1d{bottom:675.773333pt;}
.y70{bottom:675.933333pt;}
.ye3{bottom:683.933333pt;}
.y93{bottom:687.613333pt;}
.y121{bottom:689.373333pt;}
.y6f{bottom:691.133333pt;}
.ye2{bottom:699.133333pt;}
.yf{bottom:702.013333pt;}
.y120{bottom:704.573333pt;}
.y6e{bottom:706.493333pt;}
.ye1{bottom:714.493333pt;}
.y11f{bottom:719.933333pt;}
.y6d{bottom:721.853333pt;}
.ye0{bottom:729.853333pt;}
.y11e{bottom:735.293333pt;}
.y6c{bottom:737.213333pt;}
.ydf{bottom:745.213333pt;}
.y11d{bottom:750.653333pt;}
.y6b{bottom:752.573333pt;}
.yde{bottom:760.573333pt;}
.y11c{bottom:766.653333pt;}
.y92{bottom:767.773333pt;}
.y6a{bottom:767.933333pt;}
.ydd{bottom:775.973333pt;}
.y91{bottom:780.293333pt;}
.yc1{bottom:781.920000pt;}
.y11b{bottom:782.213333pt;}
.y69{bottom:783.173333pt;}
.ydc{bottom:791.173333pt;}
.y11a{bottom:797.573333pt;}
.y68{bottom:798.533333pt;}
.ydb{bottom:806.533333pt;}
.y119{bottom:812.933333pt;}
.y67{bottom:813.893333pt;}
.yda{bottom:821.893333pt;}
.y118{bottom:828.293333pt;}
.y66{bottom:829.253333pt;}
.yd9{bottom:837.253333pt;}
.y117{bottom:843.653333pt;}
.y65{bottom:844.613333pt;}
.yd8{bottom:852.613333pt;}
.y116{bottom:859.013333pt;}
.y64{bottom:859.973333pt;}
.yd7{bottom:867.813333pt;}
.y115{bottom:874.213333pt;}
.y63{bottom:875.173333pt;}
.yd6{bottom:883.173333pt;}
.y114{bottom:889.573333pt;}
.y62{bottom:890.533333pt;}
.yd5{bottom:898.533333pt;}
.y113{bottom:904.933333pt;}
.y61{bottom:905.893333pt;}
.yd4{bottom:913.893333pt;}
.y112{bottom:920.293333pt;}
.y60{bottom:921.253333pt;}
.yd{bottom:925.733333pt;}
.yd3{bottom:929.253333pt;}
.y111{bottom:935.653333pt;}
.y5f{bottom:936.613333pt;}
.yd2{bottom:944.613333pt;}
.y6{bottom:948.293333pt;}
.y110{bottom:951.013333pt;}
.y5e{bottom:951.813333pt;}
.yd1{bottom:957.733333pt;}
.y10f{bottom:966.213333pt;}
.y5d{bottom:967.173333pt;}
.yd0{bottom:974.373333pt;}
.y10e{bottom:981.573333pt;}
.y5c{bottom:982.533333pt;}
.ycf{bottom:991.013333pt;}
.y10d{bottom:996.933333pt;}
.y5b{bottom:997.893333pt;}
.yce{bottom:1007.653333pt;}
.y10c{bottom:1012.320000pt;}
.y5a{bottom:1013.280000pt;}
.ycd{bottom:1024.320000pt;}
.y10b{bottom:1027.680000pt;}
.y59{bottom:1028.640000pt;}
.y58{bottom:1043.840000pt;}
.y10a{bottom:1048.320000pt;}
.h28{height:15.200000pt;}
.h22{height:15.360000pt;}
.h39{height:16.000000pt;}
.h3a{height:16.032000pt;}
.h2b{height:16.960000pt;}
.h30{height:16.992000pt;}
.h2f{height:17.120000pt;}
.h31{height:19.520000pt;}
.h34{height:19.680000pt;}
.hc{height:22.240000pt;}
.h14{height:26.240000pt;}
.h13{height:28.536562pt;}
.h2{height:29.312000pt;}
.h27{height:30.560000pt;}
.h2a{height:30.592000pt;}
.h24{height:30.720000pt;}
.h12{height:31.828125pt;}
.h9{height:32.160000pt;}
.h1e{height:32.640000pt;}
.h2c{height:34.720000pt;}
.h19{height:35.772188pt;}
.h3d{height:35.830937pt;}
.h20{height:37.479688pt;}
.h1c{height:37.499062pt;}
.h1b{height:37.583438pt;}
.h33{height:38.413421pt;}
.h2e{height:38.413425pt;}
.h1d{height:38.413438pt;}
.h3e{height:38.672812pt;}
.he{height:39.113750pt;}
.hb{height:39.840000pt;}
.h17{height:42.649687pt;}
.h3c{height:42.944375pt;}
.h3b{height:43.551875pt;}
.h1a{height:44.215312pt;}
.h21{height:44.768125pt;}
.h1f{height:46.454062pt;}
.h4{height:47.742188pt;}
.h36{height:47.869500pt;}
.ha{height:48.000000pt;}
.h3{height:49.148438pt;}
.h18{height:50.288438pt;}
.h38{height:52.832812pt;}
.h10{height:52.834688pt;}
.h37{height:53.235521pt;}
.h11{height:54.390938pt;}
.hf{height:56.160000pt;}
.h6{height:58.563750pt;}
.h5{height:60.288750pt;}
.h26{height:62.560000pt;}
.h29{height:62.592000pt;}
.h23{height:62.720000pt;}
.h8{height:63.656250pt;}
.h15{height:65.531250pt;}
.h2d{height:88.032000pt;}
.h32{height:100.480000pt;}
.h7{height:108.032000pt;}
.h25{height:189.306667pt;}
.hd{height:223.706667pt;}
.h35{height:274.400000pt;}
.h16{height:475.266667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w14{width:57.600000pt;}
.w1b{width:58.080000pt;}
.w10{width:63.712000pt;}
.w3{width:64.960000pt;}
.wf{width:69.920000pt;}
.w11{width:88.000000pt;}
.wc{width:101.312000pt;}
.wb{width:107.392000pt;}
.w22{width:108.800000pt;}
.we{width:109.152000pt;}
.w12{width:111.232000pt;}
.w19{width:112.512000pt;}
.wd{width:115.520000pt;}
.w5{width:135.066667pt;}
.w18{width:137.946667pt;}
.w1f{width:139.866667pt;}
.w24{width:154.906667pt;}
.w17{width:155.386667pt;}
.w1e{width:157.146667pt;}
.w23{width:178.906667pt;}
.w15{width:184.826667pt;}
.w1c{width:187.066667pt;}
.w8{width:198.626667pt;}
.w21{width:205.026667pt;}
.w16{width:293.666667pt;}
.w1d{width:297.346667pt;}
.w9{width:451.266667pt;}
.w13{width:478.813333pt;}
.w20{width:482.560000pt;}
.w1a{width:484.733333pt;}
.w6{width:514.813333pt;}
.w2{width:584.933333pt;}
.w7{width:649.893333pt;}
.wa{width:657.093333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.712000pt;}
.x15{left:11.200000pt;}
.x10{left:17.472000pt;}
.x11{left:22.272000pt;}
.x2e{left:28.226667pt;}
.xc{left:30.112000pt;}
.x2d{left:34.306667pt;}
.xb{left:38.592000pt;}
.xe{left:40.992000pt;}
.x23{left:52.512000pt;}
.x12{left:54.752000pt;}
.x2a{left:60.992000pt;}
.x24{left:68.346667pt;}
.x1{left:72.000000pt;}
.x2f{left:77.533333pt;}
.x4{left:87.226667pt;}
.x20{left:95.711988pt;}
.x18{left:100.351988pt;}
.x30{left:106.106667pt;}
.x27{left:119.231988pt;}
.x2c{left:154.720000pt;}
.x32{left:164.293333pt;}
.x1a{left:180.506667pt;}
.x28{left:181.946667pt;}
.x21{left:184.506667pt;}
.x13{left:191.266667pt;}
.x5{left:207.066667pt;}
.x19{left:218.106655pt;}
.x17{left:219.066655pt;}
.x31{left:221.413333pt;}
.xd{left:224.386667pt;}
.xf{left:232.546667pt;}
.x8{left:241.986667pt;}
.x14{left:270.626667pt;}
.x33{left:277.986667pt;}
.x1b{left:282.146667pt;}
.x6{left:295.106667pt;}
.x7{left:312.226667pt;}
.xa{left:324.866667pt;}
.x25{left:369.666667pt;}
.x34{left:387.106667pt;}
.x9{left:390.666667pt;}
.x1c{left:397.986667pt;}
.x1d{left:507.453333pt;}
.x26{left:525.373333pt;}
.x2b{left:526.813333pt;}
.x35{left:566.333333pt;}
.x1e{left:577.693333pt;}
.x16{left:639.013322pt;}
.x1f{left:641.733333pt;}
.x3{left:656.933333pt;}
.x22{left:663.653333pt;}
.x29{left:667.013333pt;}
}




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